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.
195 lines
4.6 KiB
195 lines
4.6 KiB
import QtQuick 2.6 |
|
import QtQuick.Layouts 1.0 |
|
import QtQuick.Controls 2.14 |
|
import QtQuick.Controls.Material 2.0 |
|
|
|
import org.electrum 1.0 |
|
|
|
import "controls" |
|
|
|
Dialog { |
|
id: dialog |
|
|
|
property alias address: finalizer.address |
|
property alias satoshis: finalizer.amount |
|
property string message |
|
|
|
width: parent.width |
|
height: parent.height |
|
|
|
title: qsTr('Confirm Payment') |
|
|
|
modal: true |
|
parent: Overlay.overlay |
|
Overlay.modal: Rectangle { |
|
color: "#aa000000" |
|
} |
|
|
|
GridLayout { |
|
id: layout |
|
width: parent.width |
|
height: parent.height |
|
columns: 2 |
|
|
|
Rectangle { |
|
height: 1 |
|
Layout.fillWidth: true |
|
Layout.columnSpan: 2 |
|
color: Material.accentColor |
|
} |
|
|
|
Label { |
|
text: qsTr('Amount to send') |
|
} |
|
|
|
RowLayout { |
|
Layout.fillWidth: true |
|
Label { |
|
font.bold: true |
|
text: Config.formatSats(satoshis, false) |
|
} |
|
|
|
Label { |
|
text: Config.baseUnit |
|
color: Material.accentColor |
|
} |
|
|
|
Label { |
|
id: fiatValue |
|
Layout.fillWidth: true |
|
text: Daemon.fx.enabled |
|
? '(' + Daemon.fx.fiatValue(satoshis, false) + ' ' + Daemon.fx.fiatCurrency + ')' |
|
: '' |
|
font.pixelSize: constants.fontSizeMedium |
|
} |
|
} |
|
|
|
Label { |
|
text: qsTr('Mining fee') |
|
} |
|
|
|
RowLayout { |
|
Label { |
|
id: fee |
|
text: Config.formatSats(finalizer.fee) |
|
} |
|
|
|
Label { |
|
text: Config.baseUnit |
|
color: Material.accentColor |
|
} |
|
} |
|
|
|
Label { |
|
text: qsTr('Fee rate') |
|
} |
|
|
|
RowLayout { |
|
Label { |
|
id: feeRate |
|
text: finalizer.feeRate |
|
} |
|
|
|
Label { |
|
text: 'sat/vB' |
|
color: Material.accentColor |
|
} |
|
} |
|
|
|
Label { |
|
text: qsTr('Target') |
|
} |
|
|
|
Label { |
|
id: targetdesc |
|
text: finalizer.target |
|
} |
|
|
|
Slider { |
|
id: feeslider |
|
snapMode: Slider.SnapOnRelease |
|
stepSize: 1 |
|
from: 0 |
|
to: finalizer.sliderSteps |
|
onValueChanged: { |
|
if (activeFocus) |
|
finalizer.sliderPos = value |
|
} |
|
Component.onCompleted: { |
|
value = finalizer.sliderPos |
|
} |
|
Connections { |
|
target: finalizer |
|
function onSliderPosChanged() { |
|
feeslider.value = finalizer.sliderPos |
|
} |
|
} |
|
} |
|
|
|
ComboBox { |
|
id: target |
|
textRole: 'text' |
|
valueRole: 'value' |
|
model: [ |
|
{ text: qsTr('ETA'), value: 1 }, |
|
{ text: qsTr('Mempool'), value: 2 }, |
|
{ text: qsTr('Static'), value: 0 } |
|
] |
|
onCurrentValueChanged: { |
|
if (activeFocus) |
|
finalizer.method = currentValue |
|
} |
|
Component.onCompleted: { |
|
currentIndex = indexOfValue(finalizer.method) |
|
} |
|
} |
|
|
|
InfoTextArea { |
|
Layout.columnSpan: 2 |
|
visible: finalizer.warning != '' |
|
text: finalizer.warning |
|
iconStyle: InfoTextArea.IconStyle.Warn |
|
} |
|
|
|
CheckBox { |
|
id: final_cb |
|
text: qsTr('Final') |
|
Layout.columnSpan: 2 |
|
} |
|
|
|
Rectangle { |
|
height: 1 |
|
Layout.fillWidth: true |
|
Layout.columnSpan: 2 |
|
color: Material.accentColor |
|
} |
|
|
|
RowLayout { |
|
Layout.columnSpan: 2 |
|
Layout.alignment: Qt.AlignHCenter |
|
|
|
Button { |
|
text: qsTr('Cancel') |
|
onClicked: dialog.close() |
|
} |
|
|
|
Button { |
|
text: qsTr('Pay') |
|
enabled: finalizer.valid |
|
onClicked: { |
|
var f_amount = parseFloat(dialog.satoshis) |
|
if (isNaN(f_amount)) |
|
return |
|
var result = Daemon.currentWallet.send_onchain(dialog.address, dialog.satoshis, undefined, false) |
|
} |
|
} |
|
} |
|
Item { Layout.fillHeight: true; Layout.preferredWidth: 1 } |
|
} |
|
|
|
TxFinalizer { |
|
id: finalizer |
|
wallet: Daemon.currentWallet |
|
onAmountChanged: console.log(amount) |
|
} |
|
}
|
|
|