2015-04-01 08:56:05 +00:00
|
|
|
// Copyright (c) 2014-2015, The Monero Project
|
|
|
|
//
|
|
|
|
// 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
|
2016-11-07 12:02:27 +00:00
|
|
|
import moneroComponents.Wallet 1.0
|
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
|
2016-11-07 12:02:27 +00:00
|
|
|
property var connected: Wallet.ConnectionStatus_Disconnected
|
|
|
|
|
|
|
|
function getConnectionStatusImage(status) {
|
|
|
|
if (status == Wallet.ConnectionStatus_Connected)
|
|
|
|
return "../images/statusConnected.png"
|
|
|
|
else
|
|
|
|
return "../images/statusDisconnected.png"
|
|
|
|
}
|
|
|
|
|
|
|
|
function getConnectionStatusColor(status) {
|
|
|
|
if (status == Wallet.ConnectionStatus_Connected)
|
|
|
|
return "#FF6C3B"
|
|
|
|
else
|
|
|
|
return "#AAAAAA"
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
2017-08-07 13:47:56 +00:00
|
|
|
color: "#1C1C1C"
|
|
|
|
Row {
|
|
|
|
height: 60 * scaleRatio
|
|
|
|
Item {
|
|
|
|
id: iconItem
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
width: 50 * scaleRatio
|
|
|
|
height: 50 * scaleRatio
|
|
|
|
|
|
|
|
Image {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
source: getConnectionStatusImage(item.connected)
|
|
|
|
}
|
2014-07-07 17:08:30 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 13:47:56 +00:00
|
|
|
Column {
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
height: 53 * scaleRatio
|
|
|
|
spacing: 3 * scaleRatio
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2017-08-07 13:47:56 +00:00
|
|
|
Text {
|
|
|
|
anchors.left: parent.left
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 12 * scaleRatio
|
|
|
|
color: "#545454"
|
|
|
|
text: qsTr("Network status") + translationManager.emptyString
|
|
|
|
}
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2017-08-07 13:47:56 +00:00
|
|
|
Text {
|
|
|
|
anchors.left: parent.left
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 18 * scaleRatio
|
|
|
|
color: getConnectionStatusColor(item.connected)
|
|
|
|
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
|
|
|
}
|