C
Qt Quick Ultralite Automotive Cluster Demo
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
import QtQuick 2.15
import Automotive 1.0
BaseGauge {
id: root;
needleOffsetY: -13
gaugeSource: sportGauge
needleSource: sportNeedle
highlightSource: sportHighlight
Image {
id: icon
anchors.centerIn: parent
anchors.horizontalCenterOffset: 15
source: "images/oil-temp.png"
}
Text {
anchors.horizontalCenter: icon.horizontalCenter
anchors.horizontalCenterOffset: -7
anchors.bottom: icon.top
anchors.bottomMargin: 110
width: 5; height: width
text: "Hot"
color: Style.lightPeriwinkle
font.pixelSize: 12
font.family: "Sarabun"
}
Text {
anchors.horizontalCenter: icon.horizontalCenter
anchors.horizontalCenterOffset: -7
anchors.top: icon.bottom
anchors.topMargin: 95
width: 5; height: width
text: "Cool"
color: Style.lightPeriwinkle
font.pixelSize: 12
font.family: "Sarabun"
}
}