summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/animation/parallelAnimation/parallelAnimation.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-03-26 06:03:37 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-03-28 23:50:09 (GMT)
commitd81e74a5d40202ce17d31f71ae953a19ed7191dd (patch)
tree80bfb6e9d064f19e25038f6ac5990385abeecb5f /tests/auto/declarative/visual/animation/parallelAnimation/parallelAnimation.qml
parentfbcf257f0988f1ffef442195acc9f4b4c1527870 (diff)
downloadQt-d81e74a5d40202ce17d31f71ae953a19ed7191dd.zip
Qt-d81e74a5d40202ce17d31f71ae953a19ed7191dd.tar.gz
Qt-d81e74a5d40202ce17d31f71ae953a19ed7191dd.tar.bz2
Rename visual test to qmlvisual.
Diffstat (limited to 'tests/auto/declarative/visual/animation/parallelAnimation/parallelAnimation.qml')
-rw-r--r--tests/auto/declarative/visual/animation/parallelAnimation/parallelAnimation.qml43
1 files changed, 0 insertions, 43 deletions
diff --git a/tests/auto/declarative/visual/animation/parallelAnimation/parallelAnimation.qml b/tests/auto/declarative/visual/animation/parallelAnimation/parallelAnimation.qml
deleted file mode 100644
index 1980b91..0000000
--- a/tests/auto/declarative/visual/animation/parallelAnimation/parallelAnimation.qml
+++ /dev/null
@@ -1,43 +0,0 @@
-import Qt 4.6
-
-Rectangle {
- width: 400; height: 200
- Rectangle {
- id: redRect
- width: 100; height: 100
- color: "red"
- }
- Rectangle {
- id: redRect2
- width: 100; height: 100
- y: 100
- color: "red"
- }
-
- MouseArea {
- anchors.fill: parent
- onClicked: parent.state = "state1"
- }
-
- states: State {
- name: "state1"
- PropertyChanges {
- target: redRect
- x: 300
- color: "purple"
- }
- PropertyChanges {
- target: redRect2
- x: 300
- color: "purple"
- }
- }
-
- transitions: Transition {
- PropertyAnimation { targets: redRect; properties: "x,color"; duration: 300 }
- ParallelAnimation {
- NumberAnimation { targets: redRect2; properties: "x"; duration: 300 }
- ColorAnimation { targets: redRect2; properties: "color"; duration: 300 }
- }
- }
-}