diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-15 06:24:14 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-15 06:24:14 +0800 |
commit | aadc5be3ff9e3818e41d83910b9730e5f1af042e (patch) | |
tree | 3dc980f34391257eb2a0c1be3a042e99f39489f3 /ethereal/qml_container.go | |
parent | 1fd69e956949671806b23b7ec1feec4f6c416a81 (diff) | |
download | go-tangerine-aadc5be3ff9e3818e41d83910b9730e5f1af042e.tar go-tangerine-aadc5be3ff9e3818e41d83910b9730e5f1af042e.tar.gz go-tangerine-aadc5be3ff9e3818e41d83910b9730e5f1af042e.tar.bz2 go-tangerine-aadc5be3ff9e3818e41d83910b9730e5f1af042e.tar.lz go-tangerine-aadc5be3ff9e3818e41d83910b9730e5f1af042e.tar.xz go-tangerine-aadc5be3ff9e3818e41d83910b9730e5f1af042e.tar.zst go-tangerine-aadc5be3ff9e3818e41d83910b9730e5f1af042e.zip |
Implemented new watch
* Old watch methods have been removed
* Implemented new callback handlers for onWatchCb
* added new Filter JS object
Diffstat (limited to 'ethereal/qml_container.go')
-rw-r--r-- | ethereal/qml_container.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ethereal/qml_container.go b/ethereal/qml_container.go index 53ff13c2f..45a6c0327 100644 --- a/ethereal/qml_container.go +++ b/ethereal/qml_container.go @@ -1,12 +1,14 @@ package main import ( + "fmt" + "runtime" + "github.com/ethereum/eth-go/ethchain" "github.com/ethereum/eth-go/ethpub" "github.com/ethereum/eth-go/ethstate" "github.com/ethereum/eth-go/ethutil" "github.com/go-qml/qml" - "runtime" ) type QmlApplication struct { @@ -59,6 +61,10 @@ func (app *QmlApplication) StorageChanged(storageObject *ethstate.StorageState) app.win.Call("onStorageChangeCb", ethpub.NewPStorageState(storageObject)) } +func (self *QmlApplication) Messages(msgs ethstate.Messages, id string) { + fmt.Println("IMPLEMENT QML APPLICATION MESSAGES METHOD") +} + // Getters func (app *QmlApplication) Engine() *qml.Engine { return app.engine |