mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
279 lines
8.7 KiB
QML
279 lines
8.7 KiB
QML
import QtQuick 2.5
|
|
import controlsUit 1.0
|
|
import stylesUit 1.0
|
|
import "windows"
|
|
import "."
|
|
|
|
ScrollingWindow {
|
|
id: root
|
|
HifiConstants { id: hifi }
|
|
|
|
title: "Browser"
|
|
resizable: true
|
|
destroyOnHidden: true
|
|
width: 800
|
|
height: 600
|
|
property variant permissionsBar: {'securityOrigin':'none','feature':'none'}
|
|
property alias url: webview.url
|
|
property alias webView: webview
|
|
|
|
signal loadingChanged(int status)
|
|
|
|
x: 100
|
|
y: 100
|
|
|
|
Component.onCompleted: {
|
|
focus = true
|
|
shown = true
|
|
addressBar.text = webview.url
|
|
}
|
|
|
|
function setProfile(profile) {
|
|
webview.profile = profile;
|
|
}
|
|
|
|
function showPermissionsBar(){
|
|
permissionsContainer.visible=true;
|
|
}
|
|
|
|
function hidePermissionsBar(){
|
|
permissionsContainer.visible=false;
|
|
}
|
|
|
|
function allowPermissions(){
|
|
webview.grantFeaturePermission(permissionsBar.securityOrigin, permissionsBar.feature, true);
|
|
hidePermissionsBar();
|
|
}
|
|
|
|
function setAutoAdd(auto) {
|
|
desktop.setAutoAdd(auto);
|
|
}
|
|
|
|
function openExternalBrowser() {
|
|
Qt.openUrlExternally(addressBar.text);
|
|
root.shown = false;
|
|
root.windowClosed();
|
|
}
|
|
|
|
Item {
|
|
id:item
|
|
width: pane.contentWidth
|
|
implicitHeight: pane.scrollHeight
|
|
|
|
Row {
|
|
id: buttons
|
|
spacing: 4
|
|
anchors.top: parent.top
|
|
anchors.topMargin: 4
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 8
|
|
HiFiGlyphs {
|
|
id: back
|
|
enabled: webview.canGoBack
|
|
text: hifi.glyphs.backward
|
|
color: enabled ? (backMouseArea.containsMouse ? hifi.colors.blueHighlight : hifi.colors.faintGray) : hifi.colors.lightGray
|
|
size: 48
|
|
MouseArea {
|
|
id: backMouseArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onClicked: webview.goBack();
|
|
}
|
|
}
|
|
|
|
HiFiGlyphs {
|
|
id: forward
|
|
enabled: webview.canGoForward
|
|
text: hifi.glyphs.forward
|
|
color: enabled ? (forwardMouseArea.containsMouse ? hifi.colors.blueHighlight : hifi.colors.faintGray) : hifi.colors.lightGray
|
|
size: 48
|
|
MouseArea {
|
|
id: forwardMouseArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onClicked: webview.goForward();
|
|
}
|
|
}
|
|
|
|
HiFiGlyphs {
|
|
id: reload
|
|
enabled: url !== ""
|
|
text: webview.loading ? hifi.glyphs.close : hifi.glyphs.reload
|
|
color: enabled ? (reloadMouseArea.containsMouse ? hifi.colors.blueHighlight : hifi.colors.faintGray) : hifi.colors.lightGray
|
|
size: 48
|
|
MouseArea {
|
|
id: reloadMouseArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onClicked: webview.loading ? webview.stop() : webview.reload();
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
Item {
|
|
id: border
|
|
height: 48
|
|
anchors.top: parent.top
|
|
anchors.topMargin: 4
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: 8
|
|
anchors.left: buttons.right
|
|
anchors.leftMargin: 8
|
|
|
|
HiFiGlyphs {
|
|
id: externalBrowser
|
|
anchors.right: parent.right
|
|
anchors.top: parent.top
|
|
anchors.topMargin: 4
|
|
enabled: !HMD.active && url !== ""
|
|
font.family: "FontAwesome"
|
|
text: "\uf24d"
|
|
rotation: -90
|
|
color: enabled ? (externalBrowserMouseArea.containsMouse ? hifi.colors.blueHighlight : hifi.colors.faintGray) : hifi.colors.lightGray
|
|
size: 32
|
|
MouseArea {
|
|
id: externalBrowserMouseArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onClicked: openExternalBrowser();
|
|
}
|
|
}
|
|
|
|
Item {
|
|
id: barIcon
|
|
width: parent.height
|
|
height: parent.height
|
|
Image {
|
|
source: webview.loading ? "" : webview.icon
|
|
x: (parent.height - height) / 2
|
|
y: (parent.width - width) / 2
|
|
width: 28
|
|
height: 28
|
|
verticalAlignment: Image.AlignVCenter
|
|
horizontalAlignment: Image.AlignHCenter
|
|
}
|
|
}
|
|
|
|
TextField {
|
|
id: addressBar
|
|
anchors.right: externalBrowser.left
|
|
anchors.rightMargin: 32
|
|
anchors.left: barIcon.right
|
|
anchors.leftMargin: 0
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
focus: true
|
|
colorScheme: hifi.colorSchemes.dark
|
|
placeholderText: "Enter URL"
|
|
inputMethodHints: Qt.ImhUrlCharactersOnly
|
|
Component.onCompleted: ScriptDiscoveryService.scriptsModelFilter.filterRegExp = new RegExp("^.*$", "i")
|
|
Keys.onPressed: {
|
|
switch(event.key) {
|
|
case Qt.Key_Enter:
|
|
case Qt.Key_Return:
|
|
event.accepted = true
|
|
if (text.indexOf("http") !== 0) {
|
|
text = "http://" + text;
|
|
}
|
|
|
|
// Setting webiew.url directly doesn't add the URL to the navigation history.
|
|
//webview.url = text;
|
|
// The following works around this bug.
|
|
text = encodeURI(text);
|
|
text = text.replace(/;/g, "%3b"); // Prevent script injection.
|
|
text = text.replace(/'/g, "%25"); // ""
|
|
webview.runJavaScript("window.location='" + text + "'");
|
|
|
|
root.hidePermissionsBar();
|
|
root.keyboardRaised = false;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
Rectangle {
|
|
id:permissionsContainer
|
|
visible:false
|
|
color: "#000000"
|
|
width: parent.width
|
|
anchors.top: buttons.bottom
|
|
height:40
|
|
z:100
|
|
gradient: Gradient {
|
|
GradientStop { position: 0.0; color: "black" }
|
|
GradientStop { position: 1.0; color: "grey" }
|
|
}
|
|
|
|
RalewayLight {
|
|
id: permissionsInfo
|
|
anchors.right:permissionsRow.left
|
|
anchors.rightMargin: 32
|
|
anchors.topMargin:8
|
|
anchors.top:parent.top
|
|
text: "This site wants to use your microphone/camera"
|
|
size: 18
|
|
color: hifi.colors.white
|
|
}
|
|
|
|
Row {
|
|
id: permissionsRow
|
|
spacing: 4
|
|
anchors.top:parent.top
|
|
anchors.topMargin: 8
|
|
anchors.right: parent.right
|
|
visible: true
|
|
z:101
|
|
|
|
Button {
|
|
id:allow
|
|
text: "Allow"
|
|
color: hifi.buttons.blue
|
|
colorScheme: root.colorScheme
|
|
width: 120
|
|
enabled: true
|
|
onClicked: root.allowPermissions();
|
|
z:101
|
|
}
|
|
|
|
Button {
|
|
id:block
|
|
text: "Block"
|
|
color: hifi.buttons.red
|
|
colorScheme: root.colorScheme
|
|
width: 120
|
|
enabled: true
|
|
onClicked: root.hidePermissionsBar();
|
|
z:101
|
|
}
|
|
}
|
|
}
|
|
|
|
BrowserWebView {
|
|
id: webview
|
|
parentRoot: root
|
|
|
|
anchors.top: buttons.bottom
|
|
anchors.topMargin: 4
|
|
anchors.bottom: parent.bottom
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
}
|
|
|
|
} // item
|
|
|
|
|
|
Keys.onPressed: {
|
|
switch(event.key) {
|
|
case Qt.Key_L:
|
|
if (event.modifiers === Qt.ControlModifier) {
|
|
event.accepted = true
|
|
addressBar.selectAll()
|
|
addressBar.forceActiveFocus()
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
} // dialog
|