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