]> git.0d.be Git - empathy.git/blob - src/empathy-chat-window.c
Merge branch 'master' into mc5
[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?chat");
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         NotificationData *cb_data;
949         EmpathyChatWindowPriv *priv = GET_PRIV (window);
950         gboolean res;
951
952         if (!empathy_notification_is_enabled ()) {
953                 return;
954         } else {
955                 empathy_conf_get_bool (empathy_conf_get (),
956                                        EMPATHY_PREFS_NOTIFICATIONS_FOCUS, &res);
957                 if (!res) {
958                         return;
959                 }
960         }
961
962         cb_data = g_slice_new0 (NotificationData);
963         cb_data->chat = g_object_ref (chat);
964         cb_data->window = window;
965
966         sender = empathy_message_get_sender (message);
967         header = empathy_contact_get_name (sender);
968         body = empathy_message_get_body (message);
969         escaped = g_markup_escape_text (body, -1);
970
971         pixbuf = empathy_misc_get_pixbuf_for_notification (sender, EMPATHY_IMAGE_NEW_MESSAGE);
972
973         if (priv->notification != NULL) {
974                 notify_notification_update (priv->notification,
975                                             header, escaped, NULL);
976                 /* if icon doesn't exist libnotify will crash */
977                 if (pixbuf != NULL)
978                         notify_notification_set_icon_from_pixbuf (priv->notification, pixbuf);
979         } else {
980                 priv->notification = notify_notification_new (header, escaped, NULL, NULL);
981                 notify_notification_set_timeout (priv->notification, NOTIFY_EXPIRES_DEFAULT);
982                 /* if icon doesn't exist libnotify will crash */
983                 if (pixbuf != NULL)
984                         notify_notification_set_icon_from_pixbuf (priv->notification, pixbuf);
985
986                 g_signal_connect (priv->notification, "closed",
987                                   G_CALLBACK (chat_window_notification_closed_cb), cb_data);
988         }
989
990         notify_notification_show (priv->notification, NULL);
991
992         g_object_unref (pixbuf);
993         g_free (escaped);
994 }
995
996 static void
997 chat_window_set_highlight_room_tab_label (EmpathyChat *chat)
998 {
999         gchar *markup;
1000         GtkWidget *widget;
1001
1002         if (!empathy_chat_is_room (chat))
1003                 return;
1004
1005         markup = g_markup_printf_escaped ("<span color=\"red\">%s</span>",
1006                 empathy_chat_get_name (chat));
1007
1008         widget = g_object_get_data (G_OBJECT (chat), "chat-window-tab-label");
1009         gtk_label_set_markup (GTK_LABEL (widget), markup);
1010         g_free (markup);
1011 }
1012
1013 static void
1014 chat_window_new_message_cb (EmpathyChat       *chat,
1015                             EmpathyMessage    *message,
1016                             EmpathyChatWindow *window)
1017 {
1018         EmpathyChatWindowPriv *priv;
1019         gboolean              has_focus;
1020         gboolean              needs_urgency;
1021         EmpathyContact        *sender;
1022
1023         priv = GET_PRIV (window);
1024
1025         has_focus = empathy_chat_window_has_focus (window);
1026
1027         /* - if we're the sender, we play the sound if it's specified in the
1028          *   preferences and we're not away.
1029          * - if we receive a message, we play the sound if it's specified in the
1030          *   preferences and the window does not have focus on the chat receiving
1031          *   the message.
1032          */
1033
1034         sender = empathy_message_get_sender (message);
1035
1036         if (empathy_contact_is_user (sender)) {
1037                 empathy_sound_play (GTK_WIDGET (priv->dialog),
1038                                     EMPATHY_SOUND_MESSAGE_OUTGOING);
1039         }
1040
1041         if (has_focus && priv->current_chat == chat) {
1042                 return;
1043         }
1044
1045         if (!g_list_find (priv->chats_new_msg, chat)) {
1046                 priv->chats_new_msg = g_list_prepend (priv->chats_new_msg, chat);
1047                 chat_window_update_chat_tab (chat);
1048         }
1049
1050         /* If empathy_chat_is_room () returns TRUE, that means it's a named MUC.
1051          * If empathy_chat_get_remote_contact () returns NULL, that means it's
1052          * an unamed MUC (msn-like).
1053          * In case of a MUC, we set urgency only if the message contains our
1054          * alias. */
1055         if (empathy_chat_is_room (chat) ||
1056             empathy_chat_get_remote_contact (chat) == NULL) {
1057                 needs_urgency = empathy_message_should_highlight (message);
1058         } else {
1059                 needs_urgency = TRUE;
1060         }
1061
1062         if (needs_urgency) {
1063                 if (!has_focus) {
1064                         chat_window_set_urgency_hint (window, TRUE);
1065                         chat_window_set_highlight_room_tab_label (chat);
1066                 }
1067
1068                 empathy_sound_play (GTK_WIDGET (priv->dialog),
1069                     EMPATHY_SOUND_MESSAGE_INCOMING);
1070                 chat_window_show_or_update_notification (window, message, chat);
1071         }
1072 }
1073
1074 static GtkNotebook *
1075 chat_window_detach_hook (GtkNotebook *source,
1076                          GtkWidget   *page,
1077                          gint         x,
1078                          gint         y,
1079                          gpointer     user_data)
1080 {
1081         EmpathyChatWindowPriv *priv;
1082         EmpathyChatWindow     *window, *new_window;
1083         EmpathyChat           *chat;
1084
1085         chat = EMPATHY_CHAT (page);
1086         window = chat_window_find_chat (chat);
1087
1088         new_window = empathy_chat_window_new ();
1089         priv = GET_PRIV (new_window);
1090
1091         DEBUG ("Detach hook called");
1092
1093         empathy_chat_window_move_chat (window, new_window, chat);
1094
1095         gtk_window_move (GTK_WINDOW (priv->dialog), x, y);
1096         gtk_widget_show (priv->dialog);
1097
1098         return NULL;
1099 }
1100
1101 static void
1102 chat_window_page_switched_cb (GtkNotebook      *notebook,
1103                               GtkNotebookPage  *page,
1104                               gint              page_num,
1105                               EmpathyChatWindow *window)
1106 {
1107         EmpathyChatWindowPriv *priv;
1108         EmpathyChat           *chat;
1109         GtkWidget            *child;
1110
1111         DEBUG ("Page switched");
1112
1113         priv = GET_PRIV (window);
1114
1115         child = gtk_notebook_get_nth_page (notebook, page_num);
1116         chat = EMPATHY_CHAT (child);
1117
1118         if (priv->page_added) {
1119                 priv->page_added = FALSE;
1120                 empathy_chat_scroll_down (chat);
1121         }
1122         else if (priv->current_chat == chat) {
1123                 return;
1124         }
1125
1126         priv->current_chat = chat;
1127         priv->chats_new_msg = g_list_remove (priv->chats_new_msg, chat);
1128
1129         chat_window_update_chat_tab (chat);
1130 }
1131
1132 static void
1133 chat_window_page_added_cb (GtkNotebook      *notebook,
1134                            GtkWidget        *child,
1135                            guint             page_num,
1136                            EmpathyChatWindow *window)
1137 {
1138         EmpathyChatWindowPriv *priv;
1139         EmpathyChat           *chat;
1140
1141         priv = GET_PRIV (window);
1142
1143         /* If we just received DND to the same window, we don't want
1144          * to do anything here like removing the tab and then readding
1145          * it, so we return here and in "page-added".
1146          */
1147         if (priv->dnd_same_window) {
1148                 DEBUG ("Page added (back to the same window)");
1149                 priv->dnd_same_window = FALSE;
1150                 return;
1151         }
1152
1153         DEBUG ("Page added");
1154
1155         /* Get chat object */
1156         chat = EMPATHY_CHAT (child);
1157
1158         /* Connect chat signals for this window */
1159         g_signal_connect (chat, "composing",
1160                           G_CALLBACK (chat_window_composing_cb),
1161                           window);
1162         g_signal_connect (chat, "new-message",
1163                           G_CALLBACK (chat_window_new_message_cb),
1164                           window);
1165
1166         /* Set flag so we know to perform some special operations on
1167          * switch page due to the new page being added.
1168          */
1169         priv->page_added = TRUE;
1170
1171         /* Get list of chats up to date */
1172         priv->chats = g_list_append (priv->chats, chat);
1173
1174         chat_window_update_chat_tab (chat);
1175 }
1176
1177 static void
1178 chat_window_page_removed_cb (GtkNotebook      *notebook,
1179                              GtkWidget        *child,
1180                              guint             page_num,
1181                              EmpathyChatWindow *window)
1182 {
1183         EmpathyChatWindowPriv *priv;
1184         EmpathyChat           *chat;
1185
1186         priv = GET_PRIV (window);
1187
1188         /* If we just received DND to the same window, we don't want
1189          * to do anything here like removing the tab and then readding
1190          * it, so we return here and in "page-added".
1191          */
1192         if (priv->dnd_same_window) {
1193                 DEBUG ("Page removed (and will be readded to same window)");
1194                 return;
1195         }
1196
1197         DEBUG ("Page removed");
1198
1199         /* Get chat object */
1200         chat = EMPATHY_CHAT (child);
1201
1202         /* Disconnect all signal handlers for this chat and this window */
1203         g_signal_handlers_disconnect_by_func (chat,
1204                                               G_CALLBACK (chat_window_composing_cb),
1205                                               window);
1206         g_signal_handlers_disconnect_by_func (chat,
1207                                               G_CALLBACK (chat_window_new_message_cb),
1208                                               window);
1209
1210         /* Keep list of chats up to date */
1211         priv->chats = g_list_remove (priv->chats, chat);
1212         priv->chats_new_msg = g_list_remove (priv->chats_new_msg, chat);
1213         priv->chats_composing = g_list_remove (priv->chats_composing, chat);
1214
1215         if (priv->chats == NULL) {
1216                 g_object_unref (window);
1217         } else {
1218                 chat_window_update (window);
1219         }
1220 }
1221
1222 static gboolean
1223 chat_window_focus_in_event_cb (GtkWidget        *widget,
1224                                GdkEvent         *event,
1225                                EmpathyChatWindow *window)
1226 {
1227         EmpathyChatWindowPriv *priv;
1228
1229         DEBUG ("Focus in event, updating title");
1230
1231         priv = GET_PRIV (window);
1232
1233         priv->chats_new_msg = g_list_remove (priv->chats_new_msg, priv->current_chat);
1234
1235         chat_window_set_urgency_hint (window, FALSE);
1236
1237         /* Update the title, since we now mark all unread messages as read. */
1238         chat_window_update_chat_tab (priv->current_chat);
1239
1240         return FALSE;
1241 }
1242
1243 static void
1244 chat_window_drag_data_received (GtkWidget        *widget,
1245                                 GdkDragContext   *context,
1246                                 int               x,
1247                                 int               y,
1248                                 GtkSelectionData *selection,
1249                                 guint             info,
1250                                 guint             time,
1251                                 EmpathyChatWindow *window)
1252 {
1253         if (info == DND_DRAG_TYPE_CONTACT_ID) {
1254                 EmpathyChat           *chat;
1255                 EmpathyChatWindow     *old_window;
1256                 EmpathyAccount        *account;
1257                 EmpathyAccountManager *account_manager;
1258                 const gchar           *id;
1259                 gchar                **strv;
1260                 const gchar           *account_id;
1261                 const gchar           *contact_id;
1262
1263                 id = (const gchar*) gtk_selection_data_get_data (selection);
1264                 account_manager = empathy_account_manager_dup_singleton ();
1265
1266                 DEBUG ("DND contact from roster with id:'%s'", id);
1267
1268                 strv = g_strsplit (id, "/", 2);
1269                 account_id = strv[0];
1270                 contact_id = strv[1];
1271                 account = empathy_account_manager_get_account (account_manager, account_id);
1272                 chat = empathy_chat_window_find_chat (account, contact_id);
1273
1274                 if (!chat) {
1275                         TpConnection *connection;
1276
1277                         connection = empathy_account_get_connection (account);
1278
1279                         if (connection) {
1280                                 empathy_dispatcher_chat_with_contact_id (
1281                                         connection, contact_id, NULL, NULL);
1282                         }
1283
1284                         g_strfreev (strv);
1285                         return;
1286                 }
1287                 g_object_unref (account_manager);
1288                 g_strfreev (strv);
1289
1290                 old_window = chat_window_find_chat (chat);
1291                 if (old_window) {
1292                         if (old_window == window) {
1293                                 gtk_drag_finish (context, TRUE, FALSE, time);
1294                                 return;
1295                         }
1296
1297                         empathy_chat_window_move_chat (old_window, window, chat);
1298                 } else {
1299                         empathy_chat_window_add_chat (window, chat);
1300                 }
1301
1302                 /* Added to take care of any outstanding chat events */
1303                 empathy_chat_window_present_chat (chat);
1304
1305                 /* We should return TRUE to remove the data when doing
1306                  * GDK_ACTION_MOVE, but we don't here otherwise it has
1307                  * weird consequences, and we handle that internally
1308                  * anyway with add_chat () and remove_chat ().
1309                  */
1310                 gtk_drag_finish (context, TRUE, FALSE, time);
1311         }
1312         else if (info == DND_DRAG_TYPE_TAB) {
1313                 EmpathyChat        **chat;
1314                 EmpathyChatWindow   *old_window = NULL;
1315
1316                 DEBUG ("DND tab");
1317
1318                 chat = (void *) gtk_selection_data_get_data (selection);
1319                 old_window = chat_window_find_chat (*chat);
1320
1321                 if (old_window) {
1322                         EmpathyChatWindowPriv *priv;
1323
1324                         priv = GET_PRIV (window);
1325
1326                         if (old_window == window) {
1327                                 DEBUG ("DND tab (within same window)");
1328                                 priv->dnd_same_window = TRUE;
1329                                 gtk_drag_finish (context, TRUE, FALSE, time);
1330                                 return;
1331                         }
1332
1333                         priv->dnd_same_window = FALSE;
1334                 }
1335
1336                 /* We should return TRUE to remove the data when doing
1337                  * GDK_ACTION_MOVE, but we don't here otherwise it has
1338                  * weird consequences, and we handle that internally
1339                  * anyway with add_chat () and remove_chat ().
1340                  */
1341                 gtk_drag_finish (context, TRUE, FALSE, time);
1342         } else {
1343                 DEBUG ("DND from unknown source");
1344                 gtk_drag_finish (context, FALSE, FALSE, time);
1345         }
1346 }
1347
1348 static void
1349 chat_window_finalize (GObject *object)
1350 {
1351         EmpathyChatWindow     *window;
1352         EmpathyChatWindowPriv *priv;
1353
1354         window = EMPATHY_CHAT_WINDOW (object);
1355         priv = GET_PRIV (window);
1356
1357         DEBUG ("Finalized: %p", object);
1358
1359         g_object_unref (priv->ui_manager);
1360         g_object_unref (priv->chatroom_manager);
1361         if (priv->save_geometry_id != 0) {
1362                 g_source_remove (priv->save_geometry_id);
1363         }
1364
1365         if (priv->notification != NULL) {
1366                 notify_notification_close (priv->notification, NULL);
1367                 g_object_unref (priv->notification);
1368                 priv->notification = NULL;
1369         }
1370
1371         chat_windows = g_list_remove (chat_windows, window);
1372         gtk_widget_destroy (priv->dialog);
1373
1374         G_OBJECT_CLASS (empathy_chat_window_parent_class)->finalize (object);
1375 }
1376
1377 static void
1378 empathy_chat_window_class_init (EmpathyChatWindowClass *klass)
1379 {
1380         GObjectClass *object_class = G_OBJECT_CLASS (klass);
1381
1382         object_class->finalize = chat_window_finalize;
1383
1384         g_type_class_add_private (object_class, sizeof (EmpathyChatWindowPriv));
1385
1386         /* Set up a style for the close button with no focus padding. */
1387         gtk_rc_parse_string (
1388                 "style \"empathy-close-button-style\"\n"
1389                 "{\n"
1390                 "  GtkWidget::focus-padding = 0\n"
1391                 "  xthickness = 0\n"
1392                 "  ythickness = 0\n"
1393                 "}\n"
1394                 "widget \"*.empathy-close-button\" style \"empathy-close-button-style\"");
1395
1396         gtk_notebook_set_window_creation_hook (chat_window_detach_hook, NULL, NULL);
1397 }
1398
1399 static void
1400 empathy_chat_window_init (EmpathyChatWindow *window)
1401 {
1402         GtkBuilder            *gui;
1403         GtkAccelGroup         *accel_group;
1404         GClosure              *closure;
1405         GtkWidget             *menu;
1406         GtkWidget             *submenu;
1407         gint                   i;
1408         GtkWidget             *chat_vbox;
1409         gchar                 *filename;
1410         EmpathySmileyManager  *smiley_manager;
1411         EmpathyChatWindowPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (window,
1412                 EMPATHY_TYPE_CHAT_WINDOW, EmpathyChatWindowPriv);
1413
1414         window->priv = priv;
1415         filename = empathy_file_lookup ("empathy-chat-window.ui", "src");
1416         gui = empathy_builder_get_file (filename,
1417                                        "chat_window", &priv->dialog,
1418                                        "chat_vbox", &chat_vbox,
1419                                        "ui_manager", &priv->ui_manager,
1420                                        "menu_conv_insert_smiley", &priv->menu_conv_insert_smiley,
1421                                        "menu_conv_favorite", &priv->menu_conv_favorite,
1422                                        "menu_conv_toggle_contacts", &priv->menu_conv_toggle_contacts,
1423                                        "menu_edit_cut", &priv->menu_edit_cut,
1424                                        "menu_edit_copy", &priv->menu_edit_copy,
1425                                        "menu_edit_paste", &priv->menu_edit_paste,
1426                                        "menu_tabs_next", &priv->menu_tabs_next,
1427                                        "menu_tabs_prev", &priv->menu_tabs_prev,
1428                                        "menu_tabs_left", &priv->menu_tabs_left,
1429                                        "menu_tabs_right", &priv->menu_tabs_right,
1430                                        "menu_tabs_detach", &priv->menu_tabs_detach,
1431                                        NULL);
1432         g_free (filename);
1433
1434         empathy_builder_connect (gui, window,
1435                               "chat_window", "configure-event", chat_window_configure_event_cb,
1436                               "menu_conv", "activate", chat_window_conv_activate_cb,
1437                               "menu_conv_clear", "activate", chat_window_clear_activate_cb,
1438                               "menu_conv_favorite", "toggled", chat_window_favorite_toggled_cb,
1439                               "menu_conv_toggle_contacts", "toggled", chat_window_contacts_toggled_cb,
1440                               "menu_conv_close", "activate", chat_window_close_activate_cb,
1441                               "menu_edit", "activate", chat_window_edit_activate_cb,
1442                               "menu_edit_cut", "activate", chat_window_cut_activate_cb,
1443                               "menu_edit_copy", "activate", chat_window_copy_activate_cb,
1444                               "menu_edit_paste", "activate", chat_window_paste_activate_cb,
1445                               "menu_tabs_left", "activate", chat_window_tabs_left_activate_cb,
1446                               "menu_tabs_right", "activate", chat_window_tabs_right_activate_cb,
1447                               "menu_tabs_detach", "activate", chat_window_detach_activate_cb,
1448                               "menu_help_contents", "activate", chat_window_help_contents_activate_cb,
1449                               "menu_help_about", "activate", chat_window_help_about_activate_cb,
1450                               NULL);
1451
1452         g_object_ref (priv->ui_manager);
1453         g_object_unref (gui);
1454
1455         priv->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL);
1456
1457         priv->notebook = gtk_notebook_new ();
1458         gtk_notebook_set_group (GTK_NOTEBOOK (priv->notebook), "EmpathyChatWindow");
1459         gtk_notebook_set_scrollable (GTK_NOTEBOOK (priv->notebook), TRUE);
1460         gtk_notebook_popup_enable (GTK_NOTEBOOK (priv->notebook));
1461         gtk_box_pack_start (GTK_BOX (chat_vbox), priv->notebook, TRUE, TRUE, 0);
1462         gtk_widget_show (priv->notebook);
1463
1464         /* Set up accels */
1465         accel_group = gtk_accel_group_new ();
1466         gtk_window_add_accel_group (GTK_WINDOW (priv->dialog), accel_group);
1467
1468         for (i = 0; i < G_N_ELEMENTS (tab_accel_keys); i++) {
1469                 closure =  g_cclosure_new (G_CALLBACK (chat_window_accel_cb),
1470                                            window,
1471                                            NULL);
1472                 gtk_accel_group_connect (accel_group,
1473                                          tab_accel_keys[i],
1474                                          GDK_MOD1_MASK,
1475                                          0,
1476                                          closure);
1477         }
1478
1479         g_object_unref (accel_group);
1480
1481         /* Set up smiley menu */
1482         smiley_manager = empathy_smiley_manager_dup_singleton ();
1483         submenu = empathy_smiley_menu_new (smiley_manager,
1484                                            chat_window_insert_smiley_activate_cb,
1485                                            window);
1486         menu = gtk_ui_manager_get_widget (priv->ui_manager,
1487                 "/chats_menubar/menu_conv/menu_conv_insert_smiley");
1488         gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu), submenu);
1489         g_object_unref (smiley_manager);
1490
1491         /* Set up signals we can't do with ui file since we may need to
1492          * block/unblock them at some later stage.
1493          */
1494
1495         g_signal_connect (priv->dialog,
1496                           "delete_event",
1497                           G_CALLBACK (chat_window_delete_event_cb),
1498                           window);
1499
1500         g_signal_connect_swapped (priv->menu_tabs_prev,
1501                                   "activate",
1502                                   G_CALLBACK (gtk_notebook_prev_page),
1503                                   priv->notebook);
1504         g_signal_connect_swapped (priv->menu_tabs_next,
1505                                   "activate",
1506                                   G_CALLBACK (gtk_notebook_next_page),
1507                                   priv->notebook);
1508
1509         g_signal_connect (priv->dialog,
1510                           "focus_in_event",
1511                           G_CALLBACK (chat_window_focus_in_event_cb),
1512                           window);
1513         g_signal_connect_after (priv->notebook,
1514                                 "switch_page",
1515                                 G_CALLBACK (chat_window_page_switched_cb),
1516                                 window);
1517         g_signal_connect (priv->notebook,
1518                           "page_added",
1519                           G_CALLBACK (chat_window_page_added_cb),
1520                           window);
1521         g_signal_connect (priv->notebook,
1522                           "page_removed",
1523                           G_CALLBACK (chat_window_page_removed_cb),
1524                           window);
1525
1526         /* Set up drag and drop */
1527         gtk_drag_dest_set (GTK_WIDGET (priv->notebook),
1528                            GTK_DEST_DEFAULT_ALL,
1529                            drag_types_dest,
1530                            G_N_ELEMENTS (drag_types_dest),
1531                            GDK_ACTION_MOVE);
1532
1533         g_signal_connect (priv->notebook,
1534                           "drag-data-received",
1535                           G_CALLBACK (chat_window_drag_data_received),
1536                           window);
1537
1538         chat_windows = g_list_prepend (chat_windows, window);
1539
1540         /* Set up private details */
1541         priv->chats = NULL;
1542         priv->chats_new_msg = NULL;
1543         priv->chats_composing = NULL;
1544         priv->current_chat = NULL;
1545 }
1546
1547 EmpathyChatWindow *
1548 empathy_chat_window_new (void)
1549 {
1550         return EMPATHY_CHAT_WINDOW (g_object_new (EMPATHY_TYPE_CHAT_WINDOW, NULL));
1551 }
1552
1553 /* Returns the window to open a new tab in if there is only one window
1554  * visble, otherwise, returns NULL indicating that a new window should
1555  * be added.
1556  */
1557 EmpathyChatWindow *
1558 empathy_chat_window_get_default (void)
1559 {
1560         GList    *l;
1561         gboolean  separate_windows = TRUE;
1562
1563         empathy_conf_get_bool (empathy_conf_get (),
1564                               EMPATHY_PREFS_UI_SEPARATE_CHAT_WINDOWS,
1565                               &separate_windows);
1566
1567         if (separate_windows) {
1568                 /* Always create a new window */
1569                 return NULL;
1570         }
1571
1572         for (l = chat_windows; l; l = l->next) {
1573                 EmpathyChatWindow *chat_window;
1574                 GtkWidget         *dialog;
1575
1576                 chat_window = l->data;
1577
1578                 dialog = empathy_chat_window_get_dialog (chat_window);
1579                 if (empathy_window_get_is_visible (GTK_WINDOW (dialog))) {
1580                         /* Found a visible window on this desktop */
1581                         return chat_window;
1582                 }
1583         }
1584
1585         return NULL;
1586 }
1587
1588 GtkWidget *
1589 empathy_chat_window_get_dialog (EmpathyChatWindow *window)
1590 {
1591         EmpathyChatWindowPriv *priv;
1592
1593         g_return_val_if_fail (window != NULL, NULL);
1594
1595         priv = GET_PRIV (window);
1596
1597         return priv->dialog;
1598 }
1599
1600 void
1601 empathy_chat_window_add_chat (EmpathyChatWindow *window,
1602                               EmpathyChat       *chat)
1603 {
1604         EmpathyChatWindowPriv *priv;
1605         GtkWidget             *label;
1606         GtkWidget             *popup_label;
1607         GtkWidget             *child;
1608         gint                   x, y, w, h;
1609
1610         g_return_if_fail (window != NULL);
1611         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1612
1613         priv = GET_PRIV (window);
1614
1615         /* Reference the chat object */
1616         g_object_ref (chat);
1617
1618         /* If this window has just been created, position it */
1619         if (priv->chats == NULL) {
1620                 empathy_geometry_load (chat_get_window_id_for_geometry (chat), &x, &y, &w, &h);
1621
1622                 if (x >= 0 && y >= 0) {
1623                         /* Let the window manager position it if we don't have
1624                          * good x, y coordinates.
1625                          */
1626                         gtk_window_move (GTK_WINDOW (priv->dialog), x, y);
1627                 }
1628
1629                 if (w > 0 && h > 0) {
1630                         /* Use the defaults from the ui file if we don't have
1631                          * good w, h geometry.
1632                          */
1633                         gtk_window_resize (GTK_WINDOW (priv->dialog), w, h);
1634                 }
1635         }
1636
1637         child = GTK_WIDGET (chat);
1638         label = chat_window_create_label (window, chat, TRUE);
1639         popup_label = chat_window_create_label (window, chat, FALSE);
1640         gtk_widget_show (child);
1641
1642         g_signal_connect (chat, "notify::name",
1643                           G_CALLBACK (chat_window_chat_notify_cb),
1644                           NULL);
1645         g_signal_connect (chat, "notify::subject",
1646                           G_CALLBACK (chat_window_chat_notify_cb),
1647                           NULL);
1648         g_signal_connect (chat, "notify::remote-contact",
1649                           G_CALLBACK (chat_window_chat_notify_cb),
1650                           NULL);
1651         chat_window_chat_notify_cb (chat);
1652
1653         gtk_notebook_append_page_menu (GTK_NOTEBOOK (priv->notebook), child, label, popup_label);
1654         gtk_notebook_set_tab_reorderable (GTK_NOTEBOOK (priv->notebook), child, TRUE);
1655         gtk_notebook_set_tab_detachable (GTK_NOTEBOOK (priv->notebook), child, TRUE);
1656         gtk_notebook_set_tab_label_packing (GTK_NOTEBOOK (priv->notebook), child,
1657                                             TRUE, TRUE, GTK_PACK_START);
1658
1659         DEBUG ("Chat added (%d references)", G_OBJECT (chat)->ref_count);
1660 }
1661
1662 void
1663 empathy_chat_window_remove_chat (EmpathyChatWindow *window,
1664                                  EmpathyChat       *chat)
1665 {
1666         EmpathyChatWindowPriv *priv;
1667         gint                   position;
1668         EmpathyContact        *remote_contact;
1669
1670         g_return_if_fail (window != NULL);
1671         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1672
1673         priv = GET_PRIV (window);
1674
1675         g_signal_handlers_disconnect_by_func (chat,
1676                                               chat_window_chat_notify_cb,
1677                                               NULL);
1678         remote_contact = g_object_get_data (G_OBJECT (chat),
1679                                             "chat-window-remote-contact");
1680         if (remote_contact) {
1681                 g_signal_handlers_disconnect_by_func (remote_contact,
1682                                                       chat_window_update_chat_tab,
1683                                                       chat);
1684         }
1685
1686         position = gtk_notebook_page_num (GTK_NOTEBOOK (priv->notebook),
1687                                           GTK_WIDGET (chat));
1688         gtk_notebook_remove_page (GTK_NOTEBOOK (priv->notebook), position);
1689
1690         DEBUG ("Chat removed (%d references)", G_OBJECT (chat)->ref_count - 1);
1691
1692         g_object_unref (chat);
1693 }
1694
1695 void
1696 empathy_chat_window_move_chat (EmpathyChatWindow *old_window,
1697                                EmpathyChatWindow *new_window,
1698                                EmpathyChat       *chat)
1699 {
1700         GtkWidget *widget;
1701
1702         g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (old_window));
1703         g_return_if_fail (EMPATHY_IS_CHAT_WINDOW (new_window));
1704         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1705
1706         widget = GTK_WIDGET (chat);
1707
1708         DEBUG ("Chat moving with widget:%p (%d references)", widget,
1709                 G_OBJECT (widget)->ref_count);
1710
1711         /* We reference here to make sure we don't loose the widget
1712          * and the EmpathyChat object during the move.
1713          */
1714         g_object_ref (chat);
1715         g_object_ref (widget);
1716
1717         empathy_chat_window_remove_chat (old_window, chat);
1718         empathy_chat_window_add_chat (new_window, chat);
1719
1720         g_object_unref (widget);
1721         g_object_unref (chat);
1722 }
1723
1724 void
1725 empathy_chat_window_switch_to_chat (EmpathyChatWindow *window,
1726                                     EmpathyChat       *chat)
1727 {
1728         EmpathyChatWindowPriv *priv;
1729         gint                  page_num;
1730
1731         g_return_if_fail (window != NULL);
1732         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1733
1734         priv = GET_PRIV (window);
1735
1736         page_num = gtk_notebook_page_num (GTK_NOTEBOOK (priv->notebook),
1737                                           GTK_WIDGET (chat));
1738         gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->notebook),
1739                                        page_num);
1740 }
1741
1742 gboolean
1743 empathy_chat_window_has_focus (EmpathyChatWindow *window)
1744 {
1745         EmpathyChatWindowPriv *priv;
1746         gboolean              has_focus;
1747
1748         g_return_val_if_fail (EMPATHY_IS_CHAT_WINDOW (window), FALSE);
1749
1750         priv = GET_PRIV (window);
1751
1752         g_object_get (priv->dialog, "has-toplevel-focus", &has_focus, NULL);
1753
1754         return has_focus;
1755 }
1756
1757 EmpathyChat *
1758 empathy_chat_window_find_chat (EmpathyAccount   *account,
1759                                const gchar *id)
1760 {
1761         GList *l;
1762
1763         g_return_val_if_fail (!EMP_STR_EMPTY (id), NULL);
1764
1765         for (l = chat_windows; l; l = l->next) {
1766                 EmpathyChatWindowPriv *priv;
1767                 EmpathyChatWindow     *window;
1768                 GList                *ll;
1769
1770                 window = l->data;
1771                 priv = GET_PRIV (window);
1772
1773                 for (ll = priv->chats; ll; ll = ll->next) {
1774                         EmpathyChat *chat;
1775
1776                         chat = ll->data;
1777
1778                         if (account == empathy_chat_get_account (chat) &&
1779                             !tp_strdiff (id, empathy_chat_get_id (chat))) {
1780                                 return chat;
1781                         }
1782                 }
1783         }
1784
1785         return NULL;
1786 }
1787
1788 void
1789 empathy_chat_window_present_chat (EmpathyChat *chat)
1790 {
1791         EmpathyChatWindow     *window;
1792         EmpathyChatWindowPriv *priv;
1793
1794         g_return_if_fail (EMPATHY_IS_CHAT (chat));
1795
1796         window = chat_window_find_chat (chat);
1797
1798         /* If the chat has no window, create one */
1799         if (window == NULL) {
1800                 window = empathy_chat_window_get_default ();
1801                 if (!window) {
1802                         window = empathy_chat_window_new ();
1803                 }
1804
1805                 empathy_chat_window_add_chat (window, chat);
1806         }
1807
1808         priv = GET_PRIV (window);
1809         empathy_chat_window_switch_to_chat (window, chat);
1810         empathy_window_present (GTK_WINDOW (priv->dialog), TRUE);
1811
1812         gtk_widget_grab_focus (chat->input_text_view);
1813 }
1814