aboutsummaryrefslogtreecommitdiff
path: root/qml/ConfigurePage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/ConfigurePage.qml')
-rw-r--r--qml/ConfigurePage.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/qml/ConfigurePage.qml b/qml/ConfigurePage.qml
index 58331ed..9fc229a 100644
--- a/qml/ConfigurePage.qml
+++ b/qml/ConfigurePage.qml
@@ -11,6 +11,7 @@ Kirigami.Page {
id: configurePage
required property DcContext context
+ required property DcAccountsEventEmitter eventEmitter
ColumnLayout {
anchors.fill: parent
@@ -26,6 +27,10 @@ Kirigami.Page {
placeholderText: "Password"
echoMode: TextInput.PasswordEchoOnEdit
}
+ ProgressBar {
+ id: progressBar
+ value: 0.0
+ }
Button {
text: "Login"
onClicked: {
@@ -37,4 +42,11 @@ Kirigami.Page {
}
}
}
+
+ Connections {
+ target: configurePage.eventEmitter
+ function onConfigureProgress(accountId, progress, comment) {
+ progressBar.value = progress / 1000.0
+ }
+ }
}