diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-08 10:06:34 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-09 19:04:10 +0000 |
| commit | 472f55933266bc3d07940656156bdb529e43776f (patch) | |
| tree | 49407301c1eb26d0590d06f2aa50c9486007ba78 /LeftPanel.qml | |
| parent | 68736ab834533db50cb5eaebf9a751ad0f2fa5a6 (diff) | |
| download | monzero-gui-472f55933266bc3d07940656156bdb529e43776f.tar.gz monzero-gui-472f55933266bc3d07940656156bdb529e43776f.tar.xz monzero-gui-472f55933266bc3d07940656156bdb529e43776f.zip | |
sign/verify message/file
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 5fc3ff33..fb4c7397 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -47,6 +47,7 @@ Rectangle { signal settingsClicked() signal addressBookClicked() signal miningClicked() + signal signClicked() function selectItem(pos) { menuColumn.previousButton.checked = false @@ -57,6 +58,7 @@ Rectangle { else if(pos === "AddressBook") menuColumn.previousButton = addressBookButton else if(pos === "Mining") menuColumn.previousButton = miningButton else if(pos === "TxKey") menuColumn.previousButton = txkeyButton + else if(pos === "Sign") menuColumn.previousButton = signButton else if(pos === "Settings") menuColumn.previousButton = settingsButton menuColumn.previousButton.checked = true @@ -352,6 +354,20 @@ Rectangle { height: 1 } */ + // ------------- Sign/verify tab --------------- + MenuButton { + id: signButton + anchors.left: parent.left + anchors.right: parent.right + text: qsTr("Sign/verify") + translationManager.emptyString + symbol: qsTr("S") + translationManager.emptyString + dotColor: "#AAFFBB" + onClicked: { + parent.previousButton.checked = false + parent.previousButton = signButton + panel.signClicked() + } + } // ------------- Settings tab --------------- MenuButton { id: settingsButton |
