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