1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
3 * Copyright (C) 2003-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., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
21 * Authors: Mikael Hallendal <micke@imendio.com>
22 * Richard Hult <richard@imendio.com>
23 * Martyn Russell <martyn@imendio.com>
24 * Geert-Jan Van den Bogaerde <geertjan@gnome.org>
25 * Xavier Claessens <xclaesse@gmail.com>
33 #include <gdk/gdkkeysyms.h>
34 #include <glib/gi18n.h>
35 #include <libnotify/notification.h>
37 #include <telepathy-glib/util.h>
38 #include <libmissioncontrol/mission-control.h>
40 #include <libempathy/empathy-contact-factory.h>
41 #include <libempathy/empathy-contact.h>
42 #include <libempathy/empathy-message.h>
43 #include <libempathy/empathy-dispatcher.h>
44 #include <libempathy/empathy-chatroom-manager.h>
45 #include <libempathy/empathy-utils.h>
47 #include <libempathy-gtk/empathy-images.h>
48 #include <libempathy-gtk/empathy-conf.h>
49 #include <libempathy-gtk/empathy-contact-dialogs.h>
50 #include <libempathy-gtk/empathy-log-window.h>
51 #include <libempathy-gtk/empathy-geometry.h>
52 #include <libempathy-gtk/empathy-smiley-manager.h>
53 #include <libempathy-gtk/empathy-ui-utils.h>
55 #include "empathy-chat-window.h"
56 #include "empathy-about-dialog.h"
57 #include "empathy-misc.h"
59 #define DEBUG_FLAG EMPATHY_DEBUG_CHAT
60 #include <libempathy/empathy-debug.h>
62 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyChatWindow)
64 EmpathyChat
*current_chat
;
67 GList
*chats_composing
;
69 gboolean dnd_same_window
;
70 guint save_geometry_id
;
71 EmpathyChatroomManager
*chatroom_manager
;
74 NotifyNotification
*notification
;
77 GtkUIManager
*ui_manager
;
78 GtkAction
*menu_conv_insert_smiley
;
79 GtkAction
*menu_conv_contact
;
80 GtkAction
*menu_conv_favorite
;
82 GtkAction
*menu_edit_cut
;
83 GtkAction
*menu_edit_copy
;
84 GtkAction
*menu_edit_paste
;
86 GtkAction
*menu_tabs_next
;
87 GtkAction
*menu_tabs_prev
;
88 GtkAction
*menu_tabs_left
;
89 GtkAction
*menu_tabs_right
;
90 GtkAction
*menu_tabs_detach
;
91 } EmpathyChatWindowPriv
;
93 static GList
*chat_windows
= NULL
;
95 static const guint tab_accel_keys
[] = {
96 GDK_1
, GDK_2
, GDK_3
, GDK_4
, GDK_5
,
97 GDK_6
, GDK_7
, GDK_8
, GDK_9
, GDK_0
101 DND_DRAG_TYPE_CONTACT_ID
,
105 static const GtkTargetEntry drag_types_dest
[] = {
106 { "text/contact-id", 0, DND_DRAG_TYPE_CONTACT_ID
},
107 { "GTK_NOTEBOOK_TAB", GTK_TARGET_SAME_APP
, DND_DRAG_TYPE_TAB
},
110 G_DEFINE_TYPE (EmpathyChatWindow
, empathy_chat_window
, G_TYPE_OBJECT
);
113 chat_window_accel_cb (GtkAccelGroup
*accelgroup
,
117 EmpathyChatWindow
*window
)
119 EmpathyChatWindowPriv
*priv
;
123 priv
= GET_PRIV (window
);
125 for (i
= 0; i
< G_N_ELEMENTS (tab_accel_keys
); i
++) {
126 if (tab_accel_keys
[i
] == key
) {
133 gtk_notebook_set_current_page (GTK_NOTEBOOK (priv
->notebook
), num
);
137 static EmpathyChatWindow
*
138 chat_window_find_chat (EmpathyChat
*chat
)
140 EmpathyChatWindowPriv
*priv
;
143 for (l
= chat_windows
; l
; l
= l
->next
) {
144 priv
= GET_PRIV (l
->data
);
145 ll
= g_list_find (priv
->chats
, chat
);
155 chat_window_close_clicked_cb (GtkAction
*action
,
158 EmpathyChatWindow
*window
;
160 window
= chat_window_find_chat (chat
);
161 empathy_chat_window_remove_chat (window
, chat
);
165 chat_window_close_button_style_set_cb (GtkWidget
*button
,
166 GtkStyle
*previous_style
,
171 gtk_icon_size_lookup_for_settings (gtk_widget_get_settings (button
),
172 GTK_ICON_SIZE_MENU
, &w
, &h
);
174 gtk_widget_set_size_request (button
, w
, h
);
178 chat_window_create_label (EmpathyChatWindow
*window
,
181 EmpathyChatWindowPriv
*priv
;
183 GtkWidget
*name_label
;
184 GtkWidget
*status_image
;
185 GtkWidget
*close_button
;
186 GtkWidget
*close_image
;
187 GtkWidget
*event_box
;
188 GtkWidget
*event_box_hbox
;
189 PangoAttrList
*attr_list
;
190 PangoAttribute
*attr
;
192 priv
= GET_PRIV (window
);
194 /* The spacing between the button and the label. */
195 hbox
= gtk_hbox_new (FALSE
, 0);
197 event_box
= gtk_event_box_new ();
198 gtk_event_box_set_visible_window (GTK_EVENT_BOX (event_box
), FALSE
);
200 name_label
= gtk_label_new (NULL
);
201 gtk_label_set_ellipsize (GTK_LABEL (name_label
), PANGO_ELLIPSIZE_END
);
203 attr_list
= pango_attr_list_new ();
204 attr
= pango_attr_scale_new (1/1.2);
205 attr
->start_index
= 0;
206 attr
->end_index
= -1;
207 pango_attr_list_insert (attr_list
, attr
);
208 gtk_label_set_attributes (GTK_LABEL (name_label
), attr_list
);
209 pango_attr_list_unref (attr_list
);
211 gtk_misc_set_padding (GTK_MISC (name_label
), 2, 0);
212 gtk_misc_set_alignment (GTK_MISC (name_label
), 0.0, 0.5);
213 g_object_set_data (G_OBJECT (chat
), "chat-window-tab-label", name_label
);
215 status_image
= gtk_image_new ();
217 /* Spacing between the icon and label. */
218 event_box_hbox
= gtk_hbox_new (FALSE
, 0);
220 gtk_box_pack_start (GTK_BOX (event_box_hbox
), status_image
, FALSE
, FALSE
, 0);
221 gtk_box_pack_start (GTK_BOX (event_box_hbox
), name_label
, TRUE
, TRUE
, 0);
223 g_object_set_data (G_OBJECT (chat
), "chat-window-tab-image", status_image
);
224 g_object_set_data (G_OBJECT (chat
), "chat-window-tab-tooltip-widget", event_box
);
226 close_button
= gtk_button_new ();
227 gtk_button_set_relief (GTK_BUTTON (close_button
), GTK_RELIEF_NONE
);
228 g_object_set_data (G_OBJECT (chat
), "chat-window-tab-close-button", close_button
);
230 /* We don't want focus/keynav for the button to avoid clutter, and
231 * Ctrl-W works anyway.
233 GTK_WIDGET_UNSET_FLAGS (close_button
, GTK_CAN_FOCUS
);
234 GTK_WIDGET_UNSET_FLAGS (close_button
, GTK_CAN_DEFAULT
);
236 /* Set the name to make the special rc style match. */
237 gtk_widget_set_name (close_button
, "empathy-close-button");
239 close_image
= gtk_image_new_from_stock (GTK_STOCK_CLOSE
, GTK_ICON_SIZE_MENU
);
241 gtk_container_add (GTK_CONTAINER (close_button
), close_image
);
243 gtk_container_add (GTK_CONTAINER (event_box
), event_box_hbox
);
244 gtk_box_pack_start (GTK_BOX (hbox
), event_box
, TRUE
, TRUE
, 0);
245 gtk_box_pack_end (GTK_BOX (hbox
), close_button
, FALSE
, FALSE
, 0);
247 /* React to theme changes and also used to setup the initial size
250 g_signal_connect (close_button
,
252 G_CALLBACK (chat_window_close_button_style_set_cb
),
255 g_signal_connect (close_button
,
257 G_CALLBACK (chat_window_close_clicked_cb
),
260 gtk_widget_show_all (hbox
);
266 chat_window_update (EmpathyChatWindow
*window
)
268 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
271 gboolean is_connected
;
278 EmpathyContact
*remote_contact
;
279 gboolean avatar_in_icon
;
281 GtkWidget
*chat_close_button
;
283 /* Get information */
284 page_num
= gtk_notebook_get_current_page (GTK_NOTEBOOK (priv
->notebook
));
285 num_pages
= gtk_notebook_get_n_pages (GTK_NOTEBOOK (priv
->notebook
));
286 first_page
= (page_num
== 0);
287 last_page
= (page_num
== (num_pages
- 1));
288 is_connected
= empathy_chat_get_tp_chat (priv
->current_chat
) != NULL
;
289 name
= empathy_chat_get_name (priv
->current_chat
);
290 n_chats
= g_list_length (priv
->chats
);
292 DEBUG ("Update window");
295 gtk_action_set_sensitive (priv
->menu_tabs_next
, !last_page
);
296 gtk_action_set_sensitive (priv
->menu_tabs_prev
, !first_page
);
297 gtk_action_set_sensitive (priv
->menu_tabs_detach
, num_pages
> 1);
298 gtk_action_set_sensitive (priv
->menu_tabs_left
, !first_page
);
299 gtk_action_set_sensitive (priv
->menu_tabs_right
, !last_page
);
300 gtk_action_set_sensitive (priv
->menu_conv_insert_smiley
, is_connected
);
302 /* Update window title */
304 gtk_window_set_title (GTK_WINDOW (priv
->dialog
), name
);
308 title
= g_strdup_printf (_("Conversations (%d)"), n_chats
);
309 gtk_window_set_title (GTK_WINDOW (priv
->dialog
), title
);
313 /* Update window icon */
314 if (priv
->chats_new_msg
) {
315 gtk_window_set_icon_name (GTK_WINDOW (priv
->dialog
),
316 EMPATHY_IMAGE_MESSAGE
);
318 empathy_conf_get_bool (empathy_conf_get (),
319 EMPATHY_PREFS_CHAT_AVATAR_IN_ICON
,
322 if (n_chats
== 1 && avatar_in_icon
) {
323 remote_contact
= empathy_chat_get_remote_contact (priv
->current_chat
);
324 icon
= empathy_pixbuf_avatar_from_contact_scaled (remote_contact
, 0, 0);
325 gtk_window_set_icon (GTK_WINDOW (priv
->dialog
), icon
);
328 g_object_unref (icon
);
331 gtk_window_set_icon_name (GTK_WINDOW (priv
->dialog
), NULL
);
335 if (num_pages
== 1) {
336 chat
= gtk_notebook_get_nth_page (GTK_NOTEBOOK (priv
->notebook
), 0);
337 chat_close_button
= g_object_get_data (G_OBJECT (chat
),
338 "chat-window-tab-close-button");
339 gtk_widget_hide (chat_close_button
);
341 for (i
=0; i
<num_pages
; i
++) {
342 chat
= gtk_notebook_get_nth_page (GTK_NOTEBOOK (priv
->notebook
), i
);
343 chat_close_button
= g_object_get_data (G_OBJECT (chat
),
344 "chat-window-tab-close-button");
345 gtk_widget_show (chat_close_button
);
351 chat_window_update_chat_tab (EmpathyChat
*chat
)
353 EmpathyChatWindow
*window
;
354 EmpathyChatWindowPriv
*priv
;
355 EmpathyContact
*remote_contact
;
358 const gchar
*subject
;
362 const gchar
*icon_name
;
364 window
= chat_window_find_chat (chat
);
368 priv
= GET_PRIV (window
);
370 /* Get information */
371 name
= empathy_chat_get_name (chat
);
372 account
= empathy_chat_get_account (chat
);
373 subject
= empathy_chat_get_subject (chat
);
374 remote_contact
= empathy_chat_get_remote_contact (chat
);
376 DEBUG ("Updating chat tab, name=%s, account=%s, subject=%s, remote_contact=%p",
377 name
, mc_account_get_unique_name (account
), subject
, remote_contact
);
379 /* Update tab image */
380 if (g_list_find (priv
->chats_new_msg
, chat
)) {
381 icon_name
= EMPATHY_IMAGE_MESSAGE
;
383 else if (g_list_find (priv
->chats_composing
, chat
)) {
384 icon_name
= EMPATHY_IMAGE_TYPING
;
386 else if (remote_contact
) {
387 icon_name
= empathy_icon_name_for_contact (remote_contact
);
389 icon_name
= EMPATHY_IMAGE_GROUP_MESSAGE
;
391 widget
= g_object_get_data (G_OBJECT (chat
), "chat-window-tab-image");
392 gtk_image_set_from_icon_name (GTK_IMAGE (widget
), icon_name
, GTK_ICON_SIZE_MENU
);
394 /* Update tab tooltip */
395 tooltip
= g_string_new (NULL
);
397 if (remote_contact
) {
398 markup
= g_markup_printf_escaped ("<b>%s</b><small> (%s)</small>\n%s",
399 empathy_contact_get_id (remote_contact
),
400 mc_account_get_display_name (account
),
401 empathy_contact_get_status (remote_contact
));
402 g_string_append (tooltip
, markup
);
406 markup
= g_markup_printf_escaped ("<b>%s</b><small> (%s)</small>", name
,
407 mc_account_get_display_name (account
));
408 g_string_append (tooltip
, markup
);
413 markup
= g_markup_printf_escaped ("\n<b>%s</b> %s", _("Topic:"), subject
);
414 g_string_append (tooltip
, markup
);
417 if (g_list_find (priv
->chats_composing
, chat
)) {
418 markup
= g_markup_printf_escaped ("\n%s", _("Typing a message."));
419 g_string_append (tooltip
, markup
);
423 markup
= g_string_free (tooltip
, FALSE
);
424 widget
= g_object_get_data (G_OBJECT (chat
), "chat-window-tab-tooltip-widget");
425 gtk_widget_set_tooltip_markup (widget
, markup
);
428 /* Update tab label */
429 widget
= g_object_get_data (G_OBJECT (chat
), "chat-window-tab-label");
430 gtk_label_set_text (GTK_LABEL (widget
), name
);
432 /* Update the window if it's the current chat */
433 if (priv
->current_chat
== chat
) {
434 chat_window_update (window
);
439 chat_window_chat_notify_cb (EmpathyChat
*chat
)
441 EmpathyContact
*old_remote_contact
;
442 EmpathyContact
*remote_contact
= NULL
;
444 old_remote_contact
= g_object_get_data (G_OBJECT (chat
), "chat-window-remote-contact");
445 remote_contact
= empathy_chat_get_remote_contact (chat
);
447 if (old_remote_contact
!= remote_contact
) {
448 /* The remote-contact associated with the chat changed, we need
449 * to keep track of any change of that contact and update the
450 * window each time. */
451 if (remote_contact
) {
452 g_signal_connect_swapped (remote_contact
, "notify",
453 G_CALLBACK (chat_window_update_chat_tab
),
456 if (old_remote_contact
) {
457 g_signal_handlers_disconnect_by_func (old_remote_contact
,
458 chat_window_update_chat_tab
,
462 g_object_set_data (G_OBJECT (chat
), "chat-window-remote-contact",
466 chat_window_update_chat_tab (chat
);
470 chat_window_insert_smiley_activate_cb (EmpathySmileyManager
*manager
,
471 EmpathySmiley
*smiley
,
474 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
476 GtkTextBuffer
*buffer
;
479 chat
= priv
->current_chat
;
481 buffer
= gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat
->input_text_view
));
482 gtk_text_buffer_get_end_iter (buffer
, &iter
);
483 gtk_text_buffer_insert (buffer
, &iter
, smiley
->str
, -1);
487 chat_window_conv_activate_cb (GtkAction
*action
,
488 EmpathyChatWindow
*window
)
490 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
491 GtkWidget
*menu
= NULL
;
492 GtkWidget
*submenu
= NULL
;
495 /* Contact submenu */
496 submenu
= empathy_chat_get_contact_menu (priv
->current_chat
);
498 menu
= gtk_ui_manager_get_widget (priv
->ui_manager
,
499 "/chats_menubar/menu_conv/menu_conv_contact");
500 gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu
), submenu
);
501 gtk_widget_show (submenu
);
503 gtk_action_set_visible (priv
->menu_conv_contact
, submenu
!= NULL
);
505 /* Favorite room menu */
506 is_room
= empathy_chat_is_room (priv
->current_chat
);
512 room
= empathy_chat_get_id (priv
->current_chat
);
513 account
= empathy_chat_get_account (priv
->current_chat
);
514 found
= empathy_chatroom_manager_find (priv
->chatroom_manager
,
515 account
, room
) != NULL
;
517 DEBUG ("This room %s favorite", found
? "is" : "is not");
518 gtk_toggle_action_set_active (
519 GTK_TOGGLE_ACTION (priv
->menu_conv_favorite
), found
);
521 gtk_action_set_visible (priv
->menu_conv_favorite
, is_room
);
525 chat_window_clear_activate_cb (GtkAction
*action
,
526 EmpathyChatWindow
*window
)
528 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
530 empathy_chat_clear (priv
->current_chat
);
534 chat_window_favorite_toggled_cb (GtkToggleAction
*toggle_action
,
535 EmpathyChatWindow
*window
)
537 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
541 EmpathyChatroom
*chatroom
;
543 active
= gtk_toggle_action_get_active (toggle_action
);
544 account
= empathy_chat_get_account (priv
->current_chat
);
545 room
= empathy_chat_get_id (priv
->current_chat
);
547 chatroom
= empathy_chatroom_manager_find (priv
->chatroom_manager
,
550 if (active
&& !chatroom
) {
553 name
= empathy_chat_get_name (priv
->current_chat
);
554 chatroom
= empathy_chatroom_new_full (account
, room
, name
, FALSE
);
555 empathy_chatroom_manager_add (priv
->chatroom_manager
, chatroom
);
556 g_object_unref (chatroom
);
560 if (!active
&& chatroom
) {
561 empathy_chatroom_manager_remove (priv
->chatroom_manager
, chatroom
);
566 chat_get_window_id_for_geometry (EmpathyChat
*chat
)
568 const gchar
*res
= NULL
;
569 gboolean separate_windows
;
571 empathy_conf_get_bool (empathy_conf_get (),
572 EMPATHY_PREFS_UI_SEPARATE_CHAT_WINDOWS
,
575 if (separate_windows
) {
576 res
= empathy_chat_get_id (chat
);
579 return res
? res
: "chat-window";
583 chat_window_save_geometry_timeout_cb (EmpathyChatWindow
*window
)
585 EmpathyChatWindowPriv
*priv
;
588 priv
= GET_PRIV (window
);
590 gtk_window_get_size (GTK_WINDOW (priv
->dialog
), &w
, &h
);
591 gtk_window_get_position (GTK_WINDOW (priv
->dialog
), &x
, &y
);
593 empathy_geometry_save (chat_get_window_id_for_geometry (priv
->current_chat
),
596 priv
->save_geometry_id
= 0;
602 chat_window_configure_event_cb (GtkWidget
*widget
,
603 GdkEventConfigure
*event
,
604 EmpathyChatWindow
*window
)
606 EmpathyChatWindowPriv
*priv
;
608 priv
= GET_PRIV (window
);
610 if (priv
->save_geometry_id
!= 0) {
611 g_source_remove (priv
->save_geometry_id
);
614 priv
->save_geometry_id
=
615 g_timeout_add_seconds (1,
616 (GSourceFunc
) chat_window_save_geometry_timeout_cb
,
623 chat_window_close_activate_cb (GtkAction
*action
,
624 EmpathyChatWindow
*window
)
626 EmpathyChatWindowPriv
*priv
;
628 priv
= GET_PRIV (window
);
630 g_return_if_fail (priv
->current_chat
!= NULL
);
632 empathy_chat_window_remove_chat (window
, priv
->current_chat
);
636 chat_window_edit_activate_cb (GtkAction
*action
,
637 EmpathyChatWindow
*window
)
639 EmpathyChatWindowPriv
*priv
;
640 GtkClipboard
*clipboard
;
641 GtkTextBuffer
*buffer
;
642 gboolean text_available
;
644 priv
= GET_PRIV (window
);
646 g_return_if_fail (priv
->current_chat
!= NULL
);
648 if (!empathy_chat_get_tp_chat (priv
->current_chat
)) {
649 gtk_action_set_sensitive (priv
->menu_edit_copy
, FALSE
);
650 gtk_action_set_sensitive (priv
->menu_edit_cut
, FALSE
);
651 gtk_action_set_sensitive (priv
->menu_edit_paste
, FALSE
);
655 buffer
= gtk_text_view_get_buffer (GTK_TEXT_VIEW (priv
->current_chat
->input_text_view
));
656 if (gtk_text_buffer_get_has_selection (buffer
)) {
657 gtk_action_set_sensitive (priv
->menu_edit_copy
, TRUE
);
658 gtk_action_set_sensitive (priv
->menu_edit_cut
, TRUE
);
662 selection
= empathy_chat_view_get_has_selection (priv
->current_chat
->view
);
664 gtk_action_set_sensitive (priv
->menu_edit_cut
, FALSE
);
665 gtk_action_set_sensitive (priv
->menu_edit_copy
, selection
);
668 clipboard
= gtk_clipboard_get (GDK_SELECTION_CLIPBOARD
);
669 text_available
= gtk_clipboard_wait_is_text_available (clipboard
);
670 gtk_action_set_sensitive (priv
->menu_edit_paste
, text_available
);
674 chat_window_cut_activate_cb (GtkAction
*action
,
675 EmpathyChatWindow
*window
)
677 EmpathyChatWindowPriv
*priv
;
679 g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (window
));
681 priv
= GET_PRIV (window
);
683 empathy_chat_cut (priv
->current_chat
);
687 chat_window_copy_activate_cb (GtkAction
*action
,
688 EmpathyChatWindow
*window
)
690 EmpathyChatWindowPriv
*priv
;
692 g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (window
));
694 priv
= GET_PRIV (window
);
696 empathy_chat_copy (priv
->current_chat
);
700 chat_window_paste_activate_cb (GtkAction
*action
,
701 EmpathyChatWindow
*window
)
703 EmpathyChatWindowPriv
*priv
;
705 g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (window
));
707 priv
= GET_PRIV (window
);
709 empathy_chat_paste (priv
->current_chat
);
713 chat_window_tabs_left_activate_cb (GtkAction
*action
,
714 EmpathyChatWindow
*window
)
716 EmpathyChatWindowPriv
*priv
;
720 priv
= GET_PRIV (window
);
722 chat
= priv
->current_chat
;
723 index
= gtk_notebook_get_current_page (GTK_NOTEBOOK (priv
->notebook
));
728 gtk_notebook_reorder_child (GTK_NOTEBOOK (priv
->notebook
),
734 chat_window_tabs_right_activate_cb (GtkAction
*action
,
735 EmpathyChatWindow
*window
)
737 EmpathyChatWindowPriv
*priv
;
741 priv
= GET_PRIV (window
);
743 chat
= priv
->current_chat
;
744 index
= gtk_notebook_get_current_page (GTK_NOTEBOOK (priv
->notebook
));
746 gtk_notebook_reorder_child (GTK_NOTEBOOK (priv
->notebook
),
752 chat_window_detach_activate_cb (GtkAction
*action
,
753 EmpathyChatWindow
*window
)
755 EmpathyChatWindowPriv
*priv
;
756 EmpathyChatWindow
*new_window
;
759 priv
= GET_PRIV (window
);
761 chat
= priv
->current_chat
;
762 new_window
= empathy_chat_window_new ();
764 empathy_chat_window_move_chat (window
, new_window
, chat
);
766 priv
= GET_PRIV (new_window
);
767 gtk_widget_show (priv
->dialog
);
771 chat_window_help_contents_activate_cb (GtkAction
*action
,
772 EmpathyChatWindow
*window
)
774 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
776 empathy_url_show (priv
->dialog
, "ghelp:empathy?chat");
780 chat_window_help_about_activate_cb (GtkAction
*action
,
781 EmpathyChatWindow
*window
)
783 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
785 empathy_about_dialog_new (GTK_WINDOW (priv
->dialog
));
789 chat_window_delete_event_cb (GtkWidget
*dialog
,
791 EmpathyChatWindow
*window
)
793 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
795 DEBUG ("Delete event received");
797 g_object_ref (window
);
798 while (priv
->chats
) {
799 empathy_chat_window_remove_chat (window
, priv
->chats
->data
);
801 g_object_unref (window
);
807 chat_window_composing_cb (EmpathyChat
*chat
,
808 gboolean is_composing
,
809 EmpathyChatWindow
*window
)
811 EmpathyChatWindowPriv
*priv
;
813 priv
= GET_PRIV (window
);
815 if (is_composing
&& !g_list_find (priv
->chats_composing
, chat
)) {
816 priv
->chats_composing
= g_list_prepend (priv
->chats_composing
, chat
);
818 priv
->chats_composing
= g_list_remove (priv
->chats_composing
, chat
);
821 chat_window_update_chat_tab (chat
);
825 chat_window_set_urgency_hint (EmpathyChatWindow
*window
,
828 EmpathyChatWindowPriv
*priv
;
830 priv
= GET_PRIV (window
);
832 DEBUG ("Turning %s urgency hint", urgent
? "on" : "off");
833 gtk_window_set_urgency_hint (GTK_WINDOW (priv
->dialog
), urgent
);
837 EmpathyChatWindow
*window
;
842 chat_window_notification_closed_cb (NotifyNotification
*notify
,
843 NotificationData
*cb_data
)
845 EmpathyNotificationClosedReason reason
= 0;
846 EmpathyChatWindowPriv
*priv
= GET_PRIV (cb_data
->window
);
848 #ifdef notify_notification_get_closed_reason
849 reason
= notify_notification_get_closed_reason (notify
);
851 if (reason
== EMPATHY_NOTIFICATION_CLOSED_DISMISSED
) {
852 empathy_chat_window_present_chat (cb_data
->chat
);
855 g_object_unref (notify
);
856 priv
->notification
= NULL
;
857 g_object_unref (cb_data
->chat
);
858 g_slice_free (NotificationData
, cb_data
);
862 chat_window_show_or_update_notification (EmpathyChatWindow
*window
,
863 EmpathyMessage
*message
,
866 EmpathyContact
*sender
;
867 char *header
, *escaped
;
870 NotificationData
*cb_data
;
871 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
874 if (!empathy_notification_is_enabled ()) {
877 empathy_conf_get_bool (empathy_conf_get (),
878 EMPATHY_PREFS_NOTIFICATIONS_FOCUS
, &res
);
884 cb_data
= g_slice_new0 (NotificationData
);
885 cb_data
->chat
= g_object_ref (chat
);
886 cb_data
->window
= window
;
888 sender
= empathy_message_get_sender (message
);
889 header
= g_strdup_printf (_("New message from %s"),
890 empathy_contact_get_name (sender
));
891 body
= empathy_message_get_body (message
);
892 escaped
= g_markup_escape_text (body
, -1);
894 pixbuf
= empathy_misc_get_pixbuf_for_notification (sender
, EMPATHY_IMAGE_NEW_MESSAGE
);
896 if (priv
->notification
!= NULL
) {
897 notify_notification_update (priv
->notification
,
898 header
, escaped
, NULL
);
899 notify_notification_set_icon_from_pixbuf (priv
->notification
, pixbuf
);
901 priv
->notification
= notify_notification_new (header
, escaped
, NULL
, NULL
);
902 notify_notification_set_timeout (priv
->notification
, NOTIFY_EXPIRES_DEFAULT
);
903 notify_notification_set_icon_from_pixbuf (priv
->notification
, pixbuf
);
905 g_signal_connect (priv
->notification
, "closed",
906 G_CALLBACK (chat_window_notification_closed_cb
), cb_data
);
909 notify_notification_show (priv
->notification
, NULL
);
911 g_object_unref (pixbuf
);
917 chat_window_new_message_cb (EmpathyChat
*chat
,
918 EmpathyMessage
*message
,
919 EmpathyChatWindow
*window
)
921 EmpathyChatWindowPriv
*priv
;
923 gboolean needs_urgency
;
924 EmpathyContact
*sender
;
926 priv
= GET_PRIV (window
);
928 has_focus
= empathy_chat_window_has_focus (window
);
930 /* - if we're the sender, we play the sound if it's specified in the
931 * preferences and we're not away.
932 * - if we receive a message, we play the sound if it's specified in the
933 * prefereces and the window does not have focus on the chat receiving
937 sender
= empathy_message_get_sender (message
);
939 if (empathy_contact_is_user (sender
) != FALSE
) {
940 empathy_sound_play (GTK_WIDGET (priv
->dialog
),
941 EMPATHY_SOUND_MESSAGE_OUTGOING
);
943 if ((!has_focus
|| priv
->current_chat
!= chat
)) {
944 empathy_sound_play (GTK_WIDGET (priv
->dialog
),
945 EMPATHY_SOUND_MESSAGE_INCOMING
);
950 chat_window_show_or_update_notification (window
, message
, chat
);
953 if (has_focus
&& priv
->current_chat
== chat
) {
957 if (empathy_chat_get_members_count (chat
) > 2) {
958 needs_urgency
= empathy_message_should_highlight (message
);
960 needs_urgency
= TRUE
;
963 if (needs_urgency
&& !has_focus
) {
964 chat_window_set_urgency_hint (window
, TRUE
);
967 if (!g_list_find (priv
->chats_new_msg
, chat
)) {
968 priv
->chats_new_msg
= g_list_prepend (priv
->chats_new_msg
, chat
);
969 chat_window_update_chat_tab (chat
);
974 chat_window_detach_hook (GtkNotebook
*source
,
980 EmpathyChatWindowPriv
*priv
;
981 EmpathyChatWindow
*window
, *new_window
;
984 chat
= EMPATHY_CHAT (page
);
985 window
= chat_window_find_chat (chat
);
987 new_window
= empathy_chat_window_new ();
988 priv
= GET_PRIV (new_window
);
990 DEBUG ("Detach hook called");
992 empathy_chat_window_move_chat (window
, new_window
, chat
);
994 gtk_window_move (GTK_WINDOW (priv
->dialog
), x
, y
);
995 gtk_widget_show (priv
->dialog
);
1001 chat_window_page_switched_cb (GtkNotebook
*notebook
,
1002 GtkNotebookPage
*page
,
1004 EmpathyChatWindow
*window
)
1006 EmpathyChatWindowPriv
*priv
;
1010 DEBUG ("Page switched");
1012 priv
= GET_PRIV (window
);
1014 child
= gtk_notebook_get_nth_page (notebook
, page_num
);
1015 chat
= EMPATHY_CHAT (child
);
1017 if (priv
->page_added
) {
1018 priv
->page_added
= FALSE
;
1019 empathy_chat_scroll_down (chat
);
1021 else if (priv
->current_chat
== chat
) {
1025 priv
->current_chat
= chat
;
1026 priv
->chats_new_msg
= g_list_remove (priv
->chats_new_msg
, chat
);
1028 chat_window_update_chat_tab (chat
);
1032 chat_window_page_added_cb (GtkNotebook
*notebook
,
1035 EmpathyChatWindow
*window
)
1037 EmpathyChatWindowPriv
*priv
;
1040 priv
= GET_PRIV (window
);
1042 /* If we just received DND to the same window, we don't want
1043 * to do anything here like removing the tab and then readding
1044 * it, so we return here and in "page-added".
1046 if (priv
->dnd_same_window
) {
1047 DEBUG ("Page added (back to the same window)");
1048 priv
->dnd_same_window
= FALSE
;
1052 DEBUG ("Page added");
1054 /* Get chat object */
1055 chat
= EMPATHY_CHAT (child
);
1057 /* Connect chat signals for this window */
1058 g_signal_connect (chat
, "composing",
1059 G_CALLBACK (chat_window_composing_cb
),
1061 g_signal_connect (chat
, "new-message",
1062 G_CALLBACK (chat_window_new_message_cb
),
1065 /* Set flag so we know to perform some special operations on
1066 * switch page due to the new page being added.
1068 priv
->page_added
= TRUE
;
1070 /* Get list of chats up to date */
1071 priv
->chats
= g_list_append (priv
->chats
, chat
);
1073 chat_window_update_chat_tab (chat
);
1077 chat_window_page_removed_cb (GtkNotebook
*notebook
,
1080 EmpathyChatWindow
*window
)
1082 EmpathyChatWindowPriv
*priv
;
1085 priv
= GET_PRIV (window
);
1087 /* If we just received DND to the same window, we don't want
1088 * to do anything here like removing the tab and then readding
1089 * it, so we return here and in "page-added".
1091 if (priv
->dnd_same_window
) {
1092 DEBUG ("Page removed (and will be readded to same window)");
1096 DEBUG ("Page removed");
1098 /* Get chat object */
1099 chat
= EMPATHY_CHAT (child
);
1101 /* Disconnect all signal handlers for this chat and this window */
1102 g_signal_handlers_disconnect_by_func (chat
,
1103 G_CALLBACK (chat_window_composing_cb
),
1105 g_signal_handlers_disconnect_by_func (chat
,
1106 G_CALLBACK (chat_window_new_message_cb
),
1109 /* Keep list of chats up to date */
1110 priv
->chats
= g_list_remove (priv
->chats
, chat
);
1111 priv
->chats_new_msg
= g_list_remove (priv
->chats_new_msg
, chat
);
1112 priv
->chats_composing
= g_list_remove (priv
->chats_composing
, chat
);
1114 if (priv
->chats
== NULL
) {
1115 g_object_unref (window
);
1117 chat_window_update (window
);
1122 chat_window_focus_in_event_cb (GtkWidget
*widget
,
1124 EmpathyChatWindow
*window
)
1126 EmpathyChatWindowPriv
*priv
;
1128 DEBUG ("Focus in event, updating title");
1130 priv
= GET_PRIV (window
);
1132 priv
->chats_new_msg
= g_list_remove (priv
->chats_new_msg
, priv
->current_chat
);
1134 chat_window_set_urgency_hint (window
, FALSE
);
1136 /* Update the title, since we now mark all unread messages as read. */
1137 chat_window_update_chat_tab (priv
->current_chat
);
1143 chat_window_drag_data_received (GtkWidget
*widget
,
1144 GdkDragContext
*context
,
1147 GtkSelectionData
*selection
,
1150 EmpathyChatWindow
*window
)
1152 if (info
== DND_DRAG_TYPE_CONTACT_ID
) {
1154 EmpathyChatWindow
*old_window
;
1159 id
= (const gchar
*) selection
->data
;
1161 DEBUG ("DND contact from roster with id:'%s'", id
);
1163 strv
= g_strsplit (id
, "/", 2);
1164 account
= mc_account_lookup (strv
[0]);
1165 chat
= empathy_chat_window_find_chat (account
, strv
[1]);
1168 empathy_dispatcher_chat_with_contact_id (account
, strv
[2], NULL
, NULL
);
1169 g_object_unref (account
);
1173 g_object_unref (account
);
1176 old_window
= chat_window_find_chat (chat
);
1178 if (old_window
== window
) {
1179 gtk_drag_finish (context
, TRUE
, FALSE
, time
);
1183 empathy_chat_window_move_chat (old_window
, window
, chat
);
1185 empathy_chat_window_add_chat (window
, chat
);
1188 /* Added to take care of any outstanding chat events */
1189 empathy_chat_window_present_chat (chat
);
1191 /* We should return TRUE to remove the data when doing
1192 * GDK_ACTION_MOVE, but we don't here otherwise it has
1193 * weird consequences, and we handle that internally
1194 * anyway with add_chat() and remove_chat().
1196 gtk_drag_finish (context
, TRUE
, FALSE
, time
);
1198 else if (info
== DND_DRAG_TYPE_TAB
) {
1200 EmpathyChatWindow
*old_window
= NULL
;
1204 chat
= (void*) selection
->data
;
1205 old_window
= chat_window_find_chat (*chat
);
1208 EmpathyChatWindowPriv
*priv
;
1210 priv
= GET_PRIV (window
);
1212 if (old_window
== window
) {
1213 DEBUG ("DND tab (within same window)");
1214 priv
->dnd_same_window
= TRUE
;
1215 gtk_drag_finish (context
, TRUE
, FALSE
, time
);
1219 priv
->dnd_same_window
= FALSE
;
1222 /* We should return TRUE to remove the data when doing
1223 * GDK_ACTION_MOVE, but we don't here otherwise it has
1224 * weird consequences, and we handle that internally
1225 * anyway with add_chat() and remove_chat().
1227 gtk_drag_finish (context
, TRUE
, FALSE
, time
);
1229 DEBUG ("DND from unknown source");
1230 gtk_drag_finish (context
, FALSE
, FALSE
, time
);
1235 chat_window_finalize (GObject
*object
)
1237 EmpathyChatWindow
*window
;
1238 EmpathyChatWindowPriv
*priv
;
1240 window
= EMPATHY_CHAT_WINDOW (object
);
1241 priv
= GET_PRIV (window
);
1243 DEBUG ("Finalized: %p", object
);
1245 g_object_unref (priv
->ui_manager
);
1246 g_object_unref (priv
->chatroom_manager
);
1247 if (priv
->save_geometry_id
!= 0) {
1248 g_source_remove (priv
->save_geometry_id
);
1251 if (priv
->notification
!= NULL
) {
1252 notify_notification_close (priv
->notification
, NULL
);
1253 g_object_unref (priv
->notification
);
1254 priv
->notification
= NULL
;
1257 chat_windows
= g_list_remove (chat_windows
, window
);
1258 gtk_widget_destroy (priv
->dialog
);
1260 G_OBJECT_CLASS (empathy_chat_window_parent_class
)->finalize (object
);
1264 empathy_chat_window_class_init (EmpathyChatWindowClass
*klass
)
1266 GObjectClass
*object_class
= G_OBJECT_CLASS (klass
);
1268 object_class
->finalize
= chat_window_finalize
;
1270 g_type_class_add_private (object_class
, sizeof (EmpathyChatWindowPriv
));
1272 /* Set up a style for the close button with no focus padding. */
1273 gtk_rc_parse_string (
1274 "style \"empathy-close-button-style\"\n"
1276 " GtkWidget::focus-padding = 0\n"
1280 "widget \"*.empathy-close-button\" style \"empathy-close-button-style\"");
1282 gtk_notebook_set_window_creation_hook (chat_window_detach_hook
, NULL
, NULL
);
1286 empathy_chat_window_init (EmpathyChatWindow
*window
)
1289 GtkAccelGroup
*accel_group
;
1294 GtkWidget
*chat_vbox
;
1296 EmpathySmileyManager
*smiley_manager
;
1297 EmpathyChatWindowPriv
*priv
= G_TYPE_INSTANCE_GET_PRIVATE (window
,
1298 EMPATHY_TYPE_CHAT_WINDOW
, EmpathyChatWindowPriv
);
1300 window
->priv
= priv
;
1301 filename
= empathy_file_lookup ("empathy-chat-window.ui", "src");
1302 gui
= empathy_builder_get_file (filename
,
1303 "chat_window", &priv
->dialog
,
1304 "chat_vbox", &chat_vbox
,
1305 "ui_manager", &priv
->ui_manager
,
1306 "menu_conv_insert_smiley", &priv
->menu_conv_insert_smiley
,
1307 "menu_conv_contact", &priv
->menu_conv_contact
,
1308 "menu_conv_favorite", &priv
->menu_conv_favorite
,
1309 "menu_edit_cut", &priv
->menu_edit_cut
,
1310 "menu_edit_copy", &priv
->menu_edit_copy
,
1311 "menu_edit_paste", &priv
->menu_edit_paste
,
1312 "menu_tabs_next", &priv
->menu_tabs_next
,
1313 "menu_tabs_prev", &priv
->menu_tabs_prev
,
1314 "menu_tabs_left", &priv
->menu_tabs_left
,
1315 "menu_tabs_right", &priv
->menu_tabs_right
,
1316 "menu_tabs_detach", &priv
->menu_tabs_detach
,
1320 empathy_builder_connect (gui
, window
,
1321 "chat_window", "configure-event", chat_window_configure_event_cb
,
1322 "menu_conv", "activate", chat_window_conv_activate_cb
,
1323 "menu_conv_clear", "activate", chat_window_clear_activate_cb
,
1324 "menu_conv_favorite", "toggled", chat_window_favorite_toggled_cb
,
1325 "menu_conv_close", "activate", chat_window_close_activate_cb
,
1326 "menu_edit", "activate", chat_window_edit_activate_cb
,
1327 "menu_edit_cut", "activate", chat_window_cut_activate_cb
,
1328 "menu_edit_copy", "activate", chat_window_copy_activate_cb
,
1329 "menu_edit_paste", "activate", chat_window_paste_activate_cb
,
1330 "menu_tabs_left", "activate", chat_window_tabs_left_activate_cb
,
1331 "menu_tabs_right", "activate", chat_window_tabs_right_activate_cb
,
1332 "menu_tabs_detach", "activate", chat_window_detach_activate_cb
,
1333 "menu_help_contents", "activate", chat_window_help_contents_activate_cb
,
1334 "menu_help_about", "activate", chat_window_help_about_activate_cb
,
1337 g_object_ref (priv
->ui_manager
);
1338 g_object_unref (gui
);
1340 priv
->chatroom_manager
= empathy_chatroom_manager_dup_singleton (NULL
);
1342 priv
->notebook
= gtk_notebook_new ();
1343 gtk_notebook_set_group (GTK_NOTEBOOK (priv
->notebook
), "EmpathyChatWindow");
1344 gtk_box_pack_start (GTK_BOX (chat_vbox
), priv
->notebook
, TRUE
, TRUE
, 0);
1345 gtk_widget_show (priv
->notebook
);
1348 accel_group
= gtk_accel_group_new ();
1349 gtk_window_add_accel_group (GTK_WINDOW (priv
->dialog
), accel_group
);
1351 for (i
= 0; i
< G_N_ELEMENTS (tab_accel_keys
); i
++) {
1352 closure
= g_cclosure_new (G_CALLBACK (chat_window_accel_cb
),
1355 gtk_accel_group_connect (accel_group
,
1362 g_object_unref (accel_group
);
1364 /* Set up smiley menu */
1365 smiley_manager
= empathy_smiley_manager_dup_singleton ();
1366 submenu
= empathy_smiley_menu_new (smiley_manager
,
1367 chat_window_insert_smiley_activate_cb
,
1369 menu
= gtk_ui_manager_get_widget (priv
->ui_manager
,
1370 "/chats_menubar/menu_conv/menu_conv_insert_smiley");
1371 gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu
), submenu
);
1372 g_object_unref (smiley_manager
);
1374 /* Set up signals we can't do with ui file since we may need to
1375 * block/unblock them at some later stage.
1378 g_signal_connect (priv
->dialog
,
1380 G_CALLBACK (chat_window_delete_event_cb
),
1383 g_signal_connect_swapped (priv
->menu_tabs_prev
,
1385 G_CALLBACK (gtk_notebook_prev_page
),
1387 g_signal_connect_swapped (priv
->menu_tabs_next
,
1389 G_CALLBACK (gtk_notebook_next_page
),
1392 g_signal_connect (priv
->dialog
,
1394 G_CALLBACK (chat_window_focus_in_event_cb
),
1396 g_signal_connect_after (priv
->notebook
,
1398 G_CALLBACK (chat_window_page_switched_cb
),
1400 g_signal_connect (priv
->notebook
,
1402 G_CALLBACK (chat_window_page_added_cb
),
1404 g_signal_connect (priv
->notebook
,
1406 G_CALLBACK (chat_window_page_removed_cb
),
1409 /* Set up drag and drop */
1410 gtk_drag_dest_set (GTK_WIDGET (priv
->notebook
),
1411 GTK_DEST_DEFAULT_ALL
,
1413 G_N_ELEMENTS (drag_types_dest
),
1416 g_signal_connect (priv
->notebook
,
1417 "drag-data-received",
1418 G_CALLBACK (chat_window_drag_data_received
),
1421 chat_windows
= g_list_prepend (chat_windows
, window
);
1423 /* Set up private details */
1425 priv
->chats_new_msg
= NULL
;
1426 priv
->chats_composing
= NULL
;
1427 priv
->current_chat
= NULL
;
1431 empathy_chat_window_new (void)
1433 return EMPATHY_CHAT_WINDOW (g_object_new (EMPATHY_TYPE_CHAT_WINDOW
, NULL
));
1436 /* Returns the window to open a new tab in if there is only one window
1437 * visble, otherwise, returns NULL indicating that a new window should
1441 empathy_chat_window_get_default (void)
1444 gboolean separate_windows
= TRUE
;
1446 empathy_conf_get_bool (empathy_conf_get (),
1447 EMPATHY_PREFS_UI_SEPARATE_CHAT_WINDOWS
,
1450 if (separate_windows
) {
1451 /* Always create a new window */
1455 for (l
= chat_windows
; l
; l
= l
->next
) {
1456 EmpathyChatWindow
*chat_window
;
1459 chat_window
= l
->data
;
1461 dialog
= empathy_chat_window_get_dialog (chat_window
);
1462 if (empathy_window_get_is_visible (GTK_WINDOW (dialog
))) {
1463 /* Found a visible window on this desktop */
1472 empathy_chat_window_get_dialog (EmpathyChatWindow
*window
)
1474 EmpathyChatWindowPriv
*priv
;
1476 g_return_val_if_fail (window
!= NULL
, NULL
);
1478 priv
= GET_PRIV (window
);
1480 return priv
->dialog
;
1484 empathy_chat_window_add_chat (EmpathyChatWindow
*window
,
1487 EmpathyChatWindowPriv
*priv
;
1492 g_return_if_fail (window
!= NULL
);
1493 g_return_if_fail (EMPATHY_IS_CHAT (chat
));
1495 priv
= GET_PRIV (window
);
1497 /* Reference the chat object */
1498 g_object_ref (chat
);
1500 /* If this window has just been created, position it */
1501 if (priv
->chats
== NULL
) {
1502 empathy_geometry_load (chat_get_window_id_for_geometry (chat
), &x
, &y
, &w
, &h
);
1504 if (x
>= 0 && y
>= 0) {
1505 /* Let the window manager position it if we don't have
1506 * good x, y coordinates.
1508 gtk_window_move (GTK_WINDOW (priv
->dialog
), x
, y
);
1511 if (w
> 0 && h
> 0) {
1512 /* Use the defaults from the ui file if we don't have
1513 * good w, h geometry.
1515 gtk_window_resize (GTK_WINDOW (priv
->dialog
), w
, h
);
1519 child
= GTK_WIDGET (chat
);
1520 label
= chat_window_create_label (window
, chat
);
1521 gtk_widget_show (child
);
1523 g_signal_connect (chat
, "notify::name",
1524 G_CALLBACK (chat_window_chat_notify_cb
),
1526 g_signal_connect (chat
, "notify::subject",
1527 G_CALLBACK (chat_window_chat_notify_cb
),
1529 g_signal_connect (chat
, "notify::remote-contact",
1530 G_CALLBACK (chat_window_chat_notify_cb
),
1532 chat_window_chat_notify_cb (chat
);
1534 gtk_notebook_append_page (GTK_NOTEBOOK (priv
->notebook
), child
, label
);
1535 gtk_notebook_set_tab_reorderable (GTK_NOTEBOOK (priv
->notebook
), child
, TRUE
);
1536 gtk_notebook_set_tab_detachable (GTK_NOTEBOOK (priv
->notebook
), child
, TRUE
);
1537 gtk_notebook_set_tab_label_packing (GTK_NOTEBOOK (priv
->notebook
), child
,
1538 TRUE
, TRUE
, GTK_PACK_START
);
1540 DEBUG ("Chat added (%d references)", G_OBJECT (chat
)->ref_count
);
1544 empathy_chat_window_remove_chat (EmpathyChatWindow
*window
,
1547 EmpathyChatWindowPriv
*priv
;
1549 EmpathyContact
*remote_contact
;
1551 g_return_if_fail (window
!= NULL
);
1552 g_return_if_fail (EMPATHY_IS_CHAT (chat
));
1554 priv
= GET_PRIV (window
);
1556 g_signal_handlers_disconnect_by_func (chat
,
1557 chat_window_chat_notify_cb
,
1559 remote_contact
= g_object_get_data (G_OBJECT (chat
),
1560 "chat-window-remote-contact");
1561 if (remote_contact
) {
1562 g_signal_handlers_disconnect_by_func (remote_contact
,
1563 chat_window_update_chat_tab
,
1567 position
= gtk_notebook_page_num (GTK_NOTEBOOK (priv
->notebook
),
1569 gtk_notebook_remove_page (GTK_NOTEBOOK (priv
->notebook
), position
);
1571 DEBUG ("Chat removed (%d references)", G_OBJECT (chat
)->ref_count
- 1);
1573 g_object_unref (chat
);
1577 empathy_chat_window_move_chat (EmpathyChatWindow
*old_window
,
1578 EmpathyChatWindow
*new_window
,
1583 g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (old_window
));
1584 g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (new_window
));
1585 g_return_if_fail (EMPATHY_IS_CHAT (chat
));
1587 widget
= GTK_WIDGET (chat
);
1589 DEBUG ("Chat moving with widget:%p (%d references)", widget
,
1590 G_OBJECT (widget
)->ref_count
);
1592 /* We reference here to make sure we don't loose the widget
1593 * and the EmpathyChat object during the move.
1595 g_object_ref (chat
);
1596 g_object_ref (widget
);
1598 empathy_chat_window_remove_chat (old_window
, chat
);
1599 empathy_chat_window_add_chat (new_window
, chat
);
1601 g_object_unref (widget
);
1602 g_object_unref (chat
);
1606 empathy_chat_window_switch_to_chat (EmpathyChatWindow
*window
,
1609 EmpathyChatWindowPriv
*priv
;
1612 g_return_if_fail (window
!= NULL
);
1613 g_return_if_fail (EMPATHY_IS_CHAT (chat
));
1615 priv
= GET_PRIV (window
);
1617 page_num
= gtk_notebook_page_num (GTK_NOTEBOOK (priv
->notebook
),
1619 gtk_notebook_set_current_page (GTK_NOTEBOOK (priv
->notebook
),
1624 empathy_chat_window_has_focus (EmpathyChatWindow
*window
)
1626 EmpathyChatWindowPriv
*priv
;
1629 g_return_val_if_fail (EMPATHY_IS_CHAT_WINDOW (window
), FALSE
);
1631 priv
= GET_PRIV (window
);
1633 g_object_get (priv
->dialog
, "has-toplevel-focus", &has_focus
, NULL
);
1639 empathy_chat_window_find_chat (McAccount
*account
,
1644 g_return_val_if_fail (MC_IS_ACCOUNT (account
), NULL
);
1645 g_return_val_if_fail (!EMP_STR_EMPTY (id
), NULL
);
1647 for (l
= chat_windows
; l
; l
= l
->next
) {
1648 EmpathyChatWindowPriv
*priv
;
1649 EmpathyChatWindow
*window
;
1653 priv
= GET_PRIV (window
);
1655 for (ll
= priv
->chats
; ll
; ll
= ll
->next
) {
1660 if (empathy_account_equal (account
, empathy_chat_get_account (chat
)) &&
1661 !tp_strdiff (id
, empathy_chat_get_id (chat
))) {
1671 empathy_chat_window_present_chat (EmpathyChat
*chat
)
1673 EmpathyChatWindow
*window
;
1674 EmpathyChatWindowPriv
*priv
;
1676 g_return_if_fail (EMPATHY_IS_CHAT (chat
));
1678 window
= chat_window_find_chat (chat
);
1680 /* If the chat has no window, create one */
1681 if (window
== NULL
) {
1682 window
= empathy_chat_window_get_default ();
1684 window
= empathy_chat_window_new ();
1687 empathy_chat_window_add_chat (window
, chat
);
1690 priv
= GET_PRIV (window
);
1691 empathy_chat_window_switch_to_chat (window
, chat
);
1692 empathy_window_present (GTK_WINDOW (priv
->dialog
), TRUE
);
1694 gtk_widget_grab_focus (chat
->input_text_view
);
1699 chat_window_should_play_sound (EmpathyChatWindow
*window
)
1701 EmpathyChatWindowPriv
*priv
= GET_PRIV (window
);
1702 gboolean has_focus
= FALSE
;
1704 g_return_val_if_fail (EMPATHY_IS_CHAT_WINDOW (window
), FALSE
);
1706 g_object_get (priv
->dialog
, "has-toplevel-focus", &has_focus
, NULL
);