aboutsummaryrefslogtreecommitdiffstats
path: root/applets/notify/notify-store.h
blob: b1cdd420b7f5a19976b91837ef793ffdcf59d64b (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
63
#ifndef _MB_NOTIFY_STORE
#define _MB_NOTIFY_STORE

#include <glib-object.h>

G_BEGIN_DECLS

#define MB_TYPE_NOTIFY_STORE mb_notify_store_get_type()

#define MB_NOTIFY_STORE(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
  MB_TYPE_NOTIFY_STORE, MbNotifyStore))

#define MB_NOTIFY_STORE_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST ((klass), \
  MB_TYPE_NOTIFY_STORE, MbNotifyStoreClass))

#define MB_IS_NOTIFY(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
  MB_TYPE_NOTIFY_STORE))

#define MB_IS_NOTIFY_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), \
  MB_TYPE_NOTIFY_STORE))

#define MB_NOTIFY_STORE_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
  MB_TYPE_NOTIFY_STORE, MbNotifyStoreClass))

typedef struct {
  guint id;
  char *summary;
  char *body;
  char *icon_name;
  guint timeout_id;
} Notification;

typedef enum {
  ClosedExpired = 1,
  ClosedDismissed,
  ClosedProgramatically,
  ClosedUnknown,
} MbNotifyStoreCloseReason;

typedef struct {
  GObject parent;
} MbNotifyStore;

typedef struct {
  GObjectClass parent_class;  
  void (*notification_added) (MbNotifyStore *notify, Notification *notification);
  void (*notification_closed) (MbNotifyStore *notify, guint id, MbNotifyStoreCloseReason reason);
} MbNotifyStoreClass;

GType mb_notify_store_get_type (void);

MbNotifyStore* mb_notify_store_new (void);

gboolean mb_notify_store_close (MbNotifyStore *notify, guint id, MbNotifyStoreCloseReason reason);

G_END_DECLS

#endif /* _MB_NOTIFY_STORE */