diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-05 14:58:49 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-06 18:34:42 +0000 |
| commit | 06e94e2fbe7a3b3e259876dd0b1d08ff42e01ab3 (patch) | |
| tree | 3cd325316e2ec5e78bcd45aa938629055f62b66b /LeftPanel.qml | |
| parent | c9bb2f571895edb6a01ca5528c944d09bc222823 (diff) | |
| download | monzero-gui-06e94e2fbe7a3b3e259876dd0b1d08ff42e01ab3.tar.gz monzero-gui-06e94e2fbe7a3b3e259876dd0b1d08ff42e01ab3.tar.xz monzero-gui-06e94e2fbe7a3b3e259876dd0b1d08ff42e01ab3.zip | |
Add a page for checking payments via the tx key
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 6aeacdfd..fee83f0f 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -42,6 +42,7 @@ Rectangle { signal historyClicked() signal transferClicked() signal receiveClicked() + signal txkeyClicked() signal settingsClicked() signal addressBookClicked() signal miningClicked() @@ -54,6 +55,7 @@ Rectangle { else if(pos === "Receive") menuColumn.previousButton = receiveButton else if(pos === "AddressBook") menuColumn.previousButton = addressBookButton else if(pos === "Mining") menuColumn.previousButton = miningButton + else if(pos === "TxKey") menuColumn.previousButton = txkeyButton else if(pos === "Settings") menuColumn.previousButton = settingsButton menuColumn.previousButton.checked = true @@ -256,6 +258,21 @@ Rectangle { } } + // ------------- TxKey tab --------------- + MenuButton { + id: txkeyButton + anchors.left: parent.left + anchors.right: parent.right + text: qsTr("Tx Key") + translationManager.emptyString + symbol: qsTr("K") + translationManager.emptyString + dotColor: "#AAFFBB" + onClicked: { + parent.previousButton.checked = false + parent.previousButton = txkeyButton + panel.txkeyClicked() + } + } + Rectangle { anchors.left: parent.left anchors.right: parent.right |
