diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-24 20:43:00 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-24 20:43:00 +0800 |
commit | bbde892d5012203bb984b83fcb2fe11467841643 (patch) | |
tree | d4b04a5fcce13861dd33ccba38994136c97d683a /ethereal/assets/qml | |
parent | c535d0d24623caafcab084546f85f1f70cb2ac67 (diff) | |
download | dexon-bbde892d5012203bb984b83fcb2fe11467841643.tar.gz dexon-bbde892d5012203bb984b83fcb2fe11467841643.tar.zst dexon-bbde892d5012203bb984b83fcb2fe11467841643.zip |
Added callback mechanism and updated UI
* UI Now updates when a new block has been broadcasted
* Added a on, off and trigger
Diffstat (limited to 'ethereal/assets/qml')
-rw-r--r-- | ethereal/assets/qml/newTransaction/_new_contract.qml | 1 | ||||
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 2 | ||||
-rw-r--r-- | ethereal/assets/qml/webapp.qml | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/ethereal/assets/qml/newTransaction/_new_contract.qml b/ethereal/assets/qml/newTransaction/_new_contract.qml index 29e26a562..0794d3dcd 100644 --- a/ethereal/assets/qml/newTransaction/_new_contract.qml +++ b/ethereal/assets/qml/newTransaction/_new_contract.qml @@ -117,6 +117,7 @@ Component { TextArea { id: codeView + height: 300 anchors.topMargin: 5 Layout.fillWidth: true width: parent.width /2 diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index ed06f3518..574fbef86 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -18,13 +18,11 @@ ApplicationWindow { MenuBar { Menu { title: "File" - /* MenuItem { text: "Import App" shortcut: "Ctrl+o" onTriggered: openAppDialog.open() } - */ } Menu { diff --git a/ethereal/assets/qml/webapp.qml b/ethereal/assets/qml/webapp.qml index ee7dea0ca..9cf154e9b 100644 --- a/ethereal/assets/qml/webapp.qml +++ b/ethereal/assets/qml/webapp.qml @@ -79,6 +79,10 @@ ApplicationWindow { function postData(seed, data) { webview.experimental.postMessage(JSON.stringify({data: data, _seed: seed})) } + + function onNewBlockCb(block) { + webview.experimental.postMessage(JSON.stringify({data: block, _event: "block:new"})) + } } Rectangle { |