C

Qt Cluster: Rendering and Recovery from Main UI Failure

// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

// This file is part of the Qt Safe Renderer module

import QtQuick
import HelperWidgets
import QtQuick.Layouts
import QtQuick.Controls as Controls

Column {
    anchors.left: parent.left
    anchors.right: parent.right

    Section {
        anchors.left: parent.left
        anchors.right: parent.right
        caption: qsTr("TurboMeter")
        SectionLayout {

            Label {
                text: qsTr("RPM Value")
            }

            SecondColumnLayout {
                SpinBox {
                    backendValue: backendValues.rpmValue
                    minimumValue: 0
                    maximumValue: 8000
                    decimals: 0
                }

                Controls.Slider {
                    id: turboSlider
                    Layout.preferredWidth: 100

                    minimumValue: 0
                    maximumValue: 8000
                    updateValueWhileDragging: true
                    stepSize: 0.1
                    value: backendValues.rpmValue.value
                    onValueChanged: {
                        backendValues.rpmValue.value = turboSlider.value

                    }

                }

                ExpandingSpacer {
                    width: 30
                }
            }

        }
    }
}