summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation
Commit message (Collapse)AuthorAgeFilesLines
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-292-2/+2
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Fix SmoothedAnimation test and docsAlan Alpert2010-09-095-6/+889
| | | | | | | | | The SmoothedAnimation visual test was misleading, and has been expanded to include more common use cases. The property documentation was also slightly extended. This should help solve the confusion in the related task. Task-number: QTBUG-12114
* Remove use of SpringFollow and SmoothedFollow in qmlvisual testBea Lam2010-07-121-10/+10
| | | | (onvert to use SpringAnimation and SmoothedAnimation instead)
* Fix versioning of Qt Declarative's in-built typesAlan Alpert2010-04-213-3/+3
| | | | | | Since we aren't releasing for 4.6, all types are new in 4.7. Task-number: QTBUG-10081
* Add SmoothedFollow element to qmlLeonardo Sobral Cunha2010-04-081-0/+40
| | | | | | | | | | | | | | | | | | | | | The SmoothedFollow is the same as the old EaseFollow, so it's not an animation, but its main use case is to be used as a property value source to automatically follow the 'to' property, as in the example below. Rectangle { color: "green" width: 60; height: 60; SmoothedFollow on x { to: rect1.x - 5; velocity: 200 } SmoothedFollow on y { to: rect1.y - 5; velocity: 200 } } This element shares the internal implementation with SmoothedAnimation, both providing the same easing function, but with SmoothedFollow it's easier to set a start value to animate intially and then start to follow, while SmoothedAnimation is still convenient for using inside Behaviors and Transitions. Reviewed-by: Michael Brasser
* Finished file rename of qdeclarative easefollow to smoothedanimationLeonardo Sobral Cunha2010-03-309-0/+1852