summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qdeclarativestate.cpp
Commit message (Collapse)AuthorAgeFilesLines
* State doc fixes, improvementsBea Lam2010-08-021-14/+1
| | | | Task-number: QTBUG-12570
* Correctly apply PropertyChanges when entering an extended stateMichael Brasser2010-08-021-1/+3
| | | | | | | | directly from the base state. Make sure qmlExecuteDeferred is called on the state being extended. Task-number: QTBUG-12559
* fixes, improvements for various docs and example codeBea Lam2010-07-161-4/+20
|
* Doc improvements: move some example code to snippets, add screenshots,Bea Lam2010-06-091-2/+3
| | | | other minor doc fixes
* Move some example code into snippets/ and add other doc fixesBea Lam2010-06-091-7/+27
|
* Ensure state operations assigned to the default state are triggeredMichael Brasser2010-06-071-0/+7
| | | | | | when returning to that state. Task-number: QTBUG-11228
* Fix QT_NO_TEXTSTREAM compilation errors.Tasuku Suzuki2010-05-311-0/+2
| | | | | Merge-request: 647 Reviewed-by: Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com>
* Fix crash in ParentAnimation.Michael Brasser2010-05-141-1/+2
| | | | | | | | | | | copyOriginals plays with the order of the revertList, which messes up the assumptions of ParentAnimation. The full fix will require some rearchitecting of how the states and transitions handle "related" actions, but for now this fixes the crash. Reverting to the base state has also been fixed. Task-number: QTBUG-10671, QTBUG-10676
* Remove obsolete doc groupings.Michael Brasser2010-05-041-1/+0
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7Peter Yard2010-04-271-2/+2
|\
| * Fix AnchorChanges to work with parent.right.Michael Brasser2010-04-201-2/+2
| | | | | | | | | | | | | | "parent" needs to be evaluated with the AnchorChanges target as the scope object. Task-number: QTBUG-5338
* | Docs Changes to start page. Minor change to Elements doc. See also added to ↵Peter Yard2010-04-271-1/+1
|/ | | | some elements docs.
* Fix url resolution in PropertyChanges.Michael Brasser2010-04-091-0/+12
| | | | | | | | Make sure bindings in PropertyChanges resolve urls correctly. Also refactor the code so that PropertyChanges will always use the standard url resolution support provided by QDeclarativeProperty. Task-number: QTBUG-9571
* Document behavior of conflicting when clauses.Michael Brasser2010-04-081-4/+14
| | | | Task-number: QTBUG-9371
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-8/+8
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Add AnchorAnimation for animating AnchorChanges.Michael Brasser2010-03-111-29/+33
| | | | Task-number: QT-2825
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-3/+3
| | | | There's nothing meta about our properties.
* Remove QDeclarativeMetaProperty::createProperty() methodAaron Kennedy2010-02-251-4/+4
| | | | | The behavior of createProperty() (to resolve dot properties) is now the behavior of the constructors.
* Move private QDeclarativeMetaProperty functions into the private classAaron Kennedy2010-02-251-3/+4
| | | | | | We don't want to allow manipulation of bindings and signal properties through the public API. Equivalents of the public functions now exist in QDeclarativeMetaPropertyPrivate for internal use.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+482
QDeclarativeXXX.