]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-notify-manager.h
individual_view_drag_end: remove the auto scroll
[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 #include <libempathy/empathy-contact.h>
27
28 G_BEGIN_DECLS
29
30 #define EMPATHY_NOTIFY_MANAGER_CAP_ACTIONS             "actions"
31 #define EMPATHY_NOTIFY_MANAGER_CAP_BODY                "body"
32 #define EMPATHY_NOTIFY_MANAGER_CAP_BODY_HYPERLINKS     "body-hyperlinks"
33 #define EMPATHY_NOTIFY_MANAGER_CAP_BODY_IMAGES         "body-images"
34 #define EMPATHY_NOTIFY_MANAGER_CAP_BODY_MARKUP         "body-markup"
35 #define EMPATHY_NOTIFY_MANAGER_CAP_CATEGORY            "category"
36 #define EMPATHY_NOTIFY_MANAGER_CAP_ICON_MULTI          "icon-multi"
37 #define EMPATHY_NOTIFY_MANAGER_CAP_ICON_STATIC         "icon-static"
38 #define EMPATHY_NOTIFY_MANAGER_CAP_IMAGE_SVG_XML       "image/svg+xml"
39 #define EMPATHY_NOTIFY_MANAGER_CAP_SOUND                "sound"
40 /* notify-osd specific */
41 #define EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_APPEND              "x-canonical-append"
42 #define EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_PRIVATE_ICON_ONLY   "x-canonical-private-icon-only"
43 #define EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_PRIVATE_SYNCHRONOUS "x-canonical-private-synchronous"
44 #define EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_TRUNCATION          "x-canonical-truncation"
45
46 #define EMPATHY_TYPE_NOTIFY_MANAGER         (empathy_notify_manager_get_type ())
47 #define EMPATHY_NOTIFY_MANAGER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManager))
48 #define EMPATHY_NOTIFY_MANAGER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass))
49 #define EMPATHY_IS_NOTIFY_MANAGER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_NOTIFY_MANAGER))
50 #define EMPATHY_IS_NOTIFY_MANAGER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_NOTIFY_MANAGER))
51 #define EMPATHY_NOTIFY_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass))
52
53 /* FIXME: this should *really* belong to libnotify. */
54 typedef enum {
55     EMPATHY_NOTIFICATION_CLOSED_INVALID = 0,
56     EMPATHY_NOTIFICATION_CLOSED_EXPIRED = 1,
57     EMPATHY_NOTIFICATION_CLOSED_DISMISSED = 2,
58     EMPATHY_NOTIFICATION_CLOSED_PROGRAMMATICALY = 3,
59     EMPATHY_NOTIFICATION_CLOSED_RESERVED = 4
60 } EmpathyNotificationClosedReason;
61
62 typedef struct _EmpathyNotifyManager      EmpathyNotifyManager;
63 typedef struct _EmpathyNotifyManagerClass EmpathyNotifyManagerClass;
64
65 struct _EmpathyNotifyManager
66 {
67   GObject parent;
68   gpointer priv;
69 };
70
71 struct _EmpathyNotifyManagerClass
72 {
73  GObjectClass parent_class;
74 };
75
76 GType empathy_notify_manager_get_type (void) G_GNUC_CONST;
77
78 /* Get the notify_manager singleton */
79 EmpathyNotifyManager * empathy_notify_manager_dup_singleton (void);
80
81 gboolean empathy_notify_manager_has_capability (EmpathyNotifyManager *self,
82     const gchar *cap);
83
84 gboolean empathy_notify_manager_notification_is_enabled  (
85     EmpathyNotifyManager *self);
86
87 GdkPixbuf * empathy_notify_manager_get_pixbuf_for_notification (
88     EmpathyNotifyManager *self,
89     EmpathyContact *contact,
90     const char *icon_name);
91
92 G_END_DECLS
93
94 #endif /* __EMPATHY_NOTIFY_MANAGER_H__ */