]> git.0d.be Git - empathy.git/commitdiff
Add the contact from who the event comes in the EmpathyEvent struct.
authorXavier Claessens <xclaesse@src.gnome.org>
Tue, 15 Jul 2008 14:00:40 +0000 (14:00 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Tue, 15 Jul 2008 14:00:40 +0000 (14:00 +0000)
svn path=/trunk/; revision=1246

libempathy-gtk/empathy-event-manager.c
libempathy-gtk/empathy-event-manager.h

index 0dcabda94bb0d03698aae89f13f6c4ba98a79162..e6ddb1808d0d29c226f50a08415264e2bc271deb 100644 (file)
@@ -74,6 +74,11 @@ event_free (EventPriv *event)
 {
        g_free (event->public.icon_name);
        g_free (event->public.message);
 {
        g_free (event->public.icon_name);
        g_free (event->public.message);
+
+       if (event->public.contact) {
+               g_object_unref (event->public.contact);
+       }
+
        if (event->channel) {
                g_signal_handlers_disconnect_by_func (event->channel,
                                                      event_remove,
        if (event->channel) {
                g_signal_handlers_disconnect_by_func (event->channel,
                                                      event_remove,
@@ -96,6 +101,7 @@ event_remove (EventPriv *event)
 
 static void
 event_manager_add (EmpathyEventManager *manager,
 
 static void
 event_manager_add (EmpathyEventManager *manager,
+                  EmpathyContact      *contact,
                   const gchar         *icon_name,
                   const gchar         *message,
                   TpChannel           *channel,
                   const gchar         *icon_name,
                   const gchar         *message,
                   TpChannel           *channel,
@@ -106,6 +112,7 @@ event_manager_add (EmpathyEventManager *manager,
        EventPriv               *event;
 
        event = g_slice_new0 (EventPriv);
        EventPriv               *event;
 
        event = g_slice_new0 (EventPriv);
+       event->public.contact = contact ? g_object_ref (contact) : NULL;
        event->public.icon_name = g_strdup (icon_name);
        event->public.message = g_strdup (message);
        event->manager = manager;
        event->public.icon_name = g_strdup (icon_name);
        event->public.message = g_strdup (message);
        event->manager = manager;
@@ -161,8 +168,8 @@ event_manager_chat_message_received_cb (EmpathyTpChat       *tp_chat,
                               empathy_message_get_body (message));
 
        channel = empathy_tp_chat_get_channel (tp_chat);
                               empathy_message_get_body (message));
 
        channel = empathy_tp_chat_get_channel (tp_chat);
-       event_manager_add (manager, EMPATHY_IMAGE_NEW_MESSAGE, msg, channel,
-                          event_channel_process_func, NULL);
+       event_manager_add (manager, sender, EMPATHY_IMAGE_NEW_MESSAGE, msg,
+                          channel, event_channel_process_func, NULL);
 
        g_free (msg);
 }
 
        g_free (msg);
 }
@@ -198,8 +205,8 @@ event_manager_filter_channel_cb (EmpathyDispatcher   *dispatcher,
                msg = g_strdup_printf (_("Incoming call from %s"),
                                       empathy_contact_get_name (contact));
 
                msg = g_strdup_printf (_("Incoming call from %s"),
                                       empathy_contact_get_name (contact));
 
-               event_manager_add (manager, EMPATHY_IMAGE_VOIP, msg, channel,
-                                  event_channel_process_func, NULL);
+               event_manager_add (manager, contact, EMPATHY_IMAGE_VOIP, msg,
+                                  channel, event_channel_process_func, NULL);
 
                g_free (msg);
                g_object_unref (contact);
 
                g_free (msg);
                g_object_unref (contact);
@@ -288,8 +295,8 @@ event_manager_filter_tube_cb (EmpathyDispatcher     *dispatcher,
                                       empathy_contact_get_name (tube->initiator));
        }
 
                                       empathy_contact_get_name (tube->initiator));
        }
 
-       event_manager_add (manager, icon_name, msg, tube->channel,
-                          event_tube_process_func,
+       event_manager_add (manager, tube->initiator, icon_name, msg,
+                          tube->channel, event_tube_process_func,
                           empathy_dispatcher_tube_ref (tube));
 
        g_free (msg);
                           empathy_dispatcher_tube_ref (tube));
 
        g_free (msg);
@@ -298,11 +305,7 @@ event_manager_filter_tube_cb (EmpathyDispatcher     *dispatcher,
 static void
 event_pending_subscribe_func (EventPriv *event)
 {
 static void
 event_pending_subscribe_func (EventPriv *event)
 {
-       EmpathyContact *contact = EMPATHY_CONTACT (event->user_data);
-
-       empathy_subscription_dialog_show (contact, NULL);
-
-       g_object_unref (contact);
+       empathy_subscription_dialog_show (event->public.contact, NULL);
        event_remove (event);
 }
 
        event_remove (event);
 }
 
@@ -333,9 +336,8 @@ event_manager_pendings_changed_cb (EmpathyContactList  *list,
                g_string_append_printf (str, _("\nMessage: %s"), message);
        }
 
                g_string_append_printf (str, _("\nMessage: %s"), message);
        }
 
-       event_manager_add (manager, GTK_STOCK_DIALOG_QUESTION, str->str, NULL,
-                          event_pending_subscribe_func,
-                          g_object_ref (contact));
+       event_manager_add (manager, contact, GTK_STOCK_DIALOG_QUESTION, str->str,
+                          NULL, event_pending_subscribe_func, NULL);
 
        g_string_free (str, TRUE);
 }
 
        g_string_free (str, TRUE);
 }
index a4da56aacfbad7561c2d240054ca0e1e4895eb73..89cb74d631cc7f3eace33620050db1a5100fb56d 100644 (file)
@@ -25,6 +25,8 @@
 #include <glib.h>
 #include <glib-object.h>
 
 #include <glib.h>
 #include <glib-object.h>
 
+#include <libempathy/empathy-contact.h>
+
 G_BEGIN_DECLS
 
 #define EMPATHY_TYPE_EVENT_MANAGER         (empathy_event_manager_get_type ())
 G_BEGIN_DECLS
 
 #define EMPATHY_TYPE_EVENT_MANAGER         (empathy_event_manager_get_type ())
@@ -47,8 +49,9 @@ struct _EmpathyEventManagerClass {
 };
 
 typedef struct {
 };
 
 typedef struct {
-       gchar *icon_name;
-       gchar *message;
+       EmpathyContact *contact;
+       gchar          *icon_name;
+       gchar          *message;
 } EmpathyEvent;
 
 GType                empathy_event_manager_get_type      (void) G_GNUC_CONST;
 } EmpathyEvent;
 
 GType                empathy_event_manager_get_type      (void) G_GNUC_CONST;