| 
									
										
										
										
											2014-10-23 15:48:53 +02: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-02 00:13:50 +02:00
										 |  |  | package main | 
					
						
							| 
									
										
										
										
											2014-06-23 16:25:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2014-08-15 00:24:14 +02:00
										 |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2014-10-23 15:01:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/ethutil" | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/state" | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/xeth" | 
					
						
							| 
									
										
										
										
											2014-08-15 13:27:43 +02:00
										 |  |  | 	"gopkg.in/qml.v1" | 
					
						
							| 
									
										
										
										
											2014-06-23 16:25:57 +02: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 14:01:53 +02: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-30 00:17:23 +02:00
										 |  |  | 	if app.path[0] == '/' && runtime.GOOS == "windows" { | 
					
						
							| 
									
										
										
										
											2014-07-09 14:01:53 +02:00
										 |  |  | 		path = app.path[1:] | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	component, err := app.engine.LoadFile(path) | 
					
						
							| 
									
										
										
										
											2014-06-23 16:25:57 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2014-10-31 12:56:05 +01:00
										 |  |  | 		guilogger.Warnln(err) | 
					
						
							| 
									
										
										
										
											2014-06-23 16:25:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	app.win = component.CreateWindow(nil) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (app *QmlApplication) Destroy() { | 
					
						
							|  |  |  | 	app.engine.Destroy() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (app *QmlApplication) NewWatcher(quitChan chan bool) { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Events | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | func (app *QmlApplication) NewBlock(block *types.Block) { | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | 	pblock := &xeth.JSBlock{Number: int(block.BlockInfo().Number), Hash: ethutil.Bytes2Hex(block.Hash())} | 
					
						
							| 
									
										
										
										
											2014-06-23 16:25:57 +02:00
										 |  |  | 	app.win.Call("onNewBlockCb", pblock) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | func (self *QmlApplication) Messages(msgs state.Messages, id string) { | 
					
						
							| 
									
										
										
										
											2014-08-15 00:24:14 +02:00
										 |  |  | 	fmt.Println("IMPLEMENT QML APPLICATION MESSAGES METHOD") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 16:25:57 +02:00
										 |  |  | // Getters | 
					
						
							|  |  |  | func (app *QmlApplication) Engine() *qml.Engine { | 
					
						
							|  |  |  | 	return app.engine | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | func (app *QmlApplication) Window() *qml.Window { | 
					
						
							|  |  |  | 	return app.win | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-08-17 12:41:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | func (app *QmlApplication) Post(data string, s int) {} |