Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativepathview / data / undefinedpath.qml
1 import QtQuick 1.0
2
3 PathView {
4     id: pathView
5     width: 240; height: 200
6     path: Path {
7         startX: pathView.undef/2.0; startY: 0
8         PathLine { x: pathView.undef/2.0; y: 0 }
9     }
10
11     delegate: Text { text: value }
12     model: ListModel {
13         ListElement { value: "one" }
14         ListElement { value: "two" }
15         ListElement { value: "three" }
16     }
17 }