~saviq/ubuntu/saucy/qtdeclarative-opensource-src/add-qtquick-delegate-range

« back to all changes in this revision

Viewing changes to tests/auto/quick/qquickpositioners/data/horizontal-animated-disabled.qml

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 14:17:19 UTC
  • Revision ID: package-import@ubuntu.com-20130205141719-qqeyml8wslpyez52
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
 
 
3
Item {
 
4
    width: 640
 
5
    height: 480
 
6
 
 
7
    Row {
 
8
        objectName: "row"
 
9
        add: Transition {
 
10
            enabled: false
 
11
            NumberAnimation { properties: "x" }
 
12
        }
 
13
        move: Transition {
 
14
            enabled: false
 
15
            NumberAnimation { properties: "x" }
 
16
        }
 
17
        Rectangle {
 
18
            objectName: "one"
 
19
            color: "red"
 
20
            x: -100;
 
21
            width: 50
 
22
            height: 50
 
23
        }
 
24
        Rectangle {
 
25
            objectName: "two"
 
26
            color: "blue"
 
27
            x: -100;
 
28
            visible: false
 
29
            width: 50
 
30
            height: 50
 
31
        }
 
32
        Rectangle {
 
33
            objectName: "three"
 
34
            x: -100;
 
35
            color: "green"
 
36
            width: 50
 
37
            height: 50
 
38
        }
 
39
    }
 
40
}