~mterry/+junk/u8.2

« back to all changes in this revision

Viewing changes to qml/Notifications/Notifications.qml

  • Committer: Michael Terry
  • Date: 2014-11-17 14:56:04 UTC
  • mfrom: (1317.1.118 unity8)
  • Revision ID: michael.terry@canonical.com-20141117145604-96dn9p5nwkifq2f4
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import Unity.Notifications 1.0 as UnityNotifications
20
20
import Utils 0.1
21
21
import "../Components"
22
 
import "../Components/Flickables" as Flickables
23
22
 
24
 
Flickables.ListView {
 
23
ListView {
25
24
    id: notificationList
26
25
 
27
26
    objectName: "notificationList"
32
31
 
33
32
    SortFilterProxyModel {
34
33
        id: snapDecisionProxyModel
 
34
        objectName: "snapDecisionProxyModel"
35
35
 
36
36
        model: notificationList.model
37
37
        filterRole: UnityNotifications.ModelInterface != undefined ? UnityNotifications.ModelInterface.RoleType : 0
56
56
        secondaryIconSource: model.secondaryIcon
57
57
        summary: model.summary
58
58
        body: model.body
 
59
        value: model.value
59
60
        actions: model.actions
60
61
        notificationId: model.id
61
62
        notification: notificationList.model.getRaw(notificationId)