summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/animation/propertyAction/propertyAction.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/propertyAction/propertyAction.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/propertyAction/propertyAction.qml')
-rw-r--r--tests/auto/declarative/visual/animation/propertyAction/propertyAction.qml34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/auto/declarative/visual/animation/propertyAction/propertyAction.qml b/tests/auto/declarative/visual/animation/propertyAction/propertyAction.qml
deleted file mode 100644
index e18e770..0000000
--- a/tests/auto/declarative/visual/animation/propertyAction/propertyAction.qml
+++ /dev/null
@@ -1,34 +0,0 @@
-import Qt 4.6
-
-Rectangle {
- width: 400; height: 400
- Rectangle {
- id: myRect
- width: 100; height: 100
- color: "red"
- }
- MouseArea {
- id: clickable
- anchors.fill: parent
- }
-
- states: State {
- name: "state1"
- when: clickable.pressed
- PropertyChanges {
- target: myRect
- x: 50; y: 50
- color: "blue"
- }
- }
-
- transitions: Transition {
- to: "state1"
- reversible: true
- SequentialAnimation {
- ColorAnimation {}
- PropertyAction { properties: "x" }
- NumberAnimation { properties: "y"; easing.type: "InOutQuad" }
- }
- }
-}