En esta página

TimeoutTransition QML Type

El tipo TimeoutTransition proporciona una transición basada en un temporizador. Más...

Import Statement: import QtQml.StateMachine 6.11
Inherits:

QSignalTransition

Propiedades

Descripción detallada

Timer puede combinarse con SignalTransition para realizar transiciones más complejas basadas en el tiempo de espera.

TimeoutTransition forma parte de Qt State Machine QML API

Ejemplo de uso

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

Véase también StateMachine, SignalTransition, FinalState, y HistoryState.

Documentación de propiedades

timeout : int

El intervalo de tiempo de espera en milisegundos.

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