Mercurial > pidgin.yaz
annotate src/gtkimhtml.c @ 7285:a50eea7628cb
[gaim-migrate @ 7866]
-Renamed some old functions to aim_buddylist_bleh to fit in with
some of the other stuff.
-Removed AIM_SESS_FLAGS_bleh and replaced sess->flags with sess->nonblocking
-Made the oscar.c libfaim printf handler use a dynamic buffer instead
of static
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 16 Oct 2003 22:21:55 +0000 |
parents | 0f7dd6715a90 |
children | 3a41c3f80228 |
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, |
7280 | 757 gchar **replace, |
2856
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 { |
7281 | 760 static char buf[6]; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
761 g_return_val_if_fail (string != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
762 g_return_val_if_fail (replace != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
763 g_return_val_if_fail (length != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
764 |
4793 | 765 if (!g_ascii_strncasecmp (string, "&", 5)) { |
7280 | 766 *replace = "&"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
767 *length = 5; |
4793 | 768 } else if (!g_ascii_strncasecmp (string, "<", 4)) { |
7280 | 769 *replace = "<"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
770 *length = 4; |
4793 | 771 } else if (!g_ascii_strncasecmp (string, ">", 4)) { |
7280 | 772 *replace = ">"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
773 *length = 4; |
4793 | 774 } else if (!g_ascii_strncasecmp (string, " ", 6)) { |
7280 | 775 *replace = " "; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
776 *length = 6; |
4793 | 777 } else if (!g_ascii_strncasecmp (string, "©", 6)) { |
7280 | 778 *replace = "©"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
779 *length = 6; |
4793 | 780 } else if (!g_ascii_strncasecmp (string, """, 6)) { |
7280 | 781 *replace = "\""; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
782 *length = 6; |
4793 | 783 } else if (!g_ascii_strncasecmp (string, "®", 5)) { |
7280 | 784 *replace = "®"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
785 *length = 5; |
5093 | 786 } else if (!g_ascii_strncasecmp (string, "'", 6)) { |
7280 | 787 *replace = "\'"; |
5093 | 788 *length = 6; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
789 } else if (*(string + 1) == '#') { |
2022
199ba82faacb
[gaim-migrate @ 2032]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2002
diff
changeset
|
790 guint pound = 0; |
3004 | 791 if ((sscanf (string, "&#%u;", £) == 1) && pound != 0) { |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
792 if (*(string + 3 + (gint)log10 (pound)) != ';') |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
793 return FALSE; |
7281 | 794 g_unichar_to_utf8((gunichar)pound, buf); |
7280 | 795 *replace = buf; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
796 *length = 2; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
797 while (isdigit ((gint) string [*length])) (*length)++; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
798 if (string [*length] == ';') (*length)++; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
799 } else { |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
800 return FALSE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
801 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
802 } else { |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
803 return FALSE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
804 } |
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 return TRUE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
807 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
808 |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
809 static gboolean |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
810 gtk_imhtml_is_tag (const gchar *string, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
811 gchar **tag, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
812 gint *len, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
813 gint *type) |
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 *type = 1; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
816 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
817 if (!strchr (string, '>')) |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
818 return FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
819 |
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 ("/B"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
823 VALID_TAG ("/BOLD"); |
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 ("/I"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
827 VALID_TAG ("/ITALIC"); |
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 ("/U"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
831 VALID_TAG ("/UNDERLINE"); |
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 ("/S"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
835 VALID_TAG ("/STRIKE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
836 VALID_TAG ("SUB"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
837 VALID_TAG ("/SUB"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
838 VALID_TAG ("SUP"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
839 VALID_TAG ("/SUP"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
840 VALID_TAG ("PRE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
841 VALID_TAG ("/PRE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
842 VALID_TAG ("TITLE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
843 VALID_TAG ("/TITLE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
844 VALID_TAG ("BR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
845 VALID_TAG ("HR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
846 VALID_TAG ("/FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
847 VALID_TAG ("/A"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
848 VALID_TAG ("P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
849 VALID_TAG ("/P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
850 VALID_TAG ("H3"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
851 VALID_TAG ("/H3"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
852 VALID_TAG ("HTML"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
853 VALID_TAG ("/HTML"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
854 VALID_TAG ("BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
855 VALID_TAG ("/BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
856 VALID_TAG ("FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
857 VALID_TAG ("HEAD"); |
2993 | 858 VALID_TAG ("/HEAD"); |
859 VALID_TAG ("BINARY"); | |
860 VALID_TAG ("/BINARY"); | |
5093 | 861 |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
862 VALID_OPT_TAG ("HR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
863 VALID_OPT_TAG ("FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
864 VALID_OPT_TAG ("BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
865 VALID_OPT_TAG ("A"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
866 VALID_OPT_TAG ("IMG"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
867 VALID_OPT_TAG ("P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
868 VALID_OPT_TAG ("H3"); |
5093 | 869 VALID_OPT_TAG ("HTML"); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
870 |
5101 | 871 VALID_TAG ("CITE"); |
872 VALID_TAG ("/CITE"); | |
873 VALID_TAG ("EM"); | |
874 VALID_TAG ("/EM"); | |
875 VALID_TAG ("STRONG"); | |
876 VALID_TAG ("/STRONG"); | |
877 | |
5104 | 878 VALID_OPT_TAG ("SPAN"); |
879 VALID_TAG ("/SPAN"); | |
5174 | 880 VALID_TAG ("BR/"); /* hack until gtkimhtml handles things better */ |
6982 | 881 VALID_TAG ("IMG"); |
5104 | 882 |
4793 | 883 if (!g_ascii_strncasecmp(string, "!--", strlen ("!--"))) { |
2954
f6c4f2187c08
[gaim-migrate @ 2967]
Christian Hammond <chipx86@chipx86.com>
parents:
2898
diff
changeset
|
884 gchar *e = strstr (string + strlen("!--"), "-->"); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
885 if (e) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
886 *len = e - string + strlen ("-->"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
887 *tag = g_strndup (string + strlen ("!--"), *len - strlen ("!---->")); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
888 return TRUE; |
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 } |
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 return FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
893 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
894 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
895 static gchar* |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
896 gtk_imhtml_get_html_opt (gchar *tag, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
897 const gchar *opt) |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
898 { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
899 gchar *t = tag; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
900 gchar *e, *a; |
5177 | 901 gchar *val; |
902 gint len; | |
7280 | 903 gchar *c; |
5177 | 904 GString *ret; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
905 |
4793 | 906 while (g_ascii_strncasecmp (t, opt, strlen (opt))) { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
907 gboolean quote = FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
908 if (*t == '\0') break; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
909 while (*t && !((*t == ' ') && !quote)) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
910 if (*t == '\"') |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
911 quote = ! quote; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
912 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 while (*t && (*t == ' ')) t++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
915 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
916 |
4793 | 917 if (!g_ascii_strncasecmp (t, opt, strlen (opt))) { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
918 t += strlen (opt); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
919 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
920 return NULL; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
921 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
922 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
923 if ((*t == '\"') || (*t == '\'')) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
924 e = a = ++t; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
925 while (*e && (*e != *(t - 1))) e++; |
2993 | 926 if (*e == '\0') { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
927 return NULL; |
5177 | 928 } else |
929 val = g_strndup(a, e - a); | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
930 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
931 e = a = t; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
932 while (*e && !isspace ((gint) *e)) e++; |
5177 | 933 val = g_strndup(a, e - a); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
934 } |
5177 | 935 |
936 ret = g_string_new(""); | |
937 e = val; | |
938 while(*e) { | |
939 if(gtk_imhtml_is_amp_escape(e, &c, &len)) { | |
7280 | 940 ret = g_string_append(ret, c); |
5177 | 941 e += len; |
942 } else { | |
943 ret = g_string_append_c(ret, *e); | |
944 e++; | |
945 } | |
946 } | |
947 | |
948 g_free(val); | |
949 val = ret->str; | |
950 g_string_free(ret, FALSE); | |
951 return val; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
952 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
953 |
3922 | 954 |
955 | |
956 #define NEW_TEXT_BIT 0 | |
4343 | 957 #define NEW_COMMENT_BIT 2 |
4895 | 958 #define NEW_SCALABLE_BIT 1 |
3922 | 959 #define NEW_BIT(x) ws [wpos] = '\0'; \ |
960 mark2 = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); \ | |
961 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, -1); \ | |
4895 | 962 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); \ |
3922 | 963 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &siter, mark2); \ |
964 gtk_text_buffer_delete_mark(imhtml->text_buffer, mark2); \ | |
965 if (bold) \ | |
966 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "BOLD", &siter, &iter); \ | |
4895 | 967 if (italics) \ |
3922 | 968 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "ITALICS", &siter, &iter); \ |
969 if (underline) \ | |
970 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "UNDERLINE", &siter, &iter); \ | |
971 if (strike) \ | |
972 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "STRIKE", &siter, &iter); \ | |
973 if (sub) \ | |
974 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "SUB", &siter, &iter); \ | |
975 if (sup) \ | |
976 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "SUP", &siter, &iter); \ | |
977 if (pre) \ | |
978 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "PRE", &siter, &iter); \ | |
979 if (bg) { \ | |
980 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "background", bg, NULL); \ | |
981 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
982 } \ | |
983 if (fonts) { \ | |
5967 | 984 GtkIMHtmlFontDetail *fd = fonts->data; \ |
3922 | 985 if (fd->fore) { \ |
986 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "foreground", fd->fore, NULL); \ | |
987 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
988 } \ | |
989 if (fd->back) { \ | |
990 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "background", fd->back, NULL); \ | |
991 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
992 } \ | |
993 if (fd->face) { \ | |
6648 | 994 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "family", fd->face, NULL); \ |
3922 | 995 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ |
996 } \ | |
997 if (fd->size) { \ | |
5118 | 998 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "size-points", (double)POINT_SIZE(fd->size), NULL); \ |
3922 | 999 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ |
1000 } \ | |
1001 } \ | |
1002 if (url) { \ | |
1003 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "foreground", "blue", "underline", PANGO_UNDERLINE_SINGLE, NULL); \ | |
5012 | 1004 g_signal_connect(G_OBJECT(texttag), "event", G_CALLBACK(tag_event), g_strdup(url)); \ |
3922 | 1005 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ |
4735 | 1006 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, NULL); \ |
1007 g_object_set_data(G_OBJECT(texttag), "link_url", g_strdup(url)); \ | |
1008 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
3922 | 1009 } \ |
1010 wpos = 0; \ | |
1011 ws[0] = 0; \ | |
1012 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); \ | |
4895 | 1013 if (x == NEW_SCALABLE_BIT) { \ |
1014 GdkRectangle rect; \ | |
1015 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); \ | |
1016 scalable->add_to(scalable, imhtml, &iter); \ | |
1017 scalable->scale(scalable, rect.width, rect.height); \ | |
1018 imhtml->scalables = g_list_append(imhtml->scalables, scalable); \ | |
1019 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); \ | |
4343 | 1020 } \ |
3922 | 1021 |
4895 | 1022 |
1023 | |
6982 | 1024 GString* gtk_imhtml_append_text_with_images (GtkIMHtml *imhtml, |
1025 const gchar *text, | |
1026 GtkIMHtmlOptions options, | |
1027 GSList *images) | |
1428 | 1028 { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1029 gint pos = 0; |
3922 | 1030 GString *str = NULL; |
1031 GtkTextIter iter, siter; | |
1032 GtkTextMark *mark, *mark2; | |
1033 GtkTextTag *texttag; | |
1034 gchar *ws; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1035 gchar *tag; |
3922 | 1036 gchar *url = NULL; |
1037 gchar *bg = NULL; | |
6982 | 1038 gint len; |
4032 | 1039 gint tlen, smilelen, wpos=0; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1040 gint type; |
3922 | 1041 const gchar *c; |
7280 | 1042 gchar *amp; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1043 |
1428 | 1044 guint bold = 0, |
1045 italics = 0, | |
1046 underline = 0, | |
1047 strike = 0, | |
1048 sub = 0, | |
1049 sup = 0, | |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1050 title = 0, |
3922 | 1051 pre = 0; |
1428 | 1052 |
3922 | 1053 GSList *fonts = NULL; |
1428 | 1054 |
4612 | 1055 GdkRectangle rect; |
1056 int y, height; | |
1057 | |
4895 | 1058 GtkIMHtmlScalable *scalable = NULL; |
1059 | |
1428 | 1060 g_return_val_if_fail (imhtml != NULL, NULL); |
1061 g_return_val_if_fail (GTK_IS_IMHTML (imhtml), NULL); | |
1062 g_return_val_if_fail (text != NULL, NULL); | |
6982 | 1063 |
3922 | 1064 c = text; |
6982 | 1065 len = strlen(text); |
3922 | 1066 ws = g_malloc(len + 1); |
1067 ws[0] = 0; | |
1428 | 1068 |
1069 if (options & GTK_IMHTML_RETURN_LOG) | |
3922 | 1070 str = g_string_new(""); |
1428 | 1071 |
3922 | 1072 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); |
1073 mark = gtk_text_buffer_create_mark (imhtml->text_buffer, NULL, &iter, /* right grav */ FALSE); | |
4612 | 1074 |
1075 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); | |
1076 gtk_text_view_get_line_yrange(GTK_TEXT_VIEW(imhtml), &iter, &y, &height); | |
1077 | |
1078 if(((y + height) - (rect.y + rect.height)) > height | |
1079 && gtk_text_buffer_get_char_count(imhtml->text_buffer)){ | |
1080 options |= GTK_IMHTML_NO_SCROLL; | |
1081 } | |
1082 | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1083 while (pos < len) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1084 if (*c == '<' && gtk_imhtml_is_tag (c + 1, &tag, &tlen, &type)) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1085 c++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1086 pos++; |
3922 | 1087 switch (type) |
1088 { | |
1089 case 1: /* B */ | |
1090 case 2: /* BOLD */ | |
5101 | 1091 case 54: /* STRONG */ |
3922 | 1092 NEW_BIT (NEW_TEXT_BIT); |
1093 bold++; | |
1094 break; | |
1095 case 3: /* /B */ | |
1096 case 4: /* /BOLD */ | |
5101 | 1097 case 55: /* /STRONG */ |
3922 | 1098 NEW_BIT (NEW_TEXT_BIT); |
1099 if (bold) | |
1100 bold--; | |
1101 break; | |
1102 case 5: /* I */ | |
1103 case 6: /* ITALIC */ | |
5101 | 1104 case 52: /* EM */ |
3922 | 1105 NEW_BIT (NEW_TEXT_BIT); |
1106 italics++; | |
1107 break; | |
1108 case 7: /* /I */ | |
1109 case 8: /* /ITALIC */ | |
5101 | 1110 case 53: /* /EM */ |
3922 | 1111 NEW_BIT (NEW_TEXT_BIT); |
1112 if (italics) | |
1113 italics--; | |
1114 break; | |
1115 case 9: /* U */ | |
1116 case 10: /* UNDERLINE */ | |
1117 NEW_BIT (NEW_TEXT_BIT); | |
1118 underline++; | |
1119 break; | |
1120 case 11: /* /U */ | |
1121 case 12: /* /UNDERLINE */ | |
1122 NEW_BIT (NEW_TEXT_BIT); | |
1123 if (underline) | |
1124 underline--; | |
1125 break; | |
1126 case 13: /* S */ | |
1127 case 14: /* STRIKE */ | |
1128 NEW_BIT (NEW_TEXT_BIT); | |
1129 strike++; | |
1130 break; | |
1131 case 15: /* /S */ | |
1132 case 16: /* /STRIKE */ | |
1133 NEW_BIT (NEW_TEXT_BIT); | |
1134 if (strike) | |
1135 strike--; | |
1136 break; | |
1137 case 17: /* SUB */ | |
1138 NEW_BIT (NEW_TEXT_BIT); | |
1139 sub++; | |
1140 break; | |
1141 case 18: /* /SUB */ | |
1142 NEW_BIT (NEW_TEXT_BIT); | |
1143 if (sub) | |
1144 sub--; | |
1145 break; | |
1146 case 19: /* SUP */ | |
1147 NEW_BIT (NEW_TEXT_BIT); | |
1148 sup++; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1149 break; |
3922 | 1150 case 20: /* /SUP */ |
1151 NEW_BIT (NEW_TEXT_BIT); | |
1152 if (sup) | |
1153 sup--; | |
1154 break; | |
1155 case 21: /* PRE */ | |
1156 NEW_BIT (NEW_TEXT_BIT); | |
1157 pre++; | |
1158 break; | |
1159 case 22: /* /PRE */ | |
1160 NEW_BIT (NEW_TEXT_BIT); | |
1161 if (pre) | |
1162 pre--; | |
1163 break; | |
1164 case 23: /* TITLE */ | |
1165 NEW_BIT (NEW_TEXT_BIT); | |
1166 title++; | |
1167 break; | |
1168 case 24: /* /TITLE */ | |
1169 if (title) { | |
1170 if (options & GTK_IMHTML_NO_TITLE) { | |
1171 wpos = 0; | |
1172 ws [wpos] = '\0'; | |
1173 } | |
1174 title--; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1175 } |
3922 | 1176 break; |
1177 case 25: /* BR */ | |
5174 | 1178 case 58: /* BR/ */ |
3922 | 1179 ws[wpos] = '\n'; |
1180 wpos++; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1181 NEW_BIT (NEW_TEXT_BIT); |
6982 | 1182 break; |
3922 | 1183 case 26: /* HR */ |
1184 case 42: /* HR (opt) */ | |
1185 ws[wpos++] = '\n'; | |
5967 | 1186 scalable = gtk_imhtml_hr_new(); |
4895 | 1187 NEW_BIT(NEW_SCALABLE_BIT); |
4343 | 1188 ws[wpos++] = '\n'; |
3922 | 1189 break; |
1190 case 27: /* /FONT */ | |
1191 if (fonts) { | |
5967 | 1192 GtkIMHtmlFontDetail *font = fonts->data; |
3922 | 1193 NEW_BIT (NEW_TEXT_BIT); |
1194 fonts = g_slist_remove (fonts, font); | |
1195 if (font->face) | |
1196 g_free (font->face); | |
1197 if (font->fore) | |
1198 g_free (font->fore); | |
1199 if (font->back) | |
1200 g_free (font->back); | |
4032 | 1201 if (font->sml) |
1202 g_free (font->sml); | |
3922 | 1203 g_free (font); |
1204 } | |
1205 break; | |
1206 case 28: /* /A */ | |
1207 if (url) { | |
1208 NEW_BIT(NEW_TEXT_BIT); | |
1209 g_free(url); | |
1210 url = NULL; | |
2993 | 1211 break; |
1212 } | |
3922 | 1213 case 29: /* P */ |
1214 case 30: /* /P */ | |
1215 case 31: /* H3 */ | |
1216 case 32: /* /H3 */ | |
1217 case 33: /* HTML */ | |
1218 case 34: /* /HTML */ | |
1219 case 35: /* BODY */ | |
1220 case 36: /* /BODY */ | |
1221 case 37: /* FONT */ | |
1222 case 38: /* HEAD */ | |
1223 case 39: /* /HEAD */ | |
6982 | 1224 case 40: /* BINARY */ |
1225 case 41: /* /BINARY */ | |
3922 | 1226 break; |
1227 case 43: /* FONT (opt) */ | |
1228 { | |
4032 | 1229 gchar *color, *back, *face, *size, *sml; |
5967 | 1230 GtkIMHtmlFontDetail *font, *oldfont = NULL; |
3922 | 1231 color = gtk_imhtml_get_html_opt (tag, "COLOR="); |
1232 back = gtk_imhtml_get_html_opt (tag, "BACK="); | |
1233 face = gtk_imhtml_get_html_opt (tag, "FACE="); | |
1234 size = gtk_imhtml_get_html_opt (tag, "SIZE="); | |
4032 | 1235 sml = gtk_imhtml_get_html_opt (tag, "SML="); |
1236 if (!(color || back || face || size || sml)) | |
3922 | 1237 break; |
1238 | |
1239 NEW_BIT (NEW_TEXT_BIT); | |
1240 | |
5967 | 1241 font = g_new0 (GtkIMHtmlFontDetail, 1); |
3922 | 1242 if (fonts) |
1243 oldfont = fonts->data; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1244 |
3922 | 1245 if (color && !(options & GTK_IMHTML_NO_COLOURS)) |
1246 font->fore = color; | |
1247 else if (oldfont && oldfont->fore) | |
1248 font->fore = g_strdup(oldfont->fore); | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1249 |
3922 | 1250 if (back && !(options & GTK_IMHTML_NO_COLOURS)) |
1251 font->back = back; | |
1252 else if (oldfont && oldfont->back) | |
1253 font->back = g_strdup(oldfont->back); | |
1254 | |
1255 if (face && !(options & GTK_IMHTML_NO_FONTS)) | |
1256 font->face = face; | |
1257 else if (oldfont && oldfont->face) | |
1258 font->face = g_strdup(oldfont->face); | |
4629 | 1259 if (font->face && (atoi(font->face) > 100)) { |
1260 g_free(font->face); | |
1261 font->face = g_strdup("100"); | |
1262 } | |
4032 | 1263 |
1264 if (sml) | |
1265 font->sml = sml; | |
1266 else if (oldfont && oldfont->sml) | |
1267 font->sml = g_strdup(oldfont->sml); | |
1268 | |
3922 | 1269 if (size && !(options & GTK_IMHTML_NO_SIZES)) { |
1270 if (*size == '+') { | |
1271 sscanf (size + 1, "%hd", &font->size); | |
1272 font->size += 3; | |
1273 } else if (*size == '-') { | |
1274 sscanf (size + 1, "%hd", &font->size); | |
1275 font->size = MAX (0, 3 - font->size); | |
1276 } else if (isdigit (*size)) { | |
1277 sscanf (size, "%hd", &font->size); | |
1278 } | |
6042 | 1279 if (font->size > 100) |
1280 font->size = 100; | |
3922 | 1281 } else if (oldfont) |
1282 font->size = oldfont->size; | |
1283 g_free(size); | |
1284 fonts = g_slist_prepend (fonts, font); | |
1285 } | |
1286 break; | |
1287 case 44: /* BODY (opt) */ | |
1288 if (!(options & GTK_IMHTML_NO_COLOURS)) { | |
1289 char *bgcolor = gtk_imhtml_get_html_opt (tag, "BGCOLOR="); | |
1290 if (bgcolor) { | |
1291 NEW_BIT(NEW_TEXT_BIT); | |
1292 if (bg) | |
1293 g_free(bg); | |
1294 bg = bgcolor; | |
2885
f72efa29c109
[gaim-migrate @ 2898]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2871
diff
changeset
|
1295 } |
1428 | 1296 } |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1297 break; |
3922 | 1298 case 45: /* A (opt) */ |
1299 { | |
1300 gchar *href = gtk_imhtml_get_html_opt (tag, "HREF="); | |
1301 if (href) { | |
1302 NEW_BIT (NEW_TEXT_BIT); | |
1303 if (url) | |
1304 g_free (url); | |
1305 url = href; | |
1306 } | |
2993 | 1307 } |
3922 | 1308 break; |
4895 | 1309 case 46: /* IMG (opt) */ |
6982 | 1310 case 59: /* IMG */ |
4895 | 1311 { |
6982 | 1312 GdkPixbuf *img = NULL; |
1313 const gchar *filename = NULL; | |
4895 | 1314 |
6982 | 1315 if (images && images->data) { |
1316 img = images->data; | |
1317 images = images->next; | |
1318 filename = g_object_get_data(G_OBJECT(img), "filename"); | |
1319 g_object_ref(G_OBJECT(img)); | |
1320 } else { | |
1321 img = gtk_widget_render_icon(GTK_WIDGET(imhtml), | |
1322 GTK_STOCK_MISSING_IMAGE, GTK_ICON_SIZE_BUTTON, | |
1323 "gtkimhtml-missing-image"); | |
1324 } | |
4895 | 1325 |
6982 | 1326 scalable = gtk_imhtml_image_new(img, filename); |
1327 NEW_BIT(NEW_SCALABLE_BIT); | |
1328 g_object_unref(G_OBJECT(img)); | |
4895 | 1329 } |
3922 | 1330 case 47: /* P (opt) */ |
1331 case 48: /* H3 (opt) */ | |
5093 | 1332 case 49: /* HTML (opt) */ |
5101 | 1333 case 50: /* CITE */ |
1334 case 51: /* /CITE */ | |
5104 | 1335 case 56: /* SPAN */ |
1336 case 57: /* /SPAN */ | |
2993 | 1337 break; |
6982 | 1338 case 60: /* comment */ |
3922 | 1339 NEW_BIT (NEW_TEXT_BIT); |
6124 | 1340 if (imhtml->show_comments) |
1341 wpos = g_snprintf (ws, len, "%s", tag); | |
3922 | 1342 NEW_BIT (NEW_COMMENT_BIT); |
1343 break; | |
1344 default: | |
6882 | 1345 break; |
2993 | 1346 } |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1347 c += tlen; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1348 pos += tlen; |
4138 | 1349 if(tag) |
1350 g_free(tag); /* This was allocated back in VALID_TAG() */ | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1351 } else if (*c == '&' && gtk_imhtml_is_amp_escape (c, &, &tlen)) { |
7280 | 1352 while(*amp) { |
1353 ws [wpos++] = *amp++; | |
1354 } | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1355 c += tlen; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1356 pos += tlen; |
1428 | 1357 } else if (*c == '\n') { |
1358 if (!(options & GTK_IMHTML_NO_NEWLINE)) { | |
3922 | 1359 ws[wpos] = '\n'; |
1360 wpos++; | |
1428 | 1361 NEW_BIT (NEW_TEXT_BIT); |
1362 } | |
1363 c++; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1364 pos++; |
4253 | 1365 } 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
|
1366 GtkTextChildAnchor *anchor; |
6882 | 1367 GtkWidget *icon = NULL; |
1368 GdkPixbufAnimation *annipixbuf = NULL; | |
1369 GdkPixbuf *pixbuf = NULL; | |
5967 | 1370 GtkIMHtmlFontDetail *fd; |
4032 | 1371 gchar *sml = NULL; |
1372 if (fonts) { | |
1373 fd = fonts->data; | |
1374 sml = fd->sml; | |
1375 } | |
1376 NEW_BIT (NEW_TEXT_BIT); | |
1377 wpos = g_snprintf (ws, smilelen + 1, "%s", c); | |
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
1378 anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, &iter); |
6882 | 1379 annipixbuf = gtk_smiley_tree_image(imhtml, sml, ws); |
1380 if(annipixbuf) { | |
1381 if(gdk_pixbuf_animation_is_static_image(annipixbuf)) { | |
1382 pixbuf = gdk_pixbuf_animation_get_static_image(annipixbuf); | |
1383 if(pixbuf) | |
1384 icon = gtk_image_new_from_pixbuf(pixbuf); | |
1385 } else { | |
1386 icon = gtk_image_new_from_animation(annipixbuf); | |
1387 } | |
1388 } | |
1389 | |
1390 if (icon) { | |
6839
bdc4e73f354d
[gaim-migrate @ 7384]
Christian Hammond <chipx86@chipx86.com>
parents:
6814
diff
changeset
|
1391 gtk_widget_show(icon); |
bdc4e73f354d
[gaim-migrate @ 7384]
Christian Hammond <chipx86@chipx86.com>
parents:
6814
diff
changeset
|
1392 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
|
1393 } |
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
1394 |
4032 | 1395 c += smilelen; |
1396 pos += smilelen; | |
1397 wpos = 0; | |
1398 ws[0] = 0; | |
1399 } else if (*c) { | |
1428 | 1400 ws [wpos++] = *c++; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1401 pos++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1402 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1403 break; |
1428 | 1404 } |
1405 } | |
3922 | 1406 |
1407 NEW_BIT(NEW_TEXT_BIT); | |
1428 | 1408 if (url) { |
1409 g_free (url); | |
3922 | 1410 if (str) |
1411 str = g_string_append (str, "</A>"); | |
1428 | 1412 } |
3922 | 1413 |
4032 | 1414 while (fonts) { |
5967 | 1415 GtkIMHtmlFontDetail *font = fonts->data; |
4032 | 1416 fonts = g_slist_remove (fonts, font); |
1417 if (font->face) | |
1418 g_free (font->face); | |
1419 if (font->fore) | |
1420 g_free (font->fore); | |
1421 if (font->back) | |
1422 g_free (font->back); | |
1423 if (font->sml) | |
1424 g_free (font->sml); | |
1425 g_free (font); | |
1426 if (str) | |
1427 str = g_string_append (str, "</FONT>"); | |
1428 } | |
1429 | |
3922 | 1430 if (str) { |
1428 | 1431 while (bold) { |
3922 | 1432 str = g_string_append (str, "</B>"); |
1428 | 1433 bold--; |
1434 } | |
1435 while (italics) { | |
3922 | 1436 str = g_string_append (str, "</I>"); |
1428 | 1437 italics--; |
1438 } | |
1439 while (underline) { | |
3922 | 1440 str = g_string_append (str, "</U>"); |
1428 | 1441 underline--; |
1442 } | |
1443 while (strike) { | |
3922 | 1444 str = g_string_append (str, "</S>"); |
1428 | 1445 strike--; |
1446 } | |
1447 while (sub) { | |
3922 | 1448 str = g_string_append (str, "</SUB>"); |
1428 | 1449 sub--; |
1450 } | |
1451 while (sup) { | |
3922 | 1452 str = g_string_append (str, "</SUP>"); |
1428 | 1453 sup--; |
1454 } | |
1455 while (title) { | |
3922 | 1456 str = g_string_append (str, "</TITLE>"); |
1428 | 1457 title--; |
1458 } | |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1459 while (pre) { |
3922 | 1460 str = g_string_append (str, "</PRE>"); |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1461 pre--; |
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1462 } |
1428 | 1463 } |
4032 | 1464 g_free (ws); |
4630 | 1465 if(bg) |
1466 g_free(bg); | |
4032 | 1467 if (!(options & GTK_IMHTML_NO_SCROLL)) |
1468 gtk_text_view_scroll_to_mark (GTK_TEXT_VIEW (imhtml), mark, | |
1469 0, TRUE, 0.0, 1.0); | |
3922 | 1470 gtk_text_buffer_delete_mark (imhtml->text_buffer, mark); |
1471 return str; | |
1472 } | |
1473 | |
4892 | 1474 void gtk_imhtml_remove_smileys(GtkIMHtml *imhtml) |
1475 { | |
4288 | 1476 g_hash_table_destroy(imhtml->smiley_data); |
1477 gtk_smiley_tree_destroy(imhtml->default_smilies); | |
4892 | 1478 imhtml->smiley_data = g_hash_table_new_full(g_str_hash, g_str_equal, |
4902 | 1479 g_free, (GDestroyNotify)gtk_smiley_tree_destroy); |
4288 | 1480 imhtml->default_smilies = gtk_smiley_tree_new(); |
1481 } | |
3922 | 1482 void gtk_imhtml_show_smileys (GtkIMHtml *imhtml, |
4253 | 1483 gboolean show) |
1484 { | |
1485 imhtml->show_smileys = show; | |
1486 } | |
3922 | 1487 |
1488 void gtk_imhtml_show_comments (GtkIMHtml *imhtml, | |
4253 | 1489 gboolean show) |
1490 { | |
6124 | 1491 imhtml->show_comments = show; |
4253 | 1492 } |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1493 |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1494 void |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1495 gtk_imhtml_clear (GtkIMHtml *imhtml) |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1496 { |
3922 | 1497 GtkTextIter start, end; |
2993 | 1498 |
3922 | 1499 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); |
1500 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
1501 gtk_text_buffer_delete(imhtml->text_buffer, &start, &end); | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1502 } |
2363
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
1503 |
4046 | 1504 void gtk_imhtml_page_up (GtkIMHtml *imhtml) |
1505 { | |
5282 | 1506 GdkRectangle rect; |
1507 GtkTextIter iter; | |
4046 | 1508 |
5282 | 1509 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); |
1510 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, rect.x, | |
1511 rect.y - rect.height); | |
1512 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &iter, 0, TRUE, 0, 0); | |
1513 | |
4046 | 1514 } |
5282 | 1515 void gtk_imhtml_page_down (GtkIMHtml *imhtml) |
1516 { | |
1517 GdkRectangle rect; | |
1518 GtkTextIter iter; | |
1519 | |
1520 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); | |
1521 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, rect.x, | |
1522 rect.y + rect.height); | |
1523 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &iter, 0, TRUE, 0, 0); | |
1524 } | |
4735 | 1525 |
5967 | 1526 /* GtkIMHtmlScalable, gtk_imhtml_image, gtk_imhtml_hr */ |
6982 | 1527 GtkIMHtmlScalable *gtk_imhtml_image_new(GdkPixbuf *img, const gchar *filename) |
4735 | 1528 { |
5967 | 1529 GtkIMHtmlImage *im_image = g_malloc(sizeof(GtkIMHtmlImage)); |
5012 | 1530 GtkImage *image = GTK_IMAGE(gtk_image_new_from_pixbuf(img)); |
4895 | 1531 |
5967 | 1532 GTK_IMHTML_SCALABLE(im_image)->scale = gtk_imhtml_image_scale; |
1533 GTK_IMHTML_SCALABLE(im_image)->add_to = gtk_imhtml_image_add_to; | |
1534 GTK_IMHTML_SCALABLE(im_image)->free = gtk_imhtml_image_free; | |
5046 | 1535 |
1536 im_image->pixbuf = img; | |
5012 | 1537 im_image->image = image; |
4895 | 1538 im_image->width = gdk_pixbuf_get_width(img); |
1539 im_image->height = gdk_pixbuf_get_height(img); | |
1540 im_image->mark = NULL; | |
6982 | 1541 im_image->filename = filename ? g_strdup(filename) : NULL; |
4895 | 1542 |
5046 | 1543 g_object_ref(img); |
4895 | 1544 return GTK_IMHTML_SCALABLE(im_image); |
1545 } | |
1546 | |
5967 | 1547 void gtk_imhtml_image_scale(GtkIMHtmlScalable *scale, int width, int height) |
4895 | 1548 { |
5967 | 1549 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; |
4895 | 1550 |
1551 if(image->width > width || image->height > height){ | |
1552 GdkPixbuf *new_image = NULL; | |
1553 float factor; | |
1554 int new_width = image->width, new_height = image->height; | |
1555 | |
1556 if(image->width > width){ | |
1557 factor = (float)(width)/image->width; | |
1558 new_width = width; | |
1559 new_height = image->height * factor; | |
1560 } | |
1561 if(new_height > height){ | |
1562 factor = (float)(height)/new_height; | |
1563 new_height = height; | |
1564 new_width = new_width * factor; | |
1565 } | |
1566 | |
5046 | 1567 new_image = gdk_pixbuf_scale_simple(image->pixbuf, new_width, new_height, GDK_INTERP_BILINEAR); |
5012 | 1568 gtk_image_set_from_pixbuf(image->image, new_image); |
4895 | 1569 g_object_unref(G_OBJECT(new_image)); |
1570 } | |
1571 } | |
1572 | |
5012 | 1573 static void write_img_to_file(GtkWidget *w, GtkFileSelection *sel) |
1574 { | |
1575 const gchar *filename = gtk_file_selection_get_filename(sel); | |
5967 | 1576 gchar *dirname; |
1577 GtkIMHtmlImage *image = g_object_get_data(G_OBJECT(sel), "GtkIMHtmlImage"); | |
5012 | 1578 gchar *type = NULL; |
5019 | 1579 GError *error = NULL; |
5015 | 1580 #if GTK_CHECK_VERSION(2,2,0) |
5012 | 1581 GSList *formats = gdk_pixbuf_get_formats(); |
6162 | 1582 #else |
1583 char *basename = g_path_get_basename(filename); | |
1584 char *ext = strrchr(basename, '.'); | |
5959 | 1585 #endif |
5012 | 1586 |
5967 | 1587 if (g_file_test(filename, G_FILE_TEST_IS_DIR)) { |
1588 /* append a / if needed */ | |
1589 if (filename[strlen(filename) - 1] != '/') { | |
1590 dirname = g_strconcat(filename, "/", NULL); | |
1591 } else { | |
1592 dirname = g_strdup(filename); | |
1593 } | |
1594 gtk_file_selection_set_filename(sel, dirname); | |
1595 g_free(dirname); | |
5959 | 1596 return; |
5967 | 1597 } |
5959 | 1598 |
1599 #if GTK_CHECK_VERSION(2,2,0) | |
5012 | 1600 while(formats){ |
1601 GdkPixbufFormat *format = formats->data; | |
1602 gchar **extensions = gdk_pixbuf_format_get_extensions(format); | |
1603 gpointer p = extensions; | |
1604 | |
1605 while(gdk_pixbuf_format_is_writable(format) && extensions && extensions[0]){ | |
1606 gchar *fmt_ext = extensions[0]; | |
1607 const gchar* file_ext = filename + strlen(filename) - strlen(fmt_ext); | |
1608 | |
1609 if(!strcmp(fmt_ext, file_ext)){ | |
1610 type = gdk_pixbuf_format_get_name(format); | |
1611 break; | |
1612 } | |
1613 | |
1614 extensions++; | |
1615 } | |
1616 | |
1617 g_strfreev(p); | |
1618 | |
1619 if(type) | |
1620 break; | |
1621 | |
1622 formats = formats->next; | |
1623 } | |
1624 | |
5020 | 1625 g_slist_free(formats); |
1626 #else | |
1627 /* this is really ugly code, but I think it will work */ | |
1628 if(ext) { | |
1629 ext++; | |
1630 if(!g_ascii_strcasecmp(ext, "jpeg") || !g_ascii_strcasecmp(ext, "jpg")) | |
1631 type = g_strdup("jpeg"); | |
1632 else if(!g_ascii_strcasecmp(ext, "png")) | |
1633 type = g_strdup("png"); | |
1634 } | |
1635 | |
1636 g_free(basename); | |
1637 #endif | |
1638 | |
5012 | 1639 /* If I can't find a valid type, I will just tell the user about it and then assume |
1640 it's a png */ | |
1641 if(!type){ | |
1642 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
5967 | 1643 _("Unable to guess the image type based on the file extension supplied. Defaulting to PNG.")); |
5012 | 1644 type = g_strdup("png"); |
1645 } | |
1646 | |
5046 | 1647 gdk_pixbuf_save(image->pixbuf, filename, type, &error, NULL); |
5012 | 1648 |
1649 if(error){ | |
1650 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
1651 _("Error saving image: %s"), error->message); | |
1652 g_error_free(error); | |
1653 } | |
1654 | |
1655 g_free(type); | |
1656 } | |
1657 | |
5967 | 1658 static void gtk_imhtml_image_save(GtkWidget *w, GtkIMHtmlImage *image) |
5012 | 1659 { |
5967 | 1660 GtkWidget *sel = gtk_file_selection_new(_("Save Image")); |
5012 | 1661 |
6982 | 1662 if (image->filename) |
1663 gtk_file_selection_set_filename(GTK_FILE_SELECTION(sel), image->filename); | |
5967 | 1664 g_object_set_data(G_OBJECT(sel), "GtkIMHtmlImage", image); |
5012 | 1665 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", |
1666 G_CALLBACK(write_img_to_file), sel); | |
1667 | |
1668 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", | |
1669 G_CALLBACK(gtk_widget_destroy), sel); | |
1670 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->cancel_button), "clicked", | |
1671 G_CALLBACK(gtk_widget_destroy), sel); | |
1672 | |
1673 gtk_widget_show(sel); | |
1674 } | |
1675 | |
5967 | 1676 static gboolean gtk_imhtml_image_clicked(GtkWidget *w, GdkEvent *event, GtkIMHtmlImage *image) |
5012 | 1677 { |
1678 GdkEventButton *event_button = (GdkEventButton *) event; | |
1679 | |
1680 if (event->type == GDK_BUTTON_RELEASE) { | |
1681 if(event_button->button == 3) { | |
1682 GtkWidget *img, *item, *menu; | |
1683 gchar *text = g_strdup_printf(_("_Save Image...")); | |
1684 menu = gtk_menu_new(); | |
1685 | |
1686 /* buttons and such */ | |
1687 img = gtk_image_new_from_stock(GTK_STOCK_SAVE, GTK_ICON_SIZE_MENU); | |
1688 item = gtk_image_menu_item_new_with_mnemonic(text); | |
1689 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); | |
5967 | 1690 g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(gtk_imhtml_image_save), image); |
5012 | 1691 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
1692 | |
1693 gtk_widget_show_all(menu); | |
1694 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, | |
1695 event_button->button, event_button->time); | |
1696 | |
1697 g_free(text); | |
1698 return TRUE; | |
1699 } | |
1700 } | |
1701 if(event->type == GDK_BUTTON_PRESS && event_button->button == 3) | |
1702 return TRUE; /* Clicking the right mouse button on a link shouldn't | |
1703 be caught by the regular GtkTextView menu */ | |
1704 else | |
1705 return FALSE; /* Let clicks go through if we didn't catch anything */ | |
1706 | |
1707 } | |
5967 | 1708 void gtk_imhtml_image_free(GtkIMHtmlScalable *scale) |
1709 { | |
1710 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; | |
1711 | |
1712 g_object_unref(image->pixbuf); | |
6982 | 1713 if (image->filename) |
1714 g_free(image->filename); | |
5967 | 1715 g_free(scale); |
1716 } | |
1717 | |
1718 void gtk_imhtml_image_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
1719 { | |
1720 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; | |
1721 GtkWidget *box = gtk_event_box_new(); | |
1722 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
1723 | |
1724 gtk_container_add(GTK_CONTAINER(box), GTK_WIDGET(image->image)); | |
1725 | |
1726 gtk_widget_show(GTK_WIDGET(image->image)); | |
1727 gtk_widget_show(box); | |
1728 | |
1729 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), box, anchor); | |
1730 g_signal_connect(G_OBJECT(box), "event", G_CALLBACK(gtk_imhtml_image_clicked), image); | |
1731 } | |
1732 | |
1733 GtkIMHtmlScalable *gtk_imhtml_hr_new() | |
1734 { | |
1735 GtkIMHtmlHr *hr = g_malloc(sizeof(GtkIMHtmlHr)); | |
1736 | |
1737 GTK_IMHTML_SCALABLE(hr)->scale = gtk_imhtml_hr_scale; | |
1738 GTK_IMHTML_SCALABLE(hr)->add_to = gtk_imhtml_hr_add_to; | |
1739 GTK_IMHTML_SCALABLE(hr)->free = gtk_imhtml_hr_free; | |
1740 | |
1741 hr->sep = gtk_hseparator_new(); | |
1742 gtk_widget_set_size_request(hr->sep, 5000, 2); | |
1743 gtk_widget_show(hr->sep); | |
1744 | |
1745 return GTK_IMHTML_SCALABLE(hr); | |
1746 } | |
1747 | |
1748 void gtk_imhtml_hr_scale(GtkIMHtmlScalable *scale, int width, int height) | |
1749 { | |
1750 gtk_widget_set_size_request(((GtkIMHtmlHr *)scale)->sep, width, 2); | |
1751 } | |
1752 | |
1753 void gtk_imhtml_hr_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
1754 { | |
1755 GtkIMHtmlHr *hr = (GtkIMHtmlHr *)scale; | |
1756 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
1757 | |
1758 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), hr->sep, anchor); | |
1759 } | |
1760 | |
1761 void gtk_imhtml_hr_free(GtkIMHtmlScalable *scale) | |
1762 { | |
1763 g_free(scale); | |
1764 } |