diff options
author | link2xt <link2xt@testrun.org> | 2021-03-14 05:53:26 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-03-14 05:53:26 +0300 |
commit | ea24329f4ce7dafd200aa104c2e532048d5dcd2b (patch) | |
tree | 0dc4965195a2b0f1cb432c1ecefef5851217bc98 /qml/ConfigurePage.qml | |
parent | 1013f97eb011c0e9189c567307d66d8758b4678d (diff) | |
download | kdeltachat-ea24329f4ce7dafd200aa104c2e532048d5dcd2b.tar.gz kdeltachat-ea24329f4ce7dafd200aa104c2e532048d5dcd2b.zip |
ConfigurePage: add progress bar
Diffstat (limited to 'qml/ConfigurePage.qml')
-rw-r--r-- | qml/ConfigurePage.qml | 12 |
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 + } + } } |