Lomiri
RegisteredApplicationMenuModel.qml
1 /*
2  * Copyright 2016 Canonical Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 import QtQuick 2.4
18 import Lomiri.Components 1.3
19 import Lomiri.Indicators 0.1
20 import Lomiri.ApplicationMenu 0.1
21 import Lomiri.Indicators 0.1 as Indicators
22 
23 Item {
24  property string persistentSurfaceId
25  readonly property alias model: sharedAppModel.model
26 
27  Indicators.SharedLomiriMenuModel {
28  id: sharedAppModel
29  property var menus: ApplicationMenuRegistry.getMenusForSurface(persistentSurfaceId)
30  property var menuService: menus.length > 0 ? menus[0] : null
31 
32  busName: menuService ? menuService.service : ""
33  menuObjectPath: menuService && menuService.menuPath ? menuService.menuPath : ""
34  actions: menuService && menuService.actionPath ? { "lomiri": menuService.actionPath } : {}
35  }
36 
37  onPersistentSurfaceIdChanged: update()
38 
39  function update() {
40  sharedAppModel.menus = Qt.binding(function() { return ApplicationMenuRegistry.getMenusForSurface(persistentSurfaceId); });
41  }
42 
43  Connections {
44  target: ApplicationMenuRegistry
45  onSurfaceMenuRegistered: {
46  if (surfaceId === persistentSurfaceId) {
47  update();
48  }
49  }
50  onSurfaceMenuUnregistered: {
51  if (surfaceId === persistentSurfaceId) {
52  update();
53  }
54  }
55  }
56 }