]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-chat-view.c
Rework EmpathyChat's API, it is now a subclass of GtkBin.
[empathy.git] / libempathy-gtk / empathy-chat-view.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2002-2007 Imendio AB
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  * 
20  * Authors: Mikael Hallendal <micke@imendio.com>
21  *          Richard Hult <richard@imendio.com>
22  *          Martyn Russell <martyn@imendio.com>
23  */
24
25 #include "config.h"
26
27 #include <sys/types.h>
28 #include <string.h>
29 #include <time.h>
30
31 #include <glib/gi18n.h>
32 #include <gtk/gtkbutton.h>
33 #include <gtk/gtkimage.h>
34 #include <gtk/gtkmenu.h>
35 #include <gtk/gtkmenuitem.h>
36 #include <gtk/gtkimagemenuitem.h>
37 #include <gtk/gtkstock.h>
38 #include <gtk/gtkscrolledwindow.h>
39 #include <gtk/gtksizegroup.h>
40 #include <glade/glade.h>
41
42 #include <telepathy-glib/util.h>
43 #include <libmissioncontrol/mc-account.h>
44
45 #include <libempathy/empathy-utils.h>
46 #include <libempathy/empathy-debug.h>
47
48 #include "empathy-chat-view.h"
49 #include "empathy-chat.h"
50 #include "empathy-conf.h"
51 #include "empathy-theme-manager.h"
52 #include "empathy-ui-utils.h"
53 #include "empathy-smiley-manager.h"
54
55 #define DEBUG_DOMAIN "ChatView"
56
57 /* Number of seconds between timestamps when using normal mode, 5 minutes. */
58 #define TIMESTAMP_INTERVAL 300
59
60 #define MAX_LINES 800
61 #define MAX_SCROLL_TIME 0.4 /* seconds */
62 #define SCROLL_DELAY 33     /* milliseconds */
63
64 #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), EMPATHY_TYPE_CHAT_VIEW, EmpathyChatViewPriv))
65
66 struct _EmpathyChatViewPriv {
67         GtkTextBuffer *buffer;
68
69         EmpathyTheme   *theme;
70
71         time_t         last_timestamp;
72
73         gboolean       allow_scrolling;
74         guint          scroll_timeout;
75         GTimer        *scroll_time;
76         gboolean       is_group_chat;
77
78         GtkTextMark   *find_mark_previous;
79         GtkTextMark   *find_mark_next;
80         gboolean       find_wrapped;
81         gboolean       find_last_direction;
82
83         /* This is for the group chat so we know if the "other" last contact
84          * changed, so we know whether to insert a header or not.
85          */
86         EmpathyContact *last_contact;
87
88         guint          notify_system_fonts_id;
89         guint          notify_show_avatars_id;
90 };
91
92 static void     empathy_chat_view_class_init          (EmpathyChatViewClass      *klass);
93 static void     empathy_chat_view_init                (EmpathyChatView           *view);
94 static void     chat_view_finalize                   (GObject                  *object);
95 static gboolean chat_view_drag_motion                (GtkWidget                *widget,
96                                                       GdkDragContext           *context,
97                                                       gint                      x,
98                                                       gint                      y,
99                                                       guint                     time);
100 static void     chat_view_size_allocate              (GtkWidget                *widget,
101                                                       GtkAllocation            *alloc);
102 static void     chat_view_setup_tags                 (EmpathyChatView           *view);
103 static void     chat_view_system_font_update         (EmpathyChatView           *view);
104 static void     chat_view_notify_system_font_cb      (EmpathyConf               *conf,
105                                                       const gchar              *key,
106                                                       gpointer                  user_data);
107 static void     chat_view_notify_show_avatars_cb     (EmpathyConf               *conf,
108                                                       const gchar              *key,
109                                                       gpointer                  user_data);
110 static void     chat_view_populate_popup             (EmpathyChatView           *view,
111                                                       GtkMenu                  *menu,
112                                                       gpointer                  user_data);
113 static gboolean chat_view_event_cb                   (EmpathyChatView           *view,
114                                                       GdkEventMotion           *event,
115                                                       GtkTextTag               *tag);
116 static gboolean chat_view_url_event_cb               (GtkTextTag               *tag,
117                                                       GObject                  *object,
118                                                       GdkEvent                 *event,
119                                                       GtkTextIter              *iter,
120                                                       GtkTextBuffer            *buffer);
121 static void     chat_view_open_address_cb            (GtkMenuItem              *menuitem,
122                                                       const gchar              *url);
123 static void     chat_view_copy_address_cb            (GtkMenuItem              *menuitem,
124                                                       const gchar              *url);
125 static void     chat_view_clear_view_cb              (GtkMenuItem              *menuitem,
126                                                       EmpathyChatView           *view);
127 static gboolean chat_view_is_scrolled_down           (EmpathyChatView           *view);
128 static void     chat_view_theme_changed_cb           (EmpathyThemeManager       *manager,
129                                                       EmpathyChatView           *view);
130 static void     chat_view_theme_notify_cb            (EmpathyTheme              *theme,
131                                                       GParamSpec                *param,
132                                                       EmpathyChatView           *view);
133
134 G_DEFINE_TYPE (EmpathyChatView, empathy_chat_view, GTK_TYPE_TEXT_VIEW);
135
136 static void
137 empathy_chat_view_class_init (EmpathyChatViewClass *klass)
138 {
139         GObjectClass   *object_class = G_OBJECT_CLASS (klass);
140         GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
141
142         object_class->finalize = chat_view_finalize;
143         widget_class->size_allocate = chat_view_size_allocate;
144         widget_class->drag_motion = chat_view_drag_motion; 
145
146         g_type_class_add_private (object_class, sizeof (EmpathyChatViewPriv));
147 }
148
149 static void
150 empathy_chat_view_init (EmpathyChatView *view)
151 {
152         EmpathyChatViewPriv *priv;
153         gboolean            show_avatars;
154
155         priv = GET_PRIV (view);
156
157         priv->buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
158         priv->last_timestamp = 0;
159         priv->allow_scrolling = TRUE;
160         priv->is_group_chat = FALSE;
161
162         g_object_set (view,
163                       "wrap-mode", GTK_WRAP_WORD_CHAR,
164                       "editable", FALSE,
165                       "cursor-visible", FALSE,
166                       NULL);
167
168         priv->notify_system_fonts_id =
169                 empathy_conf_notify_add (empathy_conf_get (),
170                                          "/desktop/gnome/interface/document_font_name",
171                                          chat_view_notify_system_font_cb,
172                                          view);
173         chat_view_system_font_update (view);
174
175         priv->notify_show_avatars_id =
176                 empathy_conf_notify_add (empathy_conf_get (),
177                                          EMPATHY_PREFS_UI_SHOW_AVATARS,
178                                          chat_view_notify_show_avatars_cb,
179                                          view);
180
181         chat_view_setup_tags (view);
182
183         empathy_theme_manager_apply_saved (empathy_theme_manager_get (), view);
184
185         show_avatars = FALSE;
186         empathy_conf_get_bool (empathy_conf_get (),
187                                EMPATHY_PREFS_UI_SHOW_AVATARS,
188                                &show_avatars);
189
190         empathy_theme_set_show_avatars (priv->theme, show_avatars);
191
192         g_signal_connect (view,
193                           "populate-popup",
194                           G_CALLBACK (chat_view_populate_popup),
195                           NULL);
196
197         g_signal_connect_object (empathy_theme_manager_get (),
198                                  "theme-changed",
199                                  G_CALLBACK (chat_view_theme_changed_cb),
200                                  view,
201                                  0);
202 }
203
204 static void
205 chat_view_finalize (GObject *object)
206 {
207         EmpathyChatView     *view;
208         EmpathyChatViewPriv *priv;
209
210         view = EMPATHY_CHAT_VIEW (object);
211         priv = GET_PRIV (view);
212
213         empathy_debug (DEBUG_DOMAIN, "finalize: %p", object);
214
215         empathy_conf_notify_remove (empathy_conf_get (), priv->notify_system_fonts_id);
216         empathy_conf_notify_remove (empathy_conf_get (), priv->notify_show_avatars_id);
217
218         if (priv->last_contact) {
219                 g_object_unref (priv->last_contact);
220         }
221         if (priv->scroll_time) {
222                 g_timer_destroy (priv->scroll_time);
223         }
224         if (priv->scroll_timeout) {
225                 g_source_remove (priv->scroll_timeout);
226         }
227
228         if (priv->theme) {
229                 g_signal_handlers_disconnect_by_func (priv->theme,
230                                                       chat_view_theme_notify_cb,
231                                                       view);
232                 g_object_unref (priv->theme);
233         }
234
235         G_OBJECT_CLASS (empathy_chat_view_parent_class)->finalize (object);
236 }
237
238 static gboolean
239 chat_view_drag_motion (GtkWidget        *widget,
240                        GdkDragContext   *context,
241                        gint              x,
242                        gint              y,
243                        guint             time)
244 {
245         /* Don't handle drag motion, since we don't want the view to scroll as
246          * the result of dragging something across it.
247          */
248
249         return FALSE;
250 }
251
252 static void
253 chat_view_size_allocate (GtkWidget     *widget,
254                          GtkAllocation *alloc)
255 {
256         gboolean down;
257
258         down = chat_view_is_scrolled_down (EMPATHY_CHAT_VIEW (widget));
259
260         GTK_WIDGET_CLASS (empathy_chat_view_parent_class)->size_allocate (widget, alloc);
261
262         if (down) {
263                 GtkAdjustment *adj;
264
265                 adj = GTK_TEXT_VIEW (widget)->vadjustment;
266                 gtk_adjustment_set_value (adj, adj->upper - adj->page_size);
267         }
268 }
269
270 static void
271 chat_view_setup_tags (EmpathyChatView *view)
272 {
273         EmpathyChatViewPriv *priv;
274         GtkTextTag         *tag;
275
276         priv = GET_PRIV (view);
277
278         gtk_text_buffer_create_tag (priv->buffer,
279                                     "cut",
280                                     NULL);
281
282         /* FIXME: Move to the theme and come up with something that looks a bit
283          * nicer.
284          */
285         gtk_text_buffer_create_tag (priv->buffer,
286                                     "highlight",
287                                     "background", "yellow",
288                                     NULL);
289
290         tag = gtk_text_buffer_create_tag (priv->buffer,
291                                           "link",
292                                           NULL);
293
294         g_signal_connect (tag,
295                           "event",
296                           G_CALLBACK (chat_view_url_event_cb),
297                           priv->buffer);
298
299         g_signal_connect (view,
300                           "motion-notify-event",
301                           G_CALLBACK (chat_view_event_cb),
302                           tag);
303 }
304
305 static void
306 chat_view_system_font_update (EmpathyChatView *view)
307 {
308         PangoFontDescription *font_description = NULL;
309         gchar                *font_name;
310
311         if (empathy_conf_get_string (empathy_conf_get (),
312                                      "/desktop/gnome/interface/document_font_name",
313                                      &font_name) && font_name) {
314                 font_description = pango_font_description_from_string (font_name);
315                 g_free (font_name);
316         } else {
317                 font_description = NULL;
318         }
319
320         gtk_widget_modify_font (GTK_WIDGET (view), font_description);
321
322         if (font_description) {
323                 pango_font_description_free (font_description);
324         }
325 }
326
327 static void
328 chat_view_notify_system_font_cb (EmpathyConf  *conf,
329                                  const gchar *key,
330                                  gpointer     user_data)
331 {
332         EmpathyChatView *view;
333         EmpathyChatViewPriv *priv;
334         gboolean        show_avatars = FALSE;
335
336         view = user_data;
337         priv = GET_PRIV (view);
338
339         chat_view_system_font_update (view);
340
341         /* Ugly, again, to adjust the vertical position of the nick... Will fix
342          * this when reworking the theme manager so that view register
343          * themselves with it instead of the other way around.
344          */
345         empathy_conf_get_bool (conf,
346                                EMPATHY_PREFS_UI_SHOW_AVATARS,
347                                &show_avatars);
348
349         empathy_theme_set_show_avatars (priv->theme, show_avatars);
350 }
351
352 static void
353 chat_view_notify_show_avatars_cb (EmpathyConf  *conf,
354                                   const gchar *key,
355                                   gpointer     user_data)
356 {
357         EmpathyChatView     *view;
358         EmpathyChatViewPriv *priv;
359         gboolean            show_avatars = FALSE;
360
361         view = user_data;
362         priv = GET_PRIV (view);
363
364         empathy_conf_get_bool (conf, key, &show_avatars);
365
366         empathy_theme_set_show_avatars (priv->theme, show_avatars);
367 }
368
369 static void
370 chat_view_populate_popup (EmpathyChatView *view,
371                           GtkMenu        *menu,
372                           gpointer        user_data)
373 {
374         EmpathyChatViewPriv *priv;
375         GtkTextTagTable    *table;
376         GtkTextTag         *tag;
377         gint                x, y;
378         GtkTextIter         iter, start, end;
379         GtkWidget          *item;
380         gchar              *str = NULL;
381
382         priv = GET_PRIV (view);
383
384         /* Clear menu item */
385         if (gtk_text_buffer_get_char_count (priv->buffer) > 0) {
386                 item = gtk_menu_item_new ();
387                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
388                 gtk_widget_show (item);
389
390                 item = gtk_image_menu_item_new_from_stock (GTK_STOCK_CLEAR, NULL);
391                 gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
392                 gtk_widget_show (item);
393
394                 g_signal_connect (item,
395                                   "activate",
396                                   G_CALLBACK (chat_view_clear_view_cb),
397                                   view);
398         }
399
400         /* Link context menu items */
401         table = gtk_text_buffer_get_tag_table (priv->buffer);
402         tag = gtk_text_tag_table_lookup (table, "link");
403
404         gtk_widget_get_pointer (GTK_WIDGET (view), &x, &y);
405
406         gtk_text_view_window_to_buffer_coords (GTK_TEXT_VIEW (view),
407                                                GTK_TEXT_WINDOW_WIDGET,
408                                                x, y,
409                                                &x, &y);
410
411         gtk_text_view_get_iter_at_location (GTK_TEXT_VIEW (view), &iter, x, y);
412
413         start = end = iter;
414
415         if (gtk_text_iter_backward_to_tag_toggle (&start, tag) &&
416             gtk_text_iter_forward_to_tag_toggle (&end, tag)) {
417                 str = gtk_text_buffer_get_text (priv->buffer,
418                                                 &start, &end, FALSE);
419         }
420
421         if (G_STR_EMPTY (str)) {
422                 g_free (str);
423                 return;
424         }
425
426         /* NOTE: Set data just to get the string freed when not needed. */
427         g_object_set_data_full (G_OBJECT (menu),
428                                 "url", str,
429                                 (GDestroyNotify) g_free);
430
431         item = gtk_menu_item_new ();
432         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
433         gtk_widget_show (item);
434
435         item = gtk_menu_item_new_with_mnemonic (_("_Copy Link Address"));
436         g_signal_connect (item,
437                           "activate",
438                           G_CALLBACK (chat_view_copy_address_cb),
439                           str);
440         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
441         gtk_widget_show (item);
442
443         item = gtk_menu_item_new_with_mnemonic (_("_Open Link"));
444         g_signal_connect (item,
445                           "activate",
446                           G_CALLBACK (chat_view_open_address_cb),
447                           str);
448         gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), item);
449         gtk_widget_show (item);
450 }
451
452 static gboolean
453 chat_view_event_cb (EmpathyChatView *view,
454                     GdkEventMotion *event,
455                     GtkTextTag     *tag)
456 {
457         static GdkCursor  *hand = NULL;
458         static GdkCursor  *beam = NULL;
459         GtkTextWindowType  type;
460         GtkTextIter        iter;
461         GdkWindow         *win;
462         gint               x, y, buf_x, buf_y;
463
464         type = gtk_text_view_get_window_type (GTK_TEXT_VIEW (view),
465                                               event->window);
466
467         if (type != GTK_TEXT_WINDOW_TEXT) {
468                 return FALSE;
469         }
470
471         /* Get where the pointer really is. */
472         win = gtk_text_view_get_window (GTK_TEXT_VIEW (view), type);
473         if (!win) {
474                 return FALSE;
475         }
476
477         gdk_window_get_pointer (win, &x, &y, NULL);
478
479         /* Get the iter where the cursor is at */
480         gtk_text_view_window_to_buffer_coords (GTK_TEXT_VIEW (view), type,
481                                                x, y,
482                                                &buf_x, &buf_y);
483
484         gtk_text_view_get_iter_at_location (GTK_TEXT_VIEW (view),
485                                             &iter,
486                                             buf_x, buf_y);
487
488         if (gtk_text_iter_has_tag (&iter, tag)) {
489                 if (!hand) {
490                         hand = gdk_cursor_new (GDK_HAND2);
491                         beam = gdk_cursor_new (GDK_XTERM);
492                 }
493                 gdk_window_set_cursor (win, hand);
494         } else {
495                 if (!beam) {
496                         beam = gdk_cursor_new (GDK_XTERM);
497                 }
498                 gdk_window_set_cursor (win, beam);
499         }
500
501         return FALSE;
502 }
503
504 static gboolean
505 chat_view_url_event_cb (GtkTextTag    *tag,
506                         GObject       *object,
507                         GdkEvent      *event,
508                         GtkTextIter   *iter,
509                         GtkTextBuffer *buffer)
510 {
511         GtkTextIter  start, end;
512         gchar       *str;
513
514         /* If the link is being selected, don't do anything. */
515         gtk_text_buffer_get_selection_bounds (buffer, &start, &end);
516         if (gtk_text_iter_get_offset (&start) != gtk_text_iter_get_offset (&end)) {
517                 return FALSE;
518         }
519
520         if (event->type == GDK_BUTTON_RELEASE && event->button.button == 1) {
521                 start = end = *iter;
522
523                 if (gtk_text_iter_backward_to_tag_toggle (&start, tag) &&
524                     gtk_text_iter_forward_to_tag_toggle (&end, tag)) {
525                         str = gtk_text_buffer_get_text (buffer,
526                                                         &start,
527                                                         &end,
528                                                         FALSE);
529
530                         empathy_url_show (str);
531                         g_free (str);
532                 }
533         }
534
535         return FALSE;
536 }
537
538 static void
539 chat_view_open_address_cb (GtkMenuItem *menuitem, const gchar *url)
540 {
541         empathy_url_show (url);
542 }
543
544 static void
545 chat_view_copy_address_cb (GtkMenuItem *menuitem, const gchar *url)
546 {
547         GtkClipboard *clipboard;
548
549         clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
550         gtk_clipboard_set_text (clipboard, url, -1);
551
552         clipboard = gtk_clipboard_get (GDK_SELECTION_PRIMARY);
553         gtk_clipboard_set_text (clipboard, url, -1);
554 }
555
556 static void
557 chat_view_clear_view_cb (GtkMenuItem *menuitem, EmpathyChatView *view)
558 {
559         empathy_chat_view_clear (view);
560 }
561
562 static gboolean
563 chat_view_is_scrolled_down (EmpathyChatView *view)
564 {
565         GtkWidget *sw;
566
567         sw = gtk_widget_get_parent (GTK_WIDGET (view));
568         if (GTK_IS_SCROLLED_WINDOW (sw)) {
569                 GtkAdjustment *vadj;
570
571                 vadj = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (sw));
572
573                 if (vadj->value + vadj->page_size / 2 < vadj->upper - vadj->page_size) {
574                         return FALSE;
575                 }
576         }
577
578         return TRUE;
579 }
580
581 static void
582 chat_view_maybe_trim_buffer (EmpathyChatView *view)
583 {
584         EmpathyChatViewPriv *priv;
585         GtkTextIter         top, bottom;
586         gint                line;
587         gint                remove;
588         GtkTextTagTable    *table;
589         GtkTextTag         *tag;
590
591         priv = GET_PRIV (view);
592
593         gtk_text_buffer_get_end_iter (priv->buffer, &bottom);
594         line = gtk_text_iter_get_line (&bottom);
595         if (line < MAX_LINES) {
596                 return;
597         }
598
599         remove = line - MAX_LINES;
600         gtk_text_buffer_get_start_iter (priv->buffer, &top);
601
602         bottom = top;
603         if (!gtk_text_iter_forward_lines (&bottom, remove)) {
604                 return;
605         }
606
607         /* Track backwords to a place where we can safely cut, we don't do it in
608          * the middle of a tag.
609          */
610         table = gtk_text_buffer_get_tag_table (priv->buffer);
611         tag = gtk_text_tag_table_lookup (table, "cut");
612         if (!tag) {
613                 return;
614         }
615
616         if (!gtk_text_iter_forward_to_tag_toggle (&bottom, tag)) {
617                 return;
618         }
619
620         if (!gtk_text_iter_equal (&top, &bottom)) {
621                 gtk_text_buffer_delete (priv->buffer, &top, &bottom);
622         }
623 }
624
625 static void
626 chat_view_theme_changed_cb (EmpathyThemeManager *manager,
627                             EmpathyChatView     *view)
628 {
629         EmpathyChatViewPriv *priv;
630         gboolean            show_avatars = FALSE;
631         gboolean            theme_rooms = FALSE;
632
633         priv = GET_PRIV (view);
634
635         empathy_conf_get_bool (empathy_conf_get (),
636                               EMPATHY_PREFS_CHAT_THEME_CHAT_ROOM,
637                               &theme_rooms);
638         if (!theme_rooms && priv->is_group_chat) {
639                 empathy_theme_manager_apply (manager, view, NULL);
640         } else {
641                 empathy_theme_manager_apply_saved (manager, view);
642         }
643
644         /* Needed for now to update the "rise" property of the names to get it
645          * vertically centered.
646          */
647         empathy_conf_get_bool (empathy_conf_get (),
648                                EMPATHY_PREFS_UI_SHOW_AVATARS,
649                                &show_avatars);
650         empathy_theme_set_show_avatars (priv->theme, show_avatars);
651 }
652
653 /* Pads a pixbuf to the specified size, by centering it in a larger transparent
654  * pixbuf. Returns a new ref.
655  */
656 static GdkPixbuf *
657 chat_view_pad_to_size (GdkPixbuf *pixbuf,
658                        gint       width,
659                        gint       height,
660                        gint       extra_padding_right)
661 {
662         gint       src_width, src_height;
663         GdkPixbuf *padded;
664         gint       x_offset, y_offset;
665
666         src_width = gdk_pixbuf_get_width (pixbuf);
667         src_height = gdk_pixbuf_get_height (pixbuf);
668
669         x_offset = (width - src_width) / 2;
670         y_offset = (height - src_height) / 2;
671
672         padded = gdk_pixbuf_new (gdk_pixbuf_get_colorspace (pixbuf),
673                                  TRUE, /* alpha */
674                                  gdk_pixbuf_get_bits_per_sample (pixbuf),
675                                  width + extra_padding_right,
676                                  height);
677
678         gdk_pixbuf_fill (padded, 0);
679
680         gdk_pixbuf_copy_area (pixbuf,
681                               0, /* source coords */
682                               0,
683                               src_width,
684                               src_height,
685                               padded,
686                               x_offset, /* dest coords */
687                               y_offset);
688
689         return padded;
690 }
691
692 typedef struct {
693         GdkPixbuf *pixbuf;
694         gchar     *token;
695 } AvatarData;
696
697 static void
698 chat_view_avatar_cache_data_free (gpointer ptr)
699 {
700         AvatarData *data = ptr;
701
702         g_object_unref (data->pixbuf);
703         g_free (data->token);
704         g_slice_free (AvatarData, data);
705 }
706
707 GdkPixbuf *
708 empathy_chat_view_get_avatar_pixbuf_with_cache (EmpathyContact *contact)
709 {
710         AvatarData        *data;
711         EmpathyAvatar     *avatar;
712         GdkPixbuf         *tmp_pixbuf;
713         GdkPixbuf         *pixbuf = NULL;
714
715         /* Check if avatar is in cache and if it's up to date */
716         avatar = empathy_contact_get_avatar (contact);
717         data = g_object_get_data (G_OBJECT (contact), "chat-view-avatar-cache");
718         if (data) {
719                 if (avatar && !tp_strdiff (avatar->token, data->token)) {
720                         /* We have the avatar in cache */
721                         return data->pixbuf;
722                 }
723         }
724
725         /* Avatar not in cache, create pixbuf */
726         tmp_pixbuf = empathy_pixbuf_avatar_from_contact_scaled (contact, 32, 32);
727         if (tmp_pixbuf) {
728                 pixbuf = chat_view_pad_to_size (tmp_pixbuf, 32, 32, 6);
729                 g_object_unref (tmp_pixbuf);
730         }
731         if (!pixbuf) {
732                 return NULL;
733         }
734
735         /* Insert new pixbuf in cache */
736         data = g_slice_new0 (AvatarData);
737         data->token = g_strdup (avatar->token);
738         data->pixbuf = pixbuf;
739
740         g_object_set_data_full (G_OBJECT (contact), "chat-view-avatar-cache",
741                                 data, chat_view_avatar_cache_data_free);
742
743         return data->pixbuf;
744 }
745
746 EmpathyChatView *
747 empathy_chat_view_new (void)
748 {
749         return g_object_new (EMPATHY_TYPE_CHAT_VIEW, NULL);
750 }
751
752 /* Code stolen from pidgin/gtkimhtml.c */
753 static gboolean
754 chat_view_scroll_cb (EmpathyChatView *view)
755 {
756         EmpathyChatViewPriv *priv;
757         GtkAdjustment      *adj;
758         gdouble             max_val;
759
760         priv = GET_PRIV (view);
761         adj = GTK_TEXT_VIEW (view)->vadjustment;
762         max_val = adj->upper - adj->page_size;
763
764         g_return_val_if_fail (priv->scroll_time != NULL, FALSE);
765
766         if (g_timer_elapsed (priv->scroll_time, NULL) > MAX_SCROLL_TIME) {
767                 /* time's up. jump to the end and kill the timer */
768                 gtk_adjustment_set_value (adj, max_val);
769                 g_timer_destroy (priv->scroll_time);
770                 priv->scroll_time = NULL;
771                 priv->scroll_timeout = 0;
772                 return FALSE;
773         }
774
775         /* scroll by 1/3rd the remaining distance */
776         gtk_adjustment_set_value (adj, gtk_adjustment_get_value (adj) + ((max_val - gtk_adjustment_get_value (adj)) / 3));
777         return TRUE;
778 }
779
780 void
781 empathy_chat_view_scroll_down (EmpathyChatView *view)
782 {
783         EmpathyChatViewPriv *priv;
784
785         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
786
787         priv = GET_PRIV (view);
788
789         if (!priv->allow_scrolling) {
790                 return;
791         }
792
793         empathy_debug (DEBUG_DOMAIN, "Scrolling down");
794
795         if (priv->scroll_time) {
796                 g_timer_reset (priv->scroll_time);
797         } else {
798                 priv->scroll_time = g_timer_new();
799         }
800         if (!priv->scroll_timeout) {
801                 priv->scroll_timeout = g_timeout_add (SCROLL_DELAY,
802                                                       (GSourceFunc) chat_view_scroll_cb,
803                                                       view);
804         }
805 }
806
807 void
808 empathy_chat_view_append_message (EmpathyChatView *view,
809                                   EmpathyMessage  *msg)
810 {
811         EmpathyChatViewPriv *priv = GET_PRIV (view);
812         gboolean             bottom;
813
814         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
815         g_return_if_fail (EMPATHY_IS_MESSAGE (msg));
816
817         if (!empathy_message_get_body (msg)) {
818                 return;
819         }
820
821         bottom = chat_view_is_scrolled_down (view);
822         
823         chat_view_maybe_trim_buffer (view);
824
825         empathy_theme_append_message (priv->theme, view, msg);
826
827         if (bottom) {
828                 empathy_chat_view_scroll_down (view);
829         }
830
831         if (priv->last_contact) {
832                 g_object_unref (priv->last_contact);
833         }
834         priv->last_contact = g_object_ref (empathy_message_get_sender (msg));
835 }
836
837 void
838 empathy_chat_view_append_event (EmpathyChatView *view,
839                                const gchar    *str)
840 {
841         EmpathyChatViewPriv *priv;
842         gboolean            bottom;
843
844         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
845         g_return_if_fail (!G_STR_EMPTY (str));
846
847         priv = GET_PRIV (view);
848
849         bottom = chat_view_is_scrolled_down (view);
850
851         chat_view_maybe_trim_buffer (view);
852
853         empathy_theme_append_event (priv->theme, view, str);
854
855         if (bottom) {
856                 empathy_chat_view_scroll_down (view);
857         }
858
859         if (priv->last_contact) {
860                 g_object_unref (priv->last_contact);
861                 priv->last_contact = NULL;
862         }
863 }
864
865 void
866 empathy_chat_view_append_button (EmpathyChatView *view,
867                                 const gchar    *message,
868                                 GtkWidget      *button1,
869                                 GtkWidget      *button2)
870 {
871         EmpathyChatViewPriv   *priv;
872         GtkTextChildAnchor   *anchor;
873         GtkTextIter           iter;
874         gboolean              bottom;
875         const gchar          *tag;
876
877         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
878         g_return_if_fail (button1 != NULL);
879
880         priv = GET_PRIV (view);
881
882         tag = "invite";
883
884         bottom = chat_view_is_scrolled_down (view);
885
886         empathy_theme_append_timestamp (priv->theme, view, NULL, TRUE, TRUE);
887
888         if (message) {
889                 empathy_theme_append_text (priv->theme, view, message, tag, NULL);
890         }
891
892         gtk_text_buffer_get_end_iter (priv->buffer, &iter);
893
894         anchor = gtk_text_buffer_create_child_anchor (priv->buffer, &iter);
895         gtk_text_view_add_child_at_anchor (GTK_TEXT_VIEW (view), button1, anchor);
896         gtk_widget_show (button1);
897
898         gtk_text_buffer_insert_with_tags_by_name (priv->buffer,
899                                                   &iter,
900                                                   " ",
901                                                   1,
902                                                   tag,
903                                                   NULL);
904
905         if (button2) {
906                 gtk_text_buffer_get_end_iter (priv->buffer, &iter);
907                 
908                 anchor = gtk_text_buffer_create_child_anchor (priv->buffer, &iter);
909                 gtk_text_view_add_child_at_anchor (GTK_TEXT_VIEW (view), button2, anchor);
910                 gtk_widget_show (button2);
911                 
912                 gtk_text_buffer_insert_with_tags_by_name (priv->buffer,
913                                                           &iter,
914                                                           " ",
915                                                           1,
916                                                           tag,
917                                                           NULL);
918         }
919
920         gtk_text_buffer_get_end_iter (priv->buffer, &iter);
921         gtk_text_buffer_insert_with_tags_by_name (priv->buffer,
922                                                   &iter,
923                                                   "\n\n",
924                                                   2,
925                                                   tag,
926                                                   NULL);
927
928         if (bottom) {
929                 empathy_chat_view_scroll_down (view);
930         }
931
932         if (priv->last_contact) {
933                 g_object_unref (priv->last_contact);
934                 priv->last_contact = NULL;
935         }
936 }
937
938 void
939 empathy_chat_view_scroll (EmpathyChatView *view,
940                          gboolean        allow_scrolling)
941 {
942         EmpathyChatViewPriv *priv = GET_PRIV (view);
943
944         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
945
946         empathy_debug (DEBUG_DOMAIN, "Scrolling %s",
947                       allow_scrolling ? "enabled" : "disabled");
948
949         priv->allow_scrolling = allow_scrolling;
950         if (allow_scrolling) {
951                 empathy_chat_view_scroll_down (view);
952         }
953 }
954
955 gboolean
956 empathy_chat_view_get_selection_bounds (EmpathyChatView *view,
957                                        GtkTextIter    *start,
958                                        GtkTextIter    *end)
959 {
960         GtkTextBuffer *buffer;
961
962         g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), FALSE);
963
964         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
965
966         return gtk_text_buffer_get_selection_bounds (buffer, start, end);
967 }
968
969 void
970 empathy_chat_view_clear (EmpathyChatView *view)
971 {
972         GtkTextBuffer      *buffer;
973         EmpathyChatViewPriv *priv;
974
975         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
976
977         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
978         gtk_text_buffer_set_text (buffer, "", -1);
979
980         /* We set these back to the initial values so we get
981          * timestamps when clearing the window to know when
982          * conversations start.
983          */
984         priv = GET_PRIV (view);
985
986         priv->last_timestamp = 0;
987 }
988
989 gboolean
990 empathy_chat_view_find_previous (EmpathyChatView *view,
991                                 const gchar    *search_criteria,
992                                 gboolean        new_search)
993 {
994         EmpathyChatViewPriv *priv;
995         GtkTextBuffer      *buffer;
996         GtkTextIter         iter_at_mark;
997         GtkTextIter         iter_match_start;
998         GtkTextIter         iter_match_end;
999         gboolean            found;
1000         gboolean            from_start = FALSE;
1001
1002         g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), FALSE);
1003         g_return_val_if_fail (search_criteria != NULL, FALSE);
1004
1005         priv = GET_PRIV (view);
1006
1007         buffer = priv->buffer;
1008
1009         if (G_STR_EMPTY (search_criteria)) {
1010                 if (priv->find_mark_previous) {
1011                         gtk_text_buffer_get_start_iter (buffer, &iter_at_mark);
1012
1013                         gtk_text_buffer_move_mark (buffer,
1014                                                    priv->find_mark_previous,
1015                                                    &iter_at_mark);
1016                         gtk_text_view_scroll_to_mark (GTK_TEXT_VIEW (view),
1017                                                       priv->find_mark_previous,
1018                                                       0.0,
1019                                                       TRUE,
1020                                                       0.0,
1021                                                       0.0);
1022                         gtk_text_buffer_select_range (buffer,
1023                                                       &iter_at_mark,
1024                                                       &iter_at_mark);
1025                 }
1026
1027                 return FALSE;
1028         }
1029
1030         if (new_search) {
1031                 from_start = TRUE;
1032         }
1033
1034         if (priv->find_mark_previous) {
1035                 gtk_text_buffer_get_iter_at_mark (buffer,
1036                                                   &iter_at_mark,
1037                                                   priv->find_mark_previous);
1038         } else {
1039                 gtk_text_buffer_get_end_iter (buffer, &iter_at_mark);
1040                 from_start = TRUE;
1041         }
1042
1043         priv->find_last_direction = FALSE;
1044
1045         found = empathy_text_iter_backward_search (&iter_at_mark,
1046                                                   search_criteria,
1047                                                   &iter_match_start,
1048                                                   &iter_match_end,
1049                                                   NULL);
1050
1051         if (!found) {
1052                 gboolean result = FALSE;
1053
1054                 if (from_start) {
1055                         return result;
1056                 }
1057
1058                 /* Here we wrap around. */
1059                 if (!new_search && !priv->find_wrapped) {
1060                         priv->find_wrapped = TRUE;
1061                         result = empathy_chat_view_find_previous (view, 
1062                                                                  search_criteria, 
1063                                                                  FALSE);
1064                         priv->find_wrapped = FALSE;
1065                 }
1066
1067                 return result;
1068         }
1069
1070         /* Set new mark and show on screen */
1071         if (!priv->find_mark_previous) {
1072                 priv->find_mark_previous = gtk_text_buffer_create_mark (buffer, NULL,
1073                                                                         &iter_match_start,
1074                                                                         TRUE);
1075         } else {
1076                 gtk_text_buffer_move_mark (buffer,
1077                                            priv->find_mark_previous,
1078                                            &iter_match_start);
1079         }
1080
1081         if (!priv->find_mark_next) {
1082                 priv->find_mark_next = gtk_text_buffer_create_mark (buffer, NULL,
1083                                                                     &iter_match_end,
1084                                                                     TRUE);
1085         } else {
1086                 gtk_text_buffer_move_mark (buffer,
1087                                            priv->find_mark_next,
1088                                            &iter_match_end);
1089         }
1090
1091         gtk_text_view_scroll_to_mark (GTK_TEXT_VIEW (view),
1092                                       priv->find_mark_previous,
1093                                       0.0,
1094                                       TRUE,
1095                                       0.5,
1096                                       0.5);
1097
1098         gtk_text_buffer_move_mark_by_name (buffer, "selection_bound", &iter_match_start);
1099         gtk_text_buffer_move_mark_by_name (buffer, "insert", &iter_match_end);
1100
1101         return TRUE;
1102 }
1103
1104 gboolean
1105 empathy_chat_view_find_next (EmpathyChatView *view,
1106                             const gchar    *search_criteria,
1107                             gboolean        new_search)
1108 {
1109         EmpathyChatViewPriv *priv;
1110         GtkTextBuffer      *buffer;
1111         GtkTextIter         iter_at_mark;
1112         GtkTextIter         iter_match_start;
1113         GtkTextIter         iter_match_end;
1114         gboolean            found;
1115         gboolean            from_start = FALSE;
1116
1117         g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), FALSE);
1118         g_return_val_if_fail (search_criteria != NULL, FALSE);
1119
1120         priv = GET_PRIV (view);
1121
1122         buffer = priv->buffer;
1123
1124         if (G_STR_EMPTY (search_criteria)) {
1125                 if (priv->find_mark_next) {
1126                         gtk_text_buffer_get_start_iter (buffer, &iter_at_mark);
1127
1128                         gtk_text_buffer_move_mark (buffer,
1129                                                    priv->find_mark_next,
1130                                                    &iter_at_mark);
1131                         gtk_text_view_scroll_to_mark (GTK_TEXT_VIEW (view),
1132                                                       priv->find_mark_next,
1133                                                       0.0,
1134                                                       TRUE,
1135                                                       0.0,
1136                                                       0.0);
1137                         gtk_text_buffer_select_range (buffer,
1138                                                       &iter_at_mark,
1139                                                       &iter_at_mark);
1140                 }
1141
1142                 return FALSE;
1143         }
1144
1145         if (new_search) {
1146                 from_start = TRUE;
1147         }
1148
1149         if (priv->find_mark_next) {
1150                 gtk_text_buffer_get_iter_at_mark (buffer,
1151                                                   &iter_at_mark,
1152                                                   priv->find_mark_next);
1153         } else {
1154                 gtk_text_buffer_get_start_iter (buffer, &iter_at_mark);
1155                 from_start = TRUE;
1156         }
1157
1158         priv->find_last_direction = TRUE;
1159
1160         found = empathy_text_iter_forward_search (&iter_at_mark,
1161                                                  search_criteria,
1162                                                  &iter_match_start,
1163                                                  &iter_match_end,
1164                                                  NULL);
1165
1166         if (!found) {
1167                 gboolean result = FALSE;
1168
1169                 if (from_start) {
1170                         return result;
1171                 }
1172
1173                 /* Here we wrap around. */
1174                 if (!new_search && !priv->find_wrapped) {
1175                         priv->find_wrapped = TRUE;
1176                         result = empathy_chat_view_find_next (view, 
1177                                                              search_criteria, 
1178                                                              FALSE);
1179                         priv->find_wrapped = FALSE;
1180                 }
1181
1182                 return result;
1183         }
1184
1185         /* Set new mark and show on screen */
1186         if (!priv->find_mark_next) {
1187                 priv->find_mark_next = gtk_text_buffer_create_mark (buffer, NULL,
1188                                                                &iter_match_end,
1189                                                                TRUE);
1190         } else {
1191                 gtk_text_buffer_move_mark (buffer,
1192                                            priv->find_mark_next,
1193                                            &iter_match_end);
1194         }
1195
1196         if (!priv->find_mark_previous) {
1197                 priv->find_mark_previous = gtk_text_buffer_create_mark (buffer, NULL,
1198                                                                         &iter_match_start,
1199                                                                         TRUE);
1200         } else {
1201                 gtk_text_buffer_move_mark (buffer,
1202                                            priv->find_mark_previous,
1203                                            &iter_match_start);
1204         }
1205
1206         gtk_text_view_scroll_to_mark (GTK_TEXT_VIEW (view),
1207                                       priv->find_mark_next,
1208                                       0.0,
1209                                       TRUE,
1210                                       0.5,
1211                                       0.5);
1212
1213         gtk_text_buffer_move_mark_by_name (buffer, "selection_bound", &iter_match_start);
1214         gtk_text_buffer_move_mark_by_name (buffer, "insert", &iter_match_end);
1215
1216         return TRUE;
1217 }
1218
1219
1220 void
1221 empathy_chat_view_find_abilities (EmpathyChatView *view,
1222                                  const gchar    *search_criteria,
1223                                  gboolean       *can_do_previous,
1224                                  gboolean       *can_do_next)
1225 {
1226         EmpathyChatViewPriv *priv;
1227         GtkTextBuffer      *buffer;
1228         GtkTextIter         iter_at_mark;
1229         GtkTextIter         iter_match_start;
1230         GtkTextIter         iter_match_end;
1231
1232         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
1233         g_return_if_fail (search_criteria != NULL);
1234         g_return_if_fail (can_do_previous != NULL && can_do_next != NULL);
1235
1236         priv = GET_PRIV (view);
1237
1238         buffer = priv->buffer;
1239
1240         if (can_do_previous) {
1241                 if (priv->find_mark_previous) {
1242                         gtk_text_buffer_get_iter_at_mark (buffer,
1243                                                           &iter_at_mark,
1244                                                           priv->find_mark_previous);
1245                 } else {
1246                         gtk_text_buffer_get_start_iter (buffer, &iter_at_mark);
1247                 }
1248                 
1249                 *can_do_previous = empathy_text_iter_backward_search (&iter_at_mark,
1250                                                                      search_criteria,
1251                                                                      &iter_match_start,
1252                                                                      &iter_match_end,
1253                                                                      NULL);
1254         }
1255
1256         if (can_do_next) {
1257                 if (priv->find_mark_next) {
1258                         gtk_text_buffer_get_iter_at_mark (buffer,
1259                                                           &iter_at_mark,
1260                                                           priv->find_mark_next);
1261                 } else {
1262                         gtk_text_buffer_get_start_iter (buffer, &iter_at_mark);
1263                 }
1264                 
1265                 *can_do_next = empathy_text_iter_forward_search (&iter_at_mark,
1266                                                                 search_criteria,
1267                                                                 &iter_match_start,
1268                                                                 &iter_match_end,
1269                                                                 NULL);
1270         }
1271 }
1272
1273 void
1274 empathy_chat_view_highlight (EmpathyChatView *view,
1275                              const gchar     *text)
1276 {
1277         GtkTextBuffer *buffer;
1278         GtkTextIter    iter;
1279         GtkTextIter    iter_start;
1280         GtkTextIter    iter_end;
1281         GtkTextIter    iter_match_start;
1282         GtkTextIter    iter_match_end;
1283         gboolean       found;
1284
1285         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
1286
1287         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
1288
1289         gtk_text_buffer_get_start_iter (buffer, &iter);
1290
1291         gtk_text_buffer_get_bounds (buffer, &iter_start, &iter_end);
1292         gtk_text_buffer_remove_tag_by_name (buffer, "highlight",
1293                                             &iter_start,
1294                                             &iter_end);
1295
1296         if (G_STR_EMPTY (text)) {
1297                 return;
1298         }
1299
1300         while (1) {
1301                 found = empathy_text_iter_forward_search (&iter,
1302                                                          text,
1303                                                          &iter_match_start,
1304                                                          &iter_match_end,
1305                                                          NULL);
1306
1307                 if (!found) {
1308                         break;
1309                 }
1310
1311                 gtk_text_buffer_apply_tag_by_name (buffer, "highlight",
1312                                                    &iter_match_start,
1313                                                    &iter_match_end);
1314
1315                 iter = iter_match_end;
1316                 gtk_text_iter_forward_char (&iter);
1317         }
1318 }
1319
1320 void
1321 empathy_chat_view_copy_clipboard (EmpathyChatView *view)
1322 {
1323         GtkTextBuffer *buffer;
1324         GtkClipboard  *clipboard;
1325
1326         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
1327
1328         buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
1329         clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD);
1330
1331         gtk_text_buffer_copy_clipboard (buffer, clipboard);
1332 }
1333
1334 EmpathyTheme *
1335 empathy_chat_view_get_theme (EmpathyChatView *view)
1336 {
1337         EmpathyChatViewPriv *priv;
1338
1339         g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), NULL);
1340
1341         priv = GET_PRIV (view);
1342
1343         return priv->theme;
1344 }
1345
1346 static void
1347 chat_view_theme_notify_cb (EmpathyTheme    *theme,
1348                            GParamSpec      *param,
1349                            EmpathyChatView *view)
1350 {
1351         empathy_theme_update_view (theme, view);
1352 }
1353
1354 void
1355 empathy_chat_view_set_theme (EmpathyChatView *view, EmpathyTheme *theme)
1356 {
1357         EmpathyChatViewPriv *priv;
1358
1359         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
1360         g_return_if_fail (EMPATHY_IS_THEME (theme));
1361
1362         priv = GET_PRIV (view);
1363
1364         if (priv->theme) {
1365                 g_signal_handlers_disconnect_by_func (priv->theme,
1366                                                       chat_view_theme_notify_cb,
1367                                                       view);
1368                 g_object_unref (priv->theme);
1369         }
1370
1371         priv->theme = g_object_ref (theme);
1372
1373         empathy_theme_update_view (theme, view);
1374         g_signal_connect (priv->theme, "notify",
1375                           G_CALLBACK (chat_view_theme_notify_cb),
1376                           view);
1377
1378         /* FIXME: Redraw all messages using the new theme */
1379 }
1380
1381 void
1382 empathy_chat_view_set_margin (EmpathyChatView *view,
1383                              gint            margin)
1384 {
1385         EmpathyChatViewPriv *priv;
1386
1387         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
1388
1389         priv = GET_PRIV (view);
1390
1391         g_object_set (view,
1392                       "left-margin", margin,
1393                       "right-margin", margin,
1394                       NULL);
1395 }
1396
1397 GtkWidget *
1398 empathy_chat_view_get_smiley_menu (GCallback    callback,
1399                                    gpointer     user_data)
1400 {
1401         EmpathySmileyManager *smiley_manager;
1402         GSList               *smileys, *l;
1403         GtkWidget            *menu;
1404         gint                  x = 0;
1405         gint                  y = 0;
1406
1407         g_return_val_if_fail (callback != NULL, NULL);
1408
1409         menu = gtk_menu_new ();
1410
1411         smiley_manager = empathy_smiley_manager_new ();
1412         smileys = empathy_smiley_manager_get_all (smiley_manager);
1413         for (l = smileys; l; l = l->next) {
1414                 EmpathySmiley *smiley;
1415                 GtkWidget     *item;
1416                 GtkWidget     *image;
1417
1418                 smiley = l->data;
1419                 image = gtk_image_new_from_pixbuf (smiley->pixbuf);
1420
1421                 item = gtk_image_menu_item_new_with_label ("");
1422                 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
1423
1424                 gtk_menu_attach (GTK_MENU (menu), item,
1425                                  x, x + 1, y, y + 1);
1426
1427                 gtk_widget_set_tooltip_text (item, smiley->str);
1428
1429                 g_object_set_data  (G_OBJECT (item), "smiley_text", smiley->str);
1430                 g_signal_connect (item, "activate", callback, user_data);
1431
1432                 if (x > 3) {
1433                         y++;
1434                         x = 0;
1435                 } else {
1436                         x++;
1437                 }
1438         }
1439         g_object_unref (smiley_manager);
1440
1441         gtk_widget_show_all (menu);
1442
1443         return menu;
1444 }
1445
1446 /* FIXME: Do we really need this? Better to do it internally only at setup time,
1447  * we will never change it on the fly.
1448  */
1449 void
1450 empathy_chat_view_set_is_group_chat (EmpathyChatView *view,
1451                                     gboolean        is_group_chat)
1452 {
1453         EmpathyChatViewPriv *priv;
1454         gboolean            theme_rooms = FALSE;
1455
1456         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
1457
1458         priv = GET_PRIV (view);
1459
1460         priv->is_group_chat = is_group_chat;
1461
1462         empathy_conf_get_bool (empathy_conf_get (),
1463                               EMPATHY_PREFS_CHAT_THEME_CHAT_ROOM,
1464                               &theme_rooms);
1465
1466         if (!theme_rooms && is_group_chat) {
1467                 empathy_theme_manager_apply (empathy_theme_manager_get (),
1468                                             view,
1469                                             NULL);
1470         } else {
1471                 empathy_theme_manager_apply_saved (empathy_theme_manager_get (),
1472                                                   view);
1473         }
1474 }
1475
1476 time_t
1477 empathy_chat_view_get_last_timestamp (EmpathyChatView *view)
1478 {
1479         EmpathyChatViewPriv *priv;
1480
1481         g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), 0);
1482
1483         priv = GET_PRIV (view);
1484
1485         return priv->last_timestamp;
1486 }
1487
1488 void
1489 empathy_chat_view_set_last_timestamp (EmpathyChatView *view,
1490                                      time_t          timestamp)
1491 {
1492         EmpathyChatViewPriv *priv;
1493
1494         g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
1495
1496         priv = GET_PRIV (view);
1497
1498         priv->last_timestamp = timestamp;
1499 }
1500
1501 EmpathyContact *
1502 empathy_chat_view_get_last_contact (EmpathyChatView *view)
1503 {
1504         EmpathyChatViewPriv *priv;
1505
1506         g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), NULL);
1507
1508         priv = GET_PRIV (view);
1509
1510         return priv->last_contact;
1511 }
1512