diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-04-08 01:13:33 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-04-08 01:15:13 (GMT) |
commit | 80cd83d3b09b2271d183a51d2e6453924c535dce (patch) | |
tree | bbb354da77507be6a73d03073aa37393b30013f4 /src/declarative | |
parent | 979ad950e257c0c90463ab6c2db7fea4aece3331 (diff) | |
download | Qt-80cd83d3b09b2271d183a51d2e6453924c535dce.zip Qt-80cd83d3b09b2271d183a51d2e6453924c535dce.tar.gz Qt-80cd83d3b09b2271d183a51d2e6453924c535dce.tar.bz2 |
Document behavior of conflicting when clauses.
Task-number: QTBUG-9371
Diffstat (limited to 'src/declarative')
-rw-r--r-- | src/declarative/util/qdeclarativestate.cpp | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/declarative/util/qdeclarativestate.cpp b/src/declarative/util/qdeclarativestate.cpp index 5e6c35e..e4c968e 100644 --- a/src/declarative/util/qdeclarativestate.cpp +++ b/src/declarative/util/qdeclarativestate.cpp @@ -121,14 +121,13 @@ QDeclarativeStateOperation::QDeclarativeStateOperation(QObjectPrivate &dd, QObje /*! \qmlclass State QDeclarativeState - \since 4.7 + \since 4.7 \brief The State element defines configurations of objects and properties. A state is specified as a set of batched changes from the default configuration. - Note that setting the state of an object from within another state of the same object is - inadvisible. Not only would this have the same effect as going directly to the second state - it may cause the program to crash. + \note setting the state of an object from within another state of the same object is + not allowed. \sa {qmlstates}{States}, {state-transitions}{Transitions} */ @@ -191,6 +190,17 @@ bool QDeclarativeState::isWhenKnown() const This should be set to an expression that evaluates to true when you want the state to be applied. + + If multiple states in a group have \c when clauses that evaluate to true at the same time, + the first matching state will be applied. For example, in the following snippet + \c state1 will always be selected rather than \c state2 when sharedCondition becomes + \c true. + \qml + states: [ + State { name: "state1"; when: sharedCondition }, + State { name: "state2"; when: sharedCondition } + ] + \endqml */ QDeclarativeBinding *QDeclarativeState::when() const { |