2018-01-07 05:20:45 +00:00
// Copyright (c) 2014-2018, The Monero Project
2016-11-05 14:58:49 +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
2016-11-05 14:58:49 +00:00
import QtQuick . Controls 1.4
import QtQuick . Controls . Styles 1.4
import QtQuick . Layouts 1.1
2019-02-01 21:20:38 +00:00
import "../components" as MoneroComponents
2016-11-05 14:58:49 +00:00
import moneroComponents . Clipboard 1.0
2018-03-21 00:35:34 +00:00
import "../js/TxUtils.js" as TxUtils
2016-11-05 14:58:49 +00:00
Rectangle {
2018-03-19 22:30:34 +00:00
color: "transparent"
2019-05-07 05:19:40 +00:00
property alias txkeyHeight: mainLayout . height
2016-11-05 14:58:49 +00:00
Clipboard { id: clipboard }
/* main layout */
ColumnLayout {
id: mainLayout
2019-09-05 22:11:12 +00:00
anchors.margins: 20
2021-03-20 09:12:15 +00:00
anchors.topMargin: 0
2016-11-05 14:58:49 +00:00
anchors.left: parent . left
anchors.top: parent . top
anchors.right: parent . right
2019-04-25 19:09:23 +00:00
spacing: 20
2017-09-12 08:42:00 +00:00
2018-03-19 22:30:34 +00:00
// solo
ColumnLayout {
id: soloBox
2019-04-25 19:09:23 +00:00
spacing: 20
2018-03-19 22:30:34 +00:00
2019-02-01 21:20:38 +00:00
MoneroComponents . Label {
2018-03-19 22:30:34 +00:00
id: soloTitleLabel
2019-04-25 19:09:23 +00:00
fontSize: 24
2022-01-21 06:07:47 +00:00
text: qsTr ( "Prove Transaction" ) + " / " + qsTr ( "Reserve" ) + translationManager . emptyString
2017-09-12 08:42:00 +00:00
}
2016-11-10 18:33:25 +00:00
2019-04-11 01:17:29 +00:00
MoneroComponents . TextPlain {
2019-02-01 21:20:38 +00:00
Layout.fillWidth: true
2018-03-19 22:30:34 +00:00
text: qsTr ( "Generate a proof of your incoming/outgoing payment by supplying the transaction ID, the recipient address and an optional message. \n" +
2022-01-21 06:07:47 +00:00
"For the case of outgoing payments, you can get a 'Spend Proof' that proves the authorship of a transaction. In this case, you don't need to specify the recipient address." ) + qsTr ( "\nFor reserve proofs you don't need to specify tx id or address." ) + translationManager . emptyString
2018-03-19 22:30:34 +00:00
wrapMode: Text . Wrap
2019-02-01 21:20:38 +00:00
font.family: MoneroComponents . Style . fontRegular . name
2019-04-25 19:09:23 +00:00
font.pixelSize: 14
2019-02-01 21:20:38 +00:00
color: MoneroComponents . Style . defaultFontColor
2016-11-05 14:58:49 +00:00
}
2019-02-01 21:20:38 +00:00
MoneroComponents . LineEdit {
id: getProofTxIdLine
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
labelFontSize: 14
2019-02-01 21:20:38 +00:00
labelText: qsTr ( "Transaction ID" ) + translationManager . emptyString
2019-04-25 19:09:23 +00:00
fontSize: 16
placeholderFontSize: 16
2019-02-01 21:20:38 +00:00
placeholderText: qsTr ( "Paste tx ID" ) + translationManager . emptyString
readOnly: false
copyButton: true
2022-01-18 21:10:56 +00:00
enabled: getReserveProofAmtLine . text . length === 0
2016-11-05 14:58:49 +00:00
}
2019-02-01 21:20:38 +00:00
MoneroComponents . LineEdit {
id: getProofAddressLine
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
labelFontSize: 14
2019-02-01 21:20:38 +00:00
labelText: qsTr ( "Address" ) + translationManager . emptyString
2019-04-25 19:09:23 +00:00
fontSize: 16
placeholderFontSize: 16
2019-02-01 21:20:38 +00:00
placeholderText: qsTr ( "Recipient's wallet address" ) + translationManager . emptyString ;
readOnly: false
copyButton: true
2022-01-18 21:10:56 +00:00
enabled: getReserveProofAmtLine . text . length === 0
}
MoneroComponents . LineEdit {
id: getReserveProofAmtLine
Layout.fillWidth: true
labelFontSize: 14
labelText: qsTr ( "Amount" ) + translationManager . emptyString
fontSize: 16
placeholderFontSize: 16
placeholderText: qsTr ( "Paste amount of XMR (reserve proof only)" ) + translationManager . emptyString
readOnly: false
copyButton: true
enabled: getProofAddressLine . text . length === 0 && getProofTxIdLine . text . length === 0
onTextChanged: {
text = text . trim ( ) . replace ( "," , "." ) ;
const match = text . match ( /^0+(\d.*)/ ) ;
if ( match ) {
const cursorPosition = cursorPosition ;
text = match [ 1 ] ;
cursorPosition = Math . max ( cursorPosition , 1 ) - 1 ;
} else if ( text . indexOf ( '.' ) === 0 ) {
text = '0' + text ;
if ( text . length > 2 ) {
cursorPosition = 1 ;
}
}
error = walletManager . amountFromString ( text ) > appWindow . getUnlockedBalance ( ) ;
}
validator: RegExpValidator {
regExp: /^\s*(\d{1,8})?([\.,]\d{1,12})?\s*$/
}
2019-02-01 21:20:38 +00:00
}
MoneroComponents . LineEdit {
id: getProofMessageLine
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
fontSize: 16
labelFontSize: 14
2019-02-01 21:20:38 +00:00
labelText: qsTr ( "Message" ) + translationManager . emptyString
2019-04-25 19:09:23 +00:00
placeholderFontSize: 16
2019-02-01 21:20:38 +00:00
placeholderText: qsTr ( "Optional message against which the signature is signed" ) + translationManager . emptyString ;
readOnly: false
copyButton: true
2016-11-05 14:58:49 +00:00
}
2019-02-01 21:20:38 +00:00
MoneroComponents . StandardButton {
2019-04-25 19:09:23 +00:00
Layout.topMargin: 16
2018-04-22 18:07:31 +00:00
small: true
2018-03-19 22:30:34 +00:00
text: qsTr ( "Generate" ) + translationManager . emptyString
2022-01-18 21:10:56 +00:00
enabled: TxUtils . checkTxID ( getProofTxIdLine . text ) && ( getProofAddressLine . text . length == 0 || TxUtils . checkAddress ( getProofAddressLine . text , appWindow . persistentSettings . nettype ) ) || getReserveProofAmtLine . text . length != 0 && walletManager . amountFromString ( getReserveProofAmtLine . text ) < appWindow . getUnlockedBalance ( ) && walletManager . amountFromString ( getReserveProofAmtLine . text ) > 0
2018-03-19 22:30:34 +00:00
onClicked: {
console . log ( "getProof: Generate clicked: txid " + getProofTxIdLine . text + ", address " + getProofAddressLine . text + ", message: " + getProofMessageLine . text ) ;
2022-01-18 21:10:56 +00:00
middlePanel . getProofClicked ( getProofTxIdLine . text , getProofAddressLine . text , getProofMessageLine . text , getReserveProofAmtLine . text )
2018-03-19 22:30:34 +00:00
}
2016-11-05 14:58:49 +00:00
}
2018-03-19 22:30:34 +00:00
// underline
Rectangle {
height: 1
2019-04-11 01:17:29 +00:00
color: MoneroComponents . Style . dividerColor
opacity: MoneroComponents . Style . dividerOpacity
2017-09-12 08:42:00 +00:00
Layout.fillWidth: true
2018-03-19 22:30:34 +00:00
Layout.alignment: Qt . AlignHCenter
2019-04-25 19:09:23 +00:00
anchors.bottomMargin: 3
2017-09-12 08:42:00 +00:00
}
2019-02-01 21:20:38 +00:00
MoneroComponents . Label {
2018-03-19 22:30:34 +00:00
id: soloTitleLabel2
2019-04-25 19:09:23 +00:00
fontSize: 24
2022-01-21 06:07:47 +00:00
text: qsTr ( "Check Transaction" ) + " / " + qsTr ( "Reserve" ) + translationManager . emptyString
2017-09-12 08:42:00 +00:00
}
2016-11-05 14:58:49 +00:00
2019-04-11 01:17:29 +00:00
MoneroComponents . TextPlain {
2018-03-19 22:30:34 +00:00
text: qsTr ( "Verify that funds were paid to an address by supplying the transaction ID, the recipient address, the message used for signing and the signature.\n" +
2022-01-21 06:07:47 +00:00
"For the case with Spend Proof, you don't need to specify the recipient address." ) + "\n" + qsTr ( "Transaction is not needed for reserve proof." ) + translationManager . emptyString
2018-03-19 22:30:34 +00:00
wrapMode: Text . Wrap
2016-11-05 14:58:49 +00:00
Layout.fillWidth: true
2019-02-01 21:20:38 +00:00
font.family: MoneroComponents . Style . fontRegular . name
2019-04-25 19:09:23 +00:00
font.pixelSize: 14
2019-02-01 21:20:38 +00:00
color: MoneroComponents . Style . defaultFontColor
2017-09-12 08:42:00 +00:00
}
2019-02-01 21:20:38 +00:00
MoneroComponents . LineEdit {
id: checkProofTxIdLine
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
labelFontSize: 14
2019-02-01 21:20:38 +00:00
labelText: qsTr ( "Transaction ID" ) + translationManager . emptyString
2019-04-25 19:09:23 +00:00
fontSize: 16
placeholderFontSize: 16
2019-02-01 21:20:38 +00:00
placeholderText: qsTr ( "Paste tx ID" ) + translationManager . emptyString
readOnly: false
copyButton: true
2017-09-12 08:42:00 +00:00
}
2019-02-01 21:20:38 +00:00
MoneroComponents . LineEdit {
id: checkProofAddressLine
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
labelFontSize: 14
2019-02-01 21:20:38 +00:00
labelText: qsTr ( "Address" ) + translationManager . emptyString
2019-04-25 19:09:23 +00:00
fontSize: 16
placeholderFontSize: 16
2019-02-01 21:20:38 +00:00
placeholderText: qsTr ( "Recipient's wallet address" ) + translationManager . emptyString ;
readOnly: false
copyButton: true
2017-09-12 08:42:00 +00:00
}
2019-02-01 21:20:38 +00:00
MoneroComponents . LineEdit {
id: checkProofMessageLine
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
fontSize: 16
labelFontSize: 14
2019-02-01 21:20:38 +00:00
labelText: qsTr ( "Message" ) + translationManager . emptyString
2019-04-25 19:09:23 +00:00
placeholderFontSize: 16
2019-02-01 21:20:38 +00:00
placeholderText: qsTr ( "Optional message against which the signature is signed" ) + translationManager . emptyString ;
readOnly: false
copyButton: true
}
MoneroComponents . LineEdit {
id: checkProofSignatureLine
Layout.fillWidth: true
2019-04-25 19:09:23 +00:00
fontSize: 16
labelFontSize: 14
2019-02-01 21:20:38 +00:00
labelText: qsTr ( "Signature" ) + translationManager . emptyString
2019-04-25 19:09:23 +00:00
placeholderFontSize: 16
2022-01-21 06:07:47 +00:00
placeholderText: qsTr ( "Paste tx proof" ) + " / " + qsTr ( "reserve proof" ) + translationManager . emptyString ;
2019-02-01 21:20:38 +00:00
readOnly: false
copyButton: true
2016-11-05 14:58:49 +00:00
}
2019-02-01 21:20:38 +00:00
MoneroComponents . StandardButton {
2019-04-25 19:09:23 +00:00
Layout.topMargin: 16
2018-04-22 18:07:31 +00:00
small: true
2018-03-19 22:30:34 +00:00
text: qsTr ( "Check" ) + translationManager . emptyString
2022-01-18 21:10:56 +00:00
enabled: ( TxUtils . checkTxID ( checkProofTxIdLine . text ) && TxUtils . checkSignature ( checkProofSignatureLine . text ) && ( ( checkProofSignatureLine . text . indexOf ( "SpendProofV" ) === 0 && checkProofAddressLine . text . length == 0 ) || ( checkProofSignatureLine . text . indexOf ( "SpendProofV" ) !== 0 && TxUtils . checkAddress ( checkProofAddressLine . text , appWindow . persistentSettings . nettype ) ) ) ) || ( TxUtils . checkSignature ( checkProofSignatureLine . text ) && checkProofSignatureLine . text . indexOf ( "ReserveProofV" ) === 0 && TxUtils . checkAddress ( checkProofAddressLine . text , appWindow . persistentSettings . nettype ) )
2018-03-19 22:30:34 +00:00
onClicked: {
console . log ( "checkProof: Check clicked: txid " + checkProofTxIdLine . text + ", address " + checkProofAddressLine . text + ", message " + checkProofMessageLine . text + ", signature " + checkProofSignatureLine . text ) ;
2021-08-20 21:51:04 +00:00
middlePanel . checkProofClicked ( checkProofTxIdLine . text , checkProofAddressLine . text , checkProofMessageLine . text , checkProofSignatureLine . text )
2018-03-19 22:30:34 +00:00
}
2016-11-05 14:58:49 +00:00
}
2018-03-19 22:30:34 +00:00
// underline
Rectangle {
height: 1
2019-04-11 01:17:29 +00:00
color: MoneroComponents . Style . dividerColor
opacity: MoneroComponents . Style . dividerOpacity
2016-11-05 14:58:49 +00:00
Layout.fillWidth: true
2018-03-19 22:30:34 +00:00
Layout.alignment: Qt . AlignHCenter
2019-04-25 19:09:23 +00:00
anchors.bottomMargin: 3
2016-11-05 14:58:49 +00:00
}
2019-04-11 01:17:29 +00:00
MoneroComponents . TextPlain {
2018-03-19 22:30:34 +00:00
text: qsTr ( "If a payment had several transactions then each must be checked and the results combined." ) + translationManager . emptyString
wrapMode: Text . Wrap
Layout.fillWidth: true
2019-02-01 21:20:38 +00:00
font.family: MoneroComponents . Style . fontRegular . name
2019-04-25 19:09:23 +00:00
font.pixelSize: 14
2019-02-01 21:20:38 +00:00
color: MoneroComponents . Style . defaultFontColor
2022-01-21 06:07:47 +00:00
}
2016-11-05 14:58:49 +00:00
}
}
function onPageCompleted ( ) {
console . log ( "TxKey page loaded" ) ;
}
}