2 * Copyright (C) 2013 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/>.
18 import Ubuntu.Components 1.3
19 import Unity.Notifications 1.0 as UnityNotifications
21 import "../Components"
26 objectName: "notificationList"
30 property bool useModal: snapDecisionProxyModel.count > 0
31 property bool hasMouse
32 property bool inverseMode
33 property url background: ""
35 UnitySortFilterProxyModel {
36 id: snapDecisionProxyModel
37 objectName: "snapDecisionProxyModel"
39 model: notificationList.model ? notificationList.model : null
40 filterRole: UnityNotifications.ModelInterface != undefined ? UnityNotifications.ModelInterface.RoleType : 0
41 filterRegExp: RegExp(UnityNotifications.Notification.SnapDecision)
44 property bool topmostIsFullscreen: false
45 spacing: topmostIsFullscreen ? 0 : units.gu(.5)
47 currentIndex: count > 1 ? 1 : -1
49 delegate: Notification {
50 objectName: "notification" + index
54 iconSource: model.icon
55 secondaryIconSource: model.secondaryIcon
56 summary: model.summary
58 value: model.value ? model.value : -1
59 actions: model.actions
60 notificationId: model.id
61 notification: notificationList.model.getRaw(notificationId)
62 maxHeight: notificationList.height
63 margins: notificationList.margin
64 hasMouse: notificationList.hasMouse
65 inverseMode: notificationList.inverseMode
66 background: notificationList.background
68 // make sure there's no opacity-difference between the several
69 // elements in a notification
70 // FIXME: disabled all transitions because of LP: #1354406 workaround
71 //layer.enabled: add.running || remove.running || populate.running
73 Component.onCompleted: {
75 notificationList.topmostIsFullscreen = fullscreen
79 onFullscreenChanged: {
80 // index 1 because 0 is the PlaceHolder...
82 notificationList.topmostIsFullscreen = fullscreen
87 // FIXME: disabled all transitions because of LP: #1354406 workaround
88 /*populate: Transition {
89 UbuntuNumberAnimation {
92 duration: UbuntuAnimation.SnapDuration
97 UbuntuNumberAnimation {
100 duration: UbuntuAnimation.SnapDuration
105 UbuntuNumberAnimation {
111 displaced: Transition {
112 UbuntuNumberAnimation {
114 duration: UbuntuAnimation.SnapDuration