Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / moduleqt47 / data / importqt47.qml
1 import Qt 4.7
2
3 Item {
4     QtObject {}
5
6     Component { Item {} }
7
8     // Util
9     states: [
10         State {
11             name: "bob"
12             AnchorChanges {}
13             ParentChange {}
14             StateChangeScript {}
15             PropertyChanges {}
16         }
17     ]
18     transitions: [
19         Transition {
20             AnchorAnimation {}
21             ColorAnimation {}
22             SmoothedAnimation {}
23             NumberAnimation {}
24             ParallelAnimation {}
25             ParentAnimation {}
26             PauseAnimation {}
27             PropertyAnimation {}
28             RotationAnimation {}
29             ScriptAction {}
30             SequentialAnimation {}
31             SpringAnimation {}
32             Vector3dAnimation {}
33         }
34     ]
35
36     Behavior on x {}
37     Binding {}
38     Connections {}
39     FontLoader {}
40     ListModel { ListElement {} }
41     SystemPalette {}
42     Timer {}
43
44     // graphic items
45     BorderImage {}
46     Column {}
47     MouseArea {}
48     Flickable {}
49     Flipable {}
50     Flow {}
51     FocusPanel {}
52     FocusScope {}
53     Rectangle { gradient: Gradient { GradientStop {} } }
54     Grid {}
55     GridView {}
56     Image {}
57     ListView {}
58     Loader {}
59     PathView {
60         path: Path {
61             PathLine {}
62             PathCubic {}
63             PathPercent {}
64             PathQuad {}
65             PathAttribute {}
66         }
67     }
68     Repeater {}
69     Rotation {}
70     Row {}
71     Translate {}
72     Scale {}
73     Text {}
74     TextEdit {}
75     TextInput {}
76     VisualItemModel {}
77     VisualDataModel {}
78
79     Keys.onPressed: console.log("Press")
80 }