aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-11-09 20:43:33 +0200
committerRiccardo Spagni <ric@spagni.net>2016-11-09 20:43:33 +0200
commit1e249c16244133a1461fd2b0260117dae4bc74af (patch)
treede637720e4a27c80677097e683c413831b009340
parent60b65b9bcc9d3445593a6eca435819144ee64021 (diff)
parent142e34862618a587bd905a972310d22e57122a19 (diff)
downloadmonzero-gui-1e249c16244133a1461fd2b0260117dae4bc74af.tar.gz
monzero-gui-1e249c16244133a1461fd2b0260117dae4bc74af.tar.xz
monzero-gui-1e249c16244133a1461fd2b0260117dae4bc74af.zip
Merge pull request #117
142e348 Transfer: use the new error LineEdit property to highlight bad fields (moneromooo.monero) b97d0a9 LineEdit: add an error property (moneromooo.monero) 5fb4e89 Transfer: remove spammy debug traces (moneromooo.monero)
-rw-r--r--components/LineEdit.qml10
-rw-r--r--pages/Transfer.qml24
2 files changed, 28 insertions, 6 deletions
diff --git a/components/LineEdit.qml b/components/LineEdit.qml
index 2ebc6e0c..f1e275f2 100644
--- a/components/LineEdit.qml
+++ b/components/LineEdit.qml
@@ -35,10 +35,18 @@ Item {
property alias readOnly : input.readOnly
property alias cursorPosition: input.cursorPosition
property int fontSize: 18
+ property bool error: false
height: 37
+ function getColor(error) {
+ if (error)
+ return "#FFDDDD"
+ else
+ return "#FFFFFF"
+ }
+
Rectangle {
anchors.fill: parent
anchors.bottomMargin: 1
@@ -49,7 +57,7 @@ Item {
Rectangle {
anchors.fill: parent
anchors.topMargin: 1
- color: "#FFFFFF"
+ color: getColor(error)
//radius: 4
}
diff --git a/pages/Transfer.qml b/pages/Transfer.qml
index 1cc654d4..eb752cda 100644
--- a/pages/Transfer.qml
+++ b/pages/Transfer.qml
@@ -244,18 +244,32 @@ Rectangle {
}
function checkAddressAndPaymentID(address, payment_id, testnet) {
- print ("testing")
if (!walletManager.addressValid(address, testnet))
return false
- print ("address is valid")
var ipid = walletManager.paymentIdFromAddress(address, testnet)
- print ("ipid: [" + ipid + "]")
if (ipid.length > 0)
return payment_id === ""
- print ("payment_id: [" + payment_id + "]")
return payment_id === "" || walletManager.paymentIdValid(payment_id)
}
+ function checkInformation(amount, address, payment_id, testnet) {
+ address = address.trim()
+ payment_id = payment_id.trim()
+
+ var amount_ok = amount.length > 0
+ var address_ok = walletManager.addressValid(address, testnet)
+ var payment_id_ok = payment_id.length == 0 || walletManager.paymentIdValid(payment_id)
+ var ipid = walletManager.paymentIdFromAddress(address, testnet)
+ if (ipid.length > 0 && payment_id.length > 0)
+ payment_id_ok = false
+
+ addressLine.error = !address_ok
+ amountLine.error = !amount_ok
+ paymentIdLine.error = !payment_id_ok
+
+ return amount_ok && address_ok && payment_id_ok
+ }
+
StandardButton {
id: sendButton
anchors.left: parent.left
@@ -268,7 +282,7 @@ Rectangle {
shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C"
pressedColor: "#FF4304"
- enabled : amountLine.text.length > 0 && checkAddressAndPaymentID(addressLine.text.trim(), paymentIdLine.text.trim(), appWindow.persistentSettings.testnet)
+ enabled : checkInformation(amountLine.text, addressLine.text, paymentIdLine.text, appWindow.persistentSettings.testnet)
onClicked: {
console.log("Transfer: paymentClicked")
var priority = priorityModel.get(priorityDropdown.currentIndex).priority