summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/pathview/dummydata/MenuModel.qml
blob: 20b3b7d19bb6bf76927bf20767c03b0a2cf9af84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Qt 4.6

ListModel {
    id: MenuModel
    ListElement {
        name: "Bill Jones"
        icon: "pics/qtlogo-64.png"
    }
    ListElement {
        name: "Jane Doe"
        icon: "pics/qtlogo-64.png"
    }
    ListElement {
        name: "John Smith"
        icon: "pics/qtlogo-64.png"
    }
}