[empathy] factor out empathy_notify_manager_create_notification()



commit 12b23410bd90309789d3f3b5206f0cde015c31b0
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Thu Jan 3 13:04:38 2013 +0100

    factor out empathy_notify_manager_create_notification()
    
    https://bugzilla.gnome.org/show_bug.cgi?id=691043

 libempathy-gtk/empathy-notify-manager.c |   12 ++++++++++++
 libempathy-gtk/empathy-notify-manager.h |    7 +++++++
 src/empathy-call-observer.c             |    3 ++-
 src/empathy-chat-window.c               |    4 +++-
 src/empathy-notifications-approver.c    |    4 ++--
 5 files changed, 26 insertions(+), 4 deletions(-)
---
diff --git a/libempathy-gtk/empathy-notify-manager.c b/libempathy-gtk/empathy-notify-manager.c
index 2503542..89ab3c1 100644
--- a/libempathy-gtk/empathy-notify-manager.c
+++ b/libempathy-gtk/empathy-notify-manager.c
@@ -216,3 +216,15 @@ empathy_notify_manager_notification_is_enabled  (EmpathyNotifyManager *self)
 
   return TRUE;
 }
+
+NotifyNotification *
+empathy_notify_manager_create_notification (const gchar *summary,
+    const char *body,
+    const gchar *icon)
+{
+  NotifyNotification *notification;
+
+  notification = notify_notification_new (summary, body, icon);
+
+  return notification;
+}
diff --git a/libempathy-gtk/empathy-notify-manager.h b/libempathy-gtk/empathy-notify-manager.h
index 0b937e1..53c7b38 100644
--- a/libempathy-gtk/empathy-notify-manager.h
+++ b/libempathy-gtk/empathy-notify-manager.h
@@ -25,6 +25,8 @@
 
 #include <libempathy/empathy-contact.h>
 
+#include <libnotify/notification.h>
+
 G_BEGIN_DECLS
 
 #define EMPATHY_NOTIFY_MANAGER_CAP_ACTIONS             "actions"
@@ -104,6 +106,11 @@ GdkPixbuf * empathy_notify_manager_get_pixbuf_for_notification (
     EmpathyContact *contact,
     const char *icon_name);
 
+NotifyNotification * empathy_notify_manager_create_notification (
+    const gchar *summary,
+    const char *body,
+    const gchar *icon);
+
 G_END_DECLS
 
 #endif /* __EMPATHY_NOTIFY_MANAGER_H__ */
diff --git a/src/empathy-call-observer.c b/src/empathy-call-observer.c
index de21506..385fce1 100644
--- a/src/empathy-call-observer.c
+++ b/src/empathy-call-observer.c
@@ -119,7 +119,8 @@ display_reject_notification (EmpathyCallObserver *self,
       _("%s just tried to call you, but you were in another call."),
       tp_contact_get_alias (contact));
 
-  notification = notify_notification_new (summary, body, NULL);
+  notification = empathy_notify_manager_create_notification (summary, body,
+      NULL);
 
   emp_contact = empathy_contact_dup_from_tp_contact (contact);
   pixbuf = empathy_notify_manager_get_pixbuf_for_notification (
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index b971daf..06d1b0c 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -1574,7 +1574,9 @@ chat_window_show_or_update_notification (EmpathyChatWindow *self,
       const gchar *category = empathy_chat_is_room (chat)
         ? EMPATHY_NOTIFICATION_CATEGORY_MENTIONED
         : EMPATHY_NOTIFICATION_CATEGORY_CHAT;
-      notification = notify_notification_new (header, escaped, NULL);
+
+      notification = empathy_notify_manager_create_notification (header,
+          escaped, NULL);
 
       if (self->priv->notification == NULL)
         self->priv->notification = notification;
diff --git a/src/empathy-notifications-approver.c b/src/empathy-notifications-approver.c
index aa5b00f..2f42c76 100644
--- a/src/empathy-notifications-approver.c
+++ b/src/empathy-notifications-approver.c
@@ -339,8 +339,8 @@ update_notification (EmpathyNotificationsApprover *self)
        * to an existing notification with the same title.
        * In this way the previous message will not be lost: the new
        * message will appear below it, in the same notification */
-      notification = notify_notification_new (self->priv->event->header,
-           message_esc, NULL);
+      notification = empathy_notify_manager_create_notification (
+          self->priv->event->header, message_esc, NULL);
 
       if (self->priv->notification == NULL)
         {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]