diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-04-20 08:49:24 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-04-20 08:49:24 (GMT) |
commit | f2d10ae7b08e268ab619bddb698924629b3587dd (patch) | |
tree | a25376b3c453380a345492fc2c3e20ca0b0c6a5d /src/corelib/statemachine/qstate.cpp | |
parent | 49b496d9601af37de1627ef2014f011b501ceeed (diff) | |
download | Qt-f2d10ae7b08e268ab619bddb698924629b3587dd.zip Qt-f2d10ae7b08e268ab619bddb698924629b3587dd.tar.gz Qt-f2d10ae7b08e268ab619bddb698924629b3587dd.tar.bz2 |
doc
Diffstat (limited to 'src/corelib/statemachine/qstate.cpp')
-rw-r--r-- | src/corelib/statemachine/qstate.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/corelib/statemachine/qstate.cpp b/src/corelib/statemachine/qstate.cpp index 944ca2c..e3da1c5 100644 --- a/src/corelib/statemachine/qstate.cpp +++ b/src/corelib/statemachine/qstate.cpp @@ -57,6 +57,7 @@ QT_BEGIN_NAMESPACE \brief The QState class provides a general-purpose state for QStateMachine. + \since 4.6 \ingroup statemachine QState objects can have child states, and can have transitions to other @@ -74,6 +75,9 @@ QT_BEGIN_NAMESPACE The addHistoryState() function adds a history state. + The addFinishedTransition() function creates and adds a transition that's + triggered when a final child state is entered. + The setErrorState() sets the state's error state. The error state is the state that the state machine will transition to if an error is detected when attempting to enter the state (e.g. because no initial state has been set). |