diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-16 22:36:46 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-16 22:36:46 +0800 |
commit | 15ded0bea9600f489d7f9fb5430c26a84a021bd2 (patch) | |
tree | c1a9ea4622a2062d0d4b904b7ee67fb620e101d7 /ethereal/assets/qml/webapp.qml | |
parent | b89d9f6e90a561725899dd9bffb670efbf766386 (diff) | |
download | dexon-15ded0bea9600f489d7f9fb5430c26a84a021bd2.tar.gz dexon-15ded0bea9600f489d7f9fb5430c26a84a021bd2.tar.zst dexon-15ded0bea9600f489d7f9fb5430c26a84a021bd2.zip |
Integrate web app in to the main client
Diffstat (limited to 'ethereal/assets/qml/webapp.qml')
-rw-r--r-- | ethereal/assets/qml/webapp.qml | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/ethereal/assets/qml/webapp.qml b/ethereal/assets/qml/webapp.qml index ca6860036..f1b1842ea 100644 --- a/ethereal/assets/qml/webapp.qml +++ b/ethereal/assets/qml/webapp.qml @@ -7,16 +7,24 @@ import QtQuick.Layouts 1.0; import QtQuick.Window 2.1; import Ethereum 1.0 -ApplicationWindow { +//ApplicationWindow { +Rectangle { id: window - title: "Ethereum" - width: 1000 - height: 800 - minimumHeight: 300 + property var title: "Browser" + property var iconSource: "../browser.png" + property var menuItem + + //width: 1000 + //height: 800 + //minimumHeight: 300 property alias url: webview.url property alias webView: webview + Component.onCompleted: { + webview.url = "http://etherian.io" + } + Item { objectName: "root" id: root @@ -53,6 +61,7 @@ ApplicationWindow { leftMargin: 5 rightMargin: 5 } + text: "http://etherian.io" id: uriNav y: parent.height / 2 - this.height / 2 |