summaryrefslogtreecommitdiffstats
path: root/startupscreen/MainView.qml
blob: e4c6522a66768a39174a2ea6acf3ffb8c260f094 (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
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
/****************************************************************************
**
** Copyright (C) 2020 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the examples of Qt for Device Creation.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
**   * Redistributions of source code must retain the above copyright
**     notice, this list of conditions and the following disclaimer.
**   * Redistributions in binary form must reproduce the above copyright
**     notice, this list of conditions and the following disclaimer in
**     the documentation and/or other materials provided with the
**     distribution.
**   * Neither the name of The Qt Company Ltd nor the names of its
**     contributors may be used to endorse or promote products derived
**     from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/

import QtQuick 2.12
import StartupScreen 1.0

Item {
    id: root
    width: Constants.smallWidth
    height: Constants.smallHeight

    Image {
        id: backgroundImage
        source: "assets/background.png"
        anchors.fill: parent
    }

    Item {
        id: panel
        anchors.top: root.top
        anchors.topMargin: 20

        anchors.left: root.left
        height: headerBackground.height + bodyBackground.height
        width: Constants.smallPanelWidth


        Item {
            id: headerBackground

            width: parent.width
            height: Constants.smallHeaderHeight

            anchors.top: panel.top
            anchors.left: panel.left

            Image {
                id: headerBackgroundRight
                source: "assets/headerBackgroundRight.png"
                fillMode: Image.PreserveAspectFit
                height: parent.height
                anchors.right: parent.right
                anchors.top: parent.top
            }
            Image {
                id: headerBackgroundLeft
                source: "assets/headerBackgroundLeft.png"
                height: parent.height
                width: parent.width-headerBackgroundRight.width
                anchors.left: parent.left
                anchors.top: parent.top
            }
            Text {
                id: headerText_1
                color: "#ffffff"
                text: "Get started with"
                anchors.horizontalCenter: parent.horizontalCenter
                anchors.top: parent.top
                font.pixelSize: 20
                font.family: "Titillium Web"
                anchors.topMargin: 8
            }
            Text {
                id: headerText_2
                color: "#ffffff"
                text: "Boot to Qt "
                anchors.horizontalCenter: parent.horizontalCenter
                anchors.bottom: parent.bottom
                font.bold: true
                font.pixelSize: 48
                font.family: "Titillium Web"
                anchors.bottomMargin: 0
            }
        }

        // body of the text panel
        Rectangle {
            id: bodyBackground
            height: Constants.smallBodyHeight
            color: "#000000"
            width: headerBackground.width
            anchors.top: headerBackground.bottom
            anchors.left: headerBackground.left

            Text {
                id: bodyText
                color: "#ffffff"
                width: parent.width - 40
                text: "How to install demo\napplication from Qt Creator?"
                font.pixelSize: 24
                font.family: "Titillium Web"
                anchors.horizontalCenter: parent.horizontalCenter
                anchors.top: parent.top
                horizontalAlignment: Text.AlignHCenter
                lineHeight: 0.8
                wrapMode: Text.WordWrap
                anchors.topMargin: 8
            }

            TextButton {
                id: textButton
                width: parent.width - 40
                height: Constants.smallTextButton
                fontSize: 24
                anchors.horizontalCenter: parent.horizontalCenter
                anchors.bottom: parent.bottom
                anchors.bottomMargin: 20
            }
        }
    }

    // Button row
    UsbButton {
        id: usbButton
        height: Constants.smallButton
        width: height
        iconHeight: height-24

        anchors.left: parent.left
        anchors.leftMargin: 20
        anchors.top: panel.bottom
        anchors.topMargin: 48
    }
    SDcardButton {
        id: sdCardButton
        height: Constants.smallButton
        width: height
        iconHeight: height-24


        anchors.bottom: usbButton.bottom
        anchors.left: usbButton.right
        anchors.leftMargin: 50
    }
    WifiButton {
        id: wifiButton
        height: Constants.smallButton
        width: height
        iconHeight: height-24

        anchors.bottom: usbButton.bottom
        anchors.right: panel.right
    }

    // Analog clock showing the current time
    AnalogClock {
        id: clock
        width: Constants.smallClock
        height: Constants.smallClock
        anchors.top: root.top
        anchors.topMargin: panel.anchors.topMargin + panel.height / 2 - clock.height / 2
        anchors.right: root.right
        anchors.rightMargin: 20
    }

    // label and IP address
    Item {
        id: ipPanel
        height: usbButton.height
        anchors.horizontalCenter: clock.horizontalCenter
        anchors.bottom: usbButton.bottom

        Text {
            id: ipLabel
            color: "#ffffff"
            text: "IP address"
            anchors.horizontalCenter: parent.horizontalCenter
            anchors.top: parent.top
            anchors.topMargin: 24
            font.pixelSize: 20
            font.family: "Titillium Web"
        }
        Text {
            id: ipAddress
            color: "#ffffff"
            text: "255.255.255.255"
            anchors.horizontalCenter: parent.horizontalCenter
            anchors.bottom: parent.bottom
            anchors.bottomMargin: 24
            font.pixelSize: 20
            font.bold: true
            font.family: "Titillium Web"
        }
    }

    // states for different resolutions
    // base state = small landscape
    states: [
        State {
            name: "smallPortrait"

            PropertyChanges {
                target: clock
                width: Constants.smallClock
                height: Constants.smallClock

                anchors.topMargin: 12
                anchors.rightMargin: root.width / 2 - clockRadius
            }
            PropertyChanges {
                target: panel
                anchors.topMargin: 204
            }
            PropertyChanges {
                target: usbButton
                anchors.topMargin: 12
            }
            PropertyChanges {
                target: ipPanel
                anchors.bottomMargin: -80
            }
        },
        State {
            name: "mediumLandscape"

            PropertyChanges {
                target: clock
                width: Constants.mediumClock
                height: Constants.mediumClock

                anchors.topMargin: panel.anchors.topMargin + panel.height / 2 - clock.height / 2
                anchors.rightMargin: 152

                wideDial: 8
                narrowDial: 4
            }
            PropertyChanges {
                target: panel
                anchors.topMargin: 48
                width: Constants.mediumPanelWidth
            }
            PropertyChanges {
                target: headerBackground
                height: Constants.mediumHeaderHeight
            }
            PropertyChanges {
                target: bodyBackground
                height: Constants.mediumBodyHeight
            }
            PropertyChanges {
                target: headerText_1
                font.pixelSize: 40
                anchors.topMargin: 0
            }
            PropertyChanges {
                target: headerText_2
                font.pixelSize: 88
                anchors.bottomMargin: -8
            }
            PropertyChanges {
                target: bodyText
                font.pixelSize: 40
            }
            PropertyChanges {
                target: textButton
                height: Constants.mediumTextButton
                width: panel.width - 64
                fontSize: 40
                anchors.bottomMargin: 32
            }
            PropertyChanges {
                target: usbButton
                height: Constants.mediumButton
                width: height
                anchors.topMargin: 54
                anchors.leftMargin: 32
            }
            PropertyChanges {
                target: sdCardButton
                height: Constants.mediumButton
                width: height
                anchors.leftMargin: 90
            }
            PropertyChanges {
                target: wifiButton
                height: Constants.mediumButton
                width: height
            }
            PropertyChanges {
                target: ipPanel
            }
            PropertyChanges {
                target: ipLabel
                font.pixelSize: 36
            }
            PropertyChanges {
                target: ipAddress
                font.pixelSize: 36
            }
        },
        State {
            name: "mediumPortrait"
            PropertyChanges {
                target: clock
                width: Constants.mediumClock
                height: Constants.mediumClock

                anchors.topMargin: 60
                anchors.rightMargin: root.width / 2 - clockRadius

                wideDial: 8
                narrowDial: 4
            }
            PropertyChanges {
                target: panel
                anchors.topMargin: 440
                width: Constants.mediumPanelWidth
            }
            PropertyChanges {
                target: headerBackground
                height: Constants.mediumHeaderHeight
            }
            PropertyChanges {
                target: bodyBackground
                height: Constants.mediumBodyHeight
            }
            PropertyChanges {
                target: headerText_1
                font.pixelSize: 40
                anchors.topMargin: 0
            }
            PropertyChanges {
                target: headerText_2
                font.pixelSize: 88
                anchors.bottomMargin: -8
            }
            PropertyChanges {
                target: bodyText
                font.pixelSize: 40
            }
            PropertyChanges {
                target: textButton
                height: Constants.mediumTextButton
                width: panel.width - 64
                fontSize: 40
                anchors.bottomMargin: 32
            }
            PropertyChanges {
                target: usbButton
                height: Constants.mediumButton
                width: height
                anchors.topMargin: 60
                anchors.leftMargin: 32
            }
            PropertyChanges {
                target: sdCardButton
                height: Constants.mediumButton
                width: height
                anchors.leftMargin: 90
            }
            PropertyChanges {
                target: wifiButton
                height: Constants.mediumButton
                width: height
            }
            PropertyChanges {
                target: ipPanel
                anchors.bottomMargin: -200
            }
            PropertyChanges {
                target: ipLabel
                font.pixelSize: 36
            }
            PropertyChanges {
                target: ipAddress
                font.pixelSize: 36
            }
        },
        State {
            name: "largeLandscape"

            PropertyChanges {
                target: clock
                width: Constants.largeClock
                height: Constants.largeClock

                anchors.topMargin: panel.anchors.topMargin + panel.height / 2 - clock.height / 2
                anchors.rightMargin: 152

                wideDial: 12
                narrowDial: 6
            }
            PropertyChanges {
                target: panel
                anchors.topMargin: 48
                width: Constants.largePanelWidth
            }
            PropertyChanges {
                target: headerBackground
                height: Constants.largeHeaderHeight
            }
            PropertyChanges {
                target: bodyBackground
                height: Constants.largeBodyHeight
            }
            PropertyChanges {
                target: headerText_1
                font.pixelSize: 72
                anchors.topMargin: 0
            }
            PropertyChanges {
                target: headerText_2
                font.pixelSize: 132
                anchors.bottomMargin: -8
            }
            PropertyChanges {
                target: bodyText
                font.pixelSize: 72
            }
            PropertyChanges {
                target: textButton
                height: Constants.largeTextButton
                width: panel.width - 80
                fontSize: 72
                anchors.bottomMargin: 40
            }
            PropertyChanges {
                target: usbButton
                height: Constants.largeButton
                width: height
                anchors.topMargin: 32
                anchors.leftMargin: 40

            }
            PropertyChanges {
                target: sdCardButton
                height: Constants.largeButton
                width: height
                anchors.leftMargin: 188
            }
            PropertyChanges {
                target: wifiButton
                height: Constants.largeButton
                width: height
            }
            PropertyChanges {
                target: ipPanel
                anchors.bottom: usbButton.bottom
            }
            PropertyChanges {
                target: ipLabel
                font.pixelSize: 72
                anchors.topMargin: 0
            }
            PropertyChanges {
                target: ipAddress
                font.pixelSize: 72
                anchors.bottomMargin: 0
            }
        },
        State {
            name: "largePortrait"
            PropertyChanges {
                target: clock
                width: Constants.largeClock
                height: Constants.largeClock

                anchors.topMargin: 48
                anchors.rightMargin: root.width / 2 - clockRadius

                wideDial: 12
                narrowDial: 6
            }
            PropertyChanges {
                target: panel
                anchors.topMargin: 640
                width: Constants.largePanelWidth
            }

            PropertyChanges {
                target: headerBackground
                height: Constants.largeHeaderHeight
            }
            PropertyChanges {
                target: bodyBackground
                height: Constants.largeBodyHeight
            }
            PropertyChanges {
                target: headerText_1
                font.pixelSize: 72
                anchors.topMargin: 0
            }
            PropertyChanges {
                target: headerText_2
                font.pixelSize: 132
                anchors.bottomMargin: -8
            }
            PropertyChanges {
                target: bodyText
                font.pixelSize: 72
            }
            PropertyChanges {
                target: textButton
                height: Constants.largeTextButton
                width: panel.width - 80
                fontSize: 72
                anchors.bottomMargin: 40
            }
            PropertyChanges {
                target: usbButton
                height: Constants.largeButton
                width: height
                anchors.topMargin: 60
                anchors.leftMargin: 40
            }
            PropertyChanges {
                target: sdCardButton
                height: Constants.largeButton
                width: height
                anchors.leftMargin: 188
            }
            PropertyChanges {
                target: wifiButton
                height: Constants.largeButton
                width: height
            }
            PropertyChanges {
                target: ipPanel
                anchors.bottomMargin: -240
            }
            PropertyChanges {
                target: ipLabel
                font.pixelSize: 72
                anchors.topMargin: 0
            }
            PropertyChanges {
                target: ipAddress
                font.pixelSize: 72
                anchors.bottomMargin: 0
            }
        }
    ]
}

/*##^##
Designer {
    D{i:0;autoSize:true;height:640;width:480}
}
##^##*/