blob: 785fde6d3e35422d6fe3eee576d65651261a7e38 (
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
45
46
47
48
|
import Qt 4.7
//![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 }
MouseArea {
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
x: 0; y: 0; width: gridDelegate.width; height: gridDelegate.height
}
}
]
transitions: [
Transition {
ParentAnimation {
NumberAnimation { properties: 'x,y,width,height'; duration: 300 }
}
}
]
}
}
//![0]
|