Compare commits

...

5 Commits
0.3.0 ... 0.3.1

Author SHA1 Message Date
893da20ead Merge pull request #21 from jarradh/master
Search bin directory for qml
2014-02-28 16:46:34 +01:00
aa7c53b7ef Search bin directory for qml 2014-02-28 16:41:30 +01:00
a9d89d1f59 Merge branch 'develop' 2014-02-28 13:08:55 +01:00
f6a9aa4110 fixed about window 2014-02-28 13:08:41 +01:00
b72d3528bf Merge branch 'release/0.3.0' into develop 2014-02-28 12:20:59 +01:00
3 changed files with 25 additions and 6 deletions

BIN
facet.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -9,6 +9,8 @@ import (
"github.com/ethereum/eth-go/ethdb"
"github.com/ethereum/eth-go/ethutil"
"github.com/niemeyer/qml"
"bitbucket.org/kardianos/osext"
"path/filepath"
"math/big"
"strings"
)
@ -84,12 +86,16 @@ func (ui *Gui) Start() {
ethutil.Config.Log.Infoln("[GUI] Starting GUI")
// Create a new QML engine
ui.engine = qml.NewEngine()
// Get Binary Directory
exedir , _ := osext.ExecutableFolder()
// Load the main QML interface
component, err := ui.engine.LoadFile("wallet.qml")
component, err := ui.engine.LoadFile(filepath.Join(exedir, "wallet.qml"))
if err != nil {
panic(err)
}
ui.engine.LoadFile("transactions.qml")
ui.engine.LoadFile(filepath.Join(exedir, "transactions.qml"))
ui.win = component.CreateWindow(nil)

View File

@ -321,14 +321,27 @@ ApplicationWindow {
id: aboutWin
visible: false
title: "About"
minimumWidth: 300
maximumWidth: 300
minimumWidth: 350
maximumWidth: 350
maximumHeight: 200
minimumHeight: 200
Image {
id: aboutIcon
height: 150
width: 150
fillMode: Image.PreserveAspectFit
smooth: true
source: "facet.png"
x: 10
y: 10
}
Text {
font.pointSize: 18
text: "Eth Go"
anchors.left: aboutIcon.right
anchors.leftMargin: 10
font.pointSize: 12
text: "<h2>Ethereum(Go)</h2><br><h3>Development</h3>Jeffrey Wilcke<br><h3>Binary Distribution</h3>Jarrad Hope<br>"
}
}