QAbstractState露
- PyQt5.QtCore.QAbstractState
Inherits from QObject.
Inherited by QFinalState, QHistoryState, QState.
Description露
The QAbstractState class is the base class of states of a QStateMachine.
The QAbstractState class is the abstract base class of states that are part of a QStateMachine. It defines the interface that all state objects have in common. QAbstractState is part of The State Machine Framework.
The entered signal is emitted when the state has been entered. The exited signal is emitted when the state has been exited.
The parentState() function returns the state鈥檚 parent state. The machine() function returns the state machine that the state is part of.
Methods露
- __init__(parent: QState = None)
Constructs a new state with the given parent state.
- active() → bool
Returns whether this state is active.
- event(QEvent) → bool
TODO
- machine() → QStateMachine
Returns the state machine that this state is part of, or 0 if the state is not part of a state machine.
- onEntry(QEvent)
TODO
- onExit(QEvent)
TODO
- parentState() → QState
Returns this state鈥檚 parent state, or 0 if the state has no parent state.