]> rtime.felk.cvut.cz Git - coffee/mtbrowser.git/blobdiff - main.qml
no uppercase
[coffee/mtbrowser.git] / main.qml
index 24091042f3a91cf7cabf39820636b57d6209a29b..c07e693b0c1d1e6fa1428382bb55c7371087a126 100644 (file)
--- a/main.qml
+++ b/main.qml
@@ -52,12 +52,10 @@ import QtQuick 2.0
 import QtQuick.Window 2.0
 import QtWebEngine 1.0
 import QtQuick.VirtualKeyboard 2.1
-import QtQuick.Controls 2.3
+import QtQuick.Controls 2.2
 import QtQuick.Layouts 1.3
 
 Window {
-    width: 1920
-    height: 1200
     visible: true
 
     ToolBar {
@@ -67,43 +65,57 @@ Window {
         anchors.right: parent.right
 
         RowLayout {
+            anchors.fill: parent
 
             ToolButton {
-                text: qsTr("<")
+                text: qsTr("")
                 onClicked: webView.goBack()
-                anchors.left: parent.left
+                enabled: webView.canGoBack
             }
 
             ToolButton {
-                text: qsTr(">")
+                text: qsTr("")
                 onClicked: webView.goForward()
+                enabled: webView.canGoForward
             }
 
             TextField {
+                function search() {
+                    if (length > 0) {
+                        webView.url = "https://www.google.com/search?ie=UTF-8&q=" + text
+                        clear()
+                    }
+                }
+
                 id: urlText
-                text: ""
+                Layout.fillWidth: true
+                selectByMouse: true
+                onEditingFinished: search()
+                inputMethodHints: Qt.ImhNoAutoUppercase
             }
 
             ToolButton {
-                text: qsTr("Reload")
+                id: reload
+                text: qsTr("↻")
                 onClicked: webView.reload()
             }
 
             ToolButton {
-                text: qsTr("Enter")
-                onClicked: webView.url = urlText.text
+                id: stop
+                text: qsTr("×")
+                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 +125,3 @@ Window {
         anchors.right: parent.right
     }
 }
-