mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 07:53:24 +02:00
33 lines
706 B
QML
33 lines
706 B
QML
import QtQuick 2.7
|
|
import stylesUit 1.0
|
|
|
|
Rectangle {
|
|
HifiConstants {
|
|
id: hifi
|
|
}
|
|
|
|
color: hifi.colors.darkGray
|
|
|
|
signal onNewViewRequested();
|
|
|
|
property string url: "";
|
|
property bool canGoBack: false
|
|
property bool canGoForward: false
|
|
property bool useBackground: false
|
|
property string userAgent: ""
|
|
property string icon: ""
|
|
property var profile: {}
|
|
|
|
property bool safeLoading: false
|
|
property bool loadingLatched: false
|
|
property bool loading: false
|
|
property var loadingRequest: null
|
|
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: "This feature is not supported"
|
|
font.pixelSize: 32
|
|
color: hifi.colors.white
|
|
}
|
|
}
|