diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-25 23:20:26 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-25 23:20:26 +0800 |
commit | 08de13a57b4a59fc4a8ccf9e707ede57cc380a0c (patch) | |
tree | 94bd0dc4887284c6e0ae57a7b40825dae52eee0e /ethereal/ui/qml_app.go | |
parent | 6f09a3e8200ba2eeeeb296141d6644d04078a9c4 (diff) | |
parent | 9654b809120d1cc3c53ffe268fe47869ef0dc0a8 (diff) | |
download | dexon-08de13a57b4a59fc4a8ccf9e707ede57cc380a0c.tar dexon-08de13a57b4a59fc4a8ccf9e707ede57cc380a0c.tar.gz dexon-08de13a57b4a59fc4a8ccf9e707ede57cc380a0c.tar.bz2 dexon-08de13a57b4a59fc4a8ccf9e707ede57cc380a0c.tar.lz dexon-08de13a57b4a59fc4a8ccf9e707ede57cc380a0c.tar.xz dexon-08de13a57b4a59fc4a8ccf9e707ede57cc380a0c.tar.zst dexon-08de13a57b4a59fc4a8ccf9e707ede57cc380a0c.zip |
merge upstream
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..d47751616 --- /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 { + ethutil.Config.Log.Debugln(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 +} |