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