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