mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 23:16:20 +02:00
53 lines
1.2 KiB
QML
53 lines
1.2 KiB
QML
//
|
|
// platform.qml
|
|
//
|
|
// Created by Sam Gateau on 5/25/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.2
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import controlsUit 1.0 as HifiControls
|
|
|
|
import "../../lib/prop" as Prop
|
|
|
|
Column {
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
|
|
Prop.PropGroup {
|
|
id: computer
|
|
label: "Computer"
|
|
isUnfold: true
|
|
rootObject:JSON.parse(PlatformInfo.getComputer())
|
|
}
|
|
Prop.PropGroup {
|
|
id: cpu
|
|
label: "CPU"
|
|
isUnfold: true
|
|
rootObject:JSON.parse(PlatformInfo.getPlatform()).cpus
|
|
}
|
|
Prop.PropGroup {
|
|
id: memory
|
|
label: "Memory"
|
|
isUnfold: true
|
|
rootObject:JSON.parse(PlatformInfo.getMemory())
|
|
}
|
|
Prop.PropGroup {
|
|
id: gpu
|
|
label: "GPU"
|
|
isUnfold: true
|
|
rootObject:JSON.parse(PlatformInfo.getPlatform()).gpus
|
|
}
|
|
Prop.PropGroup {
|
|
id: display
|
|
label: "Display"
|
|
isUnfold: true
|
|
rootObject:JSON.parse(PlatformInfo.getPlatform()).displays
|
|
}
|
|
}
|
|
|