2 * Copyright 2016 Canonical Ltd.
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.
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.
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/>.
18import Lomiri.Components 1.3
19import Lomiri.Indicators 0.1
20import Lomiri.ApplicationMenu 0.1
21import Lomiri.Indicators 0.1 as Indicators
24 property string persistentSurfaceId
25 readonly property alias model: sharedAppModel.model
27 Indicators.SharedLomiriMenuModel {
29 property var menus: ApplicationMenuRegistry.getMenusForSurface(persistentSurfaceId)
30 property var menuService: menus.length > 0 ? menus[0] : null
32 busName: menuService ? menuService.service : ""
33 menuObjectPath: menuService && menuService.menuPath ? menuService.menuPath : ""
34 actions: menuService && menuService.actionPath ? { "lomiri": menuService.actionPath } : {}
37 onPersistentSurfaceIdChanged: update()
40 sharedAppModel.menus = Qt.binding(function() { return ApplicationMenuRegistry.getMenusForSurface(persistentSurfaceId); });
44 target: ApplicationMenuRegistry
45 onSurfaceMenuRegistered: {
46 if (surfaceId === persistentSurfaceId) {
50 onSurfaceMenuUnregistered: {
51 if (surfaceId === persistentSurfaceId) {