Mercurial > pidgin
annotate src/gtkimhtml.c @ 7264:deab8d8bbb4e
[gaim-migrate @ 7841]
it occured to me that this might happen
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Tue, 14 Oct 2003 17:12:17 +0000 |
| parents | 48cc5d5d5a6c |
| children | f946af3b0039 |
| rev | line source |
|---|---|
| 1428 | 1 /* |
| 2 * GtkIMHtml | |
| 3 * | |
| 4 * Copyright (C) 2000, Eric Warmenhoven <warmenhoven@yahoo.com> | |
| 5 * | |
| 6 * This program is free software; you can redistribute it and/or modify | |
| 7 * under the terms of the GNU General Public License as published by | |
| 8 * the Free Software Foundation; either version 2 of the License, or | |
| 9 * (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 | |
| 14 * GNU General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU General Public License | |
| 17 * along with this program; if not, write to the Free Software | |
| 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 19 * | |
| 20 */ | |
| 21 | |
|
2541
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
22 #ifdef HAVE_CONFIG_H |
|
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
23 #include <config.h> |
|
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
24 #endif |
| 1428 | 25 #include "gtkimhtml.h" |
| 26 #include <gtk/gtk.h> | |
| 4895 | 27 #include <glib/gerror.h> |
| 4046 | 28 #include <gdk/gdkkeysyms.h> |
| 1428 | 29 #include <string.h> |
| 30 #include <ctype.h> | |
| 31 #include <stdio.h> | |
| 4629 | 32 #include <stdlib.h> |
| 1428 | 33 #include <math.h> |
|
2541
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
34 #ifdef HAVE_LANGINFO_CODESET |
|
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
35 #include <langinfo.h> |
|
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
36 #include <locale.h> |
|
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
37 #endif |
| 1428 | 38 |
| 4417 | 39 #ifdef ENABLE_NLS |
| 40 # include <libintl.h> | |
| 41 # define _(x) gettext(x) | |
| 42 # ifdef gettext_noop | |
| 43 # define N_(String) gettext_noop (String) | |
| 44 # else | |
| 45 # define N_(String) (String) | |
| 46 # endif | |
| 47 #else | |
| 48 # define N_(String) (String) | |
| 49 # define _(x) (x) | |
| 50 #endif | |
| 51 | |
| 4735 | 52 #include <pango/pango-font.h> |
| 53 | |
| 5105 | 54 /* GTK+ < 2.2.2 hack, see ui.h for details. */ |
| 55 #ifndef GTK_WRAP_WORD_CHAR | |
| 56 #define GTK_WRAP_WORD_CHAR GTK_WRAP_WORD | |
| 57 #endif | |
| 58 | |
| 4735 | 59 #define TOOLTIP_TIMEOUT 500 |
| 60 | |
| 3922 | 61 /* POINT_SIZE converts from AIM font sizes to point sizes. It probably should be redone in such a |
| 62 * way that it base the sizes off the default font size rather than using arbitrary font sizes. */ | |
| 63 #define MAX_FONT_SIZE 7 | |
| 5367 | 64 #define POINT_SIZE(x) (options & GTK_IMHTML_USE_POINTSIZE ? x : _point_sizes [MIN ((x), MAX_FONT_SIZE) - 1]) |
| 3928 | 65 static gint _point_sizes [] = { 8, 10, 12, 14, 20, 30, 40 }; |
|
2349
60c716c32c40
[gaim-migrate @ 2362]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2348
diff
changeset
|
66 |
| 4032 | 67 static GtkSmileyTree* |
| 68 gtk_smiley_tree_new () | |
| 69 { | |
| 70 return g_new0 (GtkSmileyTree, 1); | |
| 71 } | |
| 72 | |
| 73 static void | |
| 74 gtk_smiley_tree_insert (GtkSmileyTree *tree, | |
| 4263 | 75 GtkIMHtmlSmiley *smiley) |
| 4032 | 76 { |
| 77 GtkSmileyTree *t = tree; | |
| 4263 | 78 const gchar *x = smiley->smile; |
| 4032 | 79 |
| 80 if (!strlen (x)) | |
| 81 return; | |
| 82 | |
| 83 while (*x) { | |
| 84 gchar *pos; | |
| 85 gint index; | |
| 86 | |
| 87 if (!t->values) | |
| 88 t->values = g_string_new (""); | |
| 89 | |
| 90 pos = strchr (t->values->str, *x); | |
| 91 if (!pos) { | |
| 92 t->values = g_string_append_c (t->values, *x); | |
| 93 index = t->values->len - 1; | |
| 94 t->children = g_realloc (t->children, t->values->len * sizeof (GtkSmileyTree *)); | |
| 95 t->children [index] = g_new0 (GtkSmileyTree, 1); | |
| 96 } else | |
|
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6162
diff
changeset
|
97 index = (int) pos - GPOINTER_TO_INT(t->values->str); |
| 4032 | 98 |
| 99 t = t->children [index]; | |
| 100 | |
| 101 x++; | |
| 102 } | |
| 103 | |
| 4263 | 104 t->image = smiley; |
| 4032 | 105 } |
| 4041 | 106 |
| 4263 | 107 |
| 4264 | 108 void gtk_smiley_tree_destroy (GtkSmileyTree *tree) |
| 4032 | 109 { |
| 110 GSList *list = g_slist_append (NULL, tree); | |
| 111 | |
| 112 while (list) { | |
| 113 GtkSmileyTree *t = list->data; | |
| 114 gint i; | |
| 115 list = g_slist_remove(list, t); | |
| 116 if (t->values) { | |
| 117 for (i = 0; i < t->values->len; i++) | |
| 118 list = g_slist_append (list, t->children [i]); | |
| 119 g_string_free (t->values, TRUE); | |
| 120 g_free (t->children); | |
| 121 } | |
| 122 g_free (t); | |
| 123 } | |
| 124 } | |
| 125 | |
| 5967 | 126 static gboolean gtk_size_allocate_cb(GtkIMHtml *widget, GtkAllocation *alloc, gpointer user_data) |
| 127 { | |
| 128 GdkRectangle rect; | |
| 129 | |
| 130 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(widget), &rect); | |
| 131 if(widget->old_rect.width != rect.width || widget->old_rect.height != rect.height){ | |
| 132 GList *iter = GTK_IMHTML(widget)->scalables; | |
| 133 | |
| 134 while(iter){ | |
| 135 GtkIMHtmlScalable *scale = GTK_IMHTML_SCALABLE(iter->data); | |
| 136 scale->scale(scale, rect.width, rect.height); | |
| 137 | |
| 138 iter = iter->next; | |
| 139 } | |
| 140 } | |
| 141 | |
| 142 widget->old_rect = rect; | |
| 143 return FALSE; | |
| 144 } | |
| 145 | |
| 146 static gint | |
| 147 gtk_imhtml_tip_paint (GtkIMHtml *imhtml) | |
| 148 { | |
| 149 PangoLayout *layout; | |
| 150 | |
| 151 g_return_val_if_fail(GTK_IS_IMHTML(imhtml), FALSE); | |
| 152 | |
| 153 layout = gtk_widget_create_pango_layout(imhtml->tip_window, imhtml->tip); | |
| 154 | |
| 155 gtk_paint_flat_box (imhtml->tip_window->style, imhtml->tip_window->window, | |
| 156 GTK_STATE_NORMAL, GTK_SHADOW_OUT, NULL, imhtml->tip_window, | |
| 157 "tooltip", 0, 0, -1, -1); | |
| 158 | |
| 159 gtk_paint_layout (imhtml->tip_window->style, imhtml->tip_window->window, GTK_STATE_NORMAL, | |
| 160 FALSE, NULL, imhtml->tip_window, NULL, 4, 4, layout); | |
| 161 | |
| 162 g_object_unref(layout); | |
| 163 return FALSE; | |
| 164 } | |
| 165 | |
| 166 static gint | |
| 167 gtk_imhtml_tip (gpointer data) | |
| 168 { | |
| 169 GtkIMHtml *imhtml = data; | |
| 170 PangoFontMetrics *font; | |
| 171 PangoLayout *layout; | |
| 172 | |
| 173 gint gap, x, y, h, w, scr_w, baseline_skip; | |
| 174 | |
| 175 g_return_val_if_fail(GTK_IS_IMHTML(imhtml), FALSE); | |
| 176 | |
| 177 if (!imhtml->tip || !GTK_WIDGET_DRAWABLE (GTK_WIDGET(imhtml))) { | |
| 178 imhtml->tip_timer = 0; | |
| 179 return FALSE; | |
| 180 } | |
| 181 | |
| 182 if (imhtml->tip_window){ | |
| 183 gtk_widget_destroy (imhtml->tip_window); | |
| 184 imhtml->tip_window = NULL; | |
| 185 } | |
| 186 | |
| 187 imhtml->tip_timer = 0; | |
| 188 imhtml->tip_window = gtk_window_new (GTK_WINDOW_POPUP); | |
| 189 gtk_widget_set_app_paintable (imhtml->tip_window, TRUE); | |
| 190 gtk_window_set_resizable (GTK_WINDOW (imhtml->tip_window), FALSE); | |
| 191 gtk_widget_set_name (imhtml->tip_window, "gtk-tooltips"); | |
| 192 g_signal_connect_swapped (G_OBJECT (imhtml->tip_window), "expose_event", | |
| 193 G_CALLBACK (gtk_imhtml_tip_paint), imhtml); | |
| 194 | |
| 195 gtk_widget_ensure_style (imhtml->tip_window); | |
| 196 layout = gtk_widget_create_pango_layout(imhtml->tip_window, imhtml->tip); | |
| 197 font = pango_font_get_metrics(pango_context_load_font(pango_layout_get_context(layout), | |
| 198 imhtml->tip_window->style->font_desc), | |
| 199 NULL); | |
| 200 | |
| 201 | |
| 202 pango_layout_get_pixel_size(layout, &scr_w, NULL); | |
| 203 gap = PANGO_PIXELS((pango_font_metrics_get_ascent(font) + | |
| 204 pango_font_metrics_get_descent(font))/ 4); | |
| 205 | |
| 206 if (gap < 2) | |
| 207 gap = 2; | |
| 208 baseline_skip = PANGO_PIXELS(pango_font_metrics_get_ascent(font) + | |
| 209 pango_font_metrics_get_descent(font)); | |
| 210 w = 8 + scr_w; | |
| 211 h = 8 + baseline_skip; | |
| 212 | |
| 213 gdk_window_get_pointer (NULL, &x, &y, NULL); | |
| 214 if (GTK_WIDGET_NO_WINDOW (GTK_WIDGET(imhtml))) | |
| 215 y += GTK_WIDGET(imhtml)->allocation.y; | |
| 216 | |
| 217 scr_w = gdk_screen_width(); | |
| 218 | |
| 219 x -= ((w >> 1) + 4); | |
| 220 | |
| 221 if ((x + w) > scr_w) | |
| 222 x -= (x + w) - scr_w; | |
| 223 else if (x < 0) | |
| 224 x = 0; | |
| 225 | |
| 226 y = y + PANGO_PIXELS(pango_font_metrics_get_ascent(font) + | |
| 227 pango_font_metrics_get_descent(font)); | |
| 228 | |
| 229 gtk_widget_set_size_request (imhtml->tip_window, w, h); | |
| 230 gtk_widget_show (imhtml->tip_window); | |
| 231 gtk_window_move (GTK_WINDOW(imhtml->tip_window), x, y); | |
| 232 | |
| 233 pango_font_metrics_unref(font); | |
| 234 g_object_unref(layout); | |
| 235 | |
| 236 return FALSE; | |
| 237 } | |
| 238 | |
| 239 gboolean gtk_motion_event_notify(GtkWidget *imhtml, GdkEventMotion *event, gpointer data) | |
| 240 { | |
| 241 GtkTextIter iter; | |
| 242 GdkWindow *win = event->window; | |
| 243 int x, y; | |
| 244 char *tip = NULL; | |
| 245 GSList *tags = NULL, *templist = NULL; | |
| 246 gdk_window_get_pointer(GTK_WIDGET(imhtml)->window, NULL, NULL, NULL); | |
| 247 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(imhtml), GTK_TEXT_WINDOW_WIDGET, | |
| 248 event->x, event->y, &x, &y); | |
| 249 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, x, y); | |
| 250 tags = gtk_text_iter_get_tags(&iter); | |
| 251 | |
| 252 templist = tags; | |
| 253 while (templist) { | |
| 254 GtkTextTag *tag = templist->data; | |
| 255 tip = g_object_get_data(G_OBJECT(tag), "link_url"); | |
| 256 if (tip) | |
| 257 break; | |
| 258 templist = templist->next; | |
| 259 } | |
| 260 | |
| 261 if (GTK_IMHTML(imhtml)->tip) { | |
| 262 if ((tip == GTK_IMHTML(imhtml)->tip)) { | |
| 263 return FALSE; | |
| 264 } | |
| 265 /* We've left the cell. Remove the timeout and create a new one below */ | |
| 266 if (GTK_IMHTML(imhtml)->tip_window) { | |
| 267 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
| 268 GTK_IMHTML(imhtml)->tip_window = NULL; | |
| 269 } | |
| 270 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->arrow_cursor); | |
| 271 if (GTK_IMHTML(imhtml)->tip_timer) | |
| 272 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
| 273 GTK_IMHTML(imhtml)->tip_timer = 0; | |
| 274 } | |
| 275 | |
| 276 if(tip){ | |
| 277 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->hand_cursor); | |
| 278 GTK_IMHTML(imhtml)->tip_timer = g_timeout_add (TOOLTIP_TIMEOUT, | |
| 279 gtk_imhtml_tip, imhtml); | |
| 280 } | |
| 281 | |
| 282 GTK_IMHTML(imhtml)->tip = tip; | |
| 283 g_slist_free(tags); | |
| 284 return FALSE; | |
| 285 } | |
| 286 | |
| 287 gboolean gtk_leave_event_notify(GtkWidget *imhtml, GdkEventCrossing *event, gpointer data) | |
| 288 { | |
| 289 /* when leaving the widget, clear any current & pending tooltips and restore the cursor */ | |
| 290 if (GTK_IMHTML(imhtml)->tip_window) { | |
| 291 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
| 292 GTK_IMHTML(imhtml)->tip_window = NULL; | |
| 293 } | |
| 294 if (GTK_IMHTML(imhtml)->tip_timer) { | |
| 295 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
| 296 GTK_IMHTML(imhtml)->tip_timer = 0; | |
| 297 } | |
| 298 gdk_window_set_cursor(event->window, GTK_IMHTML(imhtml)->arrow_cursor); | |
| 299 | |
| 300 /* propogate the event normally */ | |
| 301 return FALSE; | |
| 302 } | |
| 303 | |
| 6066 | 304 /* |
| 305 * XXX - This should be removed eventually. | |
| 306 * | |
| 307 * This function exists to work around a gross bug in GtkTextView. | |
| 308 * Basically, we short circuit ctrl+a and ctrl+end because they make | |
| 309 * el program go boom. | |
| 310 * | |
| 311 * It's supposed to be fixed in gtk2.2. You can view the bug report at | |
| 312 * http://bugzilla.gnome.org/show_bug.cgi?id=107939 | |
| 313 */ | |
| 314 gboolean gtk_key_pressed_cb(GtkWidget *imhtml, GdkEventKey *event, gpointer data) | |
| 315 { | |
| 316 if (event->state & GDK_CONTROL_MASK) | |
| 317 switch (event->keyval) { | |
| 318 case 'a': | |
| 319 return TRUE; | |
| 320 break; | |
| 321 | |
| 322 case GDK_Home: | |
| 323 return TRUE; | |
| 324 break; | |
| 325 | |
| 326 case GDK_End: | |
| 327 return TRUE; | |
| 328 break; | |
| 329 } | |
| 330 | |
| 331 return FALSE; | |
| 332 } | |
| 333 | |
| 5967 | 334 |
| 4263 | 335 |
| 4032 | 336 static GtkTextViewClass *parent_class = NULL; |
| 337 | |
| 3922 | 338 /* GtkIMHtml has one signal--URL_CLICKED */ |
| 1428 | 339 enum { |
| 340 URL_CLICKED, | |
| 341 LAST_SIGNAL | |
| 342 }; | |
| 343 static guint signals [LAST_SIGNAL] = { 0 }; | |
| 344 | |
| 4032 | 345 static void |
| 346 gtk_imhtml_finalize (GObject *object) | |
| 347 { | |
| 348 GtkIMHtml *imhtml = GTK_IMHTML(object); | |
| 4895 | 349 GList *scalables; |
| 350 | |
| 4138 | 351 g_hash_table_destroy(imhtml->smiley_data); |
| 4032 | 352 gtk_smiley_tree_destroy(imhtml->default_smilies); |
| 4138 | 353 gdk_cursor_unref(imhtml->hand_cursor); |
| 354 gdk_cursor_unref(imhtml->arrow_cursor); | |
| 4735 | 355 if(imhtml->tip_window){ |
| 356 gtk_widget_destroy(imhtml->tip_window); | |
| 357 } | |
| 358 if(imhtml->tip_timer) | |
| 359 gtk_timeout_remove(imhtml->tip_timer); | |
| 360 | |
| 4895 | 361 for(scalables = imhtml->scalables; scalables; scalables = scalables->next) { |
| 362 GtkIMHtmlScalable *scale = GTK_IMHTML_SCALABLE(scalables->data); | |
| 363 scale->free(scale); | |
| 364 } | |
| 365 | |
| 366 g_list_free(imhtml->scalables); | |
| 4032 | 367 G_OBJECT_CLASS(parent_class)->finalize (object); |
| 368 } | |
| 1428 | 369 |
| 3922 | 370 /* Boring GTK stuff */ |
| 371 static void gtk_imhtml_class_init (GtkIMHtmlClass *class) | |
| 1428 | 372 { |
| 3922 | 373 GtkObjectClass *object_class; |
| 4032 | 374 GObjectClass *gobject_class; |
| 3922 | 375 object_class = (GtkObjectClass*) class; |
| 4032 | 376 gobject_class = (GObjectClass*) class; |
| 377 parent_class = gtk_type_class(GTK_TYPE_TEXT_VIEW); | |
| 4417 | 378 signals[URL_CLICKED] = g_signal_new("url_clicked", |
| 379 G_TYPE_FROM_CLASS(gobject_class), | |
| 380 G_SIGNAL_RUN_FIRST, | |
| 381 G_STRUCT_OFFSET(GtkIMHtmlClass, url_clicked), | |
| 382 NULL, | |
| 383 0, | |
| 384 g_cclosure_marshal_VOID__POINTER, | |
| 385 G_TYPE_NONE, 1, | |
| 386 G_TYPE_POINTER); | |
| 4032 | 387 gobject_class->finalize = gtk_imhtml_finalize; |
| 1428 | 388 } |
| 389 | |
| 3922 | 390 static void gtk_imhtml_init (GtkIMHtml *imhtml) |
| 1428 | 391 { |
| 3922 | 392 GtkTextIter iter; |
| 393 imhtml->text_buffer = gtk_text_buffer_new(NULL); | |
| 394 gtk_text_buffer_get_end_iter (imhtml->text_buffer, &iter); | |
| 395 imhtml->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, FALSE); | |
| 396 gtk_text_view_set_buffer(GTK_TEXT_VIEW(imhtml), imhtml->text_buffer); | |
| 5105 | 397 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(imhtml), GTK_WRAP_WORD_CHAR); |
| 3922 | 398 gtk_text_view_set_editable(GTK_TEXT_VIEW(imhtml), FALSE); |
| 399 gtk_text_view_set_pixels_below_lines(GTK_TEXT_VIEW(imhtml), 5); | |
| 400 gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(imhtml), FALSE); | |
| 401 /*gtk_text_view_set_justification(GTK_TEXT_VIEW(imhtml), GTK_JUSTIFY_FILL);*/ | |
| 3465 | 402 |
| 3922 | 403 /* These tags will be used often and can be reused--we create them on init and then apply them by name |
| 404 * other tags (color, size, face, etc.) will have to be created and applied dynamically */ | |
| 405 gtk_text_buffer_create_tag(imhtml->text_buffer, "BOLD", "weight", PANGO_WEIGHT_BOLD, NULL); | |
| 406 gtk_text_buffer_create_tag(imhtml->text_buffer, "ITALICS", "style", PANGO_STYLE_ITALIC, NULL); | |
| 407 gtk_text_buffer_create_tag(imhtml->text_buffer, "UNDERLINE", "underline", PANGO_UNDERLINE_SINGLE, NULL); | |
| 408 gtk_text_buffer_create_tag(imhtml->text_buffer, "STRIKE", "strikethrough", TRUE, NULL); | |
| 409 gtk_text_buffer_create_tag(imhtml->text_buffer, "SUB", "rise", -5000, NULL); | |
| 410 gtk_text_buffer_create_tag(imhtml->text_buffer, "SUP", "rise", 5000, NULL); | |
| 411 gtk_text_buffer_create_tag(imhtml->text_buffer, "PRE", "family", "Monospace", NULL); | |
| 3465 | 412 |
| 3922 | 413 /* When hovering over a link, we show the hand cursor--elsewhere we show the plain ol' pointer cursor */ |
| 414 imhtml->hand_cursor = gdk_cursor_new (GDK_HAND2); | |
| 415 imhtml->arrow_cursor = gdk_cursor_new (GDK_LEFT_PTR); | |
| 2993 | 416 |
| 4253 | 417 imhtml->show_smileys = TRUE; |
| 6124 | 418 imhtml->show_comments = TRUE; |
| 4253 | 419 |
| 4892 | 420 imhtml->smiley_data = g_hash_table_new_full(g_str_hash, g_str_equal, |
| 4902 | 421 g_free, (GDestroyNotify)gtk_smiley_tree_destroy); |
| 4032 | 422 imhtml->default_smilies = gtk_smiley_tree_new(); |
| 4735 | 423 |
| 4944 | 424 g_signal_connect(G_OBJECT(imhtml), "size-allocate", G_CALLBACK(gtk_size_allocate_cb), NULL); |
| 4735 | 425 g_signal_connect(G_OBJECT(imhtml), "motion-notify-event", G_CALLBACK(gtk_motion_event_notify), NULL); |
| 4944 | 426 g_signal_connect(G_OBJECT(imhtml), "leave-notify-event", G_CALLBACK(gtk_leave_event_notify), NULL); |
| 6066 | 427 g_signal_connect(G_OBJECT(imhtml), "key_press_event", G_CALLBACK(gtk_key_pressed_cb), NULL); |
| 4944 | 428 gtk_widget_add_events(GTK_WIDGET(imhtml), GDK_LEAVE_NOTIFY_MASK); |
| 4735 | 429 |
| 430 imhtml->tip = NULL; | |
| 431 imhtml->tip_timer = 0; | |
| 432 imhtml->tip_window = NULL; | |
| 4895 | 433 |
| 434 imhtml->scalables = NULL; | |
| 2993 | 435 } |
| 436 | |
| 3922 | 437 GtkWidget *gtk_imhtml_new(void *a, void *b) |
| 1428 | 438 { |
| 4635 | 439 return GTK_WIDGET(g_object_new(gtk_imhtml_get_type(), NULL)); |
| 1428 | 440 } |
| 441 | |
| 4635 | 442 GType gtk_imhtml_get_type() |
| 1428 | 443 { |
| 4635 | 444 static GType imhtml_type = 0; |
| 1428 | 445 |
| 446 if (!imhtml_type) { | |
| 4635 | 447 static const GTypeInfo imhtml_info = { |
| 448 sizeof(GtkIMHtmlClass), | |
| 449 NULL, | |
| 450 NULL, | |
| 451 (GClassInitFunc) gtk_imhtml_class_init, | |
| 452 NULL, | |
| 453 NULL, | |
| 1428 | 454 sizeof (GtkIMHtml), |
| 4635 | 455 0, |
| 456 (GInstanceInitFunc) gtk_imhtml_init | |
| 1428 | 457 }; |
| 4635 | 458 |
| 459 imhtml_type = g_type_register_static(gtk_text_view_get_type(), | |
| 460 "GtkIMHtml", &imhtml_info, 0); | |
| 1428 | 461 } |
| 462 | |
| 463 return imhtml_type; | |
| 464 } | |
| 465 | |
| 4417 | 466 struct url_data { |
| 467 GObject *object; | |
| 468 gchar *url; | |
| 469 }; | |
| 470 | |
| 471 static void url_open(GtkWidget *w, struct url_data *data) { | |
| 472 if(!data) return; | |
| 473 | |
| 474 g_signal_emit(data->object, signals[URL_CLICKED], 0, data->url); | |
| 475 | |
| 476 g_object_unref(data->object); | |
| 477 g_free(data->url); | |
| 478 g_free(data); | |
| 479 } | |
| 5582 | 480 |
| 4417 | 481 static void url_copy(GtkWidget *w, gchar *url) { |
| 482 GtkClipboard *clipboard; | |
| 483 | |
|
5293
ead927e2543f
[gaim-migrate @ 5665]
Christian Hammond <chipx86@chipx86.com>
parents:
5282
diff
changeset
|
484 clipboard = gtk_clipboard_get(GDK_SELECTION_PRIMARY); |
| 4417 | 485 gtk_clipboard_set_text(clipboard, url, -1); |
| 5582 | 486 |
| 487 clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD); | |
| 488 gtk_clipboard_set_text(clipboard, url, -1); | |
| 4417 | 489 } |
| 490 | |
| 491 /* The callback for an event on a link tag. */ | |
| 5091 | 492 gboolean tag_event(GtkTextTag *tag, GObject *imhtml, GdkEvent *event, GtkTextIter *arg2, char *url) { |
| 4417 | 493 GdkEventButton *event_button = (GdkEventButton *) event; |
| 494 | |
| 3922 | 495 if (event->type == GDK_BUTTON_RELEASE) { |
| 4417 | 496 if (event_button->button == 1) { |
| 497 GtkTextIter start, end; | |
| 498 /* we shouldn't open a URL if the user has selected something: */ | |
| 499 gtk_text_buffer_get_selection_bounds( | |
| 500 gtk_text_iter_get_buffer(arg2), &start, &end); | |
| 501 if(gtk_text_iter_get_offset(&start) != | |
| 502 gtk_text_iter_get_offset(&end)) | |
| 503 return FALSE; | |
| 504 | |
| 505 /* A link was clicked--we emit the "url_clicked" signal | |
| 506 * with the URL as the argument */ | |
| 5091 | 507 g_signal_emit(imhtml, signals[URL_CLICKED], 0, url); |
| 4417 | 508 return FALSE; |
| 509 } else if(event_button->button == 3) { | |
| 4745 | 510 GtkWidget *img, *item, *menu; |
| 4417 | 511 struct url_data *tempdata = g_new(struct url_data, 1); |
| 5091 | 512 tempdata->object = g_object_ref(imhtml); |
| 4417 | 513 tempdata->url = g_strdup(url); |
| 4745 | 514 |
| 5091 | 515 /* Don't want the tooltip around if user right-clicked on link */ |
| 516 if (GTK_IMHTML(imhtml)->tip_window) { | |
| 517 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
| 518 GTK_IMHTML(imhtml)->tip_window = NULL; | |
| 519 } | |
| 520 if (GTK_IMHTML(imhtml)->tip_timer) { | |
| 521 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
| 522 GTK_IMHTML(imhtml)->tip_timer = 0; | |
| 523 } | |
| 524 gdk_window_set_cursor(event_button->window, GTK_IMHTML(imhtml)->arrow_cursor); | |
| 4417 | 525 menu = gtk_menu_new(); |
| 4745 | 526 |
| 4417 | 527 /* buttons and such */ |
| 528 | |
|
7140
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
529 if (!strncmp(url, "mailto:", 7)) |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
530 { |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
531 /* Copy E-Mail Address */ |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
532 img = gtk_image_new_from_stock(GTK_STOCK_COPY, |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
533 GTK_ICON_SIZE_MENU); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
534 item = gtk_image_menu_item_new_with_mnemonic( |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
535 _("_Copy E-Mail Address")); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
536 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
537 g_signal_connect(G_OBJECT(item), "activate", |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
538 G_CALLBACK(url_copy), url + 7); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
539 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
540 } |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
541 else |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
542 { |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
543 /* Copy Link Location */ |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
544 img = gtk_image_new_from_stock(GTK_STOCK_COPY, |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
545 GTK_ICON_SIZE_MENU); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
546 item = gtk_image_menu_item_new_with_mnemonic( |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
547 _("_Copy Link Location")); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
548 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
549 g_signal_connect(G_OBJECT(item), "activate", |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
550 G_CALLBACK(url_copy), url); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
551 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
552 |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
553 /* Open Link in Browser */ |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
554 img = gtk_image_new_from_stock(GTK_STOCK_JUMP_TO, |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
555 GTK_ICON_SIZE_MENU); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
556 item = gtk_image_menu_item_new_with_mnemonic( |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
557 _("_Open Link in Browser")); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
558 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
559 g_signal_connect(G_OBJECT(item), "activate", |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
560 G_CALLBACK(url_open), tempdata); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
561 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
562 } |
|
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
563 |
| 4756 | 564 |
| 4417 | 565 gtk_widget_show_all(menu); |
| 4756 | 566 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, |
| 567 event_button->button, event_button->time); | |
| 4745 | 568 |
| 4417 | 569 return TRUE; |
| 570 } | |
| 1428 | 571 } |
| 4417 | 572 if(event->type == GDK_BUTTON_PRESS && event_button->button == 3) |
| 573 return TRUE; /* Clicking the right mouse button on a link shouldn't | |
| 574 be caught by the regular GtkTextView menu */ | |
| 575 else | |
| 576 return FALSE; /* Let clicks go through if we didn't catch anything */ | |
| 1428 | 577 } |
| 578 | |
| 4298 | 579 /* this isn't used yet |
| 4032 | 580 static void |
| 4263 | 581 gtk_smiley_tree_remove (GtkSmileyTree *tree, |
| 582 GtkIMHtmlSmiley *smiley) | |
| 4032 | 583 { |
| 584 GtkSmileyTree *t = tree; | |
| 4263 | 585 const gchar *x = smiley->smile; |
| 4032 | 586 gint len = 0; |
| 587 | |
| 588 while (*x) { | |
| 589 gchar *pos; | |
| 590 | |
| 591 if (!t->values) | |
| 592 return; | |
| 593 | |
| 594 pos = strchr (t->values->str, *x); | |
| 595 if (pos) | |
| 596 t = t->children [(int) pos - (int) t->values->str]; | |
| 597 else | |
| 598 return; | |
| 599 | |
| 600 x++; len++; | |
| 601 } | |
| 602 | |
|
4141
ccec4fde84f4
[gaim-migrate @ 4359]
Christian Hammond <chipx86@chipx86.com>
parents:
4140
diff
changeset
|
603 if (t->image) { |
| 4032 | 604 t->image = NULL; |
|
4141
ccec4fde84f4
[gaim-migrate @ 4359]
Christian Hammond <chipx86@chipx86.com>
parents:
4140
diff
changeset
|
605 } |
| 4032 | 606 } |
| 4298 | 607 */ |
| 608 | |
| 4032 | 609 |
| 610 static gint | |
| 611 gtk_smiley_tree_lookup (GtkSmileyTree *tree, | |
| 612 const gchar *text) | |
| 613 { | |
| 614 GtkSmileyTree *t = tree; | |
| 615 const gchar *x = text; | |
| 616 gint len = 0; | |
| 617 | |
| 618 while (*x) { | |
| 619 gchar *pos; | |
| 620 | |
| 621 if (!t->values) | |
| 622 break; | |
| 623 | |
| 624 pos = strchr (t->values->str, *x); | |
| 625 if (pos) | |
|
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6162
diff
changeset
|
626 t = t->children [(int) pos - GPOINTER_TO_INT(t->values->str)]; |
| 4032 | 627 else |
| 628 break; | |
| 629 | |
| 630 x++; len++; | |
| 631 } | |
| 632 | |
| 633 if (t->image) | |
| 634 return len; | |
| 635 | |
| 636 return 0; | |
| 637 } | |
| 638 | |
| 639 void | |
| 4263 | 640 gtk_imhtml_associate_smiley (GtkIMHtml *imhtml, |
| 641 gchar *sml, | |
| 642 GtkIMHtmlSmiley *smiley) | |
| 4032 | 643 { |
| 644 GtkSmileyTree *tree; | |
| 645 g_return_if_fail (imhtml != NULL); | |
| 646 g_return_if_fail (GTK_IS_IMHTML (imhtml)); | |
| 4263 | 647 |
| 4032 | 648 if (sml == NULL) |
| 649 tree = imhtml->default_smilies; | |
| 650 else if ((tree = g_hash_table_lookup(imhtml->smiley_data, sml))) { | |
| 651 } else { | |
| 652 tree = gtk_smiley_tree_new(); | |
| 4892 | 653 g_hash_table_insert(imhtml->smiley_data, g_strdup(sml), tree); |
| 4032 | 654 } |
| 655 | |
| 4263 | 656 gtk_smiley_tree_insert (tree, smiley); |
| 4032 | 657 } |
| 658 | |
| 659 static gboolean | |
| 660 gtk_imhtml_is_smiley (GtkIMHtml *imhtml, | |
| 661 GSList *fonts, | |
| 662 const gchar *text, | |
| 663 gint *len) | |
| 664 { | |
| 665 GtkSmileyTree *tree; | |
| 5967 | 666 GtkIMHtmlFontDetail *font; |
| 4032 | 667 char *sml = NULL; |
| 668 | |
| 669 if (fonts) { | |
| 670 font = fonts->data; | |
| 671 sml = font->sml; | |
| 672 } | |
| 673 | |
| 674 if (sml == NULL) | |
| 675 tree = imhtml->default_smilies; | |
| 676 else { | |
| 677 tree = g_hash_table_lookup(imhtml->smiley_data, sml); | |
| 678 } | |
| 679 if (tree == NULL) | |
| 680 return FALSE; | |
| 681 | |
| 682 *len = gtk_smiley_tree_lookup (tree, text); | |
| 683 return (*len > 0); | |
| 684 } | |
| 685 | |
|
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
686 GdkPixbufAnimation * |
| 4032 | 687 gtk_smiley_tree_image (GtkIMHtml *imhtml, |
| 688 const gchar *sml, | |
| 689 const gchar *text) | |
| 690 { | |
| 691 GtkSmileyTree *t; | |
| 692 const gchar *x = text; | |
| 693 if (sml == NULL) | |
| 694 t = imhtml->default_smilies; | |
| 695 else | |
| 696 t = g_hash_table_lookup(imhtml->smiley_data, sml); | |
| 697 | |
| 698 | |
| 699 if (t == NULL) | |
| 700 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
| 701 | |
| 702 while (*x) { | |
| 703 gchar *pos; | |
| 704 | |
| 705 if (!t->values) { | |
| 706 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
| 707 } | |
| 708 | |
| 709 pos = strchr (t->values->str, *x); | |
| 710 if (pos) { | |
|
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6162
diff
changeset
|
711 t = t->children [(int) pos - GPOINTER_TO_INT(t->values->str)]; |
| 4032 | 712 } else { |
| 713 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
| 714 } | |
| 715 x++; | |
| 716 } | |
| 717 | |
| 4263 | 718 if (!t->image->icon) |
|
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
719 t->image->icon = gdk_pixbuf_animation_new_from_file(t->image->file, NULL); |
| 4263 | 720 |
| 721 return t->image->icon; | |
| 4032 | 722 } |
| 4793 | 723 #define VALID_TAG(x) if (!g_ascii_strncasecmp (string, x ">", strlen (x ">"))) { \ |
| 3922 | 724 *tag = g_strndup (string, strlen (x)); \ |
| 725 *len = strlen (x) + 1; \ | |
| 726 return TRUE; \ | |
| 727 } \ | |
| 728 (*type)++ | |
| 1428 | 729 |
| 4793 | 730 #define VALID_OPT_TAG(x) if (!g_ascii_strncasecmp (string, x " ", strlen (x " "))) { \ |
| 3922 | 731 const gchar *c = string + strlen (x " "); \ |
| 732 gchar e = '"'; \ | |
| 733 gboolean quote = FALSE; \ | |
| 734 while (*c) { \ | |
| 735 if (*c == '"' || *c == '\'') { \ | |
| 736 if (quote && (*c == e)) \ | |
| 737 quote = !quote; \ | |
| 738 else if (!quote) { \ | |
| 739 quote = !quote; \ | |
| 740 e = *c; \ | |
| 741 } \ | |
| 742 } else if (!quote && (*c == '>')) \ | |
| 743 break; \ | |
| 744 c++; \ | |
| 745 } \ | |
| 746 if (*c) { \ | |
| 747 *tag = g_strndup (string, c - string); \ | |
| 748 *len = c - string + 1; \ | |
| 749 return TRUE; \ | |
| 750 } \ | |
| 751 } \ | |
| 752 (*type)++ | |
| 1428 | 753 |
| 754 | |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
755 static gboolean |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
756 gtk_imhtml_is_amp_escape (const gchar *string, |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
757 gchar *replace, |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
758 gint *length) |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
759 { |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
760 g_return_val_if_fail (string != NULL, FALSE); |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
761 g_return_val_if_fail (replace != NULL, FALSE); |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
762 g_return_val_if_fail (length != NULL, FALSE); |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
763 |
| 4793 | 764 if (!g_ascii_strncasecmp (string, "&", 5)) { |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
765 *replace = '&'; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
766 *length = 5; |
| 4793 | 767 } else if (!g_ascii_strncasecmp (string, "<", 4)) { |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
768 *replace = '<'; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
769 *length = 4; |
| 4793 | 770 } else if (!g_ascii_strncasecmp (string, ">", 4)) { |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
771 *replace = '>'; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
772 *length = 4; |
| 4793 | 773 } else if (!g_ascii_strncasecmp (string, " ", 6)) { |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
774 *replace = ' '; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
775 *length = 6; |
| 4793 | 776 } else if (!g_ascii_strncasecmp (string, "©", 6)) { |
|
3717
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3705
diff
changeset
|
777 *replace = '©'; /* was: '©' */ |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
778 *length = 6; |
| 4793 | 779 } else if (!g_ascii_strncasecmp (string, """, 6)) { |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
780 *replace = '\"'; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
781 *length = 6; |
| 4793 | 782 } else if (!g_ascii_strncasecmp (string, "®", 5)) { |
|
3717
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3705
diff
changeset
|
783 *replace = '®'; /* was: '®' */ |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
784 *length = 5; |
| 5093 | 785 } else if (!g_ascii_strncasecmp (string, "'", 6)) { |
| 786 *replace = '\''; | |
| 787 *length = 6; | |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
788 } else if (*(string + 1) == '#') { |
|
2022
199ba82faacb
[gaim-migrate @ 2032]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2002
diff
changeset
|
789 guint pound = 0; |
| 3004 | 790 if ((sscanf (string, "&#%u;", £) == 1) && pound != 0) { |
|
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
791 if (*(string + 3 + (gint)log10 (pound)) != ';') |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
792 return FALSE; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
793 *replace = (gchar)pound; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
794 *length = 2; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
795 while (isdigit ((gint) string [*length])) (*length)++; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
796 if (string [*length] == ';') (*length)++; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
797 } else { |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
798 return FALSE; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
799 } |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
800 } else { |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
801 return FALSE; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
802 } |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
803 |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
804 return TRUE; |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
805 } |
|
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
806 |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
807 static gboolean |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
808 gtk_imhtml_is_tag (const gchar *string, |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
809 gchar **tag, |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
810 gint *len, |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
811 gint *type) |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
812 { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
813 *type = 1; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
814 |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
815 if (!strchr (string, '>')) |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
816 return FALSE; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
817 |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
818 VALID_TAG ("B"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
819 VALID_TAG ("BOLD"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
820 VALID_TAG ("/B"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
821 VALID_TAG ("/BOLD"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
822 VALID_TAG ("I"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
823 VALID_TAG ("ITALIC"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
824 VALID_TAG ("/I"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
825 VALID_TAG ("/ITALIC"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
826 VALID_TAG ("U"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
827 VALID_TAG ("UNDERLINE"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
828 VALID_TAG ("/U"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
829 VALID_TAG ("/UNDERLINE"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
830 VALID_TAG ("S"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
831 VALID_TAG ("STRIKE"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
832 VALID_TAG ("/S"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
833 VALID_TAG ("/STRIKE"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
834 VALID_TAG ("SUB"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
835 VALID_TAG ("/SUB"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
836 VALID_TAG ("SUP"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
837 VALID_TAG ("/SUP"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
838 VALID_TAG ("PRE"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
839 VALID_TAG ("/PRE"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
840 VALID_TAG ("TITLE"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
841 VALID_TAG ("/TITLE"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
842 VALID_TAG ("BR"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
843 VALID_TAG ("HR"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
844 VALID_TAG ("/FONT"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
845 VALID_TAG ("/A"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
846 VALID_TAG ("P"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
847 VALID_TAG ("/P"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
848 VALID_TAG ("H3"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
849 VALID_TAG ("/H3"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
850 VALID_TAG ("HTML"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
851 VALID_TAG ("/HTML"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
852 VALID_TAG ("BODY"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
853 VALID_TAG ("/BODY"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
854 VALID_TAG ("FONT"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
855 VALID_TAG ("HEAD"); |
| 2993 | 856 VALID_TAG ("/HEAD"); |
| 857 VALID_TAG ("BINARY"); | |
| 858 VALID_TAG ("/BINARY"); | |
| 5093 | 859 |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
860 VALID_OPT_TAG ("HR"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
861 VALID_OPT_TAG ("FONT"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
862 VALID_OPT_TAG ("BODY"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
863 VALID_OPT_TAG ("A"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
864 VALID_OPT_TAG ("IMG"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
865 VALID_OPT_TAG ("P"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
866 VALID_OPT_TAG ("H3"); |
| 5093 | 867 VALID_OPT_TAG ("HTML"); |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
868 |
| 5101 | 869 VALID_TAG ("CITE"); |
| 870 VALID_TAG ("/CITE"); | |
| 871 VALID_TAG ("EM"); | |
| 872 VALID_TAG ("/EM"); | |
| 873 VALID_TAG ("STRONG"); | |
| 874 VALID_TAG ("/STRONG"); | |
| 875 | |
| 5104 | 876 VALID_OPT_TAG ("SPAN"); |
| 877 VALID_TAG ("/SPAN"); | |
| 5174 | 878 VALID_TAG ("BR/"); /* hack until gtkimhtml handles things better */ |
| 6982 | 879 VALID_TAG ("IMG"); |
| 5104 | 880 |
| 4793 | 881 if (!g_ascii_strncasecmp(string, "!--", strlen ("!--"))) { |
|
2954
f6c4f2187c08
[gaim-migrate @ 2967]
Christian Hammond <chipx86@chipx86.com>
parents:
2898
diff
changeset
|
882 gchar *e = strstr (string + strlen("!--"), "-->"); |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
883 if (e) { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
884 *len = e - string + strlen ("-->"); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
885 *tag = g_strndup (string + strlen ("!--"), *len - strlen ("!---->")); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
886 return TRUE; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
887 } |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
888 } |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
889 |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
890 return FALSE; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
891 } |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
892 |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
893 static gchar* |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
894 gtk_imhtml_get_html_opt (gchar *tag, |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
895 const gchar *opt) |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
896 { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
897 gchar *t = tag; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
898 gchar *e, *a; |
| 5177 | 899 gchar *val; |
| 900 gint len; | |
| 901 gchar c; | |
| 902 GString *ret; | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
903 |
| 4793 | 904 while (g_ascii_strncasecmp (t, opt, strlen (opt))) { |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
905 gboolean quote = FALSE; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
906 if (*t == '\0') break; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
907 while (*t && !((*t == ' ') && !quote)) { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
908 if (*t == '\"') |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
909 quote = ! quote; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
910 t++; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
911 } |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
912 while (*t && (*t == ' ')) t++; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
913 } |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
914 |
| 4793 | 915 if (!g_ascii_strncasecmp (t, opt, strlen (opt))) { |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
916 t += strlen (opt); |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
917 } else { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
918 return NULL; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
919 } |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
920 |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
921 if ((*t == '\"') || (*t == '\'')) { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
922 e = a = ++t; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
923 while (*e && (*e != *(t - 1))) e++; |
| 2993 | 924 if (*e == '\0') { |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
925 return NULL; |
| 5177 | 926 } else |
| 927 val = g_strndup(a, e - a); | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
928 } else { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
929 e = a = t; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
930 while (*e && !isspace ((gint) *e)) e++; |
| 5177 | 931 val = g_strndup(a, e - a); |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
932 } |
| 5177 | 933 |
| 934 ret = g_string_new(""); | |
| 935 e = val; | |
| 936 while(*e) { | |
| 937 if(gtk_imhtml_is_amp_escape(e, &c, &len)) { | |
| 938 ret = g_string_append_c(ret, c); | |
| 939 e += len; | |
| 940 } else { | |
| 941 ret = g_string_append_c(ret, *e); | |
| 942 e++; | |
| 943 } | |
| 944 } | |
| 945 | |
| 946 g_free(val); | |
| 947 val = ret->str; | |
| 948 g_string_free(ret, FALSE); | |
| 949 return val; | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
950 } |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
951 |
| 3922 | 952 |
| 953 | |
| 954 #define NEW_TEXT_BIT 0 | |
| 4343 | 955 #define NEW_COMMENT_BIT 2 |
| 4895 | 956 #define NEW_SCALABLE_BIT 1 |
| 3922 | 957 #define NEW_BIT(x) ws [wpos] = '\0'; \ |
| 958 mark2 = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); \ | |
| 959 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, -1); \ | |
| 4895 | 960 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); \ |
| 3922 | 961 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &siter, mark2); \ |
| 962 gtk_text_buffer_delete_mark(imhtml->text_buffer, mark2); \ | |
| 963 if (bold) \ | |
| 964 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "BOLD", &siter, &iter); \ | |
| 4895 | 965 if (italics) \ |
| 3922 | 966 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "ITALICS", &siter, &iter); \ |
| 967 if (underline) \ | |
| 968 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "UNDERLINE", &siter, &iter); \ | |
| 969 if (strike) \ | |
| 970 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "STRIKE", &siter, &iter); \ | |
| 971 if (sub) \ | |
| 972 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "SUB", &siter, &iter); \ | |
| 973 if (sup) \ | |
| 974 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "SUP", &siter, &iter); \ | |
| 975 if (pre) \ | |
| 976 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "PRE", &siter, &iter); \ | |
| 977 if (bg) { \ | |
| 978 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "background", bg, NULL); \ | |
| 979 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
| 980 } \ | |
| 981 if (fonts) { \ | |
| 5967 | 982 GtkIMHtmlFontDetail *fd = fonts->data; \ |
| 3922 | 983 if (fd->fore) { \ |
| 984 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "foreground", fd->fore, NULL); \ | |
| 985 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
| 986 } \ | |
| 987 if (fd->back) { \ | |
| 988 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "background", fd->back, NULL); \ | |
| 989 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
| 990 } \ | |
| 991 if (fd->face) { \ | |
| 6648 | 992 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "family", fd->face, NULL); \ |
| 3922 | 993 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ |
| 994 } \ | |
| 995 if (fd->size) { \ | |
| 5118 | 996 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "size-points", (double)POINT_SIZE(fd->size), NULL); \ |
| 3922 | 997 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ |
| 998 } \ | |
| 999 } \ | |
| 1000 if (url) { \ | |
| 1001 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "foreground", "blue", "underline", PANGO_UNDERLINE_SINGLE, NULL); \ | |
| 5012 | 1002 g_signal_connect(G_OBJECT(texttag), "event", G_CALLBACK(tag_event), g_strdup(url)); \ |
| 3922 | 1003 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ |
| 4735 | 1004 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, NULL); \ |
| 1005 g_object_set_data(G_OBJECT(texttag), "link_url", g_strdup(url)); \ | |
| 1006 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
| 3922 | 1007 } \ |
| 1008 wpos = 0; \ | |
| 1009 ws[0] = 0; \ | |
| 1010 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); \ | |
| 4895 | 1011 if (x == NEW_SCALABLE_BIT) { \ |
| 1012 GdkRectangle rect; \ | |
| 1013 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); \ | |
| 1014 scalable->add_to(scalable, imhtml, &iter); \ | |
| 1015 scalable->scale(scalable, rect.width, rect.height); \ | |
| 1016 imhtml->scalables = g_list_append(imhtml->scalables, scalable); \ | |
| 1017 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); \ | |
| 4343 | 1018 } \ |
| 3922 | 1019 |
| 4895 | 1020 |
| 1021 | |
| 6982 | 1022 GString* gtk_imhtml_append_text_with_images (GtkIMHtml *imhtml, |
| 1023 const gchar *text, | |
| 1024 GtkIMHtmlOptions options, | |
| 1025 GSList *images) | |
| 1428 | 1026 { |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1027 gint pos = 0; |
| 3922 | 1028 GString *str = NULL; |
| 1029 GtkTextIter iter, siter; | |
| 1030 GtkTextMark *mark, *mark2; | |
| 1031 GtkTextTag *texttag; | |
| 1032 gchar *ws; | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1033 gchar *tag; |
| 3922 | 1034 gchar *url = NULL; |
| 1035 gchar *bg = NULL; | |
| 6982 | 1036 gint len; |
| 4032 | 1037 gint tlen, smilelen, wpos=0; |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1038 gint type; |
| 3922 | 1039 const gchar *c; |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1040 gchar amp; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1041 |
| 1428 | 1042 guint bold = 0, |
| 1043 italics = 0, | |
| 1044 underline = 0, | |
| 1045 strike = 0, | |
| 1046 sub = 0, | |
| 1047 sup = 0, | |
|
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1048 title = 0, |
| 3922 | 1049 pre = 0; |
| 1428 | 1050 |
| 3922 | 1051 GSList *fonts = NULL; |
| 1428 | 1052 |
| 4612 | 1053 GdkRectangle rect; |
| 1054 int y, height; | |
| 1055 | |
| 4895 | 1056 GtkIMHtmlScalable *scalable = NULL; |
| 1057 | |
| 1428 | 1058 g_return_val_if_fail (imhtml != NULL, NULL); |
| 1059 g_return_val_if_fail (GTK_IS_IMHTML (imhtml), NULL); | |
| 1060 g_return_val_if_fail (text != NULL, NULL); | |
| 6982 | 1061 |
| 3922 | 1062 c = text; |
| 6982 | 1063 len = strlen(text); |
| 3922 | 1064 ws = g_malloc(len + 1); |
| 1065 ws[0] = 0; | |
| 1428 | 1066 |
| 1067 if (options & GTK_IMHTML_RETURN_LOG) | |
| 3922 | 1068 str = g_string_new(""); |
| 1428 | 1069 |
| 3922 | 1070 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); |
| 1071 mark = gtk_text_buffer_create_mark (imhtml->text_buffer, NULL, &iter, /* right grav */ FALSE); | |
| 4612 | 1072 |
| 1073 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); | |
| 1074 gtk_text_view_get_line_yrange(GTK_TEXT_VIEW(imhtml), &iter, &y, &height); | |
| 1075 | |
| 1076 if(((y + height) - (rect.y + rect.height)) > height | |
| 1077 && gtk_text_buffer_get_char_count(imhtml->text_buffer)){ | |
| 1078 options |= GTK_IMHTML_NO_SCROLL; | |
| 1079 } | |
| 1080 | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1081 while (pos < len) { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1082 if (*c == '<' && gtk_imhtml_is_tag (c + 1, &tag, &tlen, &type)) { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1083 c++; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1084 pos++; |
| 3922 | 1085 switch (type) |
| 1086 { | |
| 1087 case 1: /* B */ | |
| 1088 case 2: /* BOLD */ | |
| 5101 | 1089 case 54: /* STRONG */ |
| 3922 | 1090 NEW_BIT (NEW_TEXT_BIT); |
| 1091 bold++; | |
| 1092 break; | |
| 1093 case 3: /* /B */ | |
| 1094 case 4: /* /BOLD */ | |
| 5101 | 1095 case 55: /* /STRONG */ |
| 3922 | 1096 NEW_BIT (NEW_TEXT_BIT); |
| 1097 if (bold) | |
| 1098 bold--; | |
| 1099 break; | |
| 1100 case 5: /* I */ | |
| 1101 case 6: /* ITALIC */ | |
| 5101 | 1102 case 52: /* EM */ |
| 3922 | 1103 NEW_BIT (NEW_TEXT_BIT); |
| 1104 italics++; | |
| 1105 break; | |
| 1106 case 7: /* /I */ | |
| 1107 case 8: /* /ITALIC */ | |
| 5101 | 1108 case 53: /* /EM */ |
| 3922 | 1109 NEW_BIT (NEW_TEXT_BIT); |
| 1110 if (italics) | |
| 1111 italics--; | |
| 1112 break; | |
| 1113 case 9: /* U */ | |
| 1114 case 10: /* UNDERLINE */ | |
| 1115 NEW_BIT (NEW_TEXT_BIT); | |
| 1116 underline++; | |
| 1117 break; | |
| 1118 case 11: /* /U */ | |
| 1119 case 12: /* /UNDERLINE */ | |
| 1120 NEW_BIT (NEW_TEXT_BIT); | |
| 1121 if (underline) | |
| 1122 underline--; | |
| 1123 break; | |
| 1124 case 13: /* S */ | |
| 1125 case 14: /* STRIKE */ | |
| 1126 NEW_BIT (NEW_TEXT_BIT); | |
| 1127 strike++; | |
| 1128 break; | |
| 1129 case 15: /* /S */ | |
| 1130 case 16: /* /STRIKE */ | |
| 1131 NEW_BIT (NEW_TEXT_BIT); | |
| 1132 if (strike) | |
| 1133 strike--; | |
| 1134 break; | |
| 1135 case 17: /* SUB */ | |
| 1136 NEW_BIT (NEW_TEXT_BIT); | |
| 1137 sub++; | |
| 1138 break; | |
| 1139 case 18: /* /SUB */ | |
| 1140 NEW_BIT (NEW_TEXT_BIT); | |
| 1141 if (sub) | |
| 1142 sub--; | |
| 1143 break; | |
| 1144 case 19: /* SUP */ | |
| 1145 NEW_BIT (NEW_TEXT_BIT); | |
| 1146 sup++; | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1147 break; |
| 3922 | 1148 case 20: /* /SUP */ |
| 1149 NEW_BIT (NEW_TEXT_BIT); | |
| 1150 if (sup) | |
| 1151 sup--; | |
| 1152 break; | |
| 1153 case 21: /* PRE */ | |
| 1154 NEW_BIT (NEW_TEXT_BIT); | |
| 1155 pre++; | |
| 1156 break; | |
| 1157 case 22: /* /PRE */ | |
| 1158 NEW_BIT (NEW_TEXT_BIT); | |
| 1159 if (pre) | |
| 1160 pre--; | |
| 1161 break; | |
| 1162 case 23: /* TITLE */ | |
| 1163 NEW_BIT (NEW_TEXT_BIT); | |
| 1164 title++; | |
| 1165 break; | |
| 1166 case 24: /* /TITLE */ | |
| 1167 if (title) { | |
| 1168 if (options & GTK_IMHTML_NO_TITLE) { | |
| 1169 wpos = 0; | |
| 1170 ws [wpos] = '\0'; | |
| 1171 } | |
| 1172 title--; | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1173 } |
| 3922 | 1174 break; |
| 1175 case 25: /* BR */ | |
| 5174 | 1176 case 58: /* BR/ */ |
| 3922 | 1177 ws[wpos] = '\n'; |
| 1178 wpos++; | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1179 NEW_BIT (NEW_TEXT_BIT); |
| 6982 | 1180 break; |
| 3922 | 1181 case 26: /* HR */ |
| 1182 case 42: /* HR (opt) */ | |
| 1183 ws[wpos++] = '\n'; | |
| 5967 | 1184 scalable = gtk_imhtml_hr_new(); |
| 4895 | 1185 NEW_BIT(NEW_SCALABLE_BIT); |
| 4343 | 1186 ws[wpos++] = '\n'; |
| 3922 | 1187 break; |
| 1188 case 27: /* /FONT */ | |
| 1189 if (fonts) { | |
| 5967 | 1190 GtkIMHtmlFontDetail *font = fonts->data; |
| 3922 | 1191 NEW_BIT (NEW_TEXT_BIT); |
| 1192 fonts = g_slist_remove (fonts, font); | |
| 1193 if (font->face) | |
| 1194 g_free (font->face); | |
| 1195 if (font->fore) | |
| 1196 g_free (font->fore); | |
| 1197 if (font->back) | |
| 1198 g_free (font->back); | |
| 4032 | 1199 if (font->sml) |
| 1200 g_free (font->sml); | |
| 3922 | 1201 g_free (font); |
| 1202 } | |
| 1203 break; | |
| 1204 case 28: /* /A */ | |
| 1205 if (url) { | |
| 1206 NEW_BIT(NEW_TEXT_BIT); | |
| 1207 g_free(url); | |
| 1208 url = NULL; | |
| 2993 | 1209 break; |
| 1210 } | |
| 3922 | 1211 case 29: /* P */ |
| 1212 case 30: /* /P */ | |
| 1213 case 31: /* H3 */ | |
| 1214 case 32: /* /H3 */ | |
| 1215 case 33: /* HTML */ | |
| 1216 case 34: /* /HTML */ | |
| 1217 case 35: /* BODY */ | |
| 1218 case 36: /* /BODY */ | |
| 1219 case 37: /* FONT */ | |
| 1220 case 38: /* HEAD */ | |
| 1221 case 39: /* /HEAD */ | |
| 6982 | 1222 case 40: /* BINARY */ |
| 1223 case 41: /* /BINARY */ | |
| 3922 | 1224 break; |
| 1225 case 43: /* FONT (opt) */ | |
| 1226 { | |
| 4032 | 1227 gchar *color, *back, *face, *size, *sml; |
| 5967 | 1228 GtkIMHtmlFontDetail *font, *oldfont = NULL; |
| 3922 | 1229 color = gtk_imhtml_get_html_opt (tag, "COLOR="); |
| 1230 back = gtk_imhtml_get_html_opt (tag, "BACK="); | |
| 1231 face = gtk_imhtml_get_html_opt (tag, "FACE="); | |
| 1232 size = gtk_imhtml_get_html_opt (tag, "SIZE="); | |
| 4032 | 1233 sml = gtk_imhtml_get_html_opt (tag, "SML="); |
| 1234 if (!(color || back || face || size || sml)) | |
| 3922 | 1235 break; |
| 1236 | |
| 1237 NEW_BIT (NEW_TEXT_BIT); | |
| 1238 | |
| 5967 | 1239 font = g_new0 (GtkIMHtmlFontDetail, 1); |
| 3922 | 1240 if (fonts) |
| 1241 oldfont = fonts->data; | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1242 |
| 3922 | 1243 if (color && !(options & GTK_IMHTML_NO_COLOURS)) |
| 1244 font->fore = color; | |
| 1245 else if (oldfont && oldfont->fore) | |
| 1246 font->fore = g_strdup(oldfont->fore); | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1247 |
| 3922 | 1248 if (back && !(options & GTK_IMHTML_NO_COLOURS)) |
| 1249 font->back = back; | |
| 1250 else if (oldfont && oldfont->back) | |
| 1251 font->back = g_strdup(oldfont->back); | |
| 1252 | |
| 1253 if (face && !(options & GTK_IMHTML_NO_FONTS)) | |
| 1254 font->face = face; | |
| 1255 else if (oldfont && oldfont->face) | |
| 1256 font->face = g_strdup(oldfont->face); | |
| 4629 | 1257 if (font->face && (atoi(font->face) > 100)) { |
| 1258 g_free(font->face); | |
| 1259 font->face = g_strdup("100"); | |
| 1260 } | |
| 4032 | 1261 |
| 1262 if (sml) | |
| 1263 font->sml = sml; | |
| 1264 else if (oldfont && oldfont->sml) | |
| 1265 font->sml = g_strdup(oldfont->sml); | |
| 1266 | |
| 3922 | 1267 if (size && !(options & GTK_IMHTML_NO_SIZES)) { |
| 1268 if (*size == '+') { | |
| 1269 sscanf (size + 1, "%hd", &font->size); | |
| 1270 font->size += 3; | |
| 1271 } else if (*size == '-') { | |
| 1272 sscanf (size + 1, "%hd", &font->size); | |
| 1273 font->size = MAX (0, 3 - font->size); | |
| 1274 } else if (isdigit (*size)) { | |
| 1275 sscanf (size, "%hd", &font->size); | |
| 1276 } | |
| 6042 | 1277 if (font->size > 100) |
| 1278 font->size = 100; | |
| 3922 | 1279 } else if (oldfont) |
| 1280 font->size = oldfont->size; | |
| 1281 g_free(size); | |
| 1282 fonts = g_slist_prepend (fonts, font); | |
| 1283 } | |
| 1284 break; | |
| 1285 case 44: /* BODY (opt) */ | |
| 1286 if (!(options & GTK_IMHTML_NO_COLOURS)) { | |
| 1287 char *bgcolor = gtk_imhtml_get_html_opt (tag, "BGCOLOR="); | |
| 1288 if (bgcolor) { | |
| 1289 NEW_BIT(NEW_TEXT_BIT); | |
| 1290 if (bg) | |
| 1291 g_free(bg); | |
| 1292 bg = bgcolor; | |
|
2885
f72efa29c109
[gaim-migrate @ 2898]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2871
diff
changeset
|
1293 } |
| 1428 | 1294 } |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1295 break; |
| 3922 | 1296 case 45: /* A (opt) */ |
| 1297 { | |
| 1298 gchar *href = gtk_imhtml_get_html_opt (tag, "HREF="); | |
| 1299 if (href) { | |
| 1300 NEW_BIT (NEW_TEXT_BIT); | |
| 1301 if (url) | |
| 1302 g_free (url); | |
| 1303 url = href; | |
| 1304 } | |
| 2993 | 1305 } |
| 3922 | 1306 break; |
| 4895 | 1307 case 46: /* IMG (opt) */ |
| 6982 | 1308 case 59: /* IMG */ |
| 4895 | 1309 { |
| 6982 | 1310 GdkPixbuf *img = NULL; |
| 1311 const gchar *filename = NULL; | |
| 4895 | 1312 |
| 6982 | 1313 if (images && images->data) { |
| 1314 img = images->data; | |
| 1315 images = images->next; | |
| 1316 filename = g_object_get_data(G_OBJECT(img), "filename"); | |
| 1317 g_object_ref(G_OBJECT(img)); | |
| 1318 } else { | |
| 1319 img = gtk_widget_render_icon(GTK_WIDGET(imhtml), | |
| 1320 GTK_STOCK_MISSING_IMAGE, GTK_ICON_SIZE_BUTTON, | |
| 1321 "gtkimhtml-missing-image"); | |
| 1322 } | |
| 4895 | 1323 |
| 6982 | 1324 scalable = gtk_imhtml_image_new(img, filename); |
| 1325 NEW_BIT(NEW_SCALABLE_BIT); | |
| 1326 g_object_unref(G_OBJECT(img)); | |
| 4895 | 1327 } |
| 3922 | 1328 case 47: /* P (opt) */ |
| 1329 case 48: /* H3 (opt) */ | |
| 5093 | 1330 case 49: /* HTML (opt) */ |
| 5101 | 1331 case 50: /* CITE */ |
| 1332 case 51: /* /CITE */ | |
| 5104 | 1333 case 56: /* SPAN */ |
| 1334 case 57: /* /SPAN */ | |
| 2993 | 1335 break; |
| 6982 | 1336 case 60: /* comment */ |
| 3922 | 1337 NEW_BIT (NEW_TEXT_BIT); |
| 6124 | 1338 if (imhtml->show_comments) |
| 1339 wpos = g_snprintf (ws, len, "%s", tag); | |
| 3922 | 1340 NEW_BIT (NEW_COMMENT_BIT); |
| 1341 break; | |
| 1342 default: | |
| 6882 | 1343 break; |
| 2993 | 1344 } |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1345 c += tlen; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1346 pos += tlen; |
| 4138 | 1347 if(tag) |
| 1348 g_free(tag); /* This was allocated back in VALID_TAG() */ | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1349 } else if (*c == '&' && gtk_imhtml_is_amp_escape (c, &, &tlen)) { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1350 ws [wpos++] = amp; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1351 c += tlen; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1352 pos += tlen; |
| 1428 | 1353 } else if (*c == '\n') { |
| 1354 if (!(options & GTK_IMHTML_NO_NEWLINE)) { | |
| 3922 | 1355 ws[wpos] = '\n'; |
| 1356 wpos++; | |
| 1428 | 1357 NEW_BIT (NEW_TEXT_BIT); |
| 1358 } | |
| 1359 c++; | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1360 pos++; |
| 4253 | 1361 } else if (imhtml->show_smileys && (gtk_imhtml_is_smiley (imhtml, fonts, c, &smilelen) || gtk_imhtml_is_smiley(imhtml, NULL, c, &smilelen))) { |
|
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
1362 GtkTextChildAnchor *anchor; |
| 6882 | 1363 GtkWidget *icon = NULL; |
| 1364 GdkPixbufAnimation *annipixbuf = NULL; | |
| 1365 GdkPixbuf *pixbuf = NULL; | |
| 5967 | 1366 GtkIMHtmlFontDetail *fd; |
| 4032 | 1367 gchar *sml = NULL; |
| 1368 if (fonts) { | |
| 1369 fd = fonts->data; | |
| 1370 sml = fd->sml; | |
| 1371 } | |
| 1372 NEW_BIT (NEW_TEXT_BIT); | |
| 1373 wpos = g_snprintf (ws, smilelen + 1, "%s", c); | |
|
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
1374 anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, &iter); |
| 6882 | 1375 annipixbuf = gtk_smiley_tree_image(imhtml, sml, ws); |
| 1376 if(annipixbuf) { | |
| 1377 if(gdk_pixbuf_animation_is_static_image(annipixbuf)) { | |
| 1378 pixbuf = gdk_pixbuf_animation_get_static_image(annipixbuf); | |
| 1379 if(pixbuf) | |
| 1380 icon = gtk_image_new_from_pixbuf(pixbuf); | |
| 1381 } else { | |
| 1382 icon = gtk_image_new_from_animation(annipixbuf); | |
| 1383 } | |
| 1384 } | |
| 1385 | |
| 1386 if (icon) { | |
|
6839
bdc4e73f354d
[gaim-migrate @ 7384]
Christian Hammond <chipx86@chipx86.com>
parents:
6814
diff
changeset
|
1387 gtk_widget_show(icon); |
|
bdc4e73f354d
[gaim-migrate @ 7384]
Christian Hammond <chipx86@chipx86.com>
parents:
6814
diff
changeset
|
1388 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), icon, anchor); |
|
bdc4e73f354d
[gaim-migrate @ 7384]
Christian Hammond <chipx86@chipx86.com>
parents:
6814
diff
changeset
|
1389 } |
|
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
1390 |
| 4032 | 1391 c += smilelen; |
| 1392 pos += smilelen; | |
| 1393 wpos = 0; | |
| 1394 ws[0] = 0; | |
| 1395 } else if (*c) { | |
| 1428 | 1396 ws [wpos++] = *c++; |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1397 pos++; |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1398 } else { |
|
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1399 break; |
| 1428 | 1400 } |
| 1401 } | |
| 3922 | 1402 |
| 1403 NEW_BIT(NEW_TEXT_BIT); | |
| 1428 | 1404 if (url) { |
| 1405 g_free (url); | |
| 3922 | 1406 if (str) |
| 1407 str = g_string_append (str, "</A>"); | |
| 1428 | 1408 } |
| 3922 | 1409 |
| 4032 | 1410 while (fonts) { |
| 5967 | 1411 GtkIMHtmlFontDetail *font = fonts->data; |
| 4032 | 1412 fonts = g_slist_remove (fonts, font); |
| 1413 if (font->face) | |
| 1414 g_free (font->face); | |
| 1415 if (font->fore) | |
| 1416 g_free (font->fore); | |
| 1417 if (font->back) | |
| 1418 g_free (font->back); | |
| 1419 if (font->sml) | |
| 1420 g_free (font->sml); | |
| 1421 g_free (font); | |
| 1422 if (str) | |
| 1423 str = g_string_append (str, "</FONT>"); | |
| 1424 } | |
| 1425 | |
| 3922 | 1426 if (str) { |
| 1428 | 1427 while (bold) { |
| 3922 | 1428 str = g_string_append (str, "</B>"); |
| 1428 | 1429 bold--; |
| 1430 } | |
| 1431 while (italics) { | |
| 3922 | 1432 str = g_string_append (str, "</I>"); |
| 1428 | 1433 italics--; |
| 1434 } | |
| 1435 while (underline) { | |
| 3922 | 1436 str = g_string_append (str, "</U>"); |
| 1428 | 1437 underline--; |
| 1438 } | |
| 1439 while (strike) { | |
| 3922 | 1440 str = g_string_append (str, "</S>"); |
| 1428 | 1441 strike--; |
| 1442 } | |
| 1443 while (sub) { | |
| 3922 | 1444 str = g_string_append (str, "</SUB>"); |
| 1428 | 1445 sub--; |
| 1446 } | |
| 1447 while (sup) { | |
| 3922 | 1448 str = g_string_append (str, "</SUP>"); |
| 1428 | 1449 sup--; |
| 1450 } | |
| 1451 while (title) { | |
| 3922 | 1452 str = g_string_append (str, "</TITLE>"); |
| 1428 | 1453 title--; |
| 1454 } | |
|
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1455 while (pre) { |
| 3922 | 1456 str = g_string_append (str, "</PRE>"); |
|
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1457 pre--; |
|
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1458 } |
| 1428 | 1459 } |
| 4032 | 1460 g_free (ws); |
| 4630 | 1461 if(bg) |
| 1462 g_free(bg); | |
| 4032 | 1463 if (!(options & GTK_IMHTML_NO_SCROLL)) |
| 1464 gtk_text_view_scroll_to_mark (GTK_TEXT_VIEW (imhtml), mark, | |
| 1465 0, TRUE, 0.0, 1.0); | |
| 3922 | 1466 gtk_text_buffer_delete_mark (imhtml->text_buffer, mark); |
| 1467 return str; | |
| 1468 } | |
| 1469 | |
| 4892 | 1470 void gtk_imhtml_remove_smileys(GtkIMHtml *imhtml) |
| 1471 { | |
| 4288 | 1472 g_hash_table_destroy(imhtml->smiley_data); |
| 1473 gtk_smiley_tree_destroy(imhtml->default_smilies); | |
| 4892 | 1474 imhtml->smiley_data = g_hash_table_new_full(g_str_hash, g_str_equal, |
| 4902 | 1475 g_free, (GDestroyNotify)gtk_smiley_tree_destroy); |
| 4288 | 1476 imhtml->default_smilies = gtk_smiley_tree_new(); |
| 1477 } | |
| 3922 | 1478 void gtk_imhtml_show_smileys (GtkIMHtml *imhtml, |
| 4253 | 1479 gboolean show) |
| 1480 { | |
| 1481 imhtml->show_smileys = show; | |
| 1482 } | |
| 3922 | 1483 |
| 1484 void gtk_imhtml_show_comments (GtkIMHtml *imhtml, | |
| 4253 | 1485 gboolean show) |
| 1486 { | |
| 6124 | 1487 imhtml->show_comments = show; |
| 4253 | 1488 } |
|
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1489 |
|
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1490 void |
|
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1491 gtk_imhtml_clear (GtkIMHtml *imhtml) |
|
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1492 { |
| 3922 | 1493 GtkTextIter start, end; |
| 2993 | 1494 |
| 3922 | 1495 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); |
| 1496 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
| 1497 gtk_text_buffer_delete(imhtml->text_buffer, &start, &end); | |
|
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1498 } |
|
2363
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
1499 |
| 4046 | 1500 void gtk_imhtml_page_up (GtkIMHtml *imhtml) |
| 1501 { | |
| 5282 | 1502 GdkRectangle rect; |
| 1503 GtkTextIter iter; | |
| 4046 | 1504 |
| 5282 | 1505 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); |
| 1506 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, rect.x, | |
| 1507 rect.y - rect.height); | |
| 1508 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &iter, 0, TRUE, 0, 0); | |
| 1509 | |
| 4046 | 1510 } |
| 5282 | 1511 void gtk_imhtml_page_down (GtkIMHtml *imhtml) |
| 1512 { | |
| 1513 GdkRectangle rect; | |
| 1514 GtkTextIter iter; | |
| 1515 | |
| 1516 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); | |
| 1517 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, rect.x, | |
| 1518 rect.y + rect.height); | |
| 1519 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &iter, 0, TRUE, 0, 0); | |
| 1520 } | |
| 4735 | 1521 |
| 5967 | 1522 /* GtkIMHtmlScalable, gtk_imhtml_image, gtk_imhtml_hr */ |
| 6982 | 1523 GtkIMHtmlScalable *gtk_imhtml_image_new(GdkPixbuf *img, const gchar *filename) |
| 4735 | 1524 { |
| 5967 | 1525 GtkIMHtmlImage *im_image = g_malloc(sizeof(GtkIMHtmlImage)); |
| 5012 | 1526 GtkImage *image = GTK_IMAGE(gtk_image_new_from_pixbuf(img)); |
| 4895 | 1527 |
| 5967 | 1528 GTK_IMHTML_SCALABLE(im_image)->scale = gtk_imhtml_image_scale; |
| 1529 GTK_IMHTML_SCALABLE(im_image)->add_to = gtk_imhtml_image_add_to; | |
| 1530 GTK_IMHTML_SCALABLE(im_image)->free = gtk_imhtml_image_free; | |
| 5046 | 1531 |
| 1532 im_image->pixbuf = img; | |
| 5012 | 1533 im_image->image = image; |
| 4895 | 1534 im_image->width = gdk_pixbuf_get_width(img); |
| 1535 im_image->height = gdk_pixbuf_get_height(img); | |
| 1536 im_image->mark = NULL; | |
| 6982 | 1537 im_image->filename = filename ? g_strdup(filename) : NULL; |
| 4895 | 1538 |
| 5046 | 1539 g_object_ref(img); |
| 4895 | 1540 return GTK_IMHTML_SCALABLE(im_image); |
| 1541 } | |
| 1542 | |
| 5967 | 1543 void gtk_imhtml_image_scale(GtkIMHtmlScalable *scale, int width, int height) |
| 4895 | 1544 { |
| 5967 | 1545 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; |
| 4895 | 1546 |
| 1547 if(image->width > width || image->height > height){ | |
| 1548 GdkPixbuf *new_image = NULL; | |
| 1549 float factor; | |
| 1550 int new_width = image->width, new_height = image->height; | |
| 1551 | |
| 1552 if(image->width > width){ | |
| 1553 factor = (float)(width)/image->width; | |
| 1554 new_width = width; | |
| 1555 new_height = image->height * factor; | |
| 1556 } | |
| 1557 if(new_height > height){ | |
| 1558 factor = (float)(height)/new_height; | |
| 1559 new_height = height; | |
| 1560 new_width = new_width * factor; | |
| 1561 } | |
| 1562 | |
| 5046 | 1563 new_image = gdk_pixbuf_scale_simple(image->pixbuf, new_width, new_height, GDK_INTERP_BILINEAR); |
| 5012 | 1564 gtk_image_set_from_pixbuf(image->image, new_image); |
| 4895 | 1565 g_object_unref(G_OBJECT(new_image)); |
| 1566 } | |
| 1567 } | |
| 1568 | |
| 5012 | 1569 static void write_img_to_file(GtkWidget *w, GtkFileSelection *sel) |
| 1570 { | |
| 1571 const gchar *filename = gtk_file_selection_get_filename(sel); | |
| 5967 | 1572 gchar *dirname; |
| 1573 GtkIMHtmlImage *image = g_object_get_data(G_OBJECT(sel), "GtkIMHtmlImage"); | |
| 5012 | 1574 gchar *type = NULL; |
| 5019 | 1575 GError *error = NULL; |
| 5015 | 1576 #if GTK_CHECK_VERSION(2,2,0) |
| 5012 | 1577 GSList *formats = gdk_pixbuf_get_formats(); |
| 6162 | 1578 #else |
| 1579 char *basename = g_path_get_basename(filename); | |
| 1580 char *ext = strrchr(basename, '.'); | |
| 5959 | 1581 #endif |
| 5012 | 1582 |
| 5967 | 1583 if (g_file_test(filename, G_FILE_TEST_IS_DIR)) { |
| 1584 /* append a / if needed */ | |
| 1585 if (filename[strlen(filename) - 1] != '/') { | |
| 1586 dirname = g_strconcat(filename, "/", NULL); | |
| 1587 } else { | |
| 1588 dirname = g_strdup(filename); | |
| 1589 } | |
| 1590 gtk_file_selection_set_filename(sel, dirname); | |
| 1591 g_free(dirname); | |
| 5959 | 1592 return; |
| 5967 | 1593 } |
| 5959 | 1594 |
| 1595 #if GTK_CHECK_VERSION(2,2,0) | |
| 5012 | 1596 while(formats){ |
| 1597 GdkPixbufFormat *format = formats->data; | |
| 1598 gchar **extensions = gdk_pixbuf_format_get_extensions(format); | |
| 1599 gpointer p = extensions; | |
| 1600 | |
| 1601 while(gdk_pixbuf_format_is_writable(format) && extensions && extensions[0]){ | |
| 1602 gchar *fmt_ext = extensions[0]; | |
| 1603 const gchar* file_ext = filename + strlen(filename) - strlen(fmt_ext); | |
| 1604 | |
| 1605 if(!strcmp(fmt_ext, file_ext)){ | |
| 1606 type = gdk_pixbuf_format_get_name(format); | |
| 1607 break; | |
| 1608 } | |
| 1609 | |
| 1610 extensions++; | |
| 1611 } | |
| 1612 | |
| 1613 g_strfreev(p); | |
| 1614 | |
| 1615 if(type) | |
| 1616 break; | |
| 1617 | |
| 1618 formats = formats->next; | |
| 1619 } | |
| 1620 | |
| 5020 | 1621 g_slist_free(formats); |
| 1622 #else | |
| 1623 /* this is really ugly code, but I think it will work */ | |
| 1624 if(ext) { | |
| 1625 ext++; | |
| 1626 if(!g_ascii_strcasecmp(ext, "jpeg") || !g_ascii_strcasecmp(ext, "jpg")) | |
| 1627 type = g_strdup("jpeg"); | |
| 1628 else if(!g_ascii_strcasecmp(ext, "png")) | |
| 1629 type = g_strdup("png"); | |
| 1630 } | |
| 1631 | |
| 1632 g_free(basename); | |
| 1633 #endif | |
| 1634 | |
| 5012 | 1635 /* If I can't find a valid type, I will just tell the user about it and then assume |
| 1636 it's a png */ | |
| 1637 if(!type){ | |
| 1638 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
| 5967 | 1639 _("Unable to guess the image type based on the file extension supplied. Defaulting to PNG.")); |
| 5012 | 1640 type = g_strdup("png"); |
| 1641 } | |
| 1642 | |
| 5046 | 1643 gdk_pixbuf_save(image->pixbuf, filename, type, &error, NULL); |
| 5012 | 1644 |
| 1645 if(error){ | |
| 1646 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
| 1647 _("Error saving image: %s"), error->message); | |
| 1648 g_error_free(error); | |
| 1649 } | |
| 1650 | |
| 1651 g_free(type); | |
| 1652 } | |
| 1653 | |
| 5967 | 1654 static void gtk_imhtml_image_save(GtkWidget *w, GtkIMHtmlImage *image) |
| 5012 | 1655 { |
| 5967 | 1656 GtkWidget *sel = gtk_file_selection_new(_("Save Image")); |
| 5012 | 1657 |
| 6982 | 1658 if (image->filename) |
| 1659 gtk_file_selection_set_filename(GTK_FILE_SELECTION(sel), image->filename); | |
| 5967 | 1660 g_object_set_data(G_OBJECT(sel), "GtkIMHtmlImage", image); |
| 5012 | 1661 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", |
| 1662 G_CALLBACK(write_img_to_file), sel); | |
| 1663 | |
| 1664 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", | |
| 1665 G_CALLBACK(gtk_widget_destroy), sel); | |
| 1666 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->cancel_button), "clicked", | |
| 1667 G_CALLBACK(gtk_widget_destroy), sel); | |
| 1668 | |
| 1669 gtk_widget_show(sel); | |
| 1670 } | |
| 1671 | |
| 5967 | 1672 static gboolean gtk_imhtml_image_clicked(GtkWidget *w, GdkEvent *event, GtkIMHtmlImage *image) |
| 5012 | 1673 { |
| 1674 GdkEventButton *event_button = (GdkEventButton *) event; | |
| 1675 | |
| 1676 if (event->type == GDK_BUTTON_RELEASE) { | |
| 1677 if(event_button->button == 3) { | |
| 1678 GtkWidget *img, *item, *menu; | |
| 1679 gchar *text = g_strdup_printf(_("_Save Image...")); | |
| 1680 menu = gtk_menu_new(); | |
| 1681 | |
| 1682 /* buttons and such */ | |
| 1683 img = gtk_image_new_from_stock(GTK_STOCK_SAVE, GTK_ICON_SIZE_MENU); | |
| 1684 item = gtk_image_menu_item_new_with_mnemonic(text); | |
| 1685 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); | |
| 5967 | 1686 g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(gtk_imhtml_image_save), image); |
| 5012 | 1687 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
| 1688 | |
| 1689 gtk_widget_show_all(menu); | |
| 1690 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, | |
| 1691 event_button->button, event_button->time); | |
| 1692 | |
| 1693 g_free(text); | |
| 1694 return TRUE; | |
| 1695 } | |
| 1696 } | |
| 1697 if(event->type == GDK_BUTTON_PRESS && event_button->button == 3) | |
| 1698 return TRUE; /* Clicking the right mouse button on a link shouldn't | |
| 1699 be caught by the regular GtkTextView menu */ | |
| 1700 else | |
| 1701 return FALSE; /* Let clicks go through if we didn't catch anything */ | |
| 1702 | |
| 1703 } | |
| 5967 | 1704 void gtk_imhtml_image_free(GtkIMHtmlScalable *scale) |
| 1705 { | |
| 1706 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; | |
| 1707 | |
| 1708 g_object_unref(image->pixbuf); | |
| 6982 | 1709 if (image->filename) |
| 1710 g_free(image->filename); | |
| 5967 | 1711 g_free(scale); |
| 1712 } | |
| 1713 | |
| 1714 void gtk_imhtml_image_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
| 1715 { | |
| 1716 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; | |
| 1717 GtkWidget *box = gtk_event_box_new(); | |
| 1718 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
| 1719 | |
| 1720 gtk_container_add(GTK_CONTAINER(box), GTK_WIDGET(image->image)); | |
| 1721 | |
| 1722 gtk_widget_show(GTK_WIDGET(image->image)); | |
| 1723 gtk_widget_show(box); | |
| 1724 | |
| 1725 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), box, anchor); | |
| 1726 g_signal_connect(G_OBJECT(box), "event", G_CALLBACK(gtk_imhtml_image_clicked), image); | |
| 1727 } | |
| 1728 | |
| 1729 GtkIMHtmlScalable *gtk_imhtml_hr_new() | |
| 1730 { | |
| 1731 GtkIMHtmlHr *hr = g_malloc(sizeof(GtkIMHtmlHr)); | |
| 1732 | |
| 1733 GTK_IMHTML_SCALABLE(hr)->scale = gtk_imhtml_hr_scale; | |
| 1734 GTK_IMHTML_SCALABLE(hr)->add_to = gtk_imhtml_hr_add_to; | |
| 1735 GTK_IMHTML_SCALABLE(hr)->free = gtk_imhtml_hr_free; | |
| 1736 | |
| 1737 hr->sep = gtk_hseparator_new(); | |
| 1738 gtk_widget_set_size_request(hr->sep, 5000, 2); | |
| 1739 gtk_widget_show(hr->sep); | |
| 1740 | |
| 1741 return GTK_IMHTML_SCALABLE(hr); | |
| 1742 } | |
| 1743 | |
| 1744 void gtk_imhtml_hr_scale(GtkIMHtmlScalable *scale, int width, int height) | |
| 1745 { | |
| 1746 gtk_widget_set_size_request(((GtkIMHtmlHr *)scale)->sep, width, 2); | |
| 1747 } | |
| 1748 | |
| 1749 void gtk_imhtml_hr_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
| 1750 { | |
| 1751 GtkIMHtmlHr *hr = (GtkIMHtmlHr *)scale; | |
| 1752 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
| 1753 | |
| 1754 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), hr->sep, anchor); | |
| 1755 } | |
| 1756 | |
| 1757 void gtk_imhtml_hr_free(GtkIMHtmlScalable *scale) | |
| 1758 { | |
| 1759 g_free(scale); | |
| 1760 } |
