-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeb2Form.qml
More file actions
118 lines (104 loc) · 4.1 KB
/
Web2Form.qml
File metadata and controls
118 lines (104 loc) · 4.1 KB
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
import QtQuick 2.4
import QtQuick.Controls 1.1
import QtWebView 1.1
import QtQuick.Layouts 1.1
import QtQuick.Controls.Styles 1.2
Item {
property bool showProgress: webView.loading
&& Qt.platform.os !== "ios"
&& Qt.platform.os !== "winrt"
visible: true
x: 0
y: 0
width: initialWidth
height: initialHeight
// title: webView.title
// toolBar: ToolBar {
// id: navigationBar
// RowLayout {
// anchors.fill: parent
// spacing: 0
// ToolButton {
// id: backButton
// tooltip: qsTr("Back")
// iconSource: "images/left-32.png"
// onClicked: webView.goBack()
// enabled: webView.canGoBack
// Layout.preferredWidth: navigationBar.height
// style: ButtonStyle {
// background: Rectangle { color: "transparent" }
// }
// }
// ToolButton {
// id: forwardButton
// tooltip: qsTr("Forward")
// iconSource: "images/right-32.png"
// onClicked: webView.goForward()
// enabled: webView.canGoForward
// Layout.preferredWidth: navigationBar.height
// style: ButtonStyle {
// background: Rectangle { color: "transparent" }
// }
// }
// ToolButton {
// id: reloadButton
// tooltip: webView.loading ? qsTr("Stop"): qsTr("Refresh")
// iconSource: webView.loading ? "images/stop-32.png" : "images/refresh-32.png"
// onClicked: webView.loading ? webView.stop() : webView.reload()
// Layout.preferredWidth: navigationBar.height
// style: ButtonStyle {
// background: Rectangle { color: "transparent" }
// }
// }
// Item { Layout.preferredWidth: 5 }
// TextField {
// Layout.fillWidth: true
// id: urlField
// inputMethodHints: Qt.ImhUrlCharactersOnly | Qt.ImhPreferLowercase
// text: webView.url
// onAccepted: webView.url = utils.fromUserInput(text)
// ProgressBar {
// anchors.centerIn: parent
// style: LoadProgressStyle { }
// z: Qt.platform.os === "android" ? -1 : 1
// visible: showProgress
// minimumValue: 0
// maximumValue: 100
// value: webView.loadProgress == 100 ? 0 : webView.loadProgress
// }
// }
// Item { Layout.preferredWidth: 5 }
// ToolButton {
// id: goButton
// text: qsTr("Go")
// Layout.preferredWidth: navigationBar.height
// onClicked: {
// Qt.inputMethod.commit()
// Qt.inputMethod.hide()
// webView.url = utils.fromUserInput(urlField.text)
// }
// style: ButtonStyle {
// background: Rectangle { color: "transparent" }
// }
// }
// Item { Layout.preferredWidth: 10 }
// }
// }
// statusBar: StatusBar {
// id: statusBar
// visible: showProgress
// RowLayout {
// anchors.fill: parent
// Label { text: webView.loadProgress == 100 ? qsTr("Done") : qsTr("Loading: ") + webView.loadProgress + "%" }
// }
// }
WebView {
id: webView
anchors.fill: parent
url: initialUrl
onLoadingChanged: {
if (loadRequest.errorString)
console.error(loadRequest.errorString);
}
}
}