2019-04-23 02:21:01 +00:00
|
|
|
// Copyright (c) 2014-2019, The Monero Project
|
2015-04-01 08:56:05 +00:00
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
// materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
// used to endorse or promote products derived from this software without specific
|
|
|
|
// prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
import QtQuick 2.9
|
2019-04-05 16:49:37 +00:00
|
|
|
import QtQuick.Controls 2.0
|
2017-03-08 20:39:12 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
2019-02-01 18:53:01 +00:00
|
|
|
import QtQuick.Dialogs 1.2
|
2019-04-11 01:17:29 +00:00
|
|
|
|
2018-12-12 21:31:24 +00:00
|
|
|
import "../components" as MoneroComponents
|
2019-04-11 01:17:29 +00:00
|
|
|
import "../components/effects/" as MoneroEffects
|
|
|
|
|
2019-02-01 18:53:01 +00:00
|
|
|
import "../js/TxUtils.js" as TxUtils
|
2016-12-10 01:01:04 +00:00
|
|
|
import moneroComponents.AddressBook 1.0
|
|
|
|
import moneroComponents.AddressBookModel 1.0
|
2018-12-12 21:31:24 +00:00
|
|
|
import moneroComponents.Clipboard 1.0
|
2019-02-24 21:25:11 +00:00
|
|
|
import moneroComponents.NetworkType 1.0
|
2019-04-05 16:49:37 +00:00
|
|
|
import FontAwesome 1.0
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
Rectangle {
|
2016-12-10 01:01:04 +00:00
|
|
|
id: root
|
2019-04-05 16:49:37 +00:00
|
|
|
color: "transparent"
|
2019-05-07 05:19:40 +00:00
|
|
|
property alias addressbookHeight: mainLayout.height
|
2019-01-15 16:48:22 +00:00
|
|
|
property bool selectAndSend: false
|
2019-04-05 16:49:37 +00:00
|
|
|
property bool editEntry: false
|
|
|
|
|
2018-12-12 21:31:24 +00:00
|
|
|
Clipboard { id: clipboard }
|
2014-07-09 14:18:48 +00:00
|
|
|
|
2017-08-08 09:18:15 +00:00
|
|
|
ColumnLayout {
|
2019-04-05 16:49:37 +00:00
|
|
|
id: mainLayout
|
2019-04-25 19:09:23 +00:00
|
|
|
anchors.margins: (isMobile)? 17 : 20
|
|
|
|
anchors.topMargin: 40
|
2019-04-05 16:49:37 +00:00
|
|
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
2019-04-25 19:09:23 +00:00
|
|
|
spacing: 20
|
2019-04-05 16:49:37 +00:00
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: addressBookEmptyLayout
|
|
|
|
visible: addressBookListView.count == 0
|
|
|
|
spacing: 0
|
2018-12-12 21:31:24 +00:00
|
|
|
Layout.fillWidth: true
|
2019-04-05 16:49:37 +00:00
|
|
|
|
|
|
|
TextArea {
|
|
|
|
id: titleLabel
|
|
|
|
Layout.fillWidth: true
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
|
|
|
font.family: MoneroComponents.Style.fontRegular.name
|
2019-04-25 19:09:23 +00:00
|
|
|
font.pixelSize: 32
|
2019-04-05 16:49:37 +00:00
|
|
|
horizontalAlignment: TextInput.AlignLeft
|
|
|
|
selectByMouse: false
|
|
|
|
wrapMode: Text.WordWrap;
|
|
|
|
textMargin: 0
|
|
|
|
leftPadding: 0
|
|
|
|
topPadding: 0
|
|
|
|
text: qsTr("Save your most used addresses here") + translationManager.emptyString
|
|
|
|
width: parent.width
|
|
|
|
readOnly: true
|
|
|
|
|
|
|
|
// @TODO: Legacy. Remove after Qt 5.8.
|
|
|
|
// https://stackoverflow.com/questions/41990013
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
enabled: false
|
2019-02-24 21:25:11 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
|
|
|
|
TextArea {
|
|
|
|
Layout.fillWidth: true
|
2019-04-11 01:17:29 +00:00
|
|
|
color: MoneroComponents.Style.dimmedFontColor
|
2019-04-05 16:49:37 +00:00
|
|
|
font.family: MoneroComponents.Style.fontRegular.name
|
2019-04-25 19:09:23 +00:00
|
|
|
font.pixelSize: 16
|
2019-04-05 16:49:37 +00:00
|
|
|
horizontalAlignment: TextInput.AlignLeft
|
|
|
|
selectByMouse: false
|
|
|
|
wrapMode: Text.WordWrap;
|
|
|
|
textMargin: 0
|
|
|
|
leftPadding: 0
|
|
|
|
topPadding: 0
|
|
|
|
text: qsTr("This makes it easier to send or receive Monero and reduces errors when typing in addresses manually.") + translationManager.emptyString
|
|
|
|
width: parent.width
|
|
|
|
readOnly: true
|
|
|
|
|
|
|
|
// @TODO: Legacy. Remove after Qt 5.8.
|
|
|
|
// https://stackoverflow.com/questions/41990013
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
enabled: false
|
2019-02-01 18:53:01 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
|
|
|
|
MoneroComponents.StandardButton {
|
|
|
|
id: addFirstEntryButton
|
|
|
|
Layout.topMargin: 20
|
|
|
|
text: qsTr("Add an address") + translationManager.emptyString
|
|
|
|
onClicked: {
|
|
|
|
root.showAddAddress();
|
|
|
|
}
|
2017-08-08 09:18:15 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-16 08:24:59 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
ColumnLayout {
|
|
|
|
id: addressBookLayout
|
|
|
|
visible: addressBookListView.count >= 1
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
MoneroComponents.Label {
|
|
|
|
Layout.bottomMargin: 20
|
2019-04-25 19:09:23 +00:00
|
|
|
fontSize: 32
|
2019-04-05 16:49:37 +00:00
|
|
|
text: qsTr("Address book") + translationManager.emptyString
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: addressBookListRow
|
2019-04-25 19:09:23 +00:00
|
|
|
property int addressBookListItemHeight: 50
|
2019-04-05 16:49:37 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.minimumWidth: 240
|
|
|
|
Layout.preferredHeight: addressBookListItemHeight * addressBookListView.count
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
id: addressBookListView
|
|
|
|
Layout.fillWidth: true
|
2019-07-22 19:39:56 +00:00
|
|
|
Layout.fillHeight: true
|
2019-04-05 16:49:37 +00:00
|
|
|
clip: true
|
|
|
|
boundsBehavior: ListView.StopAtBounds
|
|
|
|
interactive: false
|
|
|
|
delegate: Rectangle {
|
|
|
|
id: tableItem2
|
|
|
|
height: addressBookListRow.addressBookListItemHeight
|
|
|
|
width: parent.width
|
|
|
|
Layout.fillWidth: true
|
|
|
|
color: "transparent"
|
|
|
|
|
|
|
|
function doSend() {
|
|
|
|
console.log("Sending to: ", address +" "+ paymentId);
|
|
|
|
middlePanel.sendTo(address, paymentId, description);
|
|
|
|
leftPanel.selectItem(middlePanel.state)
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
2019-04-11 01:17:29 +00:00
|
|
|
color: MoneroComponents.Style.appWindowBorderColor
|
2019-04-05 16:49:37 +00:00
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
height: 1
|
2019-04-11 01:17:29 +00:00
|
|
|
|
|
|
|
MoneroEffects.ColorTransition {
|
|
|
|
targetObj: parent
|
|
|
|
blackColor: MoneroComponents.Style._b_appWindowBorderColor
|
|
|
|
whiteColor: MoneroComponents.Style._w_appWindowBorderColor
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
2019-04-25 19:09:23 +00:00
|
|
|
anchors.topMargin: 5
|
|
|
|
anchors.rightMargin: 110
|
2019-04-05 16:49:37 +00:00
|
|
|
color: "transparent"
|
|
|
|
|
|
|
|
MoneroComponents.Label {
|
|
|
|
id: descriptionLabel
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: parent.left
|
2019-04-25 19:09:23 +00:00
|
|
|
anchors.leftMargin: 6
|
|
|
|
fontSize: 16
|
2019-04-05 16:49:37 +00:00
|
|
|
text: description
|
|
|
|
elide: Text.ElideRight
|
|
|
|
textWidth: addressLabel.x - descriptionLabel.x - 1
|
|
|
|
}
|
|
|
|
|
|
|
|
MoneroComponents.Label {
|
|
|
|
id: addressLabel
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: parent.right
|
2019-04-25 19:09:23 +00:00
|
|
|
anchors.leftMargin: -addressLabel.width - 5
|
2019-04-05 16:49:37 +00:00
|
|
|
|
2019-04-25 19:09:23 +00:00
|
|
|
fontSize: 16
|
2019-04-05 16:49:37 +00:00
|
|
|
fontFamily: MoneroComponents.Style.fontMonoRegular.name;
|
|
|
|
text: TxUtils.addressTruncatePretty(address, mainLayout.width < 540 ? 1 : (mainLayout.width < 700 ? 2 : 3));
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
visible: root.selectAndSend
|
|
|
|
onClicked: {
|
|
|
|
doSend();
|
|
|
|
}
|
2019-02-01 18:53:01 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
RowLayout {
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2019-04-05 16:49:37 +00:00
|
|
|
anchors.right: parent.right
|
2019-04-11 01:17:29 +00:00
|
|
|
anchors.rightMargin: 6
|
|
|
|
height: 21
|
|
|
|
spacing: 10
|
|
|
|
|
|
|
|
MoneroComponents.IconButton {
|
|
|
|
id: sendToButton
|
|
|
|
image: "qrc:///images/arrow-right-in-circle-outline-medium-white.svg"
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
|
|
|
opacity: 0.5
|
|
|
|
Layout.preferredWidth: 20
|
|
|
|
Layout.preferredHeight: 20
|
|
|
|
onClicked: {
|
|
|
|
doSend();
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
}
|
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
MoneroComponents.IconButton {
|
|
|
|
id: renameButton
|
|
|
|
image: "qrc:///images/edit.svg"
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
|
|
|
opacity: 0.5
|
|
|
|
Layout.preferredWidth: 23
|
|
|
|
Layout.preferredHeight: 21
|
2019-04-05 16:49:37 +00:00
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
onClicked: {
|
|
|
|
addressBookListView.currentIndex = index;
|
|
|
|
root.showEditAddress(address, description);
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
}
|
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
MoneroComponents.IconButton {
|
|
|
|
id: copyButton
|
|
|
|
image: "qrc:///images/copy.svg"
|
|
|
|
Layout.preferredWidth: 16
|
|
|
|
Layout.preferredHeight: 21
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
|
|
|
opacity: 0.5
|
2019-04-05 16:49:37 +00:00
|
|
|
|
2019-04-11 01:17:29 +00:00
|
|
|
onClicked: {
|
|
|
|
console.log("Address copied to clipboard");
|
|
|
|
clipboard.setText(address);
|
|
|
|
appWindow.showStatusMessage(qsTr("Address copied to clipboard"), 3);
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
}
|
2019-02-01 18:53:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
2019-04-11 01:17:29 +00:00
|
|
|
id: border2
|
|
|
|
color: MoneroComponents.Style.appWindowBorderColor
|
2019-04-05 16:49:37 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 1
|
2019-04-11 01:17:29 +00:00
|
|
|
|
|
|
|
MoneroEffects.ColorTransition {
|
|
|
|
targetObj: border2
|
|
|
|
blackColor: MoneroComponents.Style._b_appWindowBorderColor
|
|
|
|
whiteColor: MoneroComponents.Style._w_appWindowBorderColor
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MoneroComponents.CheckBox {
|
|
|
|
id: addNewEntryCheckbox
|
|
|
|
border: false
|
|
|
|
checkedIcon: "qrc:///images/plus-in-circle-medium-white.png"
|
|
|
|
uncheckedIcon: "qrc:///images/plus-in-circle-medium-white.png"
|
2019-04-25 19:09:23 +00:00
|
|
|
fontSize: 16
|
2019-04-05 16:49:37 +00:00
|
|
|
iconOnTheLeft: true
|
|
|
|
Layout.fillWidth: true
|
2019-04-25 19:09:23 +00:00
|
|
|
Layout.topMargin: 10
|
2019-04-05 16:49:37 +00:00
|
|
|
text: qsTr("Add address") + translationManager.emptyString;
|
|
|
|
onClicked: {
|
|
|
|
root.showAddAddress();
|
2019-02-01 18:53:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-08 09:18:15 +00:00
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
ColumnLayout {
|
|
|
|
id: addContactLayout
|
|
|
|
visible: false
|
|
|
|
spacing: 0
|
2016-12-10 01:01:04 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
MoneroComponents.Label {
|
2019-04-25 19:09:23 +00:00
|
|
|
fontSize: 32
|
2019-04-05 16:49:37 +00:00
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
text: (root.editEntry ? qsTr("Edit an address") : qsTr("Add an address")) + translationManager.emptyString
|
|
|
|
}
|
2017-03-08 20:39:12 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
MoneroComponents.LineEditMulti {
|
|
|
|
id: addressLine
|
|
|
|
Layout.topMargin: 20
|
|
|
|
labelText: qsTr("<style type='text/css'>a {text-decoration: none; color: #858585; font-size: 14px;}</style>\
|
|
|
|
Address") + translationManager.emptyString
|
|
|
|
placeholderText: {
|
|
|
|
if(persistentSettings.nettype == NetworkType.MAINNET){
|
|
|
|
return "4.. / 8.. / OpenAlias";
|
|
|
|
} else if (persistentSettings.nettype == NetworkType.STAGENET){
|
|
|
|
return "5.. / 7..";
|
|
|
|
} else if(persistentSettings.nettype == NetworkType.TESTNET){
|
|
|
|
return "9.. / B..";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wrapMode: Text.WrapAnywhere
|
|
|
|
addressValidation: true
|
|
|
|
pasteButton: true
|
|
|
|
onPaste: function(clipboardText) {
|
|
|
|
const parsed = walletManager.parse_uri_to_object(clipboardText);
|
|
|
|
if (!parsed.error) {
|
|
|
|
addressLine.text = parsed.address;
|
|
|
|
descriptionLine.text = parsed.tx_description;
|
|
|
|
} else {
|
|
|
|
addressLine.text = clipboardText;
|
|
|
|
}
|
|
|
|
}
|
2019-04-11 01:17:29 +00:00
|
|
|
|
2019-04-23 02:21:01 +00:00
|
|
|
inlineButton.text: FontAwesome.qrcode
|
|
|
|
inlineButton.fontPixelSize: 22
|
|
|
|
inlineButton.fontFamily: FontAwesome.fontFamily
|
|
|
|
inlineButton.textColor: MoneroComponents.Style.defaultFontColor
|
2019-04-05 16:49:37 +00:00
|
|
|
inlineButton.buttonColor: MoneroComponents.Style.orange
|
|
|
|
inlineButton.onClicked: {
|
|
|
|
cameraUi.state = "Capture"
|
|
|
|
cameraUi.qrcode_decoded.connect(root.updateFromQrCode)
|
|
|
|
}
|
|
|
|
inlineButtonVisible : appWindow.qrScannerEnabled && !addressLine.text
|
|
|
|
}
|
2017-08-08 09:18:15 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
MoneroComponents.StandardButton {
|
|
|
|
id: resolveButton
|
|
|
|
Layout.topMargin: 10
|
|
|
|
text: qsTr("Resolve") + translationManager.emptyString
|
|
|
|
visible: TxUtils.isValidOpenAliasAddress(addressLine.text)
|
|
|
|
enabled : visible
|
2017-08-08 09:18:15 +00:00
|
|
|
onClicked: {
|
2019-04-05 16:49:37 +00:00
|
|
|
var result = walletManager.resolveOpenAlias(addressLine.text)
|
|
|
|
if (result) {
|
|
|
|
var parts = result.split("|")
|
|
|
|
if (parts.length === 2) {
|
|
|
|
var address_ok = walletManager.addressValid(parts[1], appWindow.persistentSettings.nettype)
|
|
|
|
if (parts[0] === "true") {
|
|
|
|
if (address_ok) {
|
|
|
|
// prepend openalias to description
|
|
|
|
descriptionLine.text = descriptionLine.text ? addressLine.text + " " + descriptionLine.text : addressLine.text
|
|
|
|
addressLine.text = parts[1]
|
|
|
|
} else {
|
|
|
|
root.oa_message(qsTr("No valid address found at this OpenAlias address"))
|
|
|
|
}
|
|
|
|
} else if (parts[0] === "false") {
|
|
|
|
if (address_ok) {
|
|
|
|
addressLine.text = parts[1]
|
|
|
|
root.oa_message(qsTr("Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed"))
|
|
|
|
} else {
|
|
|
|
root.oa_message(qsTr("No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed"))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
root.oa_message(qsTr("Internal error"))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
root.oa_message(qsTr("Internal error"))
|
|
|
|
}
|
2017-08-08 09:18:15 +00:00
|
|
|
} else {
|
2019-04-05 16:49:37 +00:00
|
|
|
root.oa_message(qsTr("No address found"))
|
2017-08-08 09:18:15 +00:00
|
|
|
}
|
2017-03-08 20:39:12 +00:00
|
|
|
}
|
2016-12-10 01:01:04 +00:00
|
|
|
}
|
2014-07-16 14:48:17 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
MoneroComponents.LineEditMulti {
|
|
|
|
id: descriptionLine
|
|
|
|
Layout.topMargin: 20
|
|
|
|
labelText: qsTr("<style type='text/css'>a {text-decoration: none; color: #858585; font-size: 14px;}</style>\
|
|
|
|
Description") + translationManager.emptyString
|
|
|
|
placeholderText: qsTr("Add a name...") + translationManager.emptyString
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
|
|
Layout.topMargin: 20
|
|
|
|
MoneroComponents.StandardButton {
|
|
|
|
id: addButton
|
|
|
|
text: (root.editEntry ? qsTr("Save") : qsTr("Add")) + translationManager.emptyString
|
|
|
|
enabled: root.checkInformation(addressLine.text, appWindow.persistentSettings.nettype)
|
|
|
|
onClicked: {
|
|
|
|
console.log("Add")
|
|
|
|
if (!currentWallet.addressBook.addRow(addressLine.text.trim(),"", descriptionLine.text)) {
|
|
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
|
|
|
// TODO: check currentWallet.addressBook.errorString() instead.
|
|
|
|
if(currentWallet.addressBook.errorCode() === AddressBook.Invalid_Address)
|
|
|
|
informationPopup.text = qsTr("Invalid address") + translationManager.emptyString
|
|
|
|
else if(currentWallet.addressBook.errorCode() === AddressBook.Invalid_Payment_Id)
|
|
|
|
informationPopup.text = currentWallet.addressBook.errorString()
|
|
|
|
else
|
|
|
|
informationPopup.text = qsTr("Can't create entry") + translationManager.emptyString
|
2014-07-16 14:48:17 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
informationPopup.onCloseCallback = null
|
|
|
|
informationPopup.open();
|
|
|
|
} else {
|
|
|
|
if (root.editEntry) {
|
|
|
|
currentWallet.addressBook.deleteRow(addressBookListView.currentIndex);
|
|
|
|
}
|
|
|
|
root.showAddressBook();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: cancelButton
|
|
|
|
Layout.leftMargin: 20
|
2019-04-25 19:09:23 +00:00
|
|
|
font.pixelSize: 16
|
2019-04-05 16:49:37 +00:00
|
|
|
font.bold: false
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
2019-04-16 14:35:30 +00:00
|
|
|
text: qsTr("Cancel") + translationManager.emptyString
|
2014-07-16 08:24:59 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
onClicked: root.showAddressBook();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: deleteButton
|
|
|
|
visible: root.editEntry
|
|
|
|
Layout.leftMargin: 20
|
2019-04-25 19:09:23 +00:00
|
|
|
font.pixelSize: 16
|
2019-04-05 16:49:37 +00:00
|
|
|
font.bold: false
|
|
|
|
color: MoneroComponents.Style.defaultFontColor
|
2019-04-16 14:35:30 +00:00
|
|
|
text: qsTr("Delete") + translationManager.emptyString
|
2019-04-05 16:49:37 +00:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
onClicked: {
|
|
|
|
currentWallet.addressBook.deleteRow(addressBookListView.currentIndex);
|
|
|
|
root.showAddressBook();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-16 08:24:59 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-10 01:01:04 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
function checkInformation(address, nettype) {
|
|
|
|
address = address.trim()
|
|
|
|
var address_ok = walletManager.addressValid(address, nettype)
|
|
|
|
addressLine.error = !address_ok
|
|
|
|
return address_ok
|
|
|
|
}
|
2016-12-10 01:01:04 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
function clearFields() {
|
|
|
|
addressLine.text = "";
|
|
|
|
descriptionLine.text = "";
|
|
|
|
}
|
2016-12-10 01:01:04 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
function showAddressBook() {
|
|
|
|
addressBookEmptyLayout.visible = addressBookListView.count == 0
|
|
|
|
addressBookLayout.visible = addressBookListView.count >= 1;
|
|
|
|
addContactLayout.visible = false;
|
|
|
|
clearFields();
|
2016-12-10 01:01:04 +00:00
|
|
|
}
|
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
function showAddAddress() {
|
|
|
|
root.editEntry = false;
|
|
|
|
addressBookEmptyLayout.visible = false
|
|
|
|
addressBookLayout.visible = false;
|
|
|
|
addContactLayout.visible = true;
|
2019-01-15 16:48:22 +00:00
|
|
|
}
|
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
function showEditAddress(address, description) {
|
|
|
|
//TODO: real contact editing, requires API change
|
|
|
|
root.editEntry = true;
|
|
|
|
addressBookEmptyLayout.visible = false
|
|
|
|
addressBookLayout.visible = false;
|
|
|
|
addContactLayout.visible = true;
|
|
|
|
addressLine.text = address;
|
|
|
|
descriptionLine.text = description;
|
2016-12-10 01:01:04 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 04:36:08 +00:00
|
|
|
function updateFromQrCode(address, payment_id, amount, tx_description, recipient_name) {
|
|
|
|
console.log("updateFromQrCode")
|
|
|
|
addressLine.text = address
|
|
|
|
descriptionLine.text = recipient_name + " " + tx_description
|
|
|
|
cameraUi.qrcode_decoded.disconnect(updateFromQrCode)
|
|
|
|
}
|
2016-12-10 01:01:04 +00:00
|
|
|
|
2019-02-01 18:53:01 +00:00
|
|
|
function oa_message(text) {
|
|
|
|
oaPopup.title = qsTr("OpenAlias error") + translationManager.emptyString
|
|
|
|
oaPopup.text = text
|
|
|
|
oaPopup.icon = StandardIcon.Information
|
|
|
|
oaPopup.onCloseCallback = null
|
|
|
|
oaPopup.open()
|
|
|
|
}
|
|
|
|
|
|
|
|
MoneroComponents.StandardDialog {
|
|
|
|
// dynamically change onclose handler
|
|
|
|
property var onCloseCallback
|
|
|
|
id: oaPopup
|
|
|
|
cancelVisible: false
|
2019-04-05 16:49:37 +00:00
|
|
|
onAccepted: {
|
2019-02-01 18:53:01 +00:00
|
|
|
if (onCloseCallback) {
|
|
|
|
onCloseCallback()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-05 16:49:37 +00:00
|
|
|
function onPageCompleted() {
|
|
|
|
console.log("adress book");
|
|
|
|
addressBookListView.model = currentWallet.addressBookModel;
|
|
|
|
showAddressBook();
|
|
|
|
}
|
|
|
|
|
|
|
|
function onPageClosed() {
|
|
|
|
root.selectAndSend = false;
|
|
|
|
root.editEntry = false;
|
|
|
|
clearFields();
|
|
|
|
}
|
2014-07-07 17:08:30 +00:00
|
|
|
}
|