]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-status-icon.c
Move chat chandler into the same process than contact list
[empathy.git] / libempathy-gtk / empathy-status-icon.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  * 
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #include <config.h>
23
24 #include <string.h>
25
26 #include <gtk/gtk.h>
27 #include <glade/glade.h>
28 #include <glib/gi18n.h>
29
30 #include <libmissioncontrol/mission-control.h>
31
32 #include <libempathy/empathy-contact-list.h>
33 #include <libempathy/empathy-contact-manager.h>
34 #include <libempathy/empathy-contact.h>
35 #include <libempathy/empathy-tp-chat.h>
36 #include <libempathy/empathy-debug.h>
37 #include <libempathy/empathy-utils.h>
38 #include <libempathy/empathy-idle.h>
39 #include <libempathy/empathy-filter.h>
40
41 #include "empathy-status-icon.h"
42 #include "empathy-contact-dialogs.h"
43 #include "empathy-presence-chooser.h"
44 #include "empathy-conf.h"
45 #include "empathy-preferences.h"
46 #include "empathy-ui-utils.h"
47 #include "empathy-accounts-dialog.h"
48 #include "empathy-images.h"
49 #include "empathy-new-message-dialog.h"
50
51
52 #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
53                        EMPATHY_TYPE_STATUS_ICON, EmpathyStatusIconPriv))
54
55 #define DEBUG_DOMAIN "StatusIcon"
56
57 /* Number of ms to wait when blinking */
58 #define BLINK_TIMEOUT 500
59
60 typedef struct _StatusIconEvent StatusIconEvent;
61
62 struct _EmpathyStatusIconPriv {
63         GtkStatusIcon         *icon;
64         EmpathyContactManager *manager;
65         EmpathyFilter         *text_filter;
66         EmpathyFilter         *call_filter;
67         EmpathyIdle           *idle;
68         MissionControl        *mc;
69         GList                 *events;
70         gboolean               showing_event_icon;
71         StatusIconEvent       *flash_state_event;
72         guint                  blink_timeout;
73
74         GtkWindow             *window;
75         GtkWidget             *popup_menu;
76         GtkWidget             *show_window_item;
77         GtkWidget             *message_item;
78         GtkWidget             *status_item;
79 };
80
81 typedef void (*EventActivatedFunc) (StatusIconEvent *event);
82
83 struct _StatusIconEvent {
84         gchar              *icon_name;
85         gchar              *message;
86         EventActivatedFunc  func;
87         gpointer            user_data;
88 };
89
90
91 static void       empathy_status_icon_class_init  (EmpathyStatusIconClass *klass);
92 static void       empathy_status_icon_init        (EmpathyStatusIcon      *icon);
93 static void       status_icon_finalize            (GObject                *object);
94 static void       status_icon_text_filter_new_channel (EmpathyFilter          *filter,
95                                                    TpConn                 *tp_conn,
96                                                    TpChan                 *tp_chan,
97                                                    EmpathyStatusIcon      *icon);
98 static void       status_icon_call_filter_new_channel (EmpathyFilter          *filter,
99                                                    TpConn                 *tp_conn,
100                                                    TpChan                 *tp_chan,
101                                                    EmpathyStatusIcon      *icon);
102 static void       status_icon_message_received_cb (EmpathyTpChat          *tp_chat,
103                                                    EmpathyMessage         *message,
104                                                    EmpathyStatusIcon      *icon);
105 static void       status_icon_idle_notify_cb      (EmpathyStatusIcon      *icon);
106 static void       status_icon_update_tooltip      (EmpathyStatusIcon      *icon);
107 static void       status_icon_set_from_state      (EmpathyStatusIcon      *icon);
108 static void       status_icon_set_visibility      (EmpathyStatusIcon      *icon,
109                                                    gboolean                visible,
110                                                    gboolean                store);
111 static void       status_icon_toggle_visibility   (EmpathyStatusIcon      *icon);
112 static void       status_icon_activate_cb         (GtkStatusIcon          *status_icon,
113                                                    EmpathyStatusIcon      *icon);
114 static gboolean   status_icon_delete_event_cb     (GtkWidget              *widget,
115                                                    GdkEvent               *event,
116                                                    EmpathyStatusIcon      *icon);
117 static void       status_icon_popup_menu_cb       (GtkStatusIcon          *status_icon,
118                                                    guint                   button,
119                                                    guint                   activate_time,
120                                                    EmpathyStatusIcon      *icon);
121 static void       status_icon_create_menu         (EmpathyStatusIcon      *icon);
122 static void       status_icon_new_message_cb      (GtkWidget              *widget,
123                                                    EmpathyStatusIcon      *icon);
124 static void       status_icon_quit_cb             (GtkWidget              *window,
125                                                    EmpathyStatusIcon      *icon);
126 static void       status_icon_show_hide_window_cb (GtkWidget              *widget,
127                                                    EmpathyStatusIcon      *icon);
128 static void       status_icon_pendings_changed_cb (EmpathyContactManager  *manager,
129                                                    EmpathyContact         *contact,
130                                                    EmpathyContact         *actor,
131                                                    guint                   reason,
132                                                    gchar                  *message,
133                                                    gboolean                is_pending,
134                                                    EmpathyStatusIcon      *icon);
135 static void       status_icon_event_subscribe_cb  (StatusIconEvent        *event);
136 static void       status_icon_event_flash_state_cb (StatusIconEvent       *event);
137 static void       status_icon_event_msg_cb        (StatusIconEvent        *event);
138 static StatusIconEvent * status_icon_event_new    (EmpathyStatusIcon      *icon,
139                                                    const gchar            *icon_name,
140                                                    const gchar            *message);
141 static void       status_icon_event_remove        (EmpathyStatusIcon      *icon,
142                                                    StatusIconEvent        *event);
143 static gboolean   status_icon_event_timeout_cb    (EmpathyStatusIcon      *icon);
144 static void       status_icon_event_free          (StatusIconEvent        *event);
145
146 G_DEFINE_TYPE (EmpathyStatusIcon, empathy_status_icon, G_TYPE_OBJECT);
147
148 static void
149 status_icon_notify_use_nm_cb (EmpathyConf  *conf,
150                               const gchar *key,
151                               gpointer     user_data)
152 {
153         EmpathyStatusIconPriv *priv = GET_PRIV (user_data);
154         gboolean               use_nm;
155
156         if (empathy_conf_get_bool (conf, key, &use_nm)) {
157                 empathy_idle_set_use_nm (priv->idle, use_nm);
158         }
159 }
160
161 static void
162 status_icon_notify_visibility_cb (EmpathyConf *conf,
163                                   const gchar *key,
164                                   gpointer     user_data)
165 {
166         EmpathyStatusIcon *icon = user_data;
167         gboolean           hidden = FALSE;
168
169         if (empathy_conf_get_bool (conf, key, &hidden)) {
170                 status_icon_set_visibility (icon, !hidden, FALSE);
171         }
172 }
173
174 static void
175 empathy_status_icon_class_init (EmpathyStatusIconClass *klass)
176 {
177         GObjectClass *object_class = G_OBJECT_CLASS (klass);
178
179         object_class->finalize = status_icon_finalize;
180
181         g_type_class_add_private (object_class, sizeof (EmpathyStatusIconPriv));
182 }
183
184 static void
185 empathy_status_icon_init (EmpathyStatusIcon *icon)
186 {
187         EmpathyStatusIconPriv *priv;
188         GList                 *pendings, *l;
189         gboolean               use_nm;
190
191         priv = GET_PRIV (icon);
192
193         priv->icon = gtk_status_icon_new ();
194         priv->manager = empathy_contact_manager_new ();
195         priv->mc = empathy_mission_control_new ();
196         priv->text_filter = empathy_filter_new ("org.gnome.Empathy.ChatFilter",
197                                                 "/org/gnome/Empathy/ChatFilter",
198                                                 TP_IFACE_CHANNEL_TYPE_TEXT,
199                                                 MC_FILTER_PRIORITY_DIALOG,
200                                                 MC_FILTER_FLAG_INCOMING);
201         priv->call_filter = empathy_filter_new ("org.gnome.Empathy.CallFilter",
202                                                 "/org/gnome/Empathy/CallFilter",
203                                                 TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA,
204                                                 MC_FILTER_PRIORITY_DIALOG,
205                                                 MC_FILTER_FLAG_INCOMING);
206
207         /* Setup EmpathyIdle */
208         priv->idle = empathy_idle_new ();
209         empathy_conf_get_bool (empathy_conf_get (),
210                                EMPATHY_PREFS_USE_NM,
211                                &use_nm);
212         empathy_conf_notify_add (empathy_conf_get (),
213                                  EMPATHY_PREFS_USE_NM,
214                                  status_icon_notify_use_nm_cb,
215                                  icon);
216         empathy_idle_set_auto_away (priv->idle, TRUE);
217         empathy_idle_set_use_nm (priv->idle, use_nm);
218
219         /* make icon listen and respond to MAIN_WINDOW_HIDDEN changes */
220         empathy_conf_notify_add (empathy_conf_get (),
221                                  EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN,
222                                  status_icon_notify_visibility_cb,
223                                  icon);
224
225         status_icon_create_menu (icon);
226         status_icon_idle_notify_cb (icon);
227
228         g_signal_connect (priv->text_filter, "new-channel",
229                           G_CALLBACK (status_icon_text_filter_new_channel),
230                           icon);
231         g_signal_connect (priv->call_filter, "new-channel",
232                           G_CALLBACK (status_icon_call_filter_new_channel),
233                           icon);
234         g_signal_connect_swapped (priv->idle, "notify",
235                                   G_CALLBACK (status_icon_idle_notify_cb),
236                                   icon);
237         g_signal_connect (priv->icon, "activate",
238                           G_CALLBACK (status_icon_activate_cb),
239                           icon);
240         g_signal_connect (priv->icon, "popup-menu",
241                           G_CALLBACK (status_icon_popup_menu_cb),
242                           icon);
243         g_signal_connect (priv->manager, "pendings-changed",
244                           G_CALLBACK (status_icon_pendings_changed_cb),
245                           icon);
246
247         pendings = empathy_contact_list_get_pendings (EMPATHY_CONTACT_LIST (priv->manager));
248         for (l = pendings; l; l = l->next) {
249                 EmpathyPendingInfo *info;
250
251                 info = l->data;
252                 status_icon_pendings_changed_cb (priv->manager,
253                                                  info->member,
254                                                  info->actor,
255                                                  0,
256                                                  info->message,
257                                                  TRUE,
258                                                  icon);
259                 empathy_pending_info_free (info);
260         }
261         g_list_free (pendings);
262 }
263
264 static void
265 status_icon_finalize (GObject *object)
266 {
267         EmpathyStatusIconPriv *priv;
268
269         priv = GET_PRIV (object);
270
271         g_list_foreach (priv->events, (GFunc) status_icon_event_free, NULL);
272         g_list_free (priv->events);
273
274         if (priv->blink_timeout) {
275                 g_source_remove (priv->blink_timeout);
276         }
277
278         g_object_unref (priv->icon);
279         g_object_unref (priv->window);
280         g_object_unref (priv->idle);
281         g_object_unref (priv->manager);
282         g_object_unref (priv->mc);
283         g_object_unref (priv->text_filter);
284         g_object_unref (priv->call_filter);
285 }
286
287 EmpathyStatusIcon *
288 empathy_status_icon_new (GtkWindow *window)
289 {
290         EmpathyStatusIconPriv *priv;
291         EmpathyStatusIcon     *icon;
292         gboolean               should_hide;
293
294         g_return_val_if_fail (GTK_IS_WINDOW (window), NULL);
295
296         icon = g_object_new (EMPATHY_TYPE_STATUS_ICON, NULL);
297         priv = GET_PRIV (icon);
298
299         priv->window = g_object_ref (window);
300
301         g_signal_connect (priv->window, "delete-event",
302                           G_CALLBACK (status_icon_delete_event_cb),
303                           icon);
304
305         empathy_conf_get_bool (empathy_conf_get (),
306                               EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN,
307                               &should_hide);
308
309         if (gtk_window_is_active (priv->window) == should_hide) {
310                 status_icon_set_visibility (icon, !should_hide, FALSE);
311         }
312
313         return icon;
314 }
315
316 static void
317 status_icon_text_filter_new_channel (EmpathyFilter     *filter,
318                                      TpConn            *tp_conn,
319                                      TpChan            *tp_chan,
320                                      EmpathyStatusIcon *icon)
321 {
322         EmpathyStatusIconPriv *priv;
323         McAccount             *account;
324         EmpathyTpChat         *tp_chat;
325
326         priv = GET_PRIV (icon);
327
328         account = mission_control_get_account_for_connection (priv->mc, tp_conn, NULL);
329
330         empathy_debug (DEBUG_DOMAIN, "New text channel to be filtered for contact %s",
331                        empathy_inspect_channel (account, tp_chan));
332
333         tp_chat = empathy_tp_chat_new (account, tp_chan);
334         g_object_set_data (G_OBJECT (tp_chat), "filter", filter);
335         g_object_unref (account);
336
337         g_signal_connect (tp_chat, "message-received",
338                           G_CALLBACK (status_icon_message_received_cb),
339                           icon);
340 }
341
342 static void
343 status_icon_message_received_cb (EmpathyTpChat     *tp_chat,
344                                  EmpathyMessage    *message,
345                                  EmpathyStatusIcon *icon)
346 {
347         EmpathyContact  *sender;
348         gchar           *msg;
349         StatusIconEvent *event;
350
351         empathy_debug (DEBUG_DOMAIN, "Message received, add event");
352
353         g_signal_handlers_disconnect_by_func (tp_chat,
354                                               status_icon_message_received_cb,
355                                               icon);
356
357         sender = empathy_message_get_sender (message);
358         msg = g_strdup_printf (_("New message from %s:\n%s"),
359                                empathy_contact_get_name (sender),
360                                empathy_message_get_body (message));
361
362         event = status_icon_event_new (icon, EMPATHY_IMAGE_NEW_MESSAGE, msg);
363         event->func = status_icon_event_msg_cb;
364         event->user_data = tp_chat;
365         g_free (msg);
366 }
367
368 static void
369 status_icon_call_member_added_cb (EmpathyTpGroup    *group,
370                                   EmpathyContact    *member,
371                                   EmpathyContact    *actor,
372                                   guint              reason,
373                                   const gchar       *message,
374                                   EmpathyStatusIcon *icon)
375 {
376         EmpathyFilter *filter;
377
378         if (empathy_contact_is_user (member)) {
379                 /* We are member, it's an outgoing call, we can dispatch
380                  * the channel without asking the user */
381                 empathy_debug (DEBUG_DOMAIN, "Process OUTGOING call channel");
382                 filter = g_object_get_data (G_OBJECT (group), "filter");
383                 empathy_filter_process (filter,
384                                         empathy_tp_group_get_channel (group),
385                                         TRUE);
386                 g_object_unref (group);
387         }
388 }
389
390 static void
391 status_icon_event_call_cb (StatusIconEvent *event)
392 {
393         EmpathyFilter  *filter;
394         EmpathyTpGroup *group;
395
396         empathy_debug (DEBUG_DOMAIN, "Dispatching call channel");
397
398         group = event->user_data;
399         filter = g_object_get_data (G_OBJECT (group), "filter");
400         empathy_filter_process (filter,
401                                 empathy_tp_group_get_channel (group),
402                                 TRUE);
403         g_object_unref (group);
404 }
405
406 static void
407 status_icon_call_local_pending_cb (EmpathyTpGroup    *group,
408                                    EmpathyContact    *member,
409                                    EmpathyContact    *actor,
410                                    guint              reason,
411                                    const gchar       *message,
412                                    EmpathyStatusIcon *icon)
413 {
414         StatusIconEvent *event;
415
416         if (empathy_contact_is_user (member)) {
417                 gchar *msg;
418
419                 /* We are local pending, it's an incoming call, we need to ask
420                  * the user if he wants to accept the call. */
421                 empathy_contact_run_until_ready (member,
422                                                  EMPATHY_CONTACT_READY_NAME,
423                                                  NULL);
424
425                 empathy_debug (DEBUG_DOMAIN, "INCOMING call, add event");
426
427                 msg = g_strdup_printf (_("Incoming call from %s:\n%s"),
428                                        empathy_contact_get_name (member),
429                                        message);
430
431                 event = status_icon_event_new (icon, EMPATHY_IMAGE_VOIP, msg);
432                 event->func = status_icon_event_call_cb;
433                 event->user_data = group;
434                 g_free (msg);
435         }
436 }
437
438 static void
439 status_icon_call_filter_new_channel (EmpathyFilter     *filter,
440                                      TpConn            *tp_conn,
441                                      TpChan            *tp_chan,
442                                      EmpathyStatusIcon *icon)
443 {
444         EmpathyStatusIconPriv *priv;
445         McAccount             *account;
446         EmpathyTpGroup        *group;
447
448         priv = GET_PRIV (icon);
449
450         account = mission_control_get_account_for_connection (priv->mc, tp_conn, NULL);
451
452         empathy_debug (DEBUG_DOMAIN, "New media channel to be filtered");
453
454         /* FIXME: We have to check if the user is member or local-pending to
455          * know if it's an incoming or outgoing call because of the way we
456          * request media channels MC can't know if it's incoming or outgoing */
457         group = empathy_tp_group_new (account, tp_chan);
458         g_object_set_data (G_OBJECT (group), "filter", filter);
459         g_object_unref (account);
460
461         g_signal_connect (group, "member-added",
462                           G_CALLBACK (status_icon_call_member_added_cb),
463                           icon);
464         g_signal_connect (group, "local-pending",
465                           G_CALLBACK (status_icon_call_local_pending_cb),
466                           icon);
467 }
468
469 static void
470 status_icon_idle_notify_cb (EmpathyStatusIcon *icon)
471 {
472         EmpathyStatusIconPriv *priv;
473         McPresence             flash_state;
474
475         priv = GET_PRIV (icon);
476
477         flash_state = empathy_idle_get_flash_state (priv->idle);
478         if (flash_state != MC_PRESENCE_UNSET) {
479                 const gchar *icon_name;
480
481                 icon_name = empathy_icon_name_for_presence (flash_state);
482                 if (!priv->flash_state_event) {
483                         /* We are now flashing */
484                         priv->flash_state_event = status_icon_event_new (icon, icon_name, NULL);
485                         priv->flash_state_event->user_data = icon;
486                         priv->flash_state_event->func = status_icon_event_flash_state_cb;
487                 } else {
488                         /* We are still flashing but with another state */
489                         g_free (priv->flash_state_event->icon_name);
490                         priv->flash_state_event->icon_name = g_strdup (icon_name);
491                 }
492         }
493         else if (priv->flash_state_event) {
494                 /* We are no more flashing */
495                 status_icon_event_remove (icon, priv->flash_state_event);
496                 priv->flash_state_event = NULL;
497         }
498
499         if (!priv->showing_event_icon) {
500                 status_icon_set_from_state (icon);
501         }
502
503         status_icon_update_tooltip (icon);
504 }
505
506 static void
507 status_icon_update_tooltip (EmpathyStatusIcon *icon)
508 {
509         EmpathyStatusIconPriv *priv;
510         const gchar           *tooltip = NULL;
511
512         priv = GET_PRIV (icon);
513
514         if (priv->events) {
515                 StatusIconEvent *event;
516
517                 event = priv->events->data;
518                 tooltip = event->message;
519         }
520
521         if (!tooltip) {
522                 tooltip = empathy_idle_get_status (priv->idle);
523         }
524
525         gtk_status_icon_set_tooltip (priv->icon, tooltip);      
526 }
527
528 static void
529 status_icon_set_from_state (EmpathyStatusIcon *icon)
530 {
531         EmpathyStatusIconPriv *priv;
532         McPresence             state;
533         const gchar           *icon_name;
534
535         priv = GET_PRIV (icon);
536
537         state = empathy_idle_get_state (priv->idle);
538         icon_name = empathy_icon_name_for_presence (state);
539         gtk_status_icon_set_from_icon_name (priv->icon, icon_name);
540 }
541
542 static void
543 status_icon_set_visibility (EmpathyStatusIcon *icon,
544                             gboolean           visible,
545                             gboolean           store)
546 {
547         EmpathyStatusIconPriv *priv;
548
549         priv = GET_PRIV (icon);
550
551         if (store) {
552                 empathy_conf_set_bool (empathy_conf_get (),
553                                        EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN, !visible);
554         }
555
556         if (!visible) {
557                 empathy_window_iconify (priv->window, priv->icon);
558         } else {
559                 GList *accounts;
560
561                 empathy_window_present (GTK_WINDOW (priv->window), TRUE);
562         
563                 /* Show the accounts dialog if there is no enabled accounts */
564                 accounts = mc_accounts_list_by_enabled (TRUE);
565                 if (accounts) {
566                         mc_accounts_list_free (accounts);
567                 } else {
568                         empathy_debug (DEBUG_DOMAIN,
569                                       "No enabled account, Showing account dialog");
570                         empathy_accounts_dialog_show (GTK_WINDOW (priv->window));
571                 }
572         }
573 }
574
575 static void
576 status_icon_toggle_visibility (EmpathyStatusIcon *icon)
577 {
578         EmpathyStatusIconPriv *priv = GET_PRIV (icon);
579         gboolean               visible;
580
581         visible = gtk_window_is_active (priv->window);
582         status_icon_set_visibility (icon, !visible, TRUE);
583 }
584
585 static void
586 status_icon_activate_cb (GtkStatusIcon     *status_icon,
587                          EmpathyStatusIcon *icon)
588 {
589         EmpathyStatusIconPriv *priv;
590
591         priv = GET_PRIV (icon);
592
593         empathy_debug (DEBUG_DOMAIN, "Activated: %s",
594                        priv->events ? "event" : "toggle");
595
596         if (priv->events) {
597                 status_icon_event_remove (icon, priv->events->data);
598         } else {
599                 status_icon_toggle_visibility (icon);
600         }
601 }
602
603 static gboolean
604 status_icon_delete_event_cb (GtkWidget         *widget,
605                              GdkEvent          *event,
606                              EmpathyStatusIcon *icon)
607 {
608         status_icon_set_visibility (icon, FALSE, TRUE);
609
610         return TRUE;
611 }
612
613 static void
614 status_icon_popup_menu_cb (GtkStatusIcon     *status_icon,
615                            guint              button,
616                            guint              activate_time,
617                            EmpathyStatusIcon *icon)
618 {
619         EmpathyStatusIconPriv *priv;
620         GtkWidget             *submenu;
621         gboolean               show;
622
623         priv = GET_PRIV (icon);
624
625         show = empathy_window_get_is_visible (GTK_WINDOW (priv->window));
626
627         g_signal_handlers_block_by_func (priv->show_window_item,
628                                          status_icon_show_hide_window_cb,
629                                          icon);
630         gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (priv->show_window_item),
631                                         show);
632         g_signal_handlers_unblock_by_func (priv->show_window_item,
633                                            status_icon_show_hide_window_cb,
634                                            icon);
635
636         submenu = empathy_presence_chooser_create_menu ();
637         gtk_menu_item_set_submenu (GTK_MENU_ITEM (priv->status_item),
638                                    submenu);
639
640         gtk_menu_popup (GTK_MENU (priv->popup_menu),
641                         NULL, NULL,
642                         gtk_status_icon_position_menu,
643                         priv->icon,
644                         button,
645                         activate_time);
646 }
647
648 static void
649 status_icon_create_menu (EmpathyStatusIcon *icon)
650 {
651         EmpathyStatusIconPriv *priv;
652         GladeXML              *glade;
653
654         priv = GET_PRIV (icon);
655
656         glade = empathy_glade_get_file ("empathy-status-icon.glade",
657                                        "tray_menu",
658                                        NULL,
659                                        "tray_menu", &priv->popup_menu,
660                                        "tray_show_list", &priv->show_window_item,
661                                        "tray_new_message", &priv->message_item,
662                                        "tray_status", &priv->status_item,
663                                        NULL);
664
665         empathy_glade_connect (glade,
666                               icon,
667                               "tray_show_list", "toggled", status_icon_show_hide_window_cb,
668                               "tray_new_message", "activate", status_icon_new_message_cb,
669                               "tray_quit", "activate", status_icon_quit_cb,
670                               NULL);
671
672         g_object_unref (glade);
673 }
674
675 static void
676 status_icon_new_message_cb (GtkWidget         *widget,
677                             EmpathyStatusIcon *icon)
678 {
679         EmpathyStatusIconPriv *priv;
680
681         priv = GET_PRIV (icon);
682
683         empathy_new_message_dialog_show (NULL);
684 }
685
686 static void
687 status_icon_quit_cb (GtkWidget         *window,
688                      EmpathyStatusIcon *icon)
689 {
690         gtk_main_quit ();
691 }
692
693 static void
694 status_icon_show_hide_window_cb (GtkWidget         *widget,
695                                  EmpathyStatusIcon *icon)
696 {
697         gboolean visible;
698
699         visible = gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM (widget));
700         status_icon_set_visibility (icon, visible, TRUE);
701 }
702
703 static void
704 status_icon_pendings_changed_cb (EmpathyContactManager *manager,
705                                  EmpathyContact        *contact,
706                                  EmpathyContact        *actor,
707                                  guint                  reason,
708                                  gchar                 *message,
709                                  gboolean               is_pending,
710                                  EmpathyStatusIcon     *icon)
711 {
712         EmpathyStatusIconPriv *priv;
713         StatusIconEvent       *event;
714         GString               *str;
715
716         priv = GET_PRIV (icon);
717
718         if (!is_pending) {
719                 /* FIXME: We should remove the event */
720                 return;
721         }
722
723         empathy_contact_run_until_ready (contact,
724                                          EMPATHY_CONTACT_READY_NAME,
725                                          NULL);
726
727         str = g_string_new (NULL);
728         g_string_printf (str, _("Subscription requested by %s"),
729                          empathy_contact_get_name (contact));   
730         if (!G_STR_EMPTY (message)) {
731                 g_string_append_printf (str, _("\nMessage: %s"), message);
732         }
733
734         event = status_icon_event_new (icon, GTK_STOCK_DIALOG_QUESTION, str->str);
735         event->user_data = g_object_ref (contact);
736         event->func = status_icon_event_subscribe_cb;
737
738         g_string_free (str, TRUE);
739 }
740
741 static void
742 status_icon_event_subscribe_cb (StatusIconEvent *event)
743 {
744         EmpathyContact *contact;
745
746         contact = EMPATHY_CONTACT (event->user_data);
747
748         empathy_subscription_dialog_show (contact, NULL);
749
750         g_object_unref (contact);
751 }
752
753 static void
754 status_icon_event_flash_state_cb (StatusIconEvent *event)
755 {
756         EmpathyStatusIconPriv *priv;
757
758         priv = GET_PRIV (event->user_data);
759
760         empathy_idle_set_flash_state (priv->idle, MC_PRESENCE_UNSET);
761 }
762
763 static void
764 status_icon_event_msg_cb (StatusIconEvent *event)
765 {
766         EmpathyFilter *filter;
767         EmpathyTpChat *tp_chat;
768
769         empathy_debug (DEBUG_DOMAIN, "Dispatching text channel");
770
771         tp_chat = event->user_data;
772         filter = g_object_get_data (G_OBJECT (tp_chat), "filter");
773         empathy_filter_process (filter,
774                                 empathy_tp_chat_get_channel (tp_chat),
775                                 TRUE);
776
777         g_object_unref (tp_chat);
778 }
779
780 static StatusIconEvent *
781 status_icon_event_new (EmpathyStatusIcon *icon,
782                        const gchar       *icon_name,
783                        const gchar       *message)
784 {
785         EmpathyStatusIconPriv *priv;
786         StatusIconEvent       *event;
787
788         priv = GET_PRIV (icon);
789
790         event = g_slice_new0 (StatusIconEvent);
791         event->icon_name = g_strdup (icon_name);        
792         event->message = g_strdup (message);
793
794         priv->events = g_list_append (priv->events, event);
795         if (!priv->blink_timeout) {
796                 priv->showing_event_icon = FALSE;
797                 priv->blink_timeout = g_timeout_add (BLINK_TIMEOUT,
798                                                      (GSourceFunc) status_icon_event_timeout_cb,
799                                                      icon);
800                 status_icon_event_timeout_cb (icon);
801                 status_icon_update_tooltip (icon);
802         }
803
804         return event;
805 }
806
807 static void
808 status_icon_event_remove (EmpathyStatusIcon *icon,
809                           StatusIconEvent   *event)
810 {
811         EmpathyStatusIconPriv *priv;
812
813         priv = GET_PRIV (icon);
814
815         if (event->func) {
816                 event->func (event);
817         }
818         priv->events = g_list_remove (priv->events, event);
819         status_icon_event_free (event);
820         priv->showing_event_icon = FALSE;
821         status_icon_update_tooltip (icon);
822         status_icon_set_from_state (icon);
823
824         if (priv->events) {
825                 return;
826         }
827
828         if (priv->blink_timeout) {
829                 g_source_remove (priv->blink_timeout);
830                 priv->blink_timeout = 0;
831         }
832 }
833
834 static gboolean
835 status_icon_event_timeout_cb (EmpathyStatusIcon *icon)
836 {
837         EmpathyStatusIconPriv *priv;
838
839         priv = GET_PRIV (icon);
840
841         priv->showing_event_icon = !priv->showing_event_icon;
842
843         if (!priv->showing_event_icon) {
844                 status_icon_set_from_state (icon);
845         } else {
846                 StatusIconEvent *event;
847
848                 event = priv->events->data;
849                 gtk_status_icon_set_from_icon_name (priv->icon, event->icon_name);
850         }
851
852         return TRUE;
853 }
854
855 static void
856 status_icon_event_free (StatusIconEvent *event)
857 {
858         g_free (event->icon_name);
859         g_free (event->message);
860         g_slice_free (StatusIconEvent, event);
861 }
862