96a1950eab6453634195de0339fbf8284e3b2348
[apps/homescreen.git] / homescreen / qml / main.qml
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 import QtQuick 2.2
19 import QtQuick.Window 2.1
20 import QtQuick.Layouts 1.1
21 import HomeScreen 1.0
22
23 Window {
24     visible: true
25     flags: Qt.FramelessWindowHint
26     width: container.width * container.scale
27     height: container.height * container.scale
28     title: 'HomeScreen'
29
30     Image {
31         id: container
32         anchors.centerIn: parent
33         width: 1080
34         height: 1920
35         scale: screenInfo.scale_factor()
36         source: './images/AGL_HMI_Blue_Background_NoCar-01.png'
37
38         ColumnLayout {
39             anchors.fill: parent
40             spacing: 0
41             TopArea {
42                 id: topArea
43                 Layout.fillWidth: true
44                 Layout.preferredHeight: 218
45             }
46
47             Item {
48                 id: applicationArea
49                 Layout.fillWidth: true
50                 Layout.fillHeight: true
51                 Layout.preferredHeight: 1920 - 218 - 215
52
53                 visible: true
54             }
55
56             MediaArea {
57                 id: mediaArea
58                 Layout.fillWidth: true
59                 Layout.fillHeight: true
60                 Layout.preferredHeight: 215
61             }
62         }
63     }
64 }