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