diff options
author | obscuren <geffobscura@gmail.com> | 2014-06-27 01:54:09 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-06-27 01:54:09 +0800 |
commit | 3777ead25e1acedc0571a48a485976eb5c36fb30 (patch) | |
tree | 38419590b42a20a51773e178acbbb3178ee89bf2 /ethereal/ui/qml_app.go | |
parent | cba47963113d8041281278d75ee0dad046798e82 (diff) | |
parent | a68bfd215f7b1859c1b14b0df59f3260b35df828 (diff) | |
download | dexon-3777ead25e1acedc0571a48a485976eb5c36fb30.tar.gz dexon-3777ead25e1acedc0571a48a485976eb5c36fb30.tar.zst dexon-3777ead25e1acedc0571a48a485976eb5c36fb30.zip |
Merge branch 'release/0.5.15'
Diffstat (limited to 'ethereal/ui/qml_app.go')
-rw-r--r-- | ethereal/ui/qml_app.go | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/ethereal/ui/qml_app.go b/ethereal/ui/qml_app.go new file mode 100644 index 000000000..39ab7f922 --- /dev/null +++ b/ethereal/ui/qml_app.go @@ -0,0 +1,59 @@ +package ethui + +import ( + "github.com/ethereum/eth-go/ethchain" + "github.com/ethereum/eth-go/ethpub" + "github.com/ethereum/eth-go/ethutil" + "github.com/go-qml/qml" +) + +type QmlApplication struct { + win *qml.Window + engine *qml.Engine + lib *UiLib + path string +} + +func NewQmlApplication(path string, lib *UiLib) *QmlApplication { + engine := qml.NewEngine() + return &QmlApplication{engine: engine, path: path, lib: lib} +} + +func (app *QmlApplication) Create() error { + component, err := app.engine.LoadFile(app.path) + if err != nil { + logger.Warnln(err) + } + app.win = component.CreateWindow(nil) + + return nil +} + +func (app *QmlApplication) Destroy() { + app.engine.Destroy() +} + +func (app *QmlApplication) NewWatcher(quitChan chan bool) { +} + +// Events +func (app *QmlApplication) NewBlock(block *ethchain.Block) { + pblock := ðpub.PBlock{Number: int(block.BlockInfo().Number), Hash: ethutil.Hex(block.Hash())} + app.win.Call("onNewBlockCb", pblock) +} + +func (app *QmlApplication) ObjectChanged(stateObject *ethchain.StateObject) { + app.win.Call("onObjectChangeCb", ethpub.NewPStateObject(stateObject)) +} + +func (app *QmlApplication) StorageChanged(storageObject *ethchain.StorageState) { + app.win.Call("onStorageChangeCb", ethpub.NewPStorageState(storageObject)) +} + +// Getters +func (app *QmlApplication) Engine() *qml.Engine { + return app.engine +} +func (app *QmlApplication) Window() *qml.Window { + return app.win +} |