TimeoutTransition QML Type

Der Typ TimeoutTransition bietet einen Übergang auf der Grundlage eines Zeitgebers. Mehr...

Import Statement: import QtQml.StateMachine 6.8
Inherits:

QSignalTransition

Eigenschaften

Detaillierte Beschreibung

Timer Der Typ TimeoutTransition kann mit SignalTransition kombiniert werden, um komplexere Timeout-basierte Übergänge zu realisieren.

TimeoutTransition ist Teil der Qt State Machine QML API

Beispielverwendung

import QtQuick
import QtQml.StateMachine as DSM

Rectangle {
    Button {
        anchors.fill: parent
        id: button
        text: "Finish state"
        enabled: !stateMachine.running
        onClicked: stateMachine.running = true
        DSM.StateMachine {
            id: stateMachine
            initialState: state
            running: true
            DSM.State {
                id: state
                DSM.TimeoutTransition {
                    targetState: finalState
                    timeout: 1000
                }
            }
            DSM.FinalState {
                id: finalState
            }
        }
    }
}

Siehe auch StateMachine, SignalTransition, FinalState, und HistoryState.

Dokumentation der Eigenschaft

timeout : int

Das Timeout-Intervall in Millisekunden.


© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.