forked from nemomobile/mlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmnotification_p.h
87 lines (67 loc) · 2.22 KB
/
mnotification_p.h
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/***************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation ([email protected])
**
** This file is part of libmeegotouch.
**
** If you have questions regarding the use of this file, please contact
** Nokia at [email protected].
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation
** and appearing in the file LICENSE.LGPL included in the packaging
** of this file.
**
****************************************************************************/
#ifndef MNOTIFICATION_P_H
#define MNOTIFICATION_P_H
#include <QPointer>
#include <QDateTime>
#include <QVariantHash>
class MNotificationManagerProxy;
/*!
* A private class for MNotification
*/
class MNotificationPrivate : public QObject
{
Q_OBJECT
public:
/*!
* Constructor
*/
MNotificationPrivate();
/*!
* Destructor
*/
virtual ~MNotificationPrivate();
//! Returns hints for the notification
virtual QVariantHash hints() const;
//! Publishes the group of the notification (if any)
void publishGroup();
//! The ID of the notification
uint id;
//! Notification group of the notification.
uint groupId;
//! The event type of the notification.
QString eventType;
//! The summary text to be used in the notification. Defaults to no summary text.
QString summary;
//! The body text to be used in the notification. Defaults to no body text.
QString body;
//! The name of the image to be used in the notification. Defaults to no image.
QString image;
//! The action to be executed when the notification is activated. Defaults to no action.
QString action;
//! The number of items inside this notification
uint count;
//! The identifier of the notification set by the application
QString identifier;
//! User set timestamp of notification
QDateTime userSetTimestamp;
//! Timestamp that has been previously published
QDateTime publishedTimestamp;
};
#endif // MNOTIFICATION_P_H