summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/pathview/dummydata/MenuModel.qml
blob: 5b973d7b03cba34bc497cf1edfa5eb25e1553f3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ListModel2 {
    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"
    }
}