4 changed files with 185 additions and 17 deletions
@ -0,0 +1,130 @@ |
|||||||
|
import QtQuick 2.6 |
||||||
|
import QtQuick.Layouts 1.0 |
||||||
|
import QtQuick.Controls 2.3 |
||||||
|
import QtQuick.Controls.Material 2.0 |
||||||
|
|
||||||
|
import org.electrum 1.0 |
||||||
|
|
||||||
|
import "controls" |
||||||
|
|
||||||
|
Dialog { |
||||||
|
id: dialog |
||||||
|
width: parent.width |
||||||
|
height: parent.height |
||||||
|
|
||||||
|
property string channelid |
||||||
|
|
||||||
|
title: qsTr('Close Channel') |
||||||
|
standardButtons: closing ? 0 : Dialog.Cancel |
||||||
|
|
||||||
|
modal: true |
||||||
|
parent: Overlay.overlay |
||||||
|
Overlay.modal: Rectangle { |
||||||
|
color: "#aa000000" |
||||||
|
} |
||||||
|
property bool closing: false |
||||||
|
|
||||||
|
closePolicy: Popup.NoAutoClose |
||||||
|
|
||||||
|
GridLayout { |
||||||
|
id: layout |
||||||
|
width: parent.width |
||||||
|
height: parent.height |
||||||
|
columns: 2 |
||||||
|
|
||||||
|
Label { |
||||||
|
text: qsTr('Channel name') |
||||||
|
color: Material.accentColor |
||||||
|
} |
||||||
|
|
||||||
|
Label { |
||||||
|
text: channeldetails.name |
||||||
|
} |
||||||
|
|
||||||
|
Label { |
||||||
|
text: qsTr('Short channel ID') |
||||||
|
color: Material.accentColor |
||||||
|
} |
||||||
|
|
||||||
|
Label { |
||||||
|
text: channeldetails.short_cid |
||||||
|
} |
||||||
|
|
||||||
|
InfoTextArea { |
||||||
|
Layout.columnSpan: 2 |
||||||
|
text: qsTr(channeldetails.message_force_close) |
||||||
|
} |
||||||
|
|
||||||
|
ColumnLayout { |
||||||
|
Layout.columnSpan: 2 |
||||||
|
Layout.alignment: Qt.AlignHCenter |
||||||
|
|
||||||
|
ButtonGroup { |
||||||
|
id: closetypegroup |
||||||
|
} |
||||||
|
|
||||||
|
RadioButton { |
||||||
|
ButtonGroup.group: closetypegroup |
||||||
|
property string closetype: 'cooperative' |
||||||
|
checked: true |
||||||
|
enabled: !closing && channeldetails.canCoopClose |
||||||
|
text: qsTr('Cooperative close') |
||||||
|
} |
||||||
|
RadioButton { |
||||||
|
ButtonGroup.group: closetypegroup |
||||||
|
property string closetype: 'force' |
||||||
|
enabled: !closing && channeldetails.canForceClose |
||||||
|
text: qsTr('Request Force-close') |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
Button { |
||||||
|
Layout.columnSpan: 2 |
||||||
|
Layout.alignment: Qt.AlignHCenter |
||||||
|
text: qsTr('Close') |
||||||
|
enabled: !closing |
||||||
|
onClicked: { |
||||||
|
closing = true |
||||||
|
channeldetails.close_channel(closetypegroup.checkedButton.closetype) |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
ColumnLayout { |
||||||
|
Layout.columnSpan: 2 |
||||||
|
Layout.alignment: Qt.AlignHCenter |
||||||
|
Label { |
||||||
|
id: errorText |
||||||
|
visible: !closing && errorText |
||||||
|
wrapMode: Text.Wrap |
||||||
|
Layout.preferredWidth: layout.width |
||||||
|
} |
||||||
|
Label { |
||||||
|
text: qsTr('Closing...') |
||||||
|
visible: closing |
||||||
|
} |
||||||
|
BusyIndicator { |
||||||
|
visible: closing |
||||||
|
} |
||||||
|
} |
||||||
|
Item { Layout.fillHeight: true; Layout.preferredWidth: 1 } |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
ChannelDetails { |
||||||
|
id: channeldetails |
||||||
|
wallet: Daemon.currentWallet |
||||||
|
channelid: dialog.channelid |
||||||
|
|
||||||
|
onChannelCloseSuccess: { |
||||||
|
closing = false |
||||||
|
dialog.close() |
||||||
|
} |
||||||
|
|
||||||
|
onChannelCloseFailed: { |
||||||
|
closing = false |
||||||
|
errorText.text = message |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue