registerShortcut
[apps/launcher.git] / launcher / qml / TopShortcutArea.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 import QtQuick.Controls 2.1
22
23 Item {
24     id: root
25     width: 588
26     height: 218
27
28     property int pid: -1
29
30     RowLayout {
31         anchors.fill: parent
32         spacing: 2
33         Repeater {
34             id: repeater
35             model: shortcutAppModel
36             delegate: TopShortcutIcon {
37                 Layout.fillWidth: true
38                 Layout.fillHeight: true
39                 name: shortcutAppModel.getName(model.index)
40                 icon: shortcutAppModel.getIcon(model.index)
41                 isBlank: shortcutAppModel.isBlank(model.index)
42             }
43         }
44     }
45
46     Connections {
47         target: shortcutAppModel
48         onUpdateShortcut: {
49             for(var i = 0; i < 3; i++) {
50                 var item = repeater.itemAt(i)
51                 item.name = shortcutAppModel.getName(i)
52                 item.icon = shortcutAppModel.getIcon(i)
53                 item.isBlank = shortcutAppModel.isBlank(i)
54             }
55         }
56     }
57 }