blob: f5978071687e00ffad9ad9f64a808a10bcf3ab57 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
import QtQuick 2.14
import QtQuick.Controls 2.14
import QtQuick.Layouts 1.14
import QtQuick.Dialogs 1.0
import org.kde.kirigami 2.12 as Kirigami
Kirigami.Page {
id: accountsPage
title: qsTr("Accounts")
mainAction: Kirigami.Action {
iconName: "list-add-user"
text: "Add account"
onTriggered: accountsModel.addAccount()
}
contextualActions: [
Kirigami.Action {
text: "Import account"
iconName: "document-import"
onTriggered: importAccountDialog.open()
}
]
FileDialog {
id: importAccountDialog
title: "Import account"
onAccepted: {
var url = importAccountDialog.fileUrl.toString()
if (url.startsWith("file://")) {
var filename = url.substring(7)
console.log("Importing " + filename)
var accountId = accountsModel.importAccount (filename)
if (accountId == 0) {
console.log("Import failed")
} else {
console.log("Import succeeded")
}
}
}
}
ListView {
id: accountsListView
anchors.fill: parent
model: accountsModel
delegate: RowLayout {
width: accountsListView.width
Label {
Layout.fillWidth: true
text: model.number
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
Button {
width: 100
text: "Select"
onClicked: {
while (pageStack.depth > 1) {
pageStack.pop()
}
accountsModel.selectedAccount = model.number
let context = accountsModel.getSelectedAccount()
if (context.isConfigured()) {
pageStack.push("qrc:/qml/ChatlistPage.qml", {context: context})
} else {
pageStack.push("qrc:/qml/ConfigurePage.qml", {})
}
}
}
Button {
width: 100
text: "Delete"
onClicked: accountsModel.removeAccount(model.number)
}
}
}
Menu {
id: contextMenu
MenuItem { text: "Import account" }
}
}
|