2018-01-07 05:20:45 +00:00
|
|
|
// Copyright (c) 2014-2018, The Monero Project
|
2015-04-01 08:56:05 +00: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.
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
import QtQuick 2.0
|
2018-03-24 19:48:19 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
2018-03-31 01:25:20 +00:00
|
|
|
|
2016-11-07 12:02:27 +00:00
|
|
|
import moneroComponents.Wallet 1.0
|
2018-03-31 01:25:20 +00:00
|
|
|
import "../components" as MoneroComponents
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2017-08-08 08:41:28 +00:00
|
|
|
Rectangle {
|
2014-07-07 17:08:30 +00:00
|
|
|
id: item
|
2018-04-29 22:52:48 +00:00
|
|
|
color: "transparent"
|
2016-11-07 12:02:27 +00:00
|
|
|
property var connected: Wallet.ConnectionStatus_Disconnected
|
|
|
|
|
|
|
|
function getConnectionStatusString(status) {
|
2017-02-24 17:07:46 +00:00
|
|
|
if (status == Wallet.ConnectionStatus_Connected) {
|
|
|
|
if(!appWindow.daemonSynced)
|
|
|
|
return qsTr("Synchronizing")
|
2017-08-08 08:41:28 +00:00
|
|
|
if(appWindow.remoteNodeConnected)
|
|
|
|
return qsTr("Remote node")
|
2016-11-07 12:02:27 +00:00
|
|
|
return qsTr("Connected")
|
2017-02-24 17:07:46 +00:00
|
|
|
}
|
2016-11-07 12:02:27 +00:00
|
|
|
if (status == Wallet.ConnectionStatus_WrongVersion)
|
|
|
|
return qsTr("Wrong version")
|
|
|
|
if (status == Wallet.ConnectionStatus_Disconnected)
|
|
|
|
return qsTr("Disconnected")
|
|
|
|
return qsTr("Invalid connection status")
|
|
|
|
}
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2018-03-24 19:48:19 +00:00
|
|
|
RowLayout {
|
|
|
|
Layout.preferredHeight: 40 * scaleRatio
|
2017-11-21 21:11:41 +00:00
|
|
|
|
2017-08-07 13:47:56 +00:00
|
|
|
Item {
|
|
|
|
id: iconItem
|
2017-11-21 21:11:41 +00:00
|
|
|
width: 40 * scaleRatio
|
|
|
|
height: 40 * scaleRatio
|
2017-11-23 14:30:25 +00:00
|
|
|
opacity: {
|
|
|
|
if(item.connected == Wallet.ConnectionStatus_Connected){
|
|
|
|
return 1
|
|
|
|
} else {
|
|
|
|
return 0.5
|
|
|
|
}
|
|
|
|
}
|
2017-08-07 13:47:56 +00:00
|
|
|
|
|
|
|
Image {
|
2017-11-21 21:11:41 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 6
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 11
|
2017-11-23 14:30:25 +00:00
|
|
|
source: {
|
|
|
|
if(item.connected == Wallet.ConnectionStatus_Connected){
|
|
|
|
return "../images/lightning.png"
|
|
|
|
} else {
|
|
|
|
return "../images/lightning-white.png"
|
|
|
|
}
|
|
|
|
}
|
2017-08-07 13:47:56 +00:00
|
|
|
}
|
2014-07-07 17:08:30 +00:00
|
|
|
}
|
|
|
|
|
2017-11-21 21:11:41 +00:00
|
|
|
Item {
|
|
|
|
height: 40 * scaleRatio
|
|
|
|
width: 260 * scaleRatio
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2017-08-07 13:47:56 +00:00
|
|
|
Text {
|
2017-11-21 21:11:41 +00:00
|
|
|
id: statusText
|
2017-08-07 13:47:56 +00:00
|
|
|
anchors.left: parent.left
|
2017-11-21 21:11:41 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 0
|
2018-03-31 01:25:20 +00:00
|
|
|
font.family: MoneroComponents.Style.fontMedium.name
|
2017-11-21 21:11:41 +00:00
|
|
|
font.bold: true
|
|
|
|
font.pixelSize: 13 * scaleRatio
|
|
|
|
color: "white"
|
|
|
|
opacity: 0.5
|
2017-08-07 13:47:56 +00:00
|
|
|
text: qsTr("Network status") + translationManager.emptyString
|
|
|
|
}
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2017-08-07 13:47:56 +00:00
|
|
|
Text {
|
2017-11-21 21:11:41 +00:00
|
|
|
id: statusTextVal
|
2017-08-07 13:47:56 +00:00
|
|
|
anchors.left: parent.left
|
2017-11-21 21:11:41 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 14
|
2018-03-31 01:25:20 +00:00
|
|
|
font.family: MoneroComponents.Style.fontMedium.name
|
2017-11-21 21:11:41 +00:00
|
|
|
font.pixelSize: 20 * scaleRatio
|
2017-11-23 14:30:25 +00:00
|
|
|
color: "white"
|
2017-08-07 13:47:56 +00:00
|
|
|
text: getConnectionStatusString(item.connected) + translationManager.emptyString
|
|
|
|
}
|
2014-07-07 17:08:30 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-07 13:47:56 +00:00
|
|
|
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
}
|