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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
import QtQuick 2.0
Item {
id: img_destination_direction
width: 100
height: 100
visible: false
Rectangle {
width: parent.width
height: parent.height
color: "#a0a0a0"
Image {
id: direction
anchors.fill: parent
anchors.margins: 1
source: "images/SW_Patern_3.bmp"
}
}
states: [
State {
name: "0" // NoDirection
PropertyChanges { target: img_destination_direction; visible: false }
},
State {
name: "1" // DirectionForward
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/145px-16_cardinal_points_N.png" }
},
State {
name: "2" // DirectionBearRight
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/11_2_bear_right_112px-Signal_C117a.svg.png" }
},
State {
name: "3" // DirectionLightRight
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/145px-16_cardinal_points_NE.png" }
},
State {
name: "4" // DirectionRight
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/145px-16_cardinal_points_E.png" }
},
State {
name: "5" // DirectionHardRight
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/145px-16_cardinal_points_SE.png" }
},
State {
name: "6" // DirectionUTurnRight
PropertyChanges { target: img_destination_direction; visible: true }
// PropertyChanges { target: direction; source: "images/146px-Israely_road_sign_211.svg.png" }
PropertyChanges { target: direction; source: "images/146px-Israely_road_sign_212.svg.png" } // No u-turn right in CES2019
},
State {
name: "7" // DirectionUTurnLeft
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/146px-Israely_road_sign_212.svg.png" }
},
State {
name: "8" // DirectionHardLeft
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/145px-16_cardinal_points_SW.png" }
},
State {
name: "9" // DirectionLeft
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/145px-16_cardinal_points_W.png" }
},
State {
name: "10" // DirectionLightLeft
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/145px-16_cardinal_points_NW.png" }
},
State {
name: "11" // DirectionBearLeft
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/10_11_bear_left_112px-Signal_C117a.svg.png" }
},
State {
name: "12" // arrived at your destination
PropertyChanges { target: img_destination_direction; visible: true }
PropertyChanges { target: direction; source: "images/Emoji_u1f3c1.svg" }
},
State {
name: "invisible"
PropertyChanges { target: img_destination_direction; visible: false }
}
]
}
|