summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qdeclarativespringanimation_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Make SpringAnimation usable inside a transitionmae2010-08-041-16/+1
| | | | | | | | | | | | 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
* Added QDeclarativeSpringAnimationmae2010-07-071-0/+126
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.