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