219 lines
6.5 KiB
QML
219 lines
6.5 KiB
QML
import QtQuick 2.6
|
|
import QtQuick.Controls 2.3
|
|
import QtQuick.Layouts 1.0
|
|
import QtQuick.Controls.Material 2.0
|
|
|
|
import org.electrum 1.0
|
|
|
|
import "controls"
|
|
|
|
ElDialog {
|
|
id: root
|
|
|
|
width: parent.width
|
|
height: parent.height
|
|
|
|
title: qsTr('Lightning Swap')
|
|
iconSource: Qt.resolvedUrl('../../icons/update.png')
|
|
standardButtons: Dialog.Cancel
|
|
|
|
modal: true
|
|
parent: Overlay.overlay
|
|
Overlay.modal: Rectangle {
|
|
color: "#aa000000"
|
|
}
|
|
|
|
padding: 0
|
|
|
|
ColumnLayout {
|
|
width: parent.width
|
|
height: parent.height
|
|
spacing: 0
|
|
|
|
GridLayout {
|
|
id: layout
|
|
columns: 2
|
|
Layout.preferredWidth: parent.width
|
|
Layout.leftMargin: constants.paddingLarge
|
|
Layout.rightMargin: constants.paddingLarge
|
|
|
|
RowLayout {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
Label {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
text: qsTr('You send')
|
|
color: Material.accentColor
|
|
}
|
|
Image {
|
|
Layout.preferredWidth: constants.iconSizeSmall
|
|
Layout.preferredHeight: constants.iconSizeSmall
|
|
source: swaphelper.isReverse ? '../../icons/lightning.png' : '../../icons/bitcoin.png'
|
|
visible: swaphelper.valid
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
Label {
|
|
id: tosend
|
|
text: Config.formatSats(swaphelper.tosend)
|
|
font.family: FixedFont
|
|
visible: swaphelper.valid
|
|
}
|
|
Label {
|
|
text: Config.baseUnit
|
|
color: Material.accentColor
|
|
visible: swaphelper.valid
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
Label {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
text: qsTr('You receive')
|
|
color: Material.accentColor
|
|
}
|
|
Image {
|
|
Layout.preferredWidth: constants.iconSizeSmall
|
|
Layout.preferredHeight: constants.iconSizeSmall
|
|
source: swaphelper.isReverse ? '../../icons/bitcoin.png' : '../../icons/lightning.png'
|
|
visible: swaphelper.valid
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
Label {
|
|
id: toreceive
|
|
text: Config.formatSats(swaphelper.toreceive)
|
|
font.family: FixedFont
|
|
visible: swaphelper.valid
|
|
}
|
|
Label {
|
|
text: Config.baseUnit
|
|
color: Material.accentColor
|
|
visible: swaphelper.valid
|
|
}
|
|
}
|
|
|
|
Label {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
text: qsTr('Server fee')
|
|
color: Material.accentColor
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
Label {
|
|
text: Config.formatSats(swaphelper.serverfee)
|
|
font.family: FixedFont
|
|
}
|
|
Label {
|
|
text: Config.baseUnit
|
|
color: Material.accentColor
|
|
}
|
|
Label {
|
|
text: '(' + swaphelper.serverfeeperc + ')'
|
|
}
|
|
}
|
|
|
|
Label {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
text: qsTr('Mining fee')
|
|
color: Material.accentColor
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.preferredWidth: 1
|
|
Layout.fillWidth: true
|
|
Label {
|
|
text: Config.formatSats(swaphelper.miningfee)
|
|
font.family: FixedFont
|
|
}
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: Config.baseUnit
|
|
color: Material.accentColor
|
|
}
|
|
}
|
|
}
|
|
|
|
Slider {
|
|
id: swapslider
|
|
Layout.topMargin: constants.paddingLarge
|
|
Layout.bottomMargin: constants.paddingLarge
|
|
Layout.leftMargin: constants.paddingXXLarge
|
|
Layout.rightMargin: constants.paddingXXLarge
|
|
Layout.fillWidth: true
|
|
|
|
from: swaphelper.rangeMin
|
|
to: swaphelper.rangeMax
|
|
|
|
onValueChanged: {
|
|
if (activeFocus)
|
|
swaphelper.sliderPos = value
|
|
}
|
|
Component.onCompleted: {
|
|
value = swaphelper.sliderPos
|
|
}
|
|
Connections {
|
|
target: swaphelper
|
|
function onSliderPosChanged() {
|
|
swapslider.value = swaphelper.sliderPos
|
|
}
|
|
}
|
|
}
|
|
|
|
InfoTextArea {
|
|
Layout.leftMargin: constants.paddingXXLarge
|
|
Layout.rightMargin: constants.paddingXXLarge
|
|
Layout.fillWidth: true
|
|
Layout.alignment: Qt.AlignHCenter
|
|
visible: swaphelper.userinfo != ''
|
|
text: swaphelper.userinfo
|
|
}
|
|
|
|
Item { Layout.fillHeight: true; Layout.preferredWidth: 1 }
|
|
|
|
FlatButton {
|
|
Layout.columnSpan: 2
|
|
Layout.fillWidth: true
|
|
text: qsTr('Swap')
|
|
icon.source: '../../icons/status_waiting.png'
|
|
enabled: swaphelper.valid
|
|
onClicked: swaphelper.executeSwap()
|
|
}
|
|
}
|
|
|
|
SwapHelper {
|
|
id: swaphelper
|
|
wallet: Daemon.currentWallet
|
|
onError: {
|
|
var dialog = app.messageDialog.createObject(app, {'text': message})
|
|
dialog.open()
|
|
}
|
|
onConfirm: {
|
|
var dialog = app.messageDialog.createObject(app, {'text': message, 'yesno': true})
|
|
dialog.yesClicked.connect(function() {
|
|
dialog.close()
|
|
swaphelper.executeSwap(true)
|
|
root.close()
|
|
})
|
|
dialog.open()
|
|
}
|
|
onAuthRequired: {
|
|
app.handleAuthRequired(swaphelper, method)
|
|
}
|
|
}
|
|
}
|