mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 18:12:24 +02:00
63 lines
1.5 KiB
QML
63 lines
1.5 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 "windows" as Windows
|
|
import "."
|
|
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
|
|
|
|
QmlWebWindowView {
|
|
id: webview
|
|
}
|
|
}
|
|
}
|