4 changed files with 193 additions and 27 deletions
@ -0,0 +1,130 @@ |
|||
import QtQuick 2.6 |
|||
import QtQuick.Layouts 1.0 |
|||
import QtQuick.Controls 2.3 |
|||
|
|||
import org.electrum 1.0 |
|||
|
|||
import "controls" |
|||
|
|||
ElDialog { |
|||
id: root |
|||
|
|||
property bool valid: false |
|||
|
|||
standardButtons: Dialog.Close |
|||
modal: true |
|||
parent: Overlay.overlay |
|||
Overlay.modal: Rectangle { |
|||
color: "#aa000000" |
|||
} |
|||
width: parent.width |
|||
height: parent.height |
|||
|
|||
title: Daemon.currentWallet.isWatchOnly |
|||
? qsTr('Import additional addresses') |
|||
: qsTr('Import additional keys') |
|||
|
|||
function verify(text) { |
|||
if (Daemon.currentWallet.isWatchOnly) |
|||
return bitcoin.isAddressList(text) |
|||
else |
|||
return bitcoin.isPrivateKeyList(text) |
|||
} |
|||
|
|||
onAccepted: { |
|||
if (Daemon.currentWallet.isWatchOnly) |
|||
Daemon.currentWallet.importAddresses(import_ta.text) |
|||
else |
|||
Daemon.currentWallet.importPrivateKeys(import_ta.text) |
|||
} |
|||
|
|||
ColumnLayout { |
|||
width: parent.width |
|||
height: parent.height |
|||
|
|||
Label { |
|||
text: Daemon.currentWallet.isWatchOnly |
|||
? qsTr('Import additional addresses') |
|||
: qsTr('Import additional keys') |
|||
} |
|||
|
|||
RowLayout { |
|||
TextArea { |
|||
id: import_ta |
|||
Layout.fillWidth: true |
|||
Layout.minimumHeight: 80 |
|||
focus: true |
|||
wrapMode: TextEdit.WrapAnywhere |
|||
onTextChanged: valid = verify(text) |
|||
} |
|||
ColumnLayout { |
|||
Layout.alignment: Qt.AlignTop |
|||
ToolButton { |
|||
icon.source: '../../icons/paste.png' |
|||
icon.height: constants.iconSizeMedium |
|||
icon.width: constants.iconSizeMedium |
|||
onClicked: { |
|||
if (verify(AppController.clipboardToText())) { |
|||
if (import_ta.text != '') |
|||
import_ta.text = import_ta.text + '\n' |
|||
import_ta.text = import_ta.text + AppController.clipboardToText() |
|||
} |
|||
} |
|||
} |
|||
ToolButton { |
|||
icon.source: '../../icons/qrcode.png' |
|||
icon.height: constants.iconSizeMedium |
|||
icon.width: constants.iconSizeMedium |
|||
scale: 1.2 |
|||
onClicked: { |
|||
var scan = qrscan.createObject(root.contentItem) // can't use dialog as parent? |
|||
scan.onFound.connect(function() { |
|||
if (verify(scan.scanData)) { |
|||
if (import_ta.text != '') |
|||
import_ta.text = import_ta.text + ',\n' |
|||
import_ta.text = import_ta.text + scan.scanData |
|||
} |
|||
scan.destroy() |
|||
}) |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
Item { |
|||
Layout.preferredWidth: 1 |
|||
Layout.fillHeight: true |
|||
} |
|||
|
|||
FlatButton { |
|||
Layout.fillWidth: true |
|||
text: qsTr('Import') |
|||
enabled: valid |
|||
onClicked: accept() |
|||
} |
|||
} |
|||
|
|||
Component { |
|||
id: qrscan |
|||
QRScan { |
|||
width: parent.width |
|||
height: parent.height |
|||
|
|||
ToolButton { |
|||
icon.source: '../../icons/closebutton.png' |
|||
icon.height: constants.iconSizeMedium |
|||
icon.width: constants.iconSizeMedium |
|||
anchors.right: parent.right |
|||
anchors.top: parent.top |
|||
onClicked: { |
|||
parent.destroy() |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
Bitcoin { |
|||
id: bitcoin |
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue