summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qdeclarativestateoperations_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove a few more unnecessary exports.Martin Jones2010-07-011-3/+3
|
* Use QDeclarativeScriptString for ParentChange.Michael Brasser2010-05-181-18/+18
| | | | | | | So that scope resolution is correct, e.g. "width: parent.width-10;" in a ParentChange works correctly. Task-number: QTBUG-10675
* 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
* Fix AnchorChanges to work with parent.right.Michael Brasser2010-04-201-26/+26
| | | | | | | "parent" needs to be evaluated with the AnchorChanges target as the scope object. Task-number: QTBUG-5338
* Minor internal anchor refactoring.Michael Brasser2010-04-191-1/+1
|
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-1/+1
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Update AnchorChanges to use more natural form for setting anchors.Michael Brasser2010-03-251-22/+101
| | | | | | | Instead of specifying left, right, etc directly, we keep the regular syntax and specify anchors.left, anchors.right, etc. Also get rid of the hacky "reset" string property and use undefined to reset (like PropertyChanges).
* Add AnchorAnimation for animating AnchorChanges.Michael Brasser2010-03-111-3/+6
| | | | Task-number: QT-2825
* Fixed private header include style to work when headers are installed.Rohan McGovern2010-03-011-1/+1
| | | | | | | | | | Private headers should include other private headers by: #include <private/qfoo_p.h> Using a relative path works during the build, but does not work when building other projects which attempt to use the installed private headers (e.g. unit tests for private classes).
* Add ParentAnimation.Michael Brasser2010-02-261-0/+32
| | | | | | | ParentAnimation will replace ParentAction. It provides two advantages: * It will animate correctly when reversed. * It allows reparenting via another item, which is useful in the presence of clips, for example.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+184
QDeclarativeXXX.