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

PathView {
    id: view

    property string title

    width: 100; height: 100;

    model: 1
    delegate: Text { objectName: "listItem"; text: view.title }

    path: Path {
        startX: 25; startY: 25;
        PathLine { x: 75; y: 75 }
    }
}