2015-04-01 08:56:05 +00:00
|
|
|
// Copyright (c) 2014-2015, The Monero Project
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2014-07-16 16:04:34 +00:00
|
|
|
import QtQuick 2.0
|
2016-10-02 18:40:40 +00:00
|
|
|
import moneroComponents.Clipboard 1.0
|
2014-07-16 16:04:34 +00:00
|
|
|
|
2016-10-04 20:12:58 +00:00
|
|
|
|
2014-07-16 16:04:34 +00:00
|
|
|
ListView {
|
|
|
|
id: listView
|
|
|
|
clip: true
|
|
|
|
boundsBehavior: ListView.StopAtBounds
|
2016-10-04 20:12:58 +00:00
|
|
|
property var previousItem
|
2016-11-05 11:19:47 +00:00
|
|
|
property int rowSpacing: 12
|
2014-07-16 16:04:34 +00:00
|
|
|
|
2016-11-06 18:28:12 +00:00
|
|
|
function buildTxDetailsString(tx_id, paymentId, tx_key,tx_note) {
|
|
|
|
var trStart = '<tr><td width="85" style="padding-top:5px"><b>',
|
|
|
|
trMiddle = '</b></td><td style="padding-left:10px;padding-top:5px;">',
|
|
|
|
trEnd = "</td></tr>";
|
|
|
|
|
|
|
|
return '<table border="0">'
|
|
|
|
+ (tx_id ? trStart + qsTr("Tx ID:") + trMiddle + tx_id + trEnd : "")
|
|
|
|
+ (paymentId ? trStart + qsTr("Payment ID:") + trMiddle + paymentId + trEnd : "")
|
|
|
|
+ (tx_key ? trStart + qsTr("Tx key:") + trMiddle + tx_key + trEnd : "")
|
|
|
|
+ (tx_note ? trStart + qsTr("Tx note:") + trMiddle + tx_note + trEnd : "")
|
|
|
|
+ "</table>"
|
|
|
|
+ translationManager.emptyString;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-23 09:25:27 +00:00
|
|
|
footer: Rectangle {
|
|
|
|
height: 127
|
|
|
|
width: listView.width
|
|
|
|
color: "#FFFFFF"
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 14
|
|
|
|
color: "#545454"
|
2016-07-20 19:28:11 +00:00
|
|
|
text: qsTr("No more results") + translationManager.emptyString
|
2014-07-23 09:25:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-06 18:28:12 +00:00
|
|
|
StandardDialog {
|
|
|
|
id: detailsPopup
|
|
|
|
cancelVisible: false
|
|
|
|
okVisible: true
|
|
|
|
}
|
|
|
|
|
2016-10-04 20:12:58 +00:00
|
|
|
|
2014-07-16 16:04:34 +00:00
|
|
|
delegate: Rectangle {
|
|
|
|
id: delegate
|
2016-11-05 11:19:47 +00:00
|
|
|
height: 144
|
2014-07-16 16:04:34 +00:00
|
|
|
width: listView.width
|
|
|
|
color: index % 2 ? "#F8F8F8" : "#FFFFFF"
|
2014-07-23 11:01:20 +00:00
|
|
|
z: listView.count - index
|
|
|
|
function collapseDropdown() { dropdown.expanded = false }
|
2014-07-16 16:04:34 +00:00
|
|
|
|
2016-11-06 18:28:12 +00:00
|
|
|
StandardButton {
|
|
|
|
id: detailsButton
|
|
|
|
anchors.right:parent.right
|
|
|
|
anchors.rightMargin: 15
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: parent.height/2 - this.height/2
|
|
|
|
width: 80
|
|
|
|
fontSize: 14
|
|
|
|
shadowReleasedColor: "#FF4304"
|
|
|
|
shadowPressedColor: "#B32D00"
|
|
|
|
releasedColor: "#FF6C3C"
|
|
|
|
pressedColor: "#FF4304"
|
|
|
|
text: qsTr("Details")
|
|
|
|
onClicked: {
|
|
|
|
console.log(hash)
|
|
|
|
var tx_key = currentWallet.getTxKey(hash)
|
|
|
|
var tx_note = currentWallet.getUserNote(hash)
|
|
|
|
console.log("key",tx_key);
|
|
|
|
detailsPopup.title = "Transaction details";
|
|
|
|
detailsPopup.content = buildTxDetailsString(hash,paymentId,tx_key,tx_note);
|
|
|
|
detailsPopup.open();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-16 16:04:34 +00:00
|
|
|
Row {
|
|
|
|
id: row1
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 14
|
2016-10-04 20:12:58 +00:00
|
|
|
// -- direction indicator
|
2014-07-16 16:04:34 +00:00
|
|
|
Rectangle {
|
|
|
|
id: dot
|
|
|
|
width: 14
|
|
|
|
height: width
|
|
|
|
radius: width / 2
|
2016-10-04 20:12:58 +00:00
|
|
|
color: isOut ? "#FF4F41" : "#36B05B"
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Item { //separator
|
|
|
|
width: 12
|
|
|
|
height: 14
|
|
|
|
}
|
|
|
|
|
2016-10-04 20:12:58 +00:00
|
|
|
// -- description aka recepient name from address book (TODO)
|
2016-10-06 21:47:28 +00:00
|
|
|
/*
|
2014-07-16 16:04:34 +00:00
|
|
|
Text {
|
|
|
|
id: descriptionText
|
|
|
|
width: text.length ? (descriptionArea.containsMouse ? parent.width - x - 12 : 120) : 0
|
|
|
|
anchors.verticalCenter: dot.verticalCenter
|
|
|
|
font.family: "Arial"
|
|
|
|
font.bold: true
|
|
|
|
font.pixelSize: 19
|
|
|
|
color: "#444444"
|
|
|
|
elide: Text.ElideRight
|
|
|
|
text: description
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: descriptionArea
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
}
|
|
|
|
}
|
2016-10-06 21:47:28 +00:00
|
|
|
*/
|
|
|
|
/*
|
2014-07-16 16:04:34 +00:00
|
|
|
Item { //separator
|
|
|
|
width: descriptionText.width ? 12 : 0
|
|
|
|
height: 14
|
|
|
|
visible: !descriptionArea.containsMouse
|
|
|
|
}
|
2016-10-06 21:47:28 +00:00
|
|
|
*/
|
2016-10-04 20:12:58 +00:00
|
|
|
// -- address (in case outgoing transaction) - N/A in case of incoming
|
2016-11-05 11:19:47 +00:00
|
|
|
TextEdit {
|
2014-07-16 16:04:34 +00:00
|
|
|
id: addressText
|
2016-11-05 11:19:47 +00:00
|
|
|
readOnly: true
|
|
|
|
selectByMouse: true
|
2014-07-16 16:04:34 +00:00
|
|
|
anchors.verticalCenter: dot.verticalCenter
|
|
|
|
width: parent.width - x - 12
|
2016-11-05 11:19:47 +00:00
|
|
|
//elide: Text.ElideRight
|
2014-07-16 16:04:34 +00:00
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 14
|
|
|
|
color: "#545454"
|
2016-10-04 20:12:58 +00:00
|
|
|
text: hash
|
2016-10-06 21:47:28 +00:00
|
|
|
// visible: !descriptionArea.containsMouse
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-17 11:01:12 +00:00
|
|
|
|
2016-10-10 22:28:06 +00:00
|
|
|
Row {
|
2016-11-05 11:19:47 +00:00
|
|
|
// - Payment ID
|
2016-10-10 22:28:06 +00:00
|
|
|
id: row2
|
|
|
|
anchors.left: parent.left
|
2014-07-17 11:01:12 +00:00
|
|
|
anchors.right: parent.right
|
2016-10-10 22:28:06 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 40
|
|
|
|
anchors.leftMargin: 26
|
2014-07-17 11:01:12 +00:00
|
|
|
|
2016-10-10 22:28:06 +00:00
|
|
|
// -- "PaymentID" title
|
|
|
|
Text {
|
|
|
|
id: paymentLabel
|
|
|
|
width: 86
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 12
|
|
|
|
font.letterSpacing: -1
|
|
|
|
color: "#535353"
|
|
|
|
text: paymentId !== "" ? qsTr("Payment ID:") + translationManager.emptyString : ""
|
|
|
|
}
|
|
|
|
// -- "PaymentID" value
|
2016-11-05 11:19:47 +00:00
|
|
|
TextEdit {
|
|
|
|
readOnly: true
|
|
|
|
selectByMouse: true
|
2016-10-10 22:28:06 +00:00
|
|
|
id: paymentIdValue
|
|
|
|
width: 136
|
|
|
|
anchors.bottom: parent.bottom
|
2016-11-05 11:19:47 +00:00
|
|
|
//elide: Text.ElideRight
|
2016-10-10 22:28:06 +00:00
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize:13
|
|
|
|
font.letterSpacing: -1
|
|
|
|
color: "#545454"
|
|
|
|
text: paymentId
|
2016-11-05 11:19:47 +00:00
|
|
|
|
2016-10-10 22:28:06 +00:00
|
|
|
}
|
2016-11-05 11:19:47 +00:00
|
|
|
}
|
|
|
|
Row {
|
|
|
|
// block height row
|
|
|
|
id: row3
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: row2.bottom
|
|
|
|
anchors.topMargin: rowSpacing
|
|
|
|
anchors.leftMargin: 26
|
|
|
|
|
2016-10-10 22:28:06 +00:00
|
|
|
// -- "BlockHeight" title
|
|
|
|
Text {
|
|
|
|
id: blockHeghtTitle
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
width: 86
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 12
|
|
|
|
font.letterSpacing: -1
|
|
|
|
color: "#535353"
|
|
|
|
text: qsTr("BlockHeight:") + translationManager.emptyString
|
|
|
|
}
|
|
|
|
// -- "BlockHeight" value
|
2016-11-05 11:19:47 +00:00
|
|
|
TextEdit {
|
|
|
|
readOnly: true
|
|
|
|
selectByMouse: true
|
2016-10-10 22:28:06 +00:00
|
|
|
width: 85
|
|
|
|
anchors.bottom: parent.bottom
|
2016-11-05 11:19:47 +00:00
|
|
|
//elide: Text.ElideRight
|
2016-10-10 22:28:06 +00:00
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 13
|
|
|
|
font.letterSpacing: -1
|
|
|
|
color: "#545454"
|
|
|
|
text: blockHeight
|
|
|
|
}
|
2014-07-17 11:01:12 +00:00
|
|
|
}
|
2016-10-10 22:28:06 +00:00
|
|
|
|
2016-10-04 20:12:58 +00:00
|
|
|
// -- "Date", "Balance" and "Amound" section
|
2014-07-17 11:01:12 +00:00
|
|
|
Row {
|
2016-11-05 11:19:47 +00:00
|
|
|
id: row4
|
|
|
|
anchors.top: row3.bottom
|
2014-07-17 11:01:12 +00:00
|
|
|
anchors.left: parent.left
|
2014-07-16 16:04:34 +00:00
|
|
|
spacing: 12
|
2016-11-05 11:19:47 +00:00
|
|
|
anchors.topMargin: rowSpacing
|
2014-07-16 16:04:34 +00:00
|
|
|
|
|
|
|
Item { //separator
|
|
|
|
width: 14
|
|
|
|
height: 14
|
|
|
|
}
|
|
|
|
|
2016-10-04 20:12:58 +00:00
|
|
|
// -- "Date" column
|
2014-07-16 16:04:34 +00:00
|
|
|
Column {
|
|
|
|
anchors.top: parent.top
|
|
|
|
width: 215
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.left: parent.left
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 12
|
|
|
|
color: "#545454"
|
2016-07-20 19:28:11 +00:00
|
|
|
text: qsTr("Date") + translationManager.emptyString
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Row {
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
spacing: 33
|
|
|
|
|
|
|
|
Text {
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 18
|
|
|
|
font.letterSpacing: -1
|
|
|
|
color: "#000000"
|
|
|
|
text: date
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 18
|
|
|
|
font.letterSpacing: -1
|
|
|
|
color: "#000000"
|
|
|
|
text: time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-04 20:12:58 +00:00
|
|
|
// -- "Balance" column
|
|
|
|
// XXX: we don't have a balance
|
|
|
|
/*
|
2014-07-16 16:04:34 +00:00
|
|
|
Column {
|
|
|
|
anchors.top: parent.top
|
|
|
|
width: 148
|
2016-10-04 20:12:58 +00:00
|
|
|
visible: false
|
2014-07-16 16:04:34 +00:00
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.left: parent.left
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 12
|
|
|
|
color: "#545454"
|
2016-07-20 19:28:11 +00:00
|
|
|
text: qsTr("Balance") + translationManager.emptyString
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 18
|
|
|
|
font.letterSpacing: -1
|
|
|
|
color: "#000000"
|
2014-07-23 09:25:27 +00:00
|
|
|
text: balance
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-04 20:12:58 +00:00
|
|
|
*/
|
2014-07-16 16:04:34 +00:00
|
|
|
|
2016-10-04 20:12:58 +00:00
|
|
|
// -- "Amount column
|
2014-07-16 16:04:34 +00:00
|
|
|
Column {
|
|
|
|
anchors.top: parent.top
|
|
|
|
width: 148
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.left: parent.left
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 12
|
|
|
|
color: "#545454"
|
2016-07-20 19:28:11 +00:00
|
|
|
text: qsTr("Amount") + translationManager.emptyString
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Row {
|
|
|
|
spacing: 2
|
|
|
|
Text {
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 3
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 16
|
2016-10-04 20:12:58 +00:00
|
|
|
color: isOut ? "#FF4F41" : "#36B05B"
|
|
|
|
text: isOut ? "↓" : "↑"
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 18
|
|
|
|
font.letterSpacing: -1
|
2016-10-04 20:12:58 +00:00
|
|
|
color: isOut ? "#FF4F41" : "#36B05B"
|
2016-10-08 00:54:35 +00:00
|
|
|
text: displayAmount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- "Fee column
|
|
|
|
Column {
|
|
|
|
anchors.top: parent.top
|
|
|
|
width: 148
|
|
|
|
visible: isOut
|
|
|
|
Text {
|
|
|
|
anchors.left: parent.left
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 12
|
|
|
|
color: "#545454"
|
|
|
|
text: qsTr("Fee") + translationManager.emptyString
|
|
|
|
}
|
|
|
|
|
|
|
|
Row {
|
|
|
|
spacing: 2
|
|
|
|
Text {
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 18
|
|
|
|
font.letterSpacing: -1
|
2016-10-08 01:30:55 +00:00
|
|
|
color: "#FF4F41"
|
2016-10-08 00:54:35 +00:00
|
|
|
text: fee
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-08 01:30:55 +00:00
|
|
|
/*
|
|
|
|
// Transaction dropdown menu.
|
|
|
|
// Disable for now until AddressBook implemented
|
2014-07-16 16:04:34 +00:00
|
|
|
TableDropdown {
|
|
|
|
id: dropdown
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 11
|
|
|
|
anchors.rightMargin: 5
|
|
|
|
dataModel: dropModel
|
|
|
|
z: 1
|
|
|
|
onExpandedChanged: {
|
|
|
|
if(expanded) {
|
|
|
|
listView.previousItem = delegate
|
|
|
|
listView.currentIndex = index
|
|
|
|
}
|
|
|
|
}
|
|
|
|
onOptionClicked: {
|
|
|
|
if(option === 0)
|
|
|
|
clipboard.setText(address)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
height: 1
|
|
|
|
color: "#DBDBDB"
|
|
|
|
}
|
2016-10-08 01:30:55 +00:00
|
|
|
*/
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|
2016-10-04 20:12:58 +00:00
|
|
|
|
|
|
|
ListModel {
|
|
|
|
id: dropModel
|
|
|
|
ListElement { name: "<b>Copy address to clipboard</b>"; icon: "../images/dropdownCopy.png" }
|
|
|
|
ListElement { name: "<b>Add to address book</b>"; icon: "../images/dropdownAdd.png" }
|
|
|
|
ListElement { name: "<b>Send to same destination</b>"; icon: "../images/dropdownSend.png" }
|
|
|
|
ListElement { name: "<b>Find similar transactions</b>"; icon: "../images/dropdownSearch.png" }
|
|
|
|
}
|
|
|
|
|
|
|
|
Clipboard { id: clipboard }
|
2014-07-16 16:04:34 +00:00
|
|
|
}
|