cfcd1c808930b2cbcae48ea1a3c7588cdacdbe43
[staging/HomeScreen.git] / HomeScreen / qml / Home.qml
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 import QtQuick 2.2
18 import QtQuick.Layouts 1.1
19 import QtQuick.Controls 1.0
20 import Home 1.0
21
22 Item {
23     id: root
24
25     Image {
26         anchors.fill: parent
27         anchors.topMargin: -218
28         anchors.bottomMargin: -215
29         source: './images/AGL_HMI_Background_Car-01.png'
30     }
31
32     property int pid: -1
33
34     GridView {
35         anchors.centerIn: parent
36         width: cellHeight * 3
37         height: cellHeight * 3
38         cellWidth: 320
39         cellHeight: 320
40
41         model: ApplicationModel {}
42         delegate: MouseArea {
43             width: 320
44             height: 320
45             Image {
46                 anchors.fill: parent
47                 source: './images/HMI_AppLauncher_%1_%2-01.png'.arg(model.icon).arg(pressed ? 'Active' : 'Inactive')
48             }
49             onClicked: {
50                 console.log("app is ", model.id)
51                 pid = launcher.launch(model.id)
52                 layoutHandler.makeMeVisible(pid)
53
54                 applicationArea.visible = true
55                 appLauncherAreaLauncher.visible = false
56                 layoutHandler.showAppLayer()
57             }
58         }
59     }
60 }