summaryrefslogtreecommitdiffstats
path: root/GUIModel/Menu/MenuFrame.qml
blob: 2c1db60c5e7b56827f29af73e89d3ed479623878 (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
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
/*
 * Copyright (c) 2020,2021 Panasonic Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

import QtQuick 2.0
import QtGraphicalEffects 1.0

Item{
    /* public properties */
    property alias icon: menuFrame.icon
    property alias txt: menuFrame.txt
    property alias position: menuFrame.position
    property alias mode: menuFrame.mode

    /* public functions */
    function upScroll(){
        menuFrame.upScroll()
    }

    function downScroll(){
        menuFrame.downScroll()
    }

    function open(){
        menuFrame.open()
    }

    function close(){
        menuFrame.close()
    }


    Item{
        id:menuFrame

        property string icon: ""
        property string txt: ""
        property var position: -1
        property var mode: "normal"     /* normal or adas */

        property double direction: +1   /* +1:Left -1:Right */
        property int margin: 0

        FontLoader { id: localFont; source: "qrc:/Fonts/Inter-Regular.ttf" }

        onModeChanged: {
            if(mode === "normal"){
                direction = +1
                margin = 0
            } else if(mode === "adas"){
                direction = -1
                margin = 380
            } else {
                direction = +1
                margin = 0
            }

            menuFrame.x = 0
            menuFrameItem.resetPosition()
        }

         onPositionChanged: {
            if(menuFrameItem.isInited === 0){
                menuFrameItem.resetPosition()
                menuFrameItem.isInited = 1
            }
        }


        function upScroll(){
            if(position === 0){
                position = 5
            }
            else if(position === 1){
                animationMenuScrollTo0.start()
                position = 0
            }
            else if(position === 2){
                animationMenuScrollTo1.start()
                position = 1
            }
            else if(position === 3){
                animationMenuScrollTo2.start()
                position = 2
            }
            else if(position === 4){
                animationMenuScrollTo3.start()
                position = 3
            }
            else if(position === 5){
                animationMenuScrollTo4.start()
                position = 4
            }
        }

        function downScroll(){
            if(position === 0){
                animationMenuScrollTo1.start()
                position = 1
            }
            else if(position === 1){
                animationMenuScrollTo2.start()
                position = 2
            }
            else if(position === 2){
                animationMenuScrollTo3.start()
                position = 3
            }
            else if(position === 3){
                animationMenuScrollTo4.start()
                position = 4
            }
            else if(position === 4){
                position = 5
            }
            else if(position === 5){
                animationMenuScrollTo0.start()
                position = 0
            }
        }

        function open(){
            animationMenuOpen.start()
        }

        function close(){
            animationMenuClose.start()
        }


        Item{
            id: menuFrameItem

            property double direction: menuFrame.direction
            property int margin: menuFrame.margin
            property int isInited: 0

            function resetPosition(){
                if(position === 0){
                    menuFrameBgTop.opacity = 1.0
                    menuFrameBg.width = 460
                    menuFrameBg.height = 116*0.4
                    menuIcon.scale = 0.4
                    menuFrameBg.x = 0
                    menuIcon.x = 26 * 0.4 * menuFrameItem.direction + menuFrameItem.margin
                    menuText.scale = 0.4
                    menuText.x = 122 * 0.4 * menuFrameItem.direction + menuFrameItem.margin
                    menuFrameItem.opacity = 0
                    menuFrameItem.x = 100 * menuFrameItem.direction
                    menuFrameItem.y = -68
                }
                if(position === 1){
                    menuFrameBgTop.opacity = 1.0
                    menuFrameBg.width = 460
                    menuFrameBg.height = 116*0.5
                    menuFrameBg.x = 0
                    menuIcon.scale = 0.5
                    menuIcon.x = 26 * 0.5 * menuFrameItem.direction + menuFrameItem.margin
                    menuText.scale = 0.5
                    menuText.x = 122 * 0.5 * menuFrameItem.direction + menuFrameItem.margin
                    menuFrameItem.opacity = 1
                    menuFrameItem.x = 50 * menuFrameItem.direction
                    menuFrameItem.y = -48
                }
                if(position === 2){
                    menuFrameBgCenter.opacity = 1.0
                    menuFrameBg.width = 460
                    menuFrameBg.height = 116
                    menuFrameBg.x = 0
                    menuIcon.x = 26 * menuFrameItem.direction + menuFrameItem.margin
                    menuText.x = 122 * menuFrameItem.direction + menuFrameItem.margin
                    menuFrameItem.opacity = 1
                    menuFrameItem.x = 0
                    menuFrameItem.y = 0
                }

                if(position === 3){
                    menuFrameBgBottom.opacity = 1.0
                    menuFrameBg.width = 460 - 50
                    menuFrameBg.height = 74
                    if(menuFrameItem.direction === +1) {
                        menuFrameBg.x = 0
                    } else {
                        menuFrameBg.x = 50
                    }
                    menuIcon.scale = (74/116)
                    menuIcon.x = 26 * (74/116) * menuFrameItem.direction + menuFrameItem.margin
                    menuText.scale = (74/116)
                    menuText.x = 122 * (74/116) * menuFrameItem.direction + menuFrameItem.margin
                    menuFrameItem.opacity = 1
                    menuFrameItem.x = 100 * menuFrameItem.direction
                    menuFrameItem.y = 104
                }
                if(position === 4){
                    menuFrameBgBottom.opacity = 1.0
                    menuFrameBg.width = 460 - 50
                    menuFrameBg.height = 116*(0.7)
                    if(menuFrameItem.direction === +1) {
                        menuFrameBg.x = 0
                    } else {
                        menuFrameBg.x = 50
                    }
                    menuIcon.scale = (0.7)
                    menuIcon.x = 26 * (0.7) * menuFrameItem.direction + menuFrameItem.margin
                    menuText.scale = (0.7)
                    menuText.x = 122 * (0.7) *menuFrameItem.direction + menuFrameItem.margin
                    menuFrameItem.opacity = 0
                    menuFrameItem.x = 160 * menuFrameItem.direction
                    menuFrameItem.y = 140
                }
                if(position === 5){
                    menuFrameBgBottom.opacity = 1.0
                    menuFrameBg.width = 460 - 50
                    menuFrameBg.height = 116*(0.7)
                    if(menuFrameItem.direction === +1) {
                        menuFrameBg.x = 0
                    } else {
                        menuFrameBg.x = 50
                    }
                    menuIcon.scale = (0.7)
                    menuIcon.x = 26 * (0.7) * menuFrameItem.direction + menuFrameItem.margin
                    menuText.scale = (0.7)
                    menuText.x = 122 * (0.7) * menuFrameItem.direction + menuFrameItem.margin
                    menuFrameItem.opacity = 0
                    menuFrameItem.x = 160 * menuFrameItem.direction
                    menuFrameItem.y = 140
                }
            }


            Item{
                id: menuFrameBg
                x:0
                y:0
                width: 460
                height: 116
                Image{
                    id: menuFrameBgTop
                    anchors.fill: parent
                    source: "qrc:/Images/NormalView/MENU/menu_panel1.png"
                    opacity: 0
                }
                Image{
                    id: menuFrameBgCenter
                    anchors.fill: parent
                    source: "qrc:/Images/NormalView/MENU/menu_panel2.png"
                    opacity: 0
                }
                Image{
                    id: menuFrameBgBottom
                    anchors.fill: parent
                    source: "qrc:/Images/NormalView/MENU/menu_panel3.png"
                    opacity: 0
                }
            }

            Image{
                id: menuIcon
                source:menuFrame.icon
                x: 26 * direction + margin
                width: 76
                height: 90
                anchors.verticalCenter: menuFrameBg.verticalCenter
            }

            Text {
                id: menuText
                x: 122 * direction + margin
                width: 68
                height: 26
                y:46
                text: menuFrame.txt
                font { family: localFont.name; pointSize: 20; capitalization: Font.Capitalize }
                anchors.verticalCenter: menuFrameBg.verticalCenter
                color: "white"

            }

            MenuFrameScrollTo0{
                id:animationMenuScrollTo0
                scrollDuration: 330
            }

            MenuFrameScrollTo1{
                id:animationMenuScrollTo1
                scrollDuration: 330
            }

            MenuFrameScrollTo2 {
                id:animationMenuScrollTo2
                scrollDuration: 330
            }

            MenuFrameScrollTo3 {
                id:animationMenuScrollTo3
                scrollDuration: 330
            }

            MenuFrameScrollTo4{
                id:animationMenuScrollTo4
                scrollDuration: 330
            }


            /* Open */
            SequentialAnimation{
                id:animationMenuOpen

                NumberAnimation{
                    target: menuFrame
                    property: "x"
                    to: 360 * menuFrameItem.direction
                    duration: 0
                }

                PropertyAnimation{
                    target: menuFrame
                    property: "visible"
                    from:false
                    to: true
                    duration: 0
                }

                PauseAnimation {
                    duration: if(position === 0){
                                  0
                              }else if(position === 1){
                                  48
                              }else if(position === 2){
                                  96
                              }else if(position === 3){
                                  144
                              }else if(position === 4){
                                  0
                              }else if(position === 5){
                                  0
                              }
                }

                NumberAnimation{
                    target: menuFrame
                    property: "x"
                    from: 360 * menuFrameItem.direction
                    to: 0
                    duration: 260
                    easing.type: Easing.InQuad
                }

            }

            SequentialAnimation{
                id:animationMenuClose

                NumberAnimation{
                    target: menuFrame
                    property: "x"
                    to: 0
                    duration: 0
                }

                PauseAnimation {
                    duration: if(position === 0){
                                  0
                              }else if(position === 1){
                                  48
                              }else if(position === 2){
                                  96
                              }else if(position === 3){
                                  144
                              }else if(position === 4){
                                  0
                              }else if(position === 5){
                                  0
                              }
                }

                NumberAnimation{
                    target: menuFrame
                    property: "x"
                    from: 0
                    to: 360 * menuFrameItem.direction
                    duration: 260
                    easing.type: Easing.OutQuad
                }

                PropertyAnimation{
                    target: menuFrame
                    property: "visible"
                    from: true
                    to: false
                    duration: 0
                }
            }

        }


    }
}