QAbstractTransition QML Type

The QAbstractTransition type is the base type of transitions between QAbstractState objects. 更多...

Import Statement: import QtQml.StateMachine 1.0
开始支持版本: Qt 5.4
派生类:

QSignalTransition

属性

信号

详细描述

The QAbstractTransition type is the abstract base type of transitions between states (QAbstractState objects) of a StateMachine. QAbstractTransition is part of The Declarative State Machine Framework.

The sourceState() property has the source of the transition. The targetState and targetStates properties return the target(s) of the transition.

The triggered() signal is emitted when the transition has been triggered.

Do not use QAbstractTransition directly; use SignalTransition or TimeoutTransition instead.

参见 SignalTransition and TimeoutTransition.

属性

[read-only] sourceState : bool

The source state (parent) of this transition.


targetState : QAbstractState

The target state of this transition.

If a transition has no target state, the transition may still be triggered, but this will not cause the state machine's configuration to change (i.e. the current state will not be exited and re-entered).


targetStates : list<QAbstractState>

The target states of this transition.

If multiple states are specified, they all must be descendants of the same parallel group state.


信号

triggered()

This signal is emitted when the transition has been triggered.

The corresponding handler is onTriggered.