]> git.0d.be Git - empathy.git/blob - src/empathy-main-window.c
main-window: use g_app_info_launch() instead of gdk_spawn_on_screen() (#637854)
[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, _("Disconnect"));
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_set_tooltip_text (priv->errors_vbox, error_message);
742         gtk_widget_show (priv->errors_vbox);
743
744         g_hash_table_insert (priv->errors, g_object_ref (account), info_bar);
745 }
746
747 static void
748 main_window_update_status (EmpathyMainWindow *window)
749 {
750         EmpathyMainWindowPriv *priv = GET_PRIV (window);
751         gboolean connected, connecting;
752         GList *l, *children;
753
754         connected = empathy_account_manager_get_accounts_connected (&connecting);
755
756         /* Update the spinner state */
757         if (connecting) {
758                 gtk_spinner_start (GTK_SPINNER (priv->throbber));
759                 gtk_widget_show (priv->throbber_tool_item);
760         } else {
761                 gtk_spinner_stop (GTK_SPINNER (priv->throbber));
762                 gtk_widget_hide (priv->throbber_tool_item);
763         }
764
765         /* Update widgets sensibility */
766         for (l = priv->actions_connected; l; l = l->next) {
767                 gtk_action_set_sensitive (l->data, connected);
768         }
769
770         /* Update favourite rooms sensitivity */
771         children = gtk_container_get_children (GTK_CONTAINER (priv->room_menu));
772         for (l = children; l != NULL; l = l->next) {
773                 if (g_object_get_data (G_OBJECT (l->data), "is_favorite") != NULL) {
774                         gtk_widget_set_sensitive (GTK_WIDGET (l->data), connected);
775                 }
776         }
777         g_list_free (children);
778 }
779
780 static void
781 main_window_connection_changed_cb (TpAccount  *account,
782                                    guint       old_status,
783                                    guint       current,
784                                    guint       reason,
785                                    gchar      *dbus_error_name,
786                                    GHashTable *details,
787                                    EmpathyMainWindow *window)
788 {
789         EmpathyMainWindowPriv *priv = GET_PRIV (window);
790
791         main_window_update_status (window);
792
793         if (current == TP_CONNECTION_STATUS_DISCONNECTED &&
794             reason != TP_CONNECTION_STATUS_REASON_REQUESTED) {
795                 main_window_error_display (window, account);
796         }
797
798         if (current == TP_CONNECTION_STATUS_DISCONNECTED) {
799                 empathy_sound_manager_play (priv->sound_mgr, GTK_WIDGET (window),
800                                     EMPATHY_SOUND_ACCOUNT_DISCONNECTED);
801         }
802
803         if (current == TP_CONNECTION_STATUS_CONNECTED) {
804                 empathy_sound_manager_play (priv->sound_mgr, GTK_WIDGET (window),
805                                     EMPATHY_SOUND_ACCOUNT_CONNECTED);
806
807                 /* Account connected without error, remove error message if any */
808                 main_window_remove_error (window, account);
809         }
810 }
811
812 static void
813 main_window_accels_load (void)
814 {
815         gchar *filename;
816
817         filename = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, ACCELS_FILENAME, NULL);
818         if (g_file_test (filename, G_FILE_TEST_EXISTS)) {
819                 DEBUG ("Loading from:'%s'", filename);
820                 gtk_accel_map_load (filename);
821         }
822
823         g_free (filename);
824 }
825
826 static void
827 main_window_accels_save (void)
828 {
829         gchar *dir;
830         gchar *file_with_path;
831
832         dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
833         g_mkdir_with_parents (dir, S_IRUSR | S_IWUSR | S_IXUSR);
834         file_with_path = g_build_filename (dir, ACCELS_FILENAME, NULL);
835         g_free (dir);
836
837         DEBUG ("Saving to:'%s'", file_with_path);
838         gtk_accel_map_save (file_with_path);
839
840         g_free (file_with_path);
841 }
842
843 static void
844 empathy_main_window_finalize (GObject *window)
845 {
846         EmpathyMainWindowPriv *priv = GET_PRIV (window);
847         GHashTableIter iter;
848         gpointer key, value;
849
850         /* Save user-defined accelerators. */
851         main_window_accels_save ();
852
853         g_list_free (priv->actions_connected);
854
855         g_object_unref (priv->account_manager);
856         g_object_unref (priv->individual_store);
857         g_object_unref (priv->contact_manager);
858         g_object_unref (priv->sound_mgr);
859         g_hash_table_destroy (priv->errors);
860         g_hash_table_destroy (priv->auths);
861
862         /* disconnect all handlers of status-changed signal */
863         g_hash_table_iter_init (&iter, priv->status_changed_handlers);
864         while (g_hash_table_iter_next (&iter, &key, &value))
865                 g_signal_handler_disconnect (TP_ACCOUNT (key),
866                                              GPOINTER_TO_UINT (value));
867
868         g_hash_table_destroy (priv->status_changed_handlers);
869
870         g_signal_handlers_disconnect_by_func (priv->event_manager,
871                                               main_window_event_added_cb,
872                                               window);
873         g_signal_handlers_disconnect_by_func (priv->event_manager,
874                                               main_window_event_removed_cb,
875                                               window);
876         g_object_unref (priv->event_manager);
877         g_object_unref (priv->ui_manager);
878         g_object_unref (priv->chatroom_manager);
879
880         g_object_unref (priv->gsettings_ui);
881         g_object_unref (priv->gsettings_contacts);
882
883         G_OBJECT_CLASS (empathy_main_window_parent_class)->finalize (window);
884 }
885
886 static gboolean
887 main_window_key_press_event_cb  (GtkWidget   *window,
888                                  GdkEventKey *event,
889                                  gpointer     user_data)
890 {
891         EmpathyChatManager *chat_manager;
892
893         if (event->keyval == GDK_KEY_T
894             && event->state & GDK_SHIFT_MASK
895             && event->state & GDK_CONTROL_MASK) {
896                 chat_manager = empathy_chat_manager_dup_singleton ();
897                 empathy_chat_manager_undo_closed_chat (chat_manager);
898                 g_object_unref (chat_manager);
899         }
900         return FALSE;
901 }
902
903 static void
904 main_window_chat_quit_cb (GtkAction         *action,
905                           EmpathyMainWindow *window)
906 {
907         gtk_main_quit ();
908 }
909
910 static void
911 main_window_view_history_cb (GtkAction         *action,
912                              EmpathyMainWindow *window)
913 {
914         empathy_log_window_show (NULL, NULL, FALSE, GTK_WINDOW (window));
915 }
916
917 static void
918 main_window_chat_new_message_cb (GtkAction         *action,
919                                  EmpathyMainWindow *window)
920 {
921         empathy_new_message_dialog_show (GTK_WINDOW (window));
922 }
923
924 static void
925 main_window_chat_new_call_cb (GtkAction         *action,
926                               EmpathyMainWindow *window)
927 {
928         empathy_new_call_dialog_show (GTK_WINDOW (window));
929 }
930
931 static void
932 main_window_chat_add_contact_cb (GtkAction         *action,
933                                  EmpathyMainWindow *window)
934 {
935         empathy_new_individual_dialog_show (GTK_WINDOW (window));
936 }
937
938 static void
939 main_window_view_show_ft_manager (GtkAction         *action,
940                                   EmpathyMainWindow *window)
941 {
942         empathy_ft_manager_show ();
943 }
944
945 static void
946 main_window_view_show_offline_cb (GtkToggleAction   *action,
947                                   EmpathyMainWindow *window)
948 {
949         EmpathyMainWindowPriv *priv = GET_PRIV (window);
950         gboolean current;
951
952         current = gtk_toggle_action_get_active (action);
953         g_settings_set_boolean (priv->gsettings_ui,
954                                 EMPATHY_PREFS_UI_SHOW_OFFLINE,
955                                 current);
956
957         empathy_individual_view_set_show_offline (priv->individual_view,
958                         current);
959 }
960
961 static void
962 main_window_notify_sort_contact_cb (GSettings         *gsettings,
963                                     const gchar       *key,
964                                     EmpathyMainWindow *window)
965 {
966         EmpathyMainWindowPriv *priv = GET_PRIV (window);
967         gchar *str;
968
969         str = g_settings_get_string (gsettings, key);
970
971         if (str != NULL) {
972                 GType       type;
973                 GEnumClass *enum_class;
974                 GEnumValue *enum_value;
975
976                 type = empathy_individual_store_sort_get_type ();
977                 enum_class = G_ENUM_CLASS (g_type_class_peek (type));
978                 enum_value = g_enum_get_value_by_nick (enum_class, str);
979                 if (enum_value) {
980                         /* By changing the value of the GtkRadioAction,
981                            it emits a signal that calls main_window_view_sort_contacts_cb
982                            which updates the contacts list */
983                         gtk_radio_action_set_current_value (priv->sort_by_name,
984                                                             enum_value->value);
985                 } else {
986                         g_warning ("Wrong value for sort_criterium configuration : %s", str);
987                 }
988                 g_free (str);
989         }
990 }
991
992 static void
993 main_window_view_sort_contacts_cb (GtkRadioAction    *action,
994                                    GtkRadioAction    *current,
995                                    EmpathyMainWindow *window)
996 {
997         EmpathyMainWindowPriv *priv = GET_PRIV (window);
998         EmpathyContactListStoreSort value;
999         GSList      *group;
1000         GType        type;
1001         GEnumClass  *enum_class;
1002         GEnumValue  *enum_value;
1003
1004         value = gtk_radio_action_get_current_value (action);
1005         group = gtk_radio_action_get_group (action);
1006
1007         /* Get string from index */
1008         type = empathy_individual_store_sort_get_type ();
1009         enum_class = G_ENUM_CLASS (g_type_class_peek (type));
1010         enum_value = g_enum_get_value (enum_class, g_slist_index (group, current));
1011
1012         if (!enum_value) {
1013                 g_warning ("No GEnumValue for EmpathyContactListSort with GtkRadioAction index:%d",
1014                            g_slist_index (group, action));
1015         } else {
1016                 g_settings_set_string (priv->gsettings_contacts,
1017                                        EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
1018                                        enum_value->value_nick);
1019         }
1020         empathy_individual_store_set_sort_criterium (priv->individual_store,
1021                         value);
1022 }
1023
1024 static void
1025 main_window_view_show_protocols_cb (GtkToggleAction   *action,
1026                                     EmpathyMainWindow *window)
1027 {
1028         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1029         gboolean value;
1030
1031         value = gtk_toggle_action_get_active (action);
1032
1033         g_settings_set_boolean (priv->gsettings_ui,
1034                                 EMPATHY_PREFS_UI_SHOW_PROTOCOLS,
1035                                 value);
1036         empathy_individual_store_set_show_protocols (priv->individual_store,
1037                                                      value);
1038 }
1039
1040 /* Matches GtkRadioAction values set in empathy-main-window.ui */
1041 #define CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS           0
1042 #define CONTACT_LIST_NORMAL_SIZE                        1
1043 #define CONTACT_LIST_COMPACT_SIZE                       2
1044
1045 static void
1046 main_window_view_contacts_list_size_cb (GtkRadioAction    *action,
1047                                         GtkRadioAction    *current,
1048                                         EmpathyMainWindow *window)
1049 {
1050         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1051         GSettings *gsettings_ui;
1052         gint value;
1053
1054         value = gtk_radio_action_get_current_value (action);
1055         /* create a new GSettings, so we can delay the setting until both
1056          * values are set */
1057         gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA);
1058
1059         DEBUG ("radio button toggled, value = %i", value);
1060
1061         g_settings_delay (gsettings_ui);
1062         g_settings_set_boolean (gsettings_ui,
1063                                 EMPATHY_PREFS_UI_SHOW_AVATARS,
1064                                 value == CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS);
1065
1066         g_settings_set_boolean (gsettings_ui,
1067                                 EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
1068                                 value == CONTACT_LIST_COMPACT_SIZE);
1069         g_settings_apply (gsettings_ui);
1070
1071         /* FIXME: these enums probably have the wrong namespace */
1072         empathy_individual_store_set_show_avatars (priv->individual_store,
1073                         value == CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS);
1074         empathy_individual_store_set_is_compact (priv->individual_store,
1075                         value == CONTACT_LIST_COMPACT_SIZE);
1076
1077         g_object_unref (gsettings_ui);
1078 }
1079
1080 static void main_window_notify_show_protocols_cb (GSettings         *gsettings,
1081                                                   const gchar       *key,
1082                                                   EmpathyMainWindow *window)
1083 {
1084         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1085
1086         gtk_toggle_action_set_active (priv->show_protocols,
1087                         g_settings_get_boolean (gsettings,
1088                                 EMPATHY_PREFS_UI_SHOW_PROTOCOLS));
1089 }
1090
1091
1092 static void
1093 main_window_notify_contact_list_size_cb (GSettings         *gsettings,
1094                                          const gchar       *key,
1095                                          EmpathyMainWindow *window)
1096 {
1097         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1098         gint value;
1099
1100         if (g_settings_get_boolean (gsettings,
1101                         EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST)) {
1102                 value = CONTACT_LIST_COMPACT_SIZE;
1103         } else if (g_settings_get_boolean (gsettings,
1104                         EMPATHY_PREFS_UI_SHOW_AVATARS)) {
1105                 value = CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS;
1106         } else {
1107                 value = CONTACT_LIST_NORMAL_SIZE;
1108         }
1109
1110         DEBUG ("setting changed, value = %i", value);
1111
1112         /* By changing the value of the GtkRadioAction,
1113            it emits a signal that calls main_window_view_contacts_list_size_cb
1114            which updates the contacts list */
1115         gtk_radio_action_set_current_value (priv->normal_with_avatars, value);
1116 }
1117
1118 static void
1119 main_window_edit_search_contacts_cb (GtkCheckMenuItem  *item,
1120                                      EmpathyMainWindow *window)
1121 {
1122         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1123
1124         empathy_individual_view_start_search (priv->individual_view);
1125 }
1126
1127 static void
1128 main_window_view_show_map_cb (GtkCheckMenuItem  *item,
1129                               EmpathyMainWindow *window)
1130 {
1131 #ifdef HAVE_LIBCHAMPLAIN
1132         empathy_map_view_show ();
1133 #endif
1134 }
1135
1136 static void
1137 join_chatroom (EmpathyChatroom *chatroom,
1138                gint64 timestamp)
1139 {
1140         TpAccount      *account;
1141         const gchar    *room;
1142
1143         account = empathy_chatroom_get_account (chatroom);
1144         room = empathy_chatroom_get_room (chatroom);
1145
1146         DEBUG ("Requesting channel for '%s'", room);
1147         empathy_dispatcher_join_muc (account, room, timestamp);
1148 }
1149
1150 typedef struct
1151 {
1152         TpAccount *account;
1153         EmpathyChatroom *chatroom;
1154         gint64 timestamp;
1155         glong sig_id;
1156         guint timeout;
1157 } join_fav_account_sig_ctx;
1158
1159 static join_fav_account_sig_ctx *
1160 join_fav_account_sig_ctx_new (TpAccount *account,
1161                              EmpathyChatroom *chatroom,
1162                               gint64 timestamp)
1163 {
1164         join_fav_account_sig_ctx *ctx = g_slice_new0 (
1165                 join_fav_account_sig_ctx);
1166
1167         ctx->account = g_object_ref (account);
1168         ctx->chatroom = g_object_ref (chatroom);
1169         ctx->timestamp = timestamp;
1170         return ctx;
1171 }
1172
1173 static void
1174 join_fav_account_sig_ctx_free (join_fav_account_sig_ctx *ctx)
1175 {
1176         g_object_unref (ctx->account);
1177         g_object_unref (ctx->chatroom);
1178         g_slice_free (join_fav_account_sig_ctx, ctx);
1179 }
1180
1181 static void
1182 account_status_changed_cb (TpAccount  *account,
1183                            TpConnectionStatus old_status,
1184                            TpConnectionStatus new_status,
1185                            guint reason,
1186                            gchar *dbus_error_name,
1187                            GHashTable *details,
1188                            gpointer user_data)
1189 {
1190         join_fav_account_sig_ctx *ctx = user_data;
1191
1192         switch (new_status) {
1193                 case TP_CONNECTION_STATUS_DISCONNECTED:
1194                         /* Don't wait any longer */
1195                         goto finally;
1196                         break;
1197
1198                 case TP_CONNECTION_STATUS_CONNECTING:
1199                         /* Wait a bit */
1200                         return;
1201
1202                 case TP_CONNECTION_STATUS_CONNECTED:
1203                         /* We can join the room */
1204                         break;
1205
1206                 default:
1207                         g_assert_not_reached ();
1208         }
1209
1210         join_chatroom (ctx->chatroom, ctx->timestamp);
1211
1212 finally:
1213         g_source_remove (ctx->timeout);
1214         g_signal_handler_disconnect (account, ctx->sig_id);
1215 }
1216
1217 #define JOIN_FAVORITE_TIMEOUT 5
1218
1219 static gboolean
1220 join_favorite_timeout_cb (gpointer data)
1221 {
1222         join_fav_account_sig_ctx *ctx = data;
1223
1224         /* stop waiting for joining the favorite room */
1225         g_signal_handler_disconnect (ctx->account, ctx->sig_id);
1226         return FALSE;
1227 }
1228
1229 static void
1230 main_window_favorite_chatroom_join (EmpathyChatroom *chatroom)
1231 {
1232         TpAccount      *account;
1233
1234         account = empathy_chatroom_get_account (chatroom);
1235         if (tp_account_get_connection_status (account, NULL) !=
1236                                              TP_CONNECTION_STATUS_CONNECTED) {
1237                 join_fav_account_sig_ctx *ctx;
1238
1239                 ctx = join_fav_account_sig_ctx_new (account, chatroom,
1240                         gtk_get_current_event_time ());
1241
1242                 ctx->sig_id = g_signal_connect_data (account, "status-changed",
1243                         G_CALLBACK (account_status_changed_cb), ctx,
1244                         (GClosureNotify) join_fav_account_sig_ctx_free, 0);
1245
1246                 ctx->timeout = g_timeout_add_seconds (JOIN_FAVORITE_TIMEOUT,
1247                         join_favorite_timeout_cb, ctx);
1248                 return;
1249         }
1250
1251         join_chatroom (chatroom, gtk_get_current_event_time ());
1252 }
1253
1254 static void
1255 main_window_favorite_chatroom_menu_activate_cb (GtkMenuItem     *menu_item,
1256                                                 EmpathyChatroom *chatroom)
1257 {
1258         main_window_favorite_chatroom_join (chatroom);
1259 }
1260
1261 static void
1262 main_window_favorite_chatroom_menu_add (EmpathyMainWindow *window,
1263                                         EmpathyChatroom   *chatroom)
1264 {
1265         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1266         GtkWidget   *menu_item;
1267         const gchar *name;
1268
1269         if (g_object_get_data (G_OBJECT (chatroom), "menu_item")) {
1270                 return;
1271         }
1272
1273         name = empathy_chatroom_get_name (chatroom);
1274         menu_item = gtk_menu_item_new_with_label (name);
1275         g_object_set_data (G_OBJECT (menu_item), "is_favorite",
1276                         GUINT_TO_POINTER (TRUE));
1277
1278         g_object_set_data (G_OBJECT (chatroom), "menu_item", menu_item);
1279         g_signal_connect (menu_item, "activate",
1280                           G_CALLBACK (main_window_favorite_chatroom_menu_activate_cb),
1281                           chatroom);
1282
1283         gtk_menu_shell_insert (GTK_MENU_SHELL (priv->room_menu),
1284                                menu_item, 4);
1285
1286         gtk_widget_show (menu_item);
1287 }
1288
1289 static void
1290 main_window_favorite_chatroom_menu_added_cb (EmpathyChatroomManager *manager,
1291                                              EmpathyChatroom        *chatroom,
1292                                              EmpathyMainWindow      *window)
1293 {
1294         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1295
1296         main_window_favorite_chatroom_menu_add (window, chatroom);
1297         gtk_widget_show (priv->room_separator);
1298         gtk_action_set_sensitive (priv->room_join_favorites, TRUE);
1299 }
1300
1301 static void
1302 main_window_favorite_chatroom_menu_removed_cb (EmpathyChatroomManager *manager,
1303                                                EmpathyChatroom        *chatroom,
1304                                                EmpathyMainWindow      *window)
1305 {
1306         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1307         GtkWidget *menu_item;
1308         GList *chatrooms;
1309
1310         menu_item = g_object_get_data (G_OBJECT (chatroom), "menu_item");
1311         g_object_set_data (G_OBJECT (chatroom), "menu_item", NULL);
1312         gtk_widget_destroy (menu_item);
1313
1314         chatrooms = empathy_chatroom_manager_get_chatrooms (priv->chatroom_manager, NULL);
1315         if (chatrooms) {
1316                 gtk_widget_show (priv->room_separator);
1317         } else {
1318                 gtk_widget_hide (priv->room_separator);
1319         }
1320
1321         gtk_action_set_sensitive (priv->room_join_favorites, chatrooms != NULL);
1322         g_list_free (chatrooms);
1323 }
1324
1325 static void
1326 main_window_favorite_chatroom_menu_setup (EmpathyMainWindow *window)
1327 {
1328         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1329         GList *chatrooms, *l;
1330         GtkWidget *room;
1331
1332         priv->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
1333         chatrooms = empathy_chatroom_manager_get_chatrooms (
1334                 priv->chatroom_manager, NULL);
1335         room = gtk_ui_manager_get_widget (priv->ui_manager,
1336                 "/menubar/room");
1337         priv->room_menu = gtk_menu_item_get_submenu (GTK_MENU_ITEM (room));
1338         priv->room_separator = gtk_ui_manager_get_widget (priv->ui_manager,
1339                 "/menubar/room/room_separator");
1340
1341         for (l = chatrooms; l; l = l->next) {
1342                 main_window_favorite_chatroom_menu_add (window, l->data);
1343         }
1344
1345         if (!chatrooms) {
1346                 gtk_widget_hide (priv->room_separator);
1347         }
1348
1349         gtk_action_set_sensitive (priv->room_join_favorites, chatrooms != NULL);
1350
1351         g_signal_connect (priv->chatroom_manager, "chatroom-added",
1352                           G_CALLBACK (main_window_favorite_chatroom_menu_added_cb),
1353                           window);
1354         g_signal_connect (priv->chatroom_manager, "chatroom-removed",
1355                           G_CALLBACK (main_window_favorite_chatroom_menu_removed_cb),
1356                           window);
1357
1358         g_list_free (chatrooms);
1359 }
1360
1361 static void
1362 main_window_room_join_new_cb (GtkAction         *action,
1363                               EmpathyMainWindow *window)
1364 {
1365         empathy_new_chatroom_dialog_show (GTK_WINDOW (window));
1366 }
1367
1368 static void
1369 main_window_room_join_favorites_cb (GtkAction         *action,
1370                                     EmpathyMainWindow *window)
1371 {
1372         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1373         GList *chatrooms, *l;
1374
1375         chatrooms = empathy_chatroom_manager_get_chatrooms (priv->chatroom_manager, NULL);
1376         for (l = chatrooms; l; l = l->next) {
1377                 main_window_favorite_chatroom_join (l->data);
1378         }
1379         g_list_free (chatrooms);
1380 }
1381
1382 static void
1383 main_window_room_manage_favorites_cb (GtkAction         *action,
1384                                       EmpathyMainWindow *window)
1385 {
1386         empathy_chatrooms_window_show (GTK_WINDOW (window));
1387 }
1388
1389 static void
1390 main_window_edit_cb (GtkAction         *action,
1391                      EmpathyMainWindow *window)
1392 {
1393         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1394         GtkWidget *submenu;
1395
1396         /* FIXME: It should use the UIManager to merge the contact/group submenu */
1397         submenu = empathy_individual_view_get_individual_menu (
1398                         priv->individual_view);
1399         if (submenu) {
1400                 GtkMenuItem *item;
1401                 GtkWidget   *label;
1402
1403                 item = GTK_MENU_ITEM (priv->edit_context);
1404                 label = gtk_bin_get_child (GTK_BIN (item));
1405                 gtk_label_set_text (GTK_LABEL (label), _("Contact"));
1406
1407                 gtk_widget_show (priv->edit_context);
1408                 gtk_widget_show (priv->edit_context_separator);
1409
1410                 gtk_menu_item_set_submenu (item, submenu);
1411
1412                 return;
1413         }
1414
1415         submenu = empathy_individual_view_get_group_menu (
1416                         priv->individual_view);
1417         if (submenu) {
1418                 GtkMenuItem *item;
1419                 GtkWidget   *label;
1420
1421                 item = GTK_MENU_ITEM (priv->edit_context);
1422                 label = gtk_bin_get_child (GTK_BIN (item));
1423                 gtk_label_set_text (GTK_LABEL (label), _("Group"));
1424
1425                 gtk_widget_show (priv->edit_context);
1426                 gtk_widget_show (priv->edit_context_separator);
1427
1428                 gtk_menu_item_set_submenu (item, submenu);
1429
1430                 return;
1431         }
1432
1433         gtk_widget_hide (priv->edit_context);
1434         gtk_widget_hide (priv->edit_context_separator);
1435
1436         return;
1437 }
1438
1439 static void
1440 main_window_edit_accounts_cb (GtkAction         *action,
1441                               EmpathyMainWindow *window)
1442 {
1443         empathy_accounts_dialog_show_application (gdk_screen_get_default (),
1444                         NULL, FALSE, FALSE);
1445 }
1446
1447 static void
1448 main_window_edit_personal_information_cb (GtkAction         *action,
1449                                           EmpathyMainWindow *window)
1450 {
1451         empathy_contact_personal_dialog_show (GTK_WINDOW (window));
1452 }
1453
1454 static void
1455 main_window_edit_preferences_cb (GtkAction         *action,
1456                                  EmpathyMainWindow *window)
1457 {
1458         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1459
1460         if (priv->preferences == NULL) {
1461                 priv->preferences = empathy_preferences_new (GTK_WINDOW (window));
1462                 g_object_add_weak_pointer (G_OBJECT (priv->preferences),
1463                                            (gpointer) &priv->preferences);
1464
1465                 gtk_widget_show (priv->preferences);
1466         } else {
1467                 gtk_window_present (GTK_WINDOW (priv->preferences));
1468         }
1469 }
1470
1471 static void
1472 main_window_help_about_cb (GtkAction         *action,
1473                            EmpathyMainWindow *window)
1474 {
1475         empathy_about_dialog_new (GTK_WINDOW (window));
1476 }
1477
1478 static void
1479 main_window_help_debug_cb (GtkAction         *action,
1480                            EmpathyMainWindow *window)
1481 {
1482         GdkScreen *screen = gdk_screen_get_default ();
1483         GError *error = NULL;
1484         gchar *path;
1485         GAppInfo *app_info;
1486         GdkAppLaunchContext *context;
1487
1488         g_return_if_fail (GDK_IS_SCREEN (screen));
1489
1490         /* Try to run from source directory if possible */
1491         path = g_build_filename (g_getenv ("EMPATHY_SRCDIR"), "src",
1492                         "empathy-debugger", NULL);
1493
1494         if (!g_file_test (path, G_FILE_TEST_EXISTS)) {
1495                 g_free (path);
1496                 path = g_build_filename (BIN_DIR, "empathy-debugger", NULL);
1497         }
1498
1499         app_info = g_app_info_create_from_commandline (path, NULL, 0, &error);
1500         if (app_info == NULL) {
1501                 DEBUG ("Failed to create app info: %s", error->message);
1502                 g_error_free (error);
1503                 goto out;
1504         }
1505
1506         context = gdk_app_launch_context_new ();
1507         gdk_app_launch_context_set_display (context, gdk_screen_get_display (screen));
1508
1509         if (!g_app_info_launch (app_info, NULL, (GAppLaunchContext *) context,
1510                 &error)) {
1511                 g_warning ("Failed to open debug window: %s", error->message);
1512                 g_error_free (error);
1513                 goto out;
1514         }
1515
1516 out:
1517         tp_clear_object (&app_info);
1518         tp_clear_object (&context);
1519         g_free (path);
1520 }
1521
1522 static void
1523 main_window_help_contents_cb (GtkAction         *action,
1524                               EmpathyMainWindow *window)
1525 {
1526         empathy_url_show (GTK_WIDGET (window), "ghelp:empathy");
1527 }
1528
1529 static gboolean
1530 main_window_throbber_button_press_event_cb (GtkWidget         *throbber,
1531                                             GdkEventButton    *event,
1532                                             EmpathyMainWindow *window)
1533 {
1534         if (event->type != GDK_BUTTON_PRESS ||
1535             event->button != 1) {
1536                 return FALSE;
1537         }
1538
1539         empathy_accounts_dialog_show_application (
1540                         gtk_widget_get_screen (GTK_WIDGET (throbber)),
1541                         NULL, FALSE, FALSE);
1542
1543         return FALSE;
1544 }
1545
1546 static void
1547 main_window_account_removed_cb (TpAccountManager  *manager,
1548                                 TpAccount         *account,
1549                                 EmpathyMainWindow *window)
1550 {
1551         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1552         GList *a;
1553
1554         a = tp_account_manager_get_valid_accounts (manager);
1555
1556         gtk_action_set_sensitive (priv->view_history,
1557                 g_list_length (a) > 0);
1558
1559         g_list_free (a);
1560
1561         /* remove errors if any */
1562         main_window_remove_error (window, account);
1563 }
1564
1565 static void
1566 main_window_account_validity_changed_cb (TpAccountManager  *manager,
1567                                          TpAccount         *account,
1568                                          gboolean           valid,
1569                                          EmpathyMainWindow *window)
1570 {
1571         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1572
1573         if (valid) {
1574                 gulong handler_id;
1575                 handler_id = GPOINTER_TO_UINT (g_hash_table_lookup (
1576                         priv->status_changed_handlers, account));
1577
1578                 /* connect signal only if it was not connected yet */
1579                 if (handler_id == 0) {
1580                         handler_id = g_signal_connect (account,
1581                                 "status-changed",
1582                                 G_CALLBACK (main_window_connection_changed_cb),
1583                                 window);
1584                         g_hash_table_insert (priv->status_changed_handlers,
1585                                 account, GUINT_TO_POINTER (handler_id));
1586                 }
1587         }
1588
1589         main_window_account_removed_cb (manager, account, window);
1590 }
1591
1592 static void
1593 main_window_notify_show_offline_cb (GSettings   *gsettings,
1594                                     const gchar *key,
1595                                     gpointer     toggle_action)
1596 {
1597         gtk_toggle_action_set_active (toggle_action,
1598                         g_settings_get_boolean (gsettings, key));
1599 }
1600
1601 static void
1602 main_window_connection_items_setup (EmpathyMainWindow *window,
1603                                     GtkBuilder        *gui)
1604 {
1605         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1606         GList         *list;
1607         GObject       *action;
1608         guint          i;
1609         const gchar *actions_connected[] = {
1610                 "room_join_new",
1611                 "room_join_favorites",
1612                 "chat_new_message",
1613                 "chat_new_call",
1614                 "chat_add_contact",
1615                 "edit_personal_information"
1616         };
1617
1618         for (i = 0, list = NULL; i < G_N_ELEMENTS (actions_connected); i++) {
1619                 action = gtk_builder_get_object (gui, actions_connected[i]);
1620                 list = g_list_prepend (list, action);
1621         }
1622
1623         priv->actions_connected = list;
1624 }
1625
1626 static void
1627 account_manager_prepared_cb (GObject      *source_object,
1628                              GAsyncResult *result,
1629                              gpointer      user_data)
1630 {
1631         GList *accounts, *j;
1632         TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
1633         EmpathyMainWindow *window = user_data;
1634         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1635         GError *error = NULL;
1636
1637         if (!tp_account_manager_prepare_finish (manager, result, &error)) {
1638                 DEBUG ("Failed to prepare account manager: %s", error->message);
1639                 g_error_free (error);
1640                 return;
1641         }
1642
1643         accounts = tp_account_manager_get_valid_accounts (priv->account_manager);
1644         for (j = accounts; j != NULL; j = j->next) {
1645                 TpAccount *account = TP_ACCOUNT (j->data);
1646                 gulong handler_id;
1647
1648                 handler_id = g_signal_connect (account, "status-changed",
1649                                   G_CALLBACK (main_window_connection_changed_cb),
1650                                   window);
1651                 g_hash_table_insert (priv->status_changed_handlers,
1652                                      account, GUINT_TO_POINTER (handler_id));
1653         }
1654
1655         g_signal_connect (manager, "account-validity-changed",
1656                           G_CALLBACK (main_window_account_validity_changed_cb),
1657                           window);
1658
1659         main_window_update_status (window);
1660
1661         /* Disable the "Previous Conversations" menu entry if there is no account */
1662         gtk_action_set_sensitive (priv->view_history,
1663                 g_list_length (accounts) > 0);
1664
1665         g_list_free (accounts);
1666 }
1667
1668 static void
1669 main_window_members_changed_cb (EmpathyContactList *list,
1670                                 EmpathyContact     *contact,
1671                                 EmpathyContact     *actor,
1672                                 guint               reason,
1673                                 gchar              *message,
1674                                 gboolean            is_member,
1675                                 EmpathyMainWindow  *window)
1676 {
1677         EmpathyMainWindowPriv *priv = GET_PRIV (window);
1678
1679         if (!is_member)
1680                 return;
1681
1682         if (!empathy_migrate_butterfly_logs (contact)) {
1683                 g_signal_handler_disconnect (list,
1684                         priv->butterfly_log_migration_members_changed_id);
1685                 priv->butterfly_log_migration_members_changed_id = 0;
1686         }
1687 }
1688
1689 static GObject *
1690 empathy_main_window_constructor (GType type,
1691                                  guint n_construct_params,
1692                                  GObjectConstructParam *construct_params)
1693 {
1694         static GObject *window = NULL;
1695
1696         if (window != NULL)
1697                 return g_object_ref (window);
1698
1699         window = G_OBJECT_CLASS (empathy_main_window_parent_class)->constructor (
1700                 type, n_construct_params, construct_params);
1701
1702         g_object_add_weak_pointer (window, (gpointer) &window);
1703
1704         return window;
1705 }
1706
1707 static void
1708 empathy_main_window_class_init (EmpathyMainWindowClass *klass)
1709 {
1710         GObjectClass *object_class = G_OBJECT_CLASS (klass);
1711
1712         object_class->finalize = empathy_main_window_finalize;
1713         object_class->constructor = empathy_main_window_constructor;
1714
1715         g_type_class_add_private (object_class, sizeof (EmpathyMainWindowPriv));
1716 }
1717
1718 static void
1719 empathy_main_window_init (EmpathyMainWindow *window)
1720 {
1721         EmpathyMainWindowPriv    *priv;
1722         EmpathyIndividualManager *individual_manager;
1723         GtkBuilder               *gui;
1724         GtkWidget                *sw;
1725         GtkToggleAction          *show_offline_widget;
1726         GtkAction                *show_map_widget;
1727         GtkToolItem              *item;
1728         gboolean                  show_offline;
1729         gchar                    *filename;
1730         GSList                   *l;
1731         GtkTreeModel             *model;
1732
1733         priv = window->priv = G_TYPE_INSTANCE_GET_PRIVATE (window,
1734                         EMPATHY_TYPE_MAIN_WINDOW, EmpathyMainWindowPriv);
1735
1736         priv->gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA);
1737         priv->gsettings_contacts = g_settings_new (EMPATHY_PREFS_CONTACTS_SCHEMA);
1738
1739         priv->sound_mgr = empathy_sound_manager_dup_singleton ();
1740
1741         gtk_window_set_title (GTK_WINDOW (window), _("Contact List"));
1742         gtk_window_set_role (GTK_WINDOW (window), "contact_list");
1743         gtk_window_set_default_size (GTK_WINDOW (window), 225, 325);
1744
1745         /* Set up interface */
1746         filename = empathy_file_lookup ("empathy-main-window.ui", "src");
1747         gui = empathy_builder_get_file (filename,
1748                                        "main_vbox", &priv->main_vbox,
1749                                        "errors_vbox", &priv->errors_vbox,
1750                                        "auth_vbox", &priv->auth_vbox,
1751                                        "ui_manager", &priv->ui_manager,
1752                                        "view_show_offline", &show_offline_widget,
1753                                        "view_show_protocols", &priv->show_protocols,
1754                                        "view_sort_by_name", &priv->sort_by_name,
1755                                        "view_sort_by_status", &priv->sort_by_status,
1756                                        "view_normal_size_with_avatars", &priv->normal_with_avatars,
1757                                        "view_normal_size", &priv->normal_size,
1758                                        "view_compact_size", &priv->compact_size,
1759                                        "view_history", &priv->view_history,
1760                                        "view_show_map", &show_map_widget,
1761                                        "room_join_favorites", &priv->room_join_favorites,
1762                                        "presence_toolbar", &priv->presence_toolbar,
1763                                        "notebook", &priv->notebook,
1764                                        "no_entry_label", &priv->no_entry_label,
1765                                        "roster_scrolledwindow", &sw,
1766                                        NULL);
1767         g_free (filename);
1768
1769         gtk_container_add (GTK_CONTAINER (window), priv->main_vbox);
1770         gtk_widget_show (priv->main_vbox);
1771
1772         g_signal_connect (window, "key-press-event",
1773                           G_CALLBACK (main_window_key_press_event_cb), NULL);
1774
1775         empathy_builder_connect (gui, window,
1776                               "chat_quit", "activate", main_window_chat_quit_cb,
1777                               "chat_new_message", "activate", main_window_chat_new_message_cb,
1778                               "chat_new_call", "activate", main_window_chat_new_call_cb,
1779                               "view_history", "activate", main_window_view_history_cb,
1780                               "room_join_new", "activate", main_window_room_join_new_cb,
1781                               "room_join_favorites", "activate", main_window_room_join_favorites_cb,
1782                               "room_manage_favorites", "activate", main_window_room_manage_favorites_cb,
1783                               "chat_add_contact", "activate", main_window_chat_add_contact_cb,
1784                               "view_show_ft_manager", "activate", main_window_view_show_ft_manager,
1785                               "view_show_offline", "toggled", main_window_view_show_offline_cb,
1786                               "view_show_protocols", "toggled", main_window_view_show_protocols_cb,
1787                               "view_sort_by_name", "changed", main_window_view_sort_contacts_cb,
1788                               "view_normal_size_with_avatars", "changed", main_window_view_contacts_list_size_cb,
1789                               "view_show_map", "activate", main_window_view_show_map_cb,
1790                               "edit", "activate", main_window_edit_cb,
1791                               "edit_accounts", "activate", main_window_edit_accounts_cb,
1792                               "edit_personal_information", "activate", main_window_edit_personal_information_cb,
1793                               "edit_preferences", "activate", main_window_edit_preferences_cb,
1794                               "edit_search_contacts", "activate", main_window_edit_search_contacts_cb,
1795                               "help_about", "activate", main_window_help_about_cb,
1796                               "help_debug", "activate", main_window_help_debug_cb,
1797                               "help_contents", "activate", main_window_help_contents_cb,
1798                               NULL);
1799
1800         /* Set up connection related widgets. */
1801         main_window_connection_items_setup (window, gui);
1802
1803         g_object_ref (priv->ui_manager);
1804         g_object_unref (gui);
1805
1806 #ifndef HAVE_LIBCHAMPLAIN
1807         gtk_action_set_visible (show_map_widget, FALSE);
1808 #endif
1809
1810         priv->account_manager = tp_account_manager_dup ();
1811
1812         tp_account_manager_prepare_async (priv->account_manager, NULL,
1813                                           account_manager_prepared_cb, window);
1814
1815         priv->errors = g_hash_table_new_full (g_direct_hash,
1816                                               g_direct_equal,
1817                                               g_object_unref,
1818                                               NULL);
1819
1820         priv->auths = g_hash_table_new (NULL, NULL);
1821
1822         priv->status_changed_handlers = g_hash_table_new_full (g_direct_hash,
1823                                                                g_direct_equal,
1824                                                                NULL,
1825                                                                NULL);
1826
1827         /* Set up menu */
1828         main_window_favorite_chatroom_menu_setup (window);
1829
1830         priv->edit_context = gtk_ui_manager_get_widget (priv->ui_manager,
1831                 "/menubar/edit/edit_context");
1832         priv->edit_context_separator = gtk_ui_manager_get_widget (
1833                 priv->ui_manager,
1834                 "/menubar/edit/edit_context_separator");
1835         gtk_widget_hide (priv->edit_context);
1836         gtk_widget_hide (priv->edit_context_separator);
1837
1838         /* Set up contact list. */
1839         empathy_status_presets_get_all ();
1840
1841         /* Set up presence chooser */
1842         priv->presence_chooser = empathy_presence_chooser_new ();
1843         gtk_widget_show (priv->presence_chooser);
1844         item = gtk_tool_item_new ();
1845         gtk_widget_show (GTK_WIDGET (item));
1846         gtk_container_add (GTK_CONTAINER (item), priv->presence_chooser);
1847         gtk_tool_item_set_is_important (item, TRUE);
1848         gtk_tool_item_set_expand (item, TRUE);
1849         gtk_toolbar_insert (GTK_TOOLBAR (priv->presence_toolbar), item, -1);
1850
1851         /* Set up the throbber */
1852         priv->throbber = gtk_spinner_new ();
1853         gtk_widget_set_size_request (priv->throbber, 16, -1);
1854         gtk_widget_set_tooltip_text (priv->throbber, _("Show and edit accounts"));
1855         gtk_widget_set_events (priv->throbber, GDK_BUTTON_PRESS_MASK);
1856         g_signal_connect (priv->throbber, "button-press-event",
1857                 G_CALLBACK (main_window_throbber_button_press_event_cb),
1858                 window);
1859         gtk_widget_show (priv->throbber);
1860
1861         item = gtk_tool_item_new ();
1862         gtk_container_set_border_width (GTK_CONTAINER (item), 6);
1863         gtk_toolbar_insert (GTK_TOOLBAR (priv->presence_toolbar), item, -1);
1864         gtk_container_add (GTK_CONTAINER (item), priv->throbber);
1865         priv->throbber_tool_item = GTK_WIDGET (item);
1866
1867         /* XXX: this class is designed to live for the duration of the program,
1868          * so it's got a race condition between its signal handlers and its
1869          * finalization. The class is planned to be removed, so we won't fix
1870          * this before then. */
1871         priv->contact_manager = EMPATHY_CONTACT_LIST (
1872                         empathy_contact_manager_dup_singleton ());
1873         individual_manager = empathy_individual_manager_dup_singleton ();
1874         priv->individual_store = empathy_individual_store_new (
1875                         individual_manager);
1876         g_object_unref (individual_manager);
1877
1878         /* For the moment, we disallow Persona drops onto the main contact list (e.g. from things such as
1879          * the EmpathyPersonaView in the linking dialogue). No code is hooked up to do anything on a Persona
1880          * drop, so allowing them would achieve nothing except confusion. */
1881         priv->individual_view = empathy_individual_view_new (
1882                         priv->individual_store,
1883                         EMPATHY_INDIVIDUAL_VIEW_FEATURE_ALL ^ EMPATHY_INDIVIDUAL_VIEW_FEATURE_PERSONA_DROP,
1884                         EMPATHY_INDIVIDUAL_FEATURE_ALL);
1885
1886         priv->butterfly_log_migration_members_changed_id = g_signal_connect (
1887                         priv->contact_manager, "members-changed",
1888                         G_CALLBACK (main_window_members_changed_cb), window);
1889
1890         gtk_widget_show (GTK_WIDGET (priv->individual_view));
1891         gtk_container_add (GTK_CONTAINER (sw),
1892                            GTK_WIDGET (priv->individual_view));
1893         g_signal_connect (priv->individual_view, "row-activated",
1894                           G_CALLBACK (main_window_row_activated_cb),
1895                           window);
1896
1897         /* Set up search bar */
1898         priv->search_bar = empathy_live_search_new (
1899                 GTK_WIDGET (priv->individual_view));
1900         empathy_individual_view_set_live_search (priv->individual_view,
1901                 EMPATHY_LIVE_SEARCH (priv->search_bar));
1902         gtk_box_pack_start (GTK_BOX (priv->main_vbox), priv->search_bar,
1903                 FALSE, TRUE, 0);
1904         g_signal_connect_swapped (window, "map",
1905                 G_CALLBACK (gtk_widget_grab_focus), priv->individual_view);
1906
1907         /* Connect to proper signals to check if contact list is empty or not */
1908         model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->individual_view));
1909         priv->empty = TRUE;
1910         g_signal_connect (model, "row-inserted",
1911                           G_CALLBACK (main_window_row_inserted_cb),
1912                           window);
1913         g_signal_connect (model, "row-deleted",
1914                           G_CALLBACK (main_window_row_deleted_cb),
1915                           window);
1916
1917         /* Load user-defined accelerators. */
1918         main_window_accels_load ();
1919
1920         /* Set window size. */
1921         empathy_geometry_bind (GTK_WINDOW (window), GEOMETRY_NAME);
1922
1923         /* Enable event handling */
1924         priv->event_manager = empathy_event_manager_dup_singleton ();
1925
1926         g_signal_connect (priv->event_manager, "event-added",
1927                           G_CALLBACK (main_window_event_added_cb), window);
1928         g_signal_connect (priv->event_manager, "event-removed",
1929                           G_CALLBACK (main_window_event_removed_cb), window);
1930         g_signal_connect (priv->account_manager, "account-validity-changed",
1931                           G_CALLBACK (main_window_account_validity_changed_cb),
1932                           window);
1933         g_signal_connect (priv->account_manager, "account-removed",
1934                           G_CALLBACK (main_window_account_removed_cb),
1935                           window);
1936         g_signal_connect (priv->account_manager, "account-disabled",
1937                           G_CALLBACK (main_window_account_disabled_cb),
1938                           window);
1939
1940         l = empathy_event_manager_get_events (priv->event_manager);
1941         while (l) {
1942                 main_window_event_added_cb (priv->event_manager, l->data,
1943                                 window);
1944                 l = l->next;
1945         }
1946
1947         /* Show offline ? */
1948         show_offline = g_settings_get_boolean (priv->gsettings_ui,
1949                                                EMPATHY_PREFS_UI_SHOW_OFFLINE);
1950         g_signal_connect (priv->gsettings_ui,
1951                           "changed::" EMPATHY_PREFS_UI_SHOW_OFFLINE,
1952                           G_CALLBACK (main_window_notify_show_offline_cb),
1953                           show_offline_widget);
1954
1955         gtk_toggle_action_set_active (show_offline_widget, show_offline);
1956
1957         /* Show protocol ? */
1958         g_signal_connect (priv->gsettings_ui,
1959                           "changed::" EMPATHY_PREFS_UI_SHOW_PROTOCOLS,
1960                           G_CALLBACK (main_window_notify_show_protocols_cb),
1961                           window);
1962
1963         main_window_notify_show_protocols_cb (priv->gsettings_ui,
1964                                               EMPATHY_PREFS_UI_SHOW_PROTOCOLS,
1965                                               window);
1966
1967         /* Sort by name / by status ? */
1968         g_signal_connect (priv->gsettings_contacts,
1969                           "changed::" EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
1970                           G_CALLBACK (main_window_notify_sort_contact_cb),
1971                           window);
1972
1973         main_window_notify_sort_contact_cb (priv->gsettings_contacts,
1974                                             EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
1975                                             window);
1976
1977         /* Contacts list size */
1978         g_signal_connect (priv->gsettings_ui,
1979                           "changed::" EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
1980                           G_CALLBACK (main_window_notify_contact_list_size_cb),
1981                           window);
1982         g_signal_connect (priv->gsettings_ui,
1983                           "changed::" EMPATHY_PREFS_UI_SHOW_AVATARS,
1984                           G_CALLBACK (main_window_notify_contact_list_size_cb),
1985                           window);
1986
1987         main_window_notify_contact_list_size_cb (priv->gsettings_ui,
1988                                                  EMPATHY_PREFS_UI_SHOW_AVATARS,
1989                                                  window);
1990 }
1991
1992 GtkWidget *
1993 empathy_main_window_dup (void)
1994 {
1995         return g_object_new (EMPATHY_TYPE_MAIN_WINDOW, NULL);
1996 }