1
0

request dialog improve, icons

This commit is contained in:
Sander van Grieken
2022-04-04 12:04:32 +02:00
parent a65ea46b5d
commit 50e7c082cd
4 changed files with 119 additions and 114 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 880 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -34,137 +34,142 @@ Dialog {
font.bold: true font.bold: true
font.pixelSize: 16 font.pixelSize: 16
} }
ToolButton {
Layout.alignment: Qt.AlignBaseline
icon.source: '../../icons/closebutton.png'
icon.color: 'transparent'
icon.width: 32
icon.height: 32
onClicked: dialog.close()
visible: false
}
} }
GridLayout {
width: parent.width
rowSpacing: constants.paddingXLarge
columns: 3
Rectangle { Flickable {
height: 1 anchors.fill: parent
Layout.fillWidth: true contentHeight: rootLayout.height
Layout.columnSpan: 3 clip:true
color: Material.accentColor interactive: height < contentHeight
}
Image { GridLayout {
Layout.columnSpan: 3 id: rootLayout
Layout.alignment: Qt.AlignHCenter width: parent.width
source: 'image://qrgen/' + modelItem.address rowSpacing: constants.paddingMedium
columns: 3
Rectangle { Rectangle {
property int size: 57 // should be qr pixel multiple height: 1
color: 'white' Layout.fillWidth: true
x: (parent.width - size) / 2 Layout.columnSpan: 3
y: (parent.height - size) / 2 color: Material.accentColor
width: size }
height: size
Image { Image {
source: '../../icons/electrum.png' Layout.columnSpan: 3
x: 1 Layout.alignment: Qt.AlignHCenter
y: 1 Layout.topMargin: constants.paddingSmall
width: parent.width - 2 Layout.bottomMargin: constants.paddingSmall
height: parent.height - 2
scale: 0.9 source: 'image://qrgen/' + modelItem.address
Rectangle {
property int size: 57 // should be qr pixel multiple
color: 'white'
x: (parent.width - size) / 2
y: (parent.height - size) / 2
width: size
height: size
Image {
source: '../../icons/electrum.png'
x: 1
y: 1
width: parent.width - 2
height: parent.height - 2
scale: 0.9
}
} }
} }
}
Rectangle { Rectangle {
height: 1 height: 1
Layout.fillWidth: true Layout.fillWidth: true
Layout.columnSpan: 3 Layout.columnSpan: 3
color: Material.accentColor color: Material.accentColor
}
Label {
visible: modelItem.message != ''
text: qsTr('Description')
}
Label {
visible: modelItem.message != ''
Layout.columnSpan: 2
Layout.fillWidth: true
wrapMode: Text.WordWrap
text: modelItem.message
font.pixelSize: constants.fontSizeLarge
}
Label {
visible: modelItem.amount > 0
text: qsTr('Amount')
}
Label {
visible: modelItem.amount > 0
text: Config.formatSats(modelItem.amount, false)
font.family: FixedFont
font.pixelSize: constants.fontSizeLarge
}
Label {
visible: modelItem.amount > 0
Layout.fillWidth: true
text: Config.baseUnit
color: Material.accentColor
font.pixelSize: constants.fontSizeLarge
}
Label {
text: qsTr('Address')
}
Label {
Layout.fillWidth: true
font.family: FixedFont
font.pixelSize: constants.fontSizeLarge
wrapMode: Text.WrapAnywhere
text: modelItem.address
}
ToolButton {
icon.source: '../../icons/copy.png'
icon.color: 'transparent'
onClicked: {
AppController.textToClipboard(modelItem.address)
} }
}
Label { RowLayout {
text: qsTr('Status') Layout.columnSpan: 3
} Layout.alignment: Qt.AlignHCenter
Label { Button {
Layout.columnSpan: 2 icon.source: '../../icons/delete.png'
Layout.fillWidth: true text: qsTr('Delete')
font.pixelSize: constants.fontSizeLarge onClicked: {
text: modelItem.status Daemon.currentWallet.delete_request(modelItem.key)
} dialog.close()
}
}
Button {
icon.source: '../../icons/copy_bw.png'
icon.color: 'transparent'
text: 'Copy'
enabled: false
}
Button {
icon.source: '../../icons/share.png'
text: 'Share'
enabled: false
}
}
Label {
visible: modelItem.message != ''
text: qsTr('Description')
}
Label {
visible: modelItem.message != ''
Layout.columnSpan: 2
Layout.fillWidth: true
wrapMode: Text.WordWrap
text: modelItem.message
font.pixelSize: constants.fontSizeLarge
}
RowLayout { Label {
Layout.columnSpan: 3 visible: modelItem.amount > 0
Layout.fillHeight: true text: qsTr('Amount')
Layout.alignment: Qt.AlignHCenter }
Button { Label {
text: 'Delete' visible: modelItem.amount > 0
text: Config.formatSats(modelItem.amount, false)
font.family: FixedFont
font.pixelSize: constants.fontSizeLarge
}
Label {
visible: modelItem.amount > 0
Layout.fillWidth: true
text: Config.baseUnit
color: Material.accentColor
font.pixelSize: constants.fontSizeLarge
}
Label {
text: qsTr('Address')
}
Label {
Layout.fillWidth: true
font.family: FixedFont
font.pixelSize: constants.fontSizeLarge
wrapMode: Text.WrapAnywhere
text: modelItem.address
}
ToolButton {
icon.source: '../../icons/copy_bw.png'
onClicked: { onClicked: {
Daemon.currentWallet.delete_request(modelItem.key) AppController.textToClipboard(modelItem.address)
dialog.close()
} }
} }
Button {
text: 'Copy' Label {
enabled: false text: qsTr('Status')
} }
Button { Label {
text: 'Share' Layout.columnSpan: 2
enabled: false Layout.fillWidth: true
font.pixelSize: constants.fontSizeLarge
text: modelItem.status
} }
} }
} }