aboutsummaryrefslogtreecommitdiff
path: root/components/ProgressBar.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/ProgressBar.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/ProgressBar.qml')
-rw-r--r--components/ProgressBar.qml30
1 files changed, 15 insertions, 15 deletions
diff --git a/components/ProgressBar.qml b/components/ProgressBar.qml
index 7600d683..5c7b70e5 100644
--- a/components/ProgressBar.qml
+++ b/components/ProgressBar.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2014-2024, The Monero Project
+// Copyright (c) 2014-2024, The Monzero Project
//
// All rights reserved.
//
@@ -29,7 +29,7 @@
import QtQuick 2.9
import moneroComponents.Wallet 1.0
-import "../components" as MoneroComponents
+import "../components" as MonzeroComponents
Rectangle {
id: item
@@ -61,27 +61,27 @@ Rectangle {
anchors.rightMargin: 15
anchors.fill: parent
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
id: progressText
anchors.top: parent.top
anchors.topMargin: 6
- font.family: MoneroComponents.Style.fontMedium.name
+ font.family: MonzeroComponents.Style.fontMedium.name
font.pixelSize: 13
- font.bold: MoneroComponents.Style.progressBarProgressTextBold
- color: MoneroComponents.Style.defaultFontColor
+ font.bold: MonzeroComponents.Style.progressBarProgressTextBold
+ color: MonzeroComponents.Style.defaultFontColor
text: qsTr("Synchronizing %1").arg(syncType) + translationManager.emptyString
height: 18
}
- MoneroComponents.TextPlain {
+ MonzeroComponents.TextPlain {
id: progressTextValue
anchors.top: parent.top
anchors.topMargin: 6
anchors.right: parent.right
- font.family: MoneroComponents.Style.fontMedium.name
+ font.family: MonzeroComponents.Style.fontMedium.name
font.pixelSize: 13
- font.bold: MoneroComponents.Style.progressBarProgressTextBold
- color: MoneroComponents.Style.defaultFontColor
+ font.bold: MonzeroComponents.Style.progressBarProgressTextBold
+ color: MonzeroComponents.Style.defaultFontColor
height:18
}
@@ -93,17 +93,17 @@ Rectangle {
anchors.topMargin: 4
height: 8
radius: 8
- color: MoneroComponents.Style.progressBarBackgroundColor
+ color: MonzeroComponents.Style.progressBarBackgroundColor
states: [
State {
name: "black";
- when: MoneroComponents.Style.blackTheme
- PropertyChanges { target: bar; color: MoneroComponents.Style._b_progressBarBackgroundColor}
+ when: MonzeroComponents.Style.blackTheme
+ PropertyChanges { target: bar; color: MonzeroComponents.Style._b_progressBarBackgroundColor}
}, State {
name: "white";
- when: !MoneroComponents.Style.blackTheme
- PropertyChanges { target: bar; color: MoneroComponents.Style._w_progressBarBackgroundColor}
+ when: !MonzeroComponents.Style.blackTheme
+ PropertyChanges { target: bar; color: MonzeroComponents.Style._w_progressBarBackgroundColor}
}
]