Commit 4dc5855d authored by obscuren's avatar obscuren

Regular browser option added

parent a915ba17
<!doctype>
<html>
<head>
<title>Ethereum</title>
<style type="text/css">
h1 {
text-align: center;
font-family: Courier;
font-size: 50pt;
margin-top: 25%
}
</style>
</head>
<body>
<h1>Ethereum</h1>
<!-- ĐΞV --!>
</body>
</html>
......@@ -27,6 +27,11 @@ ApplicationWindow {
onTriggered: openAppDialog.open()
}
MenuItem {
text: "Browser"
onTriggered: ui.openBrowser()
}
MenuSeparator {}
MenuItem {
......
package main
import (
"path"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethutil"
"github.com/go-qml/qml"
"path"
)
type memAddr struct {
......@@ -42,6 +43,10 @@ func (ui *UiLib) OpenHtml(path string) {
go app.run()
}
func (ui *UiLib) OpenBrowser() {
ui.OpenHtml("file://" + ui.AssetPath("ext/home.html"))
}
func (ui *UiLib) Muted(content string) {
component, err := ui.engine.LoadFile(ui.AssetPath("qml/muted.qml"))
if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment