Mercurial > pidgin
annotate src/gtkimhtml.c @ 8497:d4ed39454347
[gaim-migrate @ 9233]
So, I disabled rich-text copy/paste, but forgot I was still requesting to
receive HTML pastes. Whoops.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Thu, 25 Mar 2004 00:33:21 +0000 |
parents | f07fbdfbe2e0 |
children | 0a9b591278bc |
rev | line source |
---|---|
1428 | 1 /* |
2 * GtkIMHtml | |
3 * | |
8046 | 4 * Gaim is the legal property of its developers, whose names are too numerous |
5 * to list here. Please refer to the COPYRIGHT file distributed with this | |
6 * source distribution. | |
1428 | 7 * |
8 * This program is free software; you can redistribute it and/or modify | |
9 * under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 * | |
22 */ | |
23 | |
2541
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
24 #ifdef HAVE_CONFIG_H |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
25 #include <config.h> |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
26 #endif |
8091 | 27 #include "util.h" |
1428 | 28 #include "gtkimhtml.h" |
7358 | 29 #include "gtksourceiter.h" |
1428 | 30 #include <gtk/gtk.h> |
4895 | 31 #include <glib/gerror.h> |
4046 | 32 #include <gdk/gdkkeysyms.h> |
1428 | 33 #include <string.h> |
34 #include <ctype.h> | |
35 #include <stdio.h> | |
4629 | 36 #include <stdlib.h> |
1428 | 37 #include <math.h> |
2541
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
38 #ifdef HAVE_LANGINFO_CODESET |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
39 #include <langinfo.h> |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
40 #include <locale.h> |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
41 #endif |
1428 | 42 |
4417 | 43 #ifdef ENABLE_NLS |
44 # include <libintl.h> | |
45 # define _(x) gettext(x) | |
46 # ifdef gettext_noop | |
47 # define N_(String) gettext_noop (String) | |
48 # else | |
49 # define N_(String) (String) | |
50 # endif | |
51 #else | |
52 # define N_(String) (String) | |
53 # define _(x) (x) | |
54 #endif | |
55 | |
4735 | 56 #include <pango/pango-font.h> |
57 | |
5105 | 58 /* GTK+ < 2.2.2 hack, see ui.h for details. */ |
59 #ifndef GTK_WRAP_WORD_CHAR | |
60 #define GTK_WRAP_WORD_CHAR GTK_WRAP_WORD | |
61 #endif | |
62 | |
4735 | 63 #define TOOLTIP_TIMEOUT 500 |
64 | |
8061 | 65 static void insert_cb(GtkTextBuffer *buffer, GtkTextIter *iter, gchar *text, gint len, GtkIMHtml *imhtml); |
66 void gtk_imhtml_close_tags(GtkIMHtml *imhtml); | |
8091 | 67 static void gtk_imhtml_link_drag_rcv_cb(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, GtkSelectionData *sd, guint info, guint t, GtkIMHtml *imhtml); |
8061 | 68 |
3922 | 69 /* POINT_SIZE converts from AIM font sizes to point sizes. It probably should be redone in such a |
70 * way that it base the sizes off the default font size rather than using arbitrary font sizes. */ | |
71 #define MAX_FONT_SIZE 7 | |
5367 | 72 #define POINT_SIZE(x) (options & GTK_IMHTML_USE_POINTSIZE ? x : _point_sizes [MIN ((x), MAX_FONT_SIZE) - 1]) |
8380 | 73 static gdouble _point_sizes [] = { .69444444, .8333333, 1, 1.2, 1.44, 1.728, 2.0736}; |
2349
60c716c32c40
[gaim-migrate @ 2362]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2348
diff
changeset
|
74 |
8061 | 75 enum { |
8497 | 76 /* TARGET_HTML, */ |
8061 | 77 TARGET_UTF8_STRING, |
78 TARGET_COMPOUND_TEXT, | |
79 TARGET_STRING, | |
80 TARGET_TEXT | |
81 }; | |
82 | |
8091 | 83 enum { |
84 DRAG_URL | |
85 }; | |
86 | |
8420 | 87 enum { |
88 URL_CLICKED, | |
89 BUTTONS_UPDATE, | |
90 TOGGLE_FORMAT, | |
8427 | 91 CLEAR_FORMAT, |
8420 | 92 LAST_SIGNAL |
93 }; | |
94 static guint signals [LAST_SIGNAL] = { 0 }; | |
95 | |
8061 | 96 GtkTargetEntry selection_targets[] = { |
97 { "text/html", 0, TARGET_HTML }, | |
98 { "UTF8_STRING", 0, TARGET_UTF8_STRING }, | |
99 { "COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT }, | |
100 { "STRING", 0, TARGET_STRING }, | |
101 { "TEXT", 0, TARGET_TEXT}}; | |
102 | |
8091 | 103 GtkTargetEntry link_drag_drop_targets[] = { |
104 {"x-url/ftp", 0, DRAG_URL}, | |
105 {"x-url/http", 0, DRAG_URL}, | |
106 {"text/uri-list", 0, DRAG_URL}, | |
107 {"_NETSCAPE_URL", 0, DRAG_URL}}; | |
108 | |
4032 | 109 static GtkSmileyTree* |
110 gtk_smiley_tree_new () | |
111 { | |
112 return g_new0 (GtkSmileyTree, 1); | |
113 } | |
114 | |
115 static void | |
116 gtk_smiley_tree_insert (GtkSmileyTree *tree, | |
4263 | 117 GtkIMHtmlSmiley *smiley) |
4032 | 118 { |
119 GtkSmileyTree *t = tree; | |
4263 | 120 const gchar *x = smiley->smile; |
4032 | 121 |
122 if (!strlen (x)) | |
123 return; | |
124 | |
125 while (*x) { | |
126 gchar *pos; | |
127 gint index; | |
128 | |
129 if (!t->values) | |
130 t->values = g_string_new (""); | |
131 | |
132 pos = strchr (t->values->str, *x); | |
133 if (!pos) { | |
134 t->values = g_string_append_c (t->values, *x); | |
135 index = t->values->len - 1; | |
136 t->children = g_realloc (t->children, t->values->len * sizeof (GtkSmileyTree *)); | |
137 t->children [index] = g_new0 (GtkSmileyTree, 1); | |
138 } else | |
7386 | 139 index = GPOINTER_TO_INT(pos) - GPOINTER_TO_INT(t->values->str); |
8061 | 140 |
4032 | 141 t = t->children [index]; |
8061 | 142 |
4032 | 143 x++; |
144 } | |
8061 | 145 |
4263 | 146 t->image = smiley; |
4032 | 147 } |
4041 | 148 |
4263 | 149 |
4264 | 150 void gtk_smiley_tree_destroy (GtkSmileyTree *tree) |
4032 | 151 { |
152 GSList *list = g_slist_append (NULL, tree); | |
153 | |
154 while (list) { | |
155 GtkSmileyTree *t = list->data; | |
156 gint i; | |
157 list = g_slist_remove(list, t); | |
7384 | 158 if (t && t->values) { |
4032 | 159 for (i = 0; i < t->values->len; i++) |
160 list = g_slist_append (list, t->children [i]); | |
161 g_string_free (t->values, TRUE); | |
162 g_free (t->children); | |
163 } | |
164 g_free (t); | |
165 } | |
166 } | |
167 | |
5967 | 168 static gboolean gtk_size_allocate_cb(GtkIMHtml *widget, GtkAllocation *alloc, gpointer user_data) |
169 { | |
170 GdkRectangle rect; | |
171 | |
172 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(widget), &rect); | |
173 if(widget->old_rect.width != rect.width || widget->old_rect.height != rect.height){ | |
174 GList *iter = GTK_IMHTML(widget)->scalables; | |
175 | |
176 while(iter){ | |
177 GtkIMHtmlScalable *scale = GTK_IMHTML_SCALABLE(iter->data); | |
178 scale->scale(scale, rect.width, rect.height); | |
179 | |
180 iter = iter->next; | |
181 } | |
182 } | |
183 | |
184 widget->old_rect = rect; | |
185 return FALSE; | |
186 } | |
187 | |
188 static gint | |
189 gtk_imhtml_tip_paint (GtkIMHtml *imhtml) | |
190 { | |
191 PangoLayout *layout; | |
192 | |
193 g_return_val_if_fail(GTK_IS_IMHTML(imhtml), FALSE); | |
194 | |
195 layout = gtk_widget_create_pango_layout(imhtml->tip_window, imhtml->tip); | |
196 | |
8061 | 197 gtk_paint_flat_box (imhtml->tip_window->style, imhtml->tip_window->window, |
5967 | 198 GTK_STATE_NORMAL, GTK_SHADOW_OUT, NULL, imhtml->tip_window, |
199 "tooltip", 0, 0, -1, -1); | |
200 | |
201 gtk_paint_layout (imhtml->tip_window->style, imhtml->tip_window->window, GTK_STATE_NORMAL, | |
202 FALSE, NULL, imhtml->tip_window, NULL, 4, 4, layout); | |
203 | |
204 g_object_unref(layout); | |
205 return FALSE; | |
206 } | |
207 | |
208 static gint | |
209 gtk_imhtml_tip (gpointer data) | |
210 { | |
211 GtkIMHtml *imhtml = data; | |
212 PangoFontMetrics *font; | |
213 PangoLayout *layout; | |
214 | |
215 gint gap, x, y, h, w, scr_w, baseline_skip; | |
216 | |
217 g_return_val_if_fail(GTK_IS_IMHTML(imhtml), FALSE); | |
218 | |
219 if (!imhtml->tip || !GTK_WIDGET_DRAWABLE (GTK_WIDGET(imhtml))) { | |
220 imhtml->tip_timer = 0; | |
221 return FALSE; | |
222 } | |
8061 | 223 |
5967 | 224 if (imhtml->tip_window){ |
225 gtk_widget_destroy (imhtml->tip_window); | |
226 imhtml->tip_window = NULL; | |
227 } | |
228 | |
229 imhtml->tip_timer = 0; | |
230 imhtml->tip_window = gtk_window_new (GTK_WINDOW_POPUP); | |
231 gtk_widget_set_app_paintable (imhtml->tip_window, TRUE); | |
232 gtk_window_set_resizable (GTK_WINDOW (imhtml->tip_window), FALSE); | |
233 gtk_widget_set_name (imhtml->tip_window, "gtk-tooltips"); | |
234 g_signal_connect_swapped (G_OBJECT (imhtml->tip_window), "expose_event", | |
235 G_CALLBACK (gtk_imhtml_tip_paint), imhtml); | |
236 | |
237 gtk_widget_ensure_style (imhtml->tip_window); | |
238 layout = gtk_widget_create_pango_layout(imhtml->tip_window, imhtml->tip); | |
239 font = pango_font_get_metrics(pango_context_load_font(pango_layout_get_context(layout), | |
8309 | 240 imhtml->tip_window->style->font_desc), |
241 NULL); | |
242 | |
5967 | 243 |
244 pango_layout_get_pixel_size(layout, &scr_w, NULL); | |
8061 | 245 gap = PANGO_PIXELS((pango_font_metrics_get_ascent(font) + |
5967 | 246 pango_font_metrics_get_descent(font))/ 4); |
247 | |
248 if (gap < 2) | |
249 gap = 2; | |
8061 | 250 baseline_skip = PANGO_PIXELS(pango_font_metrics_get_ascent(font) + |
5967 | 251 pango_font_metrics_get_descent(font)); |
252 w = 8 + scr_w; | |
253 h = 8 + baseline_skip; | |
254 | |
255 gdk_window_get_pointer (NULL, &x, &y, NULL); | |
256 if (GTK_WIDGET_NO_WINDOW (GTK_WIDGET(imhtml))) | |
257 y += GTK_WIDGET(imhtml)->allocation.y; | |
258 | |
259 scr_w = gdk_screen_width(); | |
260 | |
261 x -= ((w >> 1) + 4); | |
262 | |
263 if ((x + w) > scr_w) | |
264 x -= (x + w) - scr_w; | |
265 else if (x < 0) | |
266 x = 0; | |
267 | |
8061 | 268 y = y + PANGO_PIXELS(pango_font_metrics_get_ascent(font) + |
5967 | 269 pango_font_metrics_get_descent(font)); |
270 | |
271 gtk_widget_set_size_request (imhtml->tip_window, w, h); | |
272 gtk_widget_show (imhtml->tip_window); | |
273 gtk_window_move (GTK_WINDOW(imhtml->tip_window), x, y); | |
274 | |
275 pango_font_metrics_unref(font); | |
276 g_object_unref(layout); | |
277 | |
278 return FALSE; | |
279 } | |
280 | |
281 gboolean gtk_motion_event_notify(GtkWidget *imhtml, GdkEventMotion *event, gpointer data) | |
8061 | 282 { |
5967 | 283 GtkTextIter iter; |
284 GdkWindow *win = event->window; | |
285 int x, y; | |
286 char *tip = NULL; | |
287 GSList *tags = NULL, *templist = NULL; | |
288 gdk_window_get_pointer(GTK_WIDGET(imhtml)->window, NULL, NULL, NULL); | |
289 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(imhtml), GTK_TEXT_WINDOW_WIDGET, | |
290 event->x, event->y, &x, &y); | |
291 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, x, y); | |
292 tags = gtk_text_iter_get_tags(&iter); | |
293 | |
294 templist = tags; | |
295 while (templist) { | |
296 GtkTextTag *tag = templist->data; | |
297 tip = g_object_get_data(G_OBJECT(tag), "link_url"); | |
298 if (tip) | |
299 break; | |
300 templist = templist->next; | |
301 } | |
8061 | 302 |
5967 | 303 if (GTK_IMHTML(imhtml)->tip) { |
304 if ((tip == GTK_IMHTML(imhtml)->tip)) { | |
305 return FALSE; | |
306 } | |
307 /* We've left the cell. Remove the timeout and create a new one below */ | |
308 if (GTK_IMHTML(imhtml)->tip_window) { | |
309 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
310 GTK_IMHTML(imhtml)->tip_window = NULL; | |
311 } | |
8061 | 312 if (GTK_IMHTML(imhtml)->editable) |
313 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->text_cursor); | |
314 else | |
315 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->arrow_cursor); | |
5967 | 316 if (GTK_IMHTML(imhtml)->tip_timer) |
317 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
318 GTK_IMHTML(imhtml)->tip_timer = 0; | |
319 } | |
8061 | 320 |
5967 | 321 if(tip){ |
8061 | 322 if (!GTK_IMHTML(imhtml)->editable) |
323 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->hand_cursor); | |
324 GTK_IMHTML(imhtml)->tip_timer = g_timeout_add (TOOLTIP_TIMEOUT, | |
5967 | 325 gtk_imhtml_tip, imhtml); |
326 } | |
8061 | 327 |
5967 | 328 GTK_IMHTML(imhtml)->tip = tip; |
329 g_slist_free(tags); | |
330 return FALSE; | |
331 } | |
332 | |
333 gboolean gtk_leave_event_notify(GtkWidget *imhtml, GdkEventCrossing *event, gpointer data) | |
334 { | |
335 /* when leaving the widget, clear any current & pending tooltips and restore the cursor */ | |
336 if (GTK_IMHTML(imhtml)->tip_window) { | |
337 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
338 GTK_IMHTML(imhtml)->tip_window = NULL; | |
339 } | |
340 if (GTK_IMHTML(imhtml)->tip_timer) { | |
341 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
342 GTK_IMHTML(imhtml)->tip_timer = 0; | |
343 } | |
8061 | 344 if (GTK_IMHTML(imhtml)->editable) |
345 gdk_window_set_cursor(event->window, GTK_IMHTML(imhtml)->text_cursor); | |
346 else | |
347 gdk_window_set_cursor(event->window, GTK_IMHTML(imhtml)->arrow_cursor); | |
5967 | 348 |
349 /* propogate the event normally */ | |
350 return FALSE; | |
351 } | |
352 | |
6066 | 353 /* |
354 * XXX - This should be removed eventually. | |
355 * | |
8061 | 356 * This function exists to work around a gross bug in GtkTextView. |
357 * Basically, we short circuit ctrl+a and ctrl+end because they make | |
6066 | 358 * el program go boom. |
359 * | |
8061 | 360 * It's supposed to be fixed in gtk2.2. You can view the bug report at |
6066 | 361 * http://bugzilla.gnome.org/show_bug.cgi?id=107939 |
362 */ | |
8317 | 363 |
364 /* | |
365 * I'm adding some keyboard shortcuts too. | |
366 */ | |
367 | |
368 gboolean gtk_key_pressed_cb(GtkIMHtml *imhtml, GdkEventKey *event, gpointer data) | |
369 { | |
370 char buf[7]; | |
371 buf[0] = '\0'; | |
372 | |
6066 | 373 if (event->state & GDK_CONTROL_MASK) |
374 switch (event->keyval) { | |
8317 | 375 case 'a': |
376 return TRUE; | |
377 break; | |
378 | |
379 case GDK_Home: | |
380 return TRUE; | |
381 break; | |
382 | |
383 case GDK_End: | |
384 return TRUE; | |
385 break; | |
386 | |
387 case 'b': /* ctrl-b is GDK_Left, which moves backwards. */ | |
388 case 'B': | |
8420 | 389 if (imhtml->format_functions & GTK_IMHTML_BOLD) { |
8456 | 390 if(imhtml->html_shortcuts) { |
391 gtk_imhtml_toggle_bold(imhtml); | |
8466 | 392 return TRUE; |
8456 | 393 } |
8420 | 394 } |
8466 | 395 return FALSE; |
8317 | 396 break; |
397 | |
398 case 'f': | |
399 case 'F': | |
400 /*set_toggle(gtkconv->toolbar.font, | |
401 !gtk_toggle_button_get_active( | |
402 GTK_TOGGLE_BUTTON(gtkconv->toolbar.font)));*/ | |
403 | |
404 return TRUE; | |
405 break; | |
406 | |
407 case 'i': | |
408 case 'I': | |
8481 | 409 if (imhtml->format_functions & GTK_IMHTML_ITALIC) { |
8466 | 410 if(imhtml->html_shortcuts) { |
8456 | 411 gtk_imhtml_toggle_italic(imhtml); |
8466 | 412 return TRUE; |
413 } | |
8481 | 414 } |
8466 | 415 return FALSE; |
8317 | 416 break; |
417 | |
418 case 'u': /* ctrl-u is GDK_Clear, which clears the line. */ | |
419 case 'U': | |
8481 | 420 if (imhtml->format_functions & GTK_IMHTML_UNDERLINE) { |
8466 | 421 if(imhtml->html_shortcuts) { |
8456 | 422 gtk_imhtml_toggle_underline(imhtml); |
8466 | 423 return TRUE; |
424 } | |
8481 | 425 } |
8466 | 426 return FALSE; |
8317 | 427 break; |
428 | |
429 case '-': | |
8420 | 430 if (imhtml->format_functions & GTK_IMHTML_SHRINK) |
431 gtk_imhtml_font_shrink(imhtml); | |
8317 | 432 return TRUE; |
433 break; | |
434 | |
435 case '=': | |
436 case '+': | |
8420 | 437 if (imhtml->format_functions & GTK_IMHTML_GROW) |
438 gtk_imhtml_font_grow(imhtml); | |
8317 | 439 return TRUE; |
440 break; | |
441 | |
442 case '1': strcpy(buf, ":-)"); break; | |
443 case '2': strcpy(buf, ":-("); break; | |
444 case '3': strcpy(buf, ";-)"); break; | |
445 case '4': strcpy(buf, ":-P"); break; | |
446 case '5': strcpy(buf, "=-O"); break; | |
447 case '6': strcpy(buf, ":-*"); break; | |
448 case '7': strcpy(buf, ">:o"); break; | |
449 case '8': strcpy(buf, "8-)"); break; | |
450 case '!': strcpy(buf, ":-$"); break; | |
451 case '@': strcpy(buf, ":-!"); break; | |
452 case '#': strcpy(buf, ":-["); break; | |
453 case '$': strcpy(buf, "O:-)"); break; | |
454 case '%': strcpy(buf, ":-/"); break; | |
455 case '^': strcpy(buf, ":'("); break; | |
456 case '&': strcpy(buf, ":-X"); break; | |
457 case '*': strcpy(buf, ":-D"); break; | |
6066 | 458 } |
8456 | 459 if (*buf && imhtml->smiley_shortcuts) { |
460 gtk_imhtml_insert_smiley(imhtml, imhtml->protocol_name, buf); | |
8317 | 461 return TRUE; |
462 } | |
6066 | 463 return FALSE; |
464 } | |
465 | |
7404
d889a99e0eb1
[gaim-migrate @ 8000]
Christian Hammond <chipx86@chipx86.com>
parents:
7386
diff
changeset
|
466 #if GTK_CHECK_VERSION(2,2,0) |
8061 | 467 static void gtk_imhtml_clipboard_get(GtkClipboard *clipboard, GtkSelectionData *selection_data, guint info, GtkIMHtml *imhtml) { |
468 GtkTextIter start, end; | |
469 GtkTextMark *sel = gtk_text_buffer_get_selection_bound(imhtml->text_buffer); | |
470 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
471 char *text; | |
472 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &start, sel); | |
473 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &end, ins); | |
474 | |
475 | |
476 if (info == TARGET_HTML) { | |
8149 | 477 int len; |
8148 | 478 char *selection; |
8061 | 479 GString *str = g_string_new(NULL); |
480 text = gtk_imhtml_get_markup_range(imhtml, &start, &end); | |
481 | |
482 /* Mozilla asks that we start our text/html with the Unicode byte order mark */ | |
483 str = g_string_append_unichar(str, 0xfeff); | |
484 str = g_string_append(str, text); | |
485 str = g_string_append_unichar(str, 0x0000); | |
8148 | 486 selection = g_convert(str->str, str->len, "UCS-2", "UTF-8", NULL, &len, NULL); |
8061 | 487 gtk_selection_data_set (selection_data, gdk_atom_intern("text/html", FALSE), 16, selection, len); |
488 g_string_free(str, TRUE); | |
489 g_free(selection); | |
490 } else { | |
491 text = gtk_text_buffer_get_text(imhtml->text_buffer, &start, &end, FALSE); | |
492 gtk_selection_data_set_text(selection_data, text, strlen(text)); | |
493 } | |
494 g_free(text); | |
495 } | |
496 | |
497 static void gtk_imhtml_primary_clipboard_clear(GtkClipboard *clipboard, GtkIMHtml *imhtml) | |
7749 | 498 { |
8061 | 499 GtkTextIter insert; |
500 GtkTextIter selection_bound; | |
501 | |
502 gtk_text_buffer_get_iter_at_mark (imhtml->text_buffer, &insert, | |
503 gtk_text_buffer_get_mark (imhtml->text_buffer, "insert")); | |
504 gtk_text_buffer_get_iter_at_mark (imhtml->text_buffer, &selection_bound, | |
505 gtk_text_buffer_get_mark (imhtml->text_buffer, "selection_bound")); | |
506 | |
507 if (!gtk_text_iter_equal (&insert, &selection_bound)) | |
508 gtk_text_buffer_move_mark (imhtml->text_buffer, | |
509 gtk_text_buffer_get_mark (imhtml->text_buffer, "selection_bound"), | |
510 &insert); | |
7749 | 511 } |
7742 | 512 |
7749 | 513 static void copy_clipboard_cb(GtkIMHtml *imhtml, GtkClipboard *clipboard) |
514 { | |
8061 | 515 gtk_clipboard_set_with_owner(gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_CLIPBOARD), |
516 selection_targets, sizeof(selection_targets) / sizeof(GtkTargetEntry), | |
517 (GtkClipboardGetFunc)gtk_imhtml_clipboard_get, | |
518 (GtkClipboardClearFunc)NULL, G_OBJECT(imhtml)); | |
7346 | 519 |
8061 | 520 g_signal_stop_emission_by_name(imhtml, "copy-clipboard"); |
521 } | |
522 | |
523 static void paste_received_cb (GtkClipboard *clipboard, GtkSelectionData *selection_data, gpointer data) | |
524 { | |
525 char *text; | |
526 guint16 c; | |
527 GtkIMHtml *imhtml = data; | |
7809 | 528 |
8123 | 529 if (!gtk_text_view_get_editable(GTK_TEXT_VIEW(imhtml))) |
8105 | 530 return; |
531 | |
8061 | 532 if (selection_data->length < 0) { |
533 text = gtk_clipboard_wait_for_text(clipboard); | |
8128
9aafd344230d
[gaim-migrate @ 8833]
Christian Hammond <chipx86@chipx86.com>
parents:
8123
diff
changeset
|
534 |
9aafd344230d
[gaim-migrate @ 8833]
Christian Hammond <chipx86@chipx86.com>
parents:
8123
diff
changeset
|
535 if (text == NULL) |
9aafd344230d
[gaim-migrate @ 8833]
Christian Hammond <chipx86@chipx86.com>
parents:
8123
diff
changeset
|
536 return; |
9aafd344230d
[gaim-migrate @ 8833]
Christian Hammond <chipx86@chipx86.com>
parents:
8123
diff
changeset
|
537 |
8061 | 538 } else { |
539 text = g_malloc((selection_data->format / 8) * selection_data->length); | |
540 memcpy(text, selection_data->data, selection_data->length * (selection_data->format / 8)); | |
7766 | 541 } |
8061 | 542 |
543 memcpy (&c, text, 2); | |
544 if (c == 0xfeff) { | |
545 /* This is UCS2 */ | |
546 char *utf8 = g_convert(text+2, (selection_data->length * (selection_data->format / 8)) - 2, "UTF-8", "UCS-2", NULL, NULL, NULL); | |
547 g_free(text); | |
548 text = utf8; | |
549 } | |
550 gtk_imhtml_close_tags(imhtml); | |
551 gtk_imhtml_append_text_with_images(imhtml, text, GTK_IMHTML_NO_NEWLINE, NULL); | |
552 } | |
553 | |
554 | |
555 static void paste_clipboard_cb(GtkIMHtml *imhtml, gpointer blah) | |
556 { | |
557 | |
558 GtkClipboard *clipboard = gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_CLIPBOARD); | |
559 gtk_clipboard_request_contents(clipboard, gdk_atom_intern("text/html", FALSE), | |
560 paste_received_cb, imhtml); | |
561 g_signal_stop_emission_by_name(imhtml, "paste-clipboard"); | |
7766 | 562 } |
563 | |
7346 | 564 static gboolean button_release_cb(GtkIMHtml *imhtml, GdkEventButton event, gpointer the_foibles_of_man) |
565 { | |
8061 | 566 GtkClipboard *clipboard; |
567 if (event.button == 1) { | |
568 if ((clipboard = gtk_widget_get_clipboard (GTK_WIDGET (imhtml), | |
569 GDK_SELECTION_PRIMARY))) | |
570 gtk_text_buffer_remove_selection_clipboard (imhtml->text_buffer, clipboard); | |
571 gtk_clipboard_set_with_owner(gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_PRIMARY), | |
572 selection_targets, sizeof(selection_targets) / sizeof(GtkTargetEntry), | |
573 (GtkClipboardGetFunc)gtk_imhtml_clipboard_get, | |
574 (GtkClipboardClearFunc)gtk_imhtml_primary_clipboard_clear, G_OBJECT(imhtml)); | |
575 } | |
7346 | 576 return FALSE; |
577 } | |
7404
d889a99e0eb1
[gaim-migrate @ 8000]
Christian Hammond <chipx86@chipx86.com>
parents:
7386
diff
changeset
|
578 #endif |
5967 | 579 |
4263 | 580 |
4032 | 581 static GtkTextViewClass *parent_class = NULL; |
582 | |
583 static void | |
584 gtk_imhtml_finalize (GObject *object) | |
585 { | |
586 GtkIMHtml *imhtml = GTK_IMHTML(object); | |
4895 | 587 GList *scalables; |
8061 | 588 |
4138 | 589 g_hash_table_destroy(imhtml->smiley_data); |
4032 | 590 gtk_smiley_tree_destroy(imhtml->default_smilies); |
4138 | 591 gdk_cursor_unref(imhtml->hand_cursor); |
592 gdk_cursor_unref(imhtml->arrow_cursor); | |
8061 | 593 gdk_cursor_unref(imhtml->text_cursor); |
8456 | 594 |
4735 | 595 if(imhtml->tip_window){ |
596 gtk_widget_destroy(imhtml->tip_window); | |
597 } | |
598 if(imhtml->tip_timer) | |
599 gtk_timeout_remove(imhtml->tip_timer); | |
600 | |
4895 | 601 for(scalables = imhtml->scalables; scalables; scalables = scalables->next) { |
602 GtkIMHtmlScalable *scale = GTK_IMHTML_SCALABLE(scalables->data); | |
603 scale->free(scale); | |
604 } | |
7991 | 605 |
4895 | 606 g_list_free(imhtml->scalables); |
4032 | 607 G_OBJECT_CLASS(parent_class)->finalize (object); |
608 } | |
1428 | 609 |
3922 | 610 /* Boring GTK stuff */ |
611 static void gtk_imhtml_class_init (GtkIMHtmlClass *class) | |
1428 | 612 { |
3922 | 613 GtkObjectClass *object_class; |
4032 | 614 GObjectClass *gobject_class; |
3922 | 615 object_class = (GtkObjectClass*) class; |
4032 | 616 gobject_class = (GObjectClass*) class; |
617 parent_class = gtk_type_class(GTK_TYPE_TEXT_VIEW); | |
4417 | 618 signals[URL_CLICKED] = g_signal_new("url_clicked", |
619 G_TYPE_FROM_CLASS(gobject_class), | |
620 G_SIGNAL_RUN_FIRST, | |
621 G_STRUCT_OFFSET(GtkIMHtmlClass, url_clicked), | |
622 NULL, | |
623 0, | |
624 g_cclosure_marshal_VOID__POINTER, | |
625 G_TYPE_NONE, 1, | |
626 G_TYPE_POINTER); | |
8420 | 627 signals[BUTTONS_UPDATE] = g_signal_new("format_functions_update", |
628 G_TYPE_FROM_CLASS(gobject_class), | |
629 G_SIGNAL_RUN_FIRST, | |
630 G_STRUCT_OFFSET(GtkIMHtmlClass, buttons_update), | |
631 NULL, | |
632 0, | |
633 g_cclosure_marshal_VOID__POINTER, | |
634 G_TYPE_NONE, 1, | |
635 G_TYPE_INT); | |
636 signals[TOGGLE_FORMAT] = g_signal_new("format_function_toggle", | |
637 G_TYPE_FROM_CLASS(gobject_class), | |
638 G_SIGNAL_RUN_FIRST, | |
639 G_STRUCT_OFFSET(GtkIMHtmlClass, toggle_format), | |
640 NULL, | |
641 0, | |
642 g_cclosure_marshal_VOID__POINTER, | |
8427 | 643 G_TYPE_NONE, 1, |
8420 | 644 G_TYPE_INT); |
8427 | 645 signals[CLEAR_FORMAT] = g_signal_new("format_function_clear", |
646 G_TYPE_FROM_CLASS(gobject_class), | |
647 G_SIGNAL_RUN_FIRST, | |
648 G_STRUCT_OFFSET(GtkIMHtmlClass, clear_format), | |
649 NULL, | |
650 0, | |
8481 | 651 g_cclosure_marshal_VOID__VOID, |
652 G_TYPE_NONE, 0); | |
4032 | 653 gobject_class->finalize = gtk_imhtml_finalize; |
1428 | 654 } |
655 | |
3922 | 656 static void gtk_imhtml_init (GtkIMHtml *imhtml) |
1428 | 657 { |
3922 | 658 GtkTextIter iter; |
659 imhtml->text_buffer = gtk_text_buffer_new(NULL); | |
660 gtk_text_buffer_get_end_iter (imhtml->text_buffer, &iter); | |
661 imhtml->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, FALSE); | |
662 gtk_text_view_set_buffer(GTK_TEXT_VIEW(imhtml), imhtml->text_buffer); | |
5105 | 663 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(imhtml), GTK_WRAP_WORD_CHAR); |
3922 | 664 gtk_text_view_set_pixels_below_lines(GTK_TEXT_VIEW(imhtml), 5); |
8061 | 665 /*gtk_text_view_set_indent(GTK_TEXT_VIEW(imhtml), -15);*/ |
3922 | 666 /*gtk_text_view_set_justification(GTK_TEXT_VIEW(imhtml), GTK_JUSTIFY_FILL);*/ |
8061 | 667 |
3922 | 668 /* These tags will be used often and can be reused--we create them on init and then apply them by name |
8061 | 669 * other tags (color, size, face, etc.) will have to be created and applied dynamically */ |
3922 | 670 gtk_text_buffer_create_tag(imhtml->text_buffer, "BOLD", "weight", PANGO_WEIGHT_BOLD, NULL); |
671 gtk_text_buffer_create_tag(imhtml->text_buffer, "ITALICS", "style", PANGO_STYLE_ITALIC, NULL); | |
672 gtk_text_buffer_create_tag(imhtml->text_buffer, "UNDERLINE", "underline", PANGO_UNDERLINE_SINGLE, NULL); | |
673 gtk_text_buffer_create_tag(imhtml->text_buffer, "STRIKE", "strikethrough", TRUE, NULL); | |
674 gtk_text_buffer_create_tag(imhtml->text_buffer, "SUB", "rise", -5000, NULL); | |
675 gtk_text_buffer_create_tag(imhtml->text_buffer, "SUP", "rise", 5000, NULL); | |
676 gtk_text_buffer_create_tag(imhtml->text_buffer, "PRE", "family", "Monospace", NULL); | |
7295 | 677 gtk_text_buffer_create_tag(imhtml->text_buffer, "search", "background", "#22ff00", "weight", "bold", NULL); |
8061 | 678 gtk_text_buffer_create_tag(imhtml->text_buffer, "LINK", "foreground", "blue", "underline", PANGO_UNDERLINE_SINGLE, NULL); |
3922 | 679 /* When hovering over a link, we show the hand cursor--elsewhere we show the plain ol' pointer cursor */ |
680 imhtml->hand_cursor = gdk_cursor_new (GDK_HAND2); | |
681 imhtml->arrow_cursor = gdk_cursor_new (GDK_LEFT_PTR); | |
8061 | 682 imhtml->text_cursor = gdk_cursor_new (GDK_XTERM); |
2993 | 683 |
4253 | 684 imhtml->show_smileys = TRUE; |
6124 | 685 imhtml->show_comments = TRUE; |
4253 | 686 |
4892 | 687 imhtml->smiley_data = g_hash_table_new_full(g_str_hash, g_str_equal, |
4902 | 688 g_free, (GDestroyNotify)gtk_smiley_tree_destroy); |
4032 | 689 imhtml->default_smilies = gtk_smiley_tree_new(); |
4735 | 690 |
4944 | 691 g_signal_connect(G_OBJECT(imhtml), "size-allocate", G_CALLBACK(gtk_size_allocate_cb), NULL); |
4735 | 692 g_signal_connect(G_OBJECT(imhtml), "motion-notify-event", G_CALLBACK(gtk_motion_event_notify), NULL); |
4944 | 693 g_signal_connect(G_OBJECT(imhtml), "leave-notify-event", G_CALLBACK(gtk_leave_event_notify), NULL); |
6066 | 694 g_signal_connect(G_OBJECT(imhtml), "key_press_event", G_CALLBACK(gtk_key_pressed_cb), NULL); |
8061 | 695 g_signal_connect_after(G_OBJECT(imhtml->text_buffer), "insert-text", G_CALLBACK(insert_cb), imhtml); |
8091 | 696 |
697 gtk_drag_dest_set(GTK_WIDGET(imhtml), 0, | |
698 link_drag_drop_targets, sizeof(link_drag_drop_targets) / sizeof(GtkTargetEntry), | |
699 GDK_ACTION_COPY); | |
700 g_signal_connect(G_OBJECT(imhtml), "drag_data_received", G_CALLBACK(gtk_imhtml_link_drag_rcv_cb), imhtml); | |
701 | |
8427 | 702 #if 0 /* Remove buggy copy-and-paste for 0.76 */ |
7404
d889a99e0eb1
[gaim-migrate @ 8000]
Christian Hammond <chipx86@chipx86.com>
parents:
7386
diff
changeset
|
703 #if GTK_CHECK_VERSION(2,2,0) |
7353 | 704 g_signal_connect(G_OBJECT(imhtml), "copy-clipboard", G_CALLBACK(copy_clipboard_cb), NULL); |
8061 | 705 g_signal_connect(G_OBJECT(imhtml), "paste-clipboard", G_CALLBACK(paste_clipboard_cb), NULL); |
7346 | 706 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
|
707 #endif |
8427 | 708 #endif |
4944 | 709 gtk_widget_add_events(GTK_WIDGET(imhtml), GDK_LEAVE_NOTIFY_MASK); |
4735 | 710 |
711 imhtml->tip = NULL; | |
712 imhtml->tip_timer = 0; | |
713 imhtml->tip_window = NULL; | |
4895 | 714 |
8061 | 715 imhtml->edit.bold = NULL; |
716 imhtml->edit.italic = NULL; | |
717 imhtml->edit.underline = NULL; | |
718 imhtml->edit.forecolor = NULL; | |
719 imhtml->edit.backcolor = NULL; | |
720 imhtml->edit.fontface = NULL; | |
721 imhtml->edit.sizespan = NULL; | |
722 imhtml->edit.fontsize = 3; | |
723 | |
724 imhtml->format_spans = NULL; | |
725 | |
4895 | 726 imhtml->scalables = NULL; |
8061 | 727 |
728 gtk_imhtml_set_editable(imhtml, FALSE); | |
2993 | 729 } |
730 | |
3922 | 731 GtkWidget *gtk_imhtml_new(void *a, void *b) |
1428 | 732 { |
4635 | 733 return GTK_WIDGET(g_object_new(gtk_imhtml_get_type(), NULL)); |
1428 | 734 } |
735 | |
4635 | 736 GType gtk_imhtml_get_type() |
1428 | 737 { |
4635 | 738 static GType imhtml_type = 0; |
1428 | 739 |
740 if (!imhtml_type) { | |
4635 | 741 static const GTypeInfo imhtml_info = { |
742 sizeof(GtkIMHtmlClass), | |
743 NULL, | |
744 NULL, | |
745 (GClassInitFunc) gtk_imhtml_class_init, | |
746 NULL, | |
747 NULL, | |
1428 | 748 sizeof (GtkIMHtml), |
4635 | 749 0, |
750 (GInstanceInitFunc) gtk_imhtml_init | |
1428 | 751 }; |
4635 | 752 |
753 imhtml_type = g_type_register_static(gtk_text_view_get_type(), | |
754 "GtkIMHtml", &imhtml_info, 0); | |
1428 | 755 } |
756 | |
757 return imhtml_type; | |
758 } | |
759 | |
4417 | 760 struct url_data { |
761 GObject *object; | |
762 gchar *url; | |
763 }; | |
764 | |
765 static void url_open(GtkWidget *w, struct url_data *data) { | |
766 if(!data) return; | |
8061 | 767 g_signal_emit(data->object, signals[URL_CLICKED], 0, data->url); |
7988 | 768 |
4417 | 769 g_object_unref(data->object); |
770 g_free(data->url); | |
771 g_free(data); | |
772 } | |
5582 | 773 |
4417 | 774 static void url_copy(GtkWidget *w, gchar *url) { |
775 GtkClipboard *clipboard; | |
776 | |
5293
ead927e2543f
[gaim-migrate @ 5665]
Christian Hammond <chipx86@chipx86.com>
parents:
5282
diff
changeset
|
777 clipboard = gtk_clipboard_get(GDK_SELECTION_PRIMARY); |
4417 | 778 gtk_clipboard_set_text(clipboard, url, -1); |
5582 | 779 |
780 clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD); | |
781 gtk_clipboard_set_text(clipboard, url, -1); | |
4417 | 782 } |
783 | |
784 /* The callback for an event on a link tag. */ | |
5091 | 785 gboolean tag_event(GtkTextTag *tag, GObject *imhtml, GdkEvent *event, GtkTextIter *arg2, char *url) { |
4417 | 786 GdkEventButton *event_button = (GdkEventButton *) event; |
8061 | 787 if (GTK_IMHTML(imhtml)->editable) |
788 return FALSE; | |
3922 | 789 if (event->type == GDK_BUTTON_RELEASE) { |
8061 | 790 if (event_button->button == 1) { |
4417 | 791 GtkTextIter start, end; |
792 /* we shouldn't open a URL if the user has selected something: */ | |
793 gtk_text_buffer_get_selection_bounds( | |
794 gtk_text_iter_get_buffer(arg2), &start, &end); | |
795 if(gtk_text_iter_get_offset(&start) != | |
796 gtk_text_iter_get_offset(&end)) | |
797 return FALSE; | |
798 | |
799 /* A link was clicked--we emit the "url_clicked" signal | |
800 * with the URL as the argument */ | |
5091 | 801 g_signal_emit(imhtml, signals[URL_CLICKED], 0, url); |
4417 | 802 return FALSE; |
803 } else if(event_button->button == 3) { | |
4745 | 804 GtkWidget *img, *item, *menu; |
4417 | 805 struct url_data *tempdata = g_new(struct url_data, 1); |
5091 | 806 tempdata->object = g_object_ref(imhtml); |
4417 | 807 tempdata->url = g_strdup(url); |
4745 | 808 |
5091 | 809 /* Don't want the tooltip around if user right-clicked on link */ |
810 if (GTK_IMHTML(imhtml)->tip_window) { | |
811 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
812 GTK_IMHTML(imhtml)->tip_window = NULL; | |
813 } | |
814 if (GTK_IMHTML(imhtml)->tip_timer) { | |
815 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
816 GTK_IMHTML(imhtml)->tip_timer = 0; | |
817 } | |
8061 | 818 if (GTK_IMHTML(imhtml)->editable) |
819 gdk_window_set_cursor(event_button->window, GTK_IMHTML(imhtml)->text_cursor); | |
820 else | |
821 gdk_window_set_cursor(event_button->window, GTK_IMHTML(imhtml)->arrow_cursor); | |
4417 | 822 menu = gtk_menu_new(); |
4745 | 823 |
4417 | 824 /* buttons and such */ |
825 | |
7140
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
826 if (!strncmp(url, "mailto:", 7)) |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
827 { |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
828 /* Copy E-Mail Address */ |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
829 img = gtk_image_new_from_stock(GTK_STOCK_COPY, |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
830 GTK_ICON_SIZE_MENU); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
831 item = gtk_image_menu_item_new_with_mnemonic( |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
832 _("_Copy E-Mail Address")); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
833 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
|
834 g_signal_connect(G_OBJECT(item), "activate", |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
835 G_CALLBACK(url_copy), url + 7); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
836 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
837 } |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
838 else |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
839 { |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
840 /* Copy Link Location */ |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
841 img = gtk_image_new_from_stock(GTK_STOCK_COPY, |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
842 GTK_ICON_SIZE_MENU); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
843 item = gtk_image_menu_item_new_with_mnemonic( |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
844 _("_Copy Link Location")); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
845 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
|
846 g_signal_connect(G_OBJECT(item), "activate", |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
847 G_CALLBACK(url_copy), url); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
848 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
849 |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
850 /* Open Link in Browser */ |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
851 img = gtk_image_new_from_stock(GTK_STOCK_JUMP_TO, |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
852 GTK_ICON_SIZE_MENU); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
853 item = gtk_image_menu_item_new_with_mnemonic( |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
854 _("_Open Link in Browser")); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
855 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
|
856 g_signal_connect(G_OBJECT(item), "activate", |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
857 G_CALLBACK(url_open), tempdata); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
858 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
859 } |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
860 |
4756 | 861 |
4417 | 862 gtk_widget_show_all(menu); |
4756 | 863 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, |
864 event_button->button, event_button->time); | |
4745 | 865 |
4417 | 866 return TRUE; |
867 } | |
1428 | 868 } |
4417 | 869 if(event->type == GDK_BUTTON_PRESS && event_button->button == 3) |
870 return TRUE; /* Clicking the right mouse button on a link shouldn't | |
871 be caught by the regular GtkTextView menu */ | |
872 else | |
873 return FALSE; /* Let clicks go through if we didn't catch anything */ | |
1428 | 874 } |
875 | |
8091 | 876 static void |
877 gtk_imhtml_link_drag_rcv_cb(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, | |
878 GtkSelectionData *sd, guint info, guint t, GtkIMHtml *imhtml) | |
879 { | |
880 if(gtk_imhtml_get_editable(imhtml) && sd->data){ | |
881 gchar **links; | |
882 gchar *link; | |
883 | |
884 gaim_str_strip_cr(sd->data); | |
885 | |
886 links = g_strsplit(sd->data, "\n", 0); | |
887 while((link = *links++) != NULL){ | |
888 if(gaim_str_has_prefix(link, "http://") || | |
889 gaim_str_has_prefix(link, "https://") || | |
890 gaim_str_has_prefix(link, "ftp://")){ | |
891 gtk_imhtml_insert_link(imhtml, link, link); | |
892 } else if (link=='\0') { | |
8177 | 893 /* Ignore blank lines */ |
8091 | 894 } else { |
8177 | 895 /* Special reasons, aka images being put in via other tag, etc. */ |
8091 | 896 } |
897 } | |
898 | |
899 gtk_drag_finish(dc, TRUE, (dc->action == GDK_ACTION_MOVE), t); | |
900 } else { | |
901 gtk_drag_finish(dc, FALSE, FALSE, t); | |
902 } | |
903 } | |
904 | |
4298 | 905 /* this isn't used yet |
4032 | 906 static void |
4263 | 907 gtk_smiley_tree_remove (GtkSmileyTree *tree, |
908 GtkIMHtmlSmiley *smiley) | |
4032 | 909 { |
910 GtkSmileyTree *t = tree; | |
4263 | 911 const gchar *x = smiley->smile; |
4032 | 912 gint len = 0; |
913 | |
914 while (*x) { | |
915 gchar *pos; | |
916 | |
917 if (!t->values) | |
918 return; | |
919 | |
920 pos = strchr (t->values->str, *x); | |
921 if (pos) | |
922 t = t->children [(int) pos - (int) t->values->str]; | |
923 else | |
924 return; | |
925 | |
926 x++; len++; | |
927 } | |
928 | |
4141
ccec4fde84f4
[gaim-migrate @ 4359]
Christian Hammond <chipx86@chipx86.com>
parents:
4140
diff
changeset
|
929 if (t->image) { |
4032 | 930 t->image = NULL; |
4141
ccec4fde84f4
[gaim-migrate @ 4359]
Christian Hammond <chipx86@chipx86.com>
parents:
4140
diff
changeset
|
931 } |
4032 | 932 } |
4298 | 933 */ |
934 | |
4032 | 935 |
936 static gint | |
937 gtk_smiley_tree_lookup (GtkSmileyTree *tree, | |
938 const gchar *text) | |
939 { | |
940 GtkSmileyTree *t = tree; | |
941 const gchar *x = text; | |
942 gint len = 0; | |
943 | |
944 while (*x) { | |
945 gchar *pos; | |
946 | |
947 if (!t->values) | |
948 break; | |
949 | |
950 pos = strchr (t->values->str, *x); | |
951 if (pos) | |
7371 | 952 t = t->children [GPOINTER_TO_INT(pos) - GPOINTER_TO_INT(t->values->str)]; |
4032 | 953 else |
954 break; | |
955 | |
956 x++; len++; | |
957 } | |
958 | |
959 if (t->image) | |
960 return len; | |
961 | |
962 return 0; | |
963 } | |
964 | |
965 void | |
4263 | 966 gtk_imhtml_associate_smiley (GtkIMHtml *imhtml, |
967 gchar *sml, | |
968 GtkIMHtmlSmiley *smiley) | |
4032 | 969 { |
970 GtkSmileyTree *tree; | |
971 g_return_if_fail (imhtml != NULL); | |
972 g_return_if_fail (GTK_IS_IMHTML (imhtml)); | |
7371 | 973 |
4032 | 974 if (sml == NULL) |
975 tree = imhtml->default_smilies; | |
976 else if ((tree = g_hash_table_lookup(imhtml->smiley_data, sml))) { | |
977 } else { | |
978 tree = gtk_smiley_tree_new(); | |
4892 | 979 g_hash_table_insert(imhtml->smiley_data, g_strdup(sml), tree); |
4032 | 980 } |
981 | |
4263 | 982 gtk_smiley_tree_insert (tree, smiley); |
4032 | 983 } |
984 | |
985 static gboolean | |
986 gtk_imhtml_is_smiley (GtkIMHtml *imhtml, | |
987 GSList *fonts, | |
988 const gchar *text, | |
989 gint *len) | |
990 { | |
991 GtkSmileyTree *tree; | |
5967 | 992 GtkIMHtmlFontDetail *font; |
4032 | 993 char *sml = NULL; |
8473 | 994 char *unescaped = NULL; |
4032 | 995 |
996 if (fonts) { | |
997 font = fonts->data; | |
998 sml = font->sml; | |
999 } | |
1000 | |
1001 if (sml == NULL) | |
1002 tree = imhtml->default_smilies; | |
1003 else { | |
1004 tree = g_hash_table_lookup(imhtml->smiley_data, sml); | |
1005 } | |
1006 if (tree == NULL) | |
1007 return FALSE; | |
7371 | 1008 |
8473 | 1009 unescaped = gaim_unescape_html(text); |
1010 *len = gtk_smiley_tree_lookup (tree, unescaped); | |
1011 g_free(unescaped); | |
4032 | 1012 return (*len > 0); |
1013 } | |
1014 | |
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
1015 GdkPixbufAnimation * |
4032 | 1016 gtk_smiley_tree_image (GtkIMHtml *imhtml, |
1017 const gchar *sml, | |
1018 const gchar *text) | |
1019 { | |
1020 GtkSmileyTree *t; | |
1021 const gchar *x = text; | |
1022 if (sml == NULL) | |
1023 t = imhtml->default_smilies; | |
7371 | 1024 else |
4032 | 1025 t = g_hash_table_lookup(imhtml->smiley_data, sml); |
7371 | 1026 |
4032 | 1027 |
1028 if (t == NULL) | |
1029 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
1030 | |
1031 while (*x) { | |
1032 gchar *pos; | |
1033 | |
1034 if (!t->values) { | |
1035 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
1036 } | |
7371 | 1037 |
4032 | 1038 pos = strchr (t->values->str, *x); |
1039 if (pos) { | |
7371 | 1040 t = t->children [GPOINTER_TO_INT(pos) - GPOINTER_TO_INT(t->values->str)]; |
4032 | 1041 } else { |
1042 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
1043 } | |
1044 x++; | |
1045 } | |
1046 | |
4263 | 1047 if (!t->image->icon) |
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
1048 t->image->icon = gdk_pixbuf_animation_new_from_file(t->image->file, NULL); |
4263 | 1049 |
1050 return t->image->icon; | |
4032 | 1051 } |
4793 | 1052 #define VALID_TAG(x) if (!g_ascii_strncasecmp (string, x ">", strlen (x ">"))) { \ |
3922 | 1053 *tag = g_strndup (string, strlen (x)); \ |
1054 *len = strlen (x) + 1; \ | |
1055 return TRUE; \ | |
1056 } \ | |
1057 (*type)++ | |
1428 | 1058 |
4793 | 1059 #define VALID_OPT_TAG(x) if (!g_ascii_strncasecmp (string, x " ", strlen (x " "))) { \ |
3922 | 1060 const gchar *c = string + strlen (x " "); \ |
1061 gchar e = '"'; \ | |
1062 gboolean quote = FALSE; \ | |
1063 while (*c) { \ | |
1064 if (*c == '"' || *c == '\'') { \ | |
1065 if (quote && (*c == e)) \ | |
1066 quote = !quote; \ | |
1067 else if (!quote) { \ | |
1068 quote = !quote; \ | |
1069 e = *c; \ | |
1070 } \ | |
1071 } else if (!quote && (*c == '>')) \ | |
1072 break; \ | |
1073 c++; \ | |
1074 } \ | |
1075 if (*c) { \ | |
1076 *tag = g_strndup (string, c - string); \ | |
1077 *len = c - string + 1; \ | |
1078 return TRUE; \ | |
1079 } \ | |
1080 } \ | |
1081 (*type)++ | |
1428 | 1082 |
1083 | |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1084 static gboolean |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1085 gtk_imhtml_is_amp_escape (const gchar *string, |
7280 | 1086 gchar **replace, |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1087 gint *length) |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1088 { |
7287 | 1089 static char buf[7]; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1090 g_return_val_if_fail (string != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1091 g_return_val_if_fail (replace != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1092 g_return_val_if_fail (length != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1093 |
4793 | 1094 if (!g_ascii_strncasecmp (string, "&", 5)) { |
7280 | 1095 *replace = "&"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1096 *length = 5; |
4793 | 1097 } else if (!g_ascii_strncasecmp (string, "<", 4)) { |
7280 | 1098 *replace = "<"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1099 *length = 4; |
4793 | 1100 } else if (!g_ascii_strncasecmp (string, ">", 4)) { |
7280 | 1101 *replace = ">"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1102 *length = 4; |
4793 | 1103 } else if (!g_ascii_strncasecmp (string, " ", 6)) { |
7280 | 1104 *replace = " "; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1105 *length = 6; |
4793 | 1106 } else if (!g_ascii_strncasecmp (string, "©", 6)) { |
7280 | 1107 *replace = "©"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1108 *length = 6; |
4793 | 1109 } else if (!g_ascii_strncasecmp (string, """, 6)) { |
7280 | 1110 *replace = "\""; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1111 *length = 6; |
4793 | 1112 } else if (!g_ascii_strncasecmp (string, "®", 5)) { |
7280 | 1113 *replace = "®"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1114 *length = 5; |
5093 | 1115 } else if (!g_ascii_strncasecmp (string, "'", 6)) { |
7280 | 1116 *replace = "\'"; |
5093 | 1117 *length = 6; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1118 } else if (*(string + 1) == '#') { |
2022
199ba82faacb
[gaim-migrate @ 2032]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2002
diff
changeset
|
1119 guint pound = 0; |
3004 | 1120 if ((sscanf (string, "&#%u;", £) == 1) && pound != 0) { |
7287 | 1121 int buflen; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1122 if (*(string + 3 + (gint)log10 (pound)) != ';') |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1123 return FALSE; |
7287 | 1124 buflen = g_unichar_to_utf8((gunichar)pound, buf); |
1125 buf[buflen] = '\0'; | |
7280 | 1126 *replace = buf; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1127 *length = 2; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1128 while (isdigit ((gint) string [*length])) (*length)++; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1129 if (string [*length] == ';') (*length)++; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1130 } else { |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1131 return FALSE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1132 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1133 } else { |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1134 return FALSE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1135 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1136 |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1137 return TRUE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1138 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1139 |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1140 static gboolean |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1141 gtk_imhtml_is_tag (const gchar *string, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1142 gchar **tag, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1143 gint *len, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1144 gint *type) |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1145 { |
8061 | 1146 char *close; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1147 *type = 1; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1148 |
8118 | 1149 |
8061 | 1150 if (!(close = strchr (string, '>'))) |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1151 return FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1152 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1153 VALID_TAG ("B"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1154 VALID_TAG ("BOLD"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1155 VALID_TAG ("/B"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1156 VALID_TAG ("/BOLD"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1157 VALID_TAG ("I"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1158 VALID_TAG ("ITALIC"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1159 VALID_TAG ("/I"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1160 VALID_TAG ("/ITALIC"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1161 VALID_TAG ("U"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1162 VALID_TAG ("UNDERLINE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1163 VALID_TAG ("/U"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1164 VALID_TAG ("/UNDERLINE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1165 VALID_TAG ("S"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1166 VALID_TAG ("STRIKE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1167 VALID_TAG ("/S"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1168 VALID_TAG ("/STRIKE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1169 VALID_TAG ("SUB"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1170 VALID_TAG ("/SUB"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1171 VALID_TAG ("SUP"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1172 VALID_TAG ("/SUP"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1173 VALID_TAG ("PRE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1174 VALID_TAG ("/PRE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1175 VALID_TAG ("TITLE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1176 VALID_TAG ("/TITLE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1177 VALID_TAG ("BR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1178 VALID_TAG ("HR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1179 VALID_TAG ("/FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1180 VALID_TAG ("/A"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1181 VALID_TAG ("P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1182 VALID_TAG ("/P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1183 VALID_TAG ("H3"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1184 VALID_TAG ("/H3"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1185 VALID_TAG ("HTML"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1186 VALID_TAG ("/HTML"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1187 VALID_TAG ("BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1188 VALID_TAG ("/BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1189 VALID_TAG ("FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1190 VALID_TAG ("HEAD"); |
2993 | 1191 VALID_TAG ("/HEAD"); |
1192 VALID_TAG ("BINARY"); | |
1193 VALID_TAG ("/BINARY"); | |
5093 | 1194 |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1195 VALID_OPT_TAG ("HR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1196 VALID_OPT_TAG ("FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1197 VALID_OPT_TAG ("BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1198 VALID_OPT_TAG ("A"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1199 VALID_OPT_TAG ("IMG"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1200 VALID_OPT_TAG ("P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1201 VALID_OPT_TAG ("H3"); |
5093 | 1202 VALID_OPT_TAG ("HTML"); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1203 |
5101 | 1204 VALID_TAG ("CITE"); |
1205 VALID_TAG ("/CITE"); | |
1206 VALID_TAG ("EM"); | |
1207 VALID_TAG ("/EM"); | |
1208 VALID_TAG ("STRONG"); | |
1209 VALID_TAG ("/STRONG"); | |
1210 | |
5104 | 1211 VALID_OPT_TAG ("SPAN"); |
1212 VALID_TAG ("/SPAN"); | |
5174 | 1213 VALID_TAG ("BR/"); /* hack until gtkimhtml handles things better */ |
6982 | 1214 VALID_TAG ("IMG"); |
8026 | 1215 VALID_TAG("SPAN"); |
8061 | 1216 VALID_OPT_TAG("BR"); |
7988 | 1217 |
4793 | 1218 if (!g_ascii_strncasecmp(string, "!--", strlen ("!--"))) { |
2954
f6c4f2187c08
[gaim-migrate @ 2967]
Christian Hammond <chipx86@chipx86.com>
parents:
2898
diff
changeset
|
1219 gchar *e = strstr (string + strlen("!--"), "-->"); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1220 if (e) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1221 *len = e - string + strlen ("-->"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1222 *tag = g_strndup (string + strlen ("!--"), *len - strlen ("!---->")); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1223 return TRUE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1224 } |
8118 | 1225 } |
1226 | |
8061 | 1227 *type = -1; |
1228 *len = close - string + 1; | |
1229 *tag = g_strndup(string, *len - 1); | |
1230 return TRUE; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1231 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1232 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1233 static gchar* |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1234 gtk_imhtml_get_html_opt (gchar *tag, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1235 const gchar *opt) |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1236 { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1237 gchar *t = tag; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1238 gchar *e, *a; |
5177 | 1239 gchar *val; |
1240 gint len; | |
7280 | 1241 gchar *c; |
5177 | 1242 GString *ret; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1243 |
4793 | 1244 while (g_ascii_strncasecmp (t, opt, strlen (opt))) { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1245 gboolean quote = FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1246 if (*t == '\0') break; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1247 while (*t && !((*t == ' ') && !quote)) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1248 if (*t == '\"') |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1249 quote = ! quote; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1250 t++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1251 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1252 while (*t && (*t == ' ')) t++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1253 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1254 |
4793 | 1255 if (!g_ascii_strncasecmp (t, opt, strlen (opt))) { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1256 t += strlen (opt); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1257 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1258 return NULL; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1259 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1260 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1261 if ((*t == '\"') || (*t == '\'')) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1262 e = a = ++t; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1263 while (*e && (*e != *(t - 1))) e++; |
2993 | 1264 if (*e == '\0') { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1265 return NULL; |
5177 | 1266 } else |
1267 val = g_strndup(a, e - a); | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1268 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1269 e = a = t; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1270 while (*e && !isspace ((gint) *e)) e++; |
5177 | 1271 val = g_strndup(a, e - a); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1272 } |
5177 | 1273 |
1274 ret = g_string_new(""); | |
1275 e = val; | |
1276 while(*e) { | |
1277 if(gtk_imhtml_is_amp_escape(e, &c, &len)) { | |
7280 | 1278 ret = g_string_append(ret, c); |
5177 | 1279 e += len; |
1280 } else { | |
1281 ret = g_string_append_c(ret, *e); | |
1282 e++; | |
1283 } | |
1284 } | |
1285 | |
1286 g_free(val); | |
1287 val = ret->str; | |
1288 g_string_free(ret, FALSE); | |
1289 return val; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1290 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1291 |
8118 | 1292 /* Inline CSS Support - Douglas Thrift */ |
1293 static gchar* | |
1294 gtk_imhtml_get_css_opt (gchar *style, | |
1295 const gchar *opt) | |
1296 { | |
1297 gchar *t = style; | |
1298 gchar *e, *a; | |
1299 gchar *val; | |
1300 gint len; | |
1301 gchar *c; | |
1302 GString *ret; | |
1303 | |
1304 while (g_ascii_strncasecmp (t, opt, strlen (opt))) { | |
8177 | 1305 /* gboolean quote = FALSE; */ |
8118 | 1306 if (*t == '\0') break; |
1307 while (*t && !((*t == ' ') /*&& !quote*/)) { | |
1308 /* if (*t == '\"') | |
8177 | 1309 quote = ! quote; */ |
8118 | 1310 t++; |
1311 } | |
1312 while (*t && (*t == ' ')) t++; | |
1313 } | |
1314 | |
1315 if (!g_ascii_strncasecmp (t, opt, strlen (opt))) { | |
1316 t += strlen (opt); | |
1317 } else { | |
1318 return NULL; | |
1319 } | |
1320 | |
1321 /* if ((*t == '\"') || (*t == '\'')) { | |
1322 e = a = ++t; | |
1323 while (*e && (*e != *(t - 1))) e++; | |
1324 if (*e == '\0') { | |
1325 return NULL; | |
1326 } else | |
1327 val = g_strndup(a, e - a); | |
1328 } else { | |
1329 e = a = t; | |
1330 while (*e && !isspace ((gint) *e)) e++; | |
1331 val = g_strndup(a, e - a); | |
1332 }*/ | |
1333 | |
1334 e = a = t; | |
1335 while (*e && *e != ';') e++; | |
1336 val = g_strndup(a, e - a); | |
1337 | |
1338 ret = g_string_new(""); | |
1339 e = val; | |
1340 while(*e) { | |
1341 if(gtk_imhtml_is_amp_escape(e, &c, &len)) { | |
1342 ret = g_string_append(ret, c); | |
1343 e += len; | |
1344 } else { | |
1345 ret = g_string_append_c(ret, *e); | |
1346 e++; | |
1347 } | |
1348 } | |
1349 | |
1350 g_free(val); | |
1351 val = ret->str; | |
1352 g_string_free(ret, FALSE); | |
1353 return val; | |
1354 } | |
3922 | 1355 |
8334 | 1356 static const char *accepted_protocols[] = { |
1357 "http://", | |
1358 "https://", | |
1359 "ftp://" | |
1360 }; | |
1361 | |
1362 static const int accepted_protocols_size = 3; | |
1363 | |
1364 /* returns if the beginning of the text is a protocol. If it is the protocol, returns the length so | |
1365 the caller knows how long the protocol string is. */ | |
1366 int gtk_imhtml_is_protocol(const char *text) | |
1367 { | |
1368 gint i; | |
1369 | |
1370 for(i=0; i<accepted_protocols_size; i++){ | |
1371 if( strncasecmp(text, accepted_protocols[i], strlen(accepted_protocols[i])) == 0 ){ | |
1372 return strlen(accepted_protocols[i]); | |
1373 } | |
1374 } | |
1375 return 0; | |
1376 } | |
1377 | |
6982 | 1378 GString* gtk_imhtml_append_text_with_images (GtkIMHtml *imhtml, |
1379 const gchar *text, | |
1380 GtkIMHtmlOptions options, | |
1381 GSList *images) | |
1428 | 1382 { |
8061 | 1383 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); |
1384 GtkTextIter insert; | |
1385 GdkRectangle rect; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1386 gint pos = 0; |
3922 | 1387 GString *str = NULL; |
8061 | 1388 GtkTextIter iter; |
1389 GtkTextMark *mark; | |
3922 | 1390 gchar *ws; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1391 gchar *tag; |
3922 | 1392 gchar *url = NULL; |
1393 gchar *bg = NULL; | |
6982 | 1394 gint len; |
4032 | 1395 gint tlen, smilelen, wpos=0; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1396 gint type; |
3922 | 1397 const gchar *c; |
7280 | 1398 gchar *amp; |
8334 | 1399 gint len_protocol; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1400 |
1428 | 1401 guint bold = 0, |
1402 italics = 0, | |
1403 underline = 0, | |
1404 strike = 0, | |
1405 sub = 0, | |
1406 sup = 0, | |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1407 title = 0, |
8061 | 1408 pre = 0; |
1428 | 1409 |
3922 | 1410 GSList *fonts = NULL; |
8061 | 1411 GtkIMHtmlScalable *scalable = NULL; |
4612 | 1412 int y, height; |
1413 | |
1428 | 1414 g_return_val_if_fail (imhtml != NULL, NULL); |
1415 g_return_val_if_fail (GTK_IS_IMHTML (imhtml), NULL); | |
1416 g_return_val_if_fail (text != NULL, NULL); | |
3922 | 1417 c = text; |
6982 | 1418 len = strlen(text); |
3922 | 1419 ws = g_malloc(len + 1); |
1420 ws[0] = 0; | |
1428 | 1421 |
1422 if (options & GTK_IMHTML_RETURN_LOG) | |
3922 | 1423 str = g_string_new(""); |
1428 | 1424 |
8061 | 1425 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &insert, ins); |
1426 | |
3922 | 1427 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); |
1428 mark = gtk_text_buffer_create_mark (imhtml->text_buffer, NULL, &iter, /* right grav */ FALSE); | |
4612 | 1429 |
8061 | 1430 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); |
4612 | 1431 gtk_text_view_get_line_yrange(GTK_TEXT_VIEW(imhtml), &iter, &y, &height); |
1432 | |
8061 | 1433 #if GTK_CHECK_VERSION(2,2,0) |
1434 gtk_imhtml_primary_clipboard_clear(NULL, imhtml); | |
1435 #endif | |
1436 gtk_text_buffer_move_mark (imhtml->text_buffer, | |
1437 gtk_text_buffer_get_mark (imhtml->text_buffer, "insert"), | |
1438 &iter); | |
1439 | |
1440 if(((y + height) - (rect.y + rect.height)) > height | |
4612 | 1441 && gtk_text_buffer_get_char_count(imhtml->text_buffer)){ |
1442 options |= GTK_IMHTML_NO_SCROLL; | |
1443 } | |
1444 | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1445 while (pos < len) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1446 if (*c == '<' && gtk_imhtml_is_tag (c + 1, &tag, &tlen, &type)) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1447 c++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1448 pos++; |
8061 | 1449 ws[wpos] = '\0'; |
1450 switch (type) | |
3922 | 1451 { |
1452 case 1: /* B */ | |
1453 case 2: /* BOLD */ | |
5101 | 1454 case 54: /* STRONG */ |
8061 | 1455 if (url) |
1456 gtk_imhtml_insert_link(imhtml, url, ws); | |
1457 else | |
1458 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1459 if (bold == 0) | |
1460 gtk_imhtml_toggle_bold(imhtml); | |
3922 | 1461 bold++; |
8061 | 1462 ws[0] = '\0'; wpos = 0; |
3922 | 1463 break; |
1464 case 3: /* /B */ | |
1465 case 4: /* /BOLD */ | |
5101 | 1466 case 55: /* /STRONG */ |
8061 | 1467 if (url) |
1468 gtk_imhtml_insert_link(imhtml, url, ws); | |
1469 else | |
1470 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1471 ws[0] = '\0'; wpos = 0; | |
1472 | |
3922 | 1473 if (bold) |
1474 bold--; | |
8061 | 1475 if (bold == 0) |
1476 gtk_imhtml_toggle_bold(imhtml); | |
3922 | 1477 break; |
1478 case 5: /* I */ | |
1479 case 6: /* ITALIC */ | |
5101 | 1480 case 52: /* EM */ |
8061 | 1481 if (url) |
1482 gtk_imhtml_insert_link(imhtml, url, ws); | |
1483 else | |
1484 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1485 ws[0] = '\0'; wpos = 0; | |
1486 if (italics == 0) | |
1487 gtk_imhtml_toggle_italic(imhtml); | |
3922 | 1488 italics++; |
1489 break; | |
1490 case 7: /* /I */ | |
1491 case 8: /* /ITALIC */ | |
5101 | 1492 case 53: /* /EM */ |
8061 | 1493 if (url) |
1494 gtk_imhtml_insert_link(imhtml, url, ws); | |
1495 else | |
1496 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1497 ws[0] = '\0'; wpos = 0; | |
3922 | 1498 if (italics) |
1499 italics--; | |
8061 | 1500 if (italics == 0) |
1501 gtk_imhtml_toggle_italic(imhtml); | |
3922 | 1502 break; |
1503 case 9: /* U */ | |
1504 case 10: /* UNDERLINE */ | |
8061 | 1505 if (url) |
1506 gtk_imhtml_insert_link(imhtml, url, ws); | |
1507 else | |
1508 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1509 ws[0] = '\0'; wpos = 0; | |
1510 if (underline == 0) | |
1511 gtk_imhtml_toggle_underline(imhtml); | |
3922 | 1512 underline++; |
1513 break; | |
1514 case 11: /* /U */ | |
1515 case 12: /* /UNDERLINE */ | |
8061 | 1516 if (url) |
1517 gtk_imhtml_insert_link(imhtml, url, ws); | |
1518 else | |
1519 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1520 ws[0] = '\0'; wpos = 0; | |
3922 | 1521 if (underline) |
1522 underline--; | |
8061 | 1523 if (underline == 0) |
1524 gtk_imhtml_toggle_underline(imhtml); | |
3922 | 1525 break; |
1526 case 13: /* S */ | |
1527 case 14: /* STRIKE */ | |
8177 | 1528 /* NEW_BIT (NEW_TEXT_BIT); */ |
3922 | 1529 strike++; |
1530 break; | |
1531 case 15: /* /S */ | |
1532 case 16: /* /STRIKE */ | |
8177 | 1533 /* NEW_BIT (NEW_TEXT_BIT); */ |
3922 | 1534 if (strike) |
1535 strike--; | |
1536 break; | |
1537 case 17: /* SUB */ | |
8177 | 1538 /* NEW_BIT (NEW_TEXT_BIT); */ |
3922 | 1539 sub++; |
1540 break; | |
1541 case 18: /* /SUB */ | |
8177 | 1542 /* NEW_BIT (NEW_TEXT_BIT); */ |
3922 | 1543 if (sub) |
1544 sub--; | |
1545 break; | |
1546 case 19: /* SUP */ | |
8177 | 1547 /* NEW_BIT (NEW_TEXT_BIT); */ |
3922 | 1548 sup++; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1549 break; |
3922 | 1550 case 20: /* /SUP */ |
8177 | 1551 /* NEW_BIT (NEW_TEXT_BIT); */ |
3922 | 1552 if (sup) |
1553 sup--; | |
1554 break; | |
1555 case 21: /* PRE */ | |
8177 | 1556 /* NEW_BIT (NEW_TEXT_BIT); */ |
3922 | 1557 pre++; |
1558 break; | |
1559 case 22: /* /PRE */ | |
8177 | 1560 /* NEW_BIT (NEW_TEXT_BIT); */ |
3922 | 1561 if (pre) |
1562 pre--; | |
1563 break; | |
1564 case 23: /* TITLE */ | |
8177 | 1565 /* NEW_BIT (NEW_TEXT_BIT); */ |
3922 | 1566 title++; |
1567 break; | |
1568 case 24: /* /TITLE */ | |
1569 if (title) { | |
1570 if (options & GTK_IMHTML_NO_TITLE) { | |
1571 wpos = 0; | |
1572 ws [wpos] = '\0'; | |
1573 } | |
1574 title--; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1575 } |
3922 | 1576 break; |
1577 case 25: /* BR */ | |
5174 | 1578 case 58: /* BR/ */ |
8061 | 1579 case 61: /* BR (opt) */ |
3922 | 1580 ws[wpos] = '\n'; |
1581 wpos++; | |
8177 | 1582 /* NEW_BIT (NEW_TEXT_BIT); */ |
6982 | 1583 break; |
3922 | 1584 case 26: /* HR */ |
1585 case 42: /* HR (opt) */ | |
1586 ws[wpos++] = '\n'; | |
8061 | 1587 if (url) |
1588 gtk_imhtml_insert_link(imhtml, url, ws); | |
1589 else | |
1590 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
5967 | 1591 scalable = gtk_imhtml_hr_new(); |
8061 | 1592 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); |
1593 scalable->add_to(scalable, imhtml, &iter); | |
1594 scalable->scale(scalable, rect.width, rect.height); | |
1595 imhtml->scalables = g_list_append(imhtml->scalables, scalable); | |
1596 ws[0] = '\0'; wpos = 0; | |
7942 | 1597 ws[wpos++] = '\n'; |
8061 | 1598 |
3922 | 1599 break; |
1600 case 27: /* /FONT */ | |
1601 if (fonts) { | |
5967 | 1602 GtkIMHtmlFontDetail *font = fonts->data; |
8061 | 1603 if (url) |
1604 gtk_imhtml_insert_link(imhtml, url, ws); | |
1605 else | |
1606 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1607 ws[0] = '\0'; wpos = 0; | |
8177 | 1608 /* NEW_BIT (NEW_TEXT_BIT); */ |
8309 | 1609 |
8061 | 1610 if (font->face) { |
1611 gtk_imhtml_toggle_fontface(imhtml, NULL); | |
3922 | 1612 g_free (font->face); |
8061 | 1613 } |
1614 if (font->fore) { | |
1615 gtk_imhtml_toggle_forecolor(imhtml, NULL); | |
3922 | 1616 g_free (font->fore); |
8061 | 1617 } |
1618 if (font->back) { | |
1619 gtk_imhtml_toggle_backcolor(imhtml, NULL); | |
3922 | 1620 g_free (font->back); |
8061 | 1621 } |
4032 | 1622 if (font->sml) |
1623 g_free (font->sml); | |
3922 | 1624 g_free (font); |
8309 | 1625 |
1626 if (font->size != 3) | |
1627 gtk_imhtml_font_set_size(imhtml, 3); | |
1628 | |
1629 fonts = fonts->next; | |
1630 if (fonts) { | |
1631 GtkIMHtmlFontDetail *font = fonts->data; | |
1632 | |
1633 if (font->face) | |
1634 gtk_imhtml_toggle_fontface(imhtml, font->face); | |
1635 if (font->fore) | |
1636 gtk_imhtml_toggle_forecolor(imhtml, font->fore); | |
1637 if (font->back) | |
1638 gtk_imhtml_toggle_backcolor(imhtml, font->back); | |
1639 if (font->size != 3) | |
1640 gtk_imhtml_font_set_size(imhtml, font->size); | |
1641 } | |
3922 | 1642 } |
8309 | 1643 break; |
3922 | 1644 case 28: /* /A */ |
1645 if (url) { | |
8061 | 1646 gtk_imhtml_insert_link(imhtml, url, ws); |
3922 | 1647 g_free(url); |
8061 | 1648 ws[0] = '\0'; wpos = 0; |
3922 | 1649 url = NULL; |
8061 | 1650 ins = gtk_text_buffer_get_insert(imhtml->text_buffer); |
1651 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); | |
2993 | 1652 } |
8061 | 1653 break; |
8118 | 1654 |
3922 | 1655 case 29: /* P */ |
1656 case 30: /* /P */ | |
1657 case 31: /* H3 */ | |
1658 case 32: /* /H3 */ | |
1659 case 33: /* HTML */ | |
1660 case 34: /* /HTML */ | |
1661 case 35: /* BODY */ | |
1662 case 36: /* /BODY */ | |
1663 case 37: /* FONT */ | |
1664 case 38: /* HEAD */ | |
1665 case 39: /* /HEAD */ | |
6982 | 1666 case 40: /* BINARY */ |
1667 case 41: /* /BINARY */ | |
3922 | 1668 break; |
1669 case 43: /* FONT (opt) */ | |
1670 { | |
4032 | 1671 gchar *color, *back, *face, *size, *sml; |
5967 | 1672 GtkIMHtmlFontDetail *font, *oldfont = NULL; |
3922 | 1673 color = gtk_imhtml_get_html_opt (tag, "COLOR="); |
1674 back = gtk_imhtml_get_html_opt (tag, "BACK="); | |
1675 face = gtk_imhtml_get_html_opt (tag, "FACE="); | |
1676 size = gtk_imhtml_get_html_opt (tag, "SIZE="); | |
4032 | 1677 sml = gtk_imhtml_get_html_opt (tag, "SML="); |
1678 if (!(color || back || face || size || sml)) | |
3922 | 1679 break; |
8061 | 1680 |
1681 if (url) | |
1682 gtk_imhtml_insert_link(imhtml, url, ws); | |
1683 else | |
1684 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1685 ws[0] = '\0'; wpos = 0; | |
1686 | |
5967 | 1687 font = g_new0 (GtkIMHtmlFontDetail, 1); |
3922 | 1688 if (fonts) |
1689 oldfont = fonts->data; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1690 |
8309 | 1691 if (color && !(options & GTK_IMHTML_NO_COLOURS)) { |
3922 | 1692 font->fore = color; |
8061 | 1693 gtk_imhtml_toggle_forecolor(imhtml, font->fore); |
8309 | 1694 } |
1695 //else if (oldfont && oldfont->fore) | |
1696 // font->fore = g_strdup(oldfont->fore); | |
1697 | |
1698 if (back && !(options & GTK_IMHTML_NO_COLOURS)) { | |
3922 | 1699 font->back = back; |
8061 | 1700 gtk_imhtml_toggle_backcolor(imhtml, font->back); |
8309 | 1701 } |
1702 //else if (oldfont && oldfont->back) | |
1703 // font->back = g_strdup(oldfont->back); | |
1704 | |
1705 if (face && !(options & GTK_IMHTML_NO_FONTS)) { | |
3922 | 1706 font->face = face; |
8061 | 1707 gtk_imhtml_toggle_fontface(imhtml, font->face); |
8309 | 1708 } |
1709 //else if (oldfont && oldfont->face) | |
1710 // font->face = g_strdup(oldfont->face); | |
4032 | 1711 |
1712 if (sml) | |
1713 font->sml = sml; | |
1714 else if (oldfont && oldfont->sml) | |
1715 font->sml = g_strdup(oldfont->sml); | |
1716 | |
3922 | 1717 if (size && !(options & GTK_IMHTML_NO_SIZES)) { |
1718 if (*size == '+') { | |
1719 sscanf (size + 1, "%hd", &font->size); | |
1720 font->size += 3; | |
1721 } else if (*size == '-') { | |
1722 sscanf (size + 1, "%hd", &font->size); | |
1723 font->size = MAX (0, 3 - font->size); | |
1724 } else if (isdigit (*size)) { | |
1725 sscanf (size, "%hd", &font->size); | |
8061 | 1726 } |
6042 | 1727 if (font->size > 100) |
1728 font->size = 100; | |
3922 | 1729 } else if (oldfont) |
1730 font->size = oldfont->size; | |
8309 | 1731 else |
1732 font->size = 3; | |
1733 gtk_imhtml_font_set_size(imhtml, font->size); | |
3922 | 1734 g_free(size); |
1735 fonts = g_slist_prepend (fonts, font); | |
1736 } | |
1737 break; | |
1738 case 44: /* BODY (opt) */ | |
1739 if (!(options & GTK_IMHTML_NO_COLOURS)) { | |
1740 char *bgcolor = gtk_imhtml_get_html_opt (tag, "BGCOLOR="); | |
1741 if (bgcolor) { | |
8061 | 1742 if (url) |
1743 gtk_imhtml_insert_link(imhtml, url, ws); | |
1744 else | |
1745 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1746 ws[0] = '\0'; wpos = 0; | |
8177 | 1747 /* NEW_BIT(NEW_TEXT_BIT); */ |
3922 | 1748 if (bg) |
1749 g_free(bg); | |
1750 bg = bgcolor; | |
8061 | 1751 gtk_imhtml_toggle_backcolor(imhtml, bg); |
2885
f72efa29c109
[gaim-migrate @ 2898]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2871
diff
changeset
|
1752 } |
1428 | 1753 } |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1754 break; |
3922 | 1755 case 45: /* A (opt) */ |
1756 { | |
1757 gchar *href = gtk_imhtml_get_html_opt (tag, "HREF="); | |
1758 if (href) { | |
8061 | 1759 if (url) { |
1760 gtk_imhtml_insert_link(imhtml, url, ws); | |
1761 g_free(url); | |
1762 } else | |
1763 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1764 ws[0] = '\0'; wpos = 0; | |
3922 | 1765 url = href; |
1766 } | |
2993 | 1767 } |
3922 | 1768 break; |
4895 | 1769 case 46: /* IMG (opt) */ |
6982 | 1770 case 59: /* IMG */ |
4895 | 1771 { |
6982 | 1772 GdkPixbuf *img = NULL; |
1773 const gchar *filename = NULL; | |
4895 | 1774 |
6982 | 1775 if (images && images->data) { |
1776 img = images->data; | |
1777 images = images->next; | |
1778 filename = g_object_get_data(G_OBJECT(img), "filename"); | |
1779 g_object_ref(G_OBJECT(img)); | |
1780 } else { | |
1781 img = gtk_widget_render_icon(GTK_WIDGET(imhtml), | |
1782 GTK_STOCK_MISSING_IMAGE, GTK_ICON_SIZE_BUTTON, | |
1783 "gtkimhtml-missing-image"); | |
1784 } | |
4895 | 1785 |
6982 | 1786 scalable = gtk_imhtml_image_new(img, filename); |
8177 | 1787 /* NEW_BIT(NEW_SCALABLE_BIT); */ |
6982 | 1788 g_object_unref(G_OBJECT(img)); |
4895 | 1789 } |
3922 | 1790 case 47: /* P (opt) */ |
1791 case 48: /* H3 (opt) */ | |
5093 | 1792 case 49: /* HTML (opt) */ |
5101 | 1793 case 50: /* CITE */ |
1794 case 51: /* /CITE */ | |
8026 | 1795 case 56: /* SPAN (opt) */ |
8118 | 1796 /* Inline CSS Support - Douglas Thrift |
1797 * | |
1798 * color | |
1799 * font-family | |
1800 * font-size | |
1801 */ | |
1802 { | |
1803 gchar *style, *color, *family, *size; | |
1804 GtkIMHtmlFontDetail *font, *oldfont = NULL; | |
1805 style = gtk_imhtml_get_html_opt (tag, "style="); | |
1806 | |
1807 if (!style) break; | |
1808 | |
1809 color = gtk_imhtml_get_css_opt (style, "color: "); | |
1810 family = gtk_imhtml_get_css_opt (style, | |
1811 "font-family: "); | |
1812 size = gtk_imhtml_get_css_opt (style, "font-size: "); | |
1813 | |
8120 | 1814 if (!(color || family || size)) { |
1815 g_free(style); | |
1816 break; | |
1817 } | |
8118 | 1818 |
1819 if (url) | |
1820 gtk_imhtml_insert_link(imhtml, url, ws); | |
1821 else | |
1822 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1823 ws[0] = '\0'; wpos = 0; | |
8177 | 1824 /* NEW_BIT (NEW_TEXT_BIT); */ |
8118 | 1825 |
1826 font = g_new0 (GtkIMHtmlFontDetail, 1); | |
1827 if (fonts) | |
1828 oldfont = fonts->data; | |
1829 | |
1830 if (color && !(options & GTK_IMHTML_NO_COLOURS)) | |
1831 font->fore = color; | |
1832 else if (oldfont && oldfont->fore) | |
1833 font->fore = g_strdup(oldfont->fore); | |
1834 | |
1835 if (oldfont && oldfont->back) | |
1836 font->back = g_strdup(oldfont->back); | |
1837 | |
1838 if (family && !(options & GTK_IMHTML_NO_FONTS)) | |
1839 font->face = family; | |
1840 else if (oldfont && oldfont->face) | |
1841 font->face = g_strdup(oldfont->face); | |
1842 if (font->face && (atoi(font->face) > 100)) { | |
1843 g_free(font->face); | |
1844 font->face = g_strdup("100"); | |
1845 } | |
1846 | |
1847 if (oldfont && oldfont->sml) | |
1848 font->sml = g_strdup(oldfont->sml); | |
1849 | |
1850 if (size && !(options & GTK_IMHTML_NO_SIZES)) { | |
1851 if (g_ascii_strcasecmp(size, "smaller") == 0) | |
1852 { | |
1853 font->size = 2; | |
1854 } | |
1855 else if (g_ascii_strcasecmp(size, "larger") == 0) | |
1856 { | |
1857 font->size = 4; | |
1858 } | |
1859 else | |
1860 { | |
1861 font->size = 3; | |
1862 } | |
1863 } else if (oldfont) | |
1864 font->size = oldfont->size; | |
1865 | |
1866 g_free(style); | |
1867 g_free(size); | |
1868 fonts = g_slist_prepend (fonts, font); | |
1869 } | |
1870 break; | |
5104 | 1871 case 57: /* /SPAN */ |
8118 | 1872 /* Inline CSS Support - Douglas Thrift */ |
1873 if (fonts) { | |
1874 GtkIMHtmlFontDetail *font = fonts->data; | |
1875 if (url) | |
1876 gtk_imhtml_insert_link(imhtml, url, ws); | |
1877 else | |
1878 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1879 ws[0] = '\0'; wpos = 0; | |
8177 | 1880 /* NEW_BIT (NEW_TEXT_BIT); */ |
8118 | 1881 fonts = g_slist_remove (fonts, font); |
1882 if (font->face) | |
1883 g_free (font->face); | |
1884 if (font->fore) | |
1885 g_free (font->fore); | |
1886 if (font->back) | |
1887 g_free (font->back); | |
1888 if (font->sml) | |
1889 g_free (font->sml); | |
1890 g_free (font); | |
1891 } | |
1892 break; | |
8026 | 1893 case 60: /* SPAN */ |
2993 | 1894 break; |
8061 | 1895 case 62: /* comment */ |
8177 | 1896 /* NEW_BIT (NEW_TEXT_BIT); */ |
8317 | 1897 ws[wpos] = '\0'; |
1898 if (url) | |
1899 gtk_imhtml_insert_link(imhtml, url, ws); | |
1900 else | |
1901 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
6124 | 1902 if (imhtml->show_comments) |
1903 wpos = g_snprintf (ws, len, "%s", tag); | |
8177 | 1904 /* NEW_BIT (NEW_COMMENT_BIT); */ |
3922 | 1905 break; |
1906 default: | |
6882 | 1907 break; |
2993 | 1908 } |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1909 c += tlen; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1910 pos += tlen; |
4138 | 1911 if(tag) |
1912 g_free(tag); /* This was allocated back in VALID_TAG() */ | |
8473 | 1913 } else if (imhtml->show_smileys && (gtk_imhtml_is_smiley (imhtml, fonts, c, &smilelen) || gtk_imhtml_is_smiley(imhtml, NULL, c, &smilelen))) { |
1914 GtkIMHtmlFontDetail *fd; | |
1915 | |
1916 gchar *sml = NULL; | |
1917 gchar *unescaped = NULL; | |
1918 gint length = 0; | |
1919 if (fonts) { | |
1920 fd = fonts->data; | |
1921 sml = fd->sml; | |
1922 } | |
1923 if (url) | |
1924 gtk_imhtml_insert_link(imhtml, url, ws); | |
1925 else { | |
1926 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1927 } | |
1928 unescaped = gaim_unescape_html(c); | |
1929 wpos = g_snprintf (ws, smilelen + 1, "%s", unescaped); | |
1930 g_free(unescaped); | |
1931 | |
1932 gtk_imhtml_insert_smiley(imhtml, sml, ws); | |
1933 | |
1934 ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
1935 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); | |
1936 | |
1937 while(length < smilelen) | |
1938 { | |
1939 if(*c == '&' && gtk_imhtml_is_amp_escape (c, &, &tlen)) { | |
1940 c += tlen; | |
1941 pos += tlen; | |
1942 } else { | |
1943 c++; | |
1944 pos++; | |
1945 } | |
1946 length++; | |
1947 } | |
1948 | |
1949 wpos = 0; | |
1950 ws[0] = 0; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1951 } else if (*c == '&' && gtk_imhtml_is_amp_escape (c, &, &tlen)) { |
7280 | 1952 while(*amp) { |
1953 ws [wpos++] = *amp++; | |
1954 } | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1955 c += tlen; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1956 pos += tlen; |
1428 | 1957 } else if (*c == '\n') { |
1958 if (!(options & GTK_IMHTML_NO_NEWLINE)) { | |
3922 | 1959 ws[wpos] = '\n'; |
1960 wpos++; | |
8061 | 1961 if (url) |
1962 gtk_imhtml_insert_link(imhtml, url, ws); | |
1963 else | |
1964 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1965 ws[0] = '\0'; | |
1966 wpos = 0; | |
8177 | 1967 /* NEW_BIT (NEW_TEXT_BIT); */ |
1428 | 1968 } |
1969 c++; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1970 pos++; |
8334 | 1971 } else if ((len_protocol = gtk_imhtml_is_protocol(c)) > 0){ |
1972 while(len_protocol--){ | |
1973 /* Skip the next len_protocol characters, but make sure they're | |
1974 copied into the ws array. | |
1975 */ | |
1976 ws [wpos++] = *c++; | |
1977 pos++; | |
1978 } | |
8061 | 1979 } else if (*c) { |
1428 | 1980 ws [wpos++] = *c++; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1981 pos++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1982 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1983 break; |
1428 | 1984 } |
1985 } | |
8061 | 1986 if (url) |
1987 gtk_imhtml_insert_link(imhtml, url, ws); | |
1988 else | |
1989 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, wpos); | |
1990 ws[0] = '\0'; wpos = 0; | |
1991 | |
8177 | 1992 /* NEW_BIT(NEW_TEXT_BIT); */ |
1428 | 1993 if (url) { |
1994 g_free (url); | |
3922 | 1995 if (str) |
1996 str = g_string_append (str, "</A>"); | |
1428 | 1997 } |
8061 | 1998 |
4032 | 1999 while (fonts) { |
5967 | 2000 GtkIMHtmlFontDetail *font = fonts->data; |
4032 | 2001 fonts = g_slist_remove (fonts, font); |
2002 if (font->face) | |
2003 g_free (font->face); | |
2004 if (font->fore) | |
2005 g_free (font->fore); | |
2006 if (font->back) | |
2007 g_free (font->back); | |
2008 if (font->sml) | |
2009 g_free (font->sml); | |
2010 g_free (font); | |
2011 if (str) | |
2012 str = g_string_append (str, "</FONT>"); | |
2013 } | |
2014 | |
3922 | 2015 if (str) { |
1428 | 2016 while (bold) { |
3922 | 2017 str = g_string_append (str, "</B>"); |
1428 | 2018 bold--; |
2019 } | |
2020 while (italics) { | |
3922 | 2021 str = g_string_append (str, "</I>"); |
1428 | 2022 italics--; |
2023 } | |
2024 while (underline) { | |
3922 | 2025 str = g_string_append (str, "</U>"); |
1428 | 2026 underline--; |
2027 } | |
2028 while (strike) { | |
3922 | 2029 str = g_string_append (str, "</S>"); |
1428 | 2030 strike--; |
2031 } | |
2032 while (sub) { | |
3922 | 2033 str = g_string_append (str, "</SUB>"); |
1428 | 2034 sub--; |
2035 } | |
2036 while (sup) { | |
3922 | 2037 str = g_string_append (str, "</SUP>"); |
1428 | 2038 sup--; |
2039 } | |
2040 while (title) { | |
3922 | 2041 str = g_string_append (str, "</TITLE>"); |
1428 | 2042 title--; |
2043 } | |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
2044 while (pre) { |
3922 | 2045 str = g_string_append (str, "</PRE>"); |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
2046 pre--; |
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
2047 } |
1428 | 2048 } |
4032 | 2049 g_free (ws); |
4630 | 2050 if(bg) |
2051 g_free(bg); | |
8061 | 2052 gtk_imhtml_close_tags(imhtml); |
4032 | 2053 if (!(options & GTK_IMHTML_NO_SCROLL)) |
2054 gtk_text_view_scroll_to_mark (GTK_TEXT_VIEW (imhtml), mark, | |
2055 0, TRUE, 0.0, 1.0); | |
3922 | 2056 gtk_text_buffer_delete_mark (imhtml->text_buffer, mark); |
8061 | 2057 gtk_text_buffer_move_mark (imhtml->text_buffer, |
2058 gtk_text_buffer_get_mark (imhtml->text_buffer, "insert"), | |
2059 &iter); | |
3922 | 2060 return str; |
2061 } | |
2062 | |
4892 | 2063 void gtk_imhtml_remove_smileys(GtkIMHtml *imhtml) |
2064 { | |
4288 | 2065 g_hash_table_destroy(imhtml->smiley_data); |
2066 gtk_smiley_tree_destroy(imhtml->default_smilies); | |
4892 | 2067 imhtml->smiley_data = g_hash_table_new_full(g_str_hash, g_str_equal, |
4902 | 2068 g_free, (GDestroyNotify)gtk_smiley_tree_destroy); |
4288 | 2069 imhtml->default_smilies = gtk_smiley_tree_new(); |
2070 } | |
8481 | 2071 |
3922 | 2072 void gtk_imhtml_show_smileys (GtkIMHtml *imhtml, |
4253 | 2073 gboolean show) |
2074 { | |
2075 imhtml->show_smileys = show; | |
2076 } | |
3922 | 2077 |
2078 void gtk_imhtml_show_comments (GtkIMHtml *imhtml, | |
4253 | 2079 gboolean show) |
2080 { | |
6124 | 2081 imhtml->show_comments = show; |
4253 | 2082 } |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2083 |
8456 | 2084 void gtk_imhtml_html_shortcuts (GtkIMHtml *imhtml, |
2085 gboolean allow) | |
2086 { | |
2087 imhtml->html_shortcuts = allow; | |
2088 } | |
2089 | |
2090 void gtk_imhtml_smiley_shortcuts (GtkIMHtml *imhtml, | |
2091 gboolean allow) | |
2092 { | |
2093 imhtml->smiley_shortcuts = allow; | |
2094 } | |
2095 | |
2096 void | |
2097 gtk_imhtml_set_protocol_name(GtkIMHtml *imhtml, gchar *protocol_name) { | |
2098 imhtml->protocol_name = protocol_name; | |
2099 } | |
2100 | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2101 void |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2102 gtk_imhtml_clear (GtkIMHtml *imhtml) |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2103 { |
7991 | 2104 GList *del; |
3922 | 2105 GtkTextIter start, end; |
8427 | 2106 GObject *object = g_object_ref(G_OBJECT(imhtml)); |
7991 | 2107 |
3922 | 2108 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); |
2109 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
2110 gtk_text_buffer_delete(imhtml->text_buffer, &start, &end); | |
7991 | 2111 |
8061 | 2112 for(del = imhtml->format_spans; del; del = del->next) { |
2113 GtkIMHtmlFormatSpan *span = del->data; | |
2114 if (span->start_tag) | |
2115 g_free(span->start_tag); | |
2116 if (span->end_tag) | |
2117 g_free(span->end_tag); | |
2118 g_free(span); | |
2119 } | |
2120 g_list_free(imhtml->format_spans); | |
2121 imhtml->format_spans = NULL; | |
2122 | |
7991 | 2123 for(del = imhtml->scalables; del; del = del->next) { |
2124 GtkIMHtmlScalable *scale = del->data; | |
2125 scale->free(scale); | |
2126 } | |
2127 g_list_free(imhtml->scalables); | |
2128 imhtml->scalables = NULL; | |
8061 | 2129 |
2130 imhtml->edit.bold = NULL; | |
2131 imhtml->edit.italic = NULL; | |
2132 imhtml->edit.underline = NULL; | |
2133 imhtml->edit.fontface = NULL; | |
2134 imhtml->edit.forecolor = NULL; | |
2135 imhtml->edit.backcolor = NULL; | |
2136 imhtml->edit.sizespan = NULL; | |
2137 imhtml->edit.fontsize = 3; | |
8481 | 2138 |
8427 | 2139 g_signal_emit(object, signals[CLEAR_FORMAT], 0); |
2140 g_object_unref(object); | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2141 } |
2363
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
2142 |
4046 | 2143 void gtk_imhtml_page_up (GtkIMHtml *imhtml) |
2144 { | |
5282 | 2145 GdkRectangle rect; |
2146 GtkTextIter iter; | |
4046 | 2147 |
5282 | 2148 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); |
2149 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, rect.x, | |
2150 rect.y - rect.height); | |
2151 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &iter, 0, TRUE, 0, 0); | |
8061 | 2152 |
4046 | 2153 } |
5282 | 2154 void gtk_imhtml_page_down (GtkIMHtml *imhtml) |
2155 { | |
2156 GdkRectangle rect; | |
2157 GtkTextIter iter; | |
2158 | |
2159 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); | |
2160 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, rect.x, | |
2161 rect.y + rect.height); | |
2162 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &iter, 0, TRUE, 0, 0); | |
2163 } | |
4735 | 2164 |
5967 | 2165 /* GtkIMHtmlScalable, gtk_imhtml_image, gtk_imhtml_hr */ |
6982 | 2166 GtkIMHtmlScalable *gtk_imhtml_image_new(GdkPixbuf *img, const gchar *filename) |
4735 | 2167 { |
5967 | 2168 GtkIMHtmlImage *im_image = g_malloc(sizeof(GtkIMHtmlImage)); |
5012 | 2169 GtkImage *image = GTK_IMAGE(gtk_image_new_from_pixbuf(img)); |
4895 | 2170 |
5967 | 2171 GTK_IMHTML_SCALABLE(im_image)->scale = gtk_imhtml_image_scale; |
2172 GTK_IMHTML_SCALABLE(im_image)->add_to = gtk_imhtml_image_add_to; | |
2173 GTK_IMHTML_SCALABLE(im_image)->free = gtk_imhtml_image_free; | |
5046 | 2174 |
2175 im_image->pixbuf = img; | |
5012 | 2176 im_image->image = image; |
4895 | 2177 im_image->width = gdk_pixbuf_get_width(img); |
2178 im_image->height = gdk_pixbuf_get_height(img); | |
2179 im_image->mark = NULL; | |
6982 | 2180 im_image->filename = filename ? g_strdup(filename) : NULL; |
4895 | 2181 |
5046 | 2182 g_object_ref(img); |
4895 | 2183 return GTK_IMHTML_SCALABLE(im_image); |
2184 } | |
2185 | |
5967 | 2186 void gtk_imhtml_image_scale(GtkIMHtmlScalable *scale, int width, int height) |
4895 | 2187 { |
5967 | 2188 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; |
4895 | 2189 |
2190 if(image->width > width || image->height > height){ | |
2191 GdkPixbuf *new_image = NULL; | |
2192 float factor; | |
2193 int new_width = image->width, new_height = image->height; | |
2194 | |
2195 if(image->width > width){ | |
2196 factor = (float)(width)/image->width; | |
2197 new_width = width; | |
2198 new_height = image->height * factor; | |
2199 } | |
2200 if(new_height > height){ | |
2201 factor = (float)(height)/new_height; | |
2202 new_height = height; | |
2203 new_width = new_width * factor; | |
2204 } | |
2205 | |
5046 | 2206 new_image = gdk_pixbuf_scale_simple(image->pixbuf, new_width, new_height, GDK_INTERP_BILINEAR); |
5012 | 2207 gtk_image_set_from_pixbuf(image->image, new_image); |
4895 | 2208 g_object_unref(G_OBJECT(new_image)); |
2209 } | |
2210 } | |
2211 | |
5012 | 2212 static void write_img_to_file(GtkWidget *w, GtkFileSelection *sel) |
2213 { | |
2214 const gchar *filename = gtk_file_selection_get_filename(sel); | |
5967 | 2215 gchar *dirname; |
2216 GtkIMHtmlImage *image = g_object_get_data(G_OBJECT(sel), "GtkIMHtmlImage"); | |
5012 | 2217 gchar *type = NULL; |
5019 | 2218 GError *error = NULL; |
5015 | 2219 #if GTK_CHECK_VERSION(2,2,0) |
5012 | 2220 GSList *formats = gdk_pixbuf_get_formats(); |
6162 | 2221 #else |
2222 char *basename = g_path_get_basename(filename); | |
2223 char *ext = strrchr(basename, '.'); | |
5959 | 2224 #endif |
5012 | 2225 |
5967 | 2226 if (g_file_test(filename, G_FILE_TEST_IS_DIR)) { |
2227 /* append a / if needed */ | |
2228 if (filename[strlen(filename) - 1] != '/') { | |
2229 dirname = g_strconcat(filename, "/", NULL); | |
2230 } else { | |
2231 dirname = g_strdup(filename); | |
2232 } | |
2233 gtk_file_selection_set_filename(sel, dirname); | |
2234 g_free(dirname); | |
5959 | 2235 return; |
5967 | 2236 } |
5959 | 2237 |
2238 #if GTK_CHECK_VERSION(2,2,0) | |
5012 | 2239 while(formats){ |
2240 GdkPixbufFormat *format = formats->data; | |
2241 gchar **extensions = gdk_pixbuf_format_get_extensions(format); | |
2242 gpointer p = extensions; | |
2243 | |
2244 while(gdk_pixbuf_format_is_writable(format) && extensions && extensions[0]){ | |
2245 gchar *fmt_ext = extensions[0]; | |
2246 const gchar* file_ext = filename + strlen(filename) - strlen(fmt_ext); | |
2247 | |
2248 if(!strcmp(fmt_ext, file_ext)){ | |
2249 type = gdk_pixbuf_format_get_name(format); | |
2250 break; | |
2251 } | |
2252 | |
2253 extensions++; | |
2254 } | |
2255 | |
2256 g_strfreev(p); | |
2257 | |
2258 if(type) | |
2259 break; | |
2260 | |
2261 formats = formats->next; | |
2262 } | |
2263 | |
5020 | 2264 g_slist_free(formats); |
2265 #else | |
2266 /* this is really ugly code, but I think it will work */ | |
2267 if(ext) { | |
2268 ext++; | |
2269 if(!g_ascii_strcasecmp(ext, "jpeg") || !g_ascii_strcasecmp(ext, "jpg")) | |
2270 type = g_strdup("jpeg"); | |
2271 else if(!g_ascii_strcasecmp(ext, "png")) | |
2272 type = g_strdup("png"); | |
2273 } | |
2274 | |
2275 g_free(basename); | |
2276 #endif | |
2277 | |
5012 | 2278 /* If I can't find a valid type, I will just tell the user about it and then assume |
2279 it's a png */ | |
2280 if(!type){ | |
2281 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
5967 | 2282 _("Unable to guess the image type based on the file extension supplied. Defaulting to PNG.")); |
5012 | 2283 type = g_strdup("png"); |
2284 } | |
2285 | |
5046 | 2286 gdk_pixbuf_save(image->pixbuf, filename, type, &error, NULL); |
5012 | 2287 |
2288 if(error){ | |
2289 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
2290 _("Error saving image: %s"), error->message); | |
2291 g_error_free(error); | |
2292 } | |
2293 | |
2294 g_free(type); | |
2295 } | |
2296 | |
5967 | 2297 static void gtk_imhtml_image_save(GtkWidget *w, GtkIMHtmlImage *image) |
5012 | 2298 { |
5967 | 2299 GtkWidget *sel = gtk_file_selection_new(_("Save Image")); |
5012 | 2300 |
6982 | 2301 if (image->filename) |
2302 gtk_file_selection_set_filename(GTK_FILE_SELECTION(sel), image->filename); | |
5967 | 2303 g_object_set_data(G_OBJECT(sel), "GtkIMHtmlImage", image); |
5012 | 2304 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", |
2305 G_CALLBACK(write_img_to_file), sel); | |
2306 | |
2307 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", | |
2308 G_CALLBACK(gtk_widget_destroy), sel); | |
2309 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->cancel_button), "clicked", | |
8061 | 2310 G_CALLBACK(gtk_widget_destroy), sel); |
5012 | 2311 |
2312 gtk_widget_show(sel); | |
2313 } | |
2314 | |
5967 | 2315 static gboolean gtk_imhtml_image_clicked(GtkWidget *w, GdkEvent *event, GtkIMHtmlImage *image) |
5012 | 2316 { |
2317 GdkEventButton *event_button = (GdkEventButton *) event; | |
2318 | |
2319 if (event->type == GDK_BUTTON_RELEASE) { | |
2320 if(event_button->button == 3) { | |
2321 GtkWidget *img, *item, *menu; | |
2322 gchar *text = g_strdup_printf(_("_Save Image...")); | |
2323 menu = gtk_menu_new(); | |
2324 | |
2325 /* buttons and such */ | |
2326 img = gtk_image_new_from_stock(GTK_STOCK_SAVE, GTK_ICON_SIZE_MENU); | |
2327 item = gtk_image_menu_item_new_with_mnemonic(text); | |
2328 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); | |
5967 | 2329 g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(gtk_imhtml_image_save), image); |
5012 | 2330 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
2331 | |
2332 gtk_widget_show_all(menu); | |
2333 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, | |
2334 event_button->button, event_button->time); | |
2335 | |
2336 g_free(text); | |
2337 return TRUE; | |
2338 } | |
2339 } | |
2340 if(event->type == GDK_BUTTON_PRESS && event_button->button == 3) | |
2341 return TRUE; /* Clicking the right mouse button on a link shouldn't | |
2342 be caught by the regular GtkTextView menu */ | |
2343 else | |
2344 return FALSE; /* Let clicks go through if we didn't catch anything */ | |
2345 | |
2346 } | |
5967 | 2347 void gtk_imhtml_image_free(GtkIMHtmlScalable *scale) |
2348 { | |
2349 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; | |
2350 | |
2351 g_object_unref(image->pixbuf); | |
6982 | 2352 if (image->filename) |
2353 g_free(image->filename); | |
5967 | 2354 g_free(scale); |
2355 } | |
2356 | |
2357 void gtk_imhtml_image_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
2358 { | |
2359 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; | |
2360 GtkWidget *box = gtk_event_box_new(); | |
2361 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
2362 | |
2363 gtk_container_add(GTK_CONTAINER(box), GTK_WIDGET(image->image)); | |
2364 | |
2365 gtk_widget_show(GTK_WIDGET(image->image)); | |
2366 gtk_widget_show(box); | |
2367 | |
2368 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), box, anchor); | |
2369 g_signal_connect(G_OBJECT(box), "event", G_CALLBACK(gtk_imhtml_image_clicked), image); | |
2370 } | |
2371 | |
2372 GtkIMHtmlScalable *gtk_imhtml_hr_new() | |
2373 { | |
2374 GtkIMHtmlHr *hr = g_malloc(sizeof(GtkIMHtmlHr)); | |
2375 | |
2376 GTK_IMHTML_SCALABLE(hr)->scale = gtk_imhtml_hr_scale; | |
2377 GTK_IMHTML_SCALABLE(hr)->add_to = gtk_imhtml_hr_add_to; | |
2378 GTK_IMHTML_SCALABLE(hr)->free = gtk_imhtml_hr_free; | |
2379 | |
2380 hr->sep = gtk_hseparator_new(); | |
2381 gtk_widget_set_size_request(hr->sep, 5000, 2); | |
2382 gtk_widget_show(hr->sep); | |
2383 | |
2384 return GTK_IMHTML_SCALABLE(hr); | |
2385 } | |
2386 | |
2387 void gtk_imhtml_hr_scale(GtkIMHtmlScalable *scale, int width, int height) | |
2388 { | |
2389 gtk_widget_set_size_request(((GtkIMHtmlHr *)scale)->sep, width, 2); | |
2390 } | |
2391 | |
2392 void gtk_imhtml_hr_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
2393 { | |
2394 GtkIMHtmlHr *hr = (GtkIMHtmlHr *)scale; | |
2395 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
8061 | 2396 g_object_set_data(G_OBJECT(anchor), "text_tag", "<hr>"); |
5967 | 2397 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), hr->sep, anchor); |
2398 } | |
2399 | |
2400 void gtk_imhtml_hr_free(GtkIMHtmlScalable *scale) | |
2401 { | |
2402 g_free(scale); | |
2403 } | |
7295 | 2404 |
2405 gboolean gtk_imhtml_search_find(GtkIMHtml *imhtml, const gchar *text) | |
2406 { | |
2407 GtkTextIter iter, start, end; | |
2408 gboolean new_search = TRUE; | |
2409 | |
2410 g_return_val_if_fail(imhtml != NULL, FALSE); | |
2411 g_return_val_if_fail(text != NULL, FALSE); | |
8061 | 2412 |
7295 | 2413 if (imhtml->search_string && !strcmp(text, imhtml->search_string)) |
2414 new_search = FALSE; | |
8061 | 2415 |
7295 | 2416 if (new_search) { |
2417 gtk_imhtml_search_clear(imhtml); | |
2418 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &iter); | |
2419 } else { | |
2420 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, | |
8061 | 2421 gtk_text_buffer_get_mark(imhtml->text_buffer, "search")); |
7295 | 2422 } |
2423 imhtml->search_string = g_strdup(text); | |
2424 | |
7358 | 2425 if (gtk_source_iter_forward_search(&iter, imhtml->search_string, |
2426 GTK_SOURCE_SEARCH_VISIBLE_ONLY | GTK_SOURCE_SEARCH_CASE_INSENSITIVE, | |
7295 | 2427 &start, &end, NULL)) { |
2428 | |
2429 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &start, 0, TRUE, 0, 0); | |
2430 gtk_text_buffer_create_mark(imhtml->text_buffer, "search", &end, FALSE); | |
2431 if (new_search) { | |
2432 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "search", &iter, &end); | |
8061 | 2433 do |
7295 | 2434 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "search", &start, &end); |
8061 | 2435 while (gtk_source_iter_forward_search(&end, imhtml->search_string, |
2436 GTK_SOURCE_SEARCH_VISIBLE_ONLY | | |
7358 | 2437 GTK_SOURCE_SEARCH_CASE_INSENSITIVE, |
7295 | 2438 &start, &end, NULL)); |
2439 } | |
2440 return TRUE; | |
2441 } | |
8061 | 2442 |
2443 gtk_imhtml_search_clear(imhtml); | |
2444 | |
7295 | 2445 return FALSE; |
2446 } | |
2447 | |
2448 void gtk_imhtml_search_clear(GtkIMHtml *imhtml) | |
2449 { | |
2450 GtkTextIter start, end; | |
8061 | 2451 |
7295 | 2452 g_return_if_fail(imhtml != NULL); |
8061 | 2453 |
7295 | 2454 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); |
2455 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
2456 | |
2457 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "search", &start, &end); | |
2458 if (imhtml->search_string) | |
2459 g_free(imhtml->search_string); | |
2460 imhtml->search_string = NULL; | |
2461 } | |
8061 | 2462 |
2463 /* Editable stuff */ | |
2464 static void insert_cb(GtkTextBuffer *buffer, GtkTextIter *iter, gchar *text, gint len, GtkIMHtml *imhtml) | |
2465 { | |
2466 GtkIMHtmlFormatSpan *span = NULL; | |
2467 GtkTextIter end; | |
2468 | |
2469 gtk_text_iter_forward_chars(iter, len); | |
2470 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
2471 gtk_text_iter_forward_char(&end); | |
2472 | |
2473 if (!gtk_text_iter_equal(&end, iter)) | |
2474 return; | |
2475 | |
2476 | |
2477 if ((span = imhtml->edit.bold)) { | |
2478 GtkTextIter bold; | |
2479 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &bold, span->start); | |
2480 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "BOLD", &bold, iter); | |
2481 } | |
2482 | |
2483 if ((span = imhtml->edit.italic)) { | |
2484 GtkTextIter italic; | |
2485 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &italic, span->start); | |
2486 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "ITALICS", &italic, | |
2487 iter); | |
2488 } | |
2489 | |
2490 if ((span = imhtml->edit.underline)) { | |
2491 GtkTextIter underline; | |
2492 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &underline, span->start); | |
2493 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "UNDERLINE", &underline, | |
2494 iter); | |
2495 } | |
2496 | |
2497 if ((span = imhtml->edit.forecolor)) { | |
2498 GtkTextIter fore; | |
2499 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &fore, span->start); | |
2500 gtk_text_buffer_apply_tag(imhtml->text_buffer, span->tag, &fore, iter); | |
2501 } | |
2502 | |
2503 if ((span = imhtml->edit.backcolor)) { | |
2504 GtkTextIter back; | |
2505 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &back, span->start); | |
2506 gtk_text_buffer_apply_tag(imhtml->text_buffer, span->tag, &back, iter); | |
2507 } | |
2508 | |
2509 if ((span = imhtml->edit.fontface)) { | |
2510 GtkTextIter face; | |
2511 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &face, span->start); | |
2512 gtk_text_buffer_apply_tag(imhtml->text_buffer, span->tag, &face, iter); | |
2513 } | |
2514 | |
2515 if ((span = imhtml->edit.sizespan)) { | |
2516 GtkTextIter size; | |
2517 /* We create the tags here so that one can grow font or shrink font several times | |
2518 * in a row without creating unnecessary tags */ | |
2519 if (span->tag == NULL) { | |
2520 span->tag = gtk_text_buffer_create_tag | |
8309 | 2521 (imhtml->text_buffer, NULL, "scale", (double)_point_sizes [imhtml->edit.fontsize-1], NULL); |
8061 | 2522 span->start_tag = g_strdup_printf("<font size=\"%d\">", imhtml->edit.fontsize); |
2523 span->end_tag = g_strdup("</font>"); | |
2524 } | |
2525 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &size, span->start); | |
2526 gtk_text_buffer_apply_tag(imhtml->text_buffer, span->tag, &size, iter); | |
2527 } | |
2528 } | |
2529 | |
2530 void gtk_imhtml_set_editable(GtkIMHtml *imhtml, gboolean editable) | |
2531 { | |
2532 gtk_text_view_set_editable(GTK_TEXT_VIEW(imhtml), editable); | |
8177 | 2533 /* |
2534 * We need a visible caret for accessibility, so mouseless | |
2535 * people can highlight stuff. | |
2536 */ | |
2537 /* gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(imhtml), editable); */ | |
8061 | 2538 imhtml->editable = editable; |
8420 | 2539 imhtml->format_functions = !editable ? 0 : -1; |
2540 } | |
2541 | |
2542 void gtk_imhtml_set_format_functions(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons) | |
2543 { | |
2544 GObject *object = g_object_ref(G_OBJECT(imhtml)); | |
2545 g_signal_emit(object, signals[BUTTONS_UPDATE], 0, buttons); | |
2546 imhtml->format_functions = buttons; | |
2547 g_object_unref(object); | |
8061 | 2548 } |
2549 | |
8481 | 2550 void gtk_imhtml_get_current_format(GtkIMHtml *imhtml, gint offset, |
2551 gboolean *bold, gboolean *italic, | |
2552 gboolean *underline) | |
2553 { | |
2554 GtkTextMark *ins_mark; | |
2555 GtkTextIter ins_iter, adj_iter, end_iter; | |
2556 GSList *tags; | |
2557 gint position, length, adjusted; | |
2558 | |
2559 /* grab the current cursor position compensate for the way that the | |
2560 * direction that the cursor was moved so that we get all the tags | |
2561 * for that current location | |
2562 */ | |
2563 ins_mark = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
2564 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &ins_iter, ins_mark); | |
2565 position = gtk_text_iter_get_offset(&ins_iter); | |
2566 | |
2567 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end_iter); | |
2568 length = gtk_text_iter_get_offset(&end_iter); | |
2569 | |
2570 adjusted = position + offset; | |
2571 if(offset < 0) { /* moving left or up */ | |
2572 if(adjusted <= 0) | |
2573 adjusted = 1; | |
2574 } else if(offset > 0) { /* moving right or down */ | |
2575 if(adjusted >= length) | |
2576 adjusted = length - 1; | |
2577 } | |
2578 | |
2579 gtk_text_buffer_get_iter_at_offset(imhtml->text_buffer, &adj_iter, adjusted); | |
2580 | |
2581 /* grab the tags that apply to the cursor location */ | |
2582 for(tags = gtk_text_iter_get_tags(&adj_iter); | |
2583 tags != NULL; tags = tags->next) | |
2584 { | |
2585 GtkTextTag *tag = GTK_TEXT_TAG(tags->data); | |
2586 if(tag->name) { | |
2587 if(g_ascii_strcasecmp(tag->name, "BOLD") == 0) | |
2588 (*bold) = TRUE; | |
2589 if(g_ascii_strcasecmp(tag->name, "ITALICS") == 0) | |
2590 (*italic) = TRUE; | |
2591 if(g_ascii_strcasecmp(tag->name, "UNDERLINE") == 0) | |
2592 (*underline) = TRUE; | |
2593 } | |
2594 } | |
2595 } | |
2596 | |
8061 | 2597 gboolean gtk_imhtml_get_editable(GtkIMHtml *imhtml) |
2598 { | |
2599 return imhtml->editable; | |
2600 } | |
2601 | |
2602 gboolean gtk_imhtml_toggle_bold(GtkIMHtml *imhtml) | |
2603 { | |
2604 GtkIMHtmlFormatSpan *span; | |
8481 | 2605 GObject *object; |
8061 | 2606 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); |
2607 GtkTextIter iter; | |
8481 | 2608 |
8061 | 2609 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); |
8481 | 2610 |
8061 | 2611 if (!imhtml->edit.bold) { |
8481 | 2612 span = g_new0(GtkIMHtmlFormatSpan, 1); |
8061 | 2613 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); |
2614 span->start_tag = g_strdup("<b>"); | |
2615 span->end = NULL; | |
2616 span->end_tag = g_strdup("</b>"); | |
2617 span->buffer = imhtml->text_buffer; | |
8481 | 2618 span->tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(imhtml->text_buffer), "BOLD"); |
8061 | 2619 imhtml->edit.bold = span; |
2620 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2621 } else { | |
8428 | 2622 GtkTextIter start; |
8061 | 2623 span = imhtml->edit.bold; |
2624 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
8428 | 2625 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &start, span->start); |
2626 if (gtk_text_iter_equal(&start, &iter)) { /* Format turned off before any text was entered, so remove the tag */ | |
2627 imhtml->format_spans = g_list_remove(imhtml->format_spans, span); | |
2628 if (span->start_tag) | |
2629 g_free(span->start_tag); | |
2630 if (span->end_tag) | |
2631 g_free(span->end_tag); | |
2632 g_free(span); | |
2633 } | |
8061 | 2634 imhtml->edit.bold = NULL; |
2635 } | |
8481 | 2636 |
2637 object = g_object_ref(G_OBJECT(imhtml)); | |
2638 g_signal_emit(object, signals[TOGGLE_FORMAT], 0, GTK_IMHTML_BOLD); | |
2639 g_object_unref(object); | |
2640 | |
2641 return (imhtml->edit.bold != NULL); | |
8061 | 2642 } |
2643 | |
2644 gboolean gtk_imhtml_toggle_italic(GtkIMHtml *imhtml) | |
2645 { | |
2646 GtkIMHtmlFormatSpan *span; | |
8481 | 2647 GObject *object; |
8061 | 2648 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); |
2649 GtkTextIter iter; | |
8481 | 2650 |
8061 | 2651 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); |
8481 | 2652 |
8061 | 2653 if (!imhtml->edit.italic) { |
8481 | 2654 span = g_new0(GtkIMHtmlFormatSpan, 1); |
8061 | 2655 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); |
2656 span->start_tag = g_strdup("<i>"); | |
2657 span->end = NULL; | |
2658 span->end_tag = g_strdup("</i>"); | |
2659 span->buffer = imhtml->text_buffer; | |
2660 span->tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(imhtml->text_buffer), "ITALIC"); | |
2661 imhtml->edit.italic = span; | |
2662 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2663 } else { | |
8428 | 2664 GtkTextIter start; |
8061 | 2665 span = imhtml->edit.italic; |
2666 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
8428 | 2667 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &start, span->start); |
2668 if (gtk_text_iter_equal(&start, &iter)) { /* Format turned off before any text was entered, so remove the tag */ | |
2669 imhtml->format_spans = g_list_remove(imhtml->format_spans, span); | |
2670 if (span->start_tag) | |
2671 g_free(span->start_tag); | |
2672 if (span->end_tag) | |
2673 g_free(span->end_tag); | |
2674 g_free(span); | |
2675 } | |
8061 | 2676 imhtml->edit.italic = NULL; |
2677 } | |
8481 | 2678 |
2679 object = g_object_ref(G_OBJECT(imhtml)); | |
2680 g_signal_emit(object, signals[TOGGLE_FORMAT], 0, GTK_IMHTML_ITALIC); | |
2681 g_object_unref(object); | |
2682 | |
8061 | 2683 return imhtml->edit.italic != NULL; |
2684 } | |
2685 | |
2686 gboolean gtk_imhtml_toggle_underline(GtkIMHtml *imhtml) | |
2687 { | |
2688 GtkIMHtmlFormatSpan *span; | |
8481 | 2689 GObject *object; |
8061 | 2690 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); |
2691 GtkTextIter iter; | |
8481 | 2692 |
8061 | 2693 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); |
8481 | 2694 |
8061 | 2695 if (!imhtml->edit.underline) { |
8481 | 2696 span = g_new0(GtkIMHtmlFormatSpan, 1); |
8061 | 2697 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); |
2698 span->start_tag = g_strdup("<u>"); | |
2699 span->end = NULL; | |
2700 span->end_tag = g_strdup("</u>"); | |
2701 span->buffer = imhtml->text_buffer; | |
2702 span->tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(imhtml->text_buffer), "UNDERLINE"); | |
2703 imhtml->edit.underline = span; | |
2704 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2705 } else { | |
8428 | 2706 GtkTextIter start; |
8061 | 2707 span = imhtml->edit.underline; |
2708 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
8428 | 2709 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &start, span->start); |
2710 if (gtk_text_iter_equal(&start, &iter)) { /* Format turned off before any text was entered, so remove the tag */ | |
2711 imhtml->format_spans = g_list_remove(imhtml->format_spans, span); | |
2712 if (span->start_tag) | |
2713 g_free(span->start_tag); | |
2714 if (span->end_tag) | |
2715 g_free(span->end_tag); | |
2716 g_free(span); | |
2717 } | |
8061 | 2718 imhtml->edit.underline = NULL; |
2719 } | |
8481 | 2720 |
2721 object = g_object_ref(G_OBJECT(imhtml)); | |
2722 g_signal_emit(object, signals[TOGGLE_FORMAT], 0, GTK_IMHTML_UNDERLINE); | |
2723 g_object_unref(object); | |
2724 | |
8061 | 2725 return imhtml->edit.underline != NULL; |
2726 } | |
2727 | |
2728 void gtk_imhtml_font_set_size(GtkIMHtml *imhtml, gint size) | |
2729 { | |
2730 GtkIMHtmlFormatSpan *span; | |
2731 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
2732 GtkTextIter iter; | |
2733 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); | |
2734 | |
2735 imhtml->edit.fontsize = size; | |
2736 | |
2737 if (imhtml->edit.sizespan) { | |
2738 GtkTextIter iter2; | |
2739 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter2, imhtml->edit.sizespan->start); | |
2740 if (gtk_text_iter_equal(&iter2, &iter)) | |
2741 return; | |
2742 span = imhtml->edit.sizespan; | |
2743 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2744 } | |
2745 if (size != -1) { | |
8250 | 2746 span = g_malloc0(sizeof(GtkIMHtmlFormatSpan)); |
8061 | 2747 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); |
2748 span->end = NULL; | |
2749 span->buffer = imhtml->text_buffer; | |
2750 span->tag = NULL; | |
2751 imhtml->edit.sizespan = span; | |
2752 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2753 } | |
2754 } | |
2755 | |
2756 void gtk_imhtml_font_shrink(GtkIMHtml *imhtml) | |
2757 { | |
2758 GtkIMHtmlFormatSpan *span; | |
2759 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
2760 GtkTextIter iter; | |
2761 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); | |
2762 if (imhtml->edit.fontsize == 1) | |
2763 return; | |
2764 | |
2765 imhtml->edit.fontsize--; | |
2766 | |
2767 if (imhtml->edit.sizespan) { | |
2768 GtkTextIter iter2; | |
2769 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter2, imhtml->edit.sizespan->start); | |
2770 if (gtk_text_iter_equal(&iter2, &iter)) | |
2771 return; | |
2772 span = imhtml->edit.sizespan; | |
2773 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2774 } | |
2775 | |
8250 | 2776 span = g_malloc0(sizeof(GtkIMHtmlFormatSpan)); |
8061 | 2777 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); |
2778 span->end = NULL; | |
2779 span->buffer = imhtml->text_buffer; | |
2780 span->tag = NULL; | |
2781 imhtml->edit.sizespan = span; | |
2782 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2783 } | |
2784 | |
2785 void gtk_imhtml_font_grow(GtkIMHtml *imhtml) | |
2786 { | |
2787 GtkIMHtmlFormatSpan *span; | |
2788 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
2789 GtkTextIter iter; | |
2790 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); | |
2791 if (imhtml->edit.fontsize == MAX_FONT_SIZE) | |
2792 return; | |
2793 | |
2794 imhtml->edit.fontsize++; | |
2795 if (imhtml->edit.sizespan) { | |
2796 GtkTextIter iter2; | |
2797 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter2, imhtml->edit.sizespan->start); | |
2798 if (gtk_text_iter_equal(&iter2, &iter)) | |
2799 return; | |
2800 span = imhtml->edit.sizespan; | |
2801 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2802 } | |
2803 | |
8250 | 2804 span = g_malloc0(sizeof(GtkIMHtmlFormatSpan)); |
8061 | 2805 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); |
2806 span->end = NULL; | |
2807 span->tag = NULL; | |
2808 span->buffer = imhtml->text_buffer; | |
2809 imhtml->edit.sizespan = span; | |
2810 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2811 } | |
2812 | |
2813 gboolean gtk_imhtml_toggle_forecolor(GtkIMHtml *imhtml, const char *color) | |
2814 { | |
2815 GtkIMHtmlFormatSpan *span; | |
2816 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
2817 GtkTextIter iter; | |
2818 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); | |
8429 | 2819 if (color) { |
8061 | 2820 span = g_malloc(sizeof(GtkIMHtmlFormatSpan)); |
2821 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2822 span->start_tag = g_strdup_printf("<font color=\"%s\">", color); | |
2823 span->end = NULL; | |
2824 span->end_tag = g_strdup("</font>"); | |
2825 span->buffer = imhtml->text_buffer; | |
2826 span->tag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "foreground", color, NULL); | |
2827 imhtml->edit.forecolor = span; | |
2828 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2829 } else { | |
2830 span = imhtml->edit.forecolor; | |
2831 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2832 imhtml->edit.forecolor = NULL; | |
2833 } | |
2834 | |
2835 | |
2836 return imhtml->edit.forecolor != NULL; | |
2837 } | |
2838 | |
2839 gboolean gtk_imhtml_toggle_backcolor(GtkIMHtml *imhtml, const char *color) | |
2840 { | |
2841 GtkIMHtmlFormatSpan *span; | |
2842 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
2843 GtkTextIter iter; | |
2844 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); | |
8429 | 2845 if (color) { |
8061 | 2846 span = g_malloc(sizeof(GtkIMHtmlFormatSpan)); |
2847 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2848 span->start_tag = g_strdup_printf("<font back=\"%s\">", color); | |
2849 span->end = NULL; | |
2850 span->end_tag = g_strdup("</font>"); | |
2851 span->buffer = imhtml->text_buffer; | |
2852 span->tag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "background", color, NULL); | |
2853 imhtml->edit.backcolor = span; | |
2854 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2855 } else { | |
2856 span = imhtml->edit.backcolor; | |
2857 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2858 imhtml->edit.backcolor = NULL; | |
2859 } | |
2860 return imhtml->edit.backcolor != NULL; | |
2861 } | |
2862 | |
2863 gboolean gtk_imhtml_toggle_fontface(GtkIMHtml *imhtml, const char *face) | |
2864 { | |
2865 GtkIMHtmlFormatSpan *span; | |
2866 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
2867 GtkTextIter iter; | |
2868 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); | |
8429 | 2869 if (face) { |
8061 | 2870 span = g_malloc(sizeof(GtkIMHtmlFormatSpan)); |
2871 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2872 span->start_tag = g_strdup_printf("<font face=\"%s\">", face); | |
2873 span->end = NULL; | |
2874 span->end_tag = g_strdup("</font>"); | |
2875 span->buffer = imhtml->text_buffer; | |
2876 span->tag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "family", face, NULL); | |
2877 imhtml->edit.fontface = span; | |
2878 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2879 } else { | |
2880 span = imhtml->edit.fontface; | |
2881 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2882 imhtml->edit.fontface = NULL; | |
2883 } | |
2884 return imhtml->edit.fontface != NULL; | |
2885 } | |
2886 | |
2887 void gtk_imhtml_insert_link(GtkIMHtml *imhtml, const char *url, const char *text) | |
2888 { | |
2889 GtkIMHtmlFormatSpan *span = g_malloc(sizeof(GtkIMHtmlFormatSpan)); | |
2890 GtkTextMark *mark = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
2891 GtkTextIter iter; | |
2892 GtkTextTag *tag, *linktag; | |
2893 | |
2894 tag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, NULL); | |
2895 g_object_set_data(G_OBJECT(tag), "link_url", g_strdup(url)); | |
2896 | |
2897 linktag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(imhtml->text_buffer), "LINK"); | |
2898 | |
2899 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, mark); | |
2900 span->start = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2901 span->buffer = imhtml->text_buffer; | |
2902 span->start_tag = g_strdup_printf("<a href=\"%s\">", url); | |
2903 span->end_tag = g_strdup("</a>"); | |
2904 g_signal_connect(G_OBJECT(tag), "event", G_CALLBACK(tag_event), g_strdup(url)); | |
2905 | |
2906 gtk_text_buffer_insert_with_tags(imhtml->text_buffer, &iter, text, strlen(text), linktag, tag, NULL); | |
2907 span->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); | |
2908 imhtml->format_spans = g_list_append(imhtml->format_spans, span); | |
2909 } | |
2910 | |
2911 void gtk_imhtml_insert_smiley(GtkIMHtml *imhtml, const char *sml, char *smiley) | |
2912 { | |
2913 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
2914 GtkTextIter iter; | |
2915 GdkPixbuf *pixbuf = NULL; | |
2916 GdkPixbufAnimation *annipixbuf = NULL; | |
2917 GtkWidget *icon = NULL; | |
2918 GtkTextChildAnchor *anchor; | |
2919 | |
2920 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, ins); | |
2921 anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, &iter); | |
2922 g_object_set_data(G_OBJECT(anchor), "text_tag", g_strdup(smiley)); | |
2923 | |
2924 annipixbuf = gtk_smiley_tree_image(imhtml, sml, smiley); | |
2925 if(annipixbuf) { | |
2926 if(gdk_pixbuf_animation_is_static_image(annipixbuf)) { | |
2927 pixbuf = gdk_pixbuf_animation_get_static_image(annipixbuf); | |
2928 if(pixbuf) | |
2929 icon = gtk_image_new_from_pixbuf(pixbuf); | |
2930 } else { | |
2931 icon = gtk_image_new_from_animation(annipixbuf); | |
2932 } | |
2933 } | |
2934 | |
2935 if (icon) { | |
2936 gtk_widget_show(icon); | |
2937 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), icon, anchor); | |
2938 } | |
2939 } | |
2940 | |
2941 int span_compare_begin(const GtkIMHtmlFormatSpan *a, const GtkIMHtmlFormatSpan *b, GtkTextBuffer *buffer) | |
2942 { | |
2943 GtkTextIter ia, ib; | |
2944 gtk_text_buffer_get_iter_at_mark(buffer, &ia, a->start); | |
2945 gtk_text_buffer_get_iter_at_mark(buffer, &ib, b->start); | |
2946 return gtk_text_iter_compare(&ia, &ib); | |
2947 } | |
2948 | |
2949 int span_compare_end(GtkIMHtmlFormatSpan *a, GtkIMHtmlFormatSpan *b) | |
2950 { | |
2951 GtkTextIter ia, ib; | |
2952 gtk_text_buffer_get_iter_at_mark(a->buffer, &ia, a->start); | |
2953 gtk_text_buffer_get_iter_at_mark(b->buffer, &ib, b->start); | |
2954 /* The -1 here makes it so that if I have two spans that close at the same point, the | |
2955 * span added second will be closed first, as in <b><i>Hello</i></b>. Without this, | |
2956 * it would be <b><i>Hello</b></i> */ | |
2957 return gtk_text_iter_compare(&ia, &ib) - 1; | |
2958 } | |
2959 | |
2960 /* Basic notion here: traverse through the text buffer one-by-one, non-character elements, such | |
2961 * as smileys and IM images are represented by the Unicode "unknown" character. Handle them. Else | |
2962 * check the list of formatted strings, sorted by the position of the starting tags and apply them as | |
2963 * needed. After applying the start tags, add the end tags to the "closers" list, which is sorted by | |
2964 * location of ending tags. These get applied in a similar fashion. Finally, replace <, >, &, and " | |
2965 * with their HTML equivilent. */ | |
2966 char *gtk_imhtml_get_markup_range(GtkIMHtml *imhtml, GtkTextIter *start, GtkTextIter *end) | |
2967 { | |
2968 gunichar c; | |
2969 GtkIMHtmlFormatSpan *sspan = NULL, *espan = NULL; | |
2970 GtkTextIter iter, siter, eiter; | |
2971 GList *starters = imhtml->format_spans; | |
2972 GList *closers = NULL; | |
2973 GString *str = g_string_new(""); | |
8481 | 2974 |
8061 | 2975 g_list_sort_with_data(starters, (GCompareDataFunc)span_compare_begin, imhtml->text_buffer); |
2976 | |
2977 gtk_text_iter_order(start, end); | |
2978 iter = *start; | |
2979 | |
2980 | |
2981 /* Initialize these to the end iter */ | |
2982 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &siter); | |
2983 eiter = siter; | |
2984 | |
8429 | 2985 if (starters) { |
8061 | 2986 while (starters) { |
2987 GtkTextIter tagend; | |
2988 sspan = (GtkIMHtmlFormatSpan*)starters->data; | |
2989 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &siter, sspan->start); | |
2990 if (gtk_text_iter_compare(&siter, start) > 0) | |
2991 break; | |
2992 if (sspan->end) | |
2993 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &tagend, sspan->end); | |
2994 if (sspan->end == NULL || gtk_text_iter_compare(&tagend, start) > 0) { | |
2995 str = g_string_append(str, sspan->start_tag); | |
2996 closers = g_list_insert_sorted(closers, sspan, (GCompareFunc)span_compare_end); | |
2997 espan = (GtkIMHtmlFormatSpan*)closers->data; | |
8365 | 2998 /* |
2999 * When sending an IM, the following line causes the following warning: | |
3000 * Gtk: file gtktextbuffer.c: line 1794 | |
3001 * (gtk_text_buffer_get_iter_at_mark): assertion `GTK_IS_TEXT_MARK (mark)' failed | |
3002 * | |
3003 * The callback path thingy to get here is: | |
3004 * gtkconv.c, send(), "buf = gtk_imhtml_get_markup(GTK_IMHTML(gtkconv->entry));" | |
3005 * gtkimhtml.c, gtk_imthml_get_markup(), "return gtk_imhtml_get_markup_range(imhtml, &start, &end);" | |
3006 * | |
3007 * I don't really know anything about gtkimhtml, but it almost seems like | |
3008 * the line above this comments expects to find a closing html tag, but | |
3009 * can't, for some reason. The warning depends on how much HTML I send | |
3010 * in my message, kind of. | |
3011 */ | |
8481 | 3012 /* comment this out until myself or someone else finishes |
3013 * it. This is supposed to apply a tag to selected text, | |
3014 * i believe... | |
8061 | 3015 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &eiter, espan->end); |
8481 | 3016 */ |
8061 | 3017 } |
3018 sspan = (GtkIMHtmlFormatSpan*)starters->data; | |
3019 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &siter, sspan->start); | |
3020 starters = starters->next; | |
3021 } | |
3022 if (!starters) { | |
3023 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &siter); | |
3024 sspan = NULL; | |
3025 } | |
3026 } | |
3027 | |
3028 while ((c = gtk_text_iter_get_char(&iter)) != 0 && !gtk_text_iter_equal(&iter, end)) { | |
3029 if (c == 0xFFFC) { | |
3030 GtkTextChildAnchor* anchor = gtk_text_iter_get_child_anchor(&iter); | |
3031 char *text = g_object_get_data(G_OBJECT(anchor), "text_tag"); | |
3032 str = g_string_append(str, text); | |
3033 } else { | |
3034 while (gtk_text_iter_equal(&eiter, &iter)) { | |
3035 /* This is where we shall insert the ending tag of | |
3036 * this format span */ | |
3037 str = g_string_append(str, espan->end_tag); | |
3038 closers = g_list_remove(closers, espan); | |
3039 if (!closers) { | |
3040 espan = NULL; | |
3041 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &eiter); | |
3042 } else { | |
3043 espan = (GtkIMHtmlFormatSpan*)closers->data; | |
8429 | 3044 if (espan->end) |
3045 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &eiter, espan->end); | |
3046 else | |
3047 gtk_text_iter_forward_to_end(&eiter); | |
8061 | 3048 } |
3049 } | |
3050 while (gtk_text_iter_equal(&siter, &iter)) { | |
3051 /* This is where we shall insert the starting tag of | |
3052 * this format span */ | |
3053 str = g_string_append(str, sspan->start_tag); | |
3054 if (sspan->end) { | |
3055 closers = g_list_insert_sorted(closers, sspan, (GCompareFunc)span_compare_end); | |
3056 espan = (GtkIMHtmlFormatSpan*)closers->data; | |
3057 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &eiter, espan->end); | |
3058 | |
3059 } | |
3060 starters = starters->next; | |
3061 if (starters) { | |
3062 sspan = (GtkIMHtmlFormatSpan*)starters->data; | |
3063 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &siter, sspan->start); | |
3064 } else { | |
3065 sspan = NULL; | |
3066 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &siter); | |
3067 } | |
3068 | |
3069 } | |
3070 | |
3071 if (c == '<') | |
3072 str = g_string_append(str, "<"); | |
3073 else if (c == '>') | |
3074 str = g_string_append(str, ">"); | |
3075 else if (c == '&') | |
3076 str = g_string_append(str, "&"); | |
3077 else if (c == '"') | |
3078 str = g_string_append(str, """); | |
3079 else if (c == '\n') | |
3080 str = g_string_append(str, "<br>"); | |
3081 else | |
3082 str = g_string_append_unichar(str, c); | |
3083 } | |
3084 gtk_text_iter_forward_char(&iter); | |
3085 } | |
3086 while (closers) { | |
3087 GtkIMHtmlFormatSpan *span = (GtkIMHtmlFormatSpan*)closers->data; | |
3088 str = g_string_append(str, span->end_tag); | |
3089 closers = g_list_remove(closers, span); | |
3090 | |
3091 } | |
3092 return g_string_free(str, FALSE); | |
3093 } | |
3094 | |
3095 void gtk_imhtml_close_tags(GtkIMHtml *imhtml) | |
3096 { | |
3097 | |
3098 if (imhtml->edit.bold) | |
3099 gtk_imhtml_toggle_bold(imhtml); | |
3100 | |
3101 if (imhtml->edit.italic) | |
3102 gtk_imhtml_toggle_italic(imhtml); | |
3103 | |
3104 if (imhtml->edit.underline) | |
3105 gtk_imhtml_toggle_underline(imhtml); | |
3106 | |
3107 if (imhtml->edit.forecolor) | |
3108 gtk_imhtml_toggle_forecolor(imhtml, NULL); | |
3109 | |
3110 if (imhtml->edit.backcolor) | |
3111 gtk_imhtml_toggle_backcolor(imhtml, NULL); | |
3112 | |
3113 if (imhtml->edit.fontface) | |
3114 gtk_imhtml_toggle_fontface(imhtml, NULL); | |
3115 | |
3116 if (imhtml->edit.sizespan) | |
3117 gtk_imhtml_font_set_size(imhtml, -1); | |
3118 | |
3119 } | |
3120 | |
3121 char *gtk_imhtml_get_markup(GtkIMHtml *imhtml) | |
3122 { | |
3123 GtkTextIter start, end; | |
3124 | |
3125 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); | |
3126 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
3127 return gtk_imhtml_get_markup_range(imhtml, &start, &end); | |
3128 } | |
3129 | |
3130 char *gtk_imhtml_get_text(GtkIMHtml *imhtml) | |
3131 { | |
3132 GtkTextIter start_iter, end_iter; | |
3133 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start_iter); | |
3134 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end_iter); | |
3135 return gtk_text_buffer_get_text(imhtml->text_buffer, &start_iter, &end_iter, FALSE); | |
3136 | |
3137 } |