mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 11:33:30 +02:00
81 lines
2.1 KiB
QML
81 lines
2.1 KiB
QML
//
|
|
// QmlWebWindow.qml
|
|
//
|
|
// Created by Bradley Austin Davis on 17 Dec 2015
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
import QtQuick 2.5
|
|
import QtWebView 1.1
|
|
import QtWebChannel 1.0
|
|
|
|
import "windows" as Windows
|
|
import controlsUit 1.0 as Controls
|
|
import stylesUit 1.0
|
|
|
|
Windows.ScrollingWindow {
|
|
id: root
|
|
HifiConstants { id: hifi }
|
|
title: "WebWindow"
|
|
resizable: true
|
|
shown: false
|
|
// Don't destroy on close... otherwise the JS/C++ will have a dangling pointer
|
|
destroyOnCloseButton: false
|
|
property alias source: webview.url
|
|
property alias scriptUrl: webview.userScriptUrl
|
|
|
|
// This is for JS/QML communication, which is unused in a WebWindow,
|
|
// but not having this here results in spurious warnings about a
|
|
// missing signal
|
|
signal sendToScript(var message);
|
|
|
|
signal moved(vector2d position);
|
|
signal resized(size size);
|
|
|
|
function notifyMoved() {
|
|
moved(Qt.vector2d(x, y));
|
|
}
|
|
|
|
function notifyResized() {
|
|
resized(Qt.size(width, height));
|
|
}
|
|
|
|
onXChanged: notifyMoved();
|
|
onYChanged: notifyMoved();
|
|
|
|
onWidthChanged: notifyResized();
|
|
onHeightChanged: notifyResized();
|
|
|
|
onShownChanged: {
|
|
keyboardEnabled = HMD.active;
|
|
}
|
|
|
|
Item {
|
|
width: pane.contentWidth
|
|
implicitHeight: pane.scrollHeight
|
|
|
|
Controls.WebView {
|
|
id: webview
|
|
url: "about:blank"
|
|
anchors.fill: parent
|
|
focus: true
|
|
|
|
property string userScriptUrl: ""
|
|
|
|
function onWebEventReceived(event) {
|
|
if (event.slice(0, 17) === "CLARA.IO DOWNLOAD") {
|
|
ApplicationInterface.addAssetToWorldFromURL(event.slice(18));
|
|
}
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
webChannel.registerObject("eventBridge", eventBridge);
|
|
webChannel.registerObject("eventBridgeWrapper", eventBridgeWrapper);
|
|
eventBridge.webEventReceived.connect(onWebEventReceived);
|
|
}
|
|
}
|
|
}
|
|
}
|