mirror of
https://github.com/lubosz/overte.git
synced 2025-04-25 12:52:52 +02:00
62 lines
1.4 KiB
QML
62 lines
1.4 KiB
QML
//
|
|
// platformSetupInspector.qml
|
|
//
|
|
// Created by Sam Gateau on 5/30/2019
|
|
// Copyright 2019 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or https://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 2.5
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import controlsUit 1.0 as HifiControls
|
|
|
|
import "../lib/prop" as Prop
|
|
import "luci"
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
id: platform;
|
|
|
|
Prop.Global { id: global;}
|
|
color: global.colorBack
|
|
|
|
ScrollView {
|
|
id: scrollView
|
|
anchors.fill: parent
|
|
contentWidth: parent.width
|
|
clip: true
|
|
|
|
Column {
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
|
|
Prop.PropFolderPanel {
|
|
label: "Performance Settings"
|
|
isUnfold: true
|
|
panelFrameData: Component {
|
|
PerformanceSettings {
|
|
}
|
|
}
|
|
}
|
|
Prop.PropFolderPanel {
|
|
label: "Render Settings"
|
|
isUnfold: true
|
|
panelFrameData: Component {
|
|
RenderSettings {
|
|
}
|
|
}
|
|
}
|
|
Prop.PropFolderPanel {
|
|
label: "Platform"
|
|
panelFrameData: Component {
|
|
Platform {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|