mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
44 lines
1 KiB
QML
44 lines
1 KiB
QML
//
|
|
// TabletGeneralSettings.qml
|
|
// scripts/system/
|
|
//
|
|
// Created by Dante Ruiz on 9 Feb 2017
|
|
// Copyright 2016 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 "tabletWindows"
|
|
import "../../dialogs"
|
|
import QtQuick.Controls 1.4
|
|
import QtQuick.Controls.Styles 1.4
|
|
import QtGraphicalEffects 1.0
|
|
|
|
StackView {
|
|
id: profileRoot
|
|
initialItem: root
|
|
objectName: "stack"
|
|
|
|
property var eventBridge;
|
|
signal sendToScript(var message);
|
|
|
|
function pushSource(path) {
|
|
editRoot.push(Qt.reslovedUrl(path));
|
|
}
|
|
|
|
function popSource() {
|
|
|
|
}
|
|
|
|
TabletPreferencesDialog {
|
|
id: root
|
|
objectName: "GeneralPreferencesDialog"
|
|
width: parent.width
|
|
height: parent.height
|
|
showCategories: ["UI", "Snapshots", "Scripts", "Privacy", "Octree", "HMD", "Sixense Controllers", "Perception Neuron", "Kinect"]
|
|
|
|
}
|
|
|
|
}
|