2024-01-27 19:12:09 +00:00
|
|
|
// Copyright (c) 2014-2024, The Monero Project
|
2016-10-03 21:29:30 +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.
|
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
import QtQuick 2.9
|
2016-11-26 12:15:25 +00:00
|
|
|
import moneroComponents.Wallet 1.0
|
2018-03-31 01:25:20 +00:00
|
|
|
|
|
|
|
import "../components" as MoneroComponents
|
2016-10-03 21:29:30 +00:00
|
|
|
|
2017-08-08 08:44:11 +00:00
|
|
|
Rectangle {
|
2016-10-03 21:29:30 +00:00
|
|
|
id: item
|
|
|
|
property int fillLevel: 0
|
2018-03-15 15:35:47 +00:00
|
|
|
property string syncType // Wallet or Daemon
|
|
|
|
property string syncText: qsTr("%1 blocks remaining: ").arg(syncType)
|
2017-11-21 21:11:41 +00:00
|
|
|
visible: false
|
2018-05-03 10:56:54 +00:00
|
|
|
color: "transparent"
|
2016-10-03 21:29:30 +00:00
|
|
|
|
2017-08-08 08:44:11 +00:00
|
|
|
function updateProgress(currentBlock,targetBlock, blocksToSync, statusTxt){
|
2016-10-03 21:29:30 +00:00
|
|
|
if(targetBlock > 0) {
|
2018-03-15 15:35:47 +00:00
|
|
|
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
|
2016-10-03 21:29:30 +00:00
|
|
|
fillLevel = progressLevel
|
2017-08-08 08:44:11 +00:00
|
|
|
if(typeof statusTxt != "undefined" && statusTxt != "") {
|
2018-03-15 15:35:47 +00:00
|
|
|
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
|
|
|
}
|
2016-10-03 21:29:30 +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
|
2017-11-21 21:11:41 +00:00
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
MoneroComponents.TextPlain {
|
2017-11-21 21:11:41 +00:00
|
|
|
id: progressText
|
2018-03-24 19:48:19 +00:00
|
|
|
anchors.top: parent.top
|
2017-11-21 21:11:41 +00:00
|
|
|
anchors.topMargin: 6
|
2018-03-31 01:25:20 +00:00
|
|
|
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
|
2017-11-21 21:11:41 +00:00
|
|
|
}
|
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
MoneroComponents.TextPlain {
|
2017-11-21 21:11:41 +00:00
|
|
|
id: progressTextValue
|
2018-03-24 19:48:19 +00:00
|
|
|
anchors.top: parent.top
|
2017-11-21 21:11:41 +00:00
|
|
|
anchors.topMargin: 6
|
|
|
|
anchors.right: parent.right
|
2018-03-31 01:25:20 +00:00
|
|
|
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
|
2017-11-21 21:11:41 +00:00
|
|
|
}
|
|
|
|
|
2016-10-03 21:29:30 +00:00
|
|
|
Rectangle {
|
2017-08-08 08:44:11 +00:00
|
|
|
id: bar
|
2016-10-03 21:29:30 +00:00
|
|
|
anchors.left: parent.left
|
2017-08-08 08:44:11 +00:00
|
|
|
anchors.right: parent.right
|
2017-11-21 21:11:41 +00:00
|
|
|
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 }
|
|
|
|
}
|
2016-10-03 21:29:30 +00:00
|
|
|
|
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
|
2017-11-21 21:11:41 +00:00
|
|
|
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
|
|
|
}
|
2016-11-23 20:19:19 +00:00
|
|
|
}
|
2017-08-08 08:44:11 +00:00
|
|
|
|
2016-10-03 21:29:30 +00:00
|
|
|
}
|
|
|
|
}
|