summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeanimations
Commit message (Collapse)AuthorAgeFilesLines
* Mark some properties in QDeclarativeItem as private properties.Alexis Menard2010-04-291-10/+11
| | | | | | | QDeclarativeItem will be public, all properties that are relaying on private types must be private too. Reviewed-by:akennedy
* Fix versioning of Qt Declarative's in-built typesAlan Alpert2010-04-2127-27/+27
| | | | | | Since we aren't releasing for 4.6, all types are new in 4.7. Task-number: QTBUG-10081
* Emit runtime warnings through QDeclarativeEngineAaron Kennedy2010-04-191-6/+8
| | | | QTBUG-9726
* Rename remaining import Qt 4.6 lines to import Qt 4.7Joona Petrell2010-04-141-4/+4
| | | | | Task-number: Reviewed-by: Martin Jones
* Tweak tests to run in parallelAaron Kennedy2010-04-131-0/+3
|
* Qt.Infinite -> Animation.InfiniteMichael Brasser2010-03-251-1/+1
| | | | | Too misleading to have on the Qt object, as it only means infinite for animation loops.
* Replace Animation's repeat property with loops.Michael Brasser2010-03-252-3/+3
| | | | | You can now loop a fixed number of times as well as forever. The old repeat behavior (loop forever) can be acheived with loops: Qt.Infinite.
* Change default RotationAnimation direction.Michael Brasser2010-03-231-2/+2
| | | | | | Shortest as default too often led to unintuitive behavior. For example, RotationAnimation { from: 0; to: 360 } will not animate at all. Numerical gives the least surprising results.
* Fix failing autotest.Alan Alpert2010-03-081-1/+1
| | | | This was probably a bug in the test data.
* RotationAnimation docs + test.Michael Brasser2010-03-042-0/+106
| | | | Task-number: QTBUG-8613
* Make test more reliable.Michael Brasser2010-03-021-3/+3
|
* Make test more reliable.Michael Brasser2010-03-021-3/+3
|
* Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-0212-12/+12
| | | | | | | | | | | | | | | | | | | | | Where you would have written x: NumberAnimation {} y: Behavior {} you now must write NumberAnimation on x {} Behavior on y {} This change also makes the parser more strict with respect to multiple assignments to a single property - they're no longer allowed. For example this x: 10 x: 11 is now an error.
* Change autotest class prefix from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX ↵Leonardo Sobral Cunha2010-02-241-20/+20
| | | | to QDeclarativeXXX.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-2428-0/+1219
QDeclarativeXXX.