diff options
author | obscuren <geffobscura@gmail.com> | 2014-07-02 06:13:50 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-07-02 06:13:50 +0800 |
commit | c4f9151c67b1481490978a9dca0599b3e92680d5 (patch) | |
tree | f02199cf5a2f87595937c5f8c94bda343347fa9f /ethereal/qml_container.go | |
parent | 283532137713d20ca82d264bd105cf7cb0e47b65 (diff) | |
download | go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.gz go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.bz2 go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.lz go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.xz go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.zst go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.zip |
Moved files
Diffstat (limited to 'ethereal/qml_container.go')
-rw-r--r-- | ethereal/qml_container.go | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/ethereal/qml_container.go b/ethereal/qml_container.go new file mode 100644 index 000000000..a8ce1cb75 --- /dev/null +++ b/ethereal/qml_container.go @@ -0,0 +1,59 @@ +package main + +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.Bytes2Hex(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 +} |