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