mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-04 00:04:42 +02:00
58 lines
1.4 KiB
QML
58 lines
1.4 KiB
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 1.0
|
|
import QtWebEngine 1.1
|
|
import QtWebChannel 1.0
|
|
import "../../controls"
|
|
import HFWebEngineProfile 1.0
|
|
|
|
Item {
|
|
id: editRoot
|
|
property var eventBridge;
|
|
|
|
TabView {
|
|
id: editTabView
|
|
anchors.fill: parent
|
|
|
|
Tab {
|
|
active: true
|
|
enabled: true
|
|
property string originalUrl: ""
|
|
|
|
WebView {
|
|
id: entityListToolWebView
|
|
url: "../../../../../scripts/system/html/entityList.html"
|
|
eventBridge: editRoot.eventBridge
|
|
anchors.fill: parent
|
|
enabled: true
|
|
}
|
|
}
|
|
|
|
Tab {
|
|
active: true
|
|
enabled: true
|
|
property string originalUrl: ""
|
|
|
|
WebView {
|
|
id: entityPropertiesWebView
|
|
url: "../../../../../scripts/system/html/entityProperties.html"
|
|
eventBridge: editRoot.eventBridge
|
|
anchors.fill: parent
|
|
enabled: true
|
|
}
|
|
}
|
|
|
|
Tab {
|
|
active: true
|
|
enabled: true
|
|
property string originalUrl: ""
|
|
|
|
WebView {
|
|
id: entityPropertiesWebView
|
|
url: "../../../../../scripts/system/html/gridControls.html"
|
|
eventBridge: editRoot.eventBridge
|
|
anchors.fill: parent
|
|
enabled: true
|
|
}
|
|
}
|
|
}
|
|
}
|