aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/test_app.qml
diff options
context:
space:
mode:
authorMaran <maran.hidskes@gmail.com>2014-03-24 17:26:19 +0800
committerMaran <maran.hidskes@gmail.com>2014-03-24 17:26:19 +0800
commit6724d27c0c897f116cac3163230f043e80304f91 (patch)
tree4e3f9c0225881c2b6a12deb5f223ee9b139d517d /ethereal/assets/qml/test_app.qml
parent3002570085c6823da4b8e12015eafa4bd87177fb (diff)
parent642630db15a793cf0a0f7fbd827daee364df5423 (diff)
downloaddexon-6724d27c0c897f116cac3163230f043e80304f91.tar.gz
dexon-6724d27c0c897f116cac3163230f043e80304f91.tar.zst
dexon-6724d27c0c897f116cac3163230f043e80304f91.zip
Merge master into miner branch
Diffstat (limited to 'ethereal/assets/qml/test_app.qml')
-rw-r--r--ethereal/assets/qml/test_app.qml35
1 files changed, 35 insertions, 0 deletions
diff --git a/ethereal/assets/qml/test_app.qml b/ethereal/assets/qml/test_app.qml
new file mode 100644
index 000000000..aace4e881
--- /dev/null
+++ b/ethereal/assets/qml/test_app.qml
@@ -0,0 +1,35 @@
+import QtQuick 2.0
+import QtQuick.Controls 1.0;
+import QtQuick.Layouts 1.0;
+import Ethereum 1.0
+
+ApplicationWindow {
+ minimumWidth: 500
+ maximumWidth: 500
+ maximumHeight: 100
+ minimumHeight: 100
+
+ title: "Ethereum Dice"
+
+ TextField {
+ id: textField
+ anchors.verticalCenter: parent.verticalCenter
+ anchors.horizontalCenter: parent.horizontalCenter
+ placeholderText: "Amount"
+ }
+ Label {
+ id: txHash
+ anchors.bottom: textField.top
+ anchors.bottomMargin: 5
+ anchors.horizontalCenter: parent.horizontalCenter
+ }
+ Button {
+ anchors.top: textField.bottom
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.topMargin: 5
+ text: "Place bet"
+ onClicked: {
+ txHash.text = eth.createTx("e6716f9544a56c530d868e4bfbacb172315bdead", textField.text)
+ }
+ }
+}