aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/assets/qml/views/miner.qml
blob: ff2bf85ca7f9fa6b35c7891c329bf6cb34ed75ae (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
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 {
    id: root
    property var title: "Miner"
    property var iconSource: "../mining-icon.png"
    property var menuItem

    color: "#00000000"

        Label {
        visible: false
            id: lastBlockLabel
            objectName: "lastBlockLabel"
            text: "---"
            onTextChanged: {
            //menuItem.secondaryTitle = text
            }
        }

    ColumnLayout {
        spacing: 10
        anchors.fill: parent

        Rectangle {
            id: mainPane
            color: "#00000000"
            anchors {
                top: parent.top
                bottom: localTxPane.top
                left: parent.left
                right: parent.right
            }

            Rectangle {
                id: menu
                height: 25
                anchors {
                    left: parent.left
                }

                RowLayout {
                    id: tools
                    anchors {
                        left: parent.left
                        right: parent.right
                    }

                    Button {
                        text: "Start"
                        onClicked: {
                            // eth.setGasPrice(minGasPrice.text || "10000000000000");
                            // eth.setExtra(blockExtra.text)
                            if (eth.toggleMining()) {
                                this.text = "Stop";
                            } else {
                                this.text = "Start";
                            }
                        }
                    }

                    // Rectangle {
                    //  id: minGasPriceRect
                    //  anchors.top: parent.top
                    //  anchors.topMargin: 2
                    //  width: 200
                    //  TextField {
                    //      id: minGasPrice
                    //      placeholderText: "Min Gas: 10000000000000"
                    //      width: 200
                    //      validator: RegExpValidator { regExp: /\d*/ }
                    //  }
                    // }

                    // Rectangle {
                    //  width: 300
                    //  anchors {
                    //      left: minGasPriceRect.right
                    //      leftMargin: 5
                    //      top: parent.top
                    //      topMargin: 2
                    //  }

                    //  TextField {
                    //      id: blockExtra
                    //      placeholderText: "Extra"
                    //      width: parent.width
                    //      maximumLength: 1024
                    //  }
                    // }
                }
            }

            Column {
                anchors {
                    left: parent.left
                    right: parent.right
                    top: menu.bottom
                    topMargin: 5
                }

                Text {
                    text: "<b>Merged mining options</b>"
                }

                TableView {
                    id: mergedMiningTable
                    height: 300
                    anchors {
                        left: parent.left
                        right: parent.right
                    }
                    Component {
                        id: checkBoxDelegate

                        Item {
                            id: test
                            CheckBox {
                                anchors.fill: parent
                                checked: styleData.value

                                onClicked: {
                                    var model = mergedMiningModel.get(styleData.row)

                                    if (this.checked) {
                                        model.id = txModel.createLocalTx(model.address, "0", "5000", "0", "")
                                    } else {
                                        txModel.removeWithId(model.id);
                                        model.id = 0;
                                    }
                                }
                            }
                        }
                    }
                    TableViewColumn{ role: "checked" ; title: "" ; width: 40 ; delegate: checkBoxDelegate }
                    TableViewColumn{ role: "name" ; title: "Name" ; width: 480 }
                    model: ListModel {
                        objectName: "mergedMiningModel"
                        id: mergedMiningModel 
                        function addMergedMiningOption(model) {
                            this.append(model);
                        }
                    }
                    Component.onCompleted: {
                        /*
                        // XXX Temp. replace with above eventually
                        var tmpItems = ["JEVCoin", "Some coin", "Other coin", "Etc coin"];
                        var address = "e6716f9544a56c530d868e4bfbacb172315bdead";
                        for (var i = 0; i < tmpItems.length; i++) {
                            mergedMiningModel.append({checked: false, name: tmpItems[i], address: address, id: 0, itemId: i});
                        }
                        */
                    }
                }
            }
        }

        Rectangle {
            id: localTxPane
            color: "#ececec"
            border.color: "#cccccc"
            border.width: 1
            anchors {
                left: parent.left
                right: parent.right
                bottom: parent.bottom
            }
            height: 300

            ColumnLayout {
                spacing: 10
                anchors.fill: parent
                RowLayout {
                    id: newLocalTx
                    anchors {
                        left: parent.left
                        leftMargin: 5
                        top: parent.top
                        topMargin: 5
                        bottomMargin: 5
                    }

                    Text {
                        text: "Local tx"
                    }

                    Rectangle {
                        width: 250
                        color: "#00000000"
                        anchors.top: parent.top
                        anchors.topMargin: 2

                        TextField {
                            id: to
                            placeholderText: "To"
                            width: 250
                            validator: RegExpValidator { regExp: /[abcdefABCDEF1234567890]*/ }
                        }
                    }
                    TextField {
                        property var defaultGas: "5000"
                        id: gas
                        placeholderText: "Gas"
                        text: defaultGas
                        validator: RegExpValidator { regExp: /\d*/ }
                    }
                    TextField {
                        id: gasPrice
                        placeholderText: "Price"
                        validator: RegExpValidator { regExp: /\d*/ }
                    }
                    TextField {
                        id: value 
                        placeholderText: "Amount"
                        text: "0"
                        validator: RegExpValidator { regExp: /\d*/ }
                    }
                    TextField {
                        id: data
                        placeholderText: "Data"
                        validator: RegExpValidator { regExp: /[abcdefABCDEF1234567890]*/ }
                    }
                    Button {
                        text: "Create"
                        onClicked: {
                            if (to.text.length == 40 && gasPrice.text.length != 0 && value.text.length != 0 && gas.text.length != 0) {
                                txModel.createLocalTx(to.text, gasPrice.text, gas.text, value.text, data.text);

                                to.text = ""; gasPrice.text = "";
                                gas.text = gas.defaultGas;
                                value.text = "0"
                            }
                        }
                    }
                }

                TableView {
                    id: txTableView
                    anchors {
                        top: newLocalTx.bottom
                        topMargin: 5
                        left: parent.left
                        right: parent.right
                        bottom: parent.bottom
                    }
                    TableViewColumn{ role: "to" ; title: "To" ; width: 480 }
                    TableViewColumn{ role: "gas" ; title: "Gas" ; width: 100 }
                    TableViewColumn{ role: "gasPrice" ; title: "Gas Price" ; width: 100 }
                    TableViewColumn{ role: "value" ; title: "Amount" ; width: 100 }
                    TableViewColumn{ role: "data" ; title: "Data" ; width: 100 }

                    model: ListModel {
                        id: txModel
                        Component.onCompleted: {
                        }
                        function removeWithId(id) {
                            for (var i = 0; i < this.count; i++) {
                                if (txModel.get(i).id == id) {
                                    this.remove(i);
                                    eth.removeLocalTransaction(id)
                                    break;
                                }
                            }
                        }

                        function createLocalTx(to, gasPrice, gas, value, data) {
                            var id = eth.addLocalTransaction(to, data, gas, gasPrice, value)
                            txModel.insert(0, {to: to, gas: gas, gasPrice: gasPrice, value: value, data: data, id: id});

                            return id
                        }
                    }
                }
            }
        }
    }
}