mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 11:56:17 +02:00
177 lines
4.9 KiB
QML
177 lines
4.9 KiB
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 1.4
|
|
import QtWebEngine 1.1
|
|
import QtWebChannel 1.0
|
|
import Qt.labs.settings 1.0
|
|
|
|
import "windows" as Windows
|
|
import "controls" as Controls
|
|
|
|
Windows.Window {
|
|
id: toolWindow
|
|
resizable: true
|
|
objectName: "ToolWindow"
|
|
destroyOnCloseButton: false
|
|
destroyOnInvisible: false
|
|
closable: true
|
|
visible: false
|
|
width: 384; height: 640;
|
|
title: "Tools"
|
|
property alias tabView: tabView
|
|
onParentChanged: {
|
|
if (parent) {
|
|
x = 120;
|
|
y = 120;
|
|
}
|
|
}
|
|
|
|
Settings {
|
|
category: "ToolWindow.Position"
|
|
property alias x: toolWindow.x
|
|
property alias y: toolWindow.y
|
|
}
|
|
|
|
TabView {
|
|
anchors.fill: parent
|
|
id: tabView;
|
|
Repeater {
|
|
model: 4
|
|
Tab {
|
|
// Force loading of the content even if the tab is not visible
|
|
// (required for letting the C++ code access the webview)
|
|
active: true
|
|
enabled: false
|
|
property string originalUrl: "";
|
|
|
|
Controls.WebView {
|
|
id: webView;
|
|
anchors.fill: parent
|
|
enabled: false
|
|
property alias eventBridgeWrapper: eventBridgeWrapper
|
|
|
|
QtObject {
|
|
id: eventBridgeWrapper
|
|
WebChannel.id: "eventBridgeWrapper"
|
|
property var eventBridge;
|
|
}
|
|
|
|
webChannel.registeredObjects: [eventBridgeWrapper]
|
|
onEnabledChanged: toolWindow.updateVisiblity();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function updateVisiblity() {
|
|
for (var i = 0; i < tabView.count; ++i) {
|
|
if (tabView.getTab(i).enabled) {
|
|
return;
|
|
}
|
|
}
|
|
visible = false;
|
|
}
|
|
|
|
function findIndexForUrl(source) {
|
|
for (var i = 0; i < tabView.count; ++i) {
|
|
var tab = tabView.getTab(i);
|
|
if (tab.originalUrl === source) {
|
|
return i;
|
|
}
|
|
}
|
|
console.warn("Could not find tab for " + source);
|
|
return -1;
|
|
}
|
|
|
|
function findTabForUrl(source) {
|
|
var index = findIndexForUrl(source);
|
|
if (index < 0) {
|
|
return;
|
|
}
|
|
return tabView.getTab(index);
|
|
}
|
|
|
|
function showTabForUrl(source, newVisible) {
|
|
var index = findIndexForUrl(source);
|
|
if (index < 0) {
|
|
return;
|
|
}
|
|
|
|
var tab = tabView.getTab(index);
|
|
if (newVisible) {
|
|
toolWindow.visible = true
|
|
tab.enabled = true
|
|
} else {
|
|
tab.enabled = false;
|
|
updateVisiblity();
|
|
}
|
|
}
|
|
|
|
function findFreeTab() {
|
|
for (var i = 0; i < tabView.count; ++i) {
|
|
var tab = tabView.getTab(i);
|
|
if (tab && (!tab.originalUrl || tab.originalUrl === "")) {
|
|
return i;
|
|
}
|
|
}
|
|
console.warn("Could not find free tab");
|
|
return -1;
|
|
}
|
|
|
|
function removeTabForUrl(source) {
|
|
var index = findIndexForUrl(source);
|
|
if (index < 0) {
|
|
return;
|
|
}
|
|
|
|
var tab = tabView.getTab(index);
|
|
tab.title = "";
|
|
tab.enabled = false;
|
|
tab.originalUrl = "";
|
|
tab.item.url = "about:blank";
|
|
tab.item.enabled = false;
|
|
}
|
|
|
|
function addWebTab(properties) {
|
|
if (!properties.source) {
|
|
console.warn("Attempted to open Web Tool Pane without URL");
|
|
return;
|
|
}
|
|
|
|
var existingTabIndex = findIndexForUrl(properties.source);
|
|
if (existingTabIndex >= 0) {
|
|
console.log("Existing tab " + existingTabIndex + " found with URL " + properties.source);
|
|
var tab = tabView.getTab(existingTabIndex);
|
|
return tab.item;
|
|
}
|
|
|
|
var freeTabIndex = findFreeTab();
|
|
if (freeTabIndex === -1) {
|
|
console.warn("Unable to add new tab");
|
|
return;
|
|
}
|
|
|
|
if (properties.width) {
|
|
tabView.width = Math.min(Math.max(tabView.width, properties.width), toolWindow.maxSize.x);
|
|
}
|
|
|
|
if (properties.height) {
|
|
tabView.height = Math.min(Math.max(tabView.height, properties.height), toolWindow.maxSize.y);
|
|
}
|
|
|
|
var tab = tabView.getTab(freeTabIndex);
|
|
tab.title = properties.title || "Unknown";
|
|
tab.enabled = true;
|
|
console.log("New tab URL: " + properties.source)
|
|
tab.originalUrl = properties.source;
|
|
|
|
var eventBridge = properties.eventBridge;
|
|
console.log("Event bridge: " + eventBridge);
|
|
|
|
var result = tab.item;
|
|
result.enabled = true;
|
|
console.log("Setting event bridge: " + eventBridge);
|
|
result.eventBridgeWrapper.eventBridge = eventBridge;
|
|
result.url = properties.source;
|
|
return result;
|
|
}
|
|
}
|