blob: c5d88cdc7a49e5769cfca637455ad089aba0ed70 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
import Qt 4.6
Rectangle {
width: 240
height: 320
color: "#ffffff"
resources: [
Component {
id: delegate
Rectangle {
id: wrapper
objectName: "wrapper"
height: 20
width: 60
color: "white"
border.color: "black"
Text {
text: index
}
Text {
x: 20
id: textName
objectName: "textName"
text: name
}
Text {
x: 40
id: textNumber
objectName: "textNumber"
text: number
}
}
}
]
PathView {
id: view
objectName: "view"
width: 240
height: 320
model: testModel
delegate: delegate
snapPosition: 0.0001
path: Path {
startY: 120
startX: 160
PathQuad {
y: 120
x: 80
controlY: 330
controlX: 100
}
PathLine {
y: 160
x: 20
}
PathCubic {
y: 120
x: 160
control1Y: 0
control1X: 100
control2Y: 000
control2X: 200
}
}
}
}
|