1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
3 * Copyright (C) 2002-2007 Imendio AB
4 * Copyright (C) 2007-2008 Collabora Ltd.
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.
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.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301 USA
21 * Authors: Xavier Claessens <xclaesse@gmail.com>
28 #include <glib/gi18n.h>
30 #include <telepathy-glib/account-manager.h>
32 #include <libempathy/empathy-contact.h>
33 #include <libempathy/empathy-idle.h>
34 #include <libempathy/empathy-utils.h>
35 #include <libempathy/empathy-dispatcher.h>
36 #include <libempathy/empathy-chatroom-manager.h>
37 #include <libempathy/empathy-chatroom.h>
38 #include <libempathy/empathy-contact-list.h>
39 #include <libempathy/empathy-contact-manager.h>
40 #include <libempathy/empathy-status-presets.h>
42 #include <libempathy-gtk/empathy-conf.h>
43 #include <libempathy-gtk/empathy-contact-dialogs.h>
44 #include <libempathy-gtk/empathy-contact-list-store.h>
45 #include <libempathy-gtk/empathy-contact-list-view.h>
46 #include <libempathy-gtk/empathy-geometry.h>
47 #include <libempathy-gtk/empathy-gtk-enum-types.h>
48 #include <libempathy-gtk/empathy-new-message-dialog.h>
49 #include <libempathy-gtk/empathy-new-call-dialog.h>
50 #include <libempathy-gtk/empathy-log-window.h>
51 #include <libempathy-gtk/empathy-presence-chooser.h>
52 #include <libempathy-gtk/empathy-sound.h>
53 #include <libempathy-gtk/empathy-ui-utils.h>
55 #include "empathy-accounts-dialog.h"
56 #include "empathy-main-window.h"
57 #include "ephy-spinner.h"
58 #include "empathy-preferences.h"
59 #include "empathy-about-dialog.h"
60 #include "empathy-debug-window.h"
61 #include "empathy-new-chatroom-dialog.h"
62 #include "empathy-map-view.h"
63 #include "empathy-chatrooms-window.h"
64 #include "empathy-event-manager.h"
65 #include "empathy-ft-manager.h"
67 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
68 #include <libempathy/empathy-debug.h>
70 /* Flashing delay for icons (milliseconds). */
71 #define FLASH_TIMEOUT 500
73 /* Minimum width of roster window if something goes wrong. */
76 /* Accels (menu shortcuts) can be configured and saved */
77 #define ACCELS_FILENAME "accels.txt"
79 /* Name in the geometry file */
80 #define GEOMETRY_NAME "main-window"
83 EmpathyContactListView
*list_view
;
84 EmpathyContactListStore
*list_store
;
85 TpAccountManager
*account_manager
;
86 EmpathyChatroomManager
*chatroom_manager
;
87 EmpathyEventManager
*event_manager
;
88 guint flash_timeout_id
;
94 GtkWidget
*presence_toolbar
;
95 GtkWidget
*presence_chooser
;
96 GtkWidget
*errors_vbox
;
98 GtkToggleAction
*show_protocols
;
99 GtkRadioAction
*sort_by_name
;
100 GtkRadioAction
*sort_by_status
;
101 GtkRadioAction
*normal_with_avatars
;
102 GtkRadioAction
*normal_size
;
103 GtkRadioAction
*compact_size
;
105 GtkUIManager
*ui_manager
;
106 GtkAction
*view_history
;
107 GtkAction
*room_join_favorites
;
108 GtkWidget
*room_menu
;
109 GtkWidget
*room_separator
;
110 GtkWidget
*edit_context
;
111 GtkWidget
*edit_context_separator
;
113 guint size_timeout_id
;
116 /* Actions that are enabled when there are connected accounts */
117 GList
*actions_connected
;
120 static EmpathyMainWindow
*main_window
= NULL
;
123 main_window_flash_stop (EmpathyMainWindow
*window
)
125 if (window
->flash_timeout_id
== 0) {
129 DEBUG ("Stop flashing");
130 g_source_remove (window
->flash_timeout_id
);
131 window
->flash_timeout_id
= 0;
132 window
->flash_on
= FALSE
;
138 EmpathyMainWindow
*window
;
142 main_window_flash_foreach (GtkTreeModel
*model
,
147 FlashForeachData
*data
= (FlashForeachData
*) user_data
;
148 EmpathyContact
*contact
;
149 const gchar
*icon_name
;
150 GtkTreePath
*parent_path
= NULL
;
151 GtkTreeIter parent_iter
;
152 GdkPixbuf
*pixbuf
= NULL
;
154 /* To be used with gtk_tree_model_foreach, update the status icon
155 * of the contact to show the event icon (on=TRUE) or the presence
157 gtk_tree_model_get (model
, iter
,
158 EMPATHY_CONTACT_LIST_STORE_COL_CONTACT
, &contact
,
161 if (contact
!= data
->event
->contact
) {
163 g_object_unref (contact
);
169 icon_name
= data
->event
->icon_name
;
170 pixbuf
= empathy_pixbuf_from_icon_name (icon_name
, GTK_ICON_SIZE_MENU
);
172 pixbuf
= contact_list_store_get_contact_status_icon (
173 data
->window
->list_store
,
177 gtk_tree_store_set (GTK_TREE_STORE (model
), iter
,
178 EMPATHY_CONTACT_LIST_STORE_COL_ICON_STATUS
, pixbuf
,
181 /* To make sure the parent is shown correctly, we emit
182 * the row-changed signal on the parent so it prompts
183 * it to be refreshed by the filter func.
185 if (gtk_tree_model_iter_parent (model
, &parent_iter
, iter
)) {
186 parent_path
= gtk_tree_model_get_path (model
, &parent_iter
);
189 gtk_tree_model_row_changed (model
, parent_path
, &parent_iter
);
190 gtk_tree_path_free (parent_path
);
193 g_object_unref (contact
);
199 main_window_flash_cb (EmpathyMainWindow
*window
)
203 gboolean found_event
= FALSE
;
204 FlashForeachData data
;
206 window
->flash_on
= !window
->flash_on
;
207 data
.on
= window
->flash_on
;
208 model
= GTK_TREE_MODEL (window
->list_store
);
210 events
= empathy_event_manager_get_events (window
->event_manager
);
211 for (l
= events
; l
; l
= l
->next
) {
212 data
.event
= l
->data
;
213 data
.window
= window
;
214 if (!data
.event
->contact
|| !data
.event
->must_ack
) {
219 gtk_tree_model_foreach (model
,
220 main_window_flash_foreach
,
225 main_window_flash_stop (window
);
232 main_window_flash_start (EmpathyMainWindow
*window
)
234 if (window
->flash_timeout_id
!= 0) {
238 DEBUG ("Start flashing");
239 window
->flash_timeout_id
= g_timeout_add (FLASH_TIMEOUT
,
240 (GSourceFunc
) main_window_flash_cb
,
242 main_window_flash_cb (window
);
246 main_window_event_added_cb (EmpathyEventManager
*manager
,
248 EmpathyMainWindow
*window
)
250 if (event
->contact
) {
251 main_window_flash_start (window
);
256 main_window_event_removed_cb (EmpathyEventManager
*manager
,
258 EmpathyMainWindow
*window
)
260 FlashForeachData data
;
262 if (!event
->contact
) {
268 data
.window
= window
;
269 gtk_tree_model_foreach (GTK_TREE_MODEL (window
->list_store
),
270 main_window_flash_foreach
,
275 main_window_row_activated_cb (EmpathyContactListView
*view
,
277 GtkTreeViewColumn
*col
,
278 EmpathyMainWindow
*window
)
280 EmpathyContact
*contact
;
285 model
= GTK_TREE_MODEL (window
->list_store
);
286 gtk_tree_model_get_iter (model
, &iter
, path
);
287 gtk_tree_model_get (model
, &iter
,
288 EMPATHY_CONTACT_LIST_STORE_COL_CONTACT
, &contact
,
295 /* If the contact has an event activate it, otherwise the
296 * default handler of row-activated will be called. */
297 events
= empathy_event_manager_get_events (window
->event_manager
);
298 for (l
= events
; l
; l
= l
->next
) {
299 EmpathyEvent
*event
= l
->data
;
301 if (event
->contact
== contact
) {
302 DEBUG ("Activate event");
303 empathy_event_activate (event
);
305 /* We don't want the default handler of this signal
306 * (e.g. open a chat) */
307 g_signal_stop_emission_by_name (view
, "row-activated");
312 g_object_unref (contact
);
316 main_window_remove_error (EmpathyMainWindow
*window
,
319 GtkWidget
*error_widget
;
321 error_widget
= g_hash_table_lookup (window
->errors
, account
);
322 if (error_widget
!= NULL
) {
323 gtk_widget_destroy (error_widget
);
324 g_hash_table_remove (window
->errors
, account
);
329 main_window_account_disabled_cb (TpAccountManager
*manager
,
331 EmpathyMainWindow
*window
)
333 main_window_remove_error (window
, account
);
337 main_window_error_retry_clicked_cb (GtkButton
*button
,
338 EmpathyMainWindow
*window
)
342 account
= g_object_get_data (G_OBJECT (button
), "account");
343 tp_account_reconnect_async (account
, NULL
, NULL
);
345 main_window_remove_error (window
, account
);
349 main_window_error_edit_clicked_cb (GtkButton
*button
,
350 EmpathyMainWindow
*window
)
354 account
= g_object_get_data (G_OBJECT (button
), "account");
355 empathy_accounts_dialog_show (GTK_WINDOW (window
->window
), account
);
357 main_window_remove_error (window
, account
);
361 main_window_error_close_clicked_cb (GtkButton
*button
,
362 EmpathyMainWindow
*window
)
366 account
= g_object_get_data (G_OBJECT (button
), "account");
367 main_window_remove_error (window
, account
);
371 main_window_error_display (EmpathyMainWindow
*window
,
373 const gchar
*message
)
376 GtkWidget
*content_area
;
379 GtkWidget
*retry_button
;
380 GtkWidget
*edit_button
;
381 GtkWidget
*close_button
;
382 GtkWidget
*action_area
;
383 GtkWidget
*action_table
;
384 GtkRcStyle
*rc_style
;
386 const gchar
*icon_name
;
388 str
= g_markup_printf_escaped ("<b>%s</b>\n%s",
389 tp_account_get_display_name (account
),
392 info_bar
= g_hash_table_lookup (window
->errors
, account
);
394 label
= g_object_get_data (G_OBJECT (info_bar
), "label");
396 /* Just set the latest error and return */
397 gtk_label_set_markup (GTK_LABEL (label
), str
);
403 info_bar
= gtk_info_bar_new ();
404 gtk_info_bar_set_message_type (GTK_INFO_BAR (info_bar
), GTK_MESSAGE_WARNING
);
406 gtk_widget_set_no_show_all (info_bar
, TRUE
);
407 gtk_box_pack_start (GTK_BOX (window
->errors_vbox
), info_bar
, FALSE
, TRUE
, 0);
408 gtk_widget_show (info_bar
);
410 icon_name
= tp_account_get_icon_name (account
);
411 image
= gtk_image_new_from_icon_name (icon_name
, GTK_ICON_SIZE_SMALL_TOOLBAR
);
412 gtk_widget_show (image
);
414 label
= gtk_label_new (str
);
415 gtk_label_set_use_markup (GTK_LABEL (label
), TRUE
);
416 gtk_widget_show (label
);
419 content_area
= gtk_info_bar_get_content_area (GTK_INFO_BAR (info_bar
));
420 gtk_box_pack_start (GTK_BOX (content_area
), image
, FALSE
, FALSE
, 0);
421 gtk_box_pack_start (GTK_BOX (content_area
), label
, FALSE
, FALSE
, 0);
423 /* make small style for the buttons */
424 rc_style
= gtk_rc_style_new ();
425 rc_style
->xthickness
= rc_style
->ythickness
= 4;
427 image
= gtk_image_new_from_stock (GTK_STOCK_REFRESH
, GTK_ICON_SIZE_BUTTON
);
428 retry_button
= gtk_button_new ();
429 gtk_button_set_image (GTK_BUTTON (retry_button
), image
);
430 gtk_widget_modify_style (retry_button
, rc_style
);
431 gtk_widget_set_tooltip_text (retry_button
, _("Reconnect"));
432 gtk_widget_show (retry_button
);
434 image
= gtk_image_new_from_stock (GTK_STOCK_EDIT
, GTK_ICON_SIZE_BUTTON
);
435 edit_button
= gtk_button_new ();
436 gtk_button_set_image (GTK_BUTTON (edit_button
), image
);
437 gtk_widget_modify_style (edit_button
, rc_style
);
438 gtk_widget_set_tooltip_text (edit_button
, _("Edit Account"));
439 gtk_widget_show (edit_button
);
441 image
= gtk_image_new_from_stock (GTK_STOCK_CLOSE
, GTK_ICON_SIZE_BUTTON
);
442 close_button
= gtk_button_new ();
443 gtk_button_set_image (GTK_BUTTON (close_button
), image
);
444 gtk_widget_modify_style (close_button
, rc_style
);
445 gtk_widget_set_tooltip_text (close_button
, _("Close"));
446 gtk_widget_show (close_button
);
448 action_table
= gtk_table_new (1, 3, FALSE
);
449 gtk_table_set_col_spacings (GTK_TABLE (action_table
), 2);
450 gtk_widget_show (action_table
);
452 action_area
= gtk_info_bar_get_action_area (GTK_INFO_BAR (info_bar
));
453 gtk_box_pack_start (GTK_BOX (action_area
), action_table
, FALSE
, FALSE
, 0);
455 gtk_table_attach (GTK_TABLE (action_table
), retry_button
, 0, 1, 0, 1,
456 (GtkAttachOptions
) (GTK_SHRINK
),
457 (GtkAttachOptions
) (GTK_SHRINK
), 0, 0);
458 gtk_table_attach (GTK_TABLE (action_table
), edit_button
, 1, 2, 0, 1,
459 (GtkAttachOptions
) (GTK_SHRINK
),
460 (GtkAttachOptions
) (GTK_SHRINK
), 0, 0);
461 gtk_table_attach (GTK_TABLE (action_table
), close_button
, 2, 3, 0, 1,
462 (GtkAttachOptions
) (GTK_SHRINK
),
463 (GtkAttachOptions
) (GTK_SHRINK
), 0, 0);
465 g_object_set_data (G_OBJECT (info_bar
), "label", label
);
466 g_object_set_data_full (G_OBJECT (info_bar
),
467 "account", g_object_ref (account
),
469 g_object_set_data_full (G_OBJECT (edit_button
),
470 "account", g_object_ref (account
),
472 g_object_set_data_full (G_OBJECT (close_button
),
473 "account", g_object_ref (account
),
475 g_object_set_data_full (G_OBJECT (retry_button
),
476 "account", g_object_ref (account
),
479 g_signal_connect (edit_button
, "clicked",
480 G_CALLBACK (main_window_error_edit_clicked_cb
),
482 g_signal_connect (close_button
, "clicked",
483 G_CALLBACK (main_window_error_close_clicked_cb
),
485 g_signal_connect (retry_button
, "clicked",
486 G_CALLBACK (main_window_error_retry_clicked_cb
),
489 gtk_widget_show (window
->errors_vbox
);
491 g_object_unref (rc_style
);
492 g_hash_table_insert (window
->errors
, g_object_ref (account
), info_bar
);
496 main_window_update_status (EmpathyMainWindow
*window
)
498 gboolean connected
, connecting
;
501 connected
= empathy_account_manager_get_accounts_connected (&connecting
);
503 /* Update the spinner state */
505 ephy_spinner_start (EPHY_SPINNER (window
->throbber
));
507 ephy_spinner_stop (EPHY_SPINNER (window
->throbber
));
510 /* Update widgets sensibility */
511 for (l
= window
->actions_connected
; l
; l
= l
->next
) {
512 gtk_action_set_sensitive (l
->data
, connected
);
517 main_window_connection_changed_cb (TpAccount
*account
,
521 gchar
*dbus_error_name
,
523 EmpathyMainWindow
*window
)
525 main_window_update_status (window
);
527 if (current
== TP_CONNECTION_STATUS_DISCONNECTED
&&
528 reason
!= TP_CONNECTION_STATUS_REASON_REQUESTED
) {
529 const gchar
*message
;
531 message
= empathy_status_reason_get_default_message (reason
);
533 main_window_error_display (window
, account
, message
);
536 if (current
== TP_CONNECTION_STATUS_DISCONNECTED
) {
537 empathy_sound_play (GTK_WIDGET (window
->window
),
538 EMPATHY_SOUND_ACCOUNT_DISCONNECTED
);
541 if (current
== TP_CONNECTION_STATUS_CONNECTED
) {
542 empathy_sound_play (GTK_WIDGET (window
->window
),
543 EMPATHY_SOUND_ACCOUNT_CONNECTED
);
545 /* Account connected without error, remove error message if any */
546 main_window_remove_error (window
, account
);
551 main_window_contact_presence_changed_cb (EmpathyContactMonitor
*monitor
,
552 EmpathyContact
*contact
,
553 TpConnectionPresenceType current
,
554 TpConnectionPresenceType previous
,
555 EmpathyMainWindow
*window
)
558 gboolean should_play
= FALSE
;
561 account
= empathy_contact_get_account (contact
);
562 idle
= empathy_idle_dup_singleton ();
564 should_play
= !empathy_idle_account_is_just_connected (idle
, account
);
569 if (tp_connection_presence_type_cmp_availability (previous
,
570 TP_CONNECTION_PRESENCE_TYPE_OFFLINE
) > 0)
572 /* contact was online */
573 if (tp_connection_presence_type_cmp_availability (current
,
574 TP_CONNECTION_PRESENCE_TYPE_OFFLINE
) <= 0)
575 /* someone is logging off */
576 empathy_sound_play (GTK_WIDGET (window
->window
),
577 EMPATHY_SOUND_CONTACT_DISCONNECTED
);
581 /* contact was offline */
582 if (tp_connection_presence_type_cmp_availability (current
,
583 TP_CONNECTION_PRESENCE_TYPE_OFFLINE
) > 0)
584 /* someone is logging in */
585 empathy_sound_play (GTK_WIDGET (window
->window
),
586 EMPATHY_SOUND_CONTACT_CONNECTED
);
590 g_object_unref (idle
);
594 main_window_accels_load (void)
598 filename
= g_build_filename (g_get_user_config_dir (), PACKAGE_NAME
, ACCELS_FILENAME
, NULL
);
599 if (g_file_test (filename
, G_FILE_TEST_EXISTS
)) {
600 DEBUG ("Loading from:'%s'", filename
);
601 gtk_accel_map_load (filename
);
608 main_window_accels_save (void)
611 gchar
*file_with_path
;
613 dir
= g_build_filename (g_get_user_config_dir (), PACKAGE_NAME
, NULL
);
614 g_mkdir_with_parents (dir
, S_IRUSR
| S_IWUSR
| S_IXUSR
);
615 file_with_path
= g_build_filename (dir
, ACCELS_FILENAME
, NULL
);
618 DEBUG ("Saving to:'%s'", file_with_path
);
619 gtk_accel_map_save (file_with_path
);
621 g_free (file_with_path
);
625 main_window_destroy_cb (GtkWidget
*widget
,
626 EmpathyMainWindow
*window
)
628 /* Save user-defined accelerators. */
629 main_window_accels_save ();
631 g_list_free (window
->actions_connected
);
633 g_object_unref (window
->account_manager
);
634 g_object_unref (window
->list_store
);
635 g_hash_table_destroy (window
->errors
);
637 g_signal_handlers_disconnect_by_func (window
->event_manager
,
638 main_window_event_added_cb
,
640 g_signal_handlers_disconnect_by_func (window
->event_manager
,
641 main_window_event_removed_cb
,
643 g_object_unref (window
->event_manager
);
644 g_object_unref (window
->ui_manager
);
650 main_window_chat_quit_cb (GtkAction
*action
,
651 EmpathyMainWindow
*window
)
657 main_window_view_history_cb (GtkAction
*action
,
658 EmpathyMainWindow
*window
)
660 empathy_log_window_show (NULL
, NULL
, FALSE
, GTK_WINDOW (window
->window
));
664 main_window_chat_new_message_cb (GtkAction
*action
,
665 EmpathyMainWindow
*window
)
667 empathy_new_message_dialog_show (GTK_WINDOW (window
->window
));
671 main_window_chat_new_call_cb (GtkAction
*action
,
672 EmpathyMainWindow
*window
)
674 empathy_new_call_dialog_show (GTK_WINDOW (window
->window
));
678 main_window_chat_add_contact_cb (GtkAction
*action
,
679 EmpathyMainWindow
*window
)
681 empathy_new_contact_dialog_show (GTK_WINDOW (window
->window
));
685 main_window_view_show_ft_manager (GtkAction
*action
,
686 EmpathyMainWindow
*window
)
688 empathy_ft_manager_show ();
692 main_window_view_show_offline_cb (GtkToggleAction
*action
,
693 EmpathyMainWindow
*window
)
697 current
= gtk_toggle_action_get_active (action
);
698 empathy_conf_set_bool (empathy_conf_get (),
699 EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE
,
702 /* Turn off sound just while we alter the contact list. */
703 // FIXME: empathy_sound_set_enabled (FALSE);
704 empathy_contact_list_store_set_show_offline (window
->list_store
, current
);
705 //empathy_sound_set_enabled (TRUE);
709 main_window_notify_sort_contact_cb (EmpathyConf
*conf
,
711 EmpathyMainWindow
*window
)
715 if (empathy_conf_get_string (conf
, key
, &str
) && str
) {
717 GEnumClass
*enum_class
;
718 GEnumValue
*enum_value
;
720 type
= empathy_contact_list_store_sort_get_type ();
721 enum_class
= G_ENUM_CLASS (g_type_class_peek (type
));
722 enum_value
= g_enum_get_value_by_nick (enum_class
, str
);
724 /* By changing the value of the GtkRadioAction,
725 it emits a signal that calls main_window_view_sort_contacts_cb
726 which updates the contacts list */
727 gtk_radio_action_set_current_value (window
->sort_by_name
,
730 g_warning ("Wrong value for sort_criterium configuration : %s", str
);
737 main_window_view_sort_contacts_cb (GtkRadioAction
*action
,
738 GtkRadioAction
*current
,
739 EmpathyMainWindow
*window
)
741 EmpathyContactListStoreSort value
;
744 GEnumClass
*enum_class
;
745 GEnumValue
*enum_value
;
747 value
= gtk_radio_action_get_current_value (action
);
748 group
= gtk_radio_action_get_group (action
);
750 /* Get string from index */
751 type
= empathy_contact_list_store_sort_get_type ();
752 enum_class
= G_ENUM_CLASS (g_type_class_peek (type
));
753 enum_value
= g_enum_get_value (enum_class
, g_slist_index (group
, current
));
756 g_warning ("No GEnumValue for EmpathyContactListSort with GtkRadioAction index:%d",
757 g_slist_index (group
, action
));
759 empathy_conf_set_string (empathy_conf_get (),
760 EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM
,
761 enum_value
->value_nick
);
763 empathy_contact_list_store_set_sort_criterium (window
->list_store
, value
);
767 main_window_view_show_protocols_cb (GtkToggleAction
*action
,
768 EmpathyMainWindow
*window
)
772 value
= gtk_toggle_action_get_active (action
);
774 empathy_conf_set_bool (empathy_conf_get (),
775 EMPATHY_PREFS_UI_SHOW_PROTOCOLS
,
777 empathy_contact_list_store_set_show_protocols (window
->list_store
,
781 /* Matches GtkRadioAction values set in empathy-main-window.ui */
782 #define CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS 0
783 #define CONTACT_LIST_NORMAL_SIZE 1
784 #define CONTACT_LIST_COMPACT_SIZE 2
787 main_window_view_contacts_list_size_cb (GtkRadioAction
*action
,
788 GtkRadioAction
*current
,
789 EmpathyMainWindow
*window
)
793 value
= gtk_radio_action_get_current_value (action
);
795 empathy_conf_set_bool (empathy_conf_get (),
796 EMPATHY_PREFS_UI_SHOW_AVATARS
,
797 value
== CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS
);
798 empathy_conf_set_bool (empathy_conf_get (),
799 EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST
,
800 value
== CONTACT_LIST_COMPACT_SIZE
);
802 empathy_contact_list_store_set_show_avatars (window
->list_store
,
803 value
== CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS
);
804 empathy_contact_list_store_set_is_compact (window
->list_store
,
805 value
== CONTACT_LIST_COMPACT_SIZE
);
807 gtk_action_set_sensitive (GTK_ACTION (window
->show_protocols
),
808 value
!= CONTACT_LIST_COMPACT_SIZE
);
811 static void main_window_notify_show_protocols_cb (EmpathyConf
*conf
,
813 EmpathyMainWindow
*window
)
815 gboolean show_protocols
;
817 if (empathy_conf_get_bool (conf
,
818 EMPATHY_PREFS_UI_SHOW_PROTOCOLS
,
820 gtk_toggle_action_set_active (window
->show_protocols
,
827 main_window_notify_contact_list_size_cb (EmpathyConf
*conf
,
829 EmpathyMainWindow
*window
)
831 gboolean show_avatars
;
832 gboolean compact_contact_list
;
833 gint value
= CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS
;
835 if (empathy_conf_get_bool (conf
,
836 EMPATHY_PREFS_UI_SHOW_AVATARS
,
838 && empathy_conf_get_bool (conf
,
839 EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST
,
840 &compact_contact_list
)) {
841 if (compact_contact_list
) {
842 value
= CONTACT_LIST_COMPACT_SIZE
;
843 } else if (show_avatars
) {
844 value
= CONTACT_LIST_NORMAL_SIZE_WITH_AVATARS
;
846 value
= CONTACT_LIST_NORMAL_SIZE
;
849 /* By changing the value of the GtkRadioAction,
850 it emits a signal that calls main_window_view_contacts_list_size_cb
851 which updates the contacts list */
852 gtk_radio_action_set_current_value (window
->normal_with_avatars
, value
);
856 main_window_view_show_map_cb (GtkCheckMenuItem
*item
,
857 EmpathyMainWindow
*window
)
859 #if HAVE_LIBCHAMPLAIN
860 empathy_map_view_show ();
865 main_window_favorite_chatroom_join (EmpathyChatroom
*chatroom
)
868 TpConnection
*connection
;
871 account
= empathy_chatroom_get_account (chatroom
);
872 connection
= tp_account_get_connection (account
);
873 room
= empathy_chatroom_get_room (chatroom
);
875 if (connection
!= NULL
) {
876 DEBUG ("Requesting channel for '%s'", room
);
877 empathy_dispatcher_join_muc (connection
, room
, NULL
, NULL
);
882 main_window_favorite_chatroom_menu_activate_cb (GtkMenuItem
*menu_item
,
883 EmpathyChatroom
*chatroom
)
885 main_window_favorite_chatroom_join (chatroom
);
889 main_window_favorite_chatroom_menu_add (EmpathyMainWindow
*window
,
890 EmpathyChatroom
*chatroom
)
892 GtkWidget
*menu_item
;
895 if (g_object_get_data (G_OBJECT (chatroom
), "menu_item")) {
899 name
= empathy_chatroom_get_name (chatroom
);
900 menu_item
= gtk_menu_item_new_with_label (name
);
902 g_object_set_data (G_OBJECT (chatroom
), "menu_item", menu_item
);
903 g_signal_connect (menu_item
, "activate",
904 G_CALLBACK (main_window_favorite_chatroom_menu_activate_cb
),
907 gtk_menu_shell_insert (GTK_MENU_SHELL (window
->room_menu
),
910 gtk_widget_show (menu_item
);
914 main_window_favorite_chatroom_menu_added_cb (EmpathyChatroomManager
*manager
,
915 EmpathyChatroom
*chatroom
,
916 EmpathyMainWindow
*window
)
918 main_window_favorite_chatroom_menu_add (window
, chatroom
);
919 gtk_widget_show (window
->room_separator
);
920 gtk_action_set_sensitive (window
->room_join_favorites
, TRUE
);
924 main_window_favorite_chatroom_menu_removed_cb (EmpathyChatroomManager
*manager
,
925 EmpathyChatroom
*chatroom
,
926 EmpathyMainWindow
*window
)
928 GtkWidget
*menu_item
;
931 menu_item
= g_object_get_data (G_OBJECT (chatroom
), "menu_item");
932 g_object_set_data (G_OBJECT (chatroom
), "menu_item", NULL
);
933 gtk_widget_destroy (menu_item
);
935 chatrooms
= empathy_chatroom_manager_get_chatrooms (window
->chatroom_manager
, NULL
);
937 gtk_widget_show (window
->room_separator
);
939 gtk_widget_hide (window
->room_separator
);
942 gtk_action_set_sensitive (window
->room_join_favorites
, chatrooms
!= NULL
);
943 g_list_free (chatrooms
);
947 main_window_favorite_chatroom_menu_setup (EmpathyMainWindow
*window
)
949 GList
*chatrooms
, *l
;
952 window
->chatroom_manager
= empathy_chatroom_manager_dup_singleton (NULL
);
953 chatrooms
= empathy_chatroom_manager_get_chatrooms (window
->chatroom_manager
, NULL
);
954 room
= gtk_ui_manager_get_widget (window
->ui_manager
,
956 window
->room_menu
= gtk_menu_item_get_submenu (GTK_MENU_ITEM (room
));
957 window
->room_separator
= gtk_ui_manager_get_widget (window
->ui_manager
,
958 "/menubar/room/room_separator");
960 for (l
= chatrooms
; l
; l
= l
->next
) {
961 main_window_favorite_chatroom_menu_add (window
, l
->data
);
965 gtk_widget_hide (window
->room_separator
);
968 gtk_action_set_sensitive (window
->room_join_favorites
, chatrooms
!= NULL
);
970 g_signal_connect (window
->chatroom_manager
, "chatroom-added",
971 G_CALLBACK (main_window_favorite_chatroom_menu_added_cb
),
973 g_signal_connect (window
->chatroom_manager
, "chatroom-removed",
974 G_CALLBACK (main_window_favorite_chatroom_menu_removed_cb
),
977 g_list_free (chatrooms
);
981 main_window_room_join_new_cb (GtkAction
*action
,
982 EmpathyMainWindow
*window
)
984 empathy_new_chatroom_dialog_show (GTK_WINDOW (window
->window
));
988 main_window_room_join_favorites_cb (GtkAction
*action
,
989 EmpathyMainWindow
*window
)
991 GList
*chatrooms
, *l
;
993 chatrooms
= empathy_chatroom_manager_get_chatrooms (window
->chatroom_manager
, NULL
);
994 for (l
= chatrooms
; l
; l
= l
->next
) {
995 main_window_favorite_chatroom_join (l
->data
);
997 g_list_free (chatrooms
);
1001 main_window_room_manage_favorites_cb (GtkAction
*action
,
1002 EmpathyMainWindow
*window
)
1004 empathy_chatrooms_window_show (GTK_WINDOW (window
->window
));
1008 main_window_edit_cb (GtkAction
*action
,
1009 EmpathyMainWindow
*window
)
1013 /* FIXME: It should use the UIManager to merge the contact/group submenu */
1014 submenu
= empathy_contact_list_view_get_contact_menu (window
->list_view
);
1019 item
= GTK_MENU_ITEM (window
->edit_context
);
1020 label
= gtk_bin_get_child (GTK_BIN (item
));
1021 gtk_label_set_text (GTK_LABEL (label
), _("Contact"));
1023 gtk_widget_show (window
->edit_context
);
1024 gtk_widget_show (window
->edit_context_separator
);
1026 gtk_menu_item_set_submenu (item
, submenu
);
1031 submenu
= empathy_contact_list_view_get_group_menu (window
->list_view
);
1036 item
= GTK_MENU_ITEM (window
->edit_context
);
1037 label
= gtk_bin_get_child (GTK_BIN (item
));
1038 gtk_label_set_text (GTK_LABEL (label
), _("Group"));
1040 gtk_widget_show (window
->edit_context
);
1041 gtk_widget_show (window
->edit_context_separator
);
1043 gtk_menu_item_set_submenu (item
, submenu
);
1048 gtk_widget_hide (window
->edit_context
);
1049 gtk_widget_hide (window
->edit_context_separator
);
1055 main_window_edit_accounts_cb (GtkAction
*action
,
1056 EmpathyMainWindow
*window
)
1058 empathy_accounts_dialog_show (GTK_WINDOW (window
->window
), NULL
);
1062 main_window_edit_personal_information_cb (GtkAction
*action
,
1063 EmpathyMainWindow
*window
)
1065 empathy_contact_personal_dialog_show (GTK_WINDOW (window
->window
));
1069 main_window_edit_preferences_cb (GtkAction
*action
,
1070 EmpathyMainWindow
*window
)
1072 empathy_preferences_show (GTK_WINDOW (window
->window
));
1076 main_window_help_about_cb (GtkAction
*action
,
1077 EmpathyMainWindow
*window
)
1079 empathy_about_dialog_new (GTK_WINDOW (window
->window
));
1083 main_window_help_debug_cb (GtkAction
*action
,
1084 EmpathyMainWindow
*window
)
1086 empathy_debug_window_new (NULL
);
1090 main_window_help_contents_cb (GtkAction
*action
,
1091 EmpathyMainWindow
*window
)
1093 empathy_url_show (window
->window
, "ghelp:empathy");
1097 main_window_throbber_button_press_event_cb (GtkWidget
*throbber_ebox
,
1098 GdkEventButton
*event
,
1099 EmpathyMainWindow
*window
)
1101 if (event
->type
!= GDK_BUTTON_PRESS
||
1102 event
->button
!= 1) {
1106 empathy_accounts_dialog_show (GTK_WINDOW (window
->window
), NULL
);
1112 main_window_account_removed_cb (TpAccountManager
*manager
,
1114 EmpathyMainWindow
*window
)
1118 a
= tp_account_manager_get_valid_accounts (manager
);
1120 gtk_action_set_sensitive (window
->view_history
,
1121 g_list_length (a
) > 0);
1125 /* remove errors if any */
1126 main_window_remove_error (window
, account
);
1130 main_window_account_validity_changed_cb (TpAccountManager
*manager
,
1133 EmpathyMainWindow
*window
)
1135 main_window_account_removed_cb (manager
, account
, window
);
1139 main_window_notify_show_offline_cb (EmpathyConf
*conf
,
1141 gpointer toggle_action
)
1143 gboolean show_offline
;
1145 if (empathy_conf_get_bool (conf
, key
, &show_offline
)) {
1146 gtk_toggle_action_set_active (toggle_action
, show_offline
);
1151 main_window_connection_items_setup (EmpathyMainWindow
*window
,
1157 const gchar
*actions_connected
[] = {
1162 "edit_personal_information"
1165 for (i
= 0, list
= NULL
; i
< G_N_ELEMENTS (actions_connected
); i
++) {
1166 action
= gtk_builder_get_object (gui
, actions_connected
[i
]);
1167 list
= g_list_prepend (list
, action
);
1170 window
->actions_connected
= list
;
1174 empathy_main_window_get (void)
1176 return main_window
!= NULL
? main_window
->window
: NULL
;
1180 account_manager_prepared_cb (GObject
*source_object
,
1181 GAsyncResult
*result
,
1184 GList
*accounts
, *j
;
1185 TpAccountManager
*manager
= TP_ACCOUNT_MANAGER (source_object
);
1186 EmpathyMainWindow
*window
= user_data
;
1187 GError
*error
= NULL
;
1189 if (!tp_account_manager_prepare_finish (manager
, result
, &error
)) {
1190 DEBUG ("Failed to prepare account manager: %s", error
->message
);
1191 g_error_free (error
);
1195 accounts
= tp_account_manager_get_valid_accounts (window
->account_manager
);
1196 for (j
= accounts
; j
!= NULL
; j
= j
->next
) {
1197 TpAccount
*account
= TP_ACCOUNT (j
->data
);
1199 g_signal_connect (account
, "status-changed",
1200 G_CALLBACK (main_window_connection_changed_cb
),
1204 main_window_update_status (window
);
1206 /* Disable the "Previous Conversations" menu entry if there is no account */
1207 gtk_action_set_sensitive (window
->view_history
,
1208 g_list_length (accounts
) > 0);
1210 g_list_free (accounts
);
1214 empathy_main_window_show (void)
1216 EmpathyMainWindow
*window
;
1217 EmpathyContactList
*list_iface
;
1218 EmpathyContactMonitor
*monitor
;
1222 GtkToggleAction
*show_offline_widget
;
1224 GtkAction
*show_map_widget
;
1226 gboolean show_offline
;
1231 empathy_window_present (GTK_WINDOW (main_window
->window
), TRUE
);
1232 return main_window
->window
;
1235 main_window
= g_new0 (EmpathyMainWindow
, 1);
1236 window
= main_window
;
1238 /* Set up interface */
1239 filename
= empathy_file_lookup ("empathy-main-window.ui", "src");
1240 gui
= empathy_builder_get_file (filename
,
1241 "main_window", &window
->window
,
1242 "main_vbox", &window
->main_vbox
,
1243 "errors_vbox", &window
->errors_vbox
,
1244 "ui_manager", &window
->ui_manager
,
1245 "view_show_offline", &show_offline_widget
,
1246 "view_show_protocols", &window
->show_protocols
,
1247 "view_sort_by_name", &window
->sort_by_name
,
1248 "view_sort_by_status", &window
->sort_by_status
,
1249 "view_normal_size_with_avatars", &window
->normal_with_avatars
,
1250 "view_normal_size", &window
->normal_size
,
1251 "view_compact_size", &window
->compact_size
,
1252 "view_history", &window
->view_history
,
1253 "view_show_map", &show_map_widget
,
1254 "room_join_favorites", &window
->room_join_favorites
,
1255 "presence_toolbar", &window
->presence_toolbar
,
1256 "roster_scrolledwindow", &sw
,
1260 empathy_builder_connect (gui
, window
,
1261 "main_window", "destroy", main_window_destroy_cb
,
1262 "chat_quit", "activate", main_window_chat_quit_cb
,
1263 "chat_new_message", "activate", main_window_chat_new_message_cb
,
1264 "chat_new_call", "activate", main_window_chat_new_call_cb
,
1265 "view_history", "activate", main_window_view_history_cb
,
1266 "room_join_new", "activate", main_window_room_join_new_cb
,
1267 "room_join_favorites", "activate", main_window_room_join_favorites_cb
,
1268 "room_manage_favorites", "activate", main_window_room_manage_favorites_cb
,
1269 "chat_add_contact", "activate", main_window_chat_add_contact_cb
,
1270 "view_show_ft_manager", "activate", main_window_view_show_ft_manager
,
1271 "view_show_offline", "toggled", main_window_view_show_offline_cb
,
1272 "view_show_protocols", "toggled", main_window_view_show_protocols_cb
,
1273 "view_sort_by_name", "changed", main_window_view_sort_contacts_cb
,
1274 "view_normal_size_with_avatars", "changed", main_window_view_contacts_list_size_cb
,
1275 "view_show_map", "activate", main_window_view_show_map_cb
,
1276 "edit", "activate", main_window_edit_cb
,
1277 "edit_accounts", "activate", main_window_edit_accounts_cb
,
1278 "edit_personal_information", "activate", main_window_edit_personal_information_cb
,
1279 "edit_preferences", "activate", main_window_edit_preferences_cb
,
1280 "help_about", "activate", main_window_help_about_cb
,
1281 "help_debug", "activate", main_window_help_debug_cb
,
1282 "help_contents", "activate", main_window_help_contents_cb
,
1285 /* Set up connection related widgets. */
1286 main_window_connection_items_setup (window
, gui
);
1288 g_object_ref (window
->ui_manager
);
1289 g_object_unref (gui
);
1291 #if !HAVE_LIBCHAMPLAIN
1292 gtk_action_set_visible (show_map_widget
, FALSE
);
1295 window
->account_manager
= tp_account_manager_dup ();
1297 tp_account_manager_prepare_async (window
->account_manager
, NULL
,
1298 account_manager_prepared_cb
, window
);
1300 window
->errors
= g_hash_table_new_full (g_direct_hash
,
1306 main_window_favorite_chatroom_menu_setup (window
);
1308 window
->edit_context
= gtk_ui_manager_get_widget (window
->ui_manager
,
1309 "/menubar/edit/edit_context");
1310 window
->edit_context_separator
= gtk_ui_manager_get_widget (window
->ui_manager
,
1311 "/menubar/edit/edit_context_separator");
1312 gtk_widget_hide (window
->edit_context
);
1313 gtk_widget_hide (window
->edit_context_separator
);
1315 /* Set up contact list. */
1316 empathy_status_presets_get_all ();
1318 /* Set up presence chooser */
1319 window
->presence_chooser
= empathy_presence_chooser_new ();
1320 gtk_widget_show (window
->presence_chooser
);
1321 item
= gtk_tool_item_new ();
1322 gtk_widget_show (GTK_WIDGET (item
));
1323 gtk_container_add (GTK_CONTAINER (item
), window
->presence_chooser
);
1324 gtk_tool_item_set_is_important (item
, TRUE
);
1325 gtk_tool_item_set_expand (item
, TRUE
);
1326 gtk_toolbar_insert (GTK_TOOLBAR (window
->presence_toolbar
), item
, -1);
1328 /* Set up the throbber */
1329 ebox
= gtk_event_box_new ();
1330 gtk_event_box_set_visible_window (GTK_EVENT_BOX (ebox
), FALSE
);
1331 gtk_widget_set_tooltip_text (ebox
, _("Show and edit accounts"));
1332 g_signal_connect (ebox
,
1333 "button-press-event",
1334 G_CALLBACK (main_window_throbber_button_press_event_cb
),
1336 gtk_widget_show (ebox
);
1338 window
->throbber
= ephy_spinner_new ();
1339 ephy_spinner_set_size (EPHY_SPINNER (window
->throbber
), GTK_ICON_SIZE_LARGE_TOOLBAR
);
1340 gtk_container_add (GTK_CONTAINER (ebox
), window
->throbber
);
1341 gtk_widget_show (window
->throbber
);
1343 item
= gtk_tool_item_new ();
1344 gtk_container_add (GTK_CONTAINER (item
), ebox
);
1345 gtk_toolbar_insert (GTK_TOOLBAR (window
->presence_toolbar
), item
, -1);
1346 gtk_widget_show (GTK_WIDGET (item
));
1348 list_iface
= EMPATHY_CONTACT_LIST (empathy_contact_manager_dup_singleton ());
1349 monitor
= empathy_contact_list_get_monitor (list_iface
);
1350 window
->list_store
= empathy_contact_list_store_new (list_iface
);
1351 window
->list_view
= empathy_contact_list_view_new (window
->list_store
,
1352 EMPATHY_CONTACT_LIST_FEATURE_ALL
,
1353 EMPATHY_CONTACT_FEATURE_ALL
);
1354 g_signal_connect (monitor
, "contact-presence-changed",
1355 G_CALLBACK (main_window_contact_presence_changed_cb
), window
);
1356 g_object_unref (list_iface
);
1358 gtk_widget_show (GTK_WIDGET (window
->list_view
));
1359 gtk_container_add (GTK_CONTAINER (sw
),
1360 GTK_WIDGET (window
->list_view
));
1361 g_signal_connect (window
->list_view
, "row-activated",
1362 G_CALLBACK (main_window_row_activated_cb
),
1365 /* Load user-defined accelerators. */
1366 main_window_accels_load ();
1368 /* Set window size. */
1369 empathy_geometry_bind (GTK_WINDOW (window
->window
), GEOMETRY_NAME
);
1371 /* Enable event handling */
1372 window
->event_manager
= empathy_event_manager_dup_singleton ();
1373 g_signal_connect (window
->event_manager
, "event-added",
1374 G_CALLBACK (main_window_event_added_cb
),
1376 g_signal_connect (window
->event_manager
, "event-removed",
1377 G_CALLBACK (main_window_event_removed_cb
),
1380 g_signal_connect (window
->account_manager
, "account-validity-changed",
1381 G_CALLBACK (main_window_account_validity_changed_cb
),
1383 g_signal_connect (window
->account_manager
, "account-removed",
1384 G_CALLBACK (main_window_account_removed_cb
),
1386 g_signal_connect (window
->account_manager
, "account-disabled",
1387 G_CALLBACK (main_window_account_disabled_cb
),
1390 l
= empathy_event_manager_get_events (window
->event_manager
);
1392 main_window_event_added_cb (window
->event_manager
,
1397 conf
= empathy_conf_get ();
1399 /* Show offline ? */
1400 empathy_conf_get_bool (conf
,
1401 EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE
,
1403 empathy_conf_notify_add (conf
,
1404 EMPATHY_PREFS_CONTACTS_SHOW_OFFLINE
,
1405 main_window_notify_show_offline_cb
,
1406 show_offline_widget
);
1408 gtk_toggle_action_set_active (show_offline_widget
, show_offline
);
1410 /* Show protocol ? */
1411 empathy_conf_notify_add (conf
,
1412 EMPATHY_PREFS_UI_SHOW_PROTOCOLS
,
1413 (EmpathyConfNotifyFunc
) main_window_notify_show_protocols_cb
,
1416 main_window_notify_show_protocols_cb (conf
,
1417 EMPATHY_PREFS_UI_SHOW_PROTOCOLS
,
1420 /* Sort by name / by status ? */
1421 empathy_conf_notify_add (conf
,
1422 EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM
,
1423 (EmpathyConfNotifyFunc
) main_window_notify_sort_contact_cb
,
1426 main_window_notify_sort_contact_cb (conf
,
1427 EMPATHY_PREFS_CONTACTS_SORT_CRITERIUM
,
1430 /* Contacts list size */
1431 empathy_conf_notify_add (conf
,
1432 EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST
,
1433 (EmpathyConfNotifyFunc
) main_window_notify_contact_list_size_cb
,
1435 empathy_conf_notify_add (conf
,
1436 EMPATHY_PREFS_UI_SHOW_AVATARS
,
1437 (EmpathyConfNotifyFunc
) main_window_notify_contact_list_size_cb
,
1440 main_window_notify_contact_list_size_cb (conf
,
1441 EMPATHY_PREFS_UI_SHOW_AVATARS
,
1444 return window
->window
;