]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-notify-manager.h
define constants for notify capabilities
[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_CAPA_ACTIONS             "actions"
29 #define EMPATHY_NOTIFY_MANAGER_CAPA_APPEND              "append"
30 #define EMPATHY_NOTIFY_MANAGER_CAPA_BODY                "body"
31 #define EMPATHY_NOTIFY_MANAGER_CAPA_BODY_HYPERLINKS     "body-hyperlinks"
32 #define EMPATHY_NOTIFY_MANAGER_CAPA_BODY_IMAGES         "body-images"
33 #define EMPATHY_NOTIFY_MANAGER_CAPA_BODY_MARKUP         "body-markup"
34 #define EMPATHY_NOTIFY_MANAGER_CAPA_ICON_MULTI          "icon-multi"
35 #define EMPATHY_NOTIFY_MANAGER_CAPA_ICON_STATIC         "icon-static"
36 #define EMPATHY_NOTIFY_MANAGER_CAPA_IMAGE_SVG_XML       "image/svg+xml"
37 #define EMPATHY_NOTIFY_MANAGER_CAPA_PRIVATE_ICON_ONLY   "private-icon-only"
38 #define EMPATHY_NOTIFY_MANAGER_CAPA_PRIVATE_SYNCHRONOUS "private-synchronous"
39 #define EMPATHY_NOTIFY_MANAGER_CAPA_SOUND                "sound"
40 #define EMPATHY_NOTIFY_MANAGER_CAPA_TRUNCATION           "truncation"
41 /* notify-osd specific */
42 #define EMPATHY_NOTIFY_MANAGER_CAPA_X_CANONICAL_APPEND              "x-canonical-append"
43 #define EMPATHY_NOTIFY_MANAGER_CAPA_X_CANONICAL_PRIVATE_ICON_ONLY   "x-canonical-private-icon-only"
44 #define EMPATHY_NOTIFY_MANAGER_CAPA_X_CANONICAL_PRIVATE_SYNCHRONOUS "x-canonical-private-synchronous"
45 #define EMPATHY_NOTIFY_MANAGER_CAPA_X_CANONICAL_TRUNCATION          "x-canonical-truncation"
46
47 #define EMPATHY_TYPE_NOTIFY_MANAGER         (empathy_notify_manager_get_type ())
48 #define EMPATHY_NOTIFY_MANAGER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManager))
49 #define EMPATHY_NOTIFY_MANAGER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass))
50 #define EMPATHY_IS_NOTIFY_MANAGER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_NOTIFY_MANAGER))
51 #define EMPATHY_IS_NOTIFY_MANAGER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_NOTIFY_MANAGER))
52 #define EMPATHY_NOTIFY_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass))
53
54 typedef struct _EmpathyNotifyManager      EmpathyNotifyManager;
55 typedef struct _EmpathyNotifyManagerClass EmpathyNotifyManagerClass;
56
57 struct _EmpathyNotifyManager
58 {
59   GObject parent;
60   gpointer priv;
61 };
62
63 struct _EmpathyNotifyManagerClass
64 {
65  GObjectClass parent_class;
66 };
67
68 GType empathy_notify_manager_get_type (void) G_GNUC_CONST;
69
70 /* Get the notify_manager singleton */
71 EmpathyNotifyManager * empathy_notify_manager_dup_singleton (void);
72
73 gboolean empathy_notify_manager_has_capability (EmpathyNotifyManager *self,
74     const gchar *capa);
75
76 G_END_DECLS
77
78 #endif /* __EMPATHY_NOTIFY_MANAGER_H__ */