diff options
author | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-03-29 03:58:00 (GMT) |
---|---|---|
committer | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-03-30 03:54:12 (GMT) |
commit | e2f9d31227e9a2126a99503c4285efaf8d894dd9 (patch) | |
tree | 3250f95680545f97a7a909ad553b1bf386b35cb6 /tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml | |
parent | 7a060ca401b4e260fd08c854213024b050a67ff2 (diff) | |
download | Qt-e2f9d31227e9a2126a99503c4285efaf8d894dd9.zip Qt-e2f9d31227e9a2126a99503c4285efaf8d894dd9.tar.gz Qt-e2f9d31227e9a2126a99503c4285efaf8d894dd9.tar.bz2 |
Finished file rename of qdeclarative easefollow to smoothedanimation
Diffstat (limited to 'tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml new file mode 100644 index 0000000..9ae744c --- /dev/null +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml @@ -0,0 +1,13 @@ +import Qt 4.6 + +Rectangle { + width: 300; height: 300; + Rectangle { + objectName: "theRect" + color: "red" + width: 60; height: 60; + x: 100; y: 100; + SmoothedAnimation on x { objectName: "easeX"; to: 200; velocity: 500 } + SmoothedAnimation on y { objectName: "easeY"; to: 200; duration: 250; velocity: 500 } + } +} |