monero-gui/components/ProgressBar.qml

137 lines
5.2 KiB
QML
Raw Normal View History

2018-01-07 05:20:45 +00:00
// Copyright (c) 2014-2018, 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.
2019-04-11 01:17:29 +00:00
import QtQuick 2.9
import moneroComponents.Wallet 1.0
import "../components" as MoneroComponents
2017-08-08 08:44:11 +00:00
Rectangle {
id: item
property int fillLevel: 0
property string syncType // Wallet or Daemon
property string syncText: qsTr("%1 blocks remaining: ").arg(syncType)
visible: false
color: "transparent"
2017-08-08 08:44:11 +00:00
function updateProgress(currentBlock,targetBlock, blocksToSync, statusTxt){
if(targetBlock > 0) {
var remaining = (currentBlock < targetBlock) ? targetBlock - currentBlock : 0
2020-05-02 14:34:54 +00:00
var progressLevel = (blocksToSync > 0 ) ? (100*(blocksToSync - remaining)/blocksToSync).toFixed(0) : 100
fillLevel = progressLevel
2017-08-08 08:44:11 +00:00
if(typeof statusTxt != "undefined" && statusTxt != "") {
progressText.text = statusTxt;
2019-04-11 01:17:29 +00:00
progressTextValue.text = "";
2017-08-08 08:44:11 +00:00
} else {
2019-04-11 01:17:29 +00:00
progressText.text = syncText;
progressTextValue.text = remaining.toFixed(0);
2017-08-08 08:44:11 +00:00
}
}
}
2017-08-08 08:44:11 +00:00
Item {
2018-03-24 19:48:19 +00:00
anchors.top: item.top
2019-04-25 19:09:23 +00:00
anchors.topMargin: 10
anchors.leftMargin: 15
anchors.rightMargin: 15
2017-08-08 08:44:11 +00:00
anchors.fill: parent
2019-04-11 01:17:29 +00:00
MoneroComponents.TextPlain {
id: progressText
2018-03-24 19:48:19 +00:00
anchors.top: parent.top
anchors.topMargin: 6
font.family: MoneroComponents.Style.fontMedium.name
2019-04-25 19:09:23 +00:00
font.pixelSize: 13
2019-04-11 01:17:29 +00:00
font.bold: MoneroComponents.Style.progressBarProgressTextBold
color: MoneroComponents.Style.defaultFontColor
2018-06-26 10:28:31 +00:00
text: qsTr("Synchronizing %1").arg(syncType) + translationManager.emptyString
2019-04-25 19:09:23 +00:00
height: 18
}
2019-04-11 01:17:29 +00:00
MoneroComponents.TextPlain {
id: progressTextValue
2018-03-24 19:48:19 +00:00
anchors.top: parent.top
anchors.topMargin: 6
anchors.right: parent.right
font.family: MoneroComponents.Style.fontMedium.name
2019-04-25 19:09:23 +00:00
font.pixelSize: 13
2019-04-11 01:17:29 +00:00
font.bold: MoneroComponents.Style.progressBarProgressTextBold
color: MoneroComponents.Style.defaultFontColor
2019-04-25 19:09:23 +00:00
height:18
}
Rectangle {
2017-08-08 08:44:11 +00:00
id: bar
anchors.left: parent.left
2017-08-08 08:44:11 +00:00
anchors.right: parent.right
anchors.top: progressText.bottom
anchors.topMargin: 4
2019-04-25 19:09:23 +00:00
height: 8
radius: 8
2019-04-11 01:17:29 +00:00
color: MoneroComponents.Style.progressBarBackgroundColor
states: [
State {
name: "black";
when: MoneroComponents.Style.blackTheme
PropertyChanges { target: bar; color: MoneroComponents.Style._b_progressBarBackgroundColor}
}, State {
name: "white";
when: !MoneroComponents.Style.blackTheme
PropertyChanges { target: bar; color: MoneroComponents.Style._w_progressBarBackgroundColor}
}
]
transitions: Transition {
enabled: appWindow.themeTransition
ColorAnimation { properties: "color"; easing.type: Easing.InOutQuad; duration: 300 }
}
2017-08-08 08:44:11 +00:00
Rectangle {
id: fillRect
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: parent.left
height: bar.height
2019-04-25 19:09:23 +00:00
property int maxWidth: bar.width
2017-08-08 08:44:11 +00:00
width: (maxWidth * fillLevel) / 100
radius: 8
2017-11-23 16:35:46 +00:00
color: "#FA6800"
2017-08-08 08:44:11 +00:00
}
2016-11-25 19:58:27 +00:00
2017-08-08 08:44:11 +00:00
Rectangle {
color:"#333"
2016-11-25 19:58:27 +00:00
anchors.bottom: parent.bottom
2017-08-08 08:44:11 +00:00
anchors.left: parent.left
2019-04-25 19:09:23 +00:00
anchors.leftMargin: 8
2016-11-25 19:58:27 +00:00
}
}
2017-08-08 08:44:11 +00:00
}
}