summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2010-03-16 08:02:55 (GMT)
committerMartin Jones <martin.jones@nokia.com>2010-03-16 08:02:55 (GMT)
commit99d756aca86fb9c7a92d50bda05a9911af3229b6 (patch)
tree4187e57fdc13d70ee4b2bbfb8b60c567d072c447 /src
parent1c1465587ed116695171a73deffa1dc0729856d0 (diff)
downloadQt-99d756aca86fb9c7a92d50bda05a9911af3229b6.zip
Qt-99d756aca86fb9c7a92d50bda05a9911af3229b6.tar.gz
Qt-99d756aca86fb9c7a92d50bda05a9911af3229b6.tar.bz2
Add easing changes to QmlChanges.txt
Diffstat (limited to 'src')
-rw-r--r--src/declarative/QmlChanges.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/declarative/QmlChanges.txt b/src/declarative/QmlChanges.txt
index e9325b7..7c584b4d 100644
--- a/src/declarative/QmlChanges.txt
+++ b/src/declarative/QmlChanges.txt
@@ -57,6 +57,14 @@ matchProperties and matchTargets have been renamed back to properties and target
The semantics are explained in the PropertyAnimation::properties documentation
and the animation overview documentation.
+Easing curves and their parameters are now specified via dot properties:
+* easing.type : enum
+* easing.amplitude : real
+* easing.overshoot : real
+* easing.period : real
+For example:
+PropertyAnimation { properties: "y"; easing.type: "InOutElastic"; easing.amplitude: 2.0; easing.period: 1.5 }
+
C++ API
-------
QML_DEFINE_... definition macros, previously global macros, are replaced by