-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMain.qml
More file actions
475 lines (430 loc) · 13 KB
/
Copy pathMain.qml
File metadata and controls
475 lines (430 loc) · 13 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
import QtQuick
// import QtQuick.VirtualKeyboard
// import QtLocation
// import QtPositioning
Window {
id: window
width: 1920
height: 1080
visibility: Window.FullScreen
title: qsTr("InteriorLightControl_InfotainmentSystem")
// array to hold images
property var imageAssetArr: [
"qrc:/Images/car-model-1.jpg", // 0
"qrc:/Images/car-model-2.jpg", // 1
"qrc:/Images/car-icon.png", // 2
"qrc:/Images/lock.png", // 3
"qrc:/Images/unlock.png", // 4
"qrc:/Images/user.png", // 5
"qrc:/Images/search.png", // 6
"qrc:/Images/volume.png", // 7
"qrc:/Images/iti-logo.png", // 8
"qrc:/Images/play.png", // 9
"qrc:/Images/next.png", // 10
"qrc:/Images/previous.png", // 11
"qrc:/Images/album-cover.png", // 12
"qrc:/Images/star.png", // 13
"qrc:/Images/playlist.png", // 14
"qrc:/Images/tune.png", // 15
"qrc:/Images/headlight.png", // 16
"qrc:/Images/headlight-on.png", // 17
"qrc:/Images/battery.png", // 18
"qrc:/Images/location.png", // 19
"qrc:/Images/iti-login.jpeg" // 20
]
property bool loginScreenVisible: true
Rectangle {
id: loginScreen
anchors.fill: parent
color: "white"
visible: loginScreenVisible
z: 1 // crucial for displaying it over the entire app
Image {
id: itiLoginLogo
anchors {
verticalCenter: parent.verticalCenter
centerIn: parent
}
height: parent.height * 0.85
fillMode: Image.PreserveAspectFit
source: imageAssetArr[20]
}
Timer {
id: lockScreenTimer
interval: 2000
running: true
onTriggered: loginScreenVisible = false
repeat: false
}
}
// bottom bar
Rectangle {
id: bottomBar
anchors {
left: parent.left
right: parent.right
bottom: parent.bottom
}
color: "black"
height: parent.height / 12
Image {
id: carSettingsIcon
anchors {
left: parent.left
leftMargin: 30
verticalCenter: parent.verticalCenter
}
height: parent.height * 0.85
fillMode: Image.PreserveAspectFit
source: imageAssetArr[2]
}
Image {
id: volumeLevelIcon
anchors {
right: parent.right
rightMargin: 30
verticalCenter: parent.verticalCenter
}
height: parent.height * 0.7
fillMode: Image.PreserveAspectFit
source: imageAssetArr[7]
}
Image {
id: itiLogo
anchors {
verticalCenter: parent.verticalCenter
centerIn: parent
}
height: parent.height * 0.85
fillMode: Image.PreserveAspectFit
source: imageAssetArr[8]
}
}
// right screen (Map + MP3 + info)
Rectangle {
id: rightScreen
anchors {
top: parent.top
bottom: bottomBar.top
right: parent.right
}
// // indicates that open-source map component will be used
// Plugin {
// id: mapPlugin
// name: "osm"
// }
// // Map GUI component
// Map {
// anchors.fill: parent
// plugin: mapPlugin
// center: QtPositioning.coordinate(30.076667, 31.018889) // iti smart village coordinates
// zoomLevel: 15
// }
Image {
id: map
anchors.fill: parent
// width: parent.width
// fillMode: Image.PreserveAspectFit
source: imageAssetArr[19]
}
// mp3 player
Rectangle {
id: mp3Player
anchors {
left: parent.left
right: parent.right
bottom: parent.bottom
}
color: "#f8f5f5"
height: parent.height / 6
// album cover
Image {
id: albumCover
anchors {
verticalCenter: parent.verticalCenter
left: parent.left
margins: 40
}
width: parent.width / 12
fillMode: Image.PreserveAspectFit
source: imageAssetArr[12]
}
Text {
id: songName
anchors {
top: albumCover.top
topMargin: 15
left: albumCover.right
leftMargin: 15
}
font.pixelSize: 21
font.bold: true
color: "#9e9d9d"
text: "Court of The Crimson King"
}
Text {
id: bandName
anchors {
top: songName.bottom
topMargin: 5
left: songName.left
}
font.pixelSize: 14
font.bold: true
color: "#bebebe"
text: "Crimson King"
}
Image {
id: favIcon
anchors {
top: bandName.bottom
topMargin: 5
right: songName.right
bottom: albumCover.bottom
bottomMargin: 5
}
width: parent.width / 40
fillMode: Image.PreserveAspectFit
source: imageAssetArr[13]
}
// controls
Image {
id: playIcon
anchors {
verticalCenter: parent.verticalCenter
centerIn: parent
margins: 75
}
width: parent.width / 50
fillMode: Image.PreserveAspectFit
source: imageAssetArr[9]
}
Image {
id: playPreviousIcon
anchors {
verticalCenter: parent.verticalCenter
right: playIcon.left
margins: 50
}
width: parent.width / 50
fillMode: Image.PreserveAspectFit
source: imageAssetArr[11]
}
Image {
id: playNextIcon
anchors {
verticalCenter: parent.verticalCenter
left: playIcon.right
margins: 50
}
width: parent.width / 50
fillMode: Image.PreserveAspectFit
source: imageAssetArr[10]
}
// rhs controls
Image {
id: tuneIcon
anchors {
verticalCenter: parent.verticalCenter
right: parent.right
rightMargin: 40
}
width: parent.width / 40
fillMode: Image.PreserveAspectFit
source: imageAssetArr[15]
}
Image {
id: musicSearchIcon
anchors {
verticalCenter: parent.verticalCenter
right: tuneIcon.left
margins: 50
}
width: parent.width / 40
fillMode: Image.PreserveAspectFit
source: imageAssetArr[6]
}
Image {
id: playlistIcon
anchors {
verticalCenter: parent.verticalCenter
right: musicSearchIcon.left
margins: 50
}
width: parent.width / 40
fillMode: Image.PreserveAspectFit
source: imageAssetArr[14]
}
}
Image {
id: lockIcon
anchors {
left: parent.left
top: parent.top
margins: 20
}
width: parent.width / 50
fillMode: Image.PreserveAspectFit
source: (systemHandler.carLocked ? imageAssetArr[3] : imageAssetArr[4])
MouseArea {
anchors.fill: parent
onClicked: systemHandler.carLocked = !systemHandler.carLocked
}
}
Text {
id: dateTimeDisplay
anchors {
left: lockIcon.right
leftMargin: 25
bottom: lockIcon.bottom
}
font.pixelSize: 12
font.bold: true
color: "black"
text: systemHandler.currentTime
}
Text {
id: outdoorTempDisplay
anchors {
left: dateTimeDisplay.right
leftMargin: 25
bottom: lockIcon.bottom
}
font.pixelSize: 12
font.bold: true
color: "black"
text: systemHandler.outdoorTemp + "°C"
}
Image {
id: userIcon
anchors {
left: outdoorTempDisplay.right
leftMargin: 25
bottom: lockIcon.bottom
}
width: parent.width / 50
fillMode: Image.PreserveAspectFit
source: imageAssetArr[5]
}
Text {
id: userName
anchors {
left: userIcon.right
leftMargin: 10
bottom: lockIcon.bottom
}
font.pixelSize: 12
font.bold: true
color: "black"
text: systemHandler.userName
}
// search bar
Rectangle {
id: navSearchBar
color: "#ede9e8"
radius: 5
anchors {
left: lockIcon.left
top: lockIcon.bottom
topMargin: 15
}
Image {
id: searchIcon
anchors {
left: parent.left
leftMargin: 25
verticalCenter: parent.verticalCenter
}
height: parent.height * 0.5
width: 30
source: imageAssetArr[6]
}
Text {
id: searchBarTxt
visible: searchBarTxtInput.text === ""
color: "#ABA5A5"
text: "Navigate"
anchors {
verticalCenter: parent.verticalCenter
left: searchIcon.right
leftMargin: 20
}
}
TextInput{
id: searchBarTxtInput
clip: true
anchors {
top: parent.top
bottom: parent.bottom
right: parent.right
left: searchIcon.right
leftMargin: 20
rightMargin: 20
}
verticalAlignment: Text.AlignVCenter
}
width: parent.width * (1/3)
height: parent.height * (1/12)
}
width: parent.width * (2/3)
}
// left screen (Car UI + LED Control)
Rectangle {
id: leftScreen
anchors {
top: parent.top
bottom: bottomBar.top
right: rightScreen.left
left: parent.left
}
Image {
id: carRender
anchors.centerIn: parent
width: parent.width * 0.85
fillMode: Image.PreserveAspectFit
source: imageAssetArr[1]
}
// led control
Image {
id: lightControlIcon
anchors {
left: parent.left
top: parent.top
leftMargin: 20
topMargin: 50
}
width: parent.width / 20
fillMode: Image.PreserveAspectFit
source: (lightControl.lightToggle ? imageAssetArr[16] : imageAssetArr[17])
MouseArea {
anchors.fill: parent
onClicked: lightControl.setLightToggle(!lightControl.lightToggle)
}
}
// battery indicator
Image {
id: batteryIndicator
anchors {
right: parent.right
top: parent.top
rightMargin: 10
topMargin: 10
}
width: parent.width / 20
fillMode: Image.PreserveAspectFit
source: imageAssetArr[18]
}
Text {
id: batteryPercentage
anchors {
right: batteryIndicator.left
top: batteryIndicator.top
margins: 8
}
font.pixelSize: 12
font.bold: true
color: "#ABABAB"
text: "86%"
}
}
}