blob: 6aabf713635d249765ffd483701fc0e278335d0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#ifndef SOWATCH_NOTIFICATIONSMODEL_H
#define SOWATCH_NOTIFICATIONSMODEL_H
#include <QtCore/QAbstractListModel>
#include "notification.h"
namespace sowatch
{
class NotificationsModel : public QAbstractListModel
{
Q_OBJECT
public:
explicit NotificationsModel(QObject *parent = 0);
enum DataRoles {
ObjectRole = Qt::UserRole,
BodyRole,
CountRole
};
int rowCount(const QModelIndex &parent) const;
QVariant data(const QModelIndex &index, int role) const;
void add(Notification *n);
void remove(Notification *n);
void remove(Notification::Type type, Notification *n);
int fullCount() const;
int fullCountByType(Notification::Type type) const;
Notification::Type getTypeOfDeletedNotification(Notification *n) const;
private:
int getOffsetForType(Notification::Type type) const;
int getAppendOffsetForType(Notification::Type type) const;
int getIndexForNotification(Notification *n) const;
const Notification* getNotificationByIndex(int index) const;
private slots:
void handleNotificationChanged();
private:
QList<Notification*> _list[Notification::TypeCount];
};
}
QML_DECLARE_TYPE(sowatch::NotificationsModel)
#endif // SOWATCH_NOTIFICATIONSMODEL_H
|