You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
199 lines
6.5 KiB
199 lines
6.5 KiB
import QtQuick 2.6 |
|
import QtQuick.Layouts 1.0 |
|
import QtQuick.Controls 2.0 |
|
import QtQuick.Controls.Material 2.0 |
|
|
|
import org.electrum 1.0 |
|
|
|
Pane { |
|
id: preferences |
|
|
|
property string title: qsTr("Preferences") |
|
|
|
ColumnLayout { |
|
anchors.fill: parent |
|
|
|
Flickable { |
|
Layout.fillHeight: true |
|
Layout.fillWidth: true |
|
|
|
GridLayout { |
|
id: rootLayout |
|
columns: 2 |
|
|
|
Label { |
|
text: qsTr('Language') |
|
} |
|
|
|
ComboBox { |
|
id: language |
|
enabled: false |
|
} |
|
|
|
Label { |
|
text: qsTr('Base unit') |
|
} |
|
|
|
ComboBox { |
|
id: baseUnit |
|
model: ['BTC','mBTC','bits','sat'] |
|
onCurrentValueChanged: { |
|
if (activeFocus) |
|
Config.baseUnit = currentValue |
|
} |
|
} |
|
|
|
Switch { |
|
id: thousands |
|
Layout.columnSpan: 2 |
|
text: qsTr('Add thousands separators to bitcoin amounts') |
|
onCheckedChanged: { |
|
if (activeFocus) |
|
Config.thousandsSeparator = checked |
|
} |
|
} |
|
|
|
Switch { |
|
id: checkSoftware |
|
Layout.columnSpan: 2 |
|
text: qsTr('Automatically check for software updates') |
|
enabled: false |
|
} |
|
|
|
Switch { |
|
id: fiatEnable |
|
text: qsTr('Fiat Currency') |
|
onCheckedChanged: { |
|
if (activeFocus) |
|
Daemon.fx.enabled = checked |
|
} |
|
} |
|
|
|
ComboBox { |
|
id: currencies |
|
model: Daemon.fx.currencies |
|
enabled: Daemon.fx.enabled |
|
onCurrentValueChanged: { |
|
if (activeFocus) |
|
Daemon.fx.fiatCurrency = currentValue |
|
} |
|
} |
|
|
|
Switch { |
|
id: historicRates |
|
text: qsTr('Historic rates') |
|
enabled: Daemon.fx.enabled |
|
Layout.columnSpan: 2 |
|
onCheckedChanged: { |
|
if (activeFocus) |
|
Daemon.fx.historicRates = checked |
|
} |
|
} |
|
|
|
Label { |
|
text: qsTr('Source') |
|
enabled: Daemon.fx.enabled |
|
} |
|
|
|
ComboBox { |
|
id: rateSources |
|
enabled: Daemon.fx.enabled |
|
model: Daemon.fx.rateSources |
|
onModelChanged: { |
|
currentIndex = rateSources.indexOfValue(Daemon.fx.rateSource) |
|
} |
|
onCurrentValueChanged: { |
|
if (activeFocus) |
|
Daemon.fx.rateSource = currentValue |
|
} |
|
} |
|
|
|
Switch { |
|
id: spendUnconfirmed |
|
text: qsTr('Spend unconfirmed') |
|
Layout.columnSpan: 2 |
|
onCheckedChanged: { |
|
if (activeFocus) |
|
Config.spendUnconfirmed = checked |
|
} |
|
} |
|
|
|
Label { |
|
text: qsTr('PIN') |
|
} |
|
|
|
RowLayout { |
|
Label { |
|
text: Config.pinCode == '' ? qsTr('Off'): qsTr('On') |
|
color: Material.accentColor |
|
Layout.rightMargin: constants.paddingMedium |
|
} |
|
Button { |
|
text: qsTr('Enable') |
|
visible: Config.pinCode == '' |
|
onClicked: { |
|
var dialog = pinSetup.createObject(preferences, {mode: 'enter'}) |
|
dialog.accepted.connect(function() { |
|
Config.pinCode = dialog.pincode |
|
dialog.close() |
|
}) |
|
dialog.open() |
|
} |
|
} |
|
Button { |
|
text: qsTr('Change') |
|
visible: Config.pinCode != '' |
|
onClicked: { |
|
var dialog = pinSetup.createObject(preferences, {mode: 'change', pincode: Config.pinCode}) |
|
dialog.accepted.connect(function() { |
|
Config.pinCode = dialog.pincode |
|
dialog.close() |
|
}) |
|
dialog.open() |
|
} |
|
} |
|
Button { |
|
text: qsTr('Remove') |
|
visible: Config.pinCode != '' |
|
onClicked: { |
|
Config.pinCode = '' |
|
} |
|
} |
|
} |
|
|
|
Label { |
|
text: qsTr('Lightning Routing') |
|
} |
|
|
|
ComboBox { |
|
id: lnRoutingType |
|
valueRole: 'key' |
|
textRole: 'label' |
|
enabled: Daemon.currentWallet != null && Daemon.currentWallet.isLightning && false |
|
model: ListModel { |
|
ListElement { key: 'gossip'; label: qsTr('Gossip') } |
|
ListElement { key: 'trampoline'; label: qsTr('Trampoline') } |
|
} |
|
} |
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
Component { |
|
id: pinSetup |
|
Pin {} |
|
} |
|
|
|
Component.onCompleted: { |
|
baseUnit.currentIndex = ['BTC','mBTC','bits','sat'].indexOf(Config.baseUnit) |
|
thousands.checked = Config.thousandsSeparator |
|
currencies.currentIndex = currencies.indexOfValue(Daemon.fx.fiatCurrency) |
|
historicRates.checked = Daemon.fx.historicRates |
|
rateSources.currentIndex = rateSources.indexOfValue(Daemon.fx.rateSource) |
|
fiatEnable.checked = Daemon.fx.enabled |
|
spendUnconfirmed.checked = Config.spendUnconfirmed |
|
lnRoutingType.currentIndex = Config.useGossip ? 0 : 1 |
|
} |
|
}
|
|
|