QStateMachine露
- PyQt5.QtCore.QStateMachine
Inherits from QState.
Description露
The QStateMachine class provides a hierarchical finite state machine.
QStateMachine is based on the concepts and notation of Statecharts. QStateMachine is part of The State Machine Framework.
A state machine manages a set of states (classes that inherit from QAbstractState) and transitions (descendants of QAbstractTransition) between those states; these states and transitions define a state graph. Once a state graph has been built, the state machine can execute it. QStateMachine鈥檚 execution algorithm is based on the State Chart XML (SCXML) algorithm. The framework鈥檚 overview gives several state graphs and the code to build them.
Use the addState() function to add a top-level state to the state machine. States are removed with the removeState() function. Removing states while the machine is running is discouraged.
Before the machine can be started, the initial state must be set. The initial state is the state that the machine enters when started. You can then start() the state machine. The started signal is emitted when the initial state is entered.
The machine is event driven and keeps its own event loop. Events are posted to the machine through postEvent(). Note that this means that it executes asynchronously, and that it will not progress without a running event loop. You will normally not have to post events to the machine directly as Qt鈥檚 transitions, e.g., QEventTransition and its subclasses, handle this. But for custom transitions triggered by events, postEvent() is useful.
The state machine processes events and takes transitions until a top-level final state is entered; the state machine then emits the finished() signal. You can also stop() the state machine explicitly. The stopped signal is emitted in this case.
The following snippet shows a state machine that will finish when a button is clicked:
# QPushButton button;
# QStateMachine machine;
# QState *s1 = new QState();
# s1->assignProperty(&button, "text", "Click me");
# QFinalState *s2 = new QFinalState();
# s1->addTransition(&button, SIGNAL(clicked()), s2);
# machine.addState(s1);
# machine.addState(s2);
# machine.setInitialState(s1);
# machine.start();
This code example uses QState, which inherits QAbstractState. The QState class provides a state that you can use to set properties and invoke methods on QObjects when the state is entered or exited. It also contains convenience functions for adding transitions, e.g., QSignalTransitions as in this example. See the QState class description for further details.
If an error is encountered, the machine will look for an error state, and if one is available, it will enter this state. The types of errors possible are described by the Error enum. After the error state is entered, the type of the error can be retrieved with error(). The execution of the state graph will not stop when the error state is entered. If no error state applies to the erroneous state, the machine will stop executing and an error message will be printed to the console.
Classes露
Enums露
- Error
This enum type defines errors that can occur in the state machine at run time. When the state machine encounters an unrecoverable error at run time, it will set the error code returned by error(), the error message returned by errorString(), and enter an error state based on the context of the error.
See also
setErrorState().
Member
Value
Description
NoCommonAncestorForTransitionError 3
The machine has selected a transition whose source and targets are not part of the same tree of states, and thus are not part of the same state machine. Commonly, this could mean that one of the states has not been given any parent or added to any machine. The context of this error is the source state of the transition.
NoDefaultStateInHistoryStateError 2
The machine has entered a QHistoryState which does not have a default state set. The context of this error is the QHistoryState which is missing a default state.
NoError 0
No error has occurred.
NoInitialStateError 1
The machine has entered a QState with children which does not have an initial state set. The context of this error is the state which is missing an initial state.
StateMachineChildModeSetToParallelError TODO
TODO
- EventPriority
This enum type specifies the priority of an event posted to the state machine using postEvent().
Events of high priority are processed before events of normal priority.
Member
Value
Description
HighPriority 1
The event has high priority.
NormalPriority 0
The event has normal priority.
Methods露
- __init__(parent: QObject = None)
Constructs a new state machine with the given parent.
- __init__(ChildMode, parent: QObject = None)
Constructs a new state machine with the given childMode and parent.
- addDefaultAnimation(QAbstractAnimation)
TODO
- addState(QAbstractState)
Adds the given state to this state machine. The state becomes a top-level state.
If the state is already in a different machine, it will first be removed from its old machine, and then added to this machine.
See also
removeState(), setInitialState().
- cancelDelayedEvent(int) → bool
Cancels the delayed event identified by the given id. The id should be a value returned by a call to postDelayedEvent(). Returns
true
if the event was successfully cancelled, otherwise returnsfalse
.See also
- clearError()
Clears the error string and error code of the state machine.
- configuration() → Set[QAbstractState]
Returns the maximal consistent set of states (including parallel and final states) that this state machine is currently in. If a state
s
is in the configuration, it is always the case that the parent ofs
is also in c. Note, however, that the machine itself is not an explicit member of the configuration.
- defaultAnimations() → List[QAbstractAnimation]
TODO
- error() → Error
Returns the error code of the last error that occurred in the state machine.
- errorString() → str
Returns the error string of the last error that occurred in the state machine.
- event(QEvent) → bool
TODO
- globalRestorePolicy() → RestorePolicy
Returns the restore policy of the state machine.
See also
- isAnimated() → bool
TODO
- isRunning() → bool
TODO
- onEntry(QEvent)
TODO
- onExit(QEvent)
TODO
- postDelayedEvent(QEvent, int) → int
Posts the given event for processing by this state machine, with the given delay in milliseconds. Returns an identifier associated with the delayed event, or -1 if the event could not be posted.
This function returns immediately. When the delay has expired, the event will be added to the state machine鈥檚 event queue for processing. The state machine takes ownership of the event and deletes it once it has been processed.
You can only post events when the state machine is running.
See also
- postEvent(QEvent, priority: EventPriority = NormalPriority)
Posts the given event of the given priority for processing by this state machine.
This function returns immediately. The event is added to the state machine鈥檚 event queue. Events are processed in the order posted. The state machine takes ownership of the event and deletes it once it has been processed.
You can only post events when the state machine is running or when it is starting up.
See also
- removeDefaultAnimation(QAbstractAnimation)
TODO
- removeState(QAbstractState)
Removes the given state from this state machine. The state machine releases ownership of the state.
See also
- setAnimated(bool)
TODO
- setGlobalRestorePolicy(RestorePolicy)
TODO
- setRunning(bool)
See also
- start()
Starts this state machine. The machine will reset its configuration and transition to the initial state. When a final top-level state (QFinalState) is entered, the machine will emit the finished() signal.
Note: A state machine will not run without a running event loop, such as the main application event loop started with exec() or QApplication::exec().
See also
started, finished(), stop(), initialState(), setRunning().
- stop()
Stops this state machine. The state machine will stop processing events and then emit the stopped signal.
See also