mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 14:03:27 +02:00
38 lines
856 B
QML
38 lines
856 B
QML
//
|
|
// TabletGraphicsPreferences.qml
|
|
//
|
|
// Created by Vlad Stelmahovsky on 12 Mar 2017.
|
|
// Copyright 2017 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 QtQuick.Controls 1.4
|
|
import "tabletWindows"
|
|
import "../../dialogs"
|
|
|
|
StackView {
|
|
id: profileRoot
|
|
initialItem: root
|
|
objectName: "stack"
|
|
property string title: "Graphics Settings"
|
|
|
|
property var eventBridge;
|
|
signal sendToScript(var message);
|
|
|
|
function pushSource(path) {
|
|
profileRoot.push(Qt.resolvedUrl(path));
|
|
}
|
|
|
|
function popSource() {
|
|
profileRoot.pop();
|
|
}
|
|
|
|
TabletPreferencesDialog {
|
|
id: root
|
|
objectName: "TabletGraphicsPreferences"
|
|
showCategories: ["Graphics"]
|
|
}
|
|
}
|