summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qtcluster/qml/dash_hybrid/DashboardForm.ui.qml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/snippets/qtcluster/qml/dash_hybrid/DashboardForm.ui.qml')
-rw-r--r--doc/src/snippets/qtcluster/qml/dash_hybrid/DashboardForm.ui.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/src/snippets/qtcluster/qml/dash_hybrid/DashboardForm.ui.qml b/doc/src/snippets/qtcluster/qml/dash_hybrid/DashboardForm.ui.qml
index 8897836c2..0d7bc535f 100644
--- a/doc/src/snippets/qtcluster/qml/dash_hybrid/DashboardForm.ui.qml
+++ b/doc/src/snippets/qtcluster/qml/dash_hybrid/DashboardForm.ui.qml
@@ -65,6 +65,7 @@ DashboardBackground {
anchors.fill: parent
// Fuelmeter
+
SmallMeter {
id: fuelMeter
x: 432
@@ -74,6 +75,7 @@ DashboardBackground {
}
// Batterymeter
+
SmallMeter {
id: batteryMeter
x: 433
@@ -90,14 +92,17 @@ DashboardBackground {
}
// Consumptionmeter
+
ConsumptionMeter {
opacity: dashboardEntity.meterOpacity
}
// Temperaturemeter
+
TemperatureMeter {
opacity: dashboardEntity.meterOpacity
}
// Turbometer
+
SmallMeter {
id: smallMeter
x: 741
@@ -114,16 +119,26 @@ DashboardBackground {
}
// Fpsmeter
+
FpsMeter {
opacity: dashboardEntity.meterOpacity
}
// Bottom Panel
+
BottomPanel {
id: bottompanel
y: 402
}
+ SpeedometerNumbers {
+ id: speedometerNumbers
+ x: 103
+ y: 73
+ value: speedometer.actualValue
+ opacity: dashboardEntity.meterOpacity
+ }
+
LargeMeter {
id: speedometer
@@ -176,4 +191,5 @@ DashboardBackground {
color: tachometer.actualValue <= 4000 ? "white" : "red"
opacity: dashboardEntity.meterOpacity
}
+
}