summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qdeclarativestate_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | Reviewed-by: Trust Me
* Removing a binding while it is being applied caused a crash.Martin Jones2010-11-021-1/+2
| | | | | | | | Use a weak pointer to the binding in case applying the binding (while fast forwarding) causes it to be removed. Task-number: QTBUG-14830 Reviewed-by: Michael Brasser
* Export private QtDeclarative classes needed by Qt3d on SymbianJoona Petrell2010-10-281-2/+2
| | | | | | | | | | Task-number: QTBUG-14789 Reviewed-by: Rhys Weatherley * QDeclarativeState * QDeclarativeStateGroup * QDeclarativeStateOperation * QDeclarativeTransition
* Don't export QtDeclarative symbols needed by QtCreator on SymbianJoona Petrell2010-10-191-3/+4
| | | | | Task-number: QTBUG-14041 Reviewed-by: Aaron Kennedy
* This patch allows modifications on PropertyChanges on the flyThomas Hartmann2010-09-141-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is important for Bauhaus to ensure that we can edit properties and states dynamically in the visual editor Most of the changes consist of added functions for Bauhaus, that do not affect any current behaviour. Important changes: QDeclarativeAbstractBinding is holding a QSharedPointer to itself so that other classes can hold a weak reference to avoid accessing dangling pointers while keeping track of bindings. QDeclarativeStateOperation now has its own private class QDeclarativeStateOperationPrivate to hold a pointer back to QDeclarativeState since the parent is not set correctly in every context. QDeclarativePropertyChangesPrivate does now hold a QDeclarativeGuard instead of a raw pointer to the target QObject. In Bauhaus the target object might be deleted. Reviewed-by: Aaron Kennedy
* Ensure state operations assigned to the default state are triggeredMichael Brasser2010-06-071-0/+1
| | | | | | when returning to that state. Task-number: QTBUG-11228
* Add Q_AUTOTEST_EXPORTAaron Kennedy2010-06-031-1/+1
|
* Fix crash in ParentAnimation.Michael Brasser2010-05-141-0/+1
| | | | | | | | | | | 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
* Fix AnchorChanges to work with parent.right.Michael Brasser2010-04-201-2/+4
| | | | | | | "parent" needs to be evaluated with the AnchorChanges target as the scope object. Task-number: QTBUG-5338
* Fix url resolution in PropertyChanges.Michael Brasser2010-04-091-0/+2
| | | | | | | | 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
* Add AnchorAnimation for animating AnchorChanges.Michael Brasser2010-03-111-5/+3
| | | | Task-number: QT-2825
* Polish QDeclarativeProperty APIAaron Kennedy2010-02-261-0/+2
|
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-2/+2
| | | | There's nothing meta about our properties.
* Simplify QML element registration headersAaron Kennedy2010-02-241-1/+1
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+181
QDeclarativeXXX.