2014-10-23 06:48:53 -07:00
|
|
|
// Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved.
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
// MA 02110-1301 USA
|
|
|
|
|
2014-07-01 15:13:50 -07:00
|
|
|
package main
|
2014-06-23 07:25:57 -07:00
|
|
|
|
|
|
|
import (
|
2014-08-14 15:24:14 -07:00
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
|
2014-10-31 02:59:17 -07:00
|
|
|
"github.com/ethereum/go-ethereum/chain"
|
2014-10-23 06:01:27 -07:00
|
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
2014-10-31 06:43:14 -07:00
|
|
|
"github.com/ethereum/go-ethereum/state"
|
2014-10-31 06:30:08 -07:00
|
|
|
"github.com/ethereum/go-ethereum/xeth"
|
2014-08-15 04:27:43 -07:00
|
|
|
"gopkg.in/qml.v1"
|
2014-06-23 07:25:57 -07: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 05:01:53 -07: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 15:17:23 -07:00
|
|
|
if app.path[0] == '/' && runtime.GOOS == "windows" {
|
2014-07-09 05:01:53 -07:00
|
|
|
path = app.path[1:]
|
|
|
|
}
|
|
|
|
|
|
|
|
component, err := app.engine.LoadFile(path)
|
2014-06-23 07:25:57 -07:00
|
|
|
if err != nil {
|
2014-10-31 04:56:05 -07:00
|
|
|
guilogger.Warnln(err)
|
2014-06-23 07:25:57 -07:00
|
|
|
}
|
|
|
|
app.win = component.CreateWindow(nil)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *QmlApplication) Destroy() {
|
|
|
|
app.engine.Destroy()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *QmlApplication) NewWatcher(quitChan chan bool) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Events
|
2014-10-31 02:59:17 -07:00
|
|
|
func (app *QmlApplication) NewBlock(block *chain.Block) {
|
2014-10-31 06:30:08 -07:00
|
|
|
pblock := &xeth.JSBlock{Number: int(block.BlockInfo().Number), Hash: ethutil.Bytes2Hex(block.Hash())}
|
2014-06-23 07:25:57 -07:00
|
|
|
app.win.Call("onNewBlockCb", pblock)
|
|
|
|
}
|
|
|
|
|
2014-10-31 06:43:14 -07:00
|
|
|
func (self *QmlApplication) Messages(msgs state.Messages, id string) {
|
2014-08-14 15:24:14 -07:00
|
|
|
fmt.Println("IMPLEMENT QML APPLICATION MESSAGES METHOD")
|
|
|
|
}
|
|
|
|
|
2014-06-23 07:25:57 -07:00
|
|
|
// Getters
|
|
|
|
func (app *QmlApplication) Engine() *qml.Engine {
|
|
|
|
return app.engine
|
|
|
|
}
|
|
|
|
func (app *QmlApplication) Window() *qml.Window {
|
|
|
|
return app.win
|
|
|
|
}
|
2014-08-17 03:41:23 -07:00
|
|
|
|
|
|
|
func (app *QmlApplication) Post(data string, s int) {}
|