QAbstractState QML Type
The QAbstractState type is the base type of States of a StateMachine. More...
| Import Statement: | import QtQml.StateMachine 6.11 |
| Inherited By: | FinalState, HistoryState, and State |
Properties
- active : bool
Signals
Detailed Description
Do not use QAbstractState directly; use State, FinalState or StateMachine instead.
See also StateMachine and State.
Property Documentation
active : bool [read-only]
The active property of this state. A state is active between entered() and exited() signals. This property is readonly.
Signal Documentation
entered()
This signal is emitted when the State becomes active.
Note: The corresponding handler is onEntered.
exited()
This signal is emitted when the State becomes inactive.
Note: The corresponding handler is onExited.