Round one HTML external applications using QML(Qt5) WebKit2 w/o native bindings

This commit is contained in:
obscuren
2014-04-21 00:57:57 +02:00
parent a0c97b663d
commit 6d5d539a85
2 changed files with 22 additions and 1 deletions

View File

@ -51,6 +51,22 @@ func (ui *UiLib) Open(path string) {
}()
}
func (ui *UiLib) OpenHtml(path string) {
component, err := ui.engine.LoadFile(ui.AssetPath("qml/webapp.qml"))
if err != nil {
ethutil.Config.Log.Debugln(err)
return
}
win := component.CreateWindow(nil)
win.Set("url", path)
go func() {
win.Show()
win.Wait()
}()
}
func (ui *UiLib) Connect(button qml.Object) {
if !ui.connected {
ui.eth.Start()