Uses of Class
io.qt.core.QAbstractState
Package | Description |
---|---|
io.qt.core |
-
Uses of QAbstractState in io.qt.core
Subclasses of QAbstractState in io.qt.core Modifier and Type Class Description class
QFinalState
Final stateclass
QHistoryState
Means of returning to a previously active substateclass
QState
General-purpose state for QStateMachineclass
QStateMachine
Hierarchical finite state machineMethods in io.qt.core that return QAbstractState Modifier and Type Method Description QAbstractState
QHistoryState. defaultState()
QAbstractState
QState. errorState()
QAbstractState
QState. initialState()
QAbstractState
QAbstractTransition. targetState()
Methods in io.qt.core that return types with arguments of type QAbstractState Modifier and Type Method Description QSet<QAbstractState>
QStateMachine. configuration()
QList<QAbstractState>
QAbstractTransition. targetStates()
Methods in io.qt.core with parameters of type QAbstractState Modifier and Type Method Description void
QStateMachine. addState(QAbstractState state)
QAbstractTransition
QState. addTransition(QAbstractState target)
QSignalTransition
QState. addTransition(QMetaObject.AbstractSignal signal, QAbstractState target)
Adds a transition associated with the given signal of the given sender object, and returns the new QSignalTransition object.QSignalTransition
QState. addTransition(QObject sender, String signal, QAbstractState target)
void
QStateMachine. removeState(QAbstractState state)
void
QHistoryState. setDefaultState(QAbstractState state)
void
QState. setErrorState(QAbstractState state)
void
QState. setInitialState(QAbstractState state)
void
QAbstractTransition. setTargetState(QAbstractState target)
Method parameters in io.qt.core with type arguments of type QAbstractState Modifier and Type Method Description void
QAbstractTransition. setTargetStates(Collection<QAbstractState> targets)