]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-status-icon.c
Updatre python binding
[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_debug (DEBUG_DOMAIN, "INCOMING call, add event");
422
423                 msg = g_strdup_printf (_("Incoming call from %s:\n%s"),
424                                        empathy_contact_get_name (member),
425                                        message);
426
427                 event = status_icon_event_new (icon, EMPATHY_IMAGE_VOIP, msg);
428                 event->func = status_icon_event_call_cb;
429                 event->user_data = group;
430                 g_free (msg);
431         }
432 }
433
434 static void
435 status_icon_call_filter_new_channel (EmpathyFilter     *filter,
436                                      TpConn            *tp_conn,
437                                      TpChan            *tp_chan,
438                                      EmpathyStatusIcon *icon)
439 {
440         EmpathyStatusIconPriv *priv;
441         McAccount             *account;
442         EmpathyTpGroup        *group;
443
444         priv = GET_PRIV (icon);
445
446         account = mission_control_get_account_for_connection (priv->mc, tp_conn, NULL);
447
448         empathy_debug (DEBUG_DOMAIN, "New media channel to be filtered");
449
450         /* FIXME: We have to check if the user is member or local-pending to
451          * know if it's an incoming or outgoing call because of the way we
452          * request media channels MC can't know if it's incoming or outgoing */
453         group = empathy_tp_group_new (account, tp_chan);
454         g_object_set_data (G_OBJECT (group), "filter", filter);
455         g_object_unref (account);
456
457         g_signal_connect (group, "member-added",
458                           G_CALLBACK (status_icon_call_member_added_cb),
459                           icon);
460         g_signal_connect (group, "local-pending",
461                           G_CALLBACK (status_icon_call_local_pending_cb),
462                           icon);
463 }
464
465 static void
466 status_icon_idle_notify_cb (EmpathyStatusIcon *icon)
467 {
468         EmpathyStatusIconPriv *priv;
469         McPresence             flash_state;
470
471         priv = GET_PRIV (icon);
472
473         flash_state = empathy_idle_get_flash_state (priv->idle);
474         if (flash_state != MC_PRESENCE_UNSET) {
475                 const gchar *icon_name;
476
477                 icon_name = empathy_icon_name_for_presence (flash_state);
478                 if (!priv->flash_state_event) {
479                         /* We are now flashing */
480                         priv->flash_state_event = status_icon_event_new (icon, icon_name, NULL);
481                         priv->flash_state_event->user_data = icon;
482                         priv->flash_state_event->func = status_icon_event_flash_state_cb;
483                 } else {
484                         /* We are still flashing but with another state */
485                         g_free (priv->flash_state_event->icon_name);
486                         priv->flash_state_event->icon_name = g_strdup (icon_name);
487                 }
488         }
489         else if (priv->flash_state_event) {
490                 /* We are no more flashing */
491                 status_icon_event_remove (icon, priv->flash_state_event);
492                 priv->flash_state_event = NULL;
493         }
494
495         if (!priv->showing_event_icon) {
496                 status_icon_set_from_state (icon);
497         }
498
499         status_icon_update_tooltip (icon);
500 }
501
502 static void
503 status_icon_update_tooltip (EmpathyStatusIcon *icon)
504 {
505         EmpathyStatusIconPriv *priv;
506         const gchar           *tooltip = NULL;
507
508         priv = GET_PRIV (icon);
509
510         if (priv->events) {
511                 StatusIconEvent *event;
512
513                 event = priv->events->data;
514                 tooltip = event->message;
515         }
516
517         if (!tooltip) {
518                 tooltip = empathy_idle_get_status (priv->idle);
519         }
520
521         gtk_status_icon_set_tooltip (priv->icon, tooltip);      
522 }
523
524 static void
525 status_icon_set_from_state (EmpathyStatusIcon *icon)
526 {
527         EmpathyStatusIconPriv *priv;
528         McPresence             state;
529         const gchar           *icon_name;
530
531         priv = GET_PRIV (icon);
532
533         state = empathy_idle_get_state (priv->idle);
534         icon_name = empathy_icon_name_for_presence (state);
535         gtk_status_icon_set_from_icon_name (priv->icon, icon_name);
536 }
537
538 static void
539 status_icon_set_visibility (EmpathyStatusIcon *icon,
540                             gboolean           visible,
541                             gboolean           store)
542 {
543         EmpathyStatusIconPriv *priv;
544
545         priv = GET_PRIV (icon);
546
547         if (store) {
548                 empathy_conf_set_bool (empathy_conf_get (),
549                                        EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN, !visible);
550         }
551
552         if (!visible) {
553                 empathy_window_iconify (priv->window, priv->icon);
554         } else {
555                 GList *accounts;
556
557                 empathy_window_present (GTK_WINDOW (priv->window), TRUE);
558         
559                 /* Show the accounts dialog if there is no enabled accounts */
560                 accounts = mc_accounts_list_by_enabled (TRUE);
561                 if (accounts) {
562                         mc_accounts_list_free (accounts);
563                 } else {
564                         empathy_debug (DEBUG_DOMAIN,
565                                       "No enabled account, Showing account dialog");
566                         empathy_accounts_dialog_show (GTK_WINDOW (priv->window));
567                 }
568         }
569 }
570
571 static void
572 status_icon_toggle_visibility (EmpathyStatusIcon *icon)
573 {
574         EmpathyStatusIconPriv *priv = GET_PRIV (icon);
575         gboolean               visible;
576
577         visible = gtk_window_is_active (priv->window);
578         status_icon_set_visibility (icon, !visible, TRUE);
579 }
580
581 static void
582 status_icon_activate_cb (GtkStatusIcon     *status_icon,
583                          EmpathyStatusIcon *icon)
584 {
585         EmpathyStatusIconPriv *priv;
586
587         priv = GET_PRIV (icon);
588
589         empathy_debug (DEBUG_DOMAIN, "Activated: %s",
590                        priv->events ? "event" : "toggle");
591
592         if (priv->events) {
593                 status_icon_event_remove (icon, priv->events->data);
594         } else {
595                 status_icon_toggle_visibility (icon);
596         }
597 }
598
599 static gboolean
600 status_icon_delete_event_cb (GtkWidget         *widget,
601                              GdkEvent          *event,
602                              EmpathyStatusIcon *icon)
603 {
604         status_icon_set_visibility (icon, FALSE, TRUE);
605
606         return TRUE;
607 }
608
609 static void
610 status_icon_popup_menu_cb (GtkStatusIcon     *status_icon,
611                            guint              button,
612                            guint              activate_time,
613                            EmpathyStatusIcon *icon)
614 {
615         EmpathyStatusIconPriv *priv;
616         GtkWidget             *submenu;
617         gboolean               show;
618
619         priv = GET_PRIV (icon);
620
621         show = empathy_window_get_is_visible (GTK_WINDOW (priv->window));
622
623         g_signal_handlers_block_by_func (priv->show_window_item,
624                                          status_icon_show_hide_window_cb,
625                                          icon);
626         gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (priv->show_window_item),
627                                         show);
628         g_signal_handlers_unblock_by_func (priv->show_window_item,
629                                            status_icon_show_hide_window_cb,
630                                            icon);
631
632         submenu = empathy_presence_chooser_create_menu ();
633         gtk_menu_item_set_submenu (GTK_MENU_ITEM (priv->status_item),
634                                    submenu);
635
636         gtk_menu_popup (GTK_MENU (priv->popup_menu),
637                         NULL, NULL,
638                         gtk_status_icon_position_menu,
639                         priv->icon,
640                         button,
641                         activate_time);
642 }
643
644 static void
645 status_icon_create_menu (EmpathyStatusIcon *icon)
646 {
647         EmpathyStatusIconPriv *priv;
648         GladeXML              *glade;
649
650         priv = GET_PRIV (icon);
651
652         glade = empathy_glade_get_file ("empathy-status-icon.glade",
653                                        "tray_menu",
654                                        NULL,
655                                        "tray_menu", &priv->popup_menu,
656                                        "tray_show_list", &priv->show_window_item,
657                                        "tray_new_message", &priv->message_item,
658                                        "tray_status", &priv->status_item,
659                                        NULL);
660
661         empathy_glade_connect (glade,
662                               icon,
663                               "tray_show_list", "toggled", status_icon_show_hide_window_cb,
664                               "tray_new_message", "activate", status_icon_new_message_cb,
665                               "tray_quit", "activate", status_icon_quit_cb,
666                               NULL);
667
668         g_object_unref (glade);
669 }
670
671 static void
672 status_icon_new_message_cb (GtkWidget         *widget,
673                             EmpathyStatusIcon *icon)
674 {
675         EmpathyStatusIconPriv *priv;
676
677         priv = GET_PRIV (icon);
678
679         empathy_new_message_dialog_show (NULL);
680 }
681
682 static void
683 status_icon_quit_cb (GtkWidget         *window,
684                      EmpathyStatusIcon *icon)
685 {
686         gtk_main_quit ();
687 }
688
689 static void
690 status_icon_show_hide_window_cb (GtkWidget         *widget,
691                                  EmpathyStatusIcon *icon)
692 {
693         gboolean visible;
694
695         visible = gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM (widget));
696         status_icon_set_visibility (icon, visible, TRUE);
697 }
698
699 static void
700 status_icon_pendings_changed_cb (EmpathyContactManager *manager,
701                                  EmpathyContact        *contact,
702                                  EmpathyContact        *actor,
703                                  guint                  reason,
704                                  gchar                 *message,
705                                  gboolean               is_pending,
706                                  EmpathyStatusIcon     *icon)
707 {
708         EmpathyStatusIconPriv *priv;
709         StatusIconEvent       *event;
710         GString               *str;
711         GList                 *l;
712
713         priv = GET_PRIV (icon);
714
715         if (!is_pending) {
716                 /* FIXME: We should remove the event */
717                 return;
718         }
719
720         for (l = priv->events; l; l = l->next) {
721                 if (empathy_contact_equal (contact, ((StatusIconEvent*)l->data)->user_data)) {
722                         return;
723                 }
724         }
725
726         str = g_string_new (NULL);
727         g_string_printf (str, _("Subscription requested by %s"),
728                          empathy_contact_get_name (contact));   
729         if (!G_STR_EMPTY (message)) {
730                 g_string_append_printf (str, _("\nMessage: %s"), message);
731         }
732
733         event = status_icon_event_new (icon, GTK_STOCK_DIALOG_QUESTION, str->str);
734         event->user_data = g_object_ref (contact);
735         event->func = status_icon_event_subscribe_cb;
736
737         g_string_free (str, TRUE);
738 }
739
740 static void
741 status_icon_event_subscribe_cb (StatusIconEvent *event)
742 {
743         EmpathyContact *contact;
744
745         contact = EMPATHY_CONTACT (event->user_data);
746
747         empathy_subscription_dialog_show (contact, NULL);
748
749         g_object_unref (contact);
750 }
751
752 static void
753 status_icon_event_flash_state_cb (StatusIconEvent *event)
754 {
755         EmpathyStatusIconPriv *priv;
756
757         priv = GET_PRIV (event->user_data);
758
759         empathy_idle_set_flash_state (priv->idle, MC_PRESENCE_UNSET);
760 }
761
762 static void
763 status_icon_event_msg_cb (StatusIconEvent *event)
764 {
765         EmpathyFilter *filter;
766         EmpathyTpChat *tp_chat;
767
768         empathy_debug (DEBUG_DOMAIN, "Dispatching text channel");
769
770         tp_chat = event->user_data;
771         filter = g_object_get_data (G_OBJECT (tp_chat), "filter");
772         empathy_filter_process (filter,
773                                 empathy_tp_chat_get_channel (tp_chat),
774                                 TRUE);
775
776         g_object_unref (tp_chat);
777 }
778
779 static StatusIconEvent *
780 status_icon_event_new (EmpathyStatusIcon *icon,
781                        const gchar       *icon_name,
782                        const gchar       *message)
783 {
784         EmpathyStatusIconPriv *priv;
785         StatusIconEvent       *event;
786
787         priv = GET_PRIV (icon);
788
789         event = g_slice_new0 (StatusIconEvent);
790         event->icon_name = g_strdup (icon_name);        
791         event->message = g_strdup (message);
792
793         priv->events = g_list_append (priv->events, event);
794         if (!priv->blink_timeout) {
795                 priv->showing_event_icon = FALSE;
796                 priv->blink_timeout = g_timeout_add (BLINK_TIMEOUT,
797                                                      (GSourceFunc) status_icon_event_timeout_cb,
798                                                      icon);
799                 status_icon_event_timeout_cb (icon);
800                 status_icon_update_tooltip (icon);
801         }
802
803         return event;
804 }
805
806 static void
807 status_icon_event_remove (EmpathyStatusIcon *icon,
808                           StatusIconEvent   *event)
809 {
810         EmpathyStatusIconPriv *priv;
811
812         priv = GET_PRIV (icon);
813
814         if (event->func) {
815                 event->func (event);
816         }
817         priv->events = g_list_remove (priv->events, event);
818         status_icon_event_free (event);
819         priv->showing_event_icon = FALSE;
820         status_icon_update_tooltip (icon);
821         status_icon_set_from_state (icon);
822
823         if (priv->events) {
824                 return;
825         }
826
827         if (priv->blink_timeout) {
828                 g_source_remove (priv->blink_timeout);
829                 priv->blink_timeout = 0;
830         }
831 }
832
833 static gboolean
834 status_icon_event_timeout_cb (EmpathyStatusIcon *icon)
835 {
836         EmpathyStatusIconPriv *priv;
837
838         priv = GET_PRIV (icon);
839
840         priv->showing_event_icon = !priv->showing_event_icon;
841
842         if (!priv->showing_event_icon) {
843                 status_icon_set_from_state (icon);
844         } else {
845                 StatusIconEvent *event;
846
847                 event = priv->events->data;
848                 gtk_status_icon_set_from_icon_name (priv->icon, event->icon_name);
849         }
850
851         return TRUE;
852 }
853
854 static void
855 status_icon_event_free (StatusIconEvent *event)
856 {
857         g_free (event->icon_name);
858         g_free (event->message);
859         g_slice_free (StatusIconEvent, event);
860 }
861