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.
130 lines
3.8 KiB
130 lines
3.8 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 |
|
|
|
import "controls" |
|
|
|
Pane { |
|
property string title: qsTr("Lightning Channels") |
|
|
|
ColumnLayout { |
|
id: layout |
|
width: parent.width |
|
height: parent.height |
|
|
|
GridLayout { |
|
id: summaryLayout |
|
Layout.preferredWidth: parent.width |
|
columns: 2 |
|
|
|
Label { |
|
Layout.columnSpan: 2 |
|
text: qsTr('You have %1 open channels').arg(listview.count) |
|
color: Material.accentColor |
|
} |
|
|
|
Label { |
|
text: qsTr('You can send:') |
|
color: Material.accentColor |
|
} |
|
|
|
RowLayout { |
|
Layout.fillWidth: true |
|
Label { |
|
text: Config.formatSats(Daemon.currentWallet.lightningCanSend) |
|
} |
|
Label { |
|
text: Config.baseUnit |
|
color: Material.accentColor |
|
} |
|
Label { |
|
text: Daemon.fx.enabled |
|
? '(' + Daemon.fx.fiatValue(Daemon.currentWallet.lightningCanSend) + ' ' + Daemon.fx.fiatCurrency + ')' |
|
: '' |
|
} |
|
} |
|
|
|
Label { |
|
text: qsTr('You can receive:') |
|
color: Material.accentColor |
|
} |
|
|
|
RowLayout { |
|
Layout.fillWidth: true |
|
Label { |
|
text: Config.formatSats(Daemon.currentWallet.lightningCanReceive) |
|
} |
|
Label { |
|
text: Config.baseUnit |
|
color: Material.accentColor |
|
} |
|
Label { |
|
text: Daemon.fx.enabled |
|
? '(' + Daemon.fx.fiatValue(Daemon.currentWallet.lightningCanReceive) + ' ' + Daemon.fx.fiatCurrency + ')' |
|
: '' |
|
} |
|
} |
|
|
|
} |
|
|
|
Frame { |
|
id: channelsFrame |
|
Layout.preferredWidth: parent.width |
|
Layout.fillHeight: true |
|
verticalPadding: 0 |
|
horizontalPadding: 0 |
|
background: PaneInsetBackground {} |
|
|
|
ColumnLayout { |
|
spacing: 0 |
|
anchors.fill: parent |
|
|
|
Item { |
|
Layout.preferredHeight: hitem.height |
|
Layout.preferredWidth: parent.width |
|
Rectangle { |
|
anchors.fill: parent |
|
color: Qt.lighter(Material.background, 1.25) |
|
} |
|
RowLayout { |
|
id: hitem |
|
width: parent.width |
|
Label { |
|
text: qsTr('Channels') |
|
font.pixelSize: constants.fontSizeLarge |
|
color: Material.accentColor |
|
} |
|
} |
|
} |
|
|
|
ListView { |
|
id: listview |
|
Layout.preferredWidth: parent.width |
|
Layout.fillHeight: true |
|
clip: true |
|
model: Daemon.currentWallet.channelModel |
|
|
|
delegate: ChannelDelegate { |
|
//highlighted: ListView.isCurrentItem |
|
} |
|
|
|
ScrollIndicator.vertical: ScrollIndicator { } |
|
} |
|
} |
|
} |
|
|
|
RowLayout { |
|
Layout.alignment: Qt.AlignHCenter |
|
Layout.fillWidth: true |
|
Button { |
|
text: qsTr('Open Channel') |
|
onClicked: app.stack.push(Qt.resolvedUrl('OpenChannel.qml')) |
|
} |
|
} |
|
|
|
} |
|
|
|
}
|
|
|