Unity 8
Notifications.qml
1 /*
2  * Copyright (C) 2013 Canonical, Ltd.
3  *
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.
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 General Public License for more details.
12  *
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/>.
15  */
16 
17 import QtQuick 2.4
18 import Ubuntu.Components 1.3
19 import Unity.Notifications 1.0 as UnityNotifications
20 import Utils 0.1
21 import "../Components"
22 
23 ListView {
24  id: notificationList
25 
26  objectName: "notificationList"
27  interactive: false
28 
29  property real margin
30  property bool useModal: snapDecisionProxyModel.count > 0
31  property bool hasMouse
32  property bool inverseMode
33  property url background: ""
34 
35  UnitySortFilterProxyModel {
36  id: snapDecisionProxyModel
37  objectName: "snapDecisionProxyModel"
38 
39  model: notificationList.model ? notificationList.model : null
40  filterRole: UnityNotifications.ModelInterface != undefined ? UnityNotifications.ModelInterface.RoleType : 0
41  filterRegExp: RegExp(UnityNotifications.Notification.SnapDecision)
42  }
43 
44  property bool topmostIsFullscreen: false
45  spacing: topmostIsFullscreen ? 0 : units.gu(.5)
46 
47  currentIndex: count > 1 ? 1 : -1
48 
49  delegate: Notification {
50  objectName: "notification" + index
51  width: parent.width
52  type: model.type
53  hints: model.hints
54  iconSource: model.icon
55  secondaryIconSource: model.secondaryIcon
56  summary: model.summary
57  body: model.body
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
67 
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
72 
73  Component.onCompleted: {
74  if (index == 1) {
75  notificationList.topmostIsFullscreen = fullscreen
76  }
77  }
78 
79  onFullscreenChanged: {
80  // index 1 because 0 is the PlaceHolder...
81  if (index == 1) {
82  notificationList.topmostIsFullscreen = fullscreen
83  }
84  }
85  }
86 
87  // FIXME: disabled all transitions because of LP: #1354406 workaround
88  /*populate: Transition {
89  UbuntuNumberAnimation {
90  property: "opacity"
91  to: 1
92  duration: UbuntuAnimation.SnapDuration
93  }
94  }
95 
96  add: Transition {
97  UbuntuNumberAnimation {
98  property: "opacity"
99  to: 1
100  duration: UbuntuAnimation.SnapDuration
101  }
102  }
103 
104  remove: Transition {
105  UbuntuNumberAnimation {
106  property: "opacity"
107  to: 0
108  }
109  }
110 
111  displaced: Transition {
112  UbuntuNumberAnimation {
113  properties: "x,y"
114  duration: UbuntuAnimation.SnapDuration
115  }
116  }*/
117 }