aboutsummaryrefslogtreecommitdiff
path: root/components/RemoteNodeList.qml
diff options
context:
space:
mode:
authorMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
committerMonzero Build System <builds@monzero.org>2026-08-15 21:26:40 +0100
commitdceeb88444ce966caa1a133d2926d5f7213c87ff (patch)
treed74c9c7d7e43c2a0d39d656c690c63050cff7f53 /components/RemoteNodeList.qml
parent81f33c7e00bf183823909a02e6d96ce11e41adce (diff)
downloadmonzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.gz
monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.tar.xz
monzero-gui-dceeb88444ce966caa1a133d2926d5f7213c87ff.zip
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'components/RemoteNodeList.qml')
-rw-r--r--components/RemoteNodeList.qml30
1 files changed, 15 insertions, 15 deletions
diff --git a/components/RemoteNodeList.qml b/components/RemoteNodeList.qml
index f1779e0c..61144c45 100644
--- a/components/RemoteNodeList.qml
+++ b/components/RemoteNodeList.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2021-2024, The Monero Project
+// Copyright (c) 2021-2024, The Monzero Project
//
// All rights reserved.
//
@@ -31,14 +31,14 @@ import QtQuick.Layouts 1.1
import FontAwesome 1.0
-import "." as MoneroComponents
-import "effects/" as MoneroEffects
+import "." as MonzeroComponents
+import "effects/" as MonzeroEffects
ColumnLayout {
id: remoteNodeList
spacing: 20
- MoneroComponents.CheckBox {
+ MonzeroComponents.CheckBox {
border: false
checkedIcon: FontAwesome.minusCircle
uncheckedIcon: FontAwesome.plusCircle
@@ -59,7 +59,7 @@ ColumnLayout {
Rectangle {
height: 30
Layout.fillWidth: true
- color: itemMouseArea.containsMouse || trustedDaemonCheckMark.labelMouseArea.containsMouse || index === remoteNodesModel.selected ? MoneroComponents.Style.titleBarButtonHoverColor : "transparent"
+ color: itemMouseArea.containsMouse || trustedDaemonCheckMark.labelMouseArea.containsMouse || index === remoteNodesModel.selected ? MonzeroComponents.Style.titleBarButtonHoverColor : "transparent"
Rectangle {
visible: index === remoteNodesModel.selected
@@ -71,17 +71,17 @@ ColumnLayout {
}
Rectangle {
- color: MoneroComponents.Style.appWindowBorderColor
+ color: MonzeroComponents.Style.appWindowBorderColor
anchors.right: parent.right
anchors.left: parent.left
anchors.top: parent.top
height: 1
visible: index > 0
- MoneroEffects.ColorTransition {
+ MonzeroEffects.ColorTransition {
targetObj: parent
- blackColor: MoneroComponents.Style._b_appWindowBorderColor
- whiteColor: MoneroComponents.Style._w_appWindowBorderColor
+ blackColor: MonzeroComponents.Style._b_appWindowBorderColor
+ whiteColor: MonzeroComponents.Style._w_appWindowBorderColor
}
}
@@ -91,10 +91,10 @@ ColumnLayout {
color: "transparent"
property var trusted: remoteNodesModel.get(index) ? remoteNodesModel.get(index).trusted : false
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
id: addressText
width: parent.width - trustedDaemonCheckMark.width
- color: index === remoteNodesModel.selected ? MoneroComponents.Style.defaultFontColor : MoneroComponents.Style.dimmedFontColor
+ color: index === remoteNodesModel.selected ? MonzeroComponents.Style.defaultFontColor : MonzeroComponents.Style.dimmedFontColor
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
anchors.leftMargin: 6
@@ -104,7 +104,7 @@ ColumnLayout {
elide: Text.ElideMiddle
}
- MoneroComponents.Label {
+ MonzeroComponents.Label {
id: trustedDaemonCheckMark
anchors.left: addressText.right
anchors.leftMargin: 3
@@ -113,7 +113,7 @@ ColumnLayout {
z: itemMouseArea.z + 1
fontSize: 16
fontFamily: FontAwesome.fontFamilySolid
- fontColor: index === remoteNodesModel.selected ? MoneroComponents.Style.defaultFontColor : MoneroComponents.Style.dimmedFontColor
+ fontColor: index === remoteNodesModel.selected ? MonzeroComponents.Style.defaultFontColor : MonzeroComponents.Style.dimmedFontColor
styleName: "Solid"
visible: trusted
text: FontAwesome.shieldAlt
@@ -136,7 +136,7 @@ ColumnLayout {
height: 30
spacing: 2
- MoneroComponents.InlineButton {
+ MonzeroComponents.InlineButton {
buttonColor: "transparent"
fontFamily: FontAwesome.fontFamily
fontPixelSize: 18
@@ -151,7 +151,7 @@ ColumnLayout {
})
}
- MoneroComponents.InlineButton {
+ MonzeroComponents.InlineButton {
buttonColor: "transparent"
fontFamily: FontAwesome.fontFamily
text: FontAwesome.times