]> git.0d.be Git - empathy.git/blob - src/empathy-chat-window.c
Merge back from master
[empathy.git] / src / empathy-chat-window.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2003-2007 Imendio AB
4  * Copyright (C) 2007-2008 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  USA
20  *
21  * Authors: 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>
26  */
27
28 #include <config.h>
29
30 #include <string.h>
31
32 #include <gtk/gtk.h>
33 #include <gdk/gdkkeysyms.h>
34 #include <glib/gi18n.h>
35 #include <libnotify/notification.h>
36
37 #include <telepathy-glib/util.h>
38
39 #include <libempathy/empathy-contact.h>
40 #include <libempathy/empathy-message.h>
41 #include <libempathy/empathy-dispatcher.h>
42 #include <libempathy/empathy-chatroom-manager.h>
43 #include <libempathy/empathy-account-manager.h>
44 #include <libempathy/empathy-utils.h>
45
46 #include <libempathy-gtk/empathy-images.h>
47 #include <libempathy-gtk/empathy-conf.h>
48 #include <libempathy-gtk/empathy-contact-dialogs.h>
49 #include <libempathy-gtk/empathy-log-window.h>
50 #include <libempathy-gtk/empathy-geometry.h>
51 #include <libempathy-gtk/empathy-smiley-manager.h>
52 #include <libempathy-gtk/empathy-sound.h>
53 #include <libempathy-gtk/empathy-ui-utils.h>
54
55 #include "empathy-chat-window.h"
56 #include "empathy-about-dialog.h"
57 #include "empathy-misc.h"
58
59 #define DEBUG_FLAG EMPATHY_DEBUG_CHAT
60 #include <libempathy/empathy-debug.h>
61
62 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyChatWindow)
63 typedef struct {
64         EmpathyChat *current_chat;
65         GList       *chats;
66         GList       *chats_new_msg;
67         GList       *chats_composing;
68         gboolean     page_added;
69         gboolean     dnd_same_window;
70         guint        save_geometry_id;
71         EmpathyChatroomManager *chatroom_manager;
72         GtkWidget   *dialog;
73         GtkWidget   *notebook;
74         NotifyNotification *notification;
75
76         /* Menu items. */
77         GtkUIManager *ui_manager;
78         GtkAction   *menu_conv_insert_smiley;
79         GtkAction   *menu_conv_favorite;
80         GtkAction   *menu_conv_toggle_contacts;
81
82         GtkAction   *menu_edit_cut;
83         GtkAction   *menu_edit_copy;
84         GtkAction   *menu_edit_paste;
85
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;
92
93 static GList *chat_windows = NULL;
94
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
98 };
99
100 typedef enum {
101         DND_DRAG_TYPE_CONTACT_ID,
102         DND_DRAG_TYPE_TAB
103 } DndDragType;
104
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 },
108 };
109
110 G_DEFINE_TYPE (EmpathyChatWindow, empathy_chat_window, G_TYPE_OBJECT);
111
112 static void
113 chat_window_accel_cb (GtkAccelGroup    *accelgroup,
114                       GObject          *object,
115                       guint             key,
116                       GdkModifierType   mod,
117                       EmpathyChatWindow *window)
118 {
119         EmpathyChatWindowPriv *priv;
120         gint                  num = -1;
121         gint                  i;
122
123         priv = GET_PRIV (window);
124
125         for (i = 0; i < G_N_ELEMENTS (tab_accel_keys); i++) {
126                 if (tab_accel_keys[i] == key) {
127                         num = i;
128                         break;
129                 }
130         }
131
132         if (num != -1) {
133                 gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->notebook), num);
134         }
135 }
136
137 static EmpathyChatWindow *
138 chat_window_find_chat (EmpathyChat *chat)
139 {
140         EmpathyChatWindowPriv *priv;
141         GList                 *l, *ll;
142
143         for (l = chat_windows; l; l = l->next) {
144                 priv = GET_PRIV (l->data);
145                 ll = g_list_find (priv->chats, chat);
146                 if (ll) {
147                         return l->data;
148                 }
149         }
150
151         return NULL;
152 }
153
154 static void
155 chat_window_close_clicked_cb (GtkAction   *action,
156                               EmpathyChat *chat)
157 {
158         EmpathyChatWindow *window;
159
160         window = chat_window_find_chat (chat);
161         empathy_chat_window_remove_chat (window, chat);
162 }
163
164 static void
165 chat_tab_style_set_cb (GtkWidget *hbox,
166                                        GtkStyle  *previous_style,
167                                        gpointer   user_data)
168 {
169         GtkWidget *button;
170         int char_width, h, w;
171         PangoContext *context;
172         PangoFontMetrics *metrics;
173
174         button = g_object_get_data (G_OBJECT (user_data),
175                 "chat-window-tab-close-button");
176         context = gtk_widget_get_pango_context (hbox);
177
178         metrics = pango_context_get_metrics (context, gtk_widget_get_style (hbox)->font_desc,
179                 pango_context_get_language (context));
180         char_width = pango_font_metrics_get_approximate_char_width (metrics);
181         pango_font_metrics_unref (metrics);
182
183         gtk_icon_size_lookup_for_settings (gtk_widget_get_settings (button),
184                                            GTK_ICON_SIZE_MENU, &w, &h);
185
186         /* Request at least about 12 chars width plus at least space for the status
187          * image and the close button */
188         gtk_widget_set_size_request (hbox,
189                 12 * PANGO_PIXELS (char_width) + 2 * w, -1);
190
191         gtk_widget_set_size_request (button, w, h);
192 }
193
194 static GtkWidget *
195 chat_window_create_label (EmpathyChatWindow *window,
196                           EmpathyChat       *chat,
197                           gboolean           is_tab_label)
198 {
199         EmpathyChatWindowPriv *priv;
200         GtkWidget            *hbox;
201         GtkWidget            *name_label;
202         GtkWidget            *status_image;
203         GtkWidget            *close_button;
204         GtkWidget            *close_image;
205         GtkWidget            *event_box;
206         GtkWidget            *event_box_hbox;
207         PangoAttrList        *attr_list;
208         PangoAttribute       *attr;
209
210         priv = GET_PRIV (window);
211
212         /* The spacing between the button and the label. */
213         hbox = gtk_hbox_new (FALSE, 0);
214
215         event_box = gtk_event_box_new ();
216         gtk_event_box_set_visible_window (GTK_EVENT_BOX (event_box), FALSE);
217
218         name_label = gtk_label_new (NULL);
219         if (is_tab_label)
220                 gtk_label_set_ellipsize (GTK_LABEL (name_label), PANGO_ELLIPSIZE_END);
221
222         attr_list = pango_attr_list_new ();
223         attr = pango_attr_scale_new (1/1.2);
224         attr->start_index = 0;
225         attr->end_index = -1;
226         pango_attr_list_insert (attr_list, attr);
227         gtk_label_set_attributes (GTK_LABEL (name_label), attr_list);
228         pango_attr_list_unref (attr_list);
229
230         gtk_misc_set_padding (GTK_MISC (name_label), 2, 0);
231         gtk_misc_set_alignment (GTK_MISC (name_label), 0.0, 0.5);
232         g_object_set_data (G_OBJECT (chat),
233                 is_tab_label ? "chat-window-tab-label" : "chat-window-menu-label",
234                 name_label);
235
236         status_image = gtk_image_new ();
237
238         /* Spacing between the icon and label. */
239         event_box_hbox = gtk_hbox_new (FALSE, 0);
240
241         gtk_box_pack_start (GTK_BOX (event_box_hbox), status_image, FALSE, FALSE, 0);
242         gtk_box_pack_start (GTK_BOX (event_box_hbox), name_label, TRUE, TRUE, 0);
243
244         g_object_set_data (G_OBJECT (chat),
245                 is_tab_label ? "chat-window-tab-image" : "chat-window-menu-image",
246                 status_image);
247         g_object_set_data (G_OBJECT (chat),
248                 is_tab_label ? "chat-window-tab-tooltip-widget" : "chat-window-menu-tooltip-widget",
249                 event_box);
250
251         gtk_container_add (GTK_CONTAINER (event_box), event_box_hbox);
252         gtk_box_pack_start (GTK_BOX (hbox), event_box, TRUE, TRUE, 0);
253
254         if (is_tab_label) {
255                 close_button = gtk_button_new ();
256                 gtk_button_set_relief (GTK_BUTTON (close_button), GTK_RELIEF_NONE);
257                 g_object_set_data (G_OBJECT (chat), "chat-window-tab-close-button", close_button);
258
259                 /* We don't want focus/keynav for the button to avoid clutter, and
260                  * Ctrl-W works anyway.
261                  */
262                 GTK_WIDGET_UNSET_FLAGS (close_button, GTK_CAN_FOCUS);
263                 GTK_WIDGET_UNSET_FLAGS (close_button, GTK_CAN_DEFAULT);
264
265                 /* Set the name to make the special rc style match. */
266                 gtk_widget_set_name (close_button, "empathy-close-button");
267
268                 close_image = gtk_image_new_from_stock (GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU);
269
270                 gtk_container_add (GTK_CONTAINER (close_button), close_image);
271
272                 gtk_box_pack_end (GTK_BOX (hbox), close_button, FALSE, FALSE, 0);
273
274                 g_signal_connect (close_button,
275                                   "clicked",
276                                   G_CALLBACK (chat_window_close_clicked_cb),
277                                   chat);
278
279                 /* React to theme changes and also setup the size correctly.  */
280                 g_signal_connect (hbox,
281                                   "style-set",
282                                   G_CALLBACK (chat_tab_style_set_cb),
283                                   chat);
284         }
285
286         gtk_widget_show_all (hbox);
287
288         return hbox;
289 }
290
291 static void
292 chat_window_update (EmpathyChatWindow *window)
293 {
294         EmpathyChatWindowPriv *priv = GET_PRIV (window);
295         gboolean               first_page;
296         gboolean               last_page;
297         gboolean               is_connected;
298         gint                   num_pages;
299         gint                   page_num;
300         gint                   i;
301         const gchar           *name;
302         guint                  n_chats;
303         GdkPixbuf             *icon;
304         EmpathyContact        *remote_contact;
305         gboolean               avatar_in_icon;
306         GtkWidget             *chat;
307         GtkWidget             *chat_close_button;
308         GtkWidget             *submenu;
309         GtkWidget             *menu;
310
311         /* Get information */
312         page_num = gtk_notebook_get_current_page (GTK_NOTEBOOK (priv->notebook));
313         num_pages = gtk_notebook_get_n_pages (GTK_NOTEBOOK (priv->notebook));
314         first_page = (page_num == 0);
315         last_page = (page_num == (num_pages - 1));
316         is_connected = empathy_chat_get_tp_chat (priv->current_chat) != NULL;
317         name = empathy_chat_get_name (priv->current_chat);
318         n_chats = g_list_length (priv->chats);
319
320         DEBUG ("Update window");
321
322         /* Update menu */
323         gtk_action_set_sensitive (priv->menu_tabs_next, !last_page);
324         gtk_action_set_sensitive (priv->menu_tabs_prev, !first_page);
325         gtk_action_set_sensitive (priv->menu_tabs_detach, num_pages > 1);
326         gtk_action_set_sensitive (priv->menu_tabs_left, !first_page);
327         gtk_action_set_sensitive (priv->menu_tabs_right, !last_page);
328         gtk_action_set_sensitive (priv->menu_conv_insert_smiley, is_connected);
329
330         /* Update Contact menu */
331         menu = gtk_ui_manager_get_widget (priv->ui_manager,
332                 "/chats_menubar/menu_contact");
333         submenu = empathy_chat_get_contact_menu (priv->current_chat);
334         gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu), submenu);
335         gtk_widget_show (menu);
336
337         /* Update window title */
338         if (n_chats == 1) {
339                 gtk_window_set_title (GTK_WINDOW (priv->dialog), name);
340         } else {
341                 gchar *title;
342
343                 title = g_strdup_printf (_("Conversations (%d)"), n_chats);
344                 gtk_window_set_title (GTK_WINDOW (priv->dialog), title);
345                 g_free (title);
346         }
347
348         /* Update window icon */
349         if (priv->chats_new_msg) {
350                 gtk_window_set_icon_name (GTK_WINDOW (priv->dialog),
351                                           EMPATHY_IMAGE_MESSAGE);
352         } else {
353                 empathy_conf_get_bool (empathy_conf_get (),
354                                        EMPATHY_PREFS_CHAT_AVATAR_IN_ICON,
355                                        &avatar_in_icon);
356
357                 if (n_chats == 1 && avatar_in_icon) {
358                         remote_contact = empathy_chat_get_remote_contact (priv->current_chat);
359                         icon = empathy_pixbuf_avatar_from_contact_scaled (remote_contact, 0, 0);
360                         gtk_window_set_icon (GTK_WINDOW (priv->dialog), icon);
361
362                         if (icon != NULL) {
363                                 g_object_unref (icon);
364                         }
365                 } else {
366                         gtk_window_set_icon_name (GTK_WINDOW (priv->dialog), NULL);
367                 }
368         }
369
370         if (num_pages == 1) {
371                 chat = gtk_notebook_get_nth_page (GTK_NOTEBOOK (priv->notebook), 0);
372                 chat_close_button = g_object_get_data (G_OBJECT (chat),
373                                 "chat-window-tab-close-button");
374                 gtk_widget_hide (chat_close_button);
375         } else {
376                 for (i=0; i<num_pages; i++) {
377                         chat = gtk_notebook_get_nth_page (GTK_NOTEBOOK (priv->notebook), i);
378                         chat_close_button = g_object_get_data (G_OBJECT (chat),
379                                         "chat-window-tab-close-button");
380                         gtk_widget_show (chat_close_button);
381                 }
382         }
383 }
384
385 static void
386 append_markup_printf (GString    *string,
387                       const char *format,
388                       ...)
389 {
390         gchar *tmp;
391         va_list args;
392
393         va_start (args, format);
394
395         tmp = g_markup_vprintf_escaped (format, args);
396         g_string_append (string, tmp);
397         g_free (tmp);
398
399         va_end (args);
400 }
401
402 static void
403 chat_window_update_chat_tab (EmpathyChat *chat)
404 {
405         EmpathyChatWindow     *window;
406         EmpathyChatWindowPriv *priv;
407         EmpathyContact        *remote_contact;
408         const gchar           *name;
409         const gchar           *id;
410         EmpathyAccount        *account;
411         const gchar           *subject;
412         const gchar           *status = NULL;
413         GtkWidget             *widget;
414         GString               *tooltip;
415         gchar                 *markup;
416         const gchar           *icon_name;
417
418         window = chat_window_find_chat (chat);
419         if (!window) {
420                 return;
421         }
422         priv = GET_PRIV (window);
423
424         /* Get information */
425         name = empathy_chat_get_name (chat);
426         account = empathy_chat_get_account (chat);
427         subject = empathy_chat_get_subject (chat);
428         remote_contact = empathy_chat_get_remote_contact (chat);
429
430         DEBUG ("Updating chat tab, name=%s, account=%s, subject=%s, remote_contact=%p",
431                 name, empathy_account_get_unique_name (account), subject, remote_contact);
432
433         /* Update tab image */
434         if (g_list_find (priv->chats_new_msg, chat)) {
435                 icon_name = EMPATHY_IMAGE_MESSAGE;
436         }
437         else if (g_list_find (priv->chats_composing, chat)) {
438                 icon_name = EMPATHY_IMAGE_TYPING;
439         }
440         else if (remote_contact) {
441                 icon_name = empathy_icon_name_for_contact (remote_contact);
442         } else {
443                 icon_name = EMPATHY_IMAGE_GROUP_MESSAGE;
444         }
445         widget = g_object_get_data (G_OBJECT (chat), "chat-window-tab-image");
446         gtk_image_set_from_icon_name (GTK_IMAGE (widget), icon_name, GTK_ICON_SIZE_MENU);
447         widget = g_object_get_data (G_OBJECT (chat), "chat-window-menu-image");
448         gtk_image_set_from_icon_name (GTK_IMAGE (widget), icon_name, GTK_ICON_SIZE_MENU);
449
450         /* Update tab tooltip */
451         tooltip = g_string_new (NULL);
452
453         if (remote_contact) {
454                 id = empathy_contact_get_id (remote_contact);
455                 status = empathy_contact_get_presence_message (remote_contact);
456         } else {
457                 id = name;
458         }
459
460         append_markup_printf (tooltip,
461                               "<b>%s</b><small> (%s)</small>",
462                               id,
463                               empathy_account_get_display_name (account));
464
465         if (!EMP_STR_EMPTY (status)) {
466                 append_markup_printf (tooltip, "\n<i>%s</i>", status);
467         }
468
469         if (subject) {
470                 append_markup_printf (tooltip, "\n<b>%s</b> %s",
471                                       _("Topic:"), subject);
472         }
473
474         if (g_list_find (priv->chats_composing, chat)) {
475                 append_markup_printf (tooltip, "\n%s", _("Typing a message."));
476         }
477
478         markup = g_string_free (tooltip, FALSE);
479         widget = g_object_get_data (G_OBJECT (chat), "chat-window-tab-tooltip-widget");
480         gtk_widget_set_tooltip_markup (widget, markup);
481         widget = g_object_get_data (G_OBJECT (chat), "chat-window-menu-tooltip-widget");
482         gtk_widget_set_tooltip_markup (widget, markup);
483         g_free (markup);
484
485         /* Update tab and menu label */
486         widget = g_object_get_data (G_OBJECT (chat), "chat-window-tab-label");
487         gtk_label_set_text (GTK_LABEL (widget), name);
488         widget = g_object_get_data (G_OBJECT (chat), "chat-window-menu-label");
489         gtk_label_set_text (GTK_LABEL (widget), name);
490
491         /* Update the window if it's the current chat */
492         if (priv->current_chat == chat) {
493                 chat_window_update (window);
494         }
495 }
496
497 static void
498 chat_window_chat_notify_cb (EmpathyChat *chat)
499 {
500         EmpathyContact *old_remote_contact;
501         EmpathyContact *remote_contact = NULL;
502
503         old_remote_contact = g_object_get_data (G_OBJECT (chat), "chat-window-remote-contact");
504         remote_contact = empathy_chat_get_remote_contact (chat);
505
506         if (old_remote_contact != remote_contact) {
507                 /* The remote-contact associated with the chat changed, we need
508                  * to keep track of any change of that contact and update the
509                  * window each time. */
510                 if (remote_contact) {
511                         g_signal_connect_swapped (remote_contact, "notify",
512                                                   G_CALLBACK (chat_window_update_chat_tab),
513                                                   chat);
514                 }
515                 if (old_remote_contact) {
516                         g_signal_handlers_disconnect_by_func (old_remote_contact,
517                                                               chat_window_update_chat_tab,
518                                                               chat);
519                 }
520
521                 g_object_set_data (G_OBJECT (chat), "chat-window-remote-contact",
522                                    remote_contact);
523         }
524
525         chat_window_update_chat_tab (chat);
526 }
527
528 static void
529 chat_window_insert_smiley_activate_cb (EmpathySmileyManager *manager,
530                                        EmpathySmiley        *smiley,
531                                        gpointer              window)
532 {
533         EmpathyChatWindowPriv *priv = GET_PRIV (window);
534         EmpathyChat           *chat;
535         GtkTextBuffer         *buffer;
536         GtkTextIter            iter;
537
538         chat = priv->current_chat;
539
540         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (chat->input_text_view));
541         gtk_text_buffer_get_end_iter (buffer, &iter);
542         gtk_text_buffer_insert (buffer, &iter, smiley->str, -1);
543 }
544
545 static void
546 chat_window_conv_activate_cb (GtkAction         *action,
547                               EmpathyChatWindow *window)
548 {
549         EmpathyChatWindowPriv *priv = GET_PRIV (window);
550         gboolean               is_room;
551         gboolean               active;
552         EmpathyContact        *remote_contact = NULL;
553
554         /* Favorite room menu */
555         is_room = empathy_chat_is_room (priv->current_chat);
556         if (is_room) {
557                 const gchar *room;
558                 EmpathyAccount   *account;
559                 gboolean     found = FALSE;
560                 EmpathyChatroom *chatroom;
561
562                 room = empathy_chat_get_id (priv->current_chat);
563                 account = empathy_chat_get_account (priv->current_chat);
564                 chatroom = empathy_chatroom_manager_find (priv->chatroom_manager,
565                                                        account, room);
566                 if (chatroom != NULL)
567                         found = empathy_chatroom_is_favorite (chatroom);
568
569                 DEBUG ("This room %s favorite", found ? "is" : "is not");
570                 gtk_toggle_action_set_active (
571                         GTK_TOGGLE_ACTION (priv->menu_conv_favorite), found);
572         }
573         gtk_action_set_visible (priv->menu_conv_favorite, is_room);
574
575         /* Show contacts menu */
576         g_object_get (priv->current_chat,
577                       "remote-contact", &remote_contact,
578                       "show-contacts", &active,
579                       NULL);
580         if (remote_contact == NULL) {
581                 gtk_toggle_action_set_active (
582                         GTK_TOGGLE_ACTION (priv->menu_conv_toggle_contacts),
583                                            active);
584         }
585         gtk_action_set_visible (priv->menu_conv_toggle_contacts,
586                                 (remote_contact == NULL));
587         if (remote_contact != NULL) {
588                 g_object_unref (remote_contact);
589         }
590 }
591
592 static void
593 chat_window_clear_activate_cb (GtkAction         *action,
594                                EmpathyChatWindow *window)
595 {
596         EmpathyChatWindowPriv *priv = GET_PRIV (window);
597
598         empathy_chat_clear (priv->current_chat);
599 }
600
601 static void
602 chat_window_favorite_toggled_cb (GtkToggleAction   *toggle_action,
603                                  EmpathyChatWindow *window)
604 {
605         EmpathyChatWindowPriv *priv = GET_PRIV (window);
606         gboolean               active;
607         EmpathyAccount        *account;
608         const gchar           *room;
609         EmpathyChatroom       *chatroom;
610
611         active = gtk_toggle_action_get_active (toggle_action);
612         account = empathy_chat_get_account (priv->current_chat);
613         room = empathy_chat_get_id (priv->current_chat);
614
615         chatroom = empathy_chatroom_manager_find (priv->chatroom_manager,
616                                                   account, room);
617
618         if (chatroom == NULL) {
619                 const gchar *name;
620
621                 name = empathy_chat_get_name (priv->current_chat);
622                 chatroom = empathy_chatroom_new_full (account, room, name, FALSE);
623                 empathy_chatroom_manager_add (priv->chatroom_manager, chatroom);
624                 g_object_unref (chatroom);
625   }
626
627         empathy_chatroom_set_favorite (chatroom, active);
628 }
629
630 static void
631 chat_window_contacts_toggled_cb (GtkToggleAction   *toggle_action,
632                                  EmpathyChatWindow *window)
633 {
634         EmpathyChatWindowPriv *priv = GET_PRIV (window);
635         gboolean               active;
636
637         active = gtk_toggle_action_get_active (toggle_action);
638
639         empathy_chat_set_show_contacts (priv->current_chat, active);
640 }
641
642 static const gchar *
643 chat_get_window_id_for_geometry (EmpathyChat *chat)
644 {
645         const gchar *res = NULL;
646         gboolean     separate_windows;
647
648         empathy_conf_get_bool (empathy_conf_get (),
649                                EMPATHY_PREFS_UI_SEPARATE_CHAT_WINDOWS,
650                                &separate_windows);
651
652         if (separate_windows) {
653                 res = empathy_chat_get_id (chat);
654         }
655
656         return res ? res : "chat-window";
657 }
658
659 static gboolean
660 chat_window_save_geometry_timeout_cb (EmpathyChatWindow *window)
661 {
662         EmpathyChatWindowPriv *priv;
663         gint                  x, y, w, h;
664
665         priv = GET_PRIV (window);
666
667         gtk_window_get_size (GTK_WINDOW (priv->dialog), &w, &h);
668         gtk_window_get_position (GTK_WINDOW (priv->dialog), &x, &y);
669
670         empathy_geometry_save (chat_get_window_id_for_geometry (priv->current_chat),
671                                x, y, w, h);
672
673         priv->save_geometry_id = 0;
674
675         return FALSE;
676 }
677
678 static gboolean
679 chat_window_configure_event_cb (GtkWidget         *widget,
680                                 GdkEventConfigure *event,
681                                 EmpathyChatWindow  *window)
682 {
683         EmpathyChatWindowPriv *priv;
684
685         priv = GET_PRIV (window);
686
687         if (priv->save_geometry_id != 0) {
688                 g_source_remove (priv->save_geometry_id);
689         }
690
691         priv->save_geometry_id =
692                 g_timeout_add_seconds (1,
693                                        (GSourceFunc) chat_window_save_geometry_timeout_cb,
694                                        window);
695
696         return FALSE;
697 }
698
699 static void
700 chat_window_close_activate_cb (GtkAction         *action,
701                                EmpathyChatWindow *window)
702 {
703         EmpathyChatWindowPriv *priv;
704
705         priv = GET_PRIV (window);
706
707         g_return_if_fail (priv->current_chat != NULL);
708
709         empathy_chat_window_remove_chat (window, priv->current_chat);
710 }
711
712 static void
713 chat_window_edit_activate_cb (GtkAction         *action,
714                               EmpathyChatWindow *window)
715 {
716         EmpathyChatWindowPriv *priv;
717         GtkClipboard         *clipboard;
718         GtkTextBuffer        *buffer;
719         gboolean              text_available;
720
721         priv = GET_PRIV (window);
722
723         g_return_if_fail (priv->current_chat != NULL);
724
725         if (!empathy_chat_get_tp_chat (priv->current_chat)) {
726                 gtk_action_set_sensitive (priv->menu_edit_copy, FALSE);
727                 gtk_action_set_sensitive (priv->menu_edit_cut, FALSE);
728                 gtk_action_set_sensitive (priv->menu_edit_paste, FALSE);
729                 return;
730         }
731
732         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (priv->current_chat->input_text_view));
733         if (gtk_text_buffer_get_has_selection (buffer)) {
734                 gtk_action_set_sensitive (priv->menu_edit_copy, TRUE);
735                 gtk_action_set_sensitive (priv->menu_edit_cut, TRUE);
736         } else {
737                 gboolean selection;
738
739                 selection = empathy_chat_view_get_has_selection (priv->current_chat->view);
740
741                 gtk_action_set_sensitive (priv->menu_edit_cut, FALSE);
742                 gtk_action_set_sensitive (priv->menu_edit_copy, selection);
743         }
744
745         clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
746         text_available = gtk_clipboard_wait_is_text_available (clipboard);
747         gtk_action_set_sensitive (priv->menu_edit_paste, text_available);
748 }
749
750 static void
751 chat_window_cut_activate_cb (GtkAction         *action,
752                              EmpathyChatWindow *window)
753 {
754         EmpathyChatWindowPriv *priv;
755
756         g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (window));
757
758         priv = GET_PRIV (window);
759
760         empathy_chat_cut (priv->current_chat);
761 }
762
763 static void
764 chat_window_copy_activate_cb (GtkAction         *action,
765                               EmpathyChatWindow *window)
766 {
767         EmpathyChatWindowPriv *priv;
768
769         g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (window));
770
771         priv = GET_PRIV (window);
772
773         empathy_chat_copy (priv->current_chat);
774 }
775
776 static void
777 chat_window_paste_activate_cb (GtkAction         *action,
778                                EmpathyChatWindow *window)
779 {
780         EmpathyChatWindowPriv *priv;
781
782         g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (window));
783
784         priv = GET_PRIV (window);
785
786         empathy_chat_paste (priv->current_chat);
787 }
788
789 static void
790 chat_window_tabs_left_activate_cb (GtkAction         *action,
791                                    EmpathyChatWindow *window)
792 {
793         EmpathyChatWindowPriv *priv;
794         EmpathyChat           *chat;
795         gint                  index;
796
797         priv = GET_PRIV (window);
798
799         chat = priv->current_chat;
800         index = gtk_notebook_get_current_page (GTK_NOTEBOOK (priv->notebook));
801         if (index <= 0) {
802                 return;
803         }
804
805         gtk_notebook_reorder_child (GTK_NOTEBOOK (priv->notebook),
806                                     GTK_WIDGET (chat),
807                                     index - 1);
808 }
809
810 static void
811 chat_window_tabs_right_activate_cb (GtkAction         *action,
812                                     EmpathyChatWindow *window)
813 {
814         EmpathyChatWindowPriv *priv;
815         EmpathyChat           *chat;
816         gint                  index;
817
818         priv = GET_PRIV (window);
819
820         chat = priv->current_chat;
821         index = gtk_notebook_get_current_page (GTK_NOTEBOOK (priv->notebook));
822
823         gtk_notebook_reorder_child (GTK_NOTEBOOK (priv->notebook),
824                                     GTK_WIDGET (chat),
825                                     index + 1);
826 }
827
828 static void
829 chat_window_detach_activate_cb (GtkAction         *action,
830                                 EmpathyChatWindow *window)
831 {
832         EmpathyChatWindowPriv *priv;
833         EmpathyChatWindow     *new_window;
834         EmpathyChat           *chat;
835
836         priv = GET_PRIV (window);
837
838         chat = priv->current_chat;
839         new_window = empathy_chat_window_new ();
840
841         empathy_chat_window_move_chat (window, new_window, chat);
842
843         priv = GET_PRIV (new_window);
844         gtk_widget_show (priv->dialog);
845 }
846
847 static void
848 chat_window_help_contents_activate_cb (GtkAction         *action,
849                                        EmpathyChatWindow *window)
850 {
851         EmpathyChatWindowPriv *priv = GET_PRIV (window);
852
853         empathy_url_show (priv->dialog, "ghelp:empathy");
854 }
855
856 static void
857 chat_window_help_about_activate_cb (GtkAction         *action,
858                                     EmpathyChatWindow *window)
859 {
860         EmpathyChatWindowPriv *priv = GET_PRIV (window);
861
862         empathy_about_dialog_new (GTK_WINDOW (priv->dialog));
863 }
864
865 static gboolean
866 chat_window_delete_event_cb (GtkWidget        *dialog,
867                              GdkEvent         *event,
868                              EmpathyChatWindow *window)
869 {
870         EmpathyChatWindowPriv *priv = GET_PRIV (window);
871
872         DEBUG ("Delete event received");
873
874         g_object_ref (window);
875         while (priv->chats) {
876                 empathy_chat_window_remove_chat (window, priv->chats->data);
877         }
878         g_object_unref (window);
879
880         return TRUE;
881 }
882
883 static void
884 chat_window_composing_cb (EmpathyChat       *chat,
885                           gboolean          is_composing,
886                           EmpathyChatWindow *window)
887 {
888         EmpathyChatWindowPriv *priv;
889
890         priv = GET_PRIV (window);
891
892         if (is_composing && !g_list_find (priv->chats_composing, chat)) {
893                 priv->chats_composing = g_list_prepend (priv->chats_composing, chat);
894         } else {
895                 priv->chats_composing = g_list_remove (priv->chats_composing, chat);
896         }
897
898         chat_window_update_chat_tab (chat);
899 }
900
901 static void
902 chat_window_set_urgency_hint (EmpathyChatWindow *window,
903                               gboolean          urgent)
904 {
905         EmpathyChatWindowPriv *priv;
906
907         priv = GET_PRIV (window);
908
909         DEBUG ("Turning %s urgency hint", urgent ? "on" : "off");
910         gtk_window_set_urgency_hint (GTK_WINDOW (priv->dialog), urgent);
911 }
912
913 typedef struct {
914         EmpathyChatWindow *window;
915         EmpathyChat *chat;
916 } NotificationData;
917
918 static void
919 chat_window_notification_closed_cb (NotifyNotification *notify,
920                                     NotificationData *cb_data)
921 {
922         EmpathyNotificationClosedReason reason = 0;
923         EmpathyChatWindowPriv *priv = GET_PRIV (cb_data->window);
924
925 #ifdef notify_notification_get_closed_reason
926         reason = notify_notification_get_closed_reason (notify);
927 #endif
928         if (reason == EMPATHY_NOTIFICATION_CLOSED_DISMISSED) {
929                 empathy_chat_window_present_chat (cb_data->chat);
930         }
931
932         g_object_unref (notify);
933         priv->notification = NULL;
934         g_object_unref (cb_data->chat);
935         g_slice_free (NotificationData, cb_data);
936 }
937
938 static void
939 chat_window_show_or_update_notification (EmpathyChatWindow *window,
940                                          EmpathyMessage *message,
941                                          EmpathyChat *chat)
942 {
943         EmpathyContact *sender;
944         const gchar *header;
945         char *escaped;
946         const char *body;
947         GdkPixbuf *pixbuf;
948         EmpathyChatWindowPriv *priv = GET_PRIV (window);
949         gboolean res;
950
951         if (!empathy_notification_is_enabled ()) {
952                 return;
953         } else {
954                 empathy_conf_get_bool (empathy_conf_get (),
955                                        EMPATHY_PREFS_NOTIFICATIONS_FOCUS, &res);
956                 if (!res) {
957                         return;
958                 }
959         }
960
961         sender = empathy_message_get_sender (message);
962         header = empathy_contact_get_name (sender);
963         body = empathy_message_get_body (message);
964         escaped = g_markup_escape_text (body, -1);
965
966         if (priv->notification != NULL) {
967                 notify_notification_update (priv->notification,
968                                             header, escaped, NULL);
969         } else {
970                 NotificationData *cb_data = cb_data = g_slice_new0 (NotificationData);
971
972                 cb_data->chat = g_object_ref (chat);
973                 cb_data->window = window;
974
975                 priv->notification = notify_notification_new (header, escaped, NULL, NULL);
976                 notify_notification_set_timeout (priv->notification, NOTIFY_EXPIRES_DEFAULT);
977
978                 g_signal_connect (priv->notification, "closed",
979                                   G_CALLBACK (chat_window_notification_closed_cb), cb_data);
980         }
981
982         pixbuf = empathy_misc_get_pixbuf_for_notification (sender, EMPATHY_IMAGE_NEW_MESSAGE);
983
984         if (pixbuf != NULL) {
985                 notify_notification_set_icon_from_pixbuf (priv->notification, pixbuf);
986                 g_object_unref (pixbuf);
987         }
988
989         notify_notification_show (priv->notification, NULL);
990
991         g_free (escaped);
992 }
993
994 static void
995 chat_window_set_highlight_room_tab_label (EmpathyChat *chat)
996 {
997         gchar *markup;
998         GtkWidget *widget;
999
1000         if (!empathy_chat_is_room (chat))
1001                 return;
1002
1003         markup = g_markup_printf_escaped (
1004                 "<span color=\"red\" weight=\"bold\">%s</span>",
1005                 empathy_chat_get_name (chat));
1006
1007         widget = g_object_get_data (G_OBJECT (chat), "chat-window-tab-label");
1008         gtk_label_set_markup (GTK_LABEL (widget), markup);
1009         g_free (markup);
1010 }
1011
1012 static void
1013 chat_window_new_message_cb (EmpathyChat       *chat,
1014                             EmpathyMessage    *message,
1015                             EmpathyChatWindow *window)
1016 {
1017         EmpathyChatWindowPriv *priv;
1018         gboolean              has_focus;
1019         gboolean              needs_urgency;
1020         EmpathyContact        *sender;
1021
1022         priv = GET_PRIV (window);
1023
1024         has_focus = empathy_chat_window_has_focus (window);
1025
1026         /* - if we're the sender, we play the sound if it's specified in the
1027          *   preferences and we're not away.
1028          * - if we receive a message, we play the sound if it's specified in the
1029          *   preferences and the window does not have focus on the chat receiving
1030          *   the message.
1031          */
1032
1033         sender = empathy_message_get_sender (message);
1034
1035         if (empathy_contact_is_user (sender)) {
1036                 empathy_sound_play (GTK_WIDGET (priv->dialog),
1037                                     EMPATHY_SOUND_MESSAGE_OUTGOING);
1038         }
1039
1040         if (has_focus && priv->current_chat == chat) {
1041                 return;
1042         }
1043
1044         if (!g_list_find (priv->chats_new_msg, chat)) {
1045                 priv->chats_new_msg = g_list_prepend (priv->chats_new_msg, chat);
1046                 chat_window_update_chat_tab (chat);
1047         }
1048
1049         /* If empathy_chat_is_room () returns TRUE, that means it's a named MUC.
1050          * If empathy_chat_get_remote_contact () returns NULL, that means it's
1051          * an unamed MUC (msn-like).
1052          * In case of a MUC, we set urgency only if the message contains our
1053          * alias. */
1054         if (empathy_chat_is_room (chat) ||
1055             empathy_chat_get_remote_contact (chat) == NULL) {
1056                 needs_urgency = empathy_message_should_highlight (message);
1057         } else {
1058                 needs_urgency = TRUE;
1059         }
1060
1061         if (needs_urgency) {
1062                 if (!has_focus) {
1063                         chat_window_set_urgency_hint (window, TRUE);
1064                         chat_window_set_highlight_room_tab_label (chat);
1065                 }
1066
1067                 empathy_sound_play (GTK_WIDGET (priv->dialog),
1068                     EMPATHY_SOUND_MESSAGE_INCOMING);
1069                 chat_window_show_or_update_notification (window, message, chat);
1070         }
1071 }
1072
1073 static GtkNotebook *
1074 chat_window_detach_hook (GtkNotebook *source,
1075                          GtkWidget   *page,
1076                          gint         x,
1077                          gint         y,
1078                          gpointer     user_data)
1079 {
1080         EmpathyChatWindowPriv *priv;
1081         EmpathyChatWindow     *window, *new_window;
1082         EmpathyChat           *chat;
1083
1084         chat = EMPATHY_CHAT (page);
1085         window = chat_window_find_chat (chat);
1086
1087         new_window = empathy_chat_window_new ();
1088         priv = GET_PRIV (new_window);
1089
1090         DEBUG ("Detach hook called");
1091
1092         empathy_chat_window_move_chat (window, new_window, chat);
1093
1094         gtk_window_move (GTK_WINDOW (priv->dialog), x, y);
1095         gtk_widget_show (priv->dialog);
1096
1097         return NULL;
1098 }
1099
1100 static void
1101 chat_window_page_switched_cb (GtkNotebook      *notebook,
1102                               GtkNotebookPage  *page,
1103                               gint              page_num,
1104                               EmpathyChatWindow *window)
1105 {
1106         EmpathyChatWindowPriv *priv;
1107         EmpathyChat           *chat;
1108         GtkWidget            *child;
1109
1110         DEBUG ("Page switched");
1111
1112         priv = GET_PRIV (window);
1113
1114         child = gtk_notebook_get_nth_page (notebook, page_num);
1115         chat = EMPATHY_CHAT (child);
1116
1117         if (priv->page_added) {
1118                 priv->page_added = FALSE;
1119                 empathy_chat_scroll_down (chat);
1120         }
1121         else if (priv->current_chat == chat) {
1122                 return;
1123         }
1124
1125         priv->current_chat = chat;
1126         priv->chats_new_msg = g_list_remove (priv->chats_new_msg, chat);
1127
1128         chat_window_update_chat_tab (chat);
1129 }
1130
1131 static void
1132 chat_window_page_added_cb (GtkNotebook      *notebook,
1133                            GtkWidget        *child,
1134                            guint             page_num,
1135                            EmpathyChatWindow *window)
1136 {
1137         EmpathyChatWindowPriv *priv;
1138         EmpathyChat           *chat;
1139
1140         priv = GET_PRIV (window);
1141
1142         /* If we just received DND to the same window, we don't want
1143          * to do anything here like removing the tab and then readding
1144          * it, so we return here and in "page-added".
1145          */
1146         if (priv->dnd_same_window) {
1147                 DEBUG ("Page added (back to the same window)");
1148                 priv->dnd_same_window = FALSE;
1149                 return;
1150         }
1151
1152         DEBUG ("Page added");
1153
1154         /* Get chat object */
1155         chat = EMPATHY_CHAT (child);
1156
1157         /* Connect chat signals for this window */
1158         g_signal_connect (chat, "composing",
1159                           G_CALLBACK (chat_window_composing_cb),
1160                           window);
1161         g_signal_connect (chat, "new-message",
1162                           G_CALLBACK (chat_window_new_message_cb),
1163                           window);
1164
1165         /* Set flag so we know to perform some special operations on
1166          * switch page due to the new page being added.
1167          */
1168         priv->page_added = TRUE;
1169
1170         /* Get list of chats up to date */
1171         priv->chats = g_list_append (priv->chats, chat);
1172
1173         chat_window_update_chat_tab (chat);
1174 }
1175
1176 static void
1177 chat_window_page_removed_cb (GtkNotebook      *notebook,
1178                              GtkWidget        *child,
1179                              guint             page_num,
1180                              EmpathyChatWindow *window)
1181 {
1182         EmpathyChatWindowPriv *priv;
1183         EmpathyChat           *chat;
1184
1185         priv = GET_PRIV (window);
1186
1187         /* If we just received DND to the same window, we don't want
1188          * to do anything here like removing the tab and then readding
1189          * it, so we return here and in "page-added".
1190          */
1191         if (priv->dnd_same_window) {
1192                 DEBUG ("Page removed (and will be readded to same window)");
1193                 return;
1194         }
1195
1196         DEBUG ("Page removed");
1197
1198         /* Get chat object */
1199         chat = EMPATHY_CHAT (child);
1200
1201         /* Disconnect all signal handlers for this chat and this window */
1202         g_signal_handlers_disconnect_by_func (chat,
1203                                               G_CALLBACK (chat_window_composing_cb),
1204                                               window);
1205         g_signal_handlers_disconnect_by_func (chat,
1206                                               G_CALLBACK (chat_window_new_message_cb),
1207                                               window);
1208
1209         /* Keep list of chats up to date */
1210         priv->chats = g_list_remove (priv->chats, chat);
1211         priv->chats_new_msg = g_list_remove (priv->chats_new_msg, chat);
1212         priv->chats_composing = g_list_remove (priv->chats_composing, chat);
1213
1214         if (priv->chats == NULL) {
1215                 g_object_unref (window);
1216         } else {
1217                 chat_window_update (window);
1218         }
1219 }
1220
1221 static gboolean
1222 chat_window_focus_in_event_cb (GtkWidget        *widget,
1223                                GdkEvent         *event,
1224                                EmpathyChatWindow *window)
1225 {
1226         EmpathyChatWindowPriv *priv;
1227
1228         DEBUG ("Focus in event, updating title");
1229
1230         priv = GET_PRIV (window);
1231
1232         priv->chats_new_msg = g_list_remove (priv->chats_new_msg, priv->current_chat);
1233
1234         chat_window_set_urgency_hint (window, FALSE);
1235
1236         /* Update the title, since we now mark all unread messages as read. */
1237         chat_window_update_chat_tab (priv->current_chat);
1238
1239         return FALSE;
1240 }
1241
1242 static void
1243 chat_window_drag_data_received (GtkWidget        *widget,
1244                                 GdkDragContext   *context,
1245                                 int               x,
1246                                 int               y,
1247                                 GtkSelectionData *selection,
1248                                 guint             info,
1249                                 guint             time,
1250                                 EmpathyChatWindow *window)
1251 {
1252         if (info == DND_DRAG_TYPE_CONTACT_ID) {
1253                 EmpathyChat           *chat;
1254                 EmpathyChatWindow     *old_window;
1255                 EmpathyAccount        *account;
1256                 EmpathyAccountManager *account_manager;
1257                 const gchar           *id;
1258                 gchar                **strv;
1259                 const gchar           *account_id;
1260                 const gchar           *contact_id;
1261
1262                 id = (const gchar*) gtk_selection_data_get_data (selection);
1263                 account_manager = empathy_account_manager_dup_singleton ();
1264
1265                 DEBUG ("DND contact from roster with id:'%s'", id);
1266
1267                 strv = g_strsplit (id, "/", 2);
1268                 account_id = strv[0];
1269                 contact_id = strv[1];
1270                 account = empathy_account_manager_get_account (account_manager, account_id);
1271                 chat = empathy_chat_window_find_chat (account, contact_id);
1272
1273                 if (!chat) {
1274                         TpConnection *connection;
1275
1276                         connection = empathy_account_get_connection (account);
1277
1278                         if (connection) {
1279                                 empathy_dispatcher_chat_with_contact_id (
1280                                         connection, contact_id, NULL, NULL);
1281                         }
1282
1283                         g_strfreev (strv);
1284                         return;
1285                 }
1286                 g_object_unref (account_manager);
1287                 g_strfreev (strv);
1288
1289                 old_window = chat_window_find_chat (chat);
1290                 if (old_window) {
1291                         if (old_window == window) {
1292                                 gtk_drag_finish (context, TRUE, FALSE, time);
1293                                 return;
1294                         }
1295
1296                         empathy_chat_window_move_chat (old_window, window, chat);
1297                 } else {
1298                         empathy_chat_window_add_chat (window, chat);
1299                 }
1300
1301                 /* Added to take care of any outstanding chat events */
1302                 empathy_chat_window_present_chat (chat);
1303
1304                 /* We should return TRUE to remove the data when doing
1305                  * GDK_ACTION_MOVE, but we don't here otherwise it has
1306                  * weird consequences, and we handle that internally
1307                  * anyway with add_chat () and remove_chat ().
1308                  */
1309                 gtk_drag_finish (context, TRUE, FALSE, time);
1310         }
1311         else if (info == DND_DRAG_TYPE_TAB) {
1312                 EmpathyChat        **chat;
1313                 EmpathyChatWindow   *old_window = NULL;
1314
1315                 DEBUG ("DND tab");
1316
1317                 chat = (void *) gtk_selection_data_get_data (selection);
1318                 old_window = chat_window_find_chat (*chat);
1319
1320                 if (old_window) {
1321                         EmpathyChatWindowPriv *priv;
1322
1323                         priv = GET_PRIV (window);
1324
1325                         if (old_window == window) {
1326                                 DEBUG ("DND tab (within same window)");
1327                                 priv->dnd_same_window = TRUE;
1328                                 gtk_drag_finish (context, TRUE, FALSE, time);
1329                                 return;
1330                         }
1331
1332                         priv->dnd_same_window = FALSE;
1333                 }
1334
1335                 /* We should return TRUE to remove the data when doing
1336                  * GDK_ACTION_MOVE, but we don't here otherwise it has
1337                  * weird consequences, and we handle that internally
1338                  * anyway with add_chat () and remove_chat ().
1339                  */
1340                 gtk_drag_finish (context, TRUE, FALSE, time);
1341         } else {
1342                 DEBUG ("DND from unknown source");
1343                 gtk_drag_finish (context, FALSE, FALSE, time);
1344         }
1345 }
1346
1347 static void
1348 chat_window_finalize (GObject *object)
1349 {
1350         EmpathyChatWindow     *window;
1351         EmpathyChatWindowPriv *priv;
1352
1353         window = EMPATHY_CHAT_WINDOW (object);
1354         priv = GET_PRIV (window);
1355
1356         DEBUG ("Finalized: %p", object);
1357
1358         g_object_unref (priv->ui_manager);
1359         g_object_unref (priv->chatroom_manager);
1360         if (priv->save_geometry_id != 0) {
1361                 g_source_remove (priv->save_geometry_id);
1362         }
1363
1364         if (priv->notification != NULL) {
1365                 notify_notification_close (priv->notification, NULL);
1366                 g_object_unref (priv->notification);
1367                 priv->notification = NULL;
1368         }
1369
1370         chat_windows = g_list_remove (chat_windows, window);
1371         gtk_widget_destroy (priv->dialog);
1372
1373         G_OBJECT_CLASS (empathy_chat_window_parent_class)->finalize (object);
1374 }
1375
1376 static void
1377 empathy_chat_window_class_init (EmpathyChatWindowClass *klass)
1378 {
1379         GObjectClass *object_class = G_OBJECT_CLASS (klass);
1380
1381         object_class->finalize = chat_window_finalize;
1382
1383         g_type_class_add_private (object_class, sizeof (EmpathyChatWindowPriv));
1384
1385         /* Set up a style for the close button with no focus padding. */
1386         gtk_rc_parse_string (
1387                 "style \"empathy-close-button-style\"\n"
1388                 "{\n"
1389                 "  GtkWidget::focus-padding = 0\n"
1390                 "  xthickness = 0\n"
1391                 "  ythickness = 0\n"
1392                 "}\n"
1393                 "widget \"*.empathy-close-button\" style \"empathy-close-button-style\"");
1394
1395         gtk_notebook_set_window_creation_hook (chat_window_detach_hook, NULL, NULL);
1396 }
1397
1398 static void
1399 empathy_chat_window_init (EmpathyChatWindow *window)
1400 {
1401         GtkBuilder            *gui;
1402         GtkAccelGroup         *accel_group;
1403         GClosure              *closure;
1404         GtkWidget             *menu;
1405         GtkWidget             *submenu;
1406         gint                   i;
1407         GtkWidget             *chat_vbox;
1408         gchar                 *filename;
1409         EmpathySmileyManager  *smiley_manager;
1410         EmpathyChatWindowPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (window,
1411                 EMPATHY_TYPE_CHAT_WINDOW, EmpathyChatWindowPriv);
1412
1413         window->priv = priv;
1414         filename = empathy_file_lookup ("empathy-chat-window.ui", "src");
1415         gui = empathy_builder_get_file (filename,
1416                                        "chat_window", &priv->dialog,
1417                                        "chat_vbox", &chat_vbox,
1418                                        "ui_manager", &priv->ui_manager,
1419                                        "menu_conv_insert_smiley", &priv->menu_conv_insert_smiley,
1420                                        "menu_conv_favorite", &priv->menu_conv_favorite,
1421                                        "menu_conv_toggle_contacts", &priv->menu_conv_toggle_contacts,
1422                                        "menu_edit_cut", &priv->menu_edit_cut,
1423                                        "menu_edit_copy", &priv->menu_edit_copy,
1424                                        "menu_edit_paste", &priv->menu_edit_paste,
1425                                        "menu_tabs_next", &priv->menu_tabs_next,
1426                                        "menu_tabs_prev", &priv->menu_tabs_prev,
1427                                        "menu_tabs_left", &priv->menu_tabs_left,
1428                                        "menu_tabs_right", &priv->menu_tabs_right,
1429                                        "menu_tabs_detach", &priv->menu_tabs_detach,
1430                                        NULL);
1431         g_free (filename);
1432
1433         empathy_builder_connect (gui, window,
1434                               "chat_window", "configure-event", chat_window_configure_event_cb,
1435                               "menu_conv", "activate", chat_window_conv_activate_cb,
1436                               "menu_conv_clear", "activate", chat_window_clear_activate_cb,
1437                               "menu_conv_favorite", "toggled", chat_window_favorite_toggled_cb,
1438                               "menu_conv_toggle_contacts", "toggled", chat_window_contacts_toggled_cb,
1439                               "menu_conv_close", "activate", chat_window_close_activate_cb,
1440                               "menu_edit", "activate", chat_window_edit_activate_cb,
1441                               "menu_edit_cut", "activate", chat_window_cut_activate_cb,
1442                               "menu_edit_copy", "activate", chat_window_copy_activate_cb,
1443                               "menu_edit_paste", "activate", chat_window_paste_activate_cb,
1444                               "menu_tabs_left", "activate", chat_window_tabs_left_activate_cb,
1445                               "menu_tabs_right", "activate", chat_window_tabs_right_activate_cb,
1446                               "menu_tabs_detach", "activate", chat_window_detach_activate_cb,
1447                               "menu_help_contents", "activate", chat_window_help_contents_activate_cb,
1448                               "menu_help_about", "activate", chat_window_help_about_activate_cb,
1449                               NULL);
1450
1451         g_object_ref (priv->ui_manager);
1452         g_object_unref (gui);
1453
1454         priv->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
1455
1456         priv->notebook = gtk_notebook_new ();
1457         gtk_notebook_set_group (GTK_NOTEBOOK (priv->notebook), "EmpathyChatWindow");
1458         gtk_notebook_set_scrollable (GTK_NOTEBOOK (priv->notebook), TRUE);
1459         gtk_notebook_popup_enable (GTK_NOTEBOOK (priv->notebook));
1460         gtk_box_pack_start (GTK_BOX (chat_vbox), priv->notebook, TRUE, TRUE, 0);
1461         gtk_widget_show (priv->notebook);
1462
1463         /* Set up accels */
1464         accel_group = gtk_accel_group_new ();
1465         gtk_window_add_accel_group (GTK_WINDOW (priv->dialog), accel_group);
1466
1467         for (i = 0; i < G_N_ELEMENTS (tab_accel_keys); i++) {
1468                 closure =  g_cclosure_new (G_CALLBACK (chat_window_accel_cb),
1469                                            window,
1470                                            NULL);
1471                 gtk_accel_group_connect (accel_group,
1472                                          tab_accel_keys[i],
1473                                          GDK_MOD1_MASK,
1474                                          0,
1475                                          closure);
1476         }
1477
1478         g_object_unref (accel_group);
1479
1480         /* Set up smiley menu */
1481         smiley_manager = empathy_smiley_manager_dup_singleton ();
1482         submenu = empathy_smiley_menu_new (smiley_manager,
1483                                            chat_window_insert_smiley_activate_cb,
1484                                            window);
1485         menu = gtk_ui_manager_get_widget (priv->ui_manager,
1486                 "/chats_menubar/menu_conv/menu_conv_insert_smiley");
1487         gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu), submenu);
1488         g_object_unref (smiley_manager);
1489
1490         /* Set up signals we can't do with ui file since we may need to
1491          * block/unblock them at some later stage.
1492          */
1493
1494         g_signal_connect (priv->dialog,
1495                           "delete_event",
1496                           G_CALLBACK (chat_window_delete_event_cb),
1497                           window);
1498
1499         g_signal_connect_swapped (priv->menu_tabs_prev,
1500                                   "activate",
1501                                   G_CALLBACK (gtk_notebook_prev_page),
1502                                   priv->notebook);
1503         g_signal_connect_swapped (priv->menu_tabs_next,
1504                                   "activate",
1505                                   G_CALLBACK (gtk_notebook_next_page),
1506                                   priv->notebook);
1507
1508         g_signal_connect (priv->dialog,
1509                           "focus_in_event",
1510                           G_CALLBACK (chat_window_focus_in_event_cb),
1511                           window);
1512         g_signal_connect_after (priv->notebook,
1513                                 "switch_page",
1514                                 G_CALLBACK (chat_window_page_switched_cb),
1515                                 window);
1516         g_signal_connect (priv->notebook,
1517                           "page_added",
1518                           G_CALLBACK (chat_window_page_added_cb),
1519                           window);
1520         g_signal_connect (priv->notebook,
1521                           "page_removed",
1522                           G_CALLBACK (chat_window_page_removed_cb),
1523                           window);
1524
1525         /* Set up drag and drop */
1526         gtk_drag_dest_set (GTK_WIDGET (priv->notebook),
1527                            GTK_DEST_DEFAULT_ALL,
1528                            drag_types_dest,
1529                            G_N_ELEMENTS (drag_types_dest),
1530                            GDK_ACTION_MOVE);
1531
1532         g_signal_connect (priv->notebook,
1533                           "drag-data-received",
1534                           G_CALLBACK (chat_window_drag_data_received),
1535                           window);
1536
1537         chat_windows = g_list_prepend (chat_windows, window);
1538
1539         /* Set up private details */
1540         priv->chats = NULL;
1541         priv->chats_new_msg = NULL;
1542         priv->chats_composing = NULL;
1543         priv->current_chat = NULL;
1544 }
1545
1546 EmpathyChatWindow *
1547 empathy_chat_window_new (void)
1548 {
1549         return EMPATHY_CHAT_WINDOW (g_object_new (EMPATHY_TYPE_CHAT_WINDOW, NULL));
1550 }
1551
1552 /* Returns the window to open a new tab in if there is only one window
1553  * visble, otherwise, returns NULL indicating that a new window should
1554  * be added.
1555  */
1556 EmpathyChatWindow *
1557 empathy_chat_window_get_default (void)
1558 {
1559         GList    *l;
1560         gboolean  separate_windows = TRUE;
1561
1562         empathy_conf_get_bool (empathy_conf_get (),
1563                               EMPATHY_PREFS_UI_SEPARATE_CHAT_WINDOWS,
1564                               &separate_windows);
1565
1566         if (separate_windows) {
1567                 /* Always create a new window */
1568                 return NULL;
1569         }
1570
1571         for (l = chat_windows; l; l = l->next) {
1572                 EmpathyChatWindow *chat_window;
1573                 GtkWidget         *dialog;
1574
1575                 chat_window = l->data;
1576
1577                 dialog = empathy_chat_window_get_dialog (chat_window);
1578                 if (empathy_window_get_is_visible (GTK_WINDOW (dialog))) {
1579                         /* Found a visible window on this desktop */
1580                         return chat_window;
1581                 }
1582         }
1583
1584         return NULL;
1585 }
1586
1587 GtkWidget *
1588 empathy_chat_window_get_dialog (EmpathyChatWindow *window)
1589 {
1590         EmpathyChatWindowPriv *priv;
1591
1592         g_return_val_if_fail (window != NULL, NULL);
1593
1594         priv = GET_PRIV (window);
1595
1596         return priv->dialog;
1597 }
1598
1599 void
1600 empathy_chat_window_add_chat (EmpathyChatWindow *window,
1601                               EmpathyChat       *chat)
1602 {
1603         EmpathyChatWindowPriv *priv;
1604         GtkWidget             *label;
1605         GtkWidget             *popup_label;
1606         GtkWidget             *child;
1607         gint                   x, y, w, h;
1608
1609         g_return_if_fail (window != NULL);
1610         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1611
1612         priv = GET_PRIV (window);
1613
1614         /* Reference the chat object */
1615         g_object_ref (chat);
1616
1617         /* If this window has just been created, position it */
1618         if (priv->chats == NULL) {
1619                 empathy_geometry_load (chat_get_window_id_for_geometry (chat), &x, &y, &w, &h);
1620
1621                 if (x >= 0 && y >= 0) {
1622                         /* Let the window manager position it if we don't have
1623                          * good x, y coordinates.
1624                          */
1625                         gtk_window_move (GTK_WINDOW (priv->dialog), x, y);
1626                 }
1627
1628                 if (w > 0 && h > 0) {
1629                         /* Use the defaults from the ui file if we don't have
1630                          * good w, h geometry.
1631                          */
1632                         gtk_window_resize (GTK_WINDOW (priv->dialog), w, h);
1633                 }
1634         }
1635
1636         child = GTK_WIDGET (chat);
1637         label = chat_window_create_label (window, chat, TRUE);
1638         popup_label = chat_window_create_label (window, chat, FALSE);
1639         gtk_widget_show (child);
1640
1641         g_signal_connect (chat, "notify::name",
1642                           G_CALLBACK (chat_window_chat_notify_cb),
1643                           NULL);
1644         g_signal_connect (chat, "notify::subject",
1645                           G_CALLBACK (chat_window_chat_notify_cb),
1646                           NULL);
1647         g_signal_connect (chat, "notify::remote-contact",
1648                           G_CALLBACK (chat_window_chat_notify_cb),
1649                           NULL);
1650         chat_window_chat_notify_cb (chat);
1651
1652         gtk_notebook_append_page_menu (GTK_NOTEBOOK (priv->notebook), child, label, popup_label);
1653         gtk_notebook_set_tab_reorderable (GTK_NOTEBOOK (priv->notebook), child, TRUE);
1654         gtk_notebook_set_tab_detachable (GTK_NOTEBOOK (priv->notebook), child, TRUE);
1655         gtk_notebook_set_tab_label_packing (GTK_NOTEBOOK (priv->notebook), child,
1656                                             TRUE, TRUE, GTK_PACK_START);
1657
1658         DEBUG ("Chat added (%d references)", G_OBJECT (chat)->ref_count);
1659 }
1660
1661 void
1662 empathy_chat_window_remove_chat (EmpathyChatWindow *window,
1663                                  EmpathyChat       *chat)
1664 {
1665         EmpathyChatWindowPriv *priv;
1666         gint                   position;
1667         EmpathyContact        *remote_contact;
1668
1669         g_return_if_fail (window != NULL);
1670         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1671
1672         priv = GET_PRIV (window);
1673
1674         g_signal_handlers_disconnect_by_func (chat,
1675                                               chat_window_chat_notify_cb,
1676                                               NULL);
1677         remote_contact = g_object_get_data (G_OBJECT (chat),
1678                                             "chat-window-remote-contact");
1679         if (remote_contact) {
1680                 g_signal_handlers_disconnect_by_func (remote_contact,
1681                                                       chat_window_update_chat_tab,
1682                                                       chat);
1683         }
1684
1685         position = gtk_notebook_page_num (GTK_NOTEBOOK (priv->notebook),
1686                                           GTK_WIDGET (chat));
1687         gtk_notebook_remove_page (GTK_NOTEBOOK (priv->notebook), position);
1688
1689         DEBUG ("Chat removed (%d references)", G_OBJECT (chat)->ref_count - 1);
1690
1691         g_object_unref (chat);
1692 }
1693
1694 void
1695 empathy_chat_window_move_chat (EmpathyChatWindow *old_window,
1696                                EmpathyChatWindow *new_window,
1697                                EmpathyChat       *chat)
1698 {
1699         GtkWidget *widget;
1700
1701         g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (old_window));
1702         g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (new_window));
1703         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1704
1705         widget = GTK_WIDGET (chat);
1706
1707         DEBUG ("Chat moving with widget:%p (%d references)", widget,
1708                 G_OBJECT (widget)->ref_count);
1709
1710         /* We reference here to make sure we don't loose the widget
1711          * and the EmpathyChat object during the move.
1712          */
1713         g_object_ref (chat);
1714         g_object_ref (widget);
1715
1716         empathy_chat_window_remove_chat (old_window, chat);
1717         empathy_chat_window_add_chat (new_window, chat);
1718
1719         g_object_unref (widget);
1720         g_object_unref (chat);
1721 }
1722
1723 void
1724 empathy_chat_window_switch_to_chat (EmpathyChatWindow *window,
1725                                     EmpathyChat       *chat)
1726 {
1727         EmpathyChatWindowPriv *priv;
1728         gint                  page_num;
1729
1730         g_return_if_fail (window != NULL);
1731         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1732
1733         priv = GET_PRIV (window);
1734
1735         page_num = gtk_notebook_page_num (GTK_NOTEBOOK (priv->notebook),
1736                                           GTK_WIDGET (chat));
1737         gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->notebook),
1738                                        page_num);
1739 }
1740
1741 gboolean
1742 empathy_chat_window_has_focus (EmpathyChatWindow *window)
1743 {
1744         EmpathyChatWindowPriv *priv;
1745         gboolean              has_focus;
1746
1747         g_return_val_if_fail (EMPATHY_IS_CHAT_WINDOW (window), FALSE);
1748
1749         priv = GET_PRIV (window);
1750
1751         g_object_get (priv->dialog, "has-toplevel-focus", &has_focus, NULL);
1752
1753         return has_focus;
1754 }
1755
1756 EmpathyChat *
1757 empathy_chat_window_find_chat (EmpathyAccount   *account,
1758                                const gchar *id)
1759 {
1760         GList *l;
1761
1762         g_return_val_if_fail (!EMP_STR_EMPTY (id), NULL);
1763
1764         for (l = chat_windows; l; l = l->next) {
1765                 EmpathyChatWindowPriv *priv;
1766                 EmpathyChatWindow     *window;
1767                 GList                *ll;
1768
1769                 window = l->data;
1770                 priv = GET_PRIV (window);
1771
1772                 for (ll = priv->chats; ll; ll = ll->next) {
1773                         EmpathyChat *chat;
1774
1775                         chat = ll->data;
1776
1777                         if (account == empathy_chat_get_account (chat) &&
1778                             !tp_strdiff (id, empathy_chat_get_id (chat))) {
1779                                 return chat;
1780                         }
1781                 }
1782         }
1783
1784         return NULL;
1785 }
1786
1787 void
1788 empathy_chat_window_present_chat (EmpathyChat *chat)
1789 {
1790         EmpathyChatWindow     *window;
1791         EmpathyChatWindowPriv *priv;
1792
1793         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1794
1795         window = chat_window_find_chat (chat);
1796
1797         /* If the chat has no window, create one */
1798         if (window == NULL) {
1799                 window = empathy_chat_window_get_default ();
1800                 if (!window) {
1801                         window = empathy_chat_window_new ();
1802                 }
1803
1804                 empathy_chat_window_add_chat (window, chat);
1805         }
1806
1807         priv = GET_PRIV (window);
1808         empathy_chat_window_switch_to_chat (window, chat);
1809         empathy_window_present (GTK_WINDOW (priv->dialog), TRUE);
1810
1811         gtk_widget_grab_focus (chat->input_text_view);
1812 }
1813