aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickvisualdatamodel/data/singleroleproperties.qml
blob: 6133c61bc5fa200eb4e999656f17ccb807e73807 (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
import QtQuick 2.0
import tst_qquickvisualdatamodel 1.0

ListView {
    width: 100
    height: 100
    model: VisualDataModel {
        id: visualModel
        objectName: "visualModel"

        groups: [
            VisualDataGroup { id: visibleItems; objectName: "visibleItems"; name: "visible"; includeByDefault: true },
            VisualDataGroup { id: selectedItems; objectName: "selectedItems"; name: "selected" }
        ]

        model: SingleRoleModel {}

        delegate: Item {
            id: delegate

            objectName: "delegate"
            width: 100
            height: 2
            property variant test1: index
            property variant test2: model.index
            property variant test3: name
            property variant test4: model.name
            property variant test5: modelData
            property variant test6: model.modelData


            function setTest3(arg) { name = arg }
            function setTest4(arg) { model.name = arg }
            function setTest5(arg) { modelData = arg }
            function setTest6(arg) { model.modelData = arg }
        }

    }
}