2014-07-01 22:13:50 +00:00
|
|
|
package main
|
2014-06-23 14:25:57 +00:00
|
|
|
|
|
|
|
import (
|
2014-08-14 22:24:14 +00:00
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
|
2014-06-23 14:25:57 +00:00
|
|
|
"github.com/ethereum/eth-go/ethchain"
|
2014-08-15 23:38:24 +00:00
|
|
|
"github.com/ethereum/eth-go/ethpipe"
|
2014-07-24 10:30:41 +00:00
|
|
|
"github.com/ethereum/eth-go/ethstate"
|
2014-06-23 14:25:57 +00:00
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
2014-08-15 11:27:43 +00:00
|
|
|
"gopkg.in/qml.v1"
|
2014-06-23 14:25:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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 {
|
2014-07-09 12:01:53 +00:00
|
|
|
path := string(app.path)
|
|
|
|
|
|
|
|
// For some reason for windows we get /c:/path/to/something, windows doesn't like the first slash but is fine with the others so we are removing it
|
2014-07-29 22:17:23 +00:00
|
|
|
if app.path[0] == '/' && runtime.GOOS == "windows" {
|
2014-07-09 12:01:53 +00:00
|
|
|
path = app.path[1:]
|
|
|
|
}
|
|
|
|
|
|
|
|
component, err := app.engine.LoadFile(path)
|
2014-06-23 14:25:57 +00:00
|
|
|
if err != nil {
|
2014-06-25 17:28:38 +00:00
|
|
|
logger.Warnln(err)
|
2014-06-23 14:25:57 +00:00
|
|
|
}
|
|
|
|
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) {
|
2014-08-15 23:38:24 +00:00
|
|
|
pblock := ðpipe.JSBlock{Number: int(block.BlockInfo().Number), Hash: ethutil.Bytes2Hex(block.Hash())}
|
2014-06-23 14:25:57 +00:00
|
|
|
app.win.Call("onNewBlockCb", pblock)
|
|
|
|
}
|
|
|
|
|
2014-08-14 22:24:14 +00:00
|
|
|
func (self *QmlApplication) Messages(msgs ethstate.Messages, id string) {
|
|
|
|
fmt.Println("IMPLEMENT QML APPLICATION MESSAGES METHOD")
|
|
|
|
}
|
|
|
|
|
2014-06-23 14:25:57 +00:00
|
|
|
// Getters
|
|
|
|
func (app *QmlApplication) Engine() *qml.Engine {
|
|
|
|
return app.engine
|
|
|
|
}
|
|
|
|
func (app *QmlApplication) Window() *qml.Window {
|
|
|
|
return app.win
|
|
|
|
}
|
2014-08-17 10:41:23 +00:00
|
|
|
|
|
|
|
func (app *QmlApplication) Post(data string, s int) {}
|