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