receive: add "Download QR-Code image" and "Copy Payment URL" buttons

This commit is contained in:
xiphon 2019-01-10 14:57:28 +00:00
parent 36eb1f80e1
commit ba2815b6c9
6 changed files with 39 additions and 69 deletions

BIN
images/download-white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 323 B

View File

@ -270,51 +270,18 @@ Rectangle {
} }
} }
RowLayout { ColumnLayout {
Layout.topMargin: 22 * scaleRatio Layout.alignment: Qt.AlignHCenter
MoneroComponents.CheckBox2 { spacing: 11 * scaleRatio
id: showAdvancedCheckbox
checked: persistentSettings.receiveShowAdvanced
onClicked: {
persistentSettings.receiveShowAdvanced = !persistentSettings.receiveShowAdvanced
}
text: qsTr("Advanced options") + translationManager.emptyString
}
}
RowLayout {
Layout.topMargin: 6 * scaleRatio
visible: persistentSettings.receiveShowAdvanced
Layout.fillWidth: true
MoneroComponents.LineEditMulti {
id: paymentUrl
Layout.fillWidth: true
labelText: qsTr("Payment URL") + translationManager.emptyString
text: TxUtils.makeQRCodeString(appWindow.current_address)
readOnly: true
copyButton: true
wrapMode: Text.WrapAnywhere
}
}
GridLayout{
visible: persistentSettings.receiveShowAdvanced
Layout.topMargin: 10 * scaleRatio
columns: 2
columnSpacing: 30 * scaleRatio
RowLayout {
property int qrSize: 220 * scaleRatio property int qrSize: 220 * scaleRatio
Layout.fillWidth: true
Rectangle { Rectangle {
id: qrContainer id: qrContainer
radius: 4 * scaleRatio
color: "white" color: "white"
Layout.preferredWidth: parent.qrSize Layout.fillWidth: true
Layout.preferredHeight: parent.qrSize Layout.maximumWidth: parent.qrSize
Layout.preferredHeight: width
radius: 4 * scaleRatio
Image { Image {
id: qrCode id: qrCode
@ -328,25 +295,24 @@ Rectangle {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
acceptedButtons: Qt.RightButton acceptedButtons: Qt.RightButton
onClicked: {
if (mouse.button == Qt.RightButton){
qrMenu.x = this.mouseX;
qrMenu.y = this.mouseY;
qrMenu.open()
}
}
onPressAndHold: qrFileDialog.open() onPressAndHold: qrFileDialog.open()
} }
} }
Menu {
id: qrMenu
title: "QrCode"
MenuItem {
text: qsTr("Save As") + translationManager.emptyString;
onTriggered: qrFileDialog.open()
} }
RowLayout {
spacing: parent.spacing
MoneroComponents.StandardButton {
rightIcon: "../images/download-white.png"
onClicked: qrFileDialog.open()
}
MoneroComponents.StandardButton {
rightIcon: "../images/external-link-white.png"
onClicked: {
clipboard.setText(TxUtils.makeQRCodeString(appWindow.current_address));
appWindow.showStatusMessage(qsTr("Copied to clipboard"), 3);
} }
} }
} }

View File

@ -5,6 +5,10 @@
<file>RightPanel.qml</file> <file>RightPanel.qml</file>
<file>MiddlePanel.qml</file> <file>MiddlePanel.qml</file>
<file>images/closeIcon.png</file> <file>images/closeIcon.png</file>
<file>images/download-white.png</file>
<file>images/download-white@2x.png</file>
<file>images/external-link-white.png</file>
<file>images/external-link-white@2x.png</file>
<file>images/helpIcon.png</file> <file>images/helpIcon.png</file>
<file>images/maximizeIcon.png</file> <file>images/maximizeIcon.png</file>
<file>images/minimizeIcon.png</file> <file>images/minimizeIcon.png</file>