-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.qml
469 lines (428 loc) · 14.6 KB
/
main.qml
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
import QtQuick 2.15
import QtQuick.Window 2.15
Window {
visible: true
width: 700
height: width/2
title: qsTr("Task Three")
//Root
Rectangle {
id:root
color:"#222"
anchors.fill:parent
Loader { //it is an active focus
id:loader
sourceComponent: media_player
focus: true
anchors{
top: root.top
topMargin: 10
left: root.left
leftMargin: 10
right: root.horizontalCenter
bottom: root.verticalCenter
bottomMargin: 0.03*root.height
}
}
//Media Player
Component {
id: media_player
Rectangle {
id:player
implicitWidth: player_image.width
implicitHeight: player_image.height
Image {
id: player_image
source: "images/taylor.jpg"
anchors.fill: parent
}
//PlayerBar
Rectangle{
id:playerbar
width: player.width
height: player.height*0.25
color:"white"
anchors.top: player.bottom
//Player Buttons
BorderImage {
id: thumbsup
source: "images/thumbs_up.png"
anchors {
verticalCenter: start.verticalCenter
left: playerbar.left
leftMargin: playerbar.width*0.05
}
KeyNavigation.right: previous
KeyNavigation.left: thumbsdown
KeyNavigation.backtab: phone
KeyNavigation.tab: spotify
Rectangle {
anchors.fill: parent
anchors.margins: -border.width
z: -1
border.width: 3
border.color: "#ffc20e"
color: 'transparent'
visible: parent.activeFocus ? true:false
}
}
BorderImage {
id: previous
source: "images/previous.png"
anchors {
verticalCenter: start.verticalCenter
right: start.left
rightMargin: playerbar.width*0.15
}
KeyNavigation.right: start
KeyNavigation.left: thumbsup
KeyNavigation.backtab: phone
KeyNavigation.tab: spotify
Rectangle {
anchors.fill: parent
anchors.margins: -border.width
z: -1
border.width: 3
border.color: "#ffc20e"
color: 'transparent'
visible: parent.activeFocus ? true:false
}
}
BorderImage {
id:start
source: "images/start.png"
focus: true
anchors {
horizontalCenter: playerbar.horizontalCenter
verticalCenter: playerbar.verticalCenter
}
KeyNavigation.right: next
KeyNavigation.left: previous
KeyNavigation.backtab: phone
KeyNavigation.tab: spotify
Rectangle {
anchors.fill: parent
anchors.margins: -border.width
z: -1
border.width: 3
border.color: "#ffc20e"
color: 'transparent'
visible: parent.activeFocus ? true:false
}
}
BorderImage {
id: next
source: "images/next.png"
anchors {
verticalCenter: start.verticalCenter
left: start.right
leftMargin: playerbar.width*0.15
}
KeyNavigation.right: thumbsdown
KeyNavigation.left: start
KeyNavigation.backtab: phone
KeyNavigation.tab: spotify
Rectangle {
anchors.fill: parent
anchors.margins: -border.width
z: -1
border.width: 3
border.color: "#ffc20e"
color: 'transparent'
visible: parent.activeFocus ? true:false
}
}
BorderImage {
id: thumbsdown
source: "images/thumbs_down.png"
anchors {
verticalCenter: start.verticalCenter
right: playerbar.right
rightMargin: playerbar.width*0.05
}
KeyNavigation.right: thumbsup
KeyNavigation.left: next
KeyNavigation.backtab: phone
KeyNavigation.tab: spotify
Rectangle {
anchors.fill: parent
anchors.margins: -border.width
z: -1
border.width: 3
border.color: "#ffc20e"
color: 'transparent'
visible: parent.activeFocus ? true:false
}
}
}
}
}
//Other Apps
AppLauncher {
id:spotify
margin: root.width*0.01
icon: "images/spotify.png"
background: "#0dd3ff"
text: "Spotify"
anchors {
top: parent.top
topMargin: margin*2
left: parent.horizontalCenter
leftMargin: margin * 5
}
KeyNavigation.left: youtube
KeyNavigation.right: playstore
KeyNavigation.up: pandora
KeyNavigation.down: pandora
KeyNavigation.backtab: loader
KeyNavigation.tab: phone
}
AppLauncher {
id:playstore
margin: root.width*0.01
icon: "images/playstore.png"
background: "#a51890"
text: "Play Store"
anchors {
top: parent.top
topMargin: margin*2
left: spotify.right
leftMargin: margin * 5
}
KeyNavigation.left: spotify
KeyNavigation.right: youtube
KeyNavigation.up: playmusic
KeyNavigation.down: playmusic
KeyNavigation.backtab: loader
KeyNavigation.tab: phone
}
AppLauncher {
id:youtube
margin: root.width*0.01
icon: "images/youtube.png"
background: "#fe5000"
text: "Youtube"
anchors {
top: parent.top
topMargin: margin*2
left: playstore.right
leftMargin: margin * 5
}
KeyNavigation.left: playstore
KeyNavigation.right: spotify
KeyNavigation.up: downloads
KeyNavigation.down: downloads
KeyNavigation.backtab: loader
KeyNavigation.tab: phone
}
AppLauncher {
id: pandora
margin: root.width*0.01
icon: "images/pandora.png"
background: "#fff"
text: "Pandora"
anchors {
top: spotify.bottom
topMargin: margin * 4
left: parent.horizontalCenter
leftMargin: margin * 5
}
KeyNavigation.left: downloads
KeyNavigation.right: playmusic
KeyNavigation.up: spotify
KeyNavigation.down: spotify
KeyNavigation.backtab: loader
KeyNavigation.tab: phone
}
AppLauncher {
id: playmusic
margin: root.width*0.01
icon: "images/playmusic.png"
background: "yellow"
text: "Play Music"
anchors {
top: playstore.bottom
topMargin: margin * 4
left: pandora.right
leftMargin: margin * 5
}
KeyNavigation.left: pandora
KeyNavigation.right: downloads
KeyNavigation.up: playstore
KeyNavigation.down: playstore
KeyNavigation.backtab: loader
KeyNavigation.tab: phone
}
AppLauncher {
id: downloads
margin: root.width*0.01
icon: "images/downloads.png"
background: "#72ef36"
text: "Downloads"
anchors {
top: youtube.bottom
topMargin: margin * 4
left: playmusic.right
leftMargin: margin * 5
}
KeyNavigation.left: playmusic
KeyNavigation.right: pandora
KeyNavigation.up: youtube
KeyNavigation.down: youtube
KeyNavigation.backtab: loader
KeyNavigation.tab: phone
}
// Three lines in the middle
Rectangle {
id:left
color:"#d7d7d8"
width: root.width*0.03
height: root.height*0.01
anchors
{
bottom: menu.top
bottomMargin: 25
right: center.left
rightMargin: 10
}
}
Rectangle {
id:center
color:"white"
width: root.width*0.03
height: root.height*0.01
anchors
{
bottom: menu.top
bottomMargin: 25
horizontalCenter: root.horizontalCenter
}
}
Rectangle {
id:right
color:"#d7d7d8"
width: root.width*0.03
height: root.height*0.01
anchors
{
bottom: menu.top
bottomMargin: 25
left: center.right
leftMargin: 10
}
}
//Recent Apps
AppLauncher {
id:phone
margin: root.width*0.011
icon: "images/phone.png"
background: "#72ef36"
anchors {
bottom: parent.bottom
bottomMargin: margin * 1.5
left: parent.left
leftMargin: margin * 1.5
}
KeyNavigation.left: settings
KeyNavigation.right: podcast
KeyNavigation.backtab: spotify
KeyNavigation.tab: loader
}
AppLauncher {
id:podcast
margin: root.width*0.011
icon: "images/podcast.png"
background: "#a51890"
anchors {
bottom: parent.bottom
bottomMargin: margin * 1.5
left: phone.right
leftMargin: margin * 4.5
}
KeyNavigation.left: phone
KeyNavigation.right: play
KeyNavigation.backtab: spotify
KeyNavigation.tab: loader
}
AppLauncher {
id:play
margin: root.width*0.011
icon: "images/play.png"
background: "#0dd3ff"
anchors {
bottom: parent.bottom
bottomMargin: margin * 1.5
left: podcast.right
leftMargin: margin * 4.5
}
KeyNavigation.left: podcast
KeyNavigation.right: menu
KeyNavigation.backtab: spotify
KeyNavigation.tab: loader
}
AppLauncher {
id:menu
margin: root.width*0.011
icon: "images/menu.png"
background: "#fff"
anchors {
bottom: parent.bottom
bottomMargin: margin * 1.5
left: play.right
leftMargin: margin * 4.5
}
KeyNavigation.left: play
KeyNavigation.right: maps
KeyNavigation.backtab: spotify
KeyNavigation.tab: loader
}
AppLauncher {
id:maps
margin: root.width*0.011
icon: "images/maps.png"
background: "white"
anchors {
bottom: parent.bottom
bottomMargin: margin * 1.5
left: menu.right
leftMargin: margin * 4.5
}
KeyNavigation.left: menu
KeyNavigation.right: music
KeyNavigation.backtab: spotify
KeyNavigation.tab: loader
}
AppLauncher {
id:music
margin: root.width*0.011
icon: "images/music.png"
background: "purple"
anchors {
bottom: parent.bottom
bottomMargin: margin * 1.5
left: maps.right
leftMargin: margin * 4.5
}
KeyNavigation.left: maps
KeyNavigation.right: settings
KeyNavigation.backtab: spotify
KeyNavigation.tab: loader
}
AppLauncher {
id:settings
margin: root.width*0.011
icon: "images/settings.png"
background: "#caccd1"
anchors {
bottom: parent.bottom
bottomMargin: margin * 1.5
left: music.right
leftMargin: margin * 4.5
}
KeyNavigation.left: music
KeyNavigation.right: phone
KeyNavigation.backtab: spotify
KeyNavigation.tab: loader
}
}
}