2021-11-03 13:33:49 +01:00
|
|
|
/*
|
|
|
|
|
* This file is part of the Flowee project
|
2023-03-21 22:25:41 +01:00
|
|
|
* Copyright (C) 2020-2023 Tom Zander <tom@flowee.org>
|
2021-11-03 13:33:49 +01:00
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
2022-11-26 10:46:57 +01:00
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Controls
|
|
|
|
|
import QtQuick.Layouts
|
2021-08-09 18:46:38 +02:00
|
|
|
|
2022-11-14 21:19:31 +01:00
|
|
|
import "../ControlColors.js" as ControlColors
|
|
|
|
|
import "../Flowee" as Flowee
|
2021-08-09 18:46:38 +02:00
|
|
|
|
|
|
|
|
Pane {
|
|
|
|
|
property string title: qsTr("Settings")
|
2021-11-02 19:38:36 +01:00
|
|
|
property string icon: "qrc:/settingsIcon-light.png"
|
2021-08-09 18:46:38 +02:00
|
|
|
|
|
|
|
|
GridLayout {
|
|
|
|
|
columns: 3
|
2023-03-21 22:25:41 +01:00
|
|
|
rowSpacing: 10
|
|
|
|
|
columnSpacing: 6
|
2021-08-09 18:46:38 +02:00
|
|
|
|
|
|
|
|
Label {
|
|
|
|
|
text: qsTr("Unit") + ":"
|
2022-08-15 21:03:31 +02:00
|
|
|
Layout.alignment: Qt.AlignRight
|
2021-08-09 18:46:38 +02:00
|
|
|
}
|
2021-11-03 13:33:49 +01:00
|
|
|
|
|
|
|
|
Flowee.ComboBox {
|
|
|
|
|
id: unitSelector
|
2021-08-09 18:46:38 +02:00
|
|
|
width: 210
|
|
|
|
|
model: {
|
|
|
|
|
var answer = [];
|
|
|
|
|
for (let i = 0; i < 5; ++i) {
|
2021-11-02 19:29:14 +01:00
|
|
|
answer[i] = Pay.nameOfUnit(i);
|
2021-08-09 18:46:38 +02:00
|
|
|
}
|
|
|
|
|
return answer;
|
|
|
|
|
}
|
2021-11-02 19:29:14 +01:00
|
|
|
currentIndex: Pay.unit
|
2021-11-03 13:33:49 +01:00
|
|
|
onCurrentIndexChanged: Pay.unit = currentIndex
|
2021-08-09 18:46:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
|
color: "#00000000"
|
|
|
|
|
radius: 6
|
2023-02-21 16:40:46 +01:00
|
|
|
border.color: palette.button
|
2022-09-08 17:34:36 +02:00
|
|
|
border.width: 0.8
|
2021-08-09 18:46:38 +02:00
|
|
|
|
|
|
|
|
implicitHeight: units.height + 10
|
|
|
|
|
implicitWidth: units.width + 10
|
|
|
|
|
|
|
|
|
|
GridLayout {
|
|
|
|
|
id: units
|
|
|
|
|
columns: 3
|
|
|
|
|
x: 5; y: 5
|
|
|
|
|
rowSpacing: 0
|
|
|
|
|
Label {
|
|
|
|
|
text: {
|
|
|
|
|
var answer = "1";
|
2021-11-02 19:29:14 +01:00
|
|
|
for (let i = Pay.unitAllowedDecimals; i < 8; ++i) {
|
2021-08-09 18:46:38 +02:00
|
|
|
answer += "0";
|
|
|
|
|
}
|
2021-11-02 19:29:14 +01:00
|
|
|
return answer + " " + Pay.unitName;
|
2021-08-09 18:46:38 +02:00
|
|
|
}
|
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
|
}
|
|
|
|
|
Label { text: "=" }
|
|
|
|
|
Label { text: "1 Bitcoin Cash" }
|
|
|
|
|
|
2021-11-02 19:29:14 +01:00
|
|
|
Label { text: "1 " + Pay.unitName; Layout.alignment: Qt.AlignRight; visible: Pay.isMainChain}
|
|
|
|
|
Label { text: "="; visible: Pay.isMainChain}
|
2021-08-09 18:46:38 +02:00
|
|
|
Label {
|
|
|
|
|
text: {
|
|
|
|
|
var amount = 1;
|
2021-11-02 19:29:14 +01:00
|
|
|
for (let i = 0; i < Pay.unitAllowedDecimals; ++i) {
|
2021-08-09 18:46:38 +02:00
|
|
|
amount = amount * 10;
|
|
|
|
|
}
|
|
|
|
|
return Fiat.formattedPrice(amount, Fiat.price);
|
|
|
|
|
}
|
2021-11-02 19:29:14 +01:00
|
|
|
visible: Pay.isMainChain
|
2021-08-09 18:46:38 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 22:25:41 +01:00
|
|
|
Flowee.CheckBox {
|
|
|
|
|
id: showBchOnActivity
|
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
|
checked: Pay.activityShowsBch
|
|
|
|
|
onCheckedChanged: Pay.activityShowsBch = checked
|
2023-05-02 11:14:15 +02:00
|
|
|
visible: Pay.isMainChain
|
2023-03-21 22:25:41 +01:00
|
|
|
}
|
|
|
|
|
Flowee.CheckBoxLabel {
|
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
|
buddy: showBchOnActivity
|
|
|
|
|
text: qsTr("Show Bitcoin Cash value on Activity page")
|
2023-05-02 11:14:15 +02:00
|
|
|
visible: Pay.isMainChain
|
2023-03-21 22:25:41 +01:00
|
|
|
}
|
|
|
|
|
|
2022-08-15 21:03:31 +02:00
|
|
|
Flowee.CheckBox {
|
|
|
|
|
id: showBlockNotificationsChooser
|
|
|
|
|
Layout.alignment: Qt.AlignRight
|
2022-08-16 00:30:42 +02:00
|
|
|
checked: !Pay.newBlockMuted
|
2022-08-15 21:03:31 +02:00
|
|
|
onCheckedChanged: Pay.newBlockMuted = !checked;
|
|
|
|
|
}
|
|
|
|
|
Flowee.CheckBoxLabel {
|
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
|
buddy: showBlockNotificationsChooser
|
|
|
|
|
text: qsTr("Show Block Notifications")
|
|
|
|
|
toolTipText: qsTr("When a new block is mined, Flowee Pay shows a desktop notification")
|
|
|
|
|
}
|
|
|
|
|
Flowee.CheckBox {
|
|
|
|
|
id: darkSkinChooser
|
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
|
checked: Pay.useDarkSkin
|
|
|
|
|
onCheckedChanged: {
|
|
|
|
|
Pay.useDarkSkin = checked
|
|
|
|
|
ControlColors.applySkin(mainWindow);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Flowee.CheckBoxLabel {
|
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
|
buddy: darkSkinChooser
|
|
|
|
|
text: qsTr("Night Mode")
|
|
|
|
|
}
|
2023-05-16 19:55:52 +02:00
|
|
|
Flowee.CheckBox {
|
|
|
|
|
id: privateModeCB
|
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
|
checked: Pay.privateMode
|
|
|
|
|
onCheckedChanged: Pay.privateMode = checked
|
|
|
|
|
}
|
|
|
|
|
Flowee.CheckBoxLabel {
|
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
|
buddy: privateModeCB
|
|
|
|
|
text: qsTr("Private Mode")
|
|
|
|
|
toolTipText: qsTr("Hides private wallets while enabled")
|
|
|
|
|
}
|
2022-08-15 21:03:31 +02:00
|
|
|
|
2021-08-09 18:46:38 +02:00
|
|
|
Label {
|
|
|
|
|
text: qsTr("Version") + ":"
|
2022-08-15 21:03:31 +02:00
|
|
|
Layout.alignment: Qt.AlignRight
|
2021-08-09 18:46:38 +02:00
|
|
|
}
|
|
|
|
|
Label {
|
2021-11-02 19:29:14 +01:00
|
|
|
text: Pay.version
|
2021-08-09 18:46:38 +02:00
|
|
|
Layout.columnSpan: 2
|
|
|
|
|
}
|
|
|
|
|
Label {
|
|
|
|
|
text: qsTr("Library Version") + ":"
|
2022-08-15 21:03:31 +02:00
|
|
|
Layout.alignment: Qt.AlignRight
|
2021-08-09 18:46:38 +02:00
|
|
|
}
|
|
|
|
|
Label {
|
2021-11-02 19:29:14 +01:00
|
|
|
text: Pay.libsVersion
|
2021-08-09 18:46:38 +02:00
|
|
|
Layout.columnSpan: 2
|
|
|
|
|
}
|
2022-08-18 19:48:06 +02:00
|
|
|
Label {
|
|
|
|
|
text: qsTr("Synchronization") + ":"
|
|
|
|
|
}
|
2021-08-09 18:46:38 +02:00
|
|
|
|
2022-08-18 19:48:06 +02:00
|
|
|
Button {
|
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
|
text: qsTr("Network Status")
|
|
|
|
|
onClicked: {
|
|
|
|
|
netView.source = "./NetView.qml"
|
|
|
|
|
netView.item.show();
|
|
|
|
|
}
|
2021-08-09 18:46:38 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|