blob: b19e7f32bb98277d2d2b1554eae392f75349b01c (
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
|
import QtQuick 2.0
import QtQuick.Controls 1.0;
import QtQuick.Layouts 1.0;
import GoExtensions 1.0
ApplicationWindow {
id: root
width: 800
height: 600
minimumHeight: 300
title: "Ethereal"
toolBar: ToolBar {
id: mainToolbar
RowLayout {
width: parent.width
Button {
text: "Send"
onClicked: tester.compile(codeView)
}
TextField {
width: 200
placeholderText: "Amount"
}
TextField {
width: 300
placeholderText: "Receiver Address (or empty for contract)"
Layout.fillWidth: true
}
}
}
SplitView {
id: splitView
height: 200
anchors.top: parent.top
anchors.right: parent.right
anchors.left: parent.left
TextArea {
id: codeView
width: parent.width /2
}
TextArea {
readOnly: true
}
}
property var blockModel: ListModel {
id: blockModel
}
TableView {
width: parent.width
height: 100
anchors.bottom: parent.bottom
anchors.top: splitView.bottom
TableViewColumn{ role: "number" ; title: "#" ; width: 100 }
TableViewColumn{ role: "hash" ; title: "Hash" ; width: 560 }
model: blockModel
}
statusBar: StatusBar {
RowLayout {
anchors.fill: parent
Label { text: "0.0.1" }
Label {
anchors.right: peerImage.left
anchors.rightMargin: 5
id: peerLabel
font.pixelSize: 8
text: "0 / 0"
}
Image {
id: peerImage
anchors.right: parent.right
width: 10; height: 10
source: "network.png"
}
}
}
function addBlock(block) {
blockModel.insert(0, {number: block.number, hash: block.hash})
}
function setPeers(text) {
peerLabel.text = text
}
}
|