Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
39 lines
900 B
QML
39 lines
900 B
QML
import QtQuick 1.0
|
|
|
|
PathView {
|
|
id: pathview
|
|
property int viewCount: count
|
|
objectName: "pathview"
|
|
width: 240; height: 320
|
|
pathItemCount: testObject.pathItemCount
|
|
|
|
function checkProperties() {
|
|
testObject.error = false;
|
|
if (testObject.useModel && pathview.model != testData) {
|
|
console.log("model property incorrect");
|
|
testObject.error = true;
|
|
}
|
|
}
|
|
|
|
model: testObject.useModel ? testData : 0
|
|
|
|
delegate: Component {
|
|
id: myDelegate
|
|
Rectangle {
|
|
id: wrapper
|
|
objectName: "wrapper"
|
|
property bool onPath: PathView.onPath
|
|
width: 20; height: 20; color: name
|
|
Text {
|
|
objectName: "myText"
|
|
text: name
|
|
}
|
|
}
|
|
}
|
|
|
|
path: Path {
|
|
startX: 120; startY: 20;
|
|
PathLine { x: 120; y: 300 }
|
|
}
|
|
}
|