2024-01-27 19:12:09 +00:00
|
|
|
// Copyright (c) 2021-2024, The Monero Project
|
2021-04-20 22:11:36 +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.
|
|
|
|
|
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
|
|
|
|
import FontAwesome 1.0
|
|
|
|
|
|
|
|
import "." as MoneroComponents
|
|
|
|
import "effects/" as MoneroEffects
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: remoteNodeList
|
|
|
|
spacing: 20
|
|
|
|
|
|
|
|
MoneroComponents.CheckBox {
|
|
|
|
border: false
|
|
|
|
checkedIcon: FontAwesome.minusCircle
|
|
|
|
uncheckedIcon: FontAwesome.plusCircle
|
|
|
|
fontAwesomeIcons: true
|
|
|
|
fontSize: 16
|
|
|
|
iconOnTheLeft: true
|
|
|
|
text: qsTr("Add remote node") + translationManager.emptyString
|
|
|
|
toggleOnClick: false
|
|
|
|
onClicked: remoteNodeDialog.add(remoteNodesModel.append)
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
Repeater {
|
|
|
|
model: remoteNodesModel
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
height: 30
|
|
|
|
Layout.fillWidth: true
|
2021-06-23 00:28:48 +00:00
|
|
|
color: itemMouseArea.containsMouse || trustedDaemonCheckMark.labelMouseArea.containsMouse || index === remoteNodesModel.selected ? MoneroComponents.Style.titleBarButtonHoverColor : "transparent"
|
2021-04-20 22:11:36 +00:00
|
|
|
|
|
|
|
Rectangle {
|
2021-07-23 05:47:48 +00:00
|
|
|
visible: index === remoteNodesModel.selected
|
|
|
|
Layout.fillHeight: true
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
color: "darkgrey"
|
|
|
|
width: 2
|
|
|
|
}
|
|
|
|
|
2021-04-20 22:11:36 +00:00
|
|
|
Rectangle {
|
|
|
|
color: MoneroComponents.Style.appWindowBorderColor
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
height: 1
|
|
|
|
visible: index > 0
|
|
|
|
|
|
|
|
MoneroEffects.ColorTransition {
|
|
|
|
targetObj: parent
|
|
|
|
blackColor: MoneroComponents.Style._b_appWindowBorderColor
|
|
|
|
whiteColor: MoneroComponents.Style._w_appWindowBorderColor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.rightMargin: 80
|
|
|
|
color: "transparent"
|
2021-12-13 03:33:15 +00:00
|
|
|
property var trusted: remoteNodesModel.get(index) ? remoteNodesModel.get(index).trusted : false
|
2021-04-20 22:11:36 +00:00
|
|
|
|
|
|
|
MoneroComponents.TextPlain {
|
2021-06-23 00:28:48 +00:00
|
|
|
id: addressText
|
2021-07-19 09:29:53 +00:00
|
|
|
width: parent.width - trustedDaemonCheckMark.width
|
2021-04-20 22:11:36 +00:00
|
|
|
color: index === remoteNodesModel.selected ? MoneroComponents.Style.defaultFontColor : MoneroComponents.Style.dimmedFontColor
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 6
|
|
|
|
font.pixelSize: 16
|
|
|
|
text: address
|
|
|
|
themeTransition: false
|
2021-07-19 09:29:53 +00:00
|
|
|
elide: Text.ElideMiddle
|
2021-04-20 22:11:36 +00:00
|
|
|
}
|
|
|
|
|
2021-06-23 00:28:48 +00:00
|
|
|
MoneroComponents.Label {
|
|
|
|
id: trustedDaemonCheckMark
|
|
|
|
anchors.left: addressText.right
|
2021-12-13 03:44:24 +00:00
|
|
|
anchors.leftMargin: 3
|
2021-06-23 00:28:48 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2021-12-13 03:44:24 +00:00
|
|
|
anchors.verticalCenterOffset: 2
|
2021-06-23 00:28:48 +00:00
|
|
|
z: itemMouseArea.z + 1
|
|
|
|
fontSize: 16
|
|
|
|
fontFamily: FontAwesome.fontFamilySolid
|
|
|
|
fontColor: index === remoteNodesModel.selected ? MoneroComponents.Style.defaultFontColor : MoneroComponents.Style.dimmedFontColor
|
|
|
|
styleName: "Solid"
|
|
|
|
visible: trusted
|
|
|
|
text: FontAwesome.shieldAlt
|
|
|
|
tooltip: qsTr("Trusted daemon") + translationManager.emptyString
|
|
|
|
themeTransition: false
|
|
|
|
}
|
|
|
|
|
2021-04-20 22:11:36 +00:00
|
|
|
MouseArea {
|
|
|
|
id: itemMouseArea
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
onClicked: remoteNodesModel.applyRemoteNode(index)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.right: parent.right
|
|
|
|
height: 30
|
2021-06-24 23:58:07 +00:00
|
|
|
spacing: 2
|
2021-04-20 22:11:36 +00:00
|
|
|
|
|
|
|
MoneroComponents.InlineButton {
|
|
|
|
buttonColor: "transparent"
|
|
|
|
fontFamily: FontAwesome.fontFamily
|
|
|
|
fontPixelSize: 18
|
|
|
|
text: FontAwesome.edit
|
2021-05-19 16:36:44 +00:00
|
|
|
tooltip: qsTr("Edit remote node") + translationManager.emptyString
|
|
|
|
tooltipLeft: true
|
2021-04-20 22:11:36 +00:00
|
|
|
onClicked: remoteNodeDialog.edit(remoteNodesModel.get(index), function (remoteNode) {
|
|
|
|
remoteNodesModel.set(index, remoteNode)
|
2021-12-12 15:32:45 +00:00
|
|
|
if (index === remoteNodesModel.selected) {
|
|
|
|
remoteNodesModel.applyRemoteNode(index)
|
|
|
|
}
|
2021-04-20 22:11:36 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
MoneroComponents.InlineButton {
|
|
|
|
buttonColor: "transparent"
|
|
|
|
fontFamily: FontAwesome.fontFamily
|
|
|
|
text: FontAwesome.times
|
|
|
|
visible: remoteNodesModel.count > 1
|
2021-05-19 16:36:44 +00:00
|
|
|
tooltip: qsTr("Remove remote node") + translationManager.emptyString
|
|
|
|
tooltipLeft: true
|
2021-04-20 22:11:36 +00:00
|
|
|
onClicked: remoteNodesModel.removeSelectNextIfNeeded(index)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|