]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-notify-manager.h
Merge branch 'people-nearby-fake-group-613558'
[empathy.git] / libempathy-gtk / empathy-notify-manager.h
1 /*
2  * Copyright (C) 2009 Collabora Ltd.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
19  */
20
21 #ifndef __EMPATHY_NOTIFY_MANAGER_H__
22 #define __EMPATHY_NOTIFY_MANAGER_H__
23
24 #include <glib-object.h>
25
26 G_BEGIN_DECLS
27
28 #define EMPATHY_NOTIFY_MANAGER_CAP_ACTIONS             "actions"
29 #define EMPATHY_NOTIFY_MANAGER_CAP_BODY                "body"
30 #define EMPATHY_NOTIFY_MANAGER_CAP_BODY_HYPERLINKS     "body-hyperlinks"
31 #define EMPATHY_NOTIFY_MANAGER_CAP_BODY_IMAGES         "body-images"
32 #define EMPATHY_NOTIFY_MANAGER_CAP_BODY_MARKUP         "body-markup"
33 #define EMPATHY_NOTIFY_MANAGER_CAP_ICON_MULTI          "icon-multi"
34 #define EMPATHY_NOTIFY_MANAGER_CAP_ICON_STATIC         "icon-static"
35 #define EMPATHY_NOTIFY_MANAGER_CAP_IMAGE_SVG_XML       "image/svg+xml"
36 #define EMPATHY_NOTIFY_MANAGER_CAP_SOUND                "sound"
37 /* notify-osd specific */
38 #define EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_APPEND              "x-canonical-append"
39 #define EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_PRIVATE_ICON_ONLY   "x-canonical-private-icon-only"
40 #define EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_PRIVATE_SYNCHRONOUS "x-canonical-private-synchronous"
41 #define EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_TRUNCATION          "x-canonical-truncation"
42
43 #define EMPATHY_TYPE_NOTIFY_MANAGER         (empathy_notify_manager_get_type ())
44 #define EMPATHY_NOTIFY_MANAGER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManager))
45 #define EMPATHY_NOTIFY_MANAGER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass))
46 #define EMPATHY_IS_NOTIFY_MANAGER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_NOTIFY_MANAGER))
47 #define EMPATHY_IS_NOTIFY_MANAGER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_NOTIFY_MANAGER))
48 #define EMPATHY_NOTIFY_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass))
49
50 /* FIXME: this should *really* belong to libnotify. */
51 typedef enum {
52     EMPATHY_NOTIFICATION_CLOSED_INVALID = 0,
53     EMPATHY_NOTIFICATION_CLOSED_EXPIRED = 1,
54     EMPATHY_NOTIFICATION_CLOSED_DISMISSED = 2,
55     EMPATHY_NOTIFICATION_CLOSED_PROGRAMMATICALY = 3,
56     EMPATHY_NOTIFICATION_CLOSED_RESERVED = 4
57 } EmpathyNotificationClosedReason;
58
59 typedef struct _EmpathyNotifyManager      EmpathyNotifyManager;
60 typedef struct _EmpathyNotifyManagerClass EmpathyNotifyManagerClass;
61
62 struct _EmpathyNotifyManager
63 {
64   GObject parent;
65   gpointer priv;
66 };
67
68 struct _EmpathyNotifyManagerClass
69 {
70  GObjectClass parent_class;
71 };
72
73 GType empathy_notify_manager_get_type (void) G_GNUC_CONST;
74
75 /* Get the notify_manager singleton */
76 EmpathyNotifyManager * empathy_notify_manager_dup_singleton (void);
77
78 gboolean empathy_notify_manager_has_capability (EmpathyNotifyManager *self,
79     const gchar *cap);
80
81 gboolean empathy_notify_manager_notification_is_enabled  (
82     EmpathyNotifyManager *self);
83
84 GdkPixbuf * empathy_notify_manager_get_pixbuf_for_notification (
85     EmpathyNotifyManager *self,
86     EmpathyContact *contact,
87     const char *icon_name);
88
89 G_END_DECLS
90
91 #endif /* __EMPATHY_NOTIFY_MANAGER_H__ */