summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/gridview/gridview.qml
blob: cf345aa6aac2101cca754b9ae161e1dd2db81adb (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
import Qt 4.7

//! [3]
Rectangle {
    width: 240; height: 180; color: "white"
    // ContactModel model is defined in dummydata/ContactModel.qml
    // The launcher automatically loads files in dummydata/* to assist
    // development without a real data source.

    // Define a delegate component.  A component will be
    // instantiated for each visible item in the list.
//! [0]
    Component {
        id: delegate
        Item {
            id: wrapper
            width: 80; height: 78
            Column {
                Image { source: portrait; anchors.horizontalCenter: parent.horizontalCenter }
                Text { text: name; anchors.horizontalCenter: parent.horizontalCenter }
            }
        }
    }
//! [0]
    // Define a highlight component.  Just one of these will be instantiated
    // by each ListView and placed behind the current item.
//! [1]
    Component {
        id: highlight
        Rectangle {
            color: "lightsteelblue"
            radius: 5
        }
    }
//! [1]
    // The actual grid
//! [2]
    GridView {
        width: parent.width; height: parent.height
        model: ContactModel; delegate: delegate
        cellWidth: 80; cellHeight: 80
        highlight: highlight
        focus: true
    }
//! [2]
}
//! [3]