diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-06-15 16:34:55 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-15 16:34:55 +0300 |
| commit | 3ddd9bed72da0e039f44b64a4cc9fff679dd40ed (patch) | |
| tree | 76749d569926f58b217455330b2ed2820e57008c /LeftPanel.qml | |
| parent | 2151f1395c28027f867d8e640b0c0be4cd4e0a23 (diff) | |
| download | monzero-gui-3ddd9bed72da0e039f44b64a4cc9fff679dd40ed.tar.gz monzero-gui-3ddd9bed72da0e039f44b64a4cc9fff679dd40ed.tar.xz monzero-gui-3ddd9bed72da0e039f44b64a4cc9fff679dd40ed.zip | |
main application: initialize wallet, display balance
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 6bd400a8..1eddf019 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -31,6 +31,10 @@ import "components" Rectangle { id: panel + + property alias unlockedBalanceText: unlockedBalanceText.text + property alias balanceText: balanceText.text + signal dashboardClicked() signal historyClicked() signal transferClicked() @@ -90,7 +94,7 @@ Rectangle { spacing: 6 Label { - text: qsTr("Locked balance") + text: qsTr("Balance") anchors.left: parent.left anchors.leftMargin: 50 tipText: qsTr("Test tip 1<br/><br/>line 2") @@ -109,11 +113,12 @@ Rectangle { } Text { + id: balanceText anchors.verticalCenter: parent.verticalCenter font.family: "Arial" font.pixelSize: 26 color: "#000000" - text: "78.9239845" + text: "78.9245" } } @@ -124,19 +129,20 @@ Rectangle { } Label { - text: qsTr("Unlocked") + text: qsTr("Unlocked balance") anchors.left: parent.left anchors.leftMargin: 50 tipText: qsTr("Test tip 2<br/><br/>line 2") } Text { + id: unlockedBalanceText anchors.left: parent.left anchors.leftMargin: 50 font.family: "Arial" font.pixelSize: 18 color: "#000000" - text: "2324.9239845" + text: "2324.9245" } } |
