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