aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/assets/qml/views/history.qml
blob: c72f8f3aee156d6f7d33164a541b14c6676446fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import QtQuick 2.0
import QtQuick.Controls 1.0;
import QtQuick.Layouts 1.0;
import QtQuick.Dialogs 1.0;
import QtQuick.Window 2.1;
import QtQuick.Controls.Styles 1.1
import Ethereum 1.0

Rectangle {
    property var title: "Transactions"
    property var menuItem


    id: historyView
    visible: false
    anchors.fill: parent
    objectName: "transactionView"

    property var txModel: ListModel {
        id: txModel
    }
    TableView {
        id: txTableView
        anchors.fill: parent
        TableViewColumn{ role: "inout" ; title: "" ; width: 40 }
        TableViewColumn{ role: "value" ; title: "Value" ; width: 100 }
        TableViewColumn{ role: "address" ; title: "Address" ; width: 430 }
        TableViewColumn{ role: "contract" ; title: "Contract" ; width: 100 }

        model: txModel
    }

    function addTx(tx, inout) {
        var isContract
        if (tx.contract == true){
            isContract = "Yes"
        }else{
            isContract = "No"
        }


        var address;
        if(inout == "recv") {
            address = tx.sender;
        } else {
            address = tx.address;
        }

        txModel.insert(0, {inout: inout, hash: tx.hash, address: address, value: tx.value, contract: isContract})
    }
}