diff options
author | zelig <viktor.tron@gmail.com> | 2014-07-01 22:03:02 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-07-01 22:03:02 +0800 |
commit | 89630d2826300d119f2cdc9f8af6c94926f478a2 (patch) | |
tree | aa2addd061e2d2a8f3cdc0821260409f31ac3b09 /ethereal/assets/qml/QmlApp.qml | |
parent | 12972b4b65a303dc3f9e135b0e2d97f8b7a661e2 (diff) | |
parent | 550407b0ec78b7026737d1abe28127da8c0c9063 (diff) | |
download | go-tangerine-89630d2826300d119f2cdc9f8af6c94926f478a2.tar go-tangerine-89630d2826300d119f2cdc9f8af6c94926f478a2.tar.gz go-tangerine-89630d2826300d119f2cdc9f8af6c94926f478a2.tar.bz2 go-tangerine-89630d2826300d119f2cdc9f8af6c94926f478a2.tar.lz go-tangerine-89630d2826300d119f2cdc9f8af6c94926f478a2.tar.xz go-tangerine-89630d2826300d119f2cdc9f8af6c94926f478a2.tar.zst go-tangerine-89630d2826300d119f2cdc9f8af6c94926f478a2.zip |
merge upstream
Diffstat (limited to 'ethereal/assets/qml/QmlApp.qml')
-rw-r--r-- | ethereal/assets/qml/QmlApp.qml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ethereal/assets/qml/QmlApp.qml b/ethereal/assets/qml/QmlApp.qml new file mode 100644 index 000000000..f5c503f4c --- /dev/null +++ b/ethereal/assets/qml/QmlApp.qml @@ -0,0 +1,22 @@ +import QtQuick 2.0 +import QtQuick.Controls 1.0; +import QtQuick.Layouts 1.0; +import Ethereum 1.0 + +ApplicationWindow { + minimumWidth: 500 + maximumWidth: 500 + maximumHeight: 400 + minimumHeight: 400 + + function onNewBlockCb(block) { + console.log("Please overwrite onNewBlock(block):", block) + } + function onObjectChangeCb(stateObject) { + console.log("Please overwrite onObjectChangeCb(object)", stateObject) + } + function onStorageChangeCb(storageObject) { + var ev = ["storage", storageObject.stateAddress, storageObject.address].join(":"); + console.log("Please overwrite onStorageChangeCb(object)", ev) + } +} |