From f402fd9e7d26f5b2bc56c55322a7a97ebb3dbe66 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Mon, 26 Sep 2016 22:55:25 +0300 Subject: Wallet::daemonBlockChainHeight(); BC sync progress in GUI --- components/ProcessingSplash.qml | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to 'components') diff --git a/components/ProcessingSplash.qml b/components/ProcessingSplash.qml index 70384f05..297631ec 100644 --- a/components/ProcessingSplash.qml +++ b/components/ProcessingSplash.qml @@ -32,13 +32,15 @@ import QtQuick.Controls 1.4 import QtQuick.Layouts 1.1 Window { - id: splash + id: root modality: Qt.ApplicationModal flags: Qt.Window | Qt.FramelessWindowHint - property alias message: message.text + property alias messageText: messageTitle.text + property alias heightProgressText : heightProgress.text + width: 200 height: 100 - opacity: 0.5 + opacity: 0.7 ColumnLayout { anchors.horizontalCenter: parent.horizontalCenter @@ -50,14 +52,23 @@ Window { } Text { - id: message + id: messageTitle text: "Please wait..." font { pointSize: 22 } horizontalAlignment: Text.AlignHCenter + Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter } - } + Text { + id: heightProgress + font { + pointSize: 18 + } + horizontalAlignment: Text.AlignHCenter + Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter + } + } } -- cgit v1.2.3