]> git.0d.be Git - empathy.git/blob - src/empathy-main-window.c
44eeff3ac78487244909b72a335224fdec84ec6c
[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-2008 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  */
23
24 #include <config.h>
25
26 #include <sys/stat.h>
27 #include <gtk/gtk.h>
28 #include <glib/gi18n.h>
29
30 #include <telepathy-glib/account-manager.h>
31
32 #include <libempathy/empathy-contact.h>
33 #include <libempathy/empathy-idle.h>
34 #include <libempathy/empathy-utils.h>
35 #include <libempathy/empathy-dispatcher.h>
36 #include <libempathy/empathy-chatroom-manager.h>
37 #include <libempathy/empathy-chatroom.h>
38 #include <libempathy/empathy-contact-list.h>
39 #include <libempathy/empathy-contact-manager.h>
40 #include <libempathy/empathy-status-presets.h>
41
42 #include <libempathy-gtk/empathy-conf.h>
43 #include <libempathy-gtk/empathy-contact-dialogs.h>
44 #include <libempathy-gtk/empathy-contact-list-store.h>
45 #include <libempathy-gtk/empathy-contact-list-view.h>
46 #include <libempathy-gtk/empathy-geometry.h>
47 #include <libempathy-gtk/empathy-gtk-enum-types.h>
48 #include <libempathy-gtk/empathy-new-message-dialog.h>
49 #include <libempathy-gtk/empathy-log-window.h>
50 #include <libempathy-gtk/empathy-presence-chooser.h>
51 #include <libempathy-gtk/empathy-sound.h>
52 #include <libempathy-gtk/empathy-ui-utils.h>
53
54 #include "empathy-accounts-dialog.h"
55 #include "empathy-main-window.h"
56 #include "ephy-spinner.h"
57 #include "empathy-preferences.h"
58 #include "empathy-about-dialog.h"
59 #include "empathy-debug-window.h"
60 #include "empathy-new-chatroom-dialog.h"
61 #include "empathy-map-view.h"
62 #include "empathy-chatrooms-window.h"
63 #include "empathy-event-manager.h"
64 #include "empathy-ft-manager.h"
65
66 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
67 #include <libempathy/empathy-debug.h>
68
69 /* Flashing delay for icons (milliseconds). */
70 #define FLASH_TIMEOUT 500
71
72 /* Minimum width of roster window if something goes wrong. */
73 #define MIN_WIDTH 50
74
75 /* Accels (menu shortcuts) can be configured and saved */
76 #define ACCELS_FILENAME "accels.txt"
77
78 /* Name in the geometry file */
79 #define GEOMETRY_NAME "main-window"
80
81 typedef struct {
82         EmpathyContactListView  *list_view;
83         EmpathyContactListStore *list_store;
84         TpAccountManager        *account_manager;
85         EmpathyChatroomManager  *chatroom_manager;
86         EmpathyEventManager     *event_manager;
87         guint                    flash_timeout_id;
88         gboolean                 flash_on;
89
90         GtkWidget              *window;
91         GtkWidget              *main_vbox;
92         GtkWidget              *throbber;
93         GtkWidget              *presence_toolbar;
94         GtkWidget              *presence_chooser;
95         GtkWidget              *errors_vbox;
96
97         GtkRadioAction         *sort_by_name;
98         GtkRadioAction         *sort_by_status;
99         GtkRadioAction         *normal_with_avatars;
100         GtkRadioAction         *normal_size;
101         GtkRadioAction         *compact_size;
102
103         GtkUIManager           *ui_manager;
104         GtkAction              *view_history;
105         GtkAction              *room_join_favorites;
106         GtkWidget              *room_menu;
107         GtkWidget              *room_separator;
108         GtkWidget              *edit_context;
109         GtkWidget              *edit_context_separator;
110
111         guint                   size_timeout_id;
112         GHashTable             *errors;
113
114         /* Actions that are enabled when there are connected accounts */
115         GList                  *actions_connected;
116 } EmpathyMainWindow;
117
118 static EmpathyMainWindow *main_window = NULL;
119
120 static void
121 main_window_flash_stop (EmpathyMainWindow *window)
122 {
123         if (window->flash_timeout_id == 0) {
124                 return;
125         }
126
127         DEBUG ("Stop flashing");
128         g_source_remove (window->flash_timeout_id);
129         window->flash_timeout_id = 0;
130         window->flash_on = FALSE;
131 }
132
133 typedef struct {
134         EmpathyEvent *event;
135         gboolean      on;
136 } FlashForeachData;
137
138 static gboolean
139 main_window_flash_foreach (GtkTreeModel *model,
140                            GtkTreePath  *path,
141                            GtkTreeIter  *iter,
142                            gpointer      user_data)
143 {
144         FlashForeachData *data = (FlashForeachData *) user_data;
145         EmpathyContact   *contact;
146         const gchar      *icon_name;
147         GtkTreePath      *parent_path = NULL;
148         GtkTreeIter       parent_iter;
149
150         /* To be used with gtk_tree_model_foreach, update the status icon
151          * of the contact to show the event icon (on=TRUE) or the presence
152          * (on=FALSE) */
153         gtk_tree_model_get (model, iter,
154                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
155                             -1);
156
157         if (contact != data->event->contact) {
158                 if (contact) {
159                         g_object_unref (contact);
160                 }
161                 return FALSE;
162         }
163
164         if (data->on) {
165                 icon_name = data->event->icon_name;
166         } else {
167                 icon_name = empathy_icon_name_for_contact (contact);
168         }
169
170         gtk_tree_store_set (GTK_TREE_STORE (model), iter,
171                             EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS, icon_name,
172                             -1);
173
174         /* To make sure the parent is shown correctly, we emit
175          * the row-changed signal on the parent so it prompts
176          * it to be refreshed by the filter func.
177          */
178         if (gtk_tree_model_iter_parent (model, &parent_iter, iter)) {
179                 parent_path = gtk_tree_model_get_path (model, &parent_iter);
180         }
181         if (parent_path) {
182                 gtk_tree_model_row_changed (model, parent_path, &parent_iter);
183                 gtk_tree_path_free (parent_path);
184         }
185
186         g_object_unref (contact);
187
188         return FALSE;
189 }
190
191 static gboolean
192 main_window_flash_cb (EmpathyMainWindow *window)
193 {
194         GtkTreeModel     *model;
195         GSList           *events, *l;
196         gboolean          found_event = FALSE;
197         FlashForeachData  data;
198
199         window->flash_on = !window->flash_on;
200         data.on = window->flash_on;
201         model = GTK_TREE_MODEL (window->list_store);
202
203         events = empathy_event_manager_get_events (window->event_manager);
204         for (l = events; l; l = l->next) {
205                 data.event = l->data;
206                 if (!data.event->contact || !data.event->must_ack) {
207                         continue;
208                 }
209
210                 found_event = TRUE;
211                 gtk_tree_model_foreach (model,
212                                         main_window_flash_foreach,
213                                         &data);
214         }
215
216         if (!found_event) {
217                 main_window_flash_stop (window);
218         }
219
220         return TRUE;
221 }
222
223 static void
224 main_window_flash_start (EmpathyMainWindow *window)
225 {
226         if (window->flash_timeout_id != 0) {
227                 return;
228         }
229
230         DEBUG ("Start flashing");
231         window->flash_timeout_id = g_timeout_add (FLASH_TIMEOUT,
232                                                   (GSourceFunc) main_window_flash_cb,
233                                                   window);
234         main_window_flash_cb (window);
235 }
236
237 static void
238 main_window_event_added_cb (EmpathyEventManager *manager,
239                             EmpathyEvent        *event,
240                             EmpathyMainWindow   *window)
241 {
242         if (event->contact) {
243                 main_window_flash_start (window);
244         }
245 }
246
247 static void
248 main_window_event_removed_cb (EmpathyEventManager *manager,
249                               EmpathyEvent        *event,
250                               EmpathyMainWindow   *window)
251 {
252         FlashForeachData data;
253
254         if (!event->contact) {
255                 return;
256         }
257
258         data.on = FALSE;
259         data.event = event;
260         gtk_tree_model_foreach (GTK_TREE_MODEL (window->list_store),
261                                 main_window_flash_foreach,
262                                 &data);
263 }
264
265 static void
266 main_window_row_activated_cb (EmpathyContactListView *view,
267                               GtkTreePath            *path,
268                               GtkTreeViewColumn      *col,
269                               EmpathyMainWindow      *window)
270 {
271         EmpathyContact *contact;
272         GtkTreeModel   *model;
273         GtkTreeIter     iter;
274         GSList         *events, *l;
275
276         model = GTK_TREE_MODEL (window->list_store);
277         gtk_tree_model_get_iter (model, &iter, path);
278         gtk_tree_model_get (model, &iter,
279                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
280                             -1);
281
282         if (!contact) {
283                 return;
284         }
285
286         /* If the contact has an event activate it, otherwise the
287          * default handler of row-activated will be called. */
288         events = empathy_event_manager_get_events (window->event_manager);
289         for (l = events; l; l = l->next) {
290                 EmpathyEvent *event = l->data;
291
292                 if (event->contact == contact) {
293                         DEBUG ("Activate event");
294                         empathy_event_activate (event);
295
296                         /* We don't want the default handler of this signal
297                          * (e.g. open a chat) */
298                         g_signal_stop_emission_by_name (view, "row-activated");
299                         break;
300                 }
301         }
302
303         g_object_unref (contact);
304 }
305
306 static void
307 main_window_remove_error (EmpathyMainWindow *window,
308                           TpAccount *account)
309 {
310         GtkWidget *error_widget;
311
312         error_widget = g_hash_table_lookup (window->errors, account);
313         if (error_widget != NULL) {
314                 gtk_widget_destroy (error_widget);
315                 g_hash_table_remove (window->errors, account);
316         }
317 }
318
319 static void
320 main_window_account_disabled_cb (TpAccountManager *manager,
321                                  TpAccount *account,
322                                  EmpathyMainWindow *window)
323 {
324         main_window_remove_error (window, account);
325 }
326
327 static void
328 main_window_error_retry_clicked_cb (GtkButton *button,
329                                     EmpathyMainWindow *window)
330 {
331         TpAccount *account;
332
333         account = g_object_get_data (G_OBJECT (button), "account");
334         tp_account_reconnect_async (account, NULL, NULL);
335
336         main_window_remove_error (window, account);
337 }
338
339 static void
340 main_window_error_edit_clicked_cb (GtkButton *button,
341                                    EmpathyMainWindow *window)
342 {
343         TpAccount *account;
344
345         account = g_object_get_data (G_OBJECT (button), "account");
346         empathy_accounts_dialog_show (GTK_WINDOW (window->window), account);
347
348         main_window_remove_error (window, account);
349 }
350
351 static void
352 main_window_error_close_clicked_cb (GtkButton *button,
353                                     EmpathyMainWindow *window)
354 {
355         TpAccount *account;
356
357         account = g_object_get_data (G_OBJECT (button), "account");
358         main_window_remove_error (window, account);
359 }
360
361 static void
362 main_window_error_display (EmpathyMainWindow *window,
363                            TpAccount         *account,
364                            const gchar       *message)
365 {
366         GtkWidget *info_bar;
367         GtkWidget *content_area;
368         GtkWidget *label;
369         GtkWidget *image;
370         GtkWidget *retry_button;
371         GtkWidget *edit_button;
372         GtkWidget *close_button;
373         GtkWidget *action_area;
374         GtkWidget *action_table;
375         GtkRcStyle *rc_style;
376         gchar     *str;
377         const gchar     *icon_name;
378
379         str = g_markup_printf_escaped ("<b>%s</b>\n%s",
380                                                tp_account_get_display_name (account),
381                                                message);
382
383         info_bar = g_hash_table_lookup (window->errors, account);
384         if (info_bar) {
385                 label = g_object_get_data (G_OBJECT (info_bar), "label");
386
387                 /* Just set the latest error and return */
388                 gtk_label_set_markup (GTK_LABEL (label), str);
389                 g_free (str);
390
391                 return;
392         }
393
394         info_bar = gtk_info_bar_new ();
395         gtk_info_bar_set_message_type (GTK_INFO_BAR (info_bar), GTK_MESSAGE_WARNING);
396
397         gtk_widget_set_no_show_all (info_bar, TRUE);
398         gtk_box_pack_start (GTK_BOX (window->errors_vbox), info_bar, FALSE, TRUE, 0);
399         gtk_widget_show (info_bar);
400
401         icon_name = tp_account_get_icon_name (account);
402         image = gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_SMALL_TOOLBAR);
403         gtk_widget_show (image);
404
405         label = gtk_label_new (str);
406         gtk_label_set_use_markup (GTK_LABEL (label), TRUE);
407         gtk_widget_show (label);
408         g_free (str);
409
410         content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (info_bar));
411         gtk_box_pack_start (GTK_BOX (content_area), image, FALSE, FALSE, 0);
412         gtk_box_pack_start (GTK_BOX (content_area), label, FALSE, FALSE, 0);
413
414         /* make small style for the buttons */
415         rc_style = gtk_rc_style_new ();
416         rc_style->xthickness = rc_style->ythickness = 4;
417
418         image = gtk_image_new_from_stock (GTK_STOCK_REFRESH, GTK_ICON_SIZE_BUTTON);
419         retry_button = gtk_button_new ();
420         gtk_button_set_image (GTK_BUTTON (retry_button), image);
421         gtk_widget_modify_style (retry_button, rc_style);
422         gtk_widget_set_tooltip_text (retry_button, _("Reconnect"));
423         gtk_widget_show (retry_button);
424
425         image = gtk_image_new_from_stock (GTK_STOCK_EDIT, GTK_ICON_SIZE_BUTTON);
426         edit_button = gtk_button_new ();
427         gtk_button_set_image (GTK_BUTTON (edit_button), image);
428         gtk_widget_modify_style (edit_button, rc_style);
429         gtk_widget_set_tooltip_text (edit_button, _("Edit Account"));
430         gtk_widget_show (edit_button);
431
432         image = gtk_image_new_from_stock (GTK_STOCK_CLOSE, GTK_ICON_SIZE_BUTTON);
433         close_button = gtk_button_new ();
434         gtk_button_set_image (GTK_BUTTON (close_button), image);
435         gtk_widget_modify_style (close_button, rc_style);
436         gtk_widget_set_tooltip_text (close_button, _("Close"));
437         gtk_widget_show (close_button);
438
439         action_table = gtk_table_new (1, 3, FALSE);
440         gtk_table_set_col_spacings (GTK_TABLE (action_table), 2);
441         gtk_widget_show (action_table);
442
443         action_area = gtk_info_bar_get_action_area (GTK_INFO_BAR (info_bar));
444         gtk_box_pack_start (GTK_BOX (action_area), action_table, FALSE, FALSE, 0);
445
446         gtk_table_attach (GTK_TABLE (action_table), retry_button, 0, 1, 0, 1,
447                                                                                 (GtkAttachOptions) (GTK_SHRINK),
448                                                                                 (GtkAttachOptions) (GTK_SHRINK), 0, 0);
449         gtk_table_attach (GTK_TABLE (action_table), edit_button, 1, 2, 0, 1,
450                                                                                 (GtkAttachOptions) (GTK_SHRINK),
451                                                                                 (GtkAttachOptions) (GTK_SHRINK), 0, 0);
452         gtk_table_attach (GTK_TABLE (action_table), close_button, 2, 3, 0, 1,
453                                                                                 (GtkAttachOptions) (GTK_SHRINK),
454                                                                                 (GtkAttachOptions) (GTK_SHRINK), 0, 0);
455
456         g_object_set_data (G_OBJECT (info_bar), "label", label);
457         g_object_set_data_full (G_OBJECT (info_bar),
458                                 "account", g_object_ref (account),
459                                 g_object_unref);
460         g_object_set_data_full (G_OBJECT (edit_button),
461                                 "account", g_object_ref (account),
462                                 g_object_unref);
463         g_object_set_data_full (G_OBJECT (close_button),
464                                 "account", g_object_ref (account),
465                                 g_object_unref);
466         g_object_set_data_full (G_OBJECT (retry_button),
467                                 "account", g_object_ref (account),
468                                 g_object_unref);
469
470         g_signal_connect (edit_button, "clicked",
471                           G_CALLBACK (main_window_error_edit_clicked_cb),
472                           window);
473         g_signal_connect (close_button, "clicked",
474                           G_CALLBACK (main_window_error_close_clicked_cb),
475                           window);
476         g_signal_connect (retry_button, "clicked",
477                           G_CALLBACK (main_window_error_retry_clicked_cb),
478                           window);
479
480         gtk_widget_show (window->errors_vbox);
481
482         g_object_unref (rc_style);
483         g_hash_table_insert (window->errors, g_object_ref (account), info_bar);
484 }
485
486 static void
487 main_window_update_status (EmpathyMainWindow *window)
488 {
489         gboolean connected, connecting;
490         GList *l;
491
492         connected = empathy_account_manager_get_accounts_connected (&connecting);
493
494         /* Update the spinner state */
495         if (connecting) {
496                 ephy_spinner_start (EPHY_SPINNER (window->throbber));
497         } else {
498                 ephy_spinner_stop (EPHY_SPINNER (window->throbber));
499         }
500
501         /* Update widgets sensibility */
502         for (l = window->actions_connected; l; l = l->next) {
503                 gtk_action_set_sensitive (l->data, connected);
504         }
505 }
506
507 static void
508 main_window_connection_changed_cb (TpAccount  *account,
509                                    guint       old_status,
510                                    guint       current,
511                                    guint       reason,
512                                    gchar      *dbus_error_name,
513                                    GHashTable *details,
514                                    EmpathyMainWindow *window)
515 {
516         main_window_update_status (window);
517
518         if (current == TP_CONNECTION_STATUS_DISCONNECTED &&
519             reason != TP_CONNECTION_STATUS_REASON_REQUESTED) {
520                 const gchar *message;
521
522                 switch (reason) {
523                 case TP_CONNECTION_STATUS_REASON_NONE_SPECIFIED:
524                         message = _("No error specified");
525                         break;
526                 case TP_CONNECTION_STATUS_REASON_NETWORK_ERROR:
527                         message = _("Network error");
528                         break;
529                 case TP_CONNECTION_STATUS_REASON_AUTHENTICATION_FAILED:
530                         message = _("Authentication failed");
531                         break;
532                 case TP_CONNECTION_STATUS_REASON_ENCRYPTION_ERROR:
533                         message = _("Encryption error");
534                         break;
535                 case TP_CONNECTION_STATUS_REASON_NAME_IN_USE:
536                         message = _("Name in use");
537                         break;
538                 case TP_CONNECTION_STATUS_REASON_CERT_NOT_PROVIDED:
539                         message = _("Certificate not provided");
540                         break;
541                 case TP_CONNECTION_STATUS_REASON_CERT_UNTRUSTED:
542                         message = _("Certificate untrusted");
543                         break;
544                 case TP_CONNECTION_STATUS_REASON_CERT_EXPIRED:
545                         message = _("Certificate expired");
546                         break;
547                 case TP_CONNECTION_STATUS_REASON_CERT_NOT_ACTIVATED:
548                         message = _("Certificate not activated");
549                         break;
550                 case TP_CONNECTION_STATUS_REASON_CERT_HOSTNAME_MISMATCH:
551                         message = _("Certificate hostname mismatch");
552                         break;
553                 case TP_CONNECTION_STATUS_REASON_CERT_FINGERPRINT_MISMATCH:
554                         message = _("Certificate fingerprint mismatch");
555                         break;
556                 case TP_CONNECTION_STATUS_REASON_CERT_SELF_SIGNED:
557                         message = _("Certificate self-signed");
558                         break;
559                 case TP_CONNECTION_STATUS_REASON_CERT_OTHER_ERROR:
560                         message = _("Certificate error");
561                         break;
562                 default:
563                         message = _("Unknown error");
564                         break;
565                 }
566
567                 main_window_error_display (window, account, message);
568         }
569
570         if (current == TP_CONNECTION_STATUS_DISCONNECTED) {
571                 empathy_sound_play (GTK_WIDGET (window->window),
572                                     EMPATHY_SOUND_ACCOUNT_DISCONNECTED);
573         }
574
575         if (current == TP_CONNECTION_STATUS_CONNECTED) {
576                 empathy_sound_play (GTK_WIDGET (window->window),
577                                     EMPATHY_SOUND_ACCOUNT_CONNECTED);
578
579                 /* Account connected without error, remove error message if any */
580                 main_window_remove_error (window, account);
581         }
582 }
583
584 static void
585 main_window_contact_presence_changed_cb (EmpathyContactMonitor *monitor,
586                                          EmpathyContact *contact,
587                                          TpConnectionPresenceType current,
588                                          TpConnectionPresenceType previous,
589                                          EmpathyMainWindow *window)
590 {
591   TpAccount *account;
592   gboolean should_play = FALSE;
593   EmpathyIdle *idle;
594
595   account = empathy_contact_get_account (contact);
596   idle = empathy_idle_dup_singleton ();
597
598   should_play = !empathy_idle_account_is_just_connected (idle, account);
599
600   if (!should_play)
601     goto out;
602
603   if (tp_connection_presence_type_cmp_availability (previous,
604      TP_CONNECTION_PRESENCE_TYPE_OFFLINE) > 0)
605     {
606       /* contact was online */
607       if (tp_connection_presence_type_cmp_availability (current,
608           TP_CONNECTION_PRESENCE_TYPE_OFFLINE) <= 0)
609         /* someone is logging off */
610         empathy_sound_play (GTK_WIDGET (window->window),
611           EMPATHY_SOUND_CONTACT_DISCONNECTED);
612     }
613   else
614     {
615       /* contact was offline */
616       if (tp_connection_presence_type_cmp_availability (current,
617           TP_CONNECTION_PRESENCE_TYPE_OFFLINE) > 0)
618         /* someone is logging in */
619         empathy_sound_play (GTK_WIDGET (window->window),
620           EMPATHY_SOUND_CONTACT_CONNECTED);
621     }
622
623 out:
624   g_object_unref (idle);
625 }
626
627 static void
628 main_window_accels_load (void)
629 {
630         gchar *filename;
631
632         filename = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, ACCELS_FILENAME, NULL);
633         if (g_file_test (filename, G_FILE_TEST_EXISTS)) {
634                 DEBUG ("Loading from:'%s'", filename);
635                 gtk_accel_map_load (filename);
636         }
637
638         g_free (filename);
639 }
640
641 static void
642 main_window_accels_save (void)
643 {
644         gchar *dir;
645         gchar *file_with_path;
646
647         dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
648         g_mkdir_with_parents (dir, S_IRUSR | S_IWUSR | S_IXUSR);
649         file_with_path = g_build_filename (dir, ACCELS_FILENAME, NULL);
650         g_free (dir);
651
652         DEBUG ("Saving to:'%s'", file_with_path);
653         gtk_accel_map_save (file_with_path);
654
655         g_free (file_with_path);
656 }
657
658 static void
659 main_window_destroy_cb (GtkWidget         *widget,
660                         EmpathyMainWindow *window)
661 {
662         /* Save user-defined accelerators. */
663         main_window_accels_save ();
664
665         g_list_free (window->actions_connected);
666
667         g_object_unref (window->account_manager);
668         g_object_unref (window->list_store);
669         g_hash_table_destroy (window->errors);
670
671         g_signal_handlers_disconnect_by_func (window->event_manager,
672                                               main_window_event_added_cb,
673                                               window);
674         g_signal_handlers_disconnect_by_func (window->event_manager,
675                                               main_window_event_removed_cb,
676                                               window);
677         g_object_unref (window->event_manager);
678         g_object_unref (window->ui_manager);
679
680         g_free (window);
681 }
682
683 static void
684 main_window_chat_quit_cb (GtkAction         *action,
685                           EmpathyMainWindow *window)
686 {
687         gtk_main_quit ();
688 }
689
690 static void
691 main_window_view_history_cb (GtkAction         *action,
692                              EmpathyMainWindow *window)
693 {
694         empathy_log_window_show (NULL, NULL, FALSE, GTK_WINDOW (window->window));
695 }
696
697 static void
698 main_window_chat_new_message_cb (GtkAction         *action,
699                                  EmpathyMainWindow *window)
700 {
701         empathy_new_message_dialog_show (GTK_WINDOW (window->window));
702 }
703
704 static void
705 main_window_chat_add_contact_cb (GtkAction         *action,
706                                  EmpathyMainWindow *window)
707 {
708         empathy_new_contact_dialog_show (GTK_WINDOW (window->window));
709 }
710
711 static void
712 main_window_view_show_ft_manager (GtkAction         *action,
713                                   EmpathyMainWindow *window)
714 {
715         empathy_ft_manager_show ();
716 }
717
718 static void
719 main_window_view_show_offline_cb (GtkToggleAction   *action,
720                                   EmpathyMainWindow *window)
721 {
722         gboolean current;
723
724         current = gtk_toggle_action_get_active (action);
725         empathy_conf_set_bool (empathy_conf_get (),
726                               EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE,
727                               current);
728
729         /* Turn off sound just while we alter the contact list. */
730         // FIXME: empathy_sound_set_enabled (FALSE);
731         empathy_contact_list_store_set_show_offline (window->list_store, current);
732         //empathy_sound_set_enabled (TRUE);
733 }
734
735 static void
736 main_window_notify_sort_contact_cb (EmpathyConf       *conf,
737                                     const gchar       *key,
738                                     EmpathyMainWindow *window)
739 {
740         gchar *str = NULL;
741
742         if (empathy_conf_get_string (conf, key, &str) && str) {
743                 GType       type;
744                 GEnumClass *enum_class;
745                 GEnumValue *enum_value;
746
747                 type = empathy_contact_list_store_sort_get_type ();
748                 enum_class = G_ENUM_CLASS (g_type_class_peek (type));
749                 enum_value = g_enum_get_value_by_nick (enum_class, str);
750                 if (enum_value) {
751                         /* By changing the value of the GtkRadioAction,
752                            it emits a signal that calls main_window_view_sort_contacts_cb
753                            which updates the contacts list */
754                         gtk_radio_action_set_current_value (window->sort_by_name,
755                                                             enum_value->value);
756                 } else {
757                         g_warning ("Wrong value for sort_criterium configuration : %s", str);
758                 }
759                 g_free (str);
760         }
761 }
762
763 static void
764 main_window_view_sort_contacts_cb (GtkRadioAction    *action,
765                                    GtkRadioAction    *current,
766                                    EmpathyMainWindow *window)
767 {
768         EmpathyContactListStoreSort value;
769         GSList      *group;
770         GType        type;
771         GEnumClass  *enum_class;
772         GEnumValue  *enum_value;
773
774         value = gtk_radio_action_get_current_value (action);
775         group = gtk_radio_action_get_group (action);
776
777         /* Get string from index */
778         type = empathy_contact_list_store_sort_get_type ();
779         enum_class = G_ENUM_CLASS (g_type_class_peek (type));
780         enum_value = g_enum_get_value (enum_class, g_slist_index (group, current));
781
782         if (!enum_value) {
783                 g_warning ("No GEnumValue for EmpathyContactListSort with GtkRadioAction index:%d",
784                            g_slist_index (group, action));
785         } else {
786                 empathy_conf_set_string (empathy_conf_get (),
787                                          EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
788                                          enum_value->value_nick);
789         }
790         empathy_contact_list_store_set_sort_criterium (window->list_store, value);
791 }
792
793 /* Matches GtkRadioAction values set in empathy-main-window.ui */
794 #define CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS           0
795 #define CONTACT_LIST_NORMAL_SIZE                        1
796 #define CONTACT_LIST_COMPACT_SIZE                       2
797
798 static void
799 main_window_view_contacts_list_size_cb (GtkRadioAction    *action,
800                                         GtkRadioAction    *current,
801                                         EmpathyMainWindow *window)
802 {
803         gint     value;
804
805         value = gtk_radio_action_get_current_value (action);
806
807         empathy_conf_set_bool (empathy_conf_get (),
808                                EMPATHY_PREFS_UI_SHOW_AVATARS,
809                                value == CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS);
810         empathy_conf_set_bool (empathy_conf_get (),
811                                EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
812                                value == CONTACT_LIST_COMPACT_SIZE);
813
814         empathy_contact_list_store_set_show_avatars (window->list_store,
815                                                      value == CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS);
816         empathy_contact_list_store_set_is_compact (window->list_store,
817                                                    value == CONTACT_LIST_COMPACT_SIZE);
818 }
819
820 static void
821 main_window_notify_contact_list_size_cb (EmpathyConf       *conf,
822                                          const gchar       *key,
823                                          EmpathyMainWindow *window)
824 {
825         gboolean show_avatars;
826         gboolean compact_contact_list;
827         gint value = CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS;
828
829         if (empathy_conf_get_bool (conf,
830                                    EMPATHY_PREFS_UI_SHOW_AVATARS,
831                                    &show_avatars)
832             && empathy_conf_get_bool (conf,
833                                       EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
834                                       &compact_contact_list)) {
835                 if (compact_contact_list) {
836                         value = CONTACT_LIST_COMPACT_SIZE;
837                 } else if (show_avatars) {
838                         value = CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS;
839                 } else {
840                         value = CONTACT_LIST_NORMAL_SIZE;
841                 }
842         }
843         /* By changing the value of the GtkRadioAction,
844            it emits a signal that calls main_window_view_contacts_list_size_cb
845            which updates the contacts list */
846         gtk_radio_action_set_current_value (window->normal_with_avatars, value);
847 }
848
849 static void
850 main_window_view_show_map_cb (GtkCheckMenuItem  *item,
851                               EmpathyMainWindow *window)
852 {
853 #if HAVE_LIBCHAMPLAIN
854         empathy_map_view_show ();
855 #endif
856 }
857
858 static void
859 main_window_favorite_chatroom_join (EmpathyChatroom *chatroom)
860 {
861         TpAccount      *account;
862         TpConnection   *connection;
863         const gchar    *room;
864
865         account = empathy_chatroom_get_account (chatroom);
866         connection = tp_account_get_connection (account);
867         room = empathy_chatroom_get_room (chatroom);
868
869         if (connection != NULL) {
870                 DEBUG ("Requesting channel for '%s'", room);
871                 empathy_dispatcher_join_muc (connection, room, NULL, NULL);
872         }
873 }
874
875 static void
876 main_window_favorite_chatroom_menu_activate_cb (GtkMenuItem    *menu_item,
877                                                 EmpathyChatroom *chatroom)
878 {
879         main_window_favorite_chatroom_join (chatroom);
880 }
881
882 static void
883 main_window_favorite_chatroom_menu_add (EmpathyMainWindow *window,
884                                         EmpathyChatroom    *chatroom)
885 {
886         GtkWidget   *menu_item;
887         const gchar *name;
888
889         if (g_object_get_data (G_OBJECT (chatroom), "menu_item")) {
890                 return;
891         }
892
893         name = empathy_chatroom_get_name (chatroom);
894         menu_item = gtk_menu_item_new_with_label (name);
895
896         g_object_set_data (G_OBJECT (chatroom), "menu_item", menu_item);
897         g_signal_connect (menu_item, "activate",
898                           G_CALLBACK (main_window_favorite_chatroom_menu_activate_cb),
899                           chatroom);
900
901         gtk_menu_shell_insert (GTK_MENU_SHELL (window->room_menu),
902                                menu_item, 4);
903
904         gtk_widget_show (menu_item);
905 }
906
907 static void
908 main_window_favorite_chatroom_menu_added_cb (EmpathyChatroomManager *manager,
909                                              EmpathyChatroom        *chatroom,
910                                              EmpathyMainWindow     *window)
911 {
912         main_window_favorite_chatroom_menu_add (window, chatroom);
913         gtk_widget_show (window->room_separator);
914         gtk_action_set_sensitive (window->room_join_favorites, TRUE);
915 }
916
917 static void
918 main_window_favorite_chatroom_menu_removed_cb (EmpathyChatroomManager *manager,
919                                                EmpathyChatroom        *chatroom,
920                                                EmpathyMainWindow     *window)
921 {
922         GtkWidget *menu_item;
923         GList *chatrooms;
924
925         menu_item = g_object_get_data (G_OBJECT (chatroom), "menu_item");
926         g_object_set_data (G_OBJECT (chatroom), "menu_item", NULL);
927         gtk_widget_destroy (menu_item);
928
929         chatrooms = empathy_chatroom_manager_get_chatrooms (window->chatroom_manager, NULL);
930         if (chatrooms) {
931                 gtk_widget_show (window->room_separator);
932         } else {
933                 gtk_widget_hide (window->room_separator);
934         }
935
936         gtk_action_set_sensitive (window->room_join_favorites, chatrooms != NULL);
937         g_list_free (chatrooms);
938 }
939
940 static void
941 main_window_favorite_chatroom_menu_setup (EmpathyMainWindow *window)
942 {
943         GList *chatrooms, *l;
944         GtkWidget *room;
945
946         window->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
947         chatrooms = empathy_chatroom_manager_get_chatrooms (window->chatroom_manager, NULL);
948         room = gtk_ui_manager_get_widget (window->ui_manager,
949                 "/menubar/room");
950         window->room_menu = gtk_menu_item_get_submenu (GTK_MENU_ITEM (room));
951         window->room_separator = gtk_ui_manager_get_widget (window->ui_manager,
952                 "/menubar/room/room_separator");
953
954         for (l = chatrooms; l; l = l->next) {
955                 main_window_favorite_chatroom_menu_add (window, l->data);
956         }
957
958         if (!chatrooms) {
959                 gtk_widget_hide (window->room_separator);
960         }
961
962         gtk_action_set_sensitive (window->room_join_favorites, chatrooms != NULL);
963
964         g_signal_connect (window->chatroom_manager, "chatroom-added",
965                           G_CALLBACK (main_window_favorite_chatroom_menu_added_cb),
966                           window);
967         g_signal_connect (window->chatroom_manager, "chatroom-removed",
968                           G_CALLBACK (main_window_favorite_chatroom_menu_removed_cb),
969                           window);
970
971         g_list_free (chatrooms);
972 }
973
974 static void
975 main_window_room_join_new_cb (GtkAction         *action,
976                               EmpathyMainWindow *window)
977 {
978         empathy_new_chatroom_dialog_show (GTK_WINDOW (window->window));
979 }
980
981 static void
982 main_window_room_join_favorites_cb (GtkAction         *action,
983                                     EmpathyMainWindow *window)
984 {
985         GList *chatrooms, *l;
986
987         chatrooms = empathy_chatroom_manager_get_chatrooms (window->chatroom_manager, NULL);
988         for (l = chatrooms; l; l = l->next) {
989                 main_window_favorite_chatroom_join (l->data);
990         }
991         g_list_free (chatrooms);
992 }
993
994 static void
995 main_window_room_manage_favorites_cb (GtkAction         *action,
996                                       EmpathyMainWindow *window)
997 {
998         empathy_chatrooms_window_show (GTK_WINDOW (window->window));
999 }
1000
1001 static void
1002 main_window_edit_cb (GtkAction *action,
1003                      EmpathyMainWindow *window)
1004 {
1005         GtkWidget *submenu;
1006
1007         /* FIXME: It should use the UIManager to merge the contact/group submenu */
1008         submenu = empathy_contact_list_view_get_contact_menu (window->list_view);
1009         if (submenu) {
1010                 GtkMenuItem *item;
1011                 GtkWidget   *label;
1012
1013                 item = GTK_MENU_ITEM (window->edit_context);
1014                 label = gtk_bin_get_child (GTK_BIN (item));
1015                 gtk_label_set_text (GTK_LABEL (label), _("Contact"));
1016
1017                 gtk_widget_show (window->edit_context);
1018                 gtk_widget_show (window->edit_context_separator);
1019
1020                 gtk_menu_item_set_submenu (item, submenu);
1021
1022                 return;
1023         }
1024
1025         submenu = empathy_contact_list_view_get_group_menu (window->list_view);
1026         if (submenu) {
1027                 GtkMenuItem *item;
1028                 GtkWidget   *label;
1029
1030                 item = GTK_MENU_ITEM (window->edit_context);
1031                 label = gtk_bin_get_child (GTK_BIN (item));
1032                 gtk_label_set_text (GTK_LABEL (label), _("Group"));
1033
1034                 gtk_widget_show (window->edit_context);
1035                 gtk_widget_show (window->edit_context_separator);
1036
1037                 gtk_menu_item_set_submenu (item, submenu);
1038
1039                 return;
1040         }
1041
1042         gtk_widget_hide (window->edit_context);
1043         gtk_widget_hide (window->edit_context_separator);
1044
1045         return;
1046 }
1047
1048 static void
1049 main_window_edit_accounts_cb (GtkAction         *action,
1050                               EmpathyMainWindow *window)
1051 {
1052         empathy_accounts_dialog_show (GTK_WINDOW (window->window), NULL);
1053 }
1054
1055 static void
1056 main_window_edit_personal_information_cb (GtkAction         *action,
1057                                           EmpathyMainWindow *window)
1058 {
1059         empathy_contact_personal_dialog_show (GTK_WINDOW (window->window));
1060 }
1061
1062 static void
1063 main_window_edit_preferences_cb (GtkAction         *action,
1064                                  EmpathyMainWindow *window)
1065 {
1066         empathy_preferences_show (GTK_WINDOW (window->window));
1067 }
1068
1069 static void
1070 main_window_help_about_cb (GtkAction         *action,
1071                            EmpathyMainWindow *window)
1072 {
1073         empathy_about_dialog_new (GTK_WINDOW (window->window));
1074 }
1075
1076 static void
1077 main_window_help_debug_cb (GtkAction         *action,
1078                            EmpathyMainWindow *window)
1079 {
1080         empathy_debug_window_new (NULL);
1081 }
1082
1083 static void
1084 main_window_help_contents_cb (GtkAction         *action,
1085                               EmpathyMainWindow *window)
1086 {
1087         empathy_url_show (window->window, "ghelp:empathy");
1088 }
1089
1090 static gboolean
1091 main_window_throbber_button_press_event_cb (GtkWidget         *throbber_ebox,
1092                                             GdkEventButton    *event,
1093                                             EmpathyMainWindow *window)
1094 {
1095         if (event->type != GDK_BUTTON_PRESS ||
1096             event->button != 1) {
1097                 return FALSE;
1098         }
1099
1100         empathy_accounts_dialog_show (GTK_WINDOW (window->window), NULL);
1101
1102         return FALSE;
1103 }
1104
1105 static void
1106 main_window_account_removed_cb (TpAccountManager  *manager,
1107                                 TpAccount         *account,
1108                                 EmpathyMainWindow *window)
1109 {
1110         GList *a;
1111
1112         a = tp_account_manager_get_valid_accounts (manager);
1113
1114         gtk_action_set_sensitive (window->view_history,
1115                 g_list_length (a) > 0);
1116
1117         g_list_free (a);
1118
1119         /* remove errors if any */
1120         main_window_remove_error (window, account);
1121 }
1122
1123 static void
1124 main_window_account_validity_changed_cb (TpAccountManager *manager,
1125                                          TpAccount *account,
1126                                          gboolean valid,
1127                                          EmpathyMainWindow *window)
1128 {
1129         main_window_account_removed_cb (manager, account, window);
1130 }
1131
1132 static void
1133 main_window_notify_show_offline_cb (EmpathyConf *conf,
1134                                     const gchar *key,
1135                                     gpointer     toggle_action)
1136 {
1137         gboolean show_offline;
1138
1139         if (empathy_conf_get_bool (conf, key, &show_offline)) {
1140                 gtk_toggle_action_set_active (toggle_action, show_offline);
1141         }
1142 }
1143
1144 static void
1145 main_window_connection_items_setup (EmpathyMainWindow *window,
1146                                     GtkBuilder        *gui)
1147 {
1148         GList         *list;
1149         GObject       *action;
1150         guint          i;
1151         const gchar *actions_connected[] = {
1152                 "room",
1153                 "chat_new_message",
1154                 "chat_add_contact",
1155                 "edit_personal_information"
1156         };
1157
1158         for (i = 0, list = NULL; i < G_N_ELEMENTS (actions_connected); i++) {
1159                 action = gtk_builder_get_object (gui, actions_connected[i]);
1160                 list = g_list_prepend (list, action);
1161         }
1162
1163         window->actions_connected = list;
1164 }
1165
1166 GtkWidget *
1167 empathy_main_window_get (void)
1168 {
1169   return main_window != NULL ? main_window->window : NULL;
1170 }
1171
1172 static void
1173 account_manager_prepared_cb (GObject *source_object,
1174                              GAsyncResult *result,
1175                              gpointer user_data)
1176 {
1177         GList *accounts, *j;
1178         TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
1179         EmpathyMainWindow *window = user_data;
1180         GError *error = NULL;
1181
1182         if (!tp_account_manager_prepare_finish (manager, result, &error)) {
1183                 DEBUG ("Failed to prepare account manager: %s", error->message);
1184                 g_error_free (error);
1185                 return;
1186         }
1187
1188         accounts = tp_account_manager_get_valid_accounts (window->account_manager);
1189         for (j = accounts; j != NULL; j = j->next) {
1190                 TpAccount *account = TP_ACCOUNT (j->data);
1191
1192                 g_signal_connect (account, "status-changed",
1193                                   G_CALLBACK (main_window_connection_changed_cb),
1194                                   window);
1195         }
1196
1197         main_window_update_status (window);
1198
1199         /* Disable the "Previous Conversations" menu entry if there is no account */
1200         gtk_action_set_sensitive (window->view_history,
1201                 g_list_length (accounts) > 0);
1202
1203         g_list_free (accounts);
1204 }
1205
1206 GtkWidget *
1207 empathy_main_window_show (void)
1208 {
1209         EmpathyMainWindow        *window;
1210         EmpathyContactList       *list_iface;
1211         EmpathyContactMonitor    *monitor;
1212         GtkBuilder               *gui;
1213         EmpathyConf              *conf;
1214         GtkWidget                *sw;
1215         GtkToggleAction          *show_offline_widget;
1216         GtkWidget                *ebox;
1217         GtkAction                *show_map_widget;
1218         GtkToolItem              *item;
1219         gboolean                  show_offline;
1220         gchar                    *filename;
1221         GSList                   *l;
1222
1223         if (main_window) {
1224                 empathy_window_present (GTK_WINDOW (main_window->window), TRUE);
1225                 return main_window->window;
1226         }
1227
1228         main_window = g_new0 (EmpathyMainWindow, 1);
1229         window = main_window;
1230
1231         /* Set up interface */
1232         filename = empathy_file_lookup ("empathy-main-window.ui", "src");
1233         gui = empathy_builder_get_file (filename,
1234                                        "main_window", &window->window,
1235                                        "main_vbox", &window->main_vbox,
1236                                        "errors_vbox", &window->errors_vbox,
1237                                        "ui_manager", &window->ui_manager,
1238                                        "view_show_offline", &show_offline_widget,
1239                                        "view_sort_by_name", &window->sort_by_name,
1240                                        "view_sort_by_status", &window->sort_by_status,
1241                                        "view_normal_size_with_avatars", &window->normal_with_avatars,
1242                                        "view_normal_size", &window->normal_size,
1243                                        "view_compact_size", &window->compact_size,
1244                                        "view_history", &window->view_history,
1245                                        "view_show_map", &show_map_widget,
1246                                        "room_join_favorites", &window->room_join_favorites,
1247                                        "presence_toolbar", &window->presence_toolbar,
1248                                        "roster_scrolledwindow", &sw,
1249                                        NULL);
1250         g_free (filename);
1251
1252         empathy_builder_connect (gui, window,
1253                               "main_window", "destroy", main_window_destroy_cb,
1254                               "chat_quit", "activate", main_window_chat_quit_cb,
1255                               "chat_new_message", "activate", main_window_chat_new_message_cb,
1256                               "view_history", "activate", main_window_view_history_cb,
1257                               "room_join_new", "activate", main_window_room_join_new_cb,
1258                               "room_join_favorites", "activate", main_window_room_join_favorites_cb,
1259                               "room_manage_favorites", "activate", main_window_room_manage_favorites_cb,
1260                               "chat_add_contact", "activate", main_window_chat_add_contact_cb,
1261                               "view_show_ft_manager", "activate", main_window_view_show_ft_manager,
1262                               "view_show_offline", "toggled", main_window_view_show_offline_cb,
1263                               "view_sort_by_name", "changed", main_window_view_sort_contacts_cb,
1264                               "view_normal_size_with_avatars", "changed", main_window_view_contacts_list_size_cb,
1265                               "view_show_map", "activate", main_window_view_show_map_cb,
1266                               "edit", "activate", main_window_edit_cb,
1267                               "edit_accounts", "activate", main_window_edit_accounts_cb,
1268                               "edit_personal_information", "activate", main_window_edit_personal_information_cb,
1269                               "edit_preferences", "activate", main_window_edit_preferences_cb,
1270                               "help_about", "activate", main_window_help_about_cb,
1271                               "help_debug", "activate", main_window_help_debug_cb,
1272                               "help_contents", "activate", main_window_help_contents_cb,
1273                               NULL);
1274
1275         /* Set up connection related widgets. */
1276         main_window_connection_items_setup (window, gui);
1277
1278         g_object_ref (window->ui_manager);
1279         g_object_unref (gui);
1280
1281 #if !HAVE_LIBCHAMPLAIN
1282         gtk_action_set_visible (show_map_widget, FALSE);
1283 #endif
1284
1285         window->account_manager = tp_account_manager_dup ();
1286
1287         tp_account_manager_prepare_async (window->account_manager, NULL,
1288                                           account_manager_prepared_cb, window);
1289
1290         window->errors = g_hash_table_new_full (g_direct_hash,
1291                                                 g_direct_equal,
1292                                                 g_object_unref,
1293                                                 NULL);
1294
1295         /* Set up menu */
1296         main_window_favorite_chatroom_menu_setup (window);
1297
1298         window->edit_context = gtk_ui_manager_get_widget (window->ui_manager,
1299                 "/menubar/edit/edit_context");
1300         window->edit_context_separator = gtk_ui_manager_get_widget (window->ui_manager,
1301                 "/menubar/edit/edit_context_separator");
1302         gtk_widget_hide (window->edit_context);
1303         gtk_widget_hide (window->edit_context_separator);
1304
1305         /* Set up contact list. */
1306         empathy_status_presets_get_all ();
1307
1308         /* Set up presence chooser */
1309         window->presence_chooser = empathy_presence_chooser_new ();
1310         gtk_widget_show (window->presence_chooser);
1311         item = gtk_tool_item_new ();
1312         gtk_widget_show (GTK_WIDGET (item));
1313         gtk_container_add (GTK_CONTAINER (item), window->presence_chooser);
1314         gtk_tool_item_set_is_important (item, TRUE);
1315         gtk_tool_item_set_expand (item, TRUE);
1316         gtk_toolbar_insert (GTK_TOOLBAR (window->presence_toolbar), item, -1);
1317
1318         /* Set up the throbber */
1319         ebox = gtk_event_box_new ();
1320         gtk_event_box_set_visible_window (GTK_EVENT_BOX (ebox), FALSE);
1321         gtk_widget_set_tooltip_text (ebox, _("Show and edit accounts"));
1322         g_signal_connect (ebox,
1323                           "button-press-event",
1324                           G_CALLBACK (main_window_throbber_button_press_event_cb),
1325                           window);
1326         gtk_widget_show (ebox);
1327
1328         window->throbber = ephy_spinner_new ();
1329         ephy_spinner_set_size (EPHY_SPINNER (window->throbber), GTK_ICON_SIZE_LARGE_TOOLBAR);
1330         gtk_container_add (GTK_CONTAINER (ebox), window->throbber);
1331         gtk_widget_show (window->throbber);
1332
1333         item = gtk_tool_item_new ();
1334         gtk_container_add (GTK_CONTAINER (item), ebox);
1335         gtk_toolbar_insert (GTK_TOOLBAR (window->presence_toolbar), item, -1);
1336         gtk_widget_show (GTK_WIDGET (item));
1337
1338         list_iface = EMPATHY_CONTACT_LIST (empathy_contact_manager_dup_singleton ());
1339         monitor = empathy_contact_list_get_monitor (list_iface);
1340         window->list_store = empathy_contact_list_store_new (list_iface);
1341         window->list_view = empathy_contact_list_view_new (window->list_store,
1342                                                            EMPATHY_CONTACT_LIST_FEATURE_ALL,
1343                                                            EMPATHY_CONTACT_FEATURE_ALL);
1344         g_signal_connect (monitor, "contact-presence-changed",
1345                           G_CALLBACK (main_window_contact_presence_changed_cb), window);
1346         g_object_unref (list_iface);
1347
1348         gtk_widget_show (GTK_WIDGET (window->list_view));
1349         gtk_container_add (GTK_CONTAINER (sw),
1350                            GTK_WIDGET (window->list_view));
1351         g_signal_connect (window->list_view, "row-activated",
1352                           G_CALLBACK (main_window_row_activated_cb),
1353                           window);
1354
1355         /* Load user-defined accelerators. */
1356         main_window_accels_load ();
1357
1358         /* Set window size. */
1359         empathy_geometry_bind (GTK_WINDOW (window->window), GEOMETRY_NAME);
1360
1361         /* Enable event handling */
1362         window->event_manager = empathy_event_manager_dup_singleton ();
1363         g_signal_connect (window->event_manager, "event-added",
1364                           G_CALLBACK (main_window_event_added_cb),
1365                           window);
1366         g_signal_connect (window->event_manager, "event-removed",
1367                           G_CALLBACK (main_window_event_removed_cb),
1368                           window);
1369
1370         g_signal_connect (window->account_manager, "account-validity-changed",
1371                           G_CALLBACK (main_window_account_validity_changed_cb),
1372                           window);
1373         g_signal_connect (window->account_manager, "account-removed",
1374                           G_CALLBACK (main_window_account_removed_cb),
1375                           window);
1376         g_signal_connect (window->account_manager, "account-disabled",
1377                           G_CALLBACK (main_window_account_disabled_cb),
1378                           window);
1379
1380         l = empathy_event_manager_get_events (window->event_manager);
1381         while (l) {
1382                 main_window_event_added_cb (window->event_manager,
1383                                             l->data, window);
1384                 l = l->next;
1385         }
1386
1387         conf = empathy_conf_get ();
1388
1389         /* Show offline ? */
1390         empathy_conf_get_bool (conf,
1391                               EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE,
1392                               &show_offline);
1393         empathy_conf_notify_add (conf,
1394                                 EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE,
1395                                 main_window_notify_show_offline_cb,
1396                                 show_offline_widget);
1397
1398         gtk_toggle_action_set_active (show_offline_widget, show_offline);
1399
1400         /* Sort by name / by status ? */
1401         empathy_conf_notify_add (conf,
1402                                  EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
1403                                  (EmpathyConfNotifyFunc) main_window_notify_sort_contact_cb,
1404                                  window);
1405
1406         main_window_notify_sort_contact_cb (conf,
1407                                             EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
1408                                             window);
1409
1410         /* Contacts list size */
1411         empathy_conf_notify_add (conf,
1412                                  EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
1413                                  (EmpathyConfNotifyFunc) main_window_notify_contact_list_size_cb,
1414                                  window);
1415         empathy_conf_notify_add (conf,
1416                                  EMPATHY_PREFS_UI_SHOW_AVATARS,
1417                                  (EmpathyConfNotifyFunc) main_window_notify_contact_list_size_cb,
1418                                  window);
1419
1420         main_window_notify_contact_list_size_cb (conf,
1421                                                  EMPATHY_PREFS_UI_SHOW_AVATARS,
1422                                                  window);
1423
1424         return window->window;
1425 }
1426