blob: 189d40ca1e7a3cb5d92d1dd7f37e74ded931d997 (
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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
// SPDX-License-Identifier: GPL-3.0+
// Copyright (C) 2021 AISIN CORPORATION
import QtQuick 2.0
import QtQuick.Controls 1.5
import QtLocation 5.9
import QtPositioning 5.6
Item {
id: btn_guidance
// 0: idle
// 1: routing
// 2: on guide
property int sts_guide: 0
onSts_guideChanged: {
//console.log("onSts_guideChanged")
switch(btn_guidance.sts_guide){
case 0:
positionTimer.stop();
break
case 1:
break
case 2:
positionTimer.start();
break
default:
break
}
}
function startGuidance() {
btn_present_position.state = "Flowing"
btn_guidance.sts_guide = 2
btn_guidance.state = "onGuide"
}
function discardWaypoints(startFromCurrentPosition) {
if (startFromCurrentPosition === undefined) startFromCurrentPosition = false
map.initDestination(startFromCurrentPosition)
if(btn_guidance.sts_guide != 0){
map.qmlSignalStopDemo()
}
if(map.center !== map.currentpostion){
btn_present_position.state = "Optional"
}
btn_guidance.sts_guide = 0
btn_guidance.state = "Idle"
}
Image {
id: discard_image
x: 4
y: 4
width: 92
height: 92
visible: false
source: "images/07_CANCEL.png"
}
Timer {
id: positionTimer
interval: 100
repeat: true
onTriggered: map.updatePositon()
}
Image {
id: guidance_image
x: 4
y: 4
width: 92
height: 92
visible: false
source: "images/06_START-DEMO.png"
}
Button {
id: discard
width: 100
height: 100
opacity: 0
visible: false
onClicked: discardWaypoints()
}
Button {
id: guidance
width: 100
height: 100
opacity: 0
visible: false
onClicked: { startGuidance() }
}
states: [
State {
name: "Idle"
PropertyChanges { target: discard; visible: false }
PropertyChanges { target: discard_image; visible: false }
PropertyChanges { target: guidance; visible: false }
PropertyChanges { target: guidance_image; visible: false }
PropertyChanges { target: guidance; x: 0 }
PropertyChanges { target: guidance_image; x: 0 }
PropertyChanges { target: progress_next_cross; state: "invisible" }
},
State {
name: "Routing"
PropertyChanges { target: discard; visible: true }
PropertyChanges { target: discard_image; visible: true }
PropertyChanges { target: guidance; visible: true }
PropertyChanges { target: guidance_image; visible: true }
PropertyChanges { target: guidance; x: -100 }
PropertyChanges { target: guidance_image; x: -100 }
PropertyChanges { target: progress_next_cross; state: "invisible" }
},
State {
name: "onGuide"
PropertyChanges { target: discard; visible: true }
PropertyChanges { target: discard_image; visible: true }
PropertyChanges { target: guidance; visible: false }
PropertyChanges { target: guidance_image; visible: false }
PropertyChanges { target: guidance; x: 0 }
PropertyChanges { target: guidance_image; x: 0 }
PropertyChanges { target: progress_next_cross; state: "visible" }
}
]
transitions: Transition {
NumberAnimation { properties: "x"; easing.type: Easing.InOutQuad }
NumberAnimation { properties: "visible"; easing.type: Easing.InOutQuad }
}
}
/*##^##
Designer {
D{i:0;autoSize:true;height:480;width:640}
}
##^##*/
|