Inherited by: QState, QStateMachine, QHistoryState, QFinalState
Note
This class was introduced in Qt 4.6
The PySide.QtCore.QAbstractState class is the base class of states of a PySide.QtCore.QStateMachine .
The PySide.QtCore.QAbstractState class is the abstract base class of states that are part of a PySide.QtCore.QStateMachine . It defines the interface that all state objects have in common. PySide.QtCore.QAbstractState is part of The State Machine Framework .
The PySide.QtCore.QAbstractState.entered() signal is emitted when the state has been entered. The PySide.QtCore.QAbstractState.exited() signal is emitted when the state has been exited.
The PySide.QtCore.QAbstractState.parentState() function returns the state’s parent state. The PySide.QtCore.QAbstractState.machine() function returns the state machine that the state is part of.
The PySide.QtCore.QAbstractState.onEntry() function is called when the state is entered; reimplement this function to perform custom processing when the state is entered.
The PySide.QtCore.QAbstractState.onExit() function is called when the state is exited; reimplement this function to perform custom processing when the state is exited.
Parameters: | parent – PySide.QtCore.QState |
---|
Constructs a new state with the given parent state.
Return type: | PySide.QtCore.QStateMachine |
---|
Returns the state machine that this state is part of, or 0 if the state is not part of a state machine.
Parameters: | event – PySide.QtCore.QEvent |
---|
This function is called when the state is entered. The given event is what caused the state to be entered. Reimplement this function to perform custom processing when the state is entered.
Parameters: | event – PySide.QtCore.QEvent |
---|
This function is called when the state is exited. The given event is what caused the state to be exited. Reimplement this function to perform custom processing when the state is exited.
Return type: | PySide.QtCore.QState |
---|
Returns this state’s parent state, or 0 if the state has no parent state.