]> git.0d.be Git - empathy.git/blob - src/empathy-main-window.c
Merge branch 'sasl'
[empathy.git] / src / empathy-main-window.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2002-2007 Imendio AB
4  * Copyright (C) 2007-2010 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  USA
20  *
21  * Authors: Xavier Claessens <xclaesse@gmail.com>
22  *          Danielle Madeley <danielle.madeley@collabora.co.uk>
23  */
24
25 #include <config.h>
26
27 #include <sys/stat.h>
28 #include <gtk/gtk.h>
29 #include <gdk/gdkkeysyms.h>
30 #include <glib/gi18n.h>
31
32 #include <telepathy-glib/account-manager.h>
33 #include <telepathy-glib/util.h>
34 #include <folks/folks.h>
35
36 #include <libempathy/empathy-contact.h>
37 #include <libempathy/empathy-idle.h>
38 #include <libempathy/empathy-utils.h>
39 #include <libempathy/empathy-dispatcher.h>
40 #include <libempathy/empathy-chatroom-manager.h>
41 #include <libempathy/empathy-chatroom.h>
42 #include <libempathy/empathy-contact-list.h>
43 #include <libempathy/empathy-contact-manager.h>
44 #include <libempathy/empathy-gsettings.h>
45 #include <libempathy/empathy-individual-manager.h>
46 #include <libempathy/empathy-gsettings.h>
47 #include <libempathy/empathy-status-presets.h>
48 #include <libempathy/empathy-tp-contact-factory.h>
49
50 #include <libempathy-gtk/empathy-contact-dialogs.h>
51 #include <libempathy-gtk/empathy-contact-list-store.h>
52 #include <libempathy-gtk/empathy-contact-list-view.h>
53 #include <libempathy-gtk/empathy-live-search.h>
54 #include <libempathy-gtk/empathy-geometry.h>
55 #include <libempathy-gtk/empathy-gtk-enum-types.h>
56 #include <libempathy-gtk/empathy-individual-dialogs.h>
57 #include <libempathy-gtk/empathy-individual-store.h>
58 #include <libempathy-gtk/empathy-individual-view.h>
59 #include <libempathy-gtk/empathy-new-message-dialog.h>
60 #include <libempathy-gtk/empathy-new-call-dialog.h>
61 #include <libempathy-gtk/empathy-log-window.h>
62 #include <libempathy-gtk/empathy-presence-chooser.h>
63 #include <libempathy-gtk/empathy-sound-manager.h>
64 #include <libempathy-gtk/empathy-ui-utils.h>
65
66 #include "empathy-accounts-dialog.h"
67 #include "empathy-chat-manager.h"
68 #include "empathy-main-window.h"
69 #include "empathy-preferences.h"
70 #include "empathy-about-dialog.h"
71 #include "empathy-debug-window.h"
72 #include "empathy-new-chatroom-dialog.h"
73 #include "empathy-map-view.h"
74 #include "empathy-chatrooms-window.h"
75 #include "empathy-event-manager.h"
76 #include "empathy-ft-manager.h"
77 #include "empathy-migrate-butterfly-logs.h"
78
79 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
80 #include <libempathy/empathy-debug.h>
81
82 /* Flashing delay for icons (milliseconds). */
83 #define FLASH_TIMEOUT 500
84
85 /* Minimum width of roster window if something goes wrong. */
86 #define MIN_WIDTH 50
87
88 /* Accels (menu shortcuts) can be configured and saved */
89 #define ACCELS_FILENAME "accels.txt"
90
91 /* Name in the geometry file */
92 #define GEOMETRY_NAME "main-window"
93
94 enum {
95         PAGE_CONTACT_LIST = 0,
96         PAGE_NO_MATCH
97 };
98
99 G_DEFINE_TYPE (EmpathyMainWindow, empathy_main_window, GTK_TYPE_WINDOW);
100
101 #define GET_PRIV(self) ((EmpathyMainWindowPriv *)((EmpathyMainWindow *) self)->priv)
102
103 struct _EmpathyMainWindowPriv {
104         EmpathyContactList      *contact_manager;
105         EmpathyIndividualStore  *individual_store;
106         EmpathyIndividualView   *individual_view;
107         TpAccountManager        *account_manager;
108         EmpathyChatroomManager  *chatroom_manager;
109         EmpathyEventManager     *event_manager;
110         EmpathySoundManager     *sound_mgr;;
111         guint                    flash_timeout_id;
112         gboolean                 flash_on;
113         gboolean                 empty;
114
115         GSettings              *gsettings_ui;
116         GSettings              *gsettings_contacts;
117
118         GtkWidget              *preferences;
119         GtkWidget              *main_vbox;
120         GtkWidget              *throbber;
121         GtkWidget              *throbber_tool_item;
122         GtkWidget              *presence_toolbar;
123         GtkWidget              *presence_chooser;
124         GtkWidget              *errors_vbox;
125         GtkWidget              *search_bar;
126         GtkWidget              *notebook;
127         GtkWidget              *no_entry_label;
128
129         GtkToggleAction        *show_protocols;
130         GtkRadioAction         *sort_by_name;
131         GtkRadioAction         *sort_by_status;
132         GtkRadioAction         *normal_with_avatars;
133         GtkRadioAction         *normal_size;
134         GtkRadioAction         *compact_size;
135
136         GtkUIManager           *ui_manager;
137         GtkAction              *view_history;
138         GtkAction              *room_join_favorites;
139         GtkWidget              *room_menu;
140         GtkWidget              *room_separator;
141         GtkWidget              *edit_context;
142         GtkWidget              *edit_context_separator;
143
144         guint                   size_timeout_id;
145         GHashTable             *errors;
146
147         /* stores a mapping from TpAccount to Handler ID to prevent
148          * to listen more than once to the status-changed signal */
149         GHashTable             *status_changed_handlers;
150
151         /* Actions that are enabled when there are connected accounts */
152         GList                  *actions_connected;
153
154         /* The idle event source to migrate butterfly's logs */
155         guint butterfly_log_migration_members_changed_id;
156 };
157
158 static void
159 main_window_flash_stop (EmpathyMainWindow *window)
160 {
161         EmpathyMainWindowPriv *priv = GET_PRIV (window);
162
163         if (priv->flash_timeout_id == 0) {
164                 return;
165         }
166
167         DEBUG ("Stop flashing");
168         g_source_remove (priv->flash_timeout_id);
169         priv->flash_timeout_id = 0;
170         priv->flash_on = FALSE;
171 }
172
173 typedef struct {
174         EmpathyEvent       *event;
175         gboolean            on;
176         EmpathyMainWindow  *window;
177 } FlashForeachData;
178
179 static gboolean
180 main_window_flash_foreach (GtkTreeModel *model,
181                            GtkTreePath  *path,
182                            GtkTreeIter  *iter,
183                            gpointer      user_data)
184 {
185         FlashForeachData *data = (FlashForeachData *) user_data;
186         FolksIndividual *individual;
187         EmpathyContact   *contact;
188         const gchar      *icon_name;
189         GtkTreePath      *parent_path = NULL;
190         GtkTreeIter       parent_iter;
191         GdkPixbuf        *pixbuf = NULL;
192
193         gtk_tree_model_get (model, iter,
194                             EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL,
195                                 &individual,
196                             -1);
197
198         if (individual == NULL)
199                 return FALSE;
200
201         contact = empathy_contact_dup_from_folks_individual (individual);
202         if (contact != data->event->contact) {
203                 tp_clear_object (&contact);
204                 return FALSE;
205         }
206
207         if (data->on) {
208                 icon_name = data->event->icon_name;
209                 pixbuf = empathy_pixbuf_from_icon_name (icon_name, GTK_ICON_SIZE_MENU);
210         } else {
211                 pixbuf = empathy_individual_store_get_individual_status_icon (
212                                                 GET_PRIV (data->window)->individual_store,
213                                                 individual);
214         }
215
216         gtk_tree_store_set (GTK_TREE_STORE (model), iter,
217                             EMPATHY_INDIVIDUAL_STORE_COL_ICON_STATUS, pixbuf,
218                             -1);
219
220         /* To make sure the parent is shown correctly, we emit
221          * the row-changed signal on the parent so it prompts
222          * it to be refreshed by the filter func.
223          */
224         if (gtk_tree_model_iter_parent (model, &parent_iter, iter)) {
225                 parent_path = gtk_tree_model_get_path (model, &parent_iter);
226         }
227         if (parent_path) {
228                 gtk_tree_model_row_changed (model, parent_path, &parent_iter);
229                 gtk_tree_path_free (parent_path);
230         }
231
232         g_object_unref (individual);
233         tp_clear_object (&contact);
234
235         return FALSE;
236 }
237
238 static gboolean
239 main_window_flash_cb (EmpathyMainWindow *window)
240 {
241         EmpathyMainWindowPriv *priv = GET_PRIV (window);
242         GtkTreeModel     *model;
243         GSList           *events, *l;
244         gboolean          found_event = FALSE;
245         FlashForeachData  data;
246
247         priv->flash_on = !priv->flash_on;
248         data.on = priv->flash_on;
249         model = GTK_TREE_MODEL (priv->individual_store);
250
251         events = empathy_event_manager_get_events (priv->event_manager);
252         for (l = events; l; l = l->next) {
253                 data.event = l->data;
254                 data.window = window;
255                 if (!data.event->contact || !data.event->must_ack) {
256                         continue;
257                 }
258
259                 found_event = TRUE;
260                 gtk_tree_model_foreach (model,
261                                         main_window_flash_foreach,
262                                         &data);
263         }
264
265         if (!found_event) {
266                 main_window_flash_stop (window);
267         }
268
269         return TRUE;
270 }
271
272 static void
273 main_window_flash_start (EmpathyMainWindow *window)
274 {
275         EmpathyMainWindowPriv *priv = GET_PRIV (window);
276
277         if (priv->flash_timeout_id != 0) {
278                 return;
279         }
280
281         DEBUG ("Start flashing");
282         priv->flash_timeout_id = g_timeout_add (FLASH_TIMEOUT,
283                                                 (GSourceFunc) main_window_flash_cb,
284                                                 window);
285         main_window_flash_cb (window);
286 }
287
288 static void
289 main_window_event_added_cb (EmpathyEventManager *manager,
290                             EmpathyEvent        *event,
291                             EmpathyMainWindow   *window)
292 {
293         if (event->contact) {
294                 main_window_flash_start (window);
295         }
296 }
297
298 static void
299 main_window_event_removed_cb (EmpathyEventManager *manager,
300                               EmpathyEvent        *event,
301                               EmpathyMainWindow   *window)
302 {
303         EmpathyMainWindowPriv *priv = GET_PRIV (window);
304         FlashForeachData data;
305
306         if (!event->contact) {
307                 return;
308         }
309
310         data.on = FALSE;
311         data.event = event;
312         data.window = window;
313         gtk_tree_model_foreach (GTK_TREE_MODEL (priv->individual_store),
314                                 main_window_flash_foreach,
315                                 &data);
316 }
317
318 static void
319 main_window_row_activated_cb (EmpathyContactListView *view,
320                               GtkTreePath            *path,
321                               GtkTreeViewColumn      *col,
322                               EmpathyMainWindow      *window)
323 {
324         EmpathyMainWindowPriv *priv = GET_PRIV (window);
325         EmpathyContact *contact = NULL;
326         FolksIndividual *individual;
327         GtkTreeModel   *model;
328         GtkTreeIter     iter;
329         GSList         *events, *l;
330
331         model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->individual_view));
332         gtk_tree_model_get_iter (model, &iter, path);
333
334         gtk_tree_model_get (model, &iter,
335                             EMPATHY_INDIVIDUAL_STORE_COL_INDIVIDUAL,
336                                 &individual,
337                             -1);
338
339         if (individual != NULL) {
340                 contact = empathy_contact_dup_from_folks_individual (individual);
341         }
342
343         if (!contact) {
344                 goto OUT;
345         }
346
347         /* If the contact has an event activate it, otherwise the
348          * default handler of row-activated will be called. */
349         events = empathy_event_manager_get_events (priv->event_manager);
350         for (l = events; l; l = l->next) {
351                 EmpathyEvent *event = l->data;
352
353                 if (event->contact == contact) {
354                         DEBUG ("Activate event");
355                         empathy_event_activate (event);
356
357                         /* We don't want the default handler of this signal
358                          * (e.g. open a chat) */
359                         g_signal_stop_emission_by_name (view, "row-activated");
360                         break;
361                 }
362         }
363
364         g_object_unref (contact);
365 OUT:
366         tp_clear_object (&individual);
367 }
368
369 static void
370 main_window_row_deleted_cb (GtkTreeModel      *model,
371                             GtkTreePath       *path,
372                             EmpathyMainWindow *window)
373 {
374         EmpathyMainWindowPriv *priv = GET_PRIV (window);
375         GtkTreeIter help_iter;
376
377         if (!gtk_tree_model_get_iter_first (model, &help_iter)) {
378                 priv->empty = TRUE;
379
380                 if (empathy_individual_view_is_searching (
381                                 priv->individual_view)) {
382                         gchar *tmp;
383
384                         tmp = g_strdup_printf ("<b><span size='xx-large'>%s</span></b>",
385                                 _("No match found"));
386
387                         gtk_label_set_markup (GTK_LABEL (priv->no_entry_label), tmp);
388                         g_free (tmp);
389
390                         gtk_label_set_ellipsize (GTK_LABEL (priv->no_entry_label),
391                                 PANGO_ELLIPSIZE_END);
392
393                         gtk_notebook_set_current_page (
394                                         GTK_NOTEBOOK (priv->notebook), PAGE_NO_MATCH);
395                 }
396         }
397 }
398
399 static void
400 main_window_row_inserted_cb (GtkTreeModel      *model,
401                              GtkTreePath       *path,
402                              GtkTreeIter       *iter,
403                              EmpathyMainWindow *window)
404 {
405         EmpathyMainWindowPriv *priv = GET_PRIV (window);
406
407         if (priv->empty) {
408                 priv->empty = FALSE;
409                 gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->notebook),
410                                 PAGE_CONTACT_LIST);
411                 gtk_widget_grab_focus (GTK_WIDGET (priv->individual_view));
412         }
413 }
414
415 static void
416 main_window_remove_error (EmpathyMainWindow *window,
417                           TpAccount         *account)
418 {
419         EmpathyMainWindowPriv *priv = GET_PRIV (window);
420         GtkWidget *error_widget;
421
422         error_widget = g_hash_table_lookup (priv->errors, account);
423         if (error_widget != NULL) {
424                 gtk_widget_destroy (error_widget);
425                 g_hash_table_remove (priv->errors, account);
426         }
427 }
428
429 static void
430 main_window_account_disabled_cb (TpAccountManager  *manager,
431                                  TpAccount         *account,
432                                  EmpathyMainWindow *window)
433 {
434         main_window_remove_error (window, account);
435 }
436
437 static void
438 main_window_error_retry_clicked_cb (GtkButton         *button,
439                                     EmpathyMainWindow *window)
440 {
441         TpAccount *account;
442
443         account = g_object_get_data (G_OBJECT (button), "account");
444         tp_account_reconnect_async (account, NULL, NULL);
445
446         main_window_remove_error (window, account);
447 }
448
449 static void
450 main_window_error_edit_clicked_cb (GtkButton         *button,
451                                    EmpathyMainWindow *window)
452 {
453         TpAccount *account;
454
455         account = g_object_get_data (G_OBJECT (button), "account");
456
457         empathy_accounts_dialog_show_application (
458                         gtk_widget_get_screen (GTK_WIDGET (button)),
459                         account, FALSE, FALSE);
460
461         main_window_remove_error (window, account);
462 }
463
464 static void
465 main_window_error_close_clicked_cb (GtkButton         *button,
466                                     EmpathyMainWindow *window)
467 {
468         TpAccount *account;
469
470         account = g_object_get_data (G_OBJECT (button), "account");
471         main_window_remove_error (window, account);
472 }
473
474 static void
475 main_window_error_display (EmpathyMainWindow *window,
476                            TpAccount         *account)
477 {
478         EmpathyMainWindowPriv *priv = GET_PRIV (window);
479         GtkWidget *info_bar;
480         GtkWidget *content_area;
481         GtkWidget *label;
482         GtkWidget *image;
483         GtkWidget *retry_button;
484         GtkWidget *edit_button;
485         GtkWidget *close_button;
486         GtkWidget *action_area;
487         GtkWidget *action_table;
488         gchar     *str;
489         const gchar     *icon_name;
490         const gchar *error_message;
491         gboolean user_requested;
492
493         error_message =
494                 empathy_account_get_error_message (account, &user_requested);
495
496         if (user_requested) {
497                 return;
498         }
499
500         str = g_markup_printf_escaped ("<b>%s</b>\n%s",
501                                                tp_account_get_display_name (account),
502                                                error_message);
503
504         info_bar = g_hash_table_lookup (priv->errors, account);
505         if (info_bar) {
506                 label = g_object_get_data (G_OBJECT (info_bar), "label");
507
508                 /* Just set the latest error and return */
509                 gtk_label_set_markup (GTK_LABEL (label), str);
510                 g_free (str);
511
512                 return;
513         }
514
515         info_bar = gtk_info_bar_new ();
516         gtk_info_bar_set_message_type (GTK_INFO_BAR (info_bar), GTK_MESSAGE_ERROR);
517
518         gtk_widget_set_no_show_all (info_bar, TRUE);
519         gtk_box_pack_start (GTK_BOX (priv->errors_vbox), info_bar, FALSE, TRUE, 0);
520         gtk_widget_show (info_bar);
521
522         icon_name = tp_account_get_icon_name (account);
523         image = gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_SMALL_TOOLBAR);
524         gtk_widget_show (image);
525
526         label = gtk_label_new (str);
527         gtk_label_set_use_markup (GTK_LABEL (label), TRUE);
528         gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END);
529         gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
530         gtk_widget_show (label);
531         g_free (str);
532
533         content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (info_bar));
534         gtk_box_pack_start (GTK_BOX (content_area), image, FALSE, FALSE, 0);
535         gtk_box_pack_start (GTK_BOX (content_area), label, TRUE, TRUE, 0);
536
537         image = gtk_image_new_from_stock (GTK_STOCK_REFRESH, GTK_ICON_SIZE_BUTTON);
538         retry_button = gtk_button_new ();
539         gtk_button_set_image (GTK_BUTTON (retry_button), image);
540         gtk_widget_set_tooltip_text (retry_button, _("Reconnect"));
541         gtk_widget_show (retry_button);
542
543         image = gtk_image_new_from_stock (GTK_STOCK_EDIT, GTK_ICON_SIZE_BUTTON);
544         edit_button = gtk_button_new ();
545         gtk_button_set_image (GTK_BUTTON (edit_button), image);
546         gtk_widget_set_tooltip_text (edit_button, _("Edit Account"));
547         gtk_widget_show (edit_button);
548
549         image = gtk_image_new_from_stock (GTK_STOCK_CLOSE, GTK_ICON_SIZE_BUTTON);
550         close_button = gtk_button_new ();
551         gtk_button_set_image (GTK_BUTTON (close_button), image);
552         gtk_widget_set_tooltip_text (close_button, _("Close"));
553         gtk_widget_show (close_button);
554
555         action_table = gtk_table_new (1, 3, FALSE);
556         gtk_table_set_col_spacings (GTK_TABLE (action_table), 2);
557         gtk_widget_show (action_table);
558
559         action_area = gtk_info_bar_get_action_area (GTK_INFO_BAR (info_bar));
560         gtk_box_pack_start (GTK_BOX (action_area), action_table, FALSE, FALSE, 0);
561
562         gtk_table_attach (GTK_TABLE (action_table), retry_button, 0, 1, 0, 1,
563                                                                                 (GtkAttachOptions) (GTK_SHRINK),
564                                                                                 (GtkAttachOptions) (GTK_SHRINK), 0, 0);
565         gtk_table_attach (GTK_TABLE (action_table), edit_button, 1, 2, 0, 1,
566                                                                                 (GtkAttachOptions) (GTK_SHRINK),
567                                                                                 (GtkAttachOptions) (GTK_SHRINK), 0, 0);
568         gtk_table_attach (GTK_TABLE (action_table), close_button, 2, 3, 0, 1,
569                                                                                 (GtkAttachOptions) (GTK_SHRINK),
570                                                                                 (GtkAttachOptions) (GTK_SHRINK), 0, 0);
571
572         g_object_set_data (G_OBJECT (info_bar), "label", label);
573         g_object_set_data_full (G_OBJECT (info_bar),
574                                 "account", g_object_ref (account),
575                                 g_object_unref);
576         g_object_set_data_full (G_OBJECT (edit_button),
577                                 "account", g_object_ref (account),
578                                 g_object_unref);
579         g_object_set_data_full (G_OBJECT (close_button),
580                                 "account", g_object_ref (account),
581                                 g_object_unref);
582         g_object_set_data_full (G_OBJECT (retry_button),
583                                 "account", g_object_ref (account),
584                                 g_object_unref);
585
586         g_signal_connect (edit_button, "clicked",
587                           G_CALLBACK (main_window_error_edit_clicked_cb),
588                           window);
589         g_signal_connect (close_button, "clicked",
590                           G_CALLBACK (main_window_error_close_clicked_cb),
591                           window);
592         g_signal_connect (retry_button, "clicked",
593                           G_CALLBACK (main_window_error_retry_clicked_cb),
594                           window);
595
596         gtk_widget_show (priv->errors_vbox);
597
598         g_hash_table_insert (priv->errors, g_object_ref (account), info_bar);
599 }
600
601 static void
602 main_window_update_status (EmpathyMainWindow *window)
603 {
604         EmpathyMainWindowPriv *priv = GET_PRIV (window);
605         gboolean connected, connecting;
606         GList *l, *children;
607
608         connected = empathy_account_manager_get_accounts_connected (&connecting);
609
610         /* Update the spinner state */
611         if (connecting) {
612                 gtk_spinner_start (GTK_SPINNER (priv->throbber));
613                 gtk_widget_show (priv->throbber_tool_item);
614         } else {
615                 gtk_spinner_stop (GTK_SPINNER (priv->throbber));
616                 gtk_widget_hide (priv->throbber_tool_item);
617         }
618
619         /* Update widgets sensibility */
620         for (l = priv->actions_connected; l; l = l->next) {
621                 gtk_action_set_sensitive (l->data, connected);
622         }
623
624         /* Update favourite rooms sensitivity */
625         children = gtk_container_get_children (GTK_CONTAINER (priv->room_menu));
626         for (l = children; l != NULL; l = l->next) {
627                 if (g_object_get_data (G_OBJECT (l->data), "is_favorite") != NULL) {
628                         gtk_widget_set_sensitive (GTK_WIDGET (l->data), connected);
629                 }
630         }
631         g_list_free (children);
632 }
633
634 static void
635 main_window_connection_changed_cb (TpAccount  *account,
636                                    guint       old_status,
637                                    guint       current,
638                                    guint       reason,
639                                    gchar      *dbus_error_name,
640                                    GHashTable *details,
641                                    EmpathyMainWindow *window)
642 {
643         EmpathyMainWindowPriv *priv = GET_PRIV (window);
644
645         main_window_update_status (window);
646
647         if (current == TP_CONNECTION_STATUS_DISCONNECTED &&
648             reason != TP_CONNECTION_STATUS_REASON_REQUESTED) {
649                 main_window_error_display (window, account);
650         }
651
652         if (current == TP_CONNECTION_STATUS_DISCONNECTED) {
653                 empathy_sound_manager_play (priv->sound_mgr, GTK_WIDGET (window),
654                                     EMPATHY_SOUND_ACCOUNT_DISCONNECTED);
655         }
656
657         if (current == TP_CONNECTION_STATUS_CONNECTED) {
658                 empathy_sound_manager_play (priv->sound_mgr, GTK_WIDGET (window),
659                                     EMPATHY_SOUND_ACCOUNT_CONNECTED);
660
661                 /* Account connected without error, remove error message if any */
662                 main_window_remove_error (window, account);
663         }
664 }
665
666 static void
667 main_window_accels_load (void)
668 {
669         gchar *filename;
670
671         filename = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, ACCELS_FILENAME, NULL);
672         if (g_file_test (filename, G_FILE_TEST_EXISTS)) {
673                 DEBUG ("Loading from:'%s'", filename);
674                 gtk_accel_map_load (filename);
675         }
676
677         g_free (filename);
678 }
679
680 static void
681 main_window_accels_save (void)
682 {
683         gchar *dir;
684         gchar *file_with_path;
685
686         dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
687         g_mkdir_with_parents (dir, S_IRUSR | S_IWUSR | S_IXUSR);
688         file_with_path = g_build_filename (dir, ACCELS_FILENAME, NULL);
689         g_free (dir);
690
691         DEBUG ("Saving to:'%s'", file_with_path);
692         gtk_accel_map_save (file_with_path);
693
694         g_free (file_with_path);
695 }
696
697 static void
698 empathy_main_window_finalize (GObject *window)
699 {
700         EmpathyMainWindowPriv *priv = GET_PRIV (window);
701         GHashTableIter iter;
702         gpointer key, value;
703
704         /* Save user-defined accelerators. */
705         main_window_accels_save ();
706
707         g_list_free (priv->actions_connected);
708
709         g_object_unref (priv->account_manager);
710         g_object_unref (priv->individual_store);
711         g_object_unref (priv->contact_manager);
712         g_object_unref (priv->sound_mgr);
713         g_hash_table_destroy (priv->errors);
714
715         /* disconnect all handlers of status-changed signal */
716         g_hash_table_iter_init (&iter, priv->status_changed_handlers);
717         while (g_hash_table_iter_next (&iter, &key, &value))
718                 g_signal_handler_disconnect (TP_ACCOUNT (key),
719                                              GPOINTER_TO_UINT (value));
720
721         g_hash_table_destroy (priv->status_changed_handlers);
722
723         g_signal_handlers_disconnect_by_func (priv->event_manager,
724                                               main_window_event_added_cb,
725                                               window);
726         g_signal_handlers_disconnect_by_func (priv->event_manager,
727                                               main_window_event_removed_cb,
728                                               window);
729         g_object_unref (priv->event_manager);
730         g_object_unref (priv->ui_manager);
731         g_object_unref (priv->chatroom_manager);
732
733         g_object_unref (priv->gsettings_ui);
734         g_object_unref (priv->gsettings_contacts);
735
736         G_OBJECT_CLASS (empathy_main_window_parent_class)->finalize (window);
737 }
738
739 static gboolean
740 main_window_key_press_event_cb  (GtkWidget   *window,
741                                  GdkEventKey *event,
742                                  gpointer     user_data)
743 {
744         EmpathyChatManager *chat_manager;
745
746         if (event->keyval == GDK_KEY_T
747             && event->state & GDK_SHIFT_MASK
748             && event->state & GDK_CONTROL_MASK) {
749                 chat_manager = empathy_chat_manager_dup_singleton ();
750                 empathy_chat_manager_undo_closed_chat (chat_manager);
751                 g_object_unref (chat_manager);
752         }
753         return FALSE;
754 }
755
756 static void
757 main_window_chat_quit_cb (GtkAction         *action,
758                           EmpathyMainWindow *window)
759 {
760         gtk_main_quit ();
761 }
762
763 static void
764 main_window_view_history_cb (GtkAction         *action,
765                              EmpathyMainWindow *window)
766 {
767         empathy_log_window_show (NULL, NULL, FALSE, GTK_WINDOW (window));
768 }
769
770 static void
771 main_window_chat_new_message_cb (GtkAction         *action,
772                                  EmpathyMainWindow *window)
773 {
774         empathy_new_message_dialog_show (GTK_WINDOW (window));
775 }
776
777 static void
778 main_window_chat_new_call_cb (GtkAction         *action,
779                               EmpathyMainWindow *window)
780 {
781         empathy_new_call_dialog_show (GTK_WINDOW (window));
782 }
783
784 static void
785 main_window_chat_add_contact_cb (GtkAction         *action,
786                                  EmpathyMainWindow *window)
787 {
788         empathy_new_individual_dialog_show (GTK_WINDOW (window));
789 }
790
791 static void
792 main_window_view_show_ft_manager (GtkAction         *action,
793                                   EmpathyMainWindow *window)
794 {
795         empathy_ft_manager_show ();
796 }
797
798 static void
799 main_window_view_show_offline_cb (GtkToggleAction   *action,
800                                   EmpathyMainWindow *window)
801 {
802         EmpathyMainWindowPriv *priv = GET_PRIV (window);
803         gboolean current;
804
805         current = gtk_toggle_action_get_active (action);
806         g_settings_set_boolean (priv->gsettings_ui,
807                                 EMPATHY_PREFS_UI_SHOW_OFFLINE,
808                                 current);
809
810         empathy_individual_view_set_show_offline (priv->individual_view,
811                         current);
812 }
813
814 static void
815 main_window_notify_sort_contact_cb (GSettings         *gsettings,
816                                     const gchar       *key,
817                                     EmpathyMainWindow *window)
818 {
819         EmpathyMainWindowPriv *priv = GET_PRIV (window);
820         gchar *str;
821
822         str = g_settings_get_string (gsettings, key);
823
824         if (str != NULL) {
825                 GType       type;
826                 GEnumClass *enum_class;
827                 GEnumValue *enum_value;
828
829                 type = empathy_individual_store_sort_get_type ();
830                 enum_class = G_ENUM_CLASS (g_type_class_peek (type));
831                 enum_value = g_enum_get_value_by_nick (enum_class, str);
832                 if (enum_value) {
833                         /* By changing the value of the GtkRadioAction,
834                            it emits a signal that calls main_window_view_sort_contacts_cb
835                            which updates the contacts list */
836                         gtk_radio_action_set_current_value (priv->sort_by_name,
837                                                             enum_value->value);
838                 } else {
839                         g_warning ("Wrong value for sort_criterium configuration : %s", str);
840                 }
841                 g_free (str);
842         }
843 }
844
845 static void
846 main_window_view_sort_contacts_cb (GtkRadioAction    *action,
847                                    GtkRadioAction    *current,
848                                    EmpathyMainWindow *window)
849 {
850         EmpathyMainWindowPriv *priv = GET_PRIV (window);
851         EmpathyContactListStoreSort value;
852         GSList      *group;
853         GType        type;
854         GEnumClass  *enum_class;
855         GEnumValue  *enum_value;
856
857         value = gtk_radio_action_get_current_value (action);
858         group = gtk_radio_action_get_group (action);
859
860         /* Get string from index */
861         type = empathy_individual_store_sort_get_type ();
862         enum_class = G_ENUM_CLASS (g_type_class_peek (type));
863         enum_value = g_enum_get_value (enum_class, g_slist_index (group, current));
864
865         if (!enum_value) {
866                 g_warning ("No GEnumValue for EmpathyContactListSort with GtkRadioAction index:%d",
867                            g_slist_index (group, action));
868         } else {
869                 g_settings_set_string (priv->gsettings_contacts,
870                                        EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
871                                        enum_value->value_nick);
872         }
873         empathy_individual_store_set_sort_criterium (priv->individual_store,
874                         value);
875 }
876
877 static void
878 main_window_view_show_protocols_cb (GtkToggleAction   *action,
879                                     EmpathyMainWindow *window)
880 {
881         EmpathyMainWindowPriv *priv = GET_PRIV (window);
882         gboolean value;
883
884         value = gtk_toggle_action_get_active (action);
885
886         g_settings_set_boolean (priv->gsettings_ui,
887                                 EMPATHY_PREFS_UI_SHOW_PROTOCOLS,
888                                 value);
889         empathy_individual_store_set_show_protocols (priv->individual_store,
890                                                      value);
891 }
892
893 /* Matches GtkRadioAction values set in empathy-main-window.ui */
894 #define CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS           0
895 #define CONTACT_LIST_NORMAL_SIZE                        1
896 #define CONTACT_LIST_COMPACT_SIZE                       2
897
898 static void
899 main_window_view_contacts_list_size_cb (GtkRadioAction    *action,
900                                         GtkRadioAction    *current,
901                                         EmpathyMainWindow *window)
902 {
903         EmpathyMainWindowPriv *priv = GET_PRIV (window);
904         GSettings *gsettings_ui;
905         gint value;
906
907         value = gtk_radio_action_get_current_value (action);
908         /* create a new GSettings, so we can delay the setting until both
909          * values are set */
910         gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA);
911
912         DEBUG ("radio button toggled, value = %i", value);
913
914         g_settings_delay (gsettings_ui);
915         g_settings_set_boolean (gsettings_ui,
916                                 EMPATHY_PREFS_UI_SHOW_AVATARS,
917                                 value == CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS);
918
919         g_settings_set_boolean (gsettings_ui,
920                                 EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
921                                 value == CONTACT_LIST_COMPACT_SIZE);
922         g_settings_apply (gsettings_ui);
923
924         /* FIXME: these enums probably have the wrong namespace */
925         empathy_individual_store_set_show_avatars (priv->individual_store,
926                         value == CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS);
927         empathy_individual_store_set_is_compact (priv->individual_store,
928                         value == CONTACT_LIST_COMPACT_SIZE);
929
930         g_object_unref (gsettings_ui);
931 }
932
933 static void main_window_notify_show_protocols_cb (GSettings         *gsettings,
934                                                   const gchar       *key,
935                                                   EmpathyMainWindow *window)
936 {
937         EmpathyMainWindowPriv *priv = GET_PRIV (window);
938
939         gtk_toggle_action_set_active (priv->show_protocols,
940                         g_settings_get_boolean (gsettings,
941                                 EMPATHY_PREFS_UI_SHOW_PROTOCOLS));
942 }
943
944
945 static void
946 main_window_notify_contact_list_size_cb (GSettings         *gsettings,
947                                          const gchar       *key,
948                                          EmpathyMainWindow *window)
949 {
950         EmpathyMainWindowPriv *priv = GET_PRIV (window);
951         gint value;
952
953         if (g_settings_get_boolean (gsettings,
954                         EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST)) {
955                 value = CONTACT_LIST_COMPACT_SIZE;
956         } else if (g_settings_get_boolean (gsettings,
957                         EMPATHY_PREFS_UI_SHOW_AVATARS)) {
958                 value = CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS;
959         } else {
960                 value = CONTACT_LIST_NORMAL_SIZE;
961         }
962
963         DEBUG ("setting changed, value = %i", value);
964
965         /* By changing the value of the GtkRadioAction,
966            it emits a signal that calls main_window_view_contacts_list_size_cb
967            which updates the contacts list */
968         gtk_radio_action_set_current_value (priv->normal_with_avatars, value);
969 }
970
971 static void
972 main_window_edit_search_contacts_cb (GtkCheckMenuItem  *item,
973                                      EmpathyMainWindow *window)
974 {
975         EmpathyMainWindowPriv *priv = GET_PRIV (window);
976
977         empathy_individual_view_start_search (priv->individual_view);
978 }
979
980 static void
981 main_window_view_show_map_cb (GtkCheckMenuItem  *item,
982                               EmpathyMainWindow *window)
983 {
984 #ifdef HAVE_LIBCHAMPLAIN
985         empathy_map_view_show ();
986 #endif
987 }
988
989 static void
990 join_chatroom (EmpathyChatroom *chatroom,
991                gint64 timestamp)
992 {
993         TpAccount      *account;
994         const gchar    *room;
995
996         account = empathy_chatroom_get_account (chatroom);
997         room = empathy_chatroom_get_room (chatroom);
998
999         DEBUG ("Requesting channel for '%s'", room);
1000         empathy_dispatcher_join_muc (account, room, timestamp);
1001 }
1002
1003 typedef struct
1004 {
1005         TpAccount *account;
1006         EmpathyChatroom *chatroom;
1007         gint64 timestamp;
1008         glong sig_id;
1009         guint timeout;
1010 } join_fav_account_sig_ctx;
1011
1012 static join_fav_account_sig_ctx *
1013 join_fav_account_sig_ctx_new (TpAccount *account,
1014                              EmpathyChatroom *chatroom,
1015                               gint64 timestamp)
1016 {
1017         join_fav_account_sig_ctx *ctx = g_slice_new0 (
1018                 join_fav_account_sig_ctx);
1019
1020         ctx->account = g_object_ref (account);
1021         ctx->chatroom = g_object_ref (chatroom);
1022         ctx->timestamp = timestamp;
1023         return ctx;
1024 }
1025
1026 static void
1027 join_fav_account_sig_ctx_free (join_fav_account_sig_ctx *ctx)
1028 {
1029         g_object_unref (ctx->account);
1030         g_object_unref (ctx->chatroom);
1031         g_slice_free (join_fav_account_sig_ctx, ctx);
1032 }
1033
1034 static void
1035 account_status_changed_cb (TpAccount  *account,
1036                            TpConnectionStatus old_status,
1037                            TpConnectionStatus new_status,
1038                            guint reason,
1039                            gchar *dbus_error_name,
1040                            GHashTable *details,
1041                            gpointer user_data)
1042 {
1043         join_fav_account_sig_ctx *ctx = user_data;
1044
1045         switch (new_status) {
1046                 case TP_CONNECTION_STATUS_DISCONNECTED:
1047                         /* Don't wait any longer */
1048                         goto finally;
1049                         break;
1050
1051                 case TP_CONNECTION_STATUS_CONNECTING:
1052                         /* Wait a bit */
1053                         return;
1054
1055                 case TP_CONNECTION_STATUS_CONNECTED:
1056                         /* We can join the room */
1057                         break;
1058
1059                 default:
1060                         g_assert_not_reached ();
1061         }
1062
1063         join_chatroom (ctx->chatroom, ctx->timestamp);
1064
1065 finally:
1066         g_source_remove (ctx->timeout);
1067         g_signal_handler_disconnect (account, ctx->sig_id);
1068 }
1069
1070 #define JOIN_FAVORITE_TIMEOUT 5
1071
1072 static gboolean
1073 join_favorite_timeout_cb (gpointer data)
1074 {
1075         join_fav_account_sig_ctx *ctx = data;
1076
1077         /* stop waiting for joining the favorite room */
1078         g_signal_handler_disconnect (ctx->account, ctx->sig_id);
1079         return FALSE;
1080 }
1081
1082 static void
1083 main_window_favorite_chatroom_join (EmpathyChatroom *chatroom)
1084 {
1085         TpAccount      *account;
1086
1087         account = empathy_chatroom_get_account (chatroom);
1088         if (tp_account_get_connection_status (account, NULL) !=
1089                                              TP_CONNECTION_STATUS_CONNECTED) {
1090                 join_fav_account_sig_ctx *ctx;
1091
1092                 ctx = join_fav_account_sig_ctx_new (account, chatroom,
1093                         gtk_get_current_event_time ());
1094
1095                 ctx->sig_id = g_signal_connect_data (account, "status-changed",
1096                         G_CALLBACK (account_status_changed_cb), ctx,
1097                         (GClosureNotify) join_fav_account_sig_ctx_free, 0);
1098
1099                 ctx->timeout = g_timeout_add_seconds (JOIN_FAVORITE_TIMEOUT,
1100                         join_favorite_timeout_cb, ctx);
1101                 return;
1102         }
1103
1104         join_chatroom (chatroom, gtk_get_current_event_time ());
1105 }
1106
1107 static void
1108 main_window_favorite_chatroom_menu_activate_cb (GtkMenuItem     *menu_item,
1109                                                 EmpathyChatroom *chatroom)
1110 {
1111         main_window_favorite_chatroom_join (chatroom);
1112 }
1113
1114 static void
1115 main_window_favorite_chatroom_menu_add (EmpathyMainWindow *window,
1116                                         EmpathyChatroom   *chatroom)
1117 {
1118         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1119         GtkWidget   *menu_item;
1120         const gchar *name;
1121
1122         if (g_object_get_data (G_OBJECT (chatroom), "menu_item")) {
1123                 return;
1124         }
1125
1126         name = empathy_chatroom_get_name (chatroom);
1127         menu_item = gtk_menu_item_new_with_label (name);
1128         g_object_set_data (G_OBJECT (menu_item), "is_favorite",
1129                         GUINT_TO_POINTER (TRUE));
1130
1131         g_object_set_data (G_OBJECT (chatroom), "menu_item", menu_item);
1132         g_signal_connect (menu_item, "activate",
1133                           G_CALLBACK (main_window_favorite_chatroom_menu_activate_cb),
1134                           chatroom);
1135
1136         gtk_menu_shell_insert (GTK_MENU_SHELL (priv->room_menu),
1137                                menu_item, 4);
1138
1139         gtk_widget_show (menu_item);
1140 }
1141
1142 static void
1143 main_window_favorite_chatroom_menu_added_cb (EmpathyChatroomManager *manager,
1144                                              EmpathyChatroom        *chatroom,
1145                                              EmpathyMainWindow      *window)
1146 {
1147         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1148
1149         main_window_favorite_chatroom_menu_add (window, chatroom);
1150         gtk_widget_show (priv->room_separator);
1151         gtk_action_set_sensitive (priv->room_join_favorites, TRUE);
1152 }
1153
1154 static void
1155 main_window_favorite_chatroom_menu_removed_cb (EmpathyChatroomManager *manager,
1156                                                EmpathyChatroom        *chatroom,
1157                                                EmpathyMainWindow      *window)
1158 {
1159         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1160         GtkWidget *menu_item;
1161         GList *chatrooms;
1162
1163         menu_item = g_object_get_data (G_OBJECT (chatroom), "menu_item");
1164         g_object_set_data (G_OBJECT (chatroom), "menu_item", NULL);
1165         gtk_widget_destroy (menu_item);
1166
1167         chatrooms = empathy_chatroom_manager_get_chatrooms (priv->chatroom_manager, NULL);
1168         if (chatrooms) {
1169                 gtk_widget_show (priv->room_separator);
1170         } else {
1171                 gtk_widget_hide (priv->room_separator);
1172         }
1173
1174         gtk_action_set_sensitive (priv->room_join_favorites, chatrooms != NULL);
1175         g_list_free (chatrooms);
1176 }
1177
1178 static void
1179 main_window_favorite_chatroom_menu_setup (EmpathyMainWindow *window)
1180 {
1181         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1182         GList *chatrooms, *l;
1183         GtkWidget *room;
1184
1185         priv->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
1186         chatrooms = empathy_chatroom_manager_get_chatrooms (
1187                 priv->chatroom_manager, NULL);
1188         room = gtk_ui_manager_get_widget (priv->ui_manager,
1189                 "/menubar/room");
1190         priv->room_menu = gtk_menu_item_get_submenu (GTK_MENU_ITEM (room));
1191         priv->room_separator = gtk_ui_manager_get_widget (priv->ui_manager,
1192                 "/menubar/room/room_separator");
1193
1194         for (l = chatrooms; l; l = l->next) {
1195                 main_window_favorite_chatroom_menu_add (window, l->data);
1196         }
1197
1198         if (!chatrooms) {
1199                 gtk_widget_hide (priv->room_separator);
1200         }
1201
1202         gtk_action_set_sensitive (priv->room_join_favorites, chatrooms != NULL);
1203
1204         g_signal_connect (priv->chatroom_manager, "chatroom-added",
1205                           G_CALLBACK (main_window_favorite_chatroom_menu_added_cb),
1206                           window);
1207         g_signal_connect (priv->chatroom_manager, "chatroom-removed",
1208                           G_CALLBACK (main_window_favorite_chatroom_menu_removed_cb),
1209                           window);
1210
1211         g_list_free (chatrooms);
1212 }
1213
1214 static void
1215 main_window_room_join_new_cb (GtkAction         *action,
1216                               EmpathyMainWindow *window)
1217 {
1218         empathy_new_chatroom_dialog_show (GTK_WINDOW (window));
1219 }
1220
1221 static void
1222 main_window_room_join_favorites_cb (GtkAction         *action,
1223                                     EmpathyMainWindow *window)
1224 {
1225         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1226         GList *chatrooms, *l;
1227
1228         chatrooms = empathy_chatroom_manager_get_chatrooms (priv->chatroom_manager, NULL);
1229         for (l = chatrooms; l; l = l->next) {
1230                 main_window_favorite_chatroom_join (l->data);
1231         }
1232         g_list_free (chatrooms);
1233 }
1234
1235 static void
1236 main_window_room_manage_favorites_cb (GtkAction         *action,
1237                                       EmpathyMainWindow *window)
1238 {
1239         empathy_chatrooms_window_show (GTK_WINDOW (window));
1240 }
1241
1242 static void
1243 main_window_edit_cb (GtkAction         *action,
1244                      EmpathyMainWindow *window)
1245 {
1246         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1247         GtkWidget *submenu;
1248
1249         /* FIXME: It should use the UIManager to merge the contact/group submenu */
1250         submenu = empathy_individual_view_get_individual_menu (
1251                         priv->individual_view);
1252         if (submenu) {
1253                 GtkMenuItem *item;
1254                 GtkWidget   *label;
1255
1256                 item = GTK_MENU_ITEM (priv->edit_context);
1257                 label = gtk_bin_get_child (GTK_BIN (item));
1258                 gtk_label_set_text (GTK_LABEL (label), _("Contact"));
1259
1260                 gtk_widget_show (priv->edit_context);
1261                 gtk_widget_show (priv->edit_context_separator);
1262
1263                 gtk_menu_item_set_submenu (item, submenu);
1264
1265                 return;
1266         }
1267
1268         submenu = empathy_individual_view_get_group_menu (
1269                         priv->individual_view);
1270         if (submenu) {
1271                 GtkMenuItem *item;
1272                 GtkWidget   *label;
1273
1274                 item = GTK_MENU_ITEM (priv->edit_context);
1275                 label = gtk_bin_get_child (GTK_BIN (item));
1276                 gtk_label_set_text (GTK_LABEL (label), _("Group"));
1277
1278                 gtk_widget_show (priv->edit_context);
1279                 gtk_widget_show (priv->edit_context_separator);
1280
1281                 gtk_menu_item_set_submenu (item, submenu);
1282
1283                 return;
1284         }
1285
1286         gtk_widget_hide (priv->edit_context);
1287         gtk_widget_hide (priv->edit_context_separator);
1288
1289         return;
1290 }
1291
1292 static void
1293 main_window_edit_accounts_cb (GtkAction         *action,
1294                               EmpathyMainWindow *window)
1295 {
1296         empathy_accounts_dialog_show_application (gdk_screen_get_default (),
1297                         NULL, FALSE, FALSE);
1298 }
1299
1300 static void
1301 main_window_edit_personal_information_cb (GtkAction         *action,
1302                                           EmpathyMainWindow *window)
1303 {
1304         empathy_contact_personal_dialog_show (GTK_WINDOW (window));
1305 }
1306
1307 static void
1308 main_window_edit_preferences_cb (GtkAction         *action,
1309                                  EmpathyMainWindow *window)
1310 {
1311         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1312
1313         if (priv->preferences == NULL) {
1314                 priv->preferences = empathy_preferences_new (GTK_WINDOW (window));
1315                 g_object_add_weak_pointer (G_OBJECT (priv->preferences),
1316                                            (gpointer) &priv->preferences);
1317
1318                 gtk_widget_show (priv->preferences);
1319         } else {
1320                 gtk_window_present (GTK_WINDOW (priv->preferences));
1321         }
1322 }
1323
1324 static void
1325 main_window_help_about_cb (GtkAction         *action,
1326                            EmpathyMainWindow *window)
1327 {
1328         empathy_about_dialog_new (GTK_WINDOW (window));
1329 }
1330
1331 static void
1332 main_window_help_debug_cb (GtkAction         *action,
1333                            EmpathyMainWindow *window)
1334 {
1335         GdkScreen *screen = gdk_screen_get_default ();
1336         GError *error = NULL;
1337         gchar *argv[2] = { NULL, };
1338         gint i = 0;
1339         gchar *path;
1340
1341         g_return_if_fail (GDK_IS_SCREEN (screen));
1342
1343         /* Try to run from source directory if possible */
1344         path = g_build_filename (g_getenv ("EMPATHY_SRCDIR"), "src",
1345                         "empathy-debugger", NULL);
1346
1347         if (!g_file_test (path, G_FILE_TEST_EXISTS)) {
1348                 g_free (path);
1349                 path = g_build_filename (BIN_DIR, "empathy-debugger", NULL);
1350         }
1351
1352         argv[i++] = path;
1353
1354         gdk_spawn_on_screen (screen, NULL, argv, NULL,
1355                         G_SPAWN_SEARCH_PATH,
1356                         NULL, NULL, NULL, &error);
1357
1358         if (error) {
1359                 g_warning ("Failed to open debug window: %s", error->message);
1360                 g_error_free (error);
1361         }
1362
1363         g_free (path);
1364 }
1365
1366 static void
1367 main_window_help_contents_cb (GtkAction         *action,
1368                               EmpathyMainWindow *window)
1369 {
1370         empathy_url_show (GTK_WIDGET (window), "ghelp:empathy");
1371 }
1372
1373 static gboolean
1374 main_window_throbber_button_press_event_cb (GtkWidget         *throbber,
1375                                             GdkEventButton    *event,
1376                                             EmpathyMainWindow *window)
1377 {
1378         if (event->type != GDK_BUTTON_PRESS ||
1379             event->button != 1) {
1380                 return FALSE;
1381         }
1382
1383         empathy_accounts_dialog_show_application (
1384                         gtk_widget_get_screen (GTK_WIDGET (throbber)),
1385                         NULL, FALSE, FALSE);
1386
1387         return FALSE;
1388 }
1389
1390 static void
1391 main_window_account_removed_cb (TpAccountManager  *manager,
1392                                 TpAccount         *account,
1393                                 EmpathyMainWindow *window)
1394 {
1395         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1396         GList *a;
1397
1398         a = tp_account_manager_get_valid_accounts (manager);
1399
1400         gtk_action_set_sensitive (priv->view_history,
1401                 g_list_length (a) > 0);
1402
1403         g_list_free (a);
1404
1405         /* remove errors if any */
1406         main_window_remove_error (window, account);
1407 }
1408
1409 static void
1410 main_window_account_validity_changed_cb (TpAccountManager  *manager,
1411                                          TpAccount         *account,
1412                                          gboolean           valid,
1413                                          EmpathyMainWindow *window)
1414 {
1415         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1416
1417         if (valid) {
1418                 gulong handler_id;
1419                 handler_id = GPOINTER_TO_UINT (g_hash_table_lookup (
1420                         priv->status_changed_handlers, account));
1421
1422                 /* connect signal only if it was not connected yet */
1423                 if (handler_id == 0) {
1424                         handler_id = g_signal_connect (account,
1425                                 "status-changed",
1426                                 G_CALLBACK (main_window_connection_changed_cb),
1427                                 window);
1428                         g_hash_table_insert (priv->status_changed_handlers,
1429                                 account, GUINT_TO_POINTER (handler_id));
1430                 }
1431         }
1432
1433         main_window_account_removed_cb (manager, account, window);
1434 }
1435
1436 static void
1437 main_window_notify_show_offline_cb (GSettings   *gsettings,
1438                                     const gchar *key,
1439                                     gpointer     toggle_action)
1440 {
1441         gtk_toggle_action_set_active (toggle_action,
1442                         g_settings_get_boolean (gsettings, key));
1443 }
1444
1445 static void
1446 main_window_connection_items_setup (EmpathyMainWindow *window,
1447                                     GtkBuilder        *gui)
1448 {
1449         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1450         GList         *list;
1451         GObject       *action;
1452         guint          i;
1453         const gchar *actions_connected[] = {
1454                 "room_join_new",
1455                 "room_join_favorites",
1456                 "chat_new_message",
1457                 "chat_new_call",
1458                 "chat_add_contact",
1459                 "edit_personal_information"
1460         };
1461
1462         for (i = 0, list = NULL; i < G_N_ELEMENTS (actions_connected); i++) {
1463                 action = gtk_builder_get_object (gui, actions_connected[i]);
1464                 list = g_list_prepend (list, action);
1465         }
1466
1467         priv->actions_connected = list;
1468 }
1469
1470 static void
1471 account_manager_prepared_cb (GObject      *source_object,
1472                              GAsyncResult *result,
1473                              gpointer      user_data)
1474 {
1475         GList *accounts, *j;
1476         TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
1477         EmpathyMainWindow *window = user_data;
1478         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1479         GError *error = NULL;
1480
1481         if (!tp_account_manager_prepare_finish (manager, result, &error)) {
1482                 DEBUG ("Failed to prepare account manager: %s", error->message);
1483                 g_error_free (error);
1484                 return;
1485         }
1486
1487         accounts = tp_account_manager_get_valid_accounts (priv->account_manager);
1488         for (j = accounts; j != NULL; j = j->next) {
1489                 TpAccount *account = TP_ACCOUNT (j->data);
1490                 gulong handler_id;
1491
1492                 handler_id = g_signal_connect (account, "status-changed",
1493                                   G_CALLBACK (main_window_connection_changed_cb),
1494                                   window);
1495                 g_hash_table_insert (priv->status_changed_handlers,
1496                                      account, GUINT_TO_POINTER (handler_id));
1497         }
1498
1499         g_signal_connect (manager, "account-validity-changed",
1500                           G_CALLBACK (main_window_account_validity_changed_cb),
1501                           window);
1502
1503         main_window_update_status (window);
1504
1505         /* Disable the "Previous Conversations" menu entry if there is no account */
1506         gtk_action_set_sensitive (priv->view_history,
1507                 g_list_length (accounts) > 0);
1508
1509         g_list_free (accounts);
1510 }
1511
1512 static void
1513 main_window_members_changed_cb (EmpathyContactList *list,
1514                                 EmpathyContact     *contact,
1515                                 EmpathyContact     *actor,
1516                                 guint               reason,
1517                                 gchar              *message,
1518                                 gboolean            is_member,
1519                                 EmpathyMainWindow  *window)
1520 {
1521         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1522
1523         if (!is_member)
1524                 return;
1525
1526         if (!empathy_migrate_butterfly_logs (contact)) {
1527                 g_signal_handler_disconnect (list,
1528                         priv->butterfly_log_migration_members_changed_id);
1529                 priv->butterfly_log_migration_members_changed_id = 0;
1530         }
1531 }
1532
1533 static GObject *
1534 empathy_main_window_constructor (GType type,
1535                                  guint n_construct_params,
1536                                  GObjectConstructParam *construct_params)
1537 {
1538         static GObject *window = NULL;
1539
1540         if (window != NULL)
1541                 return g_object_ref (window);
1542
1543         window = G_OBJECT_CLASS (empathy_main_window_parent_class)->constructor (
1544                 type, n_construct_params, construct_params);
1545
1546         g_object_add_weak_pointer (window, (gpointer) &window);
1547
1548         return window;
1549 }
1550
1551 static void
1552 empathy_main_window_class_init (EmpathyMainWindowClass *klass)
1553 {
1554         GObjectClass *object_class = G_OBJECT_CLASS (klass);
1555
1556         object_class->finalize = empathy_main_window_finalize;
1557         object_class->constructor = empathy_main_window_constructor;
1558
1559         g_type_class_add_private (object_class, sizeof (EmpathyMainWindowPriv));
1560 }
1561
1562 static void
1563 empathy_main_window_init (EmpathyMainWindow *window)
1564 {
1565         EmpathyMainWindowPriv    *priv;
1566         EmpathyIndividualManager *individual_manager;
1567         GtkBuilder               *gui;
1568         GtkWidget                *sw;
1569         GtkToggleAction          *show_offline_widget;
1570         GtkAction                *show_map_widget;
1571         GtkToolItem              *item;
1572         gboolean                  show_offline;
1573         gchar                    *filename;
1574         GSList                   *l;
1575         GtkTreeModel             *model;
1576
1577         priv = window->priv = G_TYPE_INSTANCE_GET_PRIVATE (window,
1578                         EMPATHY_TYPE_MAIN_WINDOW, EmpathyMainWindowPriv);
1579
1580         priv->gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA);
1581         priv->gsettings_contacts = g_settings_new (EMPATHY_PREFS_CONTACTS_SCHEMA);
1582
1583         priv->sound_mgr = empathy_sound_manager_dup_singleton ();
1584
1585         gtk_window_set_title (GTK_WINDOW (window), _("Contact List"));
1586         gtk_window_set_role (GTK_WINDOW (window), "contact_list");
1587         gtk_window_set_default_size (GTK_WINDOW (window), 225, 325);
1588
1589         /* Set up interface */
1590         filename = empathy_file_lookup ("empathy-main-window.ui", "src");
1591         gui = empathy_builder_get_file (filename,
1592                                        "main_vbox", &priv->main_vbox,
1593                                        "errors_vbox", &priv->errors_vbox,
1594                                        "ui_manager", &priv->ui_manager,
1595                                        "view_show_offline", &show_offline_widget,
1596                                        "view_show_protocols", &priv->show_protocols,
1597                                        "view_sort_by_name", &priv->sort_by_name,
1598                                        "view_sort_by_status", &priv->sort_by_status,
1599                                        "view_normal_size_with_avatars", &priv->normal_with_avatars,
1600                                        "view_normal_size", &priv->normal_size,
1601                                        "view_compact_size", &priv->compact_size,
1602                                        "view_history", &priv->view_history,
1603                                        "view_show_map", &show_map_widget,
1604                                        "room_join_favorites", &priv->room_join_favorites,
1605                                        "presence_toolbar", &priv->presence_toolbar,
1606                                        "notebook", &priv->notebook,
1607                                        "no_entry_label", &priv->no_entry_label,
1608                                        "roster_scrolledwindow", &sw,
1609                                        NULL);
1610         g_free (filename);
1611
1612         gtk_container_add (GTK_CONTAINER (window), priv->main_vbox);
1613         gtk_widget_show (priv->main_vbox);
1614
1615         g_signal_connect (window, "key-press-event",
1616                           G_CALLBACK (main_window_key_press_event_cb), NULL);
1617
1618         empathy_builder_connect (gui, window,
1619                               "chat_quit", "activate", main_window_chat_quit_cb,
1620                               "chat_new_message", "activate", main_window_chat_new_message_cb,
1621                               "chat_new_call", "activate", main_window_chat_new_call_cb,
1622                               "view_history", "activate", main_window_view_history_cb,
1623                               "room_join_new", "activate", main_window_room_join_new_cb,
1624                               "room_join_favorites", "activate", main_window_room_join_favorites_cb,
1625                               "room_manage_favorites", "activate", main_window_room_manage_favorites_cb,
1626                               "chat_add_contact", "activate", main_window_chat_add_contact_cb,
1627                               "view_show_ft_manager", "activate", main_window_view_show_ft_manager,
1628                               "view_show_offline", "toggled", main_window_view_show_offline_cb,
1629                               "view_show_protocols", "toggled", main_window_view_show_protocols_cb,
1630                               "view_sort_by_name", "changed", main_window_view_sort_contacts_cb,
1631                               "view_normal_size_with_avatars", "changed", main_window_view_contacts_list_size_cb,
1632                               "view_show_map", "activate", main_window_view_show_map_cb,
1633                               "edit", "activate", main_window_edit_cb,
1634                               "edit_accounts", "activate", main_window_edit_accounts_cb,
1635                               "edit_personal_information", "activate", main_window_edit_personal_information_cb,
1636                               "edit_preferences", "activate", main_window_edit_preferences_cb,
1637                               "edit_search_contacts", "activate", main_window_edit_search_contacts_cb,
1638                               "help_about", "activate", main_window_help_about_cb,
1639                               "help_debug", "activate", main_window_help_debug_cb,
1640                               "help_contents", "activate", main_window_help_contents_cb,
1641                               NULL);
1642
1643         /* Set up connection related widgets. */
1644         main_window_connection_items_setup (window, gui);
1645
1646         g_object_ref (priv->ui_manager);
1647         g_object_unref (gui);
1648
1649 #ifndef HAVE_LIBCHAMPLAIN
1650         gtk_action_set_visible (show_map_widget, FALSE);
1651 #endif
1652
1653         priv->account_manager = tp_account_manager_dup ();
1654
1655         tp_account_manager_prepare_async (priv->account_manager, NULL,
1656                                           account_manager_prepared_cb, window);
1657
1658         priv->errors = g_hash_table_new_full (g_direct_hash,
1659                                               g_direct_equal,
1660                                               g_object_unref,
1661                                               NULL);
1662
1663         priv->status_changed_handlers = g_hash_table_new_full (g_direct_hash,
1664                                                                g_direct_equal,
1665                                                                NULL,
1666                                                                NULL);
1667
1668         /* Set up menu */
1669         main_window_favorite_chatroom_menu_setup (window);
1670
1671         priv->edit_context = gtk_ui_manager_get_widget (priv->ui_manager,
1672                 "/menubar/edit/edit_context");
1673         priv->edit_context_separator = gtk_ui_manager_get_widget (
1674                 priv->ui_manager,
1675                 "/menubar/edit/edit_context_separator");
1676         gtk_widget_hide (priv->edit_context);
1677         gtk_widget_hide (priv->edit_context_separator);
1678
1679         /* Set up contact list. */
1680         empathy_status_presets_get_all ();
1681
1682         /* Set up presence chooser */
1683         priv->presence_chooser = empathy_presence_chooser_new ();
1684         gtk_widget_show (priv->presence_chooser);
1685         item = gtk_tool_item_new ();
1686         gtk_widget_show (GTK_WIDGET (item));
1687         gtk_container_add (GTK_CONTAINER (item), priv->presence_chooser);
1688         gtk_tool_item_set_is_important (item, TRUE);
1689         gtk_tool_item_set_expand (item, TRUE);
1690         gtk_toolbar_insert (GTK_TOOLBAR (priv->presence_toolbar), item, -1);
1691
1692         /* Set up the throbber */
1693         priv->throbber = gtk_spinner_new ();
1694         gtk_widget_set_size_request (priv->throbber, 16, -1);
1695         gtk_widget_set_tooltip_text (priv->throbber, _("Show and edit accounts"));
1696         gtk_widget_set_events (priv->throbber, GDK_BUTTON_PRESS_MASK);
1697         g_signal_connect (priv->throbber, "button-press-event",
1698                 G_CALLBACK (main_window_throbber_button_press_event_cb),
1699                 window);
1700         gtk_widget_show (priv->throbber);
1701
1702         item = gtk_tool_item_new ();
1703         gtk_container_set_border_width (GTK_CONTAINER (item), 6);
1704         gtk_toolbar_insert (GTK_TOOLBAR (priv->presence_toolbar), item, -1);
1705         gtk_container_add (GTK_CONTAINER (item), priv->throbber);
1706         priv->throbber_tool_item = GTK_WIDGET (item);
1707
1708         /* XXX: this class is designed to live for the duration of the program,
1709          * so it's got a race condition between its signal handlers and its
1710          * finalization. The class is planned to be removed, so we won't fix
1711          * this before then. */
1712         priv->contact_manager = EMPATHY_CONTACT_LIST (
1713                         empathy_contact_manager_dup_singleton ());
1714         individual_manager = empathy_individual_manager_dup_singleton ();
1715         priv->individual_store = empathy_individual_store_new (
1716                         individual_manager);
1717         g_object_unref (individual_manager);
1718
1719         /* For the moment, we disallow Persona drops onto the main contact list (e.g. from things such as
1720          * the EmpathyPersonaView in the linking dialogue). No code is hooked up to do anything on a Persona
1721          * drop, so allowing them would achieve nothing except confusion. */
1722         priv->individual_view = empathy_individual_view_new (
1723                         priv->individual_store,
1724                         EMPATHY_INDIVIDUAL_VIEW_FEATURE_ALL ^ EMPATHY_INDIVIDUAL_VIEW_FEATURE_PERSONA_DROP,
1725                         EMPATHY_INDIVIDUAL_FEATURE_ALL);
1726
1727         priv->butterfly_log_migration_members_changed_id = g_signal_connect (
1728                         priv->contact_manager, "members-changed",
1729                         G_CALLBACK (main_window_members_changed_cb), window);
1730
1731         gtk_widget_show (GTK_WIDGET (priv->individual_view));
1732         gtk_container_add (GTK_CONTAINER (sw),
1733                            GTK_WIDGET (priv->individual_view));
1734         g_signal_connect (priv->individual_view, "row-activated",
1735                           G_CALLBACK (main_window_row_activated_cb),
1736                           window);
1737
1738         /* Set up search bar */
1739         priv->search_bar = empathy_live_search_new (
1740                 GTK_WIDGET (priv->individual_view));
1741         empathy_individual_view_set_live_search (priv->individual_view,
1742                 EMPATHY_LIVE_SEARCH (priv->search_bar));
1743         gtk_box_pack_start (GTK_BOX (priv->main_vbox), priv->search_bar,
1744                 FALSE, TRUE, 0);
1745         g_signal_connect_swapped (window, "map",
1746                 G_CALLBACK (gtk_widget_grab_focus), priv->individual_view);
1747
1748         /* Connect to proper signals to check if contact list is empty or not */
1749         model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->individual_view));
1750         priv->empty = TRUE;
1751         g_signal_connect (model, "row-inserted",
1752                           G_CALLBACK (main_window_row_inserted_cb),
1753                           window);
1754         g_signal_connect (model, "row-deleted",
1755                           G_CALLBACK (main_window_row_deleted_cb),
1756                           window);
1757
1758         /* Load user-defined accelerators. */
1759         main_window_accels_load ();
1760
1761         /* Set window size. */
1762         empathy_geometry_bind (GTK_WINDOW (window), GEOMETRY_NAME);
1763
1764         /* Enable event handling */
1765         priv->event_manager = empathy_event_manager_dup_singleton ();
1766
1767         g_signal_connect (priv->event_manager, "event-added",
1768                           G_CALLBACK (main_window_event_added_cb), window);
1769         g_signal_connect (priv->event_manager, "event-removed",
1770                           G_CALLBACK (main_window_event_removed_cb), window);
1771         g_signal_connect (priv->account_manager, "account-validity-changed",
1772                           G_CALLBACK (main_window_account_validity_changed_cb),
1773                           window);
1774         g_signal_connect (priv->account_manager, "account-removed",
1775                           G_CALLBACK (main_window_account_removed_cb),
1776                           window);
1777         g_signal_connect (priv->account_manager, "account-disabled",
1778                           G_CALLBACK (main_window_account_disabled_cb),
1779                           window);
1780
1781         l = empathy_event_manager_get_events (priv->event_manager);
1782         while (l) {
1783                 main_window_event_added_cb (priv->event_manager, l->data,
1784                                 window);
1785                 l = l->next;
1786         }
1787
1788         /* Show offline ? */
1789         show_offline = g_settings_get_boolean (priv->gsettings_ui,
1790                                                EMPATHY_PREFS_UI_SHOW_OFFLINE);
1791         g_signal_connect (priv->gsettings_ui,
1792                           "changed::" EMPATHY_PREFS_UI_SHOW_OFFLINE,
1793                           G_CALLBACK (main_window_notify_show_offline_cb),
1794                           show_offline_widget);
1795
1796         gtk_toggle_action_set_active (show_offline_widget, show_offline);
1797
1798         /* Show protocol ? */
1799         g_signal_connect (priv->gsettings_ui,
1800                           "changed::" EMPATHY_PREFS_UI_SHOW_PROTOCOLS,
1801                           G_CALLBACK (main_window_notify_show_protocols_cb),
1802                           window);
1803
1804         main_window_notify_show_protocols_cb (priv->gsettings_ui,
1805                                               EMPATHY_PREFS_UI_SHOW_PROTOCOLS,
1806                                               window);
1807
1808         /* Sort by name / by status ? */
1809         g_signal_connect (priv->gsettings_contacts,
1810                           "changed::" EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
1811                           G_CALLBACK (main_window_notify_sort_contact_cb),
1812                           window);
1813
1814         main_window_notify_sort_contact_cb (priv->gsettings_contacts,
1815                                             EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
1816                                             window);
1817
1818         /* Contacts list size */
1819         g_signal_connect (priv->gsettings_ui,
1820                           "changed::" EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
1821                           G_CALLBACK (main_window_notify_contact_list_size_cb),
1822                           window);
1823         g_signal_connect (priv->gsettings_ui,
1824                           "changed::" EMPATHY_PREFS_UI_SHOW_AVATARS,
1825                           G_CALLBACK (main_window_notify_contact_list_size_cb),
1826                           window);
1827
1828         main_window_notify_contact_list_size_cb (priv->gsettings_ui,
1829                                                  EMPATHY_PREFS_UI_SHOW_AVATARS,
1830                                                  window);
1831 }
1832
1833 GtkWidget *
1834 empathy_main_window_dup (void)
1835 {
1836         return g_object_new (EMPATHY_TYPE_MAIN_WINDOW, NULL);
1837 }