aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/ui/ui_lib.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-03-27 18:14:04 +0800
committerzelig <viktor.tron@gmail.com>2014-03-27 18:14:04 +0800
commit49c710bf442940b3abc68123964b56b211b92c12 (patch)
tree9434b3684195dcf497f613fbc86d43a60602d532 /ethereal/ui/ui_lib.go
parent642630db15a793cf0a0f7fbd827daee364df5423 (diff)
downloadgo-tangerine-49c710bf442940b3abc68123964b56b211b92c12.tar
go-tangerine-49c710bf442940b3abc68123964b56b211b92c12.tar.gz
go-tangerine-49c710bf442940b3abc68123964b56b211b92c12.tar.bz2
go-tangerine-49c710bf442940b3abc68123964b56b211b92c12.tar.lz
go-tangerine-49c710bf442940b3abc68123964b56b211b92c12.tar.xz
go-tangerine-49c710bf442940b3abc68123964b56b211b92c12.tar.zst
go-tangerine-49c710bf442940b3abc68123964b56b211b92c12.zip
assetPath configurable on command line for ethereal GUI
- solves the problem of non-standard installs - add AssetPath to config as string var - introduced UiLib constructor which falls back to defaultAssetPath (earlier behaviour) if no assetPath is set - defaultAssetPath now internal concern of UiLib - gui.Start(assetPath) argument passed from ethereal main() as set Init() in config.go - informative log message if wallet.qml fails to open
Diffstat (limited to 'ethereal/ui/ui_lib.go')
-rw-r--r--ethereal/ui/ui_lib.go14
1 files changed, 11 insertions, 3 deletions
diff --git a/ethereal/ui/ui_lib.go b/ethereal/ui/ui_lib.go
index 3997191fa..4441a7238 100644
--- a/ethereal/ui/ui_lib.go
+++ b/ethereal/ui/ui_lib.go
@@ -16,6 +16,14 @@ type UiLib struct {
engine *qml.Engine
eth *eth.Ethereum
connected bool
+ assetPath string
+}
+
+func NewUiLib(engine *qml.Engine, eth *eth.Ethereum, assetPath string) *UiLib {
+ if assetPath == "" {
+ assetPath = DefaultAssetPath()
+ }
+ return &UiLib{engine: engine, eth: eth, assetPath: assetPath}
}
// Opens a QML file (external application)
@@ -45,10 +53,10 @@ func (ui *UiLib) ConnectToPeer(addr string) {
}
func (ui *UiLib) AssetPath(p string) string {
- return AssetPath(p)
+ return path.Join(ui.assetPath, p)
}
-func AssetPath(p string) string {
+func DefaultAssetPath() string {
var base string
// If the current working directory is the go-ethereum dir
@@ -72,5 +80,5 @@ func AssetPath(p string) string {
}
}
- return path.Join(base, p)
+ return base
}