blob: 4109633c68506631ef704b6ccfe23a1ee1c0bdfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import Qt 4.6
//![0]
Package {
Text { id: listDelegate; width: 200; height: 25; text: "Empty"; Package.name: "list" }
Text { id: gridDelegate; width: 100; height: 50; text: "Empty"; Package.name: "grid" }
Rectangle {
id: wrapper
width: 200; height: 25
color: "lightsteelblue"
Text { text: display; anchors.centerIn: parent }
MouseRegion {
anchors.fill: parent
onClicked: {
if (wrapper.state == "inList")
wrapper.state = "inGrid";
else
wrapper.state = "inList";
}
}
state: "inList"
states: [
State {
name: 'inList'
ParentChange { target: wrapper; parent: listDelegate }
},
State {
name: 'inGrid'
ParentChange { target: wrapper; parent: gridDelegate }
PropertyChanges { target: wrapper; x: 0; y: 0; width: gridDelegate.width; height: gridDelegate.height }
}
]
transitions: [
Transition {
SequentialAnimation {
ParentAction { target: wrapper }
NumberAnimation { targets: wrapper; properties: 'x,y,width,height'; duration: 300 }
}
}
]
}
}
//![0]
|