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