monero-gui/wizard/WizardDaemonSettings.qml

207 lines
7.6 KiB
QML
Raw Normal View History

2019-01-14 00:02:44 +00:00
// Copyright (c) 2014-2019, The Monero Project
2017-08-06 15:26:48 +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
2019-01-14 00:02:44 +00:00
import QtQuick.Dialogs 1.2
import QtQuick.Layouts 1.2
import QtQuick.Controls 2.0
2017-08-06 15:26:48 +00:00
2019-01-14 00:02:44 +00:00
import "../js/Wizard.js" as Wizard
import "../components" as MoneroComponents
2017-08-06 15:26:48 +00:00
2019-01-14 00:02:44 +00:00
ColumnLayout {
Layout.fillWidth: true
Layout.maximumWidth: wizardController.wizardSubViewWidth
Layout.alignment: Qt.AlignHCenter
2019-04-25 19:09:23 +00:00
spacing: 10
2019-01-14 00:02:44 +00:00
function save(){
persistentSettings.useRemoteNode = remoteNode.checked;
if (bootstrapNodeEdit.daemonAddrText == "auto") {
persistentSettings.bootstrapNodeAddress = "auto";
} else {
persistentSettings.bootstrapNodeAddress = bootstrapNodeEdit.getAddress();
}
2017-08-06 15:26:48 +00:00
}
2019-01-14 00:02:44 +00:00
MoneroComponents.RadioButton {
id: localNode
2019-04-08 01:43:18 +00:00
Layout.fillWidth: true
2019-01-14 00:02:44 +00:00
text: qsTr("Start a node automatically in background (recommended)") + translationManager.emptyString
2019-04-25 19:09:23 +00:00
fontSize: 16
2019-01-14 00:02:44 +00:00
checked: !appWindow.persistentSettings.useRemoteNode && !isAndroid && !isIOS
visible: !isAndroid && !isIOS
onClicked: {
checked = true;
remoteNode.checked = false;
2017-08-06 15:26:48 +00:00
}
}
ColumnLayout {
2019-01-14 00:02:44 +00:00
id: blockchainFolderRow
2019-04-08 01:43:18 +00:00
visible: localNode.checked
2019-04-25 19:09:23 +00:00
spacing: 20
2017-08-06 15:26:48 +00:00
2019-04-25 19:09:23 +00:00
Layout.topMargin: 8
2019-01-14 00:02:44 +00:00
Layout.fillWidth: true
2017-08-06 15:26:48 +00:00
2019-01-14 00:02:44 +00:00
MoneroComponents.LineEdit {
id: blockchainFolder
2017-08-06 15:26:48 +00:00
Layout.fillWidth: true
2019-01-14 00:02:44 +00:00
readOnly: true
labelText: {
const label = qsTr("Blockchain location (optional)");
if (persistentSettings.blockchainDataDir) {
const style = "<style type='text/css'>a {cursor:pointer;text-decoration: none; color: #FF6C3C}</style>";
return label + style + "<a href='#'> (%1)</a>".arg(qsTr("Reset")) + translationManager.emptyString;
} else {
return label + translationManager.emptyString;
}
}
2019-04-25 19:09:23 +00:00
labelFontSize: 14
2019-01-14 00:02:44 +00:00
placeholderText: qsTr("Default") + translationManager.emptyString
2019-04-25 19:09:23 +00:00
placeholderFontSize: 15
2019-01-14 00:02:44 +00:00
text: persistentSettings.blockchainDataDir
onLabelLinkActivated: persistentSettings.blockchainDataDir = ""
MoneroComponents.InlineButton {
small: true
text: qsTr("Browse") + translationManager.emptyString
onClicked: {
if(persistentSettings.blockchainDataDir != "");
blockchainFileDialog.folder = "file://" + persistentSettings.blockchainDataDir;
blockchainFileDialog.open();
blockchainFolder.focus = true;
}
2017-08-06 15:26:48 +00:00
}
}
2021-04-05 23:56:19 +00:00
RowLayout {
id: pruningOptionRow
MoneroComponents.CheckBox {
id: pruneBlockchainCheckBox
checked: !existingDbWarning.visible ? persistentSettings.pruneBlockchain : false
enabled: !existingDbWarning.visible
onClicked: {
persistentSettings.pruneBlockchain = !persistentSettings.pruneBlockchain
this.checked = persistentSettings.pruneBlockchain
}
text: qsTr("Prune blockchain") + translationManager.emptyString
}
Text {
id: existingDbWarning
text: "A blockchain database already exists here. Select a new location to start a pruned node"
visible: daemonManager ? daemonManager.checkLmdbExists(blockchainFolder.text) : false
color: MoneroComponents.Style.defaultFontColor
font.family: MoneroComponents.Style.fontRegular.name
}
}
2019-01-14 00:02:44 +00:00
ColumnLayout{
2019-04-25 19:09:23 +00:00
Layout.topMargin: 6
2019-01-14 00:02:44 +00:00
spacing: 0
Text {
2019-01-14 00:02:44 +00:00
text: qsTr("Bootstrap node") + translationManager.emptyString
2019-04-25 19:09:23 +00:00
Layout.topMargin: 10
2017-08-06 15:26:48 +00:00
Layout.fillWidth: true
2019-01-14 00:02:44 +00:00
font.family: MoneroComponents.Style.fontRegular.name
color: MoneroComponents.Style.defaultFontColor
font.pixelSize: {
if(wizardController.layoutScale === 2 ){
2019-04-25 19:09:23 +00:00
return 22;
2019-01-14 00:02:44 +00:00
} else {
2019-04-25 19:09:23 +00:00
return 16;
2017-08-06 15:26:48 +00:00
}
}
2019-01-14 00:02:44 +00:00
wrapMode: Text.WordWrap
leftPadding: 0
topPadding: 0
bottomPadding: 0
2017-08-06 15:26:48 +00:00
}
2019-01-14 00:02:44 +00:00
Text {
2019-01-14 00:02:44 +00:00
text: qsTr("Additionally, you may specify a bootstrap node to use Monero immediately.") + translationManager.emptyString
2019-04-25 19:09:23 +00:00
Layout.topMargin: 4
2018-01-22 09:43:39 +00:00
Layout.fillWidth: true
2019-01-14 00:02:44 +00:00
font.family: MoneroComponents.Style.fontRegular.name
color: MoneroComponents.Style.dimmedFontColor
font.pixelSize: {
if(wizardController.layoutScale === 2 ){
2019-04-25 19:09:23 +00:00
return 16;
2019-01-14 00:02:44 +00:00
} else {
2019-04-25 19:09:23 +00:00
return 14;
2019-01-14 00:02:44 +00:00
}
}
wrapMode: Text.WordWrap
leftPadding: 0
topPadding: 0
bottomPadding: 0
2018-01-22 09:43:39 +00:00
}
2019-01-14 00:02:44 +00:00
}
ColumnLayout {
spacing: 8
Layout.fillWidth: true
MoneroComponents.RemoteNodeEdit {
2018-01-22 09:43:39 +00:00
id: bootstrapNodeEdit
2019-04-25 19:09:23 +00:00
Layout.minimumWidth: 300
2019-01-14 00:02:44 +00:00
//labelText: qsTr("Bootstrap node (leave blank if not wanted)") + translationManager.emptyString
initialAddress: persistentSettings.bootstrapNodeAddress
2018-01-22 09:43:39 +00:00
}
2017-08-06 15:26:48 +00:00
}
2019-01-14 00:02:44 +00:00
}
2017-08-06 15:26:48 +00:00
2019-04-08 01:43:18 +00:00
MoneroComponents.RadioButton {
id: remoteNode
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
Layout.topMargin: 8
2019-04-08 01:43:18 +00:00
text: qsTr("Connect to a remote node") + translationManager.emptyString
2019-04-25 19:09:23 +00:00
fontSize: 16
2019-04-08 01:43:18 +00:00
checked: appWindow.persistentSettings.useRemoteNode
onClicked: {
checked = true
localNode.checked = false
2017-08-06 15:26:48 +00:00
}
}
MoneroComponents.RemoteNodeList {
2019-04-08 01:43:18 +00:00
Layout.fillWidth: true
Layout.topMargin: 8
visible: remoteNode.checked
2017-08-06 15:26:48 +00:00
}
}