QAbstractState

The QAbstractState class is the base class of states of a QStateMachine . More

Inheritance diagram of PySide2.QtCore.QAbstractState

Inherited by: QFinalState, QHistoryState, QState, QStateMachine

New in version 4.6.

Synopsis

Functions

Virtual functions

Signals

Detailed Description

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’s parent state. The machine() function returns the state machine that the state is part of.

Subclassing

The onEntry() function is called when the state is entered; reimplement this function to perform custom processing when the state is entered.

The onExit() function is called when the state is exited; reimplement this function to perform custom processing when the state is exited.

class QAbstractState([parent=None])
param parent

QState

Constructs a new state with the given parent state.

PySide2.QtCore.QAbstractState.active()
Return type

bool

Returns whether this state is active.

See also

activeChanged(bool) entered() exited()

PySide2.QtCore.QAbstractState.activeChanged(active)
Parameters

activebool

PySide2.QtCore.QAbstractState.machine()
Return type

QStateMachine

Returns the state machine that this state is part of, or 0 if the state is not part of a state machine.

PySide2.QtCore.QAbstractState.onEntry(event)
Parameters

eventQEvent

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.

PySide2.QtCore.QAbstractState.onExit(event)
Parameters

eventQEvent

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.

PySide2.QtCore.QAbstractState.parentState()
Return type

QState

Returns this state’s parent state, or 0 if the state has no parent state.