summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qdeclarativespringanimation.cpp
Commit message (Collapse)AuthorAgeFilesLines
* qdoc: Reorganized the QML elements table to be a dictionary...Martin Smith2010-08-161-0/+1
| | | | ...and a set of functional group pages.
* Improve docs on QML Animation page and associated elementsBea Lam2010-08-051-1/+2
| | | | Task-number: QTBUG-12666
* Make SpringAnimation usable inside a transitionmae2010-08-041-130/+98
| | | | | | | | | | | | 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
* various doc improvements for animation elementsBea Lam2010-07-201-15/+24
|
* fixes, improvements for various docs and example codeBea Lam2010-07-161-5/+27
|
* Make test pass and fix docs following removal of SpringFollowBea Lam2010-07-091-2/+2
|
* Added some documentation to spring animationmae2010-07-081-0/+9
|
* Fix spring animationmae2010-07-081-1/+3
| | | | | Do not stop a spring animation if the to value got changed while notifying the target property change.
* Added QDeclarativeSpringAnimationmae2010-07-071-0/+435
The QDeclarativeSpringAnimation is a replacement for QDeclarativeSpringFollow. The idea is to remove the Follows quickly. Follows used to have an inSync property. In order to provide an alternative mechanism, the commit also fixes the running property for animations which are controlled by a behavior. Previously running would always return false and never change. Now running does change and indicates that the animation is running indeed.