]> rtime.felk.cvut.cz Git - coffee/mtbrowser.git/blobdiff - main.qml
lvds!
[coffee/mtbrowser.git] / main.qml
index 8ad5d3a0f396b3f24daf2c5c62dba6d7eaf42cec..7c85ba5db4965b1f2ac9185f78d95eee55c2ea90 100644 (file)
--- a/main.qml
+++ b/main.qml
@@ -56,8 +56,6 @@ import QtQuick.Controls 2.2
 import QtQuick.Layouts 1.3
 
 Window {
-    width: 1920
-    height: 1200
     visible: true
 
     ToolBar {
@@ -67,43 +65,76 @@ Window {
         anchors.right: parent.right
 
         RowLayout {
+            anchors.fill: parent
 
             ToolButton {
-                text: qsTr("<")
+                text: "←"
                 onClicked: webView.goBack()
-                anchors.left: parent.left
+                enabled: webView.canGoBack
             }
 
             ToolButton {
-                text: qsTr(">")
+                text: "→"
                 onClicked: webView.goForward()
+                enabled: webView.canGoForward
             }
 
+
             TextField {
+                function go_to() {
+                    if (length > 0) {
+                        webView.url = text
+                        clear()
+                    }
+                }
+
                 id: urlText
-                text: ""
+                Layout.fillWidth: true
+                selectByMouse: true
+                placeholderText: "URL"
+                onEditingFinished: go_to()
+                inputMethodHints: Qt.ImhNoAutoUppercase
+            }
+
+            TextField {
+                function search() {
+                    if (length > 0) {
+                        webView.url = "https://www.google.com/search?ie=UTF-8&q=" + text
+                        clear()
+                    }
+                }
+
+                id: searchText
+                Layout.fillWidth: true
+                selectByMouse: true
+                placeholderText: "Google"
+                onEditingFinished: search()
+                inputMethodHints: Qt.ImhNoAutoUppercase
             }
 
             ToolButton {
-                text: qsTr("Reload")
+                id: reload
+                text: "↻"
                 onClicked: webView.reload()
             }
 
             ToolButton {
-                text: qsTr("Enter")
-                onClicked: webView.url = urlText.text
+                id: stop
+                text: "×"
+                onClicked: webView.url = "http://localhost/"
             }
         }
     }
 
     WebEngineView {
         id: webView
-        url: "https://google.cz/"
+        url: "http://localhost/"
         anchors.left: parent.left
         anchors.top: toolBar.bottom
         anchors.right: parent.right
         anchors.bottom: inputPanel.top
-        onUrlChanged: urlText.text = webView.url
+        //onUrlChanged: urlText.text = webView.url
+
     }
 
     InputPanel {
@@ -113,4 +144,3 @@ Window {
         anchors.right: parent.right
     }
 }
-