separates the resolving step from the QEInvoiceParser so the 'recipient' can be resolved first and then either an QEInvoiceParser can be used if it is a sending request that has been resolved (invoice, address, lnurlp, ...), or RequestDetails can be used if the resolved 'recipient' turns out to be a voucher/LNURLW string. # Conflicts: # electrum/gui/qml/qeinvoice.py
91 lines
2.1 KiB
QML
91 lines
2.1 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls.Material
|
|
|
|
import org.electrum 1.0
|
|
|
|
import "controls"
|
|
|
|
// currently not used on android, kept for future use when qt6 camera stops crashing
|
|
ElDialog {
|
|
id: dialog
|
|
|
|
property InvoiceParser invoiceParser
|
|
property PIResolver piResolver
|
|
|
|
signal txFound(data: string)
|
|
signal channelBackupFound(data: string)
|
|
|
|
header: null
|
|
padding: 0
|
|
topPadding: 0
|
|
|
|
onAboutToHide: {
|
|
console.log('about to hide')
|
|
qrscan.stop()
|
|
}
|
|
|
|
function restart() {
|
|
qrscan.restart()
|
|
}
|
|
|
|
function dispatch(data) {
|
|
data = data.trim()
|
|
if (bitcoin.isRawTx(data)) {
|
|
txFound(data)
|
|
} else if (Daemon.currentWallet.isValidChannelBackup(data)) {
|
|
channelBackupFound(data)
|
|
} else {
|
|
piResolver.recipient = data
|
|
}
|
|
}
|
|
|
|
// override
|
|
function doClose() {
|
|
console.log('SendDialog doClose override') // doesn't trigger when going back??
|
|
qrscan.stop()
|
|
Qt.callLater(doReject)
|
|
}
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
spacing: 0
|
|
|
|
QRScan {
|
|
id: qrscan
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
hint: Daemon.currentWallet.isLightning
|
|
? qsTr('Scan an Invoice, an Address, an LNURL, a PSBT or a Channel Backup')
|
|
: qsTr('Scan an Invoice, an Address, an LNURL or a PSBT')
|
|
|
|
onFoundText: (data) => {
|
|
dialog.dispatch(data)
|
|
}
|
|
}
|
|
|
|
ButtonContainer {
|
|
Layout.fillWidth: true
|
|
|
|
FlatButton {
|
|
Layout.fillWidth: true
|
|
Layout.preferredWidth: 1
|
|
enabled: !invoiceParser.busy && !piResolver.busy
|
|
icon.source: '../../icons/copy_bw.png'
|
|
text: qsTr('Paste')
|
|
onClicked: {
|
|
qrscan.stop()
|
|
dialog.dispatch(AppController.clipboardToText())
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
Bitcoin {
|
|
id: bitcoin
|
|
}
|
|
}
|