blob: a11036f0dcd1ff418f1ce15356db39e0cd838dfd (
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
53
54
55
56
57
58
59
60
61
62
|
/*
* notification.h - A gobject subclass to represent a org.freedesktop.Notification.Notify message.
*/
#ifndef __NOTIFICATION_H__
#define __NOTIFICATION_H__
#include <glib.h>
#include <glib-object.h>
#include <gio/gio.h>
G_BEGIN_DECLS
#define NOTIFICATION_TYPE (notification_get_type ())
#define NOTIFICATION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NOTIFICATION_TYPE, Notification))
#define NOTIFICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NOTIFICATION_TYPE, NotificationClass))
#define IS_NOTIFICATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NOTIFICATION_TYPE))
#define IS_NOTIFICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NOTIFICATION_TYPE))
typedef struct _Notification Notification;
typedef struct _NotificationClass NotificationClass;
typedef struct _NotificationPrivate NotificationPrivate;
struct _Notification
{
GObject parent;
NotificationPrivate *priv;
};
struct _NotificationClass
{
GObjectClass parent_class;
};
struct _NotificationPrivate {
gchar *app_name;
gsize app_name_length;
guint32 replaces_id;
gchar *app_icon;
gsize app_icon_length;
gchar *summary;
gsize summary_length;
gchar *body;
gsize body_length;
gint expire_timeout;
};
#define NOTIFICATION_GET_PRIVATE(o) \
(G_TYPE_INSTANCE_GET_PRIVATE ((o), NOTIFICATION_TYPE, NotificationPrivate))
GType notification_get_type(void);
Notification *notification_new(void);
Notification *notification_new_from_dbus_message(GDBusMessage *);
const gchar *notification_get_app_name(Notification *);
const gchar *notification_get_app_icon(Notification *);
const gchar *notification_get_summary(Notification *);
const gchar *notification_get_body(Notification *);
void notification_print(Notification *);
G_END_DECLS
#endif /* __NOTIFICATION_H__ */
|