summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeanimations
Commit message (Collapse)AuthorAgeFilesLines
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-2931-34/+34
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Clear previous animation data for non-triggering animations.Michael Brasser2010-08-132-0/+61
| | | | | | | We need to clear the data from the last run if the animation doesn't match any of the state actions (or if there are no actions). Task-number: QTBUG-12805
* Make SpringAnimation usable inside a transitionmae2010-08-042-0/+43
| | | | | | | | | | | | SpringFollow was turned into SpringAnimation so it could be used inside a Behavior. This patch completes the work and makes it usable inside a transition. This is the documented behavior of SpringAnimation, the patch is essential to make SpringAnimation work consistently. Reviewed-by: Michael Brasser Task-number: QTBUG-12141
* Make autotests work with qreal == float (in addition to double).Warwick Allison2010-07-021-1/+1
| | | | Task-number: QTBUG-11853
* Prevent value source animations from being registered to start twice.Michael Brasser2010-06-242-0/+45
| | | | | If the animation had an explicit "running: true", the animation would be registered with the engine twice, which prevented a proper start.
* Make declarative autotests compile on Symbian abld build systemJoona Petrell2010-06-082-2/+6
| | | | | Task-number: Reviewed-by: Martin Jones
* Symbian build fix to declarative auto and benchmark testsJoona Petrell2010-05-141-1/+8
| | | | | Task-number: QTBUG-9491 Reviewed-by: Martin Jones
* 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.