C

Qt Quick Ultralite Automotive Cluster Demo

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
pragma Singleton
import QtQuick 2.15

QtObject {
    id: telltalesmodel;

    property bool turnLeftActive: false;
    property bool parkingLightsActive: false;
    property bool lowBeamHeadlightsActive: false;
    property bool parkedActive: false;
    property bool airbagActive: false;
    property bool turnRightActive: false;

    property bool turnLeftBlinking: false;
    property bool turnRightBlinking: false;

    property bool showSimulatedLightIndicators: true;

    readonly property int opacityChangeDuration: 500;
    property double qtLogoOpacity: 0;
    property double indicatorOpacity: 0;
}