summaryrefslogtreecommitdiff
path: root/wizard/WizardOpenWallet1.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 /wizard/WizardOpenWallet1.qml
parent81f33c7e00bf183823909a02e6d96ce11e41adce (diff)
downloadmonzero-gui-phase0-20260815.tar.gz
monzero-gui-phase0-20260815.tar.xz
monzero-gui-phase0-20260815.zip
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'wizard/WizardOpenWallet1.qml')
-rw-r--r--wizard/WizardOpenWallet1.qml42
1 files changed, 21 insertions, 21 deletions
diff --git a/wizard/WizardOpenWallet1.qml b/wizard/WizardOpenWallet1.qml
index 991a72d0..b22f6b92 100644
--- a/wizard/WizardOpenWallet1.qml
+++ b/wizard/WizardOpenWallet1.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -38,8 +38,8 @@ import FontAwesome 1.0
import "../js/Wizard.js" as Wizard
import "../components"
-import "../components" as MoneroComponents
-import "../components/effects/" as MoneroEffects
+import "../components" as MonzeroComponents
+import "../components/effects/" as MonzeroEffects
Rectangle {
id: wizardOpenWallet1
@@ -90,10 +90,10 @@ Rectangle {
columnSpacing: 20
columns: 2
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
Layout.fillWidth: true
text: qsTr("Recently opened") + ":" + translationManager.emptyString
- font.family: MoneroComponents.Style.fontLight.name
+ font.family: MonzeroComponents.Style.fontLight.name
font.pixelSize: 16
}
@@ -169,9 +169,9 @@ Rectangle {
else if(networktype === 2) return qsTr("Stagenet");
return "";
}
- color: item.focus || itemMouseArea.containsMouse ? MoneroComponents.Style.titleBarButtonHoverColor : "transparent"
+ color: item.focus || itemMouseArea.containsMouse ? MonzeroComponents.Style.titleBarButtonHoverColor : "transparent"
border.width: item.focus ? 3 : 0
- border.color: MoneroComponents.Style.inputBorderColorActive
+ border.color: MonzeroComponents.Style.inputBorderColorActive
Accessible.role: Accessible.ListItem
Accessible.name: {
@@ -192,13 +192,13 @@ Rectangle {
height: 1
width: parent.width
anchors.top: parent.top
- color: MoneroComponents.Style.appWindowBorderColor
+ color: MonzeroComponents.Style.appWindowBorderColor
visible: index <= 2 // top row
- 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
}
}
@@ -229,13 +229,13 @@ Rectangle {
}
visible: {
if(!isOpenGL) return true;
- if(MoneroComponents.Style.blackTheme) return true;
+ if(MonzeroComponents.Style.blackTheme) return true;
return false;
}
}
Colorize {
- visible: isOpenGL && !MoneroComponents.Style.blackTheme
+ visible: isOpenGL && !MonzeroComponents.Style.blackTheme
anchors.fill: icon
source: icon
lightness: 0.65 // +65%
@@ -265,8 +265,8 @@ Rectangle {
Layout.preferredHeight: 26
Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
Layout.fillWidth: true
- font.family: MoneroComponents.Style.fontRegular.name
- color: MoneroComponents.Style.defaultFontColor
+ font.family: MonzeroComponents.Style.fontRegular.name
+ color: MonzeroComponents.Style.defaultFontColor
font.pixelSize: 16
wrapMode: Text.WordWrap
@@ -281,8 +281,8 @@ Rectangle {
Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
Layout.fillWidth: true
text: item.networkType
- font.family: MoneroComponents.Style.fontRegular.name
- color: MoneroComponents.Style.dimmedFontColor
+ font.family: MonzeroComponents.Style.fontRegular.name
+ color: MonzeroComponents.Style.dimmedFontColor
font.pixelSize: 14
wrapMode: Text.WordWrap
@@ -301,13 +301,13 @@ Rectangle {
Rectangle {
height: 1
width: parent.width
- color: MoneroComponents.Style.appWindowBorderColor
+ color: MonzeroComponents.Style.appWindowBorderColor
anchors.bottom: parent.bottom
- 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
}
}