monero-gui/LeftPanel.qml

711 lines
27 KiB
QML
Raw Normal View History

2019-04-11 03:17:29 +02:00
// Copyright (c) 2014-2019, The Monero Project
2015-04-01 10:56:05 +02:00
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2019-04-11 03:17:29 +02:00
import QtQuick 2.9
2018-03-24 20:48:19 +01:00
import QtQuick.Layouts 1.1
import QtGraphicalEffects 1.0
import moneroComponents.Wallet 1.0
2018-03-05 17:19:45 +01:00
import moneroComponents.NetworkType 1.0
import moneroComponents.Clipboard 1.0
2019-04-11 03:17:29 +02:00
import "components" as MoneroComponents
2019-04-11 03:17:29 +02:00
import "components/effects/" as MoneroEffects
2014-07-07 19:08:30 +02:00
Rectangle {
id: panel
property alias unlockedBalanceText: unlockedBalanceText.text
property alias unlockedBalanceVisible: unlockedBalanceText.visible
property alias unlockedBalanceLabelVisible: unlockedBalanceLabel.visible
property alias balanceLabelText: balanceLabel.text
property alias balanceText: balanceText.text
property alias networkStatus : networkStatus
2016-12-14 13:48:12 +01:00
property alias progressBar : progressBar
property alias daemonProgressBar : daemonProgressBar
property alias minutesToUnlockTxt: unlockedBalanceLabel.text
property int titleBarHeight: 50
property string copyValue: ""
Clipboard { id: clipboard }
2014-07-07 19:08:30 +02:00
signal historyClicked()
signal transferClicked()
signal receiveClicked()
signal txkeyClicked()
signal sharedringdbClicked()
2014-07-07 19:08:30 +02:00
signal settingsClicked()
signal addressBookClicked()
signal miningClicked()
2016-11-08 11:06:34 +01:00
signal signClicked()
2017-08-07 10:48:13 +02:00
signal keysClicked()
2018-12-08 16:55:29 +01:00
signal merchantClicked()
signal accountClicked()
2014-07-07 19:08:30 +02:00
2014-07-09 18:03:37 +02:00
function selectItem(pos) {
menuColumn.previousButton.checked = false
if(pos === "History") menuColumn.previousButton = historyButton
2014-07-09 18:03:37 +02:00
else if(pos === "Transfer") menuColumn.previousButton = transferButton
else if(pos === "Receive") menuColumn.previousButton = receiveButton
2018-12-08 16:55:29 +01:00
else if(pos === "Merchant") menuColumn.previousButton = merchantButton
2014-07-09 18:03:37 +02:00
else if(pos === "AddressBook") menuColumn.previousButton = addressBookButton
else if(pos === "Mining") menuColumn.previousButton = miningButton
else if(pos === "TxKey") menuColumn.previousButton = txkeyButton
else if(pos === "SharedRingDB") menuColumn.previousButton = sharedringdbButton
2016-11-08 11:06:34 +01:00
else if(pos === "Sign") menuColumn.previousButton = signButton
2014-07-09 18:03:37 +02:00
else if(pos === "Settings") menuColumn.previousButton = settingsButton
2017-01-17 22:59:40 +01:00
else if(pos === "Advanced") menuColumn.previousButton = advancedButton
2018-09-27 16:01:14 +02:00
else if(pos === "Keys") menuColumn.previousButton = keysButton
else if(pos === "Account") menuColumn.previousButton = accountButton
2014-07-09 18:03:37 +02:00
menuColumn.previousButton.checked = true
}
2017-11-12 17:55:13 +01:00
width: (isMobile)? appWindow.width : 300
2017-11-22 00:14:38 +01:00
color: "transparent"
2017-08-07 12:14:37 +02:00
anchors.bottom: parent.bottom
anchors.top: parent.top
2014-07-07 19:08:30 +02:00
2019-04-11 03:17:29 +02:00
MoneroEffects.GradientBackground {
anchors.fill: parent
fallBackColor: MoneroComponents.Style.middlePanelBackgroundColor
initialStartColor: MoneroComponents.Style.leftPanelBackgroundGradientStart
initialStopColor: MoneroComponents.Style.leftPanelBackgroundGradientStop
blackColorStart: MoneroComponents.Style._b_leftPanelBackgroundGradientStart
blackColorStop: MoneroComponents.Style._b_leftPanelBackgroundGradientStop
whiteColorStart: MoneroComponents.Style._w_leftPanelBackgroundGradientStart
whiteColorStop: MoneroComponents.Style._w_leftPanelBackgroundGradientStop
posStart: 0.6
start: Qt.point(0, 0)
end: Qt.point(height, width)
2017-11-22 00:14:38 +01:00
}
2017-11-12 18:46:00 +01:00
// card with monero logo
2014-07-07 19:08:30 +02:00
Column {
2017-11-12 18:46:00 +01:00
visible: true
2017-11-22 00:14:38 +01:00
z: 2
2014-07-07 19:08:30 +02:00
id: column1
height: 210
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
anchors.right: parent.right
2017-11-12 18:46:00 +01:00
anchors.top: parent.top
anchors.topMargin: (persistentSettings.customDecorations)? 50 : 0
2018-03-24 20:48:19 +01:00
RowLayout {
2014-07-07 19:08:30 +02:00
Item {
2017-11-12 18:46:00 +01:00
anchors.left: parent.left
anchors.top: parent.top
anchors.topMargin: 20
2017-11-12 18:46:00 +01:00
anchors.leftMargin: 20
2014-07-07 19:08:30 +02:00
anchors.verticalCenter: parent.verticalCenter
2017-11-12 18:46:00 +01:00
height: 490 * scaleRatio
width: 260 * scaleRatio
2014-07-07 19:08:30 +02:00
Image {
2019-04-11 03:17:29 +02:00
id: card
visible: !isOpenGL || MoneroComponents.Style.blackTheme
width: 260
height: 170
2017-11-12 18:46:00 +01:00
fillMode: Image.PreserveAspectFit
2019-04-11 03:17:29 +02:00
source: "qrc:///images/card-background.png"
2014-07-07 19:08:30 +02:00
}
2017-11-18 16:18:05 +01:00
2019-04-11 03:17:29 +02:00
DropShadow {
visible: isOpenGL && !MoneroComponents.Style.blackTheme
anchors.fill: card
horizontalOffset: 3
verticalOffset: 3
radius: 10.0
samples: 15
color: "#3B000000"
source: card
cached: true
}
MoneroComponents.TextPlain {
2017-11-18 16:18:05 +01:00
id: testnetLabel
2018-03-27 20:41:15 +02:00
visible: persistentSettings.nettype != NetworkType.MAINNET
text: (persistentSettings.nettype == NetworkType.TESTNET ? qsTr("Testnet") : qsTr("Stagenet")) + translationManager.emptyString
2017-11-18 16:18:05 +01:00
anchors.top: parent.top
anchors.topMargin: 8
anchors.left: parent.left
anchors.leftMargin: 192
2017-11-18 16:18:05 +01:00
font.bold: true
font.pixelSize: 12
2018-01-12 01:17:20 +01:00
color: "#f33434"
2019-04-11 03:17:29 +02:00
themeTransition: false
2017-11-18 16:18:05 +01:00
}
2019-04-11 03:17:29 +02:00
MoneroComponents.TextPlain {
2018-01-12 01:17:20 +01:00
id: viewOnlyLabel
visible: viewOnly
text: qsTr("View Only") + translationManager.emptyString
anchors.top: parent.top
anchors.topMargin: 8
anchors.right: testnetLabel.visible ? testnetLabel.left : parent.right
anchors.rightMargin: 8
font.pixelSize: 12
font.bold: true
color: "#ff9323"
2019-04-11 03:17:29 +02:00
themeTransition: false
2018-01-12 01:17:20 +01:00
}
Rectangle {
height: (logoutImage.height + 8) * scaleRatio
width: (logoutImage.width + 8) * scaleRatio
color: "transparent"
anchors.right: parent.right
anchors.rightMargin: 8
anchors.top: parent.top
anchors.topMargin: 25
Image {
id: logoutImage
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
height: 16 * scaleRatio
width: 13 * scaleRatio
2019-04-11 03:17:29 +02:00
source: "qrc:///images/logout.png"
}
MouseArea{
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onClicked: {
2018-12-18 20:06:29 +01:00
middlePanel.addressBookView.clearFields();
middlePanel.transferView.clearFields();
middlePanel.receiveView.clearFields();
appWindow.showWizard();
}
}
}
}
Item {
anchors.left: parent.left
anchors.top: parent.top
anchors.topMargin: 20
anchors.leftMargin: 20
anchors.verticalCenter: parent.verticalCenter
height: 490 * scaleRatio
width: 50 * scaleRatio
2014-07-07 19:08:30 +02:00
2019-04-11 03:17:29 +02:00
MoneroComponents.TextPlain {
2017-11-12 18:46:00 +01:00
visible: !isMobile
id: balanceText
2019-04-11 03:17:29 +02:00
themeTransition: false
2017-11-12 18:46:00 +01:00
anchors.left: parent.left
anchors.leftMargin: 20
anchors.top: parent.top
anchors.topMargin: 76
font.family: "Arial"
color: "#FFFFFF"
text: "N/A"
// dynamically adjust text size
font.pixelSize: {
var digits = text.split('.')[0].length
var defaultSize = 22;
if(digits > 2) {
return defaultSize - 1.1*digits
}
return defaultSize;
2016-12-31 11:22:23 +01:00
}
MouseArea {
hoverEnabled: true
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onEntered: {
parent.color = MoneroComponents.Style.orange
}
onExited: {
parent.color = MoneroComponents.Style.white
}
onClicked: {
console.log("Copied to clipboard");
clipboard.setText(parent.text);
appWindow.showStatusMessage(qsTr("Copied to clipboard"),3)
}
}
2016-12-31 11:22:23 +01:00
}
2014-07-07 19:08:30 +02:00
2019-04-11 03:17:29 +02:00
MoneroComponents.TextPlain {
2017-11-12 18:46:00 +01:00
id: unlockedBalanceText
visible: true
2019-04-11 03:17:29 +02:00
themeTransition: false
2017-11-12 18:46:00 +01:00
anchors.left: parent.left
anchors.leftMargin: 20
anchors.top: parent.top
anchors.topMargin: 126
font.family: "Arial"
color: "#FFFFFF"
text: "N/A"
// dynamically adjust text size
font.pixelSize: {
var digits = text.split('.')[0].length
var defaultSize = 20;
if(digits > 3) {
return defaultSize - 0.6*digits
}
return defaultSize;
}
MouseArea {
hoverEnabled: true
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onEntered: {
parent.color = MoneroComponents.Style.orange
}
onExited: {
parent.color = MoneroComponents.Style.white
}
onClicked: {
console.log("Copied to clipboard");
clipboard.setText(parent.text);
appWindow.showStatusMessage(qsTr("Copied to clipboard"),3)
}
}
2017-11-12 18:46:00 +01:00
}
2017-11-18 16:18:05 +01:00
MoneroComponents.Label {
2017-11-12 18:46:00 +01:00
id: unlockedBalanceLabel
visible: true
2017-11-12 18:46:00 +01:00
text: qsTr("Unlocked balance") + translationManager.emptyString
2019-04-11 03:17:29 +02:00
color: "white"
2018-11-06 01:40:55 +01:00
fontSize: 14
2017-11-12 18:46:00 +01:00
anchors.left: parent.left
anchors.leftMargin: 20
anchors.top: parent.top
anchors.topMargin: 110
2019-04-11 03:17:29 +02:00
themeTransition: false
2017-11-12 18:46:00 +01:00
}
2014-07-07 19:08:30 +02:00
MoneroComponents.Label {
2017-11-12 18:46:00 +01:00
visible: !isMobile
id: balanceLabel
text: qsTr("Balance") + translationManager.emptyString
2019-04-11 03:17:29 +02:00
color: "white"
2017-11-12 18:46:00 +01:00
fontSize: 14
anchors.left: parent.left
anchors.leftMargin: 20
anchors.top: parent.top
anchors.topMargin: 60
elide: Text.ElideRight
textWidth: 238
2019-04-11 03:17:29 +02:00
themeTransition: false
2017-11-12 18:46:00 +01:00
}
Item { //separator
anchors.left: parent.left
anchors.right: parent.right
height: 1
}
2016-12-31 11:22:23 +01:00
}
2014-07-07 19:08:30 +02:00
}
}
Rectangle {
id: menuRect
2017-11-22 00:14:38 +01:00
z: 2
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
2017-04-03 18:51:55 +02:00
anchors.top: (isMobile)? parent.top : column1.bottom
2017-11-22 00:14:38 +01:00
color: "transparent"
2014-07-07 19:08:30 +02:00
2017-04-03 18:51:55 +02:00
Flickable {
2017-08-07 12:14:37 +02:00
id:flicker
contentHeight: menuColumn.height
anchors.top: parent.top
anchors.bottom: networkStatus.top
width: parent.width
2017-04-03 18:51:55 +02:00
clip: true
2014-07-07 19:08:30 +02:00
Column {
2014-07-09 18:03:37 +02:00
id: menuColumn
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
2017-08-07 12:14:37 +02:00
clip: true
property var previousButton: transferButton
// top border
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
2014-07-07 19:08:30 +02:00
// ------------- Account tab ---------------
MoneroComponents.MenuButton {
id: accountButton
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Account") + translationManager.emptyString
symbol: qsTr("T") + translationManager.emptyString
dotColor: "#44AAFF"
onClicked: {
parent.previousButton.checked = false
parent.previousButton = accountButton
panel.accountClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
visible: accountButton.present
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
// ------------- Transfer tab ---------------
MoneroComponents.MenuButton {
2014-07-07 19:08:30 +02:00
id: transferButton
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Send") + translationManager.emptyString
symbol: qsTr("S") + translationManager.emptyString
2014-07-07 19:08:30 +02:00
dotColor: "#FF6C3C"
onClicked: {
parent.previousButton.checked = false
parent.previousButton = transferButton
panel.transferClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2017-01-17 22:59:40 +01:00
visible: transferButton.present
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
// ------------- AddressBook tab ---------------
MoneroComponents.MenuButton {
id: addressBookButton
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Address book") + translationManager.emptyString
symbol: qsTr("B") + translationManager.emptyString
dotColor: "#FF4F41"
under: transferButton
onClicked: {
parent.previousButton.checked = false
parent.previousButton = addressBookButton
panel.addressBookClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2017-01-01 16:56:39 +01:00
visible: addressBookButton.present
2016-11-23 20:00:19 +01:00
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
// ------------- Receive tab ---------------
MoneroComponents.MenuButton {
id: receiveButton
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Receive") + translationManager.emptyString
symbol: qsTr("R") + translationManager.emptyString
dotColor: "#AAFFBB"
onClicked: {
parent.previousButton.checked = false
parent.previousButton = receiveButton
panel.receiveClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2017-01-17 22:59:40 +01:00
visible: receiveButton.present
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
2018-12-08 16:55:29 +01:00
// ------------- Merchant tab ---------------
MoneroComponents.MenuButton {
id: merchantButton
2019-01-14 01:02:44 +01:00
visible: appWindow.walletMode >= 2
2018-12-08 16:55:29 +01:00
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Merchant") + translationManager.emptyString
symbol: qsTr("U") + translationManager.emptyString
dotColor: "#FF4F41"
under: receiveButton
onClicked: {
parent.previousButton.checked = false
parent.previousButton = merchantButton
panel.merchantClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2019-01-14 01:02:44 +01:00
visible: merchantButton.present && appWindow.walletMode >= 2
2018-12-08 16:55:29 +01:00
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
// ------------- History tab ---------------
MoneroComponents.MenuButton {
2014-07-07 19:08:30 +02:00
id: historyButton
anchors.left: parent.left
anchors.right: parent.right
2019-03-18 00:12:51 +01:00
text: qsTr("Transactions") + translationManager.emptyString
symbol: qsTr("H") + translationManager.emptyString
2014-07-07 19:08:30 +02:00
dotColor: "#6B0072"
onClicked: {
parent.previousButton.checked = false
parent.previousButton = historyButton
panel.historyClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2017-01-17 22:59:40 +01:00
visible: historyButton.present
2016-11-23 20:00:19 +01:00
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
2016-12-10 02:01:04 +01:00
// ------------- Advanced tab ---------------
MoneroComponents.MenuButton {
id: advancedButton
2019-01-14 01:02:44 +01:00
visible: appWindow.walletMode >= 2
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Advanced") + translationManager.emptyString
2017-01-17 22:59:40 +01:00
symbol: qsTr("D") + translationManager.emptyString
dotColor: "#FFD781"
2014-07-07 19:08:30 +02:00
onClicked: {
parent.previousButton.checked = false
parent.previousButton = advancedButton
2014-07-07 19:08:30 +02:00
}
}
2019-01-14 01:02:44 +01:00
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2019-01-14 01:02:44 +01:00
visible: advancedButton.present && appWindow.walletMode >= 2
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
// ------------- Mining tab ---------------
MoneroComponents.MenuButton {
id: miningButton
2019-01-14 01:02:44 +01:00
visible: !isAndroid && !isIOS && appWindow.walletMode >= 2
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Mining") + translationManager.emptyString
symbol: qsTr("M") + translationManager.emptyString
dotColor: "#FFD781"
under: advancedButton
onClicked: {
parent.previousButton.checked = false
parent.previousButton = miningButton
panel.miningClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2019-01-14 01:02:44 +01:00
visible: miningButton.present && appWindow.walletMode >= 2
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
2019-04-11 03:17:29 +02:00
// ------------- TxKey tab ---------------
MoneroComponents.MenuButton {
id: txkeyButton
2019-01-14 01:02:44 +01:00
visible: appWindow.walletMode >= 2
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
anchors.right: parent.right
2017-09-12 10:42:00 +02:00
text: qsTr("Prove/check") + translationManager.emptyString
symbol: qsTr("K") + translationManager.emptyString
dotColor: "#FFD781"
under: advancedButton
2014-07-07 19:08:30 +02:00
onClicked: {
parent.previousButton.checked = false
parent.previousButton = txkeyButton
panel.txkeyClicked()
2014-07-07 19:08:30 +02:00
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2019-01-14 01:02:44 +01:00
visible: txkeyButton.present && appWindow.walletMode >= 2
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
2019-04-11 03:17:29 +02:00
// ------------- Shared RingDB tab ---------------
MoneroComponents.MenuButton {
id: sharedringdbButton
2019-01-14 01:02:44 +01:00
visible: appWindow.walletMode >= 2
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Shared RingDB") + translationManager.emptyString
symbol: qsTr("G") + translationManager.emptyString
dotColor: "#FFD781"
under: advancedButton
onClicked: {
parent.previousButton.checked = false
parent.previousButton = sharedringdbButton
panel.sharedringdbClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2019-01-14 01:02:44 +01:00
visible: sharedringdbButton.present && appWindow.walletMode >= 2
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
2016-11-08 11:06:34 +01:00
// ------------- Sign/verify tab ---------------
MoneroComponents.MenuButton {
2016-11-08 11:06:34 +01:00
id: signButton
2019-01-14 01:02:44 +01:00
visible: appWindow.walletMode >= 2
2016-11-08 11:06:34 +01:00
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Sign/verify") + translationManager.emptyString
symbol: qsTr("I") + translationManager.emptyString
dotColor: "#FFD781"
under: advancedButton
2016-11-08 11:06:34 +01:00
onClicked: {
parent.previousButton.checked = false
parent.previousButton = signButton
panel.signClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
2019-01-14 01:02:44 +01:00
visible: signButton.present && appWindow.walletMode >= 2
2016-11-23 20:00:19 +01:00
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
2019-04-11 03:17:29 +02:00
// ------------- Settings tab ---------------
MoneroComponents.MenuButton {
2014-07-07 19:08:30 +02:00
id: settingsButton
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Settings") + translationManager.emptyString
symbol: qsTr("E") + translationManager.emptyString
2014-07-07 19:08:30 +02:00
dotColor: "#36B25C"
onClicked: {
parent.previousButton.checked = false
parent.previousButton = settingsButton
panel.settingsClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
visible: settingsButton.present
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
2019-04-11 03:17:29 +02:00
2017-08-07 10:48:13 +02:00
// ------------- Sign/verify tab ---------------
MoneroComponents.MenuButton {
2017-08-07 10:48:13 +02:00
id: keysButton
2019-01-14 01:02:44 +01:00
visible: appWindow.walletMode >= 2
2017-08-07 10:48:13 +02:00
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Seed & Keys") + translationManager.emptyString
symbol: qsTr("Y") + translationManager.emptyString
dotColor: "#FFD781"
under: settingsButton
onClicked: {
parent.previousButton.checked = false
parent.previousButton = keysButton
panel.keysClicked()
}
}
2019-04-11 03:17:29 +02:00
MoneroComponents.MenuButtonDivider {
visible: settingsButton.present && settingsButton.checked && appWindow.walletMode >= 2
2017-08-07 10:48:13 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
}
2017-08-07 10:48:13 +02:00
} // Column
2014-07-07 19:08:30 +02:00
2017-08-07 10:48:13 +02:00
} // Flickable
2017-04-03 18:51:55 +02:00
2018-04-13 21:43:15 +02:00
Rectangle {
id: separator
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 0
anchors.rightMargin: 0
anchors.bottom: networkStatus.top;
height: 10 * scaleRatio
2018-04-30 00:52:48 +02:00
color: "transparent"
2018-04-13 21:43:15 +02:00
}
MoneroComponents.NetworkStatusItem {
id: networkStatus
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 5 * scaleRatio
2018-04-13 21:43:15 +02:00
anchors.rightMargin: 0
2016-12-14 13:48:12 +01:00
anchors.bottom: (progressBar.visible)? progressBar.top : parent.bottom;
connected: Wallet.ConnectionStatus_Disconnected
2018-04-13 21:43:15 +02:00
height: 48 * scaleRatio
2014-07-07 19:08:30 +02:00
}
MoneroComponents.ProgressBar {
2016-12-14 13:48:12 +01:00
id: progressBar
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: daemonProgressBar.top
2018-04-13 21:43:15 +02:00
height: 48 * scaleRatio
syncType: qsTr("Wallet") + translationManager.emptyString
visible: networkStatus.connected
}
MoneroComponents.ProgressBar {
id: daemonProgressBar
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
syncType: qsTr("Daemon") + translationManager.emptyString
visible: networkStatus.connected
height: 62 * scaleRatio
}
2019-04-11 03:17:29 +02:00
}
2014-07-07 19:08:30 +02:00
}