use two sdl app, change default sdl to sdl_usb
[apps/homescreen.git] / homescreen / qml / ShortcutArea.qml
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
4  * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import QtQuick 2.2
20 import QtQuick.Layouts 1.1
21
22 Item {
23     id: root
24     width: 785
25     height: 218
26
27     Timer {
28         id:notificationTimer
29         interval: 3000
30         running: false
31         repeat: true
32         onTriggered: notificationItem.visible = false
33     }
34
35     ListModel {
36         id: applicationModel
37         ListElement {
38             name: 'launcher'
39             application: 'launcher@0.1'
40         }
41         ListElement {
42             name: 'sdl_usb'
43             application: 'sdl_usb@5.0'
44         }
45         ListElement {
46             name: 'Video'
47             application: 'video@0.1'
48         }
49         ListElement {
50             name: 'navigation'
51             application: 'navigation@0.1'
52         }
53     }
54
55     property int pid: -1
56
57     RowLayout {
58         anchors.fill: parent
59         spacing: 2
60         Repeater {
61             model: applicationModel
62             delegate: ShortcutIcon {
63                 Layout.fillWidth: true
64                 Layout.fillHeight: true
65                 name: model.name
66                 active: model.name === launcher.current
67                 onClicked: {
68                     pid = launcher.launch(model.application)
69                     if (1 < pid) {
70                         applicationArea.visible = true
71                     }
72                     else {
73                         console.warn(model.application)
74                         console.warn("app cannot be launched!")
75                     }
76                     homescreenHandler.tapShortcut(model.name, false)
77                 }
78             }
79         }
80     }
81 }