]> git.0d.be Git - empathy.git/blob - src/empathy-main-window.c
Port EmpathyMainWindow to the new API.
[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., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, 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 <glade/glade.h>
29 #include <glib/gi18n.h>
30 #include <canberra-gtk.h>
31
32 #include <libempathy/empathy-contact.h>
33 #include <libempathy/empathy-utils.h>
34 #include <libempathy/empathy-account-manager.h>
35 #include <libempathy/empathy-chatroom-manager.h>
36 #include <libempathy/empathy-chatroom.h>
37 #include <libempathy/empathy-contact-list.h>
38 #include <libempathy/empathy-contact-manager.h>
39 #include <libempathy/empathy-contact-factory.h>
40 #include <libempathy/empathy-status-presets.h>
41
42 #include <libempathy-gtk/empathy-contact-dialogs.h>
43 #include <libempathy-gtk/empathy-contact-list-store.h>
44 #include <libempathy-gtk/empathy-contact-list-view.h>
45 #include <libempathy-gtk/empathy-presence-chooser.h>
46 #include <libempathy-gtk/empathy-ui-utils.h>
47 #include <libempathy-gtk/empathy-geometry.h>
48 #include <libempathy-gtk/empathy-conf.h>
49 #include <libempathy-gtk/empathy-log-window.h>
50 #include <libempathy-gtk/empathy-new-message-dialog.h>
51 #include <libempathy-gtk/empathy-gtk-enum-types.h>
52
53 #include "empathy-accounts-dialog.h"
54 #include "empathy-main-window.h"
55 #include "ephy-spinner.h"
56 #include "empathy-preferences.h"
57 #include "empathy-about-dialog.h"
58 #include "empathy-new-chatroom-dialog.h"
59 #include "empathy-chatrooms-window.h"
60 #include "empathy-event-manager.h"
61
62 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
63 #include <libempathy/empathy-debug.h>
64
65 /* Flashing delay for icons (milliseconds). */
66 #define FLASH_TIMEOUT 500
67
68 /* Minimum width of roster window if something goes wrong. */
69 #define MIN_WIDTH 50
70
71 /* Accels (menu shortcuts) can be configured and saved */
72 #define ACCELS_FILENAME "accels.txt"
73
74 /* Name in the geometry file */
75 #define GEOMETRY_NAME "main-window"
76
77 typedef struct {
78         EmpathyContactListView  *list_view;
79         EmpathyContactListStore *list_store;
80         MissionControl          *mc;
81         EmpathyAccountManager   *account_manager;
82         EmpathyChatroomManager  *chatroom_manager;
83         EmpathyEventManager     *event_manager;
84         guint                    flash_timeout_id;
85         gboolean                 flash_on;
86
87         GtkWidget              *window;
88         GtkWidget              *main_vbox;
89         GtkWidget              *throbber;
90         GtkWidget              *presence_toolbar;
91         GtkWidget              *presence_chooser;
92         GtkWidget              *errors_vbox;
93
94         GtkWidget              *room;
95         GtkWidget              *room_menu;
96         GtkWidget              *room_sep;
97         GtkWidget              *room_join_favorites;
98         GtkWidget              *edit_context;
99         GtkWidget              *edit_context_separator;
100
101         guint                   size_timeout_id;
102         GHashTable             *errors;
103
104         /* Widgets that are enabled when there are connected accounts */
105         GList                  *widgets_connected;
106 } EmpathyMainWindow;
107
108 static void     main_window_destroy_cb                         (GtkWidget                *widget,
109                                                                 EmpathyMainWindow        *window);
110 static void     main_window_favorite_chatroom_menu_setup       (EmpathyMainWindow        *window);
111 static void     main_window_favorite_chatroom_menu_added_cb    (EmpathyChatroomManager   *manager,
112                                                                 EmpathyChatroom          *chatroom,
113                                                                 EmpathyMainWindow        *window);
114 static void     main_window_favorite_chatroom_menu_removed_cb  (EmpathyChatroomManager   *manager,
115                                                                 EmpathyChatroom          *chatroom,
116                                                                 EmpathyMainWindow        *window);
117 static void     main_window_favorite_chatroom_menu_activate_cb (GtkMenuItem              *menu_item,
118                                                                 EmpathyChatroom          *chatroom);
119 static void     main_window_favorite_chatroom_menu_update      (EmpathyMainWindow        *window);
120 static void     main_window_favorite_chatroom_menu_add         (EmpathyMainWindow        *window,
121                                                                 EmpathyChatroom          *chatroom);
122 static void     main_window_favorite_chatroom_join             (EmpathyChatroom          *chatroom);
123 static void     main_window_chat_quit_cb                       (GtkWidget                *widget,
124                                                                 EmpathyMainWindow        *window);
125 static void     main_window_chat_new_message_cb                (GtkWidget                *widget,
126                                                                 EmpathyMainWindow        *window);
127 static void     main_window_chat_history_cb                    (GtkWidget                *widget,
128                                                                 EmpathyMainWindow        *window);
129 static void     main_window_room_join_new_cb                   (GtkWidget                *widget,
130                                                                 EmpathyMainWindow        *window);
131 static void     main_window_room_join_favorites_cb             (GtkWidget                *widget,
132                                                                 EmpathyMainWindow        *window);
133 static void     main_window_room_manage_favorites_cb           (GtkWidget                *widget,
134                                                                 EmpathyMainWindow        *window);
135 static void     main_window_chat_add_contact_cb                (GtkWidget                *widget,
136                                                                 EmpathyMainWindow        *window);
137 static void     main_window_chat_show_offline_cb               (GtkCheckMenuItem         *item,
138                                                                 EmpathyMainWindow        *window);
139 static gboolean main_window_edit_button_press_event_cb         (GtkWidget                *widget,
140                                                                 GdkEventButton           *event,
141                                                                 EmpathyMainWindow        *window);
142 static void     main_window_edit_accounts_cb                   (GtkWidget                *widget,
143                                                                 EmpathyMainWindow        *window);
144 static void     main_window_edit_personal_information_cb       (GtkWidget                *widget,
145                                                                 EmpathyMainWindow        *window);
146 static void     main_window_edit_preferences_cb                (GtkWidget                *widget,
147                                                                 EmpathyMainWindow        *window);
148 static void     main_window_help_about_cb                      (GtkWidget                *widget,
149                                                                 EmpathyMainWindow        *window);
150 static void     main_window_help_contents_cb                   (GtkWidget                *widget,
151                                                                 EmpathyMainWindow        *window);
152 static gboolean main_window_throbber_button_press_event_cb     (GtkWidget                *throbber_ebox,
153                                                                 GdkEventButton           *event,
154                                                                 EmpathyMainWindow        *window);
155 static void     main_window_update_status                      (EmpathyMainWindow        *window,
156                                                                 EmpathyAccountManager    *manager);
157 static void     main_window_error_display                      (EmpathyMainWindow        *window,
158                                                                 McAccount                *account,
159                                                                 const gchar              *message);
160 static void     main_window_accels_load                        (void);
161 static void     main_window_accels_save                        (void);
162 static void     main_window_connection_items_setup             (EmpathyMainWindow        *window,
163                                                                 GladeXML                 *glade);
164 static gboolean main_window_configure_event_timeout_cb         (EmpathyMainWindow        *window);
165 static gboolean main_window_configure_event_cb                 (GtkWidget                *widget,
166                                                                 GdkEventConfigure        *event,
167                                                                 EmpathyMainWindow        *window);
168 static void     main_window_notify_show_offline_cb             (EmpathyConf              *conf,
169                                                                 const gchar              *key,
170                                                                 gpointer                  check_menu_item);
171 static void     main_window_notify_show_avatars_cb             (EmpathyConf              *conf,
172                                                                 const gchar              *key,
173                                                                 EmpathyMainWindow        *window);
174 static void     main_window_notify_compact_contact_list_cb     (EmpathyConf              *conf,
175                                                                 const gchar              *key,
176                                                                 EmpathyMainWindow        *window);
177 static void     main_window_notify_sort_criterium_cb           (EmpathyConf              *conf,
178                                                                 const gchar              *key,
179                                                                 EmpathyMainWindow        *window);
180
181 static void
182 main_window_flash_stop (EmpathyMainWindow *window)
183 {
184         if (window->flash_timeout_id == 0) {
185                 return;
186         }
187
188         DEBUG ("Stop flashing");
189         g_source_remove (window->flash_timeout_id);
190         window->flash_timeout_id = 0;
191         window->flash_on = FALSE;
192 }
193
194 typedef struct {
195         EmpathyEvent *event;
196         gboolean      on;
197 } FlashForeachData;
198
199 static gboolean
200 main_window_flash_foreach (GtkTreeModel *model,
201                            GtkTreePath  *path,
202                            GtkTreeIter  *iter,
203                            gpointer      user_data)
204 {
205         FlashForeachData *data = (FlashForeachData*) user_data;
206         EmpathyContact   *contact;
207         const gchar      *icon_name;
208         GtkTreePath      *parent_path = NULL;
209         GtkTreeIter       parent_iter;
210
211         /* To be used with gtk_tree_model_foreach, update the status icon
212          * of the contact to show the event icon (on=TRUE) or the presence
213          * (on=FALSE) */
214         gtk_tree_model_get (model, iter,
215                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
216                             -1);
217
218         if (contact != data->event->contact) {
219                 if (contact) {
220                         g_object_unref (contact);
221                 }
222                 return FALSE;
223         }
224
225         if (data->on) {
226                 icon_name = data->event->icon_name;
227         } else {
228                 icon_name = empathy_icon_name_for_contact (contact);
229         }
230
231         gtk_tree_store_set (GTK_TREE_STORE (model), iter,
232                             EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS, icon_name,
233                             -1);
234
235         /* To make sure the parent is shown correctly, we emit
236          * the row-changed signal on the parent so it prompts
237          * it to be refreshed by the filter func. 
238          */
239         if (gtk_tree_model_iter_parent (model, &parent_iter, iter)) {
240                 parent_path = gtk_tree_model_get_path (model, &parent_iter);
241         }
242         if (parent_path) {
243                 gtk_tree_model_row_changed (model, parent_path, &parent_iter);
244                 gtk_tree_path_free (parent_path);
245         }
246
247         g_object_unref (contact);
248
249         return FALSE;
250 }
251
252 static gboolean
253 main_window_flash_cb (EmpathyMainWindow *window)
254 {
255         GtkTreeModel     *model;
256         GSList           *events, *l;
257         gboolean          found_event = FALSE;
258         FlashForeachData  data;
259
260         window->flash_on = !window->flash_on;
261         data.on = window->flash_on;
262         model = GTK_TREE_MODEL (window->list_store);
263
264         events = empathy_event_manager_get_events (window->event_manager);
265         for (l = events; l; l = l->next) {
266                 data.event = l->data;
267                 if (!data.event->contact) {
268                         continue;
269                 }
270
271                 found_event = TRUE;
272                 gtk_tree_model_foreach (model,
273                                         main_window_flash_foreach,
274                                         &data);
275         }
276
277         if (!found_event) {
278                 main_window_flash_stop (window);
279         }
280
281         return TRUE;
282 }
283
284 static void
285 main_window_flash_start (EmpathyMainWindow *window)
286 {
287         if (empathy_sound_pref_is_enabled (EMPATHY_PREFS_SOUNDS_NEW_CONVERSATION)) {
288                 ca_gtk_play_for_widget (GTK_WIDGET (window->window), 0,
289                                         CA_PROP_EVENT_ID, "message-new-instant",
290                                         CA_PROP_EVENT_DESCRIPTION, _("Incoming chat request"),
291                                         NULL);
292         }
293
294         if (window->flash_timeout_id != 0) {
295                 return;
296         }
297
298         DEBUG ("Start flashing");
299         window->flash_timeout_id = g_timeout_add (FLASH_TIMEOUT,
300                                                   (GSourceFunc) main_window_flash_cb,
301                                                   window);
302         main_window_flash_cb (window);
303 }
304
305 static void
306 main_window_event_added_cb (EmpathyEventManager *manager,
307                             EmpathyEvent        *event,
308                             EmpathyMainWindow   *window)
309 {
310         if (event->contact) {
311                 main_window_flash_start (window);
312         }
313 }
314
315 static void
316 main_window_event_removed_cb (EmpathyEventManager *manager,
317                               EmpathyEvent        *event,
318                               EmpathyMainWindow   *window)
319 {
320         FlashForeachData data;
321
322         if (!event->contact) {
323                 return;
324         }
325
326         data.on = FALSE;
327         data.event = event;
328         gtk_tree_model_foreach (GTK_TREE_MODEL (window->list_store),
329                                 main_window_flash_foreach,
330                                 &data);
331 }
332
333 static void
334 main_window_row_activated_cb (EmpathyContactListView *view,
335                               GtkTreePath            *path,
336                               GtkTreeViewColumn      *col,
337                               EmpathyMainWindow      *window)
338 {
339         EmpathyContact *contact;
340         GtkTreeModel   *model;
341         GtkTreeIter     iter;
342         GSList         *events, *l;
343
344         model = GTK_TREE_MODEL (window->list_store);
345         gtk_tree_model_get_iter (model, &iter, path);
346         gtk_tree_model_get (model, &iter,
347                             EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact,
348                             -1);
349
350         if (!contact) {
351                 return;
352         }
353
354         /* If the contact has an event activate it, otherwise the
355          * default handler of row-activated will be called. */
356         events = empathy_event_manager_get_events (window->event_manager);
357         for (l = events; l; l = l->next) {
358                 EmpathyEvent *event = l->data;
359
360                 if (event->contact == contact) {
361                         DEBUG ("Activate event");
362                         empathy_event_activate (event);
363
364                         /* We don't want the default handler of this signal
365                          * (e.g. open a chat) */
366                         g_signal_stop_emission_by_name (view, "row-activated");
367                         break;
368                 }
369         }
370
371         g_object_unref (contact);
372 }
373
374 static void
375 main_window_connection_changed_cb (EmpathyAccountManager *manager,
376                                    McAccount *account,
377                                    TpConnectionStatusReason reason,
378                                    TpConnectionStatus current,
379                                    TpConnectionStatus previous,
380                                    EmpathyMainWindow *window)
381 {
382         main_window_update_status (window, manager);
383
384         if (current == TP_CONNECTION_STATUS_DISCONNECTED &&
385             reason != TP_CONNECTION_STATUS_REASON_REQUESTED) {
386                 const gchar *message;
387
388                 switch (reason) {
389                 case TP_CONNECTION_STATUS_REASON_NONE_SPECIFIED:
390                         message = _("No error specified");
391                         break;
392                 case TP_CONNECTION_STATUS_REASON_NETWORK_ERROR:
393                         message = _("Network error");
394                         break;
395                 case TP_CONNECTION_STATUS_REASON_AUTHENTICATION_FAILED:
396                         message = _("Authentication failed");
397                         break;
398                 case TP_CONNECTION_STATUS_REASON_ENCRYPTION_ERROR:
399                         message = _("Encryption error");
400                         break;
401                 case TP_CONNECTION_STATUS_REASON_NAME_IN_USE:
402                         message = _("Name in use");
403                         break;
404                 case TP_CONNECTION_STATUS_REASON_CERT_NOT_PROVIDED:
405                         message = _("Certificate not provided");
406                         break;
407                 case TP_CONNECTION_STATUS_REASON_CERT_UNTRUSTED:
408                         message = _("Certificate untrusted");
409                         break;
410                 case TP_CONNECTION_STATUS_REASON_CERT_EXPIRED:
411                         message = _("Certificate expired");
412                         break;
413                 case TP_CONNECTION_STATUS_REASON_CERT_NOT_ACTIVATED:
414                         message = _("Certificate not activated");
415                         break;
416                 case TP_CONNECTION_STATUS_REASON_CERT_HOSTNAME_MISMATCH:
417                         message = _("Certificate hostname mismatch");
418                         break;
419                 case TP_CONNECTION_STATUS_REASON_CERT_FINGERPRINT_MISMATCH:
420                         message = _("Certificate fingerprint mismatch");
421                         break;
422                 case TP_CONNECTION_STATUS_REASON_CERT_SELF_SIGNED:
423                         message = _("Certificate self-signed");
424                         break;
425                 case TP_CONNECTION_STATUS_REASON_CERT_OTHER_ERROR:
426                         message = _("Certificate error");
427                         break;
428                 default:
429                         message = _("Unknown error");
430                         break;
431                 }
432
433                 main_window_error_display (window, account, message);
434         }
435
436         if (current == TP_CONNECTION_STATUS_DISCONNECTED &&
437             empathy_sound_pref_is_enabled (EMPATHY_PREFS_SOUNDS_SERVICE_LOGOUT)) {
438                 ca_gtk_play_for_widget (GTK_WIDGET (window->window), 0,
439                                         CA_PROP_EVENT_ID, "service-logout",
440                                         CA_PROP_EVENT_DESCRIPTION, _("Disconnected from server"),
441                                         NULL);
442         }
443
444         if (current == TP_CONNECTION_STATUS_CONNECTED) {
445                 GtkWidget *error_widget;
446
447                 if (empathy_sound_pref_is_enabled (EMPATHY_PREFS_SOUNDS_SERVICE_LOGIN)) {
448                         ca_gtk_play_for_widget (GTK_WIDGET (window->window), 0,
449                                                 CA_PROP_EVENT_ID, "service-login",
450                                                 CA_PROP_EVENT_DESCRIPTION, _("Connected to server"),
451                                                 NULL);
452                 }
453
454                 /* Account connected without error, remove error message if any */
455                 error_widget = g_hash_table_lookup (window->errors, account);
456                 if (error_widget) {
457                         gtk_widget_destroy (error_widget);
458                         g_hash_table_remove (window->errors, account);
459                 }
460         }
461 }
462
463 GtkWidget *
464 empathy_main_window_show (void)
465 {
466         static EmpathyMainWindow *window = NULL;
467         EmpathyContactList       *list_iface;
468         GladeXML                 *glade;
469         EmpathyConf               *conf;
470         GtkWidget                *sw;
471         GtkWidget                *show_offline_widget;
472         GtkWidget                *ebox;
473         GtkToolItem              *item;
474         gboolean                  show_offline;
475         gboolean                  show_avatars;
476         gboolean                  compact_contact_list;
477         gint                      x, y, w, h;
478         gchar                    *filename;
479         GSList                   *l;
480
481         if (window) {
482                 empathy_window_present (GTK_WINDOW (window->window), TRUE);
483                 return window->window;
484         }
485
486         window = g_new0 (EmpathyMainWindow, 1);
487
488         /* Set up interface */
489         filename = empathy_file_lookup ("empathy-main-window.glade", "src");
490         glade = empathy_glade_get_file (filename,
491                                        "main_window",
492                                        NULL,
493                                        "main_window", &window->window,
494                                        "main_vbox", &window->main_vbox,
495                                        "errors_vbox", &window->errors_vbox,
496                                        "chat_show_offline", &show_offline_widget,
497                                        "room", &window->room,
498                                        "room_sep", &window->room_sep,
499                                        "room_join_favorites", &window->room_join_favorites,
500                                        "edit_context", &window->edit_context,
501                                        "edit_context_separator", &window->edit_context_separator,
502                                        "presence_toolbar", &window->presence_toolbar,
503                                        "roster_scrolledwindow", &sw,
504                                        NULL);
505         g_free (filename);
506
507         empathy_glade_connect (glade,
508                               window,
509                               "main_window", "destroy", main_window_destroy_cb,
510                               "main_window", "configure_event", main_window_configure_event_cb,
511                               "chat_quit", "activate", main_window_chat_quit_cb,
512                               "chat_new_message", "activate", main_window_chat_new_message_cb,
513                               "chat_history", "activate", main_window_chat_history_cb,
514                               "room_join_new", "activate", main_window_room_join_new_cb,
515                               "room_join_favorites", "activate", main_window_room_join_favorites_cb,
516                               "room_manage_favorites", "activate", main_window_room_manage_favorites_cb,
517                               "chat_add_contact", "activate", main_window_chat_add_contact_cb,
518                               "chat_show_offline", "toggled", main_window_chat_show_offline_cb,
519                               "edit", "button-press-event", main_window_edit_button_press_event_cb,
520                               "edit_accounts", "activate", main_window_edit_accounts_cb,
521                               "edit_personal_information", "activate", main_window_edit_personal_information_cb,
522                               "edit_preferences", "activate", main_window_edit_preferences_cb,
523                               "help_about", "activate", main_window_help_about_cb,
524                               "help_contents", "activate", main_window_help_contents_cb,
525                               NULL);
526
527         /* Set up connection related widgets. */
528         main_window_connection_items_setup (window, glade);
529         g_object_unref (glade);
530
531         window->mc = empathy_mission_control_new ();
532         window->account_manager = empathy_account_manager_new ();
533
534         g_signal_connect (window->account_manager,
535                           "account-connection-changed",
536                           G_CALLBACK (main_window_connection_changed_cb), window);
537
538         window->errors = g_hash_table_new_full (empathy_account_hash,
539                                                 empathy_account_equal,
540                                                 g_object_unref,
541                                                 NULL);
542
543         /* Set up menu */
544         main_window_favorite_chatroom_menu_setup (window);
545
546         gtk_widget_hide (window->edit_context);
547         gtk_widget_hide (window->edit_context_separator);
548
549         /* Set up presence chooser */
550         window->presence_chooser = empathy_presence_chooser_new ();
551         gtk_widget_show (window->presence_chooser);
552         item = gtk_tool_item_new ();
553         gtk_widget_show (GTK_WIDGET (item));
554         gtk_container_add (GTK_CONTAINER (item), window->presence_chooser);
555         gtk_tool_item_set_is_important (item, TRUE);
556         gtk_tool_item_set_expand (item, TRUE);
557         gtk_toolbar_insert (GTK_TOOLBAR (window->presence_toolbar), item, -1);
558
559         /* Set up the throbber */
560         ebox = gtk_event_box_new ();
561         gtk_event_box_set_visible_window (GTK_EVENT_BOX (ebox), FALSE);
562         gtk_widget_set_tooltip_text (ebox, _("Show and edit accounts"));
563         g_signal_connect (ebox,
564                           "button-press-event",
565                           G_CALLBACK (main_window_throbber_button_press_event_cb),
566                           window);
567         gtk_widget_show (ebox);
568
569         window->throbber = ephy_spinner_new ();
570         ephy_spinner_set_size (EPHY_SPINNER (window->throbber), GTK_ICON_SIZE_LARGE_TOOLBAR);
571         gtk_container_add (GTK_CONTAINER (ebox), window->throbber);
572         gtk_widget_show (window->throbber);
573
574         item = gtk_tool_item_new ();
575         gtk_container_add (GTK_CONTAINER (item), ebox);
576         gtk_toolbar_insert (GTK_TOOLBAR (window->presence_toolbar), item, -1);
577         gtk_widget_show (GTK_WIDGET (item));
578
579         /* Set up contact list. */
580         empathy_status_presets_get_all ();
581
582         list_iface = EMPATHY_CONTACT_LIST (empathy_contact_manager_new ());
583         window->list_store = empathy_contact_list_store_new (list_iface);
584         window->list_view = empathy_contact_list_view_new (window->list_store,
585                                                            EMPATHY_CONTACT_LIST_FEATURE_ALL,
586                                                            EMPATHY_CONTACT_FEATURE_ALL);
587         g_object_unref (list_iface);
588
589         gtk_widget_show (GTK_WIDGET (window->list_view));
590         gtk_container_add (GTK_CONTAINER (sw),
591                            GTK_WIDGET (window->list_view));
592         g_signal_connect (window->list_view, "row-activated",
593                           G_CALLBACK (main_window_row_activated_cb),
594                           window);
595
596         /* Load user-defined accelerators. */
597         main_window_accels_load ();
598
599         /* Set window size. */
600         empathy_geometry_load (GEOMETRY_NAME, &x, &y, &w, &h);
601
602         if (w >= 1 && h >= 1) {
603                 /* Use the defaults from the glade file if we
604                  * don't have good w, h geometry.
605                  */
606                 DEBUG ("Configuring window default size w:%d, h:%d", w, h);
607                 gtk_window_set_default_size (GTK_WINDOW (window->window), w, h);
608         }
609
610         if (x >= 0 && y >= 0) {
611                 /* Let the window manager position it if we
612                  * don't have good x, y coordinates.
613                  */
614                 DEBUG ("Configuring window default position x:%d, y:%d", x, y);
615                 gtk_window_move (GTK_WINDOW (window->window), x, y);
616         }
617
618         /* Enable event handling */
619         window->event_manager = empathy_event_manager_new ();
620         g_signal_connect (window->event_manager, "event-added",
621                           G_CALLBACK (main_window_event_added_cb),
622                           window);
623         g_signal_connect (window->event_manager, "event-removed",
624                           G_CALLBACK (main_window_event_removed_cb),
625                           window);
626
627         l = empathy_event_manager_get_events (window->event_manager);
628         while (l) {
629                 main_window_event_added_cb (window->event_manager,
630                                             l->data, window);
631                 l = l->next;
632         }
633
634         conf = empathy_conf_get ();
635
636         /* Show offline ? */
637         empathy_conf_get_bool (conf,
638                               EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE,
639                               &show_offline);
640         empathy_conf_notify_add (conf,
641                                 EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE,
642                                 main_window_notify_show_offline_cb,
643                                 show_offline_widget);
644
645         gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (show_offline_widget),
646                                         show_offline);
647
648         /* Show avatars ? */
649         empathy_conf_get_bool (conf,
650                               EMPATHY_PREFS_UI_SHOW_AVATARS,
651                               &show_avatars);
652         empathy_conf_notify_add (conf,
653                                 EMPATHY_PREFS_UI_SHOW_AVATARS,
654                                 (EmpathyConfNotifyFunc) main_window_notify_show_avatars_cb,
655                                 window);
656         empathy_contact_list_store_set_show_avatars (window->list_store, show_avatars);
657
658         /* Is compact ? */
659         empathy_conf_get_bool (conf,
660                               EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
661                               &compact_contact_list);
662         empathy_conf_notify_add (conf,
663                                 EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
664                                 (EmpathyConfNotifyFunc) main_window_notify_compact_contact_list_cb,
665                                 window);
666         empathy_contact_list_store_set_is_compact (window->list_store, compact_contact_list);
667
668         /* Sort criterium */
669         empathy_conf_notify_add (conf,
670                                 EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
671                                 (EmpathyConfNotifyFunc) main_window_notify_sort_criterium_cb,
672                                 window);
673         main_window_notify_sort_criterium_cb (conf,
674                                               EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM,
675                                               window);
676
677         main_window_update_status (window, window->account_manager);
678
679         return window->window;
680 }
681
682 static void
683 main_window_destroy_cb (GtkWidget         *widget,
684                         EmpathyMainWindow *window)
685 {
686         /* Save user-defined accelerators. */
687         main_window_accels_save ();
688
689         g_signal_handlers_disconnect_by_func (window->account_manager,
690                                               main_window_connection_changed_cb,
691                                               window);
692
693         if (window->size_timeout_id) {
694                 g_source_remove (window->size_timeout_id);
695         }
696
697         g_list_free (window->widgets_connected);
698
699         g_object_unref (window->mc);
700         g_object_unref (window->account_manager);
701         g_object_unref (window->list_store);
702         g_hash_table_destroy (window->errors);
703
704         g_signal_handlers_disconnect_by_func (window->event_manager,
705                                               main_window_event_added_cb,
706                                               window);
707         g_signal_handlers_disconnect_by_func (window->event_manager,
708                                               main_window_event_removed_cb,
709                                               window);
710         g_object_unref (window->event_manager);
711
712         g_free (window);
713 }
714
715 static void
716 main_window_favorite_chatroom_menu_setup (EmpathyMainWindow *window)
717 {
718         GList *chatrooms, *l;
719
720         window->chatroom_manager = empathy_chatroom_manager_new (NULL);
721         chatrooms = empathy_chatroom_manager_get_chatrooms (window->chatroom_manager, NULL);
722         window->room_menu = gtk_menu_item_get_submenu (GTK_MENU_ITEM (window->room));
723
724         for (l = chatrooms; l; l = l->next) {
725                 main_window_favorite_chatroom_menu_add (window, l->data);
726         }
727
728         if (!chatrooms) {
729                 gtk_widget_hide (window->room_sep);
730         }
731
732         gtk_widget_set_sensitive (window->room_join_favorites, chatrooms != NULL);
733
734         g_signal_connect (window->chatroom_manager, "chatroom-added",
735                           G_CALLBACK (main_window_favorite_chatroom_menu_added_cb),
736                           window);
737         g_signal_connect (window->chatroom_manager, "chatroom-removed",
738                           G_CALLBACK (main_window_favorite_chatroom_menu_removed_cb),
739                           window);
740
741         g_list_free (chatrooms);
742 }
743
744 static void
745 main_window_favorite_chatroom_menu_added_cb (EmpathyChatroomManager *manager,
746                                              EmpathyChatroom        *chatroom,
747                                              EmpathyMainWindow     *window)
748 {
749         main_window_favorite_chatroom_menu_add (window, chatroom);
750         gtk_widget_show (window->room_sep);
751         gtk_widget_set_sensitive (window->room_join_favorites, TRUE);
752 }
753
754 static void
755 main_window_favorite_chatroom_menu_removed_cb (EmpathyChatroomManager *manager,
756                                                EmpathyChatroom        *chatroom,
757                                                EmpathyMainWindow     *window)
758 {
759         GtkWidget *menu_item;
760
761         menu_item = g_object_get_data (G_OBJECT (chatroom), "menu_item");
762
763         g_object_set_data (G_OBJECT (chatroom), "menu_item", NULL);
764         gtk_widget_destroy (menu_item);
765
766         main_window_favorite_chatroom_menu_update (window);
767 }
768
769 static void
770 main_window_favorite_chatroom_menu_activate_cb (GtkMenuItem    *menu_item,
771                                                 EmpathyChatroom *chatroom)
772 {
773         main_window_favorite_chatroom_join (chatroom);
774 }
775
776 static void
777 main_window_favorite_chatroom_menu_update (EmpathyMainWindow *window)
778 {
779         GList *chatrooms;
780
781         chatrooms = empathy_chatroom_manager_get_chatrooms (window->chatroom_manager, NULL);
782
783         if (chatrooms) {
784                 gtk_widget_show (window->room_sep);
785         } else {
786                 gtk_widget_hide (window->room_sep);
787         }
788
789         gtk_widget_set_sensitive (window->room_join_favorites, chatrooms != NULL);
790         g_list_free (chatrooms);
791 }
792
793 static void
794 main_window_favorite_chatroom_menu_add (EmpathyMainWindow *window,
795                                         EmpathyChatroom    *chatroom)
796 {
797         GtkWidget   *menu_item;
798         const gchar *name;
799
800         if (g_object_get_data (G_OBJECT (chatroom), "menu_item")) {
801                 return;
802         }
803
804         name = empathy_chatroom_get_name (chatroom);
805         menu_item = gtk_menu_item_new_with_label (name);
806
807         g_object_set_data (G_OBJECT (chatroom), "menu_item", menu_item);
808         g_signal_connect (menu_item, "activate",
809                           G_CALLBACK (main_window_favorite_chatroom_menu_activate_cb),
810                           chatroom);
811
812         gtk_menu_shell_insert (GTK_MENU_SHELL (window->room_menu),
813                                menu_item, 3);
814
815         gtk_widget_show (menu_item);
816 }
817
818 static void
819 main_window_favorite_chatroom_join (EmpathyChatroom *chatroom)
820 {
821         MissionControl *mc;
822         McAccount      *account;
823         TpConnection   *connection;
824         const gchar    *room;
825
826         mc = empathy_mission_control_new ();
827         account = empathy_chatroom_get_account (chatroom);
828         room = empathy_chatroom_get_room (chatroom);
829
830         DEBUG ("Requesting channel for '%s'", room);
831
832         connection = mission_control_get_tpconnection (mc, account, NULL);
833         if (connection) {
834                 tp_connection_run_until_ready (connection, TRUE, NULL, NULL);   
835                 empathy_connection_request_channel (connection, -1,
836                                                     TP_IFACE_CHANNEL_TYPE_TEXT,
837                                                     TP_HANDLE_TYPE_ROOM,
838                                                     room, TRUE,
839                                                     NULL, NULL, NULL, NULL);
840                 g_object_unref (connection);
841         }
842         g_object_unref (mc);
843 }
844
845 static void
846 main_window_chat_quit_cb (GtkWidget         *widget,
847                           EmpathyMainWindow *window)
848 {
849         gtk_main_quit ();
850 }
851
852 static void
853 main_window_chat_new_message_cb (GtkWidget         *widget,
854                                  EmpathyMainWindow *window)
855 {
856         empathy_new_message_dialog_show (GTK_WINDOW (window->window));
857 }
858
859 static void
860 main_window_chat_history_cb (GtkWidget         *widget,
861                              EmpathyMainWindow *window)
862 {
863         empathy_log_window_show (NULL, NULL, FALSE, GTK_WINDOW (window->window));
864 }
865
866 static void
867 main_window_room_join_new_cb (GtkWidget         *widget,
868                               EmpathyMainWindow *window)
869 {
870         empathy_new_chatroom_dialog_show (GTK_WINDOW (window->window));
871 }
872
873 static void
874 main_window_room_join_favorites_cb (GtkWidget         *widget,
875                                     EmpathyMainWindow *window)
876 {
877         GList *chatrooms, *l;
878
879         chatrooms = empathy_chatroom_manager_get_chatrooms (window->chatroom_manager, NULL);
880         for (l = chatrooms; l; l = l->next) {
881                 main_window_favorite_chatroom_join (l->data);
882         }
883         g_list_free (chatrooms);
884 }
885
886 static void
887 main_window_room_manage_favorites_cb (GtkWidget         *widget,
888                                       EmpathyMainWindow *window)
889 {
890         empathy_chatrooms_window_show (GTK_WINDOW (window->window));
891 }
892
893 static void
894 main_window_chat_add_contact_cb (GtkWidget         *widget,
895                                  EmpathyMainWindow *window)
896 {
897         empathy_new_contact_dialog_show (GTK_WINDOW (window->window));
898 }
899
900 static void
901 main_window_chat_show_offline_cb (GtkCheckMenuItem  *item,
902                                   EmpathyMainWindow *window)
903 {
904         gboolean current;
905
906         current = gtk_check_menu_item_get_active (item);
907
908         empathy_conf_set_bool (empathy_conf_get (),
909                               EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE,
910                               current);
911
912         /* Turn off sound just while we alter the contact list. */
913         // FIXME: empathy_sound_set_enabled (FALSE);
914         empathy_contact_list_store_set_show_offline (window->list_store, current);
915         //empathy_sound_set_enabled (TRUE);
916 }
917
918 static gboolean
919 main_window_edit_button_press_event_cb (GtkWidget         *widget,
920                                         GdkEventButton    *event,
921                                         EmpathyMainWindow *window)
922 {
923         GtkWidget *submenu;
924
925         if (!event->button == 1) {
926                 return FALSE;
927         }
928
929         submenu = empathy_contact_list_view_get_contact_menu (window->list_view);
930         if (submenu) {
931                 GtkMenuItem *item;
932                 GtkWidget   *label;
933
934                 item = GTK_MENU_ITEM (window->edit_context);
935                 label = gtk_bin_get_child (GTK_BIN (item));
936                 gtk_label_set_text (GTK_LABEL (label), _("Contact"));
937
938                 gtk_widget_show (window->edit_context);
939                 gtk_widget_show (window->edit_context_separator);
940
941                 gtk_menu_item_set_submenu (item, submenu);
942
943                 return FALSE;
944         }
945
946         submenu = empathy_contact_list_view_get_group_menu (window->list_view);
947         if (submenu) {
948                 GtkMenuItem *item;
949                 GtkWidget   *label;
950
951                 item = GTK_MENU_ITEM (window->edit_context);
952                 label = gtk_bin_get_child (GTK_BIN (item));
953                 gtk_label_set_text (GTK_LABEL (label), _("Group"));
954
955                 gtk_widget_show (window->edit_context);
956                 gtk_widget_show (window->edit_context_separator);
957
958                 gtk_menu_item_set_submenu (item, submenu);
959
960                 return FALSE;
961         }
962
963         gtk_widget_hide (window->edit_context);
964         gtk_widget_hide (window->edit_context_separator);
965
966         return FALSE;
967 }
968
969 static void
970 main_window_edit_accounts_cb (GtkWidget         *widget,
971                               EmpathyMainWindow *window)
972 {
973         empathy_accounts_dialog_show (GTK_WINDOW (window->window), NULL);
974 }
975
976 static void
977 main_window_edit_personal_information_cb (GtkWidget         *widget,
978                                           EmpathyMainWindow *window)
979 {
980         GSList *accounts;
981
982         accounts = mission_control_get_online_connections (window->mc, NULL);
983         if (accounts) {
984                 EmpathyContactFactory *factory;
985                 EmpathyContact        *contact;
986                 McAccount             *account;
987
988                 account = accounts->data;
989                 factory = empathy_contact_factory_new ();
990                 contact = empathy_contact_factory_get_user (factory, account);
991                 empathy_contact_run_until_ready (contact,
992                                                  EMPATHY_CONTACT_READY_HANDLE |
993                                                  EMPATHY_CONTACT_READY_ID,
994                                                  NULL);
995
996                 empathy_contact_information_dialog_show (contact,
997                                                          GTK_WINDOW (window->window),
998                                                          TRUE, TRUE);
999
1000                 g_slist_foreach (accounts, (GFunc) g_object_unref, NULL);
1001                 g_slist_free (accounts);
1002                 g_object_unref (factory);
1003                 g_object_unref (contact);
1004         }
1005 }
1006
1007 static void
1008 main_window_edit_preferences_cb (GtkWidget         *widget,
1009                                  EmpathyMainWindow *window)
1010 {
1011         empathy_preferences_show (GTK_WINDOW (window->window));
1012 }
1013
1014 static void
1015 main_window_help_about_cb (GtkWidget         *widget,
1016                            EmpathyMainWindow *window)
1017 {
1018         empathy_about_dialog_new (GTK_WINDOW (window->window));
1019 }
1020
1021 static void
1022 main_window_help_contents_cb (GtkWidget         *widget,
1023                               EmpathyMainWindow *window)
1024 {
1025         empathy_url_show (widget, "ghelp:empathy");
1026 }
1027
1028 static gboolean
1029 main_window_throbber_button_press_event_cb (GtkWidget         *throbber_ebox,
1030                                             GdkEventButton    *event,
1031                                             EmpathyMainWindow *window)
1032 {
1033         if (event->type != GDK_BUTTON_PRESS ||
1034             event->button != 1) {
1035                 return FALSE;
1036         }
1037
1038         empathy_accounts_dialog_show (GTK_WINDOW (window->window), NULL);
1039
1040         return FALSE;
1041 }
1042
1043 static void
1044 main_window_error_edit_clicked_cb (GtkButton         *button,
1045                                    EmpathyMainWindow *window)
1046 {
1047         McAccount *account;
1048         GtkWidget *error_widget;
1049
1050         account = g_object_get_data (G_OBJECT (button), "account");
1051         empathy_accounts_dialog_show (GTK_WINDOW (window->window), account);
1052
1053         error_widget = g_hash_table_lookup (window->errors, account);
1054         gtk_widget_destroy (error_widget);
1055         g_hash_table_remove (window->errors, account);
1056 }
1057
1058 static void
1059 main_window_error_clear_clicked_cb (GtkButton         *button,
1060                                     EmpathyMainWindow *window)
1061 {
1062         McAccount *account;
1063         GtkWidget *error_widget;
1064
1065         account = g_object_get_data (G_OBJECT (button), "account");
1066         error_widget = g_hash_table_lookup (window->errors, account);
1067         gtk_widget_destroy (error_widget);
1068         g_hash_table_remove (window->errors, account);
1069 }
1070
1071 static void
1072 main_window_error_display (EmpathyMainWindow *window,
1073                            McAccount         *account,
1074                            const gchar       *message)
1075 {
1076         GtkWidget *child;
1077         GtkWidget *table;
1078         GtkWidget *image;
1079         GtkWidget *button_edit;
1080         GtkWidget *alignment;
1081         GtkWidget *hbox;
1082         GtkWidget *label;
1083         GtkWidget *fixed;
1084         GtkWidget *vbox;
1085         GtkWidget *button_close;
1086         gchar     *str;
1087
1088         child = g_hash_table_lookup (window->errors, account);
1089         if (child) {
1090                 label = g_object_get_data (G_OBJECT (child), "label");
1091
1092                 /* Just set the latest error and return */
1093                 str = g_markup_printf_escaped ("<b>%s</b>\n%s",
1094                                                mc_account_get_display_name (account),
1095                                                message);
1096                 gtk_label_set_markup (GTK_LABEL (label), str);
1097                 g_free (str);
1098
1099                 return;
1100         }
1101
1102         child = gtk_vbox_new (FALSE, 0);
1103         gtk_box_pack_start (GTK_BOX (window->errors_vbox), child, FALSE, TRUE, 0);
1104         gtk_container_set_border_width (GTK_CONTAINER (child), 6);
1105         gtk_widget_show (child);
1106
1107         table = gtk_table_new (2, 4, FALSE);
1108         gtk_widget_show (table);
1109         gtk_box_pack_start (GTK_BOX (child), table, TRUE, TRUE, 0);
1110         gtk_table_set_row_spacings (GTK_TABLE (table), 12);
1111         gtk_table_set_col_spacings (GTK_TABLE (table), 6);
1112
1113         image = gtk_image_new_from_stock (GTK_STOCK_DISCONNECT, GTK_ICON_SIZE_MENU);
1114         gtk_widget_show (image);
1115         gtk_table_attach (GTK_TABLE (table), image, 0, 1, 0, 2,
1116                           (GtkAttachOptions) (GTK_FILL),
1117                           (GtkAttachOptions) (GTK_FILL), 0, 0);
1118         gtk_misc_set_alignment (GTK_MISC (image), 0.5, 0);
1119
1120         button_edit = gtk_button_new ();
1121         gtk_widget_show (button_edit);
1122         gtk_table_attach (GTK_TABLE (table), button_edit, 1, 2, 1, 2,
1123                           (GtkAttachOptions) (GTK_FILL),
1124                           (GtkAttachOptions) (0), 0, 0);
1125
1126         alignment = gtk_alignment_new (0.5, 0.5, 0, 0);
1127         gtk_widget_show (alignment);
1128         gtk_container_add (GTK_CONTAINER (button_edit), alignment);
1129
1130         hbox = gtk_hbox_new (FALSE, 2);
1131         gtk_widget_show (hbox);
1132         gtk_container_add (GTK_CONTAINER (alignment), hbox);
1133
1134         image = gtk_image_new_from_stock (GTK_STOCK_EDIT, GTK_ICON_SIZE_BUTTON);
1135         gtk_widget_show (image);
1136         gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0);
1137
1138         label = gtk_label_new_with_mnemonic (_("_Edit account"));
1139         gtk_widget_show (label);
1140         gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
1141
1142         fixed = gtk_fixed_new ();
1143         gtk_widget_show (fixed);
1144         gtk_table_attach (GTK_TABLE (table), fixed, 2, 3, 1, 2,
1145                           (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
1146                           (GtkAttachOptions) (GTK_FILL), 0, 0);
1147
1148         vbox = gtk_vbox_new (FALSE, 6);
1149         gtk_widget_show (vbox);
1150         gtk_table_attach (GTK_TABLE (table), vbox, 3, 4, 0, 2,
1151                           (GtkAttachOptions) (GTK_FILL),
1152                           (GtkAttachOptions) (GTK_FILL), 0, 0);
1153
1154         button_close = gtk_button_new ();
1155         gtk_widget_show (button_close);
1156         gtk_box_pack_start (GTK_BOX (vbox), button_close, FALSE, FALSE, 0);
1157         gtk_button_set_relief (GTK_BUTTON (button_close), GTK_RELIEF_NONE);
1158
1159
1160         image = gtk_image_new_from_stock ("gtk-close", GTK_ICON_SIZE_MENU);
1161         gtk_widget_show (image);
1162         gtk_container_add (GTK_CONTAINER (button_close), image);
1163
1164         label = gtk_label_new ("");
1165         gtk_widget_show (label);
1166         gtk_table_attach (GTK_TABLE (table), label, 1, 3, 0, 1,
1167                           (GtkAttachOptions) (GTK_EXPAND | GTK_SHRINK | GTK_FILL),
1168                           (GtkAttachOptions) (GTK_EXPAND | GTK_SHRINK | GTK_FILL), 0, 0);
1169         gtk_widget_set_size_request (label, 175, -1);
1170         gtk_label_set_use_markup (GTK_LABEL (label), TRUE);
1171         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
1172         gtk_misc_set_alignment (GTK_MISC (label), 0, 0);
1173
1174         str = g_markup_printf_escaped ("<b>%s</b>\n%s",
1175                                        mc_account_get_display_name (account),
1176                                        message);
1177         gtk_label_set_markup (GTK_LABEL (label), str);
1178         g_free (str);
1179
1180         g_object_set_data (G_OBJECT (child), "label", label);
1181         g_object_set_data_full (G_OBJECT (button_edit),
1182                                 "account", g_object_ref (account),
1183                                 g_object_unref);
1184         g_object_set_data_full (G_OBJECT (button_close),
1185                                 "account", g_object_ref (account),
1186                                 g_object_unref);
1187
1188         g_signal_connect (button_edit, "clicked",
1189                           G_CALLBACK (main_window_error_edit_clicked_cb),
1190                           window);
1191
1192         g_signal_connect (button_close, "clicked",
1193                           G_CALLBACK (main_window_error_clear_clicked_cb),
1194                           window);
1195
1196         gtk_widget_show (window->errors_vbox);
1197
1198         g_hash_table_insert (window->errors, g_object_ref (account), child);
1199 }
1200
1201 static void
1202 main_window_update_status (EmpathyMainWindow *window, EmpathyAccountManager *manager)
1203 {
1204         int  connected;
1205         int  connecting;
1206         GList *l;
1207
1208         /* Count number of connected/connecting/disconnected accounts */
1209         connected = empathy_account_manager_get_connected_accounts (manager);
1210         connecting = empathy_account_manager_get_connecting_accounts (manager);
1211
1212         /* Update the spinner state */
1213         if (connecting > 0) {
1214                 ephy_spinner_start (EPHY_SPINNER (window->throbber));
1215         } else {
1216                 ephy_spinner_stop (EPHY_SPINNER (window->throbber));
1217         }
1218
1219         /* Update widgets sensibility */
1220         for (l = window->widgets_connected; l; l = l->next) {
1221                 gtk_widget_set_sensitive (l->data, (connected > 0));
1222         }
1223 }
1224
1225 /*
1226  * Accels
1227  */
1228 static void
1229 main_window_accels_load (void)
1230 {
1231         gchar *filename;
1232
1233         filename = g_build_filename (g_get_home_dir (), ".gnome2", PACKAGE_NAME, ACCELS_FILENAME, NULL);
1234         if (g_file_test (filename, G_FILE_TEST_EXISTS)) {
1235                 DEBUG ("Loading from:'%s'", filename);
1236                 gtk_accel_map_load (filename);
1237         }
1238
1239         g_free (filename);
1240 }
1241
1242 static void
1243 main_window_accels_save (void)
1244 {
1245         gchar *dir;
1246         gchar *file_with_path;
1247
1248         dir = g_build_filename (g_get_home_dir (), ".gnome2", PACKAGE_NAME, NULL);
1249         g_mkdir_with_parents (dir, S_IRUSR | S_IWUSR | S_IXUSR);
1250         file_with_path = g_build_filename (dir, ACCELS_FILENAME, NULL);
1251         g_free (dir);
1252
1253         DEBUG ("Saving to:'%s'", file_with_path);
1254         gtk_accel_map_save (file_with_path);
1255
1256         g_free (file_with_path);
1257 }
1258
1259 static void
1260 main_window_connection_items_setup (EmpathyMainWindow *window,
1261                                     GladeXML          *glade)
1262 {
1263         GList         *list;
1264         GtkWidget     *w;
1265         gint           i;
1266         const gchar *widgets_connected[] = {
1267                 "room",
1268                 "chat_new_message",
1269                 "chat_add_contact",
1270                 "edit_personal_information"
1271         };
1272
1273         for (i = 0, list = NULL; i < G_N_ELEMENTS (widgets_connected); i++) {
1274                 w = glade_xml_get_widget (glade, widgets_connected[i]);
1275                 list = g_list_prepend (list, w);
1276         }
1277
1278         window->widgets_connected = list;
1279 }
1280
1281 static gboolean
1282 main_window_configure_event_timeout_cb (EmpathyMainWindow *window)
1283 {
1284         gint x, y, w, h;
1285
1286         gtk_window_get_size (GTK_WINDOW (window->window), &w, &h);
1287         gtk_window_get_position (GTK_WINDOW (window->window), &x, &y);
1288
1289         empathy_geometry_save (GEOMETRY_NAME, x, y, w, h);
1290
1291         window->size_timeout_id = 0;
1292
1293         return FALSE;
1294 }
1295
1296 static gboolean
1297 main_window_configure_event_cb (GtkWidget         *widget,
1298                                 GdkEventConfigure *event,
1299                                 EmpathyMainWindow *window)
1300 {
1301         if (window->size_timeout_id) {
1302                 g_source_remove (window->size_timeout_id);
1303         }
1304
1305         window->size_timeout_id = g_timeout_add_seconds (1,
1306                                                          (GSourceFunc) main_window_configure_event_timeout_cb,
1307                                                          window);
1308
1309         return FALSE;
1310 }
1311
1312 static void
1313 main_window_notify_show_offline_cb (EmpathyConf  *conf,
1314                                     const gchar *key,
1315                                     gpointer     check_menu_item)
1316 {
1317         gboolean show_offline;
1318
1319         if (empathy_conf_get_bool (conf, key, &show_offline)) {
1320                 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (check_menu_item),
1321                                                 show_offline);
1322         }
1323 }
1324
1325 static void
1326 main_window_notify_show_avatars_cb (EmpathyConf        *conf,
1327                                     const gchar       *key,
1328                                     EmpathyMainWindow *window)
1329 {
1330         gboolean show_avatars;
1331
1332         if (empathy_conf_get_bool (conf, key, &show_avatars)) {
1333                 empathy_contact_list_store_set_show_avatars (window->list_store,
1334                                                             show_avatars);
1335         }
1336 }
1337
1338 static void
1339 main_window_notify_compact_contact_list_cb (EmpathyConf        *conf,
1340                                             const gchar       *key,
1341                                             EmpathyMainWindow *window)
1342 {
1343         gboolean compact_contact_list;
1344
1345         if (empathy_conf_get_bool (conf, key, &compact_contact_list)) {
1346                 empathy_contact_list_store_set_is_compact (window->list_store,
1347                                                           compact_contact_list);
1348         }
1349 }
1350
1351 static void
1352 main_window_notify_sort_criterium_cb (EmpathyConf       *conf,
1353                                       const gchar       *key,
1354                                       EmpathyMainWindow *window)
1355 {
1356         gchar *str = NULL;
1357
1358         if (empathy_conf_get_string (conf, key, &str) && str) {
1359                 GType       type;
1360                 GEnumClass *enum_class;
1361                 GEnumValue *enum_value;
1362
1363                 type = empathy_contact_list_store_sort_get_type ();
1364                 enum_class = G_ENUM_CLASS (g_type_class_peek (type));
1365                 enum_value = g_enum_get_value_by_nick (enum_class, str);
1366                 g_free (str);
1367
1368                 if (enum_value) {
1369                         empathy_contact_list_store_set_sort_criterium (window->list_store, 
1370                                                                        enum_value->value);
1371                 }
1372         }
1373 }
1374