2 * Copyright (C) 2013-2016 Canonical Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU 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 General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18import Lomiri.Components 1.3
19import Lomiri.Notifications 1.0 as LomiriNotifications
26 objectName: "notificationList"
29 readonly property bool hasNotification: count > 0
31 property bool hasMouse
32 property url background: ""
34 readonly property bool useModal: snapDecisionProxyModel.count > 0
36 LomiriSortFilterProxyModel {
37 id: snapDecisionProxyModel
38 objectName: "snapDecisionProxyModel"
40 model: notificationList.model ? notificationList.model : null
41 filterRole: LomiriNotifications.ModelInterface != undefined ? LomiriNotifications.ModelInterface.RoleType : 0
42 filterRegExp: RegExp(LomiriNotifications.Notification.SnapDecision)
45 property bool topmostIsFullscreen: false
46 spacing: topmostIsFullscreen ? 0 : units.gu(1)
50 delegate: Notification {
51 objectName: "notification" + index
55 iconSource: model.icon
56 secondaryIconSource: model.secondaryIcon ? model.secondaryIcon : ""
57 summary: model.summary
59 value: model.value ? model.value : -1
60 actions: model.actions
61 notificationId: model.id
62 notification: notificationList.model.getRaw(notificationId)
63 maxHeight: notificationList.height
64 margins: notificationList.margin
65 hasMouse: notificationList.hasMouse
66 background: notificationList.background
68 Component.onCompleted: topmostIsFullscreen = false; // async, the factory loader will set fullscreen to true later
70 property int theIndex: index
73 ListView.view.topmostIsFullscreen = fullscreen; // when we get pushed down by e.g. volume notification
77 // make sure there's no opacity-difference between the several
78 // elements in a notification
79 // FIXME: disabled all transitions because of LP: #1354406 workaround
80 //layer.enabled: add.running || remove.running || populate.running
83 onCountChanged: if (count == 0) topmostIsFullscreen = false; // reset
85 // FIXME: disabled all transitions because of LP: #1354406 workaround
86 /*populate: Transition {
87 LomiriNumberAnimation {
90 duration: LomiriAnimation.SnapDuration
95 LomiriNumberAnimation {
98 duration: LomiriAnimation.SnapDuration
103 LomiriNumberAnimation {
109 displaced: Transition {
110 LomiriNumberAnimation {
112 duration: LomiriAnimation.SnapDuration