blob: 1b51a43dcbd2a17e3e891ad4b41fd4a16131def9 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
import Qt 4.6
//! [0]
Rectangle {
width: 200
height: 240
color: "white"
// MyPets model is defined in dummydata/MyPetsModel.qml
// The viewer automatically loads files in dummydata/* to assist
// development without a real data source.
// This one contains my pets.
// Define a delegate component that includes a separator for sections.
Component {
id: PetDelegate
Item {
id: Wrapper
width: 200
// My height is the combined height of the description and the section separator
height: Separator.height + Desc.height
Rectangle {
id: Separator
color: "lightsteelblue"
width: parent.width
// Only show the section separator when we are the beginning of a new section
// Note that for this to work nicely, the list must be ordered by section.
height: Wrapper.ListView.prevSection != Wrapper.ListView.section ? 20 : 0
opacity: Wrapper.ListView.prevSection != Wrapper.ListView.section ? 1 : 0
Text {
text: Wrapper.ListView.section; font.bold: true
x: 2; height: parent.height; verticalAlignment: 'AlignVCenter'
}
}
Item {
id: Desc
x: 5
height: Layout.height + 4
anchors.top: Separator.bottom
VerticalPositioner {
id: Layout
y: 2
Text { text: 'Name: ' + name }
Text { text: 'Type: ' + type }
Text { text: 'Age: ' + age }
}
}
}
}
// Define a highlight component. Just one of these will be instantiated
// by each ListView and placed behind the current item.
Component {
id: PetHighlight
Rectangle {
color: "#FFFF88"
}
}
// The list
ListView {
id: List
width: 200
height: parent.height
model: MyPetsModel
delegate: PetDelegate
highlight: PetHighlight
// The sectionExpression is simply the size of the pet.
// We use this to determine which section we are in above.
sectionExpression: "size"
focus: true
}
}
//! [0]
|