aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickpathview/data/treemodel.qml
blob: fcf6922d0098fe1b0ff8dea403e8d86c71e4f193 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0

PathView {
    width: 320
    height: 240
    function setRoot(index) {
        vdm.rootIndex = vdm.modelIndex(index);
    }
    model: VisualDataModel {
        id: vdm
        model: myModel
        delegate: Text { objectName: "wrapper"; text: display }
    }

    path: Path {
        startX: 0; startY: 120
        PathLine { x: 320; y: 120 }
    }
}