Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

TimeoutTransition

The TimeoutTransition type provides a transition based on a timer. More...

Import Statement: import QtQml.StateMachine 6.4
Since: Qt 5.4
Inherits:

QSignalTransition

Properties

Detailed Description

Timer type can be combined with SignalTransition to enact more complex timeout based transitions.

TimeoutTransition is part of Qt State Machine QML API

Example Usage

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

See also StateMachine, SignalTransition, FinalState, and HistoryState.

Property Documentation

timeout : int

The timeout interval in milliseconds.


Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded