summaryrefslogtreecommitdiffstats
path: root/examples/declarative/gridview/gridview.qml
blob: 2e5110acf80bc366c5da93556327e05b95c01b7f (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
import Qt 4.6

Rectangle {
    width: 300; height: 400; color: "white"

    ListModel {
        id: AppModel
        ListElement {
            name: "Music"
            icon: "AudioPlayer_48.png"
        }
        ListElement {
            name: "Movies"
            icon: "VideoPlayer_48.png"
        }
        ListElement {
            name: "Camera"
            icon: "Camera_48.png"
        }
        ListElement {
            name: "Calendar"
            icon: "DateBook_48.png"
        }
        ListElement {
            name: "Messaging"
            icon: "EMail_48.png"
        }
        ListElement {
            name: "Todo List"
            icon: "TodoList_48.png"
        }
        ListElement {
            name: "Contacts"
            icon: "AddressBook_48.png"
        }
    }

    Component {
        id: AppDelegate
        Item {
            width: 100; height: 100
            Image { id: Icon; y: 20; anchors.horizontalCenter: parent.horizontalCenter; source: icon }
            Text { anchors.top: Icon.bottom; anchors.horizontalCenter: parent.horizontalCenter; text: name }
        }
    }

    Component {
        id: AppHighlight
        Rectangle { width: 80; height: 80; color: "#FFFF88" }
    }

    GridView {
        id: List1
        anchors.fill: parent
        cellWidth: 100; cellHeight: 100
        model: AppModel; delegate: AppDelegate
        highlight: AppHighlight
        focus: true
    }
}