blob: c95c445ce38dffd83cfd6a6e43b8a5b2fc88cf4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
import QtQuick 2.12
import QtQuick.Controls 2.12 as Controls
import org.kde.kirigami 2.12 as Kirigami
import DeltaChat 1.0
Kirigami.ApplicationWindow {
id: root
property DcAccountsEventEmitter eventEmitter
title: qsTr("Delta Chat")
Component {id: accountsPage; AccountsPage {}}
pageStack.initialPage: SplashPage {}
globalDrawer: Kirigami.GlobalDrawer {
header: Controls.Switch {
text: "Start IO"
onCheckedChanged: {
if (checked) {
dcAccounts.startIo()
} else {
dcAccouts.stopIo()
}
}
}
actions: [
Kirigami.Action {
text: "Maybe network"
iconName: "view-refresh"
onTriggered: dcAccounts.maybeNetwork()
},
Kirigami.Action {
text: "Switch account"
iconName: "system-switch-user"
onTriggered: pageStack.layers.push(accountsPage)
}
]
}
contextDrawer: Kirigami.ContextDrawer {
id: contextDrawer
}
DcAccounts {
id: dcAccounts
}
Component.onCompleted: {
console.log('starting')
eventEmitter = dcAccounts.getEventEmitter()
eventEmitter.start();
}
onClosing: {
// Cancel all tasks that may block the termination of event loop.
dcAccounts.stopIo()
}
}
|