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