Sur cette page

TimeoutTransition QML Type

Le type TimeoutTransition fournit une transition basée sur une temporisation. Plus d'informations...

Import Statement: import QtQml.StateMachine 6.11
Inherits:

QSignalTransition

Propriétés

Description détaillée

Timer Le type TimeoutTransition peut être combiné avec SignalTransition pour mettre en œuvre des transitions plus complexes basées sur le délai d'attente.

TimeoutTransition fait partie de Qt State Machine QML API

Exemple d'utilisation

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
            }
        }
    }
}

Voir également StateMachine, SignalTransition, FinalState, et HistoryState.

Documentation sur les propriétés

timeout : int

Intervalle d'attente en millisecondes.

© 2026 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.