blob: f647c62607ae7e05a3c833ef20c10213a9e571f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Controls
import QtWebView
import QtQuick.Layouts
ApplicationWindow {
id: window
visible: true
title: webView.title
menuBar: ToolBar {
id: navigationBar
RowLayout {
anchors.fill: parent
spacing: 0
ToolButton {
id: backButton
icon.source: "qrc:/left-32.png"
onClicked: webView.goBack()
enabled: webView.canGoBack
Layout.preferredWidth: navigationBar.height
}
ToolButton {
id: forwardButton
icon.source: "qrc:/right-32.png"
onClicked: webView.goForward()
enabled: webView.canGoForward
Layout.preferredWidth: navigationBar.height
}
ToolButton {
id: reloadButton
icon.source: webView.loading ? "qrc:/stop-32.png" : "qrc:/refresh-32.png"
onClicked: webView.loading ? webView.stop() : webView.reload()
Layout.preferredWidth: navigationBar.height
}
Item { Layout.preferredWidth: 5 }
TextField {
Layout.fillWidth: true
id: urlField
inputMethodHints: Qt.ImhUrlCharactersOnly | Qt.ImhPreferLowercase
text: webView.url
onAccepted: webView.url = utils.fromUserInput(text)
}
Item { Layout.preferredWidth: 5 }
ToolButton {
id: goButton
text: qsTr("Go")
onClicked: {
Qt.inputMethod.commit()
Qt.inputMethod.hide()
webView.url = utils.fromUserInput(urlField.text)
}
}
ToolButton {
id: settingsButton
icon.source: "qrc:/settings-32.png"
onClicked: {
settingsDrawer.width = (settingsDrawer.width > 0) ? 0 : window.width * 1/4
}
Layout.preferredWidth: navigationBar.height
}
Item { Layout.preferredWidth: 10 }
}
ProgressBar {
id: progress
anchors {
left: parent.left
top: parent.bottom
right: parent.right
leftMargin: parent.leftMargin
rightMargin: parent.rightMargin
}
height:3
z: Qt.platform.os === "android" ? -1 : -2
background: Item {}
visible: Qt.platform.os !== "ios" && Qt.platform.os !== "winrt"
from: 0
to: 100
value: webView.loadProgress < 100 ? webView.loadProgress : 0
}
}
Item {
id: settingsDrawer
anchors.right: parent.right
ColumnLayout {
Label {
text: "JavaScript"
}
CheckBox {
id: javaScriptEnabledCheckBox
text: "enabled"
onCheckStateChanged: webView.settings.javaScriptEnabled = (checkState == Qt.Checked)
}
Label {
text: "Local storage"
}
CheckBox {
id: localStorageEnabledCheckBox
text: "enabled"
onCheckStateChanged: webView.settings.localStorageEnabled = (checkState == Qt.Checked)
}
Label {
text: "Allow file access"
}
CheckBox {
id: allowFileAccessEnabledCheckBox
text: "enabled"
onCheckStateChanged: webView.settings.allowFileAccess = (checkState == Qt.Checked)
}
Label {
text: "Local content can access file URLs"
}
CheckBox {
id: localContentCanAccessFileUrlsEnabledCheckBox
text: "enabled"
onCheckStateChanged: webView.settings.localContentCanAccessFileUrls = (checkState == Qt.Checked)
}
}
}
WebView {
id: webView
url: initialUrl
anchors.right: settingsDrawer.left
anchors.left: parent.left
height: parent.height
onLoadingChanged: function(loadRequest) {
if (loadRequest.errorString)
console.error(loadRequest.errorString);
}
Component.onCompleted: {
javaScriptEnabledCheckBox.checkState = settings.javaScriptEnabled ? Qt.Checked : Qt.Unchecked
localStorageEnabledCheckBox.checkState = settings.localStorageEnabled ? Qt.Checked : Qt.Unchecked
allowFileAccessEnabledCheckBox.checkState = settings.allowFileAccess ? Qt.Checked : Qt.Unchecked
localContentCanAccessFileUrlsEnabledCheckBox.checkState = settings.localContentCanAccessFileUrls ? Qt.Checked : Qt.Unchecked
}
}
}
|