Mercurial > pidgin.yaz
annotate src/gtkimhtml.c @ 8885:4274f888477e
[gaim-migrate @ 9654]
Patch from Evan Schoenberg of Adium to allow Gaim to sign on AIM
screen names containing _'s. This is apparently valid for @mac.com
accounts, although I wasn't able to create an AIM account.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 06 May 2004 05:15:24 +0000 |
parents | 1ab2a9c17f4a |
children | 6c98b883580a |
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 |
8526 | 27 #include "debug.h" |
8091 | 28 #include "util.h" |
1428 | 29 #include "gtkimhtml.h" |
7358 | 30 #include "gtksourceiter.h" |
1428 | 31 #include <gtk/gtk.h> |
4895 | 32 #include <glib/gerror.h> |
4046 | 33 #include <gdk/gdkkeysyms.h> |
1428 | 34 #include <string.h> |
35 #include <ctype.h> | |
36 #include <stdio.h> | |
4629 | 37 #include <stdlib.h> |
1428 | 38 #include <math.h> |
2541
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
39 #ifdef HAVE_LANGINFO_CODESET |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
40 #include <langinfo.h> |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
41 #include <locale.h> |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
42 #endif |
8692 | 43 #ifdef _WIN32 |
44 #include <windows.h> | |
45 #endif | |
1428 | 46 |
4417 | 47 #ifdef ENABLE_NLS |
48 # include <libintl.h> | |
49 # define _(x) gettext(x) | |
50 # ifdef gettext_noop | |
51 # define N_(String) gettext_noop (String) | |
52 # else | |
53 # define N_(String) (String) | |
54 # endif | |
55 #else | |
56 # define N_(String) (String) | |
57 # define _(x) (x) | |
58 #endif | |
59 | |
4735 | 60 #include <pango/pango-font.h> |
61 | |
5105 | 62 /* GTK+ < 2.2.2 hack, see ui.h for details. */ |
63 #ifndef GTK_WRAP_WORD_CHAR | |
64 #define GTK_WRAP_WORD_CHAR GTK_WRAP_WORD | |
65 #endif | |
66 | |
4735 | 67 #define TOOLTIP_TIMEOUT 500 |
68 | |
8786 | 69 /* GTK+ 2.0 hack */ |
70 #if (!GTK_CHECK_VERSION(2,2,0)) | |
71 #define gtk_widget_get_clipboard(x, y) gtk_clipboard_get(y) | |
72 #endif | |
73 | |
8677 | 74 static void preinsert_cb(GtkTextBuffer *buffer, GtkTextIter *iter, gchar *text, gint len, GtkIMHtml *imhtml); |
8061 | 75 static void insert_cb(GtkTextBuffer *buffer, GtkTextIter *iter, gchar *text, gint len, GtkIMHtml *imhtml); |
8505 | 76 static gboolean gtk_imhtml_is_amp_escape (const gchar *string, gchar **replace, gint *length); |
8698 | 77 void gtk_imhtml_close_tags(GtkIMHtml *imhtml, GtkTextIter *iter); |
8091 | 78 static void gtk_imhtml_link_drag_rcv_cb(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, GtkSelectionData *sd, guint info, guint t, GtkIMHtml *imhtml); |
8677 | 79 static void mark_set_cb(GtkTextBuffer *buffer, GtkTextIter *arg1, GtkTextMark *mark, GtkIMHtml *imhtml); |
8061 | 80 |
3922 | 81 /* POINT_SIZE converts from AIM font sizes to point sizes. It probably should be redone in such a |
82 * way that it base the sizes off the default font size rather than using arbitrary font sizes. */ | |
83 #define MAX_FONT_SIZE 7 | |
5367 | 84 #define POINT_SIZE(x) (options & GTK_IMHTML_USE_POINTSIZE ? x : _point_sizes [MIN ((x), MAX_FONT_SIZE) - 1]) |
8380 | 85 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
|
86 |
8498 | 87 enum { |
8677 | 88 TARGET_HTML, |
8061 | 89 TARGET_UTF8_STRING, |
90 TARGET_COMPOUND_TEXT, | |
91 TARGET_STRING, | |
92 TARGET_TEXT | |
93 }; | |
94 | |
8091 | 95 enum { |
96 DRAG_URL | |
97 }; | |
98 | |
8420 | 99 enum { |
100 URL_CLICKED, | |
101 BUTTONS_UPDATE, | |
102 TOGGLE_FORMAT, | |
8427 | 103 CLEAR_FORMAT, |
8506 | 104 UPDATE_FORMAT, |
8420 | 105 LAST_SIGNAL |
106 }; | |
107 static guint signals [LAST_SIGNAL] = { 0 }; | |
108 | |
8061 | 109 GtkTargetEntry selection_targets[] = { |
8566 | 110 { "text/html", 0, TARGET_HTML }, |
8061 | 111 { "UTF8_STRING", 0, TARGET_UTF8_STRING }, |
112 { "COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT }, | |
113 { "STRING", 0, TARGET_STRING }, | |
114 { "TEXT", 0, TARGET_TEXT}}; | |
115 | |
8091 | 116 GtkTargetEntry link_drag_drop_targets[] = { |
117 {"x-url/ftp", 0, DRAG_URL}, | |
118 {"x-url/http", 0, DRAG_URL}, | |
119 {"text/uri-list", 0, DRAG_URL}, | |
120 {"_NETSCAPE_URL", 0, DRAG_URL}}; | |
121 | |
8692 | 122 #ifdef _WIN32 |
123 /* Win32 clipboard format value, and functions to convert back and | |
124 * forth between HTML and the clipboard format. | |
125 */ | |
126 static UINT win_html_fmt; | |
127 | |
128 static gchar * | |
129 clipboard_win32_to_html(char *clipboard) { | |
8693 | 130 const char *begin, *end; |
8692 | 131 gchar *html; |
132 | |
8693 | 133 begin = strstr(clipboard, "<!--StartFragment"); |
134 while(*begin++ != '>'); | |
8692 | 135 end = strstr(clipboard, "<!--EndFragment"); |
136 html = g_strstrip(g_strndup(begin, (end ? (end - begin) : strlen(begin)))); | |
8707 | 137 return html; |
8692 | 138 } |
139 | |
140 static gchar * | |
141 clipboard_html_to_win32(char *html) { | |
8693 | 142 int length; |
8692 | 143 gchar *ret; |
144 GString *clipboard; | |
145 | |
8693 | 146 if (html == NULL) |
147 return NULL; | |
8692 | 148 |
149 length = strlen(html); | |
150 clipboard = g_string_new ("Version:0.9\r\n"); | |
151 g_string_append(clipboard, "StartHTML:0000000105\r\n"); | |
152 g_string_append(clipboard, g_strdup_printf("EndHTML:%010d\r\n", 143 + length)); | |
153 g_string_append(clipboard, "StartFragment:0000000105\r\n"); | |
154 g_string_append(clipboard, g_strdup_printf("EndFragment:%010d\r\n", 143 + length)); | |
155 g_string_append(clipboard, "<!--StartFragment-->"); | |
156 g_string_append(clipboard, html); | |
157 g_string_append(clipboard, "<!--EndFragment-->"); | |
158 ret = clipboard->str; | |
159 g_string_free(clipboard, FALSE); | |
160 return ret; | |
161 } | |
162 #endif | |
163 | |
4032 | 164 static GtkSmileyTree* |
165 gtk_smiley_tree_new () | |
166 { | |
167 return g_new0 (GtkSmileyTree, 1); | |
168 } | |
169 | |
170 static void | |
171 gtk_smiley_tree_insert (GtkSmileyTree *tree, | |
4263 | 172 GtkIMHtmlSmiley *smiley) |
4032 | 173 { |
174 GtkSmileyTree *t = tree; | |
4263 | 175 const gchar *x = smiley->smile; |
4032 | 176 |
177 if (!strlen (x)) | |
178 return; | |
179 | |
180 while (*x) { | |
181 gchar *pos; | |
182 gint index; | |
183 | |
184 if (!t->values) | |
185 t->values = g_string_new (""); | |
186 | |
187 pos = strchr (t->values->str, *x); | |
188 if (!pos) { | |
189 t->values = g_string_append_c (t->values, *x); | |
190 index = t->values->len - 1; | |
191 t->children = g_realloc (t->children, t->values->len * sizeof (GtkSmileyTree *)); | |
192 t->children [index] = g_new0 (GtkSmileyTree, 1); | |
193 } else | |
7386 | 194 index = GPOINTER_TO_INT(pos) - GPOINTER_TO_INT(t->values->str); |
8061 | 195 |
4032 | 196 t = t->children [index]; |
8061 | 197 |
4032 | 198 x++; |
199 } | |
8061 | 200 |
4263 | 201 t->image = smiley; |
4032 | 202 } |
4041 | 203 |
4263 | 204 |
4264 | 205 void gtk_smiley_tree_destroy (GtkSmileyTree *tree) |
4032 | 206 { |
207 GSList *list = g_slist_append (NULL, tree); | |
208 | |
209 while (list) { | |
210 GtkSmileyTree *t = list->data; | |
211 gint i; | |
212 list = g_slist_remove(list, t); | |
7384 | 213 if (t && t->values) { |
4032 | 214 for (i = 0; i < t->values->len; i++) |
215 list = g_slist_append (list, t->children [i]); | |
216 g_string_free (t->values, TRUE); | |
217 g_free (t->children); | |
218 } | |
219 g_free (t); | |
220 } | |
221 } | |
222 | |
5967 | 223 static gboolean gtk_size_allocate_cb(GtkIMHtml *widget, GtkAllocation *alloc, gpointer user_data) |
224 { | |
225 GdkRectangle rect; | |
8726 | 226 int xminus; |
5967 | 227 |
228 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(widget), &rect); | |
229 if(widget->old_rect.width != rect.width || widget->old_rect.height != rect.height){ | |
230 GList *iter = GTK_IMHTML(widget)->scalables; | |
231 | |
8726 | 232 xminus = gtk_text_view_get_left_margin(GTK_TEXT_VIEW(widget)) + |
233 gtk_text_view_get_right_margin(GTK_TEXT_VIEW(widget)); | |
234 | |
5967 | 235 while(iter){ |
236 GtkIMHtmlScalable *scale = GTK_IMHTML_SCALABLE(iter->data); | |
8726 | 237 scale->scale(scale, rect.width - xminus, rect.height); |
5967 | 238 |
239 iter = iter->next; | |
240 } | |
241 } | |
242 | |
243 widget->old_rect = rect; | |
244 return FALSE; | |
245 } | |
246 | |
247 static gint | |
248 gtk_imhtml_tip_paint (GtkIMHtml *imhtml) | |
249 { | |
250 PangoLayout *layout; | |
251 | |
252 g_return_val_if_fail(GTK_IS_IMHTML(imhtml), FALSE); | |
253 | |
254 layout = gtk_widget_create_pango_layout(imhtml->tip_window, imhtml->tip); | |
255 | |
8061 | 256 gtk_paint_flat_box (imhtml->tip_window->style, imhtml->tip_window->window, |
5967 | 257 GTK_STATE_NORMAL, GTK_SHADOW_OUT, NULL, imhtml->tip_window, |
258 "tooltip", 0, 0, -1, -1); | |
259 | |
260 gtk_paint_layout (imhtml->tip_window->style, imhtml->tip_window->window, GTK_STATE_NORMAL, | |
261 FALSE, NULL, imhtml->tip_window, NULL, 4, 4, layout); | |
262 | |
263 g_object_unref(layout); | |
264 return FALSE; | |
265 } | |
266 | |
267 static gint | |
268 gtk_imhtml_tip (gpointer data) | |
269 { | |
270 GtkIMHtml *imhtml = data; | |
8526 | 271 PangoFontMetrics *font_metrics; |
5967 | 272 PangoLayout *layout; |
8526 | 273 PangoFont *font; |
5967 | 274 |
275 gint gap, x, y, h, w, scr_w, baseline_skip; | |
276 | |
277 g_return_val_if_fail(GTK_IS_IMHTML(imhtml), FALSE); | |
278 | |
279 if (!imhtml->tip || !GTK_WIDGET_DRAWABLE (GTK_WIDGET(imhtml))) { | |
280 imhtml->tip_timer = 0; | |
281 return FALSE; | |
282 } | |
8061 | 283 |
5967 | 284 if (imhtml->tip_window){ |
285 gtk_widget_destroy (imhtml->tip_window); | |
286 imhtml->tip_window = NULL; | |
287 } | |
288 | |
289 imhtml->tip_timer = 0; | |
290 imhtml->tip_window = gtk_window_new (GTK_WINDOW_POPUP); | |
291 gtk_widget_set_app_paintable (imhtml->tip_window, TRUE); | |
292 gtk_window_set_resizable (GTK_WINDOW (imhtml->tip_window), FALSE); | |
293 gtk_widget_set_name (imhtml->tip_window, "gtk-tooltips"); | |
294 g_signal_connect_swapped (G_OBJECT (imhtml->tip_window), "expose_event", | |
295 G_CALLBACK (gtk_imhtml_tip_paint), imhtml); | |
296 | |
297 gtk_widget_ensure_style (imhtml->tip_window); | |
298 layout = gtk_widget_create_pango_layout(imhtml->tip_window, imhtml->tip); | |
8526 | 299 font = pango_context_load_font(pango_layout_get_context(layout), |
300 imhtml->tip_window->style->font_desc); | |
301 | |
302 if (font == NULL) { | |
303 char *tmp = pango_font_description_to_string( | |
304 imhtml->tip_window->style->font_desc); | |
305 | |
306 gaim_debug(GAIM_DEBUG_ERROR, "gtk_imhtml_tip", | |
307 "pango_context_load_font() couldn't load font: '%s'\n", | |
308 tmp); | |
309 g_free(tmp); | |
310 | |
311 return FALSE; | |
312 | |
313 } | |
314 | |
315 font_metrics = pango_font_get_metrics(font, NULL); | |
8309 | 316 |
5967 | 317 |
318 pango_layout_get_pixel_size(layout, &scr_w, NULL); | |
8526 | 319 gap = PANGO_PIXELS((pango_font_metrics_get_ascent(font_metrics) + |
320 pango_font_metrics_get_descent(font_metrics))/ 4); | |
5967 | 321 |
322 if (gap < 2) | |
323 gap = 2; | |
8526 | 324 baseline_skip = PANGO_PIXELS(pango_font_metrics_get_ascent(font_metrics) + |
325 pango_font_metrics_get_descent(font_metrics)); | |
5967 | 326 w = 8 + scr_w; |
327 h = 8 + baseline_skip; | |
328 | |
329 gdk_window_get_pointer (NULL, &x, &y, NULL); | |
330 if (GTK_WIDGET_NO_WINDOW (GTK_WIDGET(imhtml))) | |
331 y += GTK_WIDGET(imhtml)->allocation.y; | |
332 | |
333 scr_w = gdk_screen_width(); | |
334 | |
335 x -= ((w >> 1) + 4); | |
336 | |
337 if ((x + w) > scr_w) | |
338 x -= (x + w) - scr_w; | |
339 else if (x < 0) | |
340 x = 0; | |
341 | |
8526 | 342 y = y + PANGO_PIXELS(pango_font_metrics_get_ascent(font_metrics) + |
343 pango_font_metrics_get_descent(font_metrics)); | |
5967 | 344 |
345 gtk_widget_set_size_request (imhtml->tip_window, w, h); | |
346 gtk_widget_show (imhtml->tip_window); | |
347 gtk_window_move (GTK_WINDOW(imhtml->tip_window), x, y); | |
348 | |
8526 | 349 pango_font_metrics_unref(font_metrics); |
5967 | 350 g_object_unref(layout); |
351 | |
352 return FALSE; | |
353 } | |
354 | |
355 gboolean gtk_motion_event_notify(GtkWidget *imhtml, GdkEventMotion *event, gpointer data) | |
8061 | 356 { |
5967 | 357 GtkTextIter iter; |
358 GdkWindow *win = event->window; | |
359 int x, y; | |
360 char *tip = NULL; | |
361 GSList *tags = NULL, *templist = NULL; | |
362 gdk_window_get_pointer(GTK_WIDGET(imhtml)->window, NULL, NULL, NULL); | |
363 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(imhtml), GTK_TEXT_WINDOW_WIDGET, | |
364 event->x, event->y, &x, &y); | |
365 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, x, y); | |
366 tags = gtk_text_iter_get_tags(&iter); | |
367 | |
368 templist = tags; | |
369 while (templist) { | |
370 GtkTextTag *tag = templist->data; | |
371 tip = g_object_get_data(G_OBJECT(tag), "link_url"); | |
372 if (tip) | |
373 break; | |
374 templist = templist->next; | |
375 } | |
8061 | 376 |
5967 | 377 if (GTK_IMHTML(imhtml)->tip) { |
378 if ((tip == GTK_IMHTML(imhtml)->tip)) { | |
379 return FALSE; | |
380 } | |
381 /* We've left the cell. Remove the timeout and create a new one below */ | |
382 if (GTK_IMHTML(imhtml)->tip_window) { | |
383 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
384 GTK_IMHTML(imhtml)->tip_window = NULL; | |
385 } | |
8061 | 386 if (GTK_IMHTML(imhtml)->editable) |
387 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->text_cursor); | |
388 else | |
389 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->arrow_cursor); | |
5967 | 390 if (GTK_IMHTML(imhtml)->tip_timer) |
391 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
392 GTK_IMHTML(imhtml)->tip_timer = 0; | |
393 } | |
8061 | 394 |
5967 | 395 if(tip){ |
8061 | 396 if (!GTK_IMHTML(imhtml)->editable) |
397 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->hand_cursor); | |
398 GTK_IMHTML(imhtml)->tip_timer = g_timeout_add (TOOLTIP_TIMEOUT, | |
5967 | 399 gtk_imhtml_tip, imhtml); |
400 } | |
8061 | 401 |
5967 | 402 GTK_IMHTML(imhtml)->tip = tip; |
403 g_slist_free(tags); | |
404 return FALSE; | |
405 } | |
406 | |
407 gboolean gtk_leave_event_notify(GtkWidget *imhtml, GdkEventCrossing *event, gpointer data) | |
408 { | |
409 /* when leaving the widget, clear any current & pending tooltips and restore the cursor */ | |
410 if (GTK_IMHTML(imhtml)->tip_window) { | |
411 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
412 GTK_IMHTML(imhtml)->tip_window = NULL; | |
413 } | |
414 if (GTK_IMHTML(imhtml)->tip_timer) { | |
415 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
416 GTK_IMHTML(imhtml)->tip_timer = 0; | |
417 } | |
8061 | 418 if (GTK_IMHTML(imhtml)->editable) |
419 gdk_window_set_cursor(event->window, GTK_IMHTML(imhtml)->text_cursor); | |
420 else | |
421 gdk_window_set_cursor(event->window, GTK_IMHTML(imhtml)->arrow_cursor); | |
5967 | 422 |
8568 | 423 /* propagate the event normally */ |
5967 | 424 return FALSE; |
425 } | |
426 | |
6066 | 427 /* |
428 * XXX - This should be removed eventually. | |
429 * | |
8061 | 430 * This function exists to work around a gross bug in GtkTextView. |
431 * Basically, we short circuit ctrl+a and ctrl+end because they make | |
6066 | 432 * el program go boom. |
433 * | |
8061 | 434 * It's supposed to be fixed in gtk2.2. You can view the bug report at |
6066 | 435 * http://bugzilla.gnome.org/show_bug.cgi?id=107939 |
436 */ | |
8317 | 437 |
438 /* | |
439 * I'm adding some keyboard shortcuts too. | |
440 */ | |
441 | |
442 gboolean gtk_key_pressed_cb(GtkIMHtml *imhtml, GdkEventKey *event, gpointer data) | |
8677 | 443 { |
8317 | 444 char buf[7]; |
445 buf[0] = '\0'; | |
446 | |
6066 | 447 if (event->state & GDK_CONTROL_MASK) |
448 switch (event->keyval) { | |
8539 | 449 #if (!GTK_CHECK_VERSION(2,2,0)) |
8317 | 450 case 'a': |
451 return TRUE; | |
452 break; | |
8677 | 453 |
8317 | 454 case GDK_Home: |
455 return TRUE; | |
456 break; | |
457 | |
458 case GDK_End: | |
459 return TRUE; | |
460 break; | |
8758 | 461 #endif /* !(Gtk+ >= 2.2.0) */ |
8317 | 462 |
463 case 'b': /* ctrl-b is GDK_Left, which moves backwards. */ | |
464 case 'B': | |
8420 | 465 if (imhtml->format_functions & GTK_IMHTML_BOLD) { |
8456 | 466 if(imhtml->html_shortcuts) { |
467 gtk_imhtml_toggle_bold(imhtml); | |
8466 | 468 return TRUE; |
8456 | 469 } |
8420 | 470 } |
8466 | 471 return FALSE; |
8317 | 472 break; |
8654 | 473 |
474 #ifdef LAY_OFF_MY_FRIGGIN_KEYBINDINGS | |
8317 | 475 case 'f': |
476 case 'F': | |
477 /*set_toggle(gtkconv->toolbar.font, | |
478 !gtk_toggle_button_get_active( | |
479 GTK_TOGGLE_BUTTON(gtkconv->toolbar.font)));*/ | |
480 | |
481 return TRUE; | |
482 break; | |
8654 | 483 #endif /* this doesn't even DO anything */ |
8317 | 484 |
485 case 'i': | |
486 case 'I': | |
8481 | 487 if (imhtml->format_functions & GTK_IMHTML_ITALIC) { |
8466 | 488 if(imhtml->html_shortcuts) { |
8456 | 489 gtk_imhtml_toggle_italic(imhtml); |
8466 | 490 return TRUE; |
491 } | |
8481 | 492 } |
8466 | 493 return FALSE; |
8317 | 494 break; |
495 | |
496 case 'u': /* ctrl-u is GDK_Clear, which clears the line. */ | |
497 case 'U': | |
8481 | 498 if (imhtml->format_functions & GTK_IMHTML_UNDERLINE) { |
8466 | 499 if(imhtml->html_shortcuts) { |
8456 | 500 gtk_imhtml_toggle_underline(imhtml); |
8466 | 501 return TRUE; |
502 } | |
8481 | 503 } |
8466 | 504 return FALSE; |
8317 | 505 break; |
506 | |
507 case '-': | |
8420 | 508 if (imhtml->format_functions & GTK_IMHTML_SHRINK) |
509 gtk_imhtml_font_shrink(imhtml); | |
8317 | 510 return TRUE; |
511 break; | |
512 | |
513 case '=': | |
514 case '+': | |
8420 | 515 if (imhtml->format_functions & GTK_IMHTML_GROW) |
516 gtk_imhtml_font_grow(imhtml); | |
8317 | 517 return TRUE; |
518 break; | |
8677 | 519 |
8317 | 520 case '1': strcpy(buf, ":-)"); break; |
521 case '2': strcpy(buf, ":-("); break; | |
522 case '3': strcpy(buf, ";-)"); break; | |
523 case '4': strcpy(buf, ":-P"); break; | |
524 case '5': strcpy(buf, "=-O"); break; | |
525 case '6': strcpy(buf, ":-*"); break; | |
526 case '7': strcpy(buf, ">:o"); break; | |
527 case '8': strcpy(buf, "8-)"); break; | |
528 case '!': strcpy(buf, ":-$"); break; | |
529 case '@': strcpy(buf, ":-!"); break; | |
530 case '#': strcpy(buf, ":-["); break; | |
531 case '$': strcpy(buf, "O:-)"); break; | |
532 case '%': strcpy(buf, ":-/"); break; | |
533 case '^': strcpy(buf, ":'("); break; | |
534 case '&': strcpy(buf, ":-X"); break; | |
535 case '*': strcpy(buf, ":-D"); break; | |
6066 | 536 } |
8456 | 537 if (*buf && imhtml->smiley_shortcuts) { |
538 gtk_imhtml_insert_smiley(imhtml, imhtml->protocol_name, buf); | |
8317 | 539 return TRUE; |
8677 | 540 } |
6066 | 541 return FALSE; |
542 } | |
543 | |
8061 | 544 static void gtk_imhtml_clipboard_get(GtkClipboard *clipboard, GtkSelectionData *selection_data, guint info, GtkIMHtml *imhtml) { |
8681 | 545 char *text; |
8782
5a2b5e4abf3a
[gaim-migrate @ 9544]
Christian Hammond <chipx86@chipx86.com>
parents:
8758
diff
changeset
|
546 gboolean primary; |
8061 | 547 GtkTextIter start, end; |
548 GtkTextMark *sel = gtk_text_buffer_get_selection_bound(imhtml->text_buffer); | |
549 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
8681 | 550 |
8061 | 551 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &start, sel); |
552 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &end, ins); | |
8782
5a2b5e4abf3a
[gaim-migrate @ 9544]
Christian Hammond <chipx86@chipx86.com>
parents:
8758
diff
changeset
|
553 primary = gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_PRIMARY) == clipboard; |
8061 | 554 |
555 if (info == TARGET_HTML) { | |
8149 | 556 int len; |
8148 | 557 char *selection; |
8061 | 558 GString *str = g_string_new(NULL); |
8681 | 559 if (primary) { |
560 text = gtk_imhtml_get_markup_range(imhtml, &start, &end); | |
561 } else | |
562 text = imhtml->clipboard_html_string; | |
8061 | 563 |
564 /* Mozilla asks that we start our text/html with the Unicode byte order mark */ | |
565 str = g_string_append_unichar(str, 0xfeff); | |
566 str = g_string_append(str, text); | |
567 str = g_string_append_unichar(str, 0x0000); | |
8148 | 568 selection = g_convert(str->str, str->len, "UCS-2", "UTF-8", NULL, &len, NULL); |
8719 | 569 gtk_selection_data_set(selection_data, gdk_atom_intern("text/html", FALSE), 16, selection, len); |
8061 | 570 g_string_free(str, TRUE); |
571 g_free(selection); | |
572 } else { | |
8681 | 573 if (primary) { |
574 text = gtk_imhtml_get_text(imhtml, &start, &end); | |
575 } else | |
576 text = imhtml->clipboard_text_string; | |
8061 | 577 gtk_selection_data_set_text(selection_data, text, strlen(text)); |
578 } | |
8681 | 579 if (primary) /* This was allocated here */ |
580 g_free(text); | |
581 } | |
8061 | 582 |
583 static void gtk_imhtml_primary_clipboard_clear(GtkClipboard *clipboard, GtkIMHtml *imhtml) | |
7749 | 584 { |
8061 | 585 GtkTextIter insert; |
586 GtkTextIter selection_bound; | |
587 | |
588 gtk_text_buffer_get_iter_at_mark (imhtml->text_buffer, &insert, | |
589 gtk_text_buffer_get_mark (imhtml->text_buffer, "insert")); | |
590 gtk_text_buffer_get_iter_at_mark (imhtml->text_buffer, &selection_bound, | |
591 gtk_text_buffer_get_mark (imhtml->text_buffer, "selection_bound")); | |
592 | |
593 if (!gtk_text_iter_equal (&insert, &selection_bound)) | |
594 gtk_text_buffer_move_mark (imhtml->text_buffer, | |
595 gtk_text_buffer_get_mark (imhtml->text_buffer, "selection_bound"), | |
596 &insert); | |
7749 | 597 } |
7742 | 598 |
8677 | 599 static void copy_clipboard_cb(GtkIMHtml *imhtml, gpointer unused) |
7749 | 600 { |
8681 | 601 GtkTextIter start, end; |
602 GtkTextMark *sel = gtk_text_buffer_get_selection_bound(imhtml->text_buffer); | |
603 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
604 | |
605 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &start, sel); | |
606 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &end, ins); | |
607 | |
8061 | 608 gtk_clipboard_set_with_owner(gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_CLIPBOARD), |
609 selection_targets, sizeof(selection_targets) / sizeof(GtkTargetEntry), | |
610 (GtkClipboardGetFunc)gtk_imhtml_clipboard_get, | |
611 (GtkClipboardClearFunc)NULL, G_OBJECT(imhtml)); | |
7346 | 612 |
8681 | 613 if (imhtml->clipboard_html_string) { |
614 g_free(imhtml->clipboard_html_string); | |
615 g_free(imhtml->clipboard_text_string); | |
616 } | |
617 | |
618 imhtml->clipboard_html_string = gtk_imhtml_get_markup_range(imhtml, &start, &end); | |
619 imhtml->clipboard_text_string = gtk_imhtml_get_text(imhtml, &start, &end); | |
620 | |
8692 | 621 #ifdef _WIN32 |
622 /* We're going to still copy plain text, but let's toss the "HTML Format" | |
623 we need into the windows clipboard now as well. */ | |
624 HGLOBAL hdata; | |
625 gchar *clipboard = clipboard_html_to_win32(imhtml->clipboard_html_string); | |
626 gchar *buffer; | |
627 gint length = strlen(clipboard); | |
628 if(clipboard != NULL) { | |
8693 | 629 OpenClipboard(NULL); |
8692 | 630 hdata = GlobalAlloc(GMEM_MOVEABLE, length); |
631 buffer = GlobalLock(hdata); | |
632 memcpy(buffer, clipboard, length); | |
633 GlobalUnlock(hdata); | |
634 SetClipboardData(win_html_fmt, hdata); | |
635 CloseClipboard(); | |
8693 | 636 g_free(clipboard); |
8692 | 637 } |
638 #endif | |
639 | |
8061 | 640 g_signal_stop_emission_by_name(imhtml, "copy-clipboard"); |
641 } | |
642 | |
8698 | 643 static void cut_clipboard_cb(GtkIMHtml *imhtml, gpointer unused) |
644 { | |
645 GtkTextIter start, end; | |
646 GtkTextMark *sel = gtk_text_buffer_get_selection_bound(imhtml->text_buffer); | |
647 GtkTextMark *ins = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
648 | |
649 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &start, sel); | |
650 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &end, ins); | |
651 | |
652 gtk_clipboard_set_with_owner(gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_CLIPBOARD), | |
653 selection_targets, sizeof(selection_targets) / sizeof(GtkTargetEntry), | |
654 (GtkClipboardGetFunc)gtk_imhtml_clipboard_get, | |
655 (GtkClipboardClearFunc)NULL, G_OBJECT(imhtml)); | |
656 | |
657 if (imhtml->clipboard_html_string) { | |
658 g_free(imhtml->clipboard_html_string); | |
659 g_free(imhtml->clipboard_text_string); | |
660 } | |
661 | |
662 imhtml->clipboard_html_string = gtk_imhtml_get_markup_range(imhtml, &start, &end); | |
663 imhtml->clipboard_text_string = gtk_imhtml_get_text(imhtml, &start, &end); | |
664 | |
665 #ifdef _WIN32 | |
666 /* We're going to still copy plain text, but let's toss the "HTML Format" | |
667 we need into the windows clipboard now as well. */ | |
668 HGLOBAL hdata; | |
669 gchar *clipboard = clipboard_html_to_win32(imhtml->clipboard_html_string); | |
670 gchar *buffer; | |
671 gint length = strlen(clipboard); | |
672 if(clipboard != NULL) { | |
673 OpenClipboard(NULL); | |
674 hdata = GlobalAlloc(GMEM_MOVEABLE, length); | |
675 buffer = GlobalLock(hdata); | |
676 memcpy(buffer, clipboard, length); | |
677 GlobalUnlock(hdata); | |
678 SetClipboardData(win_html_fmt, hdata); | |
679 CloseClipboard(); | |
680 g_free(clipboard); | |
681 } | |
682 #endif | |
683 | |
684 if (imhtml->editable) | |
685 gtk_text_buffer_delete_selection(imhtml->text_buffer, FALSE, FALSE); | |
686 g_signal_stop_emission_by_name(imhtml, "cut-clipboard"); | |
687 } | |
688 | |
8061 | 689 static void paste_received_cb (GtkClipboard *clipboard, GtkSelectionData *selection_data, gpointer data) |
690 { | |
691 char *text; | |
692 GtkIMHtml *imhtml = data; | |
8677 | 693 GtkTextIter iter; |
8698 | 694 GtkIMHtmlOptions flags = GTK_IMHTML_NO_NEWLINE; |
695 gboolean plaintext = FALSE; | |
7809 | 696 |
8123 | 697 if (!gtk_text_view_get_editable(GTK_TEXT_VIEW(imhtml))) |
8105 | 698 return; |
699 | |
8692 | 700 #ifdef _WIN32 |
701 /* If we're on windows, let's see if we can get data from the HTML Format | |
702 clipboard before we try to paste from the GTK buffer */ | |
703 HGLOBAL hdata; | |
704 DWORD err; | |
705 char *buffer; | |
706 if (IsClipboardFormatAvailable(win_html_fmt)) { | |
8693 | 707 OpenClipboard(NULL); |
8692 | 708 hdata = GetClipboardData(win_html_fmt); |
709 if (hdata == NULL) { | |
710 err = GetLastError(); | |
711 gaim_debug_info("html clipboard", "error number %u! See http://msdn.microsoft.com/library/en-us/debug/base/system_error_codes.asp\n", err); | |
712 CloseClipboard(); | |
713 return; | |
714 } | |
715 buffer = GlobalLock(hdata); | |
716 if (buffer == NULL) { | |
8693 | 717 err = GetLastError(); |
8692 | 718 gaim_debug_info("html clipboard", "error number %u! See http://msdn.microsoft.com/library/en-us/debug/base/system_error_codes.asp\n", err); |
719 CloseClipboard(); | |
720 return; | |
721 } | |
722 text = clipboard_win32_to_html(buffer); | |
723 GlobalUnlock(hdata); | |
724 CloseClipboard(); | |
725 } else | |
726 #endif | |
8061 | 727 if (selection_data->length < 0) { |
8698 | 728 char *tmp; |
8061 | 729 text = gtk_clipboard_wait_for_text(clipboard); |
8698 | 730 flags = 0; |
731 plaintext = TRUE; | |
8128
9aafd344230d
[gaim-migrate @ 8833]
Christian Hammond <chipx86@chipx86.com>
parents:
8123
diff
changeset
|
732 |
9aafd344230d
[gaim-migrate @ 8833]
Christian Hammond <chipx86@chipx86.com>
parents:
8123
diff
changeset
|
733 if (text == NULL) |
9aafd344230d
[gaim-migrate @ 8833]
Christian Hammond <chipx86@chipx86.com>
parents:
8123
diff
changeset
|
734 return; |
9aafd344230d
[gaim-migrate @ 8833]
Christian Hammond <chipx86@chipx86.com>
parents:
8123
diff
changeset
|
735 |
8698 | 736 tmp = gaim_escape_html(text); |
737 g_free(text); | |
738 text = tmp; | |
8061 | 739 } else { |
8719 | 740 #if 0 |
741 /* Here's some debug code, for figuring out what sent to us over the clipboard. */ | |
742 { | |
743 int i; | |
744 | |
745 gaim_debug_misc("gtkimhtml", "In paste_received_cb():\n\tformat = %d, length = %d\n\t", | |
746 selection_data->format, selection_data->length); | |
747 | |
748 for (i = 0; i < (/*(selection_data->format / 8) **/ selection_data->length); i++) { | |
749 if ((i % 70) == 0) | |
750 printf("\n\t"); | |
751 if (selection_data->data[i] == '\0') | |
752 printf("."); | |
753 else | |
754 printf("%c", selection_data->data[i]); | |
755 } | |
756 printf("\n"); | |
757 } | |
758 #endif | |
759 text = g_malloc(selection_data->length); | |
760 memcpy(text, selection_data->data, selection_data->length); | |
7766 | 761 } |
8061 | 762 |
8869 | 763 if (selection_data->length >= 2 && |
764 (*(guint16 *)text == 0xfeff || *(guint16 *)text == 0xfffe)) { | |
765 /* This is UCS-2 */ | |
766 char *utf8 = g_convert(text, selection_data->length, "UTF-8", "UCS-2", NULL, NULL, NULL); | |
8061 | 767 g_free(text); |
768 text = utf8; | |
8698 | 769 if (!text) { |
8869 | 770 gaim_debug_warning("gtkimhtml", "g_convert from UCS-2 failed in paste_received_cb\n"); |
8698 | 771 return; |
772 } | |
8061 | 773 } |
8698 | 774 |
775 if (!(*text) || !g_utf8_validate(text, -1, NULL)) { | |
776 gaim_debug_warning("gtkimhtml", "empty string or invalid UTF-8 in paste_received_cb\n"); | |
777 g_free(text); | |
778 return; | |
779 } | |
780 | |
8677 | 781 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, gtk_text_buffer_get_insert(imhtml->text_buffer)); |
8698 | 782 if (!imhtml->wbfo && !plaintext) |
783 gtk_imhtml_close_tags(imhtml, &iter); | |
784 gtk_imhtml_insert_html_at_iter(imhtml, text, flags, &iter); | |
8677 | 785 gtk_text_buffer_move_mark_by_name(imhtml->text_buffer, "insert", &iter); |
8698 | 786 gtk_text_view_scroll_to_mark(GTK_TEXT_VIEW(imhtml), gtk_text_buffer_get_insert(imhtml->text_buffer), |
787 0, FALSE, 0.0, 0.0); | |
8681 | 788 g_free(text); |
8061 | 789 } |
790 | |
791 static void paste_clipboard_cb(GtkIMHtml *imhtml, gpointer blah) | |
792 { | |
793 | |
794 GtkClipboard *clipboard = gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_CLIPBOARD); | |
795 gtk_clipboard_request_contents(clipboard, gdk_atom_intern("text/html", FALSE), | |
796 paste_received_cb, imhtml); | |
797 g_signal_stop_emission_by_name(imhtml, "paste-clipboard"); | |
7766 | 798 } |
799 | |
8677 | 800 static void imhtml_realized_remove_primary(GtkIMHtml *imhtml, gpointer unused) |
801 { | |
802 gtk_text_buffer_remove_selection_clipboard(GTK_IMHTML(imhtml)->text_buffer, | |
803 gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_PRIMARY)); | |
804 | |
805 } | |
806 | |
8740
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
807 static void imhtml_destroy_add_primary(GtkIMHtml *imhtml, gpointer unused) |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
808 { |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
809 gtk_text_buffer_add_selection_clipboard(GTK_IMHTML(imhtml)->text_buffer, |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
810 gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_PRIMARY)); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
811 } |
8677 | 812 |
813 static void mark_set_so_update_selection_cb(GtkTextBuffer *buffer, GtkTextIter *arg1, GtkTextMark *mark, GtkIMHtml *imhtml) | |
814 { | |
815 if (gtk_text_buffer_get_selection_bounds(buffer, NULL, NULL)) { | |
816 gtk_clipboard_set_with_owner(gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_PRIMARY), | |
817 selection_targets, sizeof(selection_targets) / sizeof(GtkTargetEntry), | |
818 (GtkClipboardGetFunc)gtk_imhtml_clipboard_get, | |
819 (GtkClipboardClearFunc)gtk_imhtml_primary_clipboard_clear, G_OBJECT(imhtml)); | |
820 } | |
821 } | |
822 | |
823 /* does this go in the #ifdef too? I need to keep track of which functions are 2.2 only */ | |
824 /* adapted from gtktextview.c */ | |
825 static gboolean gtk_imhtml_button_press_event(GtkIMHtml *imhtml, GdkEventButton *event, gpointer unused) | |
7346 | 826 { |
8677 | 827 if (event->button == 2) { |
828 int x, y; | |
829 GtkTextIter iter; | |
830 GtkClipboard *clipboard = gtk_widget_get_clipboard(GTK_WIDGET(imhtml), GDK_SELECTION_PRIMARY); | |
831 | |
832 if (!imhtml->editable) | |
833 return FALSE; | |
834 | |
835 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(imhtml), | |
836 GTK_TEXT_WINDOW_TEXT, | |
837 event->x, | |
838 event->y, | |
839 &x, | |
840 &y); | |
841 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, x, y); | |
842 gtk_text_buffer_place_cursor(imhtml->text_buffer, &iter); | |
843 | |
844 gtk_clipboard_request_contents(clipboard, gdk_atom_intern("text/html", FALSE), | |
845 paste_received_cb, imhtml); | |
846 | |
847 return TRUE; | |
848 } | |
849 | |
7346 | 850 return FALSE; |
851 } | |
4263 | 852 |
4032 | 853 static GtkTextViewClass *parent_class = NULL; |
854 | |
855 static void | |
856 gtk_imhtml_finalize (GObject *object) | |
857 { | |
858 GtkIMHtml *imhtml = GTK_IMHTML(object); | |
4895 | 859 GList *scalables; |
8061 | 860 |
4138 | 861 g_hash_table_destroy(imhtml->smiley_data); |
4032 | 862 gtk_smiley_tree_destroy(imhtml->default_smilies); |
4138 | 863 gdk_cursor_unref(imhtml->hand_cursor); |
864 gdk_cursor_unref(imhtml->arrow_cursor); | |
8061 | 865 gdk_cursor_unref(imhtml->text_cursor); |
8677 | 866 |
4735 | 867 if(imhtml->tip_window){ |
868 gtk_widget_destroy(imhtml->tip_window); | |
869 } | |
870 if(imhtml->tip_timer) | |
871 gtk_timeout_remove(imhtml->tip_timer); | |
872 | |
4895 | 873 for(scalables = imhtml->scalables; scalables; scalables = scalables->next) { |
874 GtkIMHtmlScalable *scale = GTK_IMHTML_SCALABLE(scalables->data); | |
875 scale->free(scale); | |
876 } | |
7991 | 877 |
8681 | 878 if (imhtml->clipboard_text_string) { |
879 g_free(imhtml->clipboard_text_string); | |
880 g_free(imhtml->clipboard_html_string); | |
881 } | |
882 | |
4895 | 883 g_list_free(imhtml->scalables); |
4032 | 884 G_OBJECT_CLASS(parent_class)->finalize (object); |
885 } | |
1428 | 886 |
3922 | 887 /* Boring GTK stuff */ |
8519 | 888 static void gtk_imhtml_class_init (GtkIMHtmlClass *klass) |
1428 | 889 { |
3922 | 890 GtkObjectClass *object_class; |
4032 | 891 GObjectClass *gobject_class; |
8519 | 892 object_class = (GtkObjectClass*) klass; |
893 gobject_class = (GObjectClass*) klass; | |
4032 | 894 parent_class = gtk_type_class(GTK_TYPE_TEXT_VIEW); |
4417 | 895 signals[URL_CLICKED] = g_signal_new("url_clicked", |
896 G_TYPE_FROM_CLASS(gobject_class), | |
897 G_SIGNAL_RUN_FIRST, | |
898 G_STRUCT_OFFSET(GtkIMHtmlClass, url_clicked), | |
899 NULL, | |
900 0, | |
901 g_cclosure_marshal_VOID__POINTER, | |
902 G_TYPE_NONE, 1, | |
903 G_TYPE_POINTER); | |
8506 | 904 signals[BUTTONS_UPDATE] = g_signal_new("format_buttons_update", |
8420 | 905 G_TYPE_FROM_CLASS(gobject_class), |
906 G_SIGNAL_RUN_FIRST, | |
907 G_STRUCT_OFFSET(GtkIMHtmlClass, buttons_update), | |
908 NULL, | |
909 0, | |
910 g_cclosure_marshal_VOID__POINTER, | |
911 G_TYPE_NONE, 1, | |
912 G_TYPE_INT); | |
913 signals[TOGGLE_FORMAT] = g_signal_new("format_function_toggle", | |
914 G_TYPE_FROM_CLASS(gobject_class), | |
915 G_SIGNAL_RUN_FIRST, | |
916 G_STRUCT_OFFSET(GtkIMHtmlClass, toggle_format), | |
917 NULL, | |
918 0, | |
919 g_cclosure_marshal_VOID__POINTER, | |
8427 | 920 G_TYPE_NONE, 1, |
8420 | 921 G_TYPE_INT); |
8427 | 922 signals[CLEAR_FORMAT] = g_signal_new("format_function_clear", |
923 G_TYPE_FROM_CLASS(gobject_class), | |
924 G_SIGNAL_RUN_FIRST, | |
925 G_STRUCT_OFFSET(GtkIMHtmlClass, clear_format), | |
926 NULL, | |
927 0, | |
8481 | 928 g_cclosure_marshal_VOID__VOID, |
929 G_TYPE_NONE, 0); | |
8506 | 930 signals[UPDATE_FORMAT] = g_signal_new("format_function_update", |
931 G_TYPE_FROM_CLASS(gobject_class), | |
932 G_SIGNAL_RUN_FIRST, | |
933 G_STRUCT_OFFSET(GtkIMHtmlClass, update_format), | |
934 NULL, | |
935 0, | |
936 g_cclosure_marshal_VOID__VOID, | |
937 G_TYPE_NONE, 0); | |
4032 | 938 gobject_class->finalize = gtk_imhtml_finalize; |
1428 | 939 } |
940 | |
3922 | 941 static void gtk_imhtml_init (GtkIMHtml *imhtml) |
1428 | 942 { |
3922 | 943 GtkTextIter iter; |
944 imhtml->text_buffer = gtk_text_buffer_new(NULL); | |
945 gtk_text_buffer_get_end_iter (imhtml->text_buffer, &iter); | |
8677 | 946 imhtml->scrollpoint = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, FALSE); |
3922 | 947 gtk_text_view_set_buffer(GTK_TEXT_VIEW(imhtml), imhtml->text_buffer); |
5105 | 948 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(imhtml), GTK_WRAP_WORD_CHAR); |
3922 | 949 gtk_text_view_set_pixels_below_lines(GTK_TEXT_VIEW(imhtml), 5); |
8677 | 950 gtk_text_view_set_left_margin(GTK_TEXT_VIEW(imhtml), 2); |
951 gtk_text_view_set_right_margin(GTK_TEXT_VIEW(imhtml), 2); | |
8061 | 952 /*gtk_text_view_set_indent(GTK_TEXT_VIEW(imhtml), -15);*/ |
3922 | 953 /*gtk_text_view_set_justification(GTK_TEXT_VIEW(imhtml), GTK_JUSTIFY_FILL);*/ |
8061 | 954 |
3922 | 955 /* These tags will be used often and can be reused--we create them on init and then apply them by name |
8061 | 956 * other tags (color, size, face, etc.) will have to be created and applied dynamically */ |
3922 | 957 gtk_text_buffer_create_tag(imhtml->text_buffer, "BOLD", "weight", PANGO_WEIGHT_BOLD, NULL); |
958 gtk_text_buffer_create_tag(imhtml->text_buffer, "ITALICS", "style", PANGO_STYLE_ITALIC, NULL); | |
959 gtk_text_buffer_create_tag(imhtml->text_buffer, "UNDERLINE", "underline", PANGO_UNDERLINE_SINGLE, NULL); | |
960 gtk_text_buffer_create_tag(imhtml->text_buffer, "STRIKE", "strikethrough", TRUE, NULL); | |
961 gtk_text_buffer_create_tag(imhtml->text_buffer, "SUB", "rise", -5000, NULL); | |
962 gtk_text_buffer_create_tag(imhtml->text_buffer, "SUP", "rise", 5000, NULL); | |
963 gtk_text_buffer_create_tag(imhtml->text_buffer, "PRE", "family", "Monospace", NULL); | |
7295 | 964 gtk_text_buffer_create_tag(imhtml->text_buffer, "search", "background", "#22ff00", "weight", "bold", NULL); |
8677 | 965 |
3922 | 966 /* When hovering over a link, we show the hand cursor--elsewhere we show the plain ol' pointer cursor */ |
967 imhtml->hand_cursor = gdk_cursor_new (GDK_HAND2); | |
968 imhtml->arrow_cursor = gdk_cursor_new (GDK_LEFT_PTR); | |
8061 | 969 imhtml->text_cursor = gdk_cursor_new (GDK_XTERM); |
2993 | 970 |
6124 | 971 imhtml->show_comments = TRUE; |
4253 | 972 |
8740
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
973 imhtml->zoom = 1.0; |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
974 imhtml->original_fsize = 0; |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
975 |
4892 | 976 imhtml->smiley_data = g_hash_table_new_full(g_str_hash, g_str_equal, |
4902 | 977 g_free, (GDestroyNotify)gtk_smiley_tree_destroy); |
4032 | 978 imhtml->default_smilies = gtk_smiley_tree_new(); |
4735 | 979 |
4944 | 980 g_signal_connect(G_OBJECT(imhtml), "size-allocate", G_CALLBACK(gtk_size_allocate_cb), NULL); |
4735 | 981 g_signal_connect(G_OBJECT(imhtml), "motion-notify-event", G_CALLBACK(gtk_motion_event_notify), NULL); |
4944 | 982 g_signal_connect(G_OBJECT(imhtml), "leave-notify-event", G_CALLBACK(gtk_leave_event_notify), NULL); |
6066 | 983 g_signal_connect(G_OBJECT(imhtml), "key_press_event", G_CALLBACK(gtk_key_pressed_cb), NULL); |
8677 | 984 g_signal_connect(G_OBJECT(imhtml), "button_press_event", G_CALLBACK(gtk_imhtml_button_press_event), NULL); |
985 g_signal_connect(G_OBJECT(imhtml->text_buffer), "insert-text", G_CALLBACK(preinsert_cb), imhtml); | |
8061 | 986 g_signal_connect_after(G_OBJECT(imhtml->text_buffer), "insert-text", G_CALLBACK(insert_cb), imhtml); |
8091 | 987 |
988 gtk_drag_dest_set(GTK_WIDGET(imhtml), 0, | |
989 link_drag_drop_targets, sizeof(link_drag_drop_targets) / sizeof(GtkTargetEntry), | |
990 GDK_ACTION_COPY); | |
991 g_signal_connect(G_OBJECT(imhtml), "drag_data_received", G_CALLBACK(gtk_imhtml_link_drag_rcv_cb), imhtml); | |
992 | |
7353 | 993 g_signal_connect(G_OBJECT(imhtml), "copy-clipboard", G_CALLBACK(copy_clipboard_cb), NULL); |
8698 | 994 g_signal_connect(G_OBJECT(imhtml), "cut-clipboard", G_CALLBACK(cut_clipboard_cb), NULL); |
8061 | 995 g_signal_connect(G_OBJECT(imhtml), "paste-clipboard", G_CALLBACK(paste_clipboard_cb), NULL); |
8677 | 996 //g_signal_connect_after(G_OBJECT(imhtml), "button-release-event", G_CALLBACK(button_release_cb), imhtml); |
997 g_signal_connect_after(G_OBJECT(imhtml), "realize", G_CALLBACK(imhtml_realized_remove_primary), NULL); | |
8740
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
998 g_signal_connect(G_OBJECT(imhtml), "unrealize", G_CALLBACK(imhtml_destroy_add_primary), NULL); |
8677 | 999 |
1000 g_signal_connect_after(G_OBJECT(GTK_IMHTML(imhtml)->text_buffer), "mark-set", | |
1001 G_CALLBACK(mark_set_so_update_selection_cb), imhtml); | |
1002 | |
4944 | 1003 gtk_widget_add_events(GTK_WIDGET(imhtml), GDK_LEAVE_NOTIFY_MASK); |
4735 | 1004 |
8681 | 1005 imhtml->clipboard_text_string = NULL; |
1006 imhtml->clipboard_html_string = NULL; | |
1007 | |
4735 | 1008 imhtml->tip = NULL; |
1009 imhtml->tip_timer = 0; | |
1010 imhtml->tip_window = NULL; | |
4895 | 1011 |
8677 | 1012 imhtml->edit.bold = FALSE; |
1013 imhtml->edit.italic = FALSE; | |
1014 imhtml->edit.underline = FALSE; | |
8061 | 1015 imhtml->edit.forecolor = NULL; |
1016 imhtml->edit.backcolor = NULL; | |
1017 imhtml->edit.fontface = NULL; | |
8677 | 1018 imhtml->edit.fontsize = 0; |
1019 imhtml->edit.link = NULL; | |
1020 | |
8061 | 1021 |
4895 | 1022 imhtml->scalables = NULL; |
8061 | 1023 |
1024 gtk_imhtml_set_editable(imhtml, FALSE); | |
8692 | 1025 |
1026 #ifdef _WIN32 | |
1027 /* Register HTML Format as desired clipboard format */ | |
1028 win_html_fmt = RegisterClipboardFormat("HTML Format"); | |
1029 #endif | |
2993 | 1030 } |
1031 | |
3922 | 1032 GtkWidget *gtk_imhtml_new(void *a, void *b) |
1428 | 1033 { |
4635 | 1034 return GTK_WIDGET(g_object_new(gtk_imhtml_get_type(), NULL)); |
1428 | 1035 } |
1036 | |
4635 | 1037 GType gtk_imhtml_get_type() |
1428 | 1038 { |
4635 | 1039 static GType imhtml_type = 0; |
1428 | 1040 |
1041 if (!imhtml_type) { | |
4635 | 1042 static const GTypeInfo imhtml_info = { |
1043 sizeof(GtkIMHtmlClass), | |
1044 NULL, | |
1045 NULL, | |
1046 (GClassInitFunc) gtk_imhtml_class_init, | |
1047 NULL, | |
1048 NULL, | |
1428 | 1049 sizeof (GtkIMHtml), |
4635 | 1050 0, |
1051 (GInstanceInitFunc) gtk_imhtml_init | |
1428 | 1052 }; |
4635 | 1053 |
1054 imhtml_type = g_type_register_static(gtk_text_view_get_type(), | |
1055 "GtkIMHtml", &imhtml_info, 0); | |
1428 | 1056 } |
1057 | |
1058 return imhtml_type; | |
1059 } | |
1060 | |
4417 | 1061 struct url_data { |
1062 GObject *object; | |
1063 gchar *url; | |
1064 }; | |
1065 | |
8677 | 1066 static void url_data_destroy(gpointer mydata) |
1067 { | |
1068 struct url_data *data = mydata; | |
1069 g_object_unref(data->object); | |
1070 g_free(data->url); | |
1071 g_free(data); | |
1072 } | |
1073 | |
4417 | 1074 static void url_open(GtkWidget *w, struct url_data *data) { |
1075 if(!data) return; | |
8061 | 1076 g_signal_emit(data->object, signals[URL_CLICKED], 0, data->url); |
7988 | 1077 |
4417 | 1078 } |
5582 | 1079 |
4417 | 1080 static void url_copy(GtkWidget *w, gchar *url) { |
1081 GtkClipboard *clipboard; | |
1082 | |
5293
ead927e2543f
[gaim-migrate @ 5665]
Christian Hammond <chipx86@chipx86.com>
parents:
5282
diff
changeset
|
1083 clipboard = gtk_clipboard_get(GDK_SELECTION_PRIMARY); |
4417 | 1084 gtk_clipboard_set_text(clipboard, url, -1); |
5582 | 1085 |
1086 clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD); | |
1087 gtk_clipboard_set_text(clipboard, url, -1); | |
4417 | 1088 } |
1089 | |
1090 /* The callback for an event on a link tag. */ | |
8677 | 1091 gboolean tag_event(GtkTextTag *tag, GObject *imhtml, GdkEvent *event, GtkTextIter *arg2, gpointer unused) { |
4417 | 1092 GdkEventButton *event_button = (GdkEventButton *) event; |
8061 | 1093 if (GTK_IMHTML(imhtml)->editable) |
1094 return FALSE; | |
3922 | 1095 if (event->type == GDK_BUTTON_RELEASE) { |
8061 | 1096 if (event_button->button == 1) { |
4417 | 1097 GtkTextIter start, end; |
1098 /* we shouldn't open a URL if the user has selected something: */ | |
8677 | 1099 if (gtk_text_buffer_get_selection_bounds( |
1100 gtk_text_iter_get_buffer(arg2), &start, &end)) | |
4417 | 1101 return FALSE; |
1102 | |
1103 /* A link was clicked--we emit the "url_clicked" signal | |
1104 * with the URL as the argument */ | |
8677 | 1105 g_object_ref(G_OBJECT(tag)); |
1106 g_signal_emit(imhtml, signals[URL_CLICKED], 0, g_object_get_data(G_OBJECT(tag), "link_url")); | |
1107 g_object_unref(G_OBJECT(tag)); | |
4417 | 1108 return FALSE; |
1109 } else if(event_button->button == 3) { | |
4745 | 1110 GtkWidget *img, *item, *menu; |
4417 | 1111 struct url_data *tempdata = g_new(struct url_data, 1); |
5091 | 1112 tempdata->object = g_object_ref(imhtml); |
8677 | 1113 tempdata->url = g_strdup(g_object_get_data(G_OBJECT(tag), "link_url")); |
4745 | 1114 |
5091 | 1115 /* Don't want the tooltip around if user right-clicked on link */ |
1116 if (GTK_IMHTML(imhtml)->tip_window) { | |
1117 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
1118 GTK_IMHTML(imhtml)->tip_window = NULL; | |
1119 } | |
1120 if (GTK_IMHTML(imhtml)->tip_timer) { | |
1121 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
1122 GTK_IMHTML(imhtml)->tip_timer = 0; | |
1123 } | |
8061 | 1124 if (GTK_IMHTML(imhtml)->editable) |
1125 gdk_window_set_cursor(event_button->window, GTK_IMHTML(imhtml)->text_cursor); | |
1126 else | |
1127 gdk_window_set_cursor(event_button->window, GTK_IMHTML(imhtml)->arrow_cursor); | |
4417 | 1128 menu = gtk_menu_new(); |
8677 | 1129 g_object_set_data_full(G_OBJECT(menu), "x-imhtml-url-data", tempdata, url_data_destroy); |
4745 | 1130 |
4417 | 1131 /* buttons and such */ |
1132 | |
8677 | 1133 if (!strncmp(tempdata->url, "mailto:", 7)) |
7140
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1134 { |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1135 /* Copy E-Mail Address */ |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1136 img = gtk_image_new_from_stock(GTK_STOCK_COPY, |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1137 GTK_ICON_SIZE_MENU); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1138 item = gtk_image_menu_item_new_with_mnemonic( |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1139 _("_Copy E-Mail Address")); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1140 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
|
1141 g_signal_connect(G_OBJECT(item), "activate", |
8677 | 1142 G_CALLBACK(url_copy), tempdata->url + 7); |
7140
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1143 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1144 } |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1145 else |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1146 { |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1147 /* Copy Link Location */ |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1148 img = gtk_image_new_from_stock(GTK_STOCK_COPY, |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1149 GTK_ICON_SIZE_MENU); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1150 item = gtk_image_menu_item_new_with_mnemonic( |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1151 _("_Copy Link Location")); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1152 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
|
1153 g_signal_connect(G_OBJECT(item), "activate", |
8677 | 1154 G_CALLBACK(url_copy), tempdata->url); |
7140
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1155 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1156 |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1157 /* Open Link in Browser */ |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1158 img = gtk_image_new_from_stock(GTK_STOCK_JUMP_TO, |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1159 GTK_ICON_SIZE_MENU); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1160 item = gtk_image_menu_item_new_with_mnemonic( |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1161 _("_Open Link in Browser")); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1162 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
|
1163 g_signal_connect(G_OBJECT(item), "activate", |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1164 G_CALLBACK(url_open), tempdata); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1165 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1166 } |
48cc5d5d5a6c
[gaim-migrate @ 7707]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
1167 |
4756 | 1168 |
4417 | 1169 gtk_widget_show_all(menu); |
4756 | 1170 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, |
1171 event_button->button, event_button->time); | |
4745 | 1172 |
4417 | 1173 return TRUE; |
1174 } | |
1428 | 1175 } |
4417 | 1176 if(event->type == GDK_BUTTON_PRESS && event_button->button == 3) |
1177 return TRUE; /* Clicking the right mouse button on a link shouldn't | |
1178 be caught by the regular GtkTextView menu */ | |
1179 else | |
1180 return FALSE; /* Let clicks go through if we didn't catch anything */ | |
1428 | 1181 } |
1182 | |
8091 | 1183 static void |
1184 gtk_imhtml_link_drag_rcv_cb(GtkWidget *widget, GdkDragContext *dc, guint x, guint y, | |
1185 GtkSelectionData *sd, guint info, guint t, GtkIMHtml *imhtml) | |
1186 { | |
1187 if(gtk_imhtml_get_editable(imhtml) && sd->data){ | |
1188 gchar **links; | |
1189 gchar *link; | |
1190 | |
1191 gaim_str_strip_cr(sd->data); | |
1192 | |
1193 links = g_strsplit(sd->data, "\n", 0); | |
1194 while((link = *links++) != NULL){ | |
1195 if(gaim_str_has_prefix(link, "http://") || | |
1196 gaim_str_has_prefix(link, "https://") || | |
1197 gaim_str_has_prefix(link, "ftp://")){ | |
8677 | 1198 gtk_imhtml_insert_link(imhtml, gtk_text_buffer_get_insert(imhtml->text_buffer), link, link); |
8091 | 1199 } else if (link=='\0') { |
8177 | 1200 /* Ignore blank lines */ |
8091 | 1201 } else { |
8177 | 1202 /* Special reasons, aka images being put in via other tag, etc. */ |
8091 | 1203 } |
1204 } | |
1205 | |
1206 gtk_drag_finish(dc, TRUE, (dc->action == GDK_ACTION_MOVE), t); | |
1207 } else { | |
1208 gtk_drag_finish(dc, FALSE, FALSE, t); | |
1209 } | |
1210 } | |
1211 | |
4298 | 1212 /* this isn't used yet |
4032 | 1213 static void |
4263 | 1214 gtk_smiley_tree_remove (GtkSmileyTree *tree, |
1215 GtkIMHtmlSmiley *smiley) | |
4032 | 1216 { |
1217 GtkSmileyTree *t = tree; | |
4263 | 1218 const gchar *x = smiley->smile; |
4032 | 1219 gint len = 0; |
1220 | |
1221 while (*x) { | |
1222 gchar *pos; | |
1223 | |
1224 if (!t->values) | |
1225 return; | |
1226 | |
1227 pos = strchr (t->values->str, *x); | |
1228 if (pos) | |
1229 t = t->children [(int) pos - (int) t->values->str]; | |
1230 else | |
1231 return; | |
1232 | |
1233 x++; len++; | |
1234 } | |
1235 | |
4141
ccec4fde84f4
[gaim-migrate @ 4359]
Christian Hammond <chipx86@chipx86.com>
parents:
4140
diff
changeset
|
1236 if (t->image) { |
4032 | 1237 t->image = NULL; |
4141
ccec4fde84f4
[gaim-migrate @ 4359]
Christian Hammond <chipx86@chipx86.com>
parents:
4140
diff
changeset
|
1238 } |
4032 | 1239 } |
4298 | 1240 */ |
1241 | |
4032 | 1242 |
1243 static gint | |
1244 gtk_smiley_tree_lookup (GtkSmileyTree *tree, | |
1245 const gchar *text) | |
1246 { | |
1247 GtkSmileyTree *t = tree; | |
1248 const gchar *x = text; | |
1249 gint len = 0; | |
8505 | 1250 gchar *amp; |
1251 gint alen; | |
4032 | 1252 |
1253 while (*x) { | |
1254 gchar *pos; | |
1255 | |
1256 if (!t->values) | |
1257 break; | |
1258 | |
8505 | 1259 if(*x == '&' && gtk_imhtml_is_amp_escape(x, &, &alen)) { |
1260 len += alen - strlen(amp); | |
1261 x += alen - strlen(amp); | |
1262 pos = strchr (t->values->str, *amp); | |
1263 } | |
1264 else | |
1265 pos = strchr (t->values->str, *x); | |
1266 | |
4032 | 1267 if (pos) |
7371 | 1268 t = t->children [GPOINTER_TO_INT(pos) - GPOINTER_TO_INT(t->values->str)]; |
4032 | 1269 else |
1270 break; | |
1271 | |
1272 x++; len++; | |
1273 } | |
1274 | |
1275 if (t->image) | |
1276 return len; | |
1277 | |
1278 return 0; | |
1279 } | |
1280 | |
1281 void | |
4263 | 1282 gtk_imhtml_associate_smiley (GtkIMHtml *imhtml, |
1283 gchar *sml, | |
1284 GtkIMHtmlSmiley *smiley) | |
4032 | 1285 { |
1286 GtkSmileyTree *tree; | |
1287 g_return_if_fail (imhtml != NULL); | |
1288 g_return_if_fail (GTK_IS_IMHTML (imhtml)); | |
7371 | 1289 |
4032 | 1290 if (sml == NULL) |
1291 tree = imhtml->default_smilies; | |
1292 else if ((tree = g_hash_table_lookup(imhtml->smiley_data, sml))) { | |
1293 } else { | |
1294 tree = gtk_smiley_tree_new(); | |
4892 | 1295 g_hash_table_insert(imhtml->smiley_data, g_strdup(sml), tree); |
4032 | 1296 } |
1297 | |
4263 | 1298 gtk_smiley_tree_insert (tree, smiley); |
4032 | 1299 } |
1300 | |
1301 static gboolean | |
1302 gtk_imhtml_is_smiley (GtkIMHtml *imhtml, | |
1303 GSList *fonts, | |
1304 const gchar *text, | |
1305 gint *len) | |
1306 { | |
1307 GtkSmileyTree *tree; | |
5967 | 1308 GtkIMHtmlFontDetail *font; |
4032 | 1309 char *sml = NULL; |
1310 | |
1311 if (fonts) { | |
1312 font = fonts->data; | |
1313 sml = font->sml; | |
1314 } | |
1315 | |
1316 if (sml == NULL) | |
1317 tree = imhtml->default_smilies; | |
1318 else { | |
1319 tree = g_hash_table_lookup(imhtml->smiley_data, sml); | |
1320 } | |
1321 if (tree == NULL) | |
1322 return FALSE; | |
7371 | 1323 |
8505 | 1324 *len = gtk_smiley_tree_lookup (tree, text); |
4032 | 1325 return (*len > 0); |
1326 } | |
1327 | |
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
1328 GdkPixbufAnimation * |
4032 | 1329 gtk_smiley_tree_image (GtkIMHtml *imhtml, |
1330 const gchar *sml, | |
1331 const gchar *text) | |
1332 { | |
1333 GtkSmileyTree *t; | |
1334 const gchar *x = text; | |
1335 if (sml == NULL) | |
1336 t = imhtml->default_smilies; | |
7371 | 1337 else |
4032 | 1338 t = g_hash_table_lookup(imhtml->smiley_data, sml); |
7371 | 1339 |
4032 | 1340 |
1341 if (t == NULL) | |
1342 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
1343 | |
1344 while (*x) { | |
1345 gchar *pos; | |
1346 | |
1347 if (!t->values) { | |
1348 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
1349 } | |
7371 | 1350 |
4032 | 1351 pos = strchr (t->values->str, *x); |
1352 if (pos) { | |
7371 | 1353 t = t->children [GPOINTER_TO_INT(pos) - GPOINTER_TO_INT(t->values->str)]; |
4032 | 1354 } else { |
1355 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
1356 } | |
1357 x++; | |
1358 } | |
1359 | |
4263 | 1360 if (!t->image->icon) |
6814
782907a6ae65
[gaim-migrate @ 7354]
Christian Hammond <chipx86@chipx86.com>
parents:
6648
diff
changeset
|
1361 t->image->icon = gdk_pixbuf_animation_new_from_file(t->image->file, NULL); |
4263 | 1362 |
1363 return t->image->icon; | |
4032 | 1364 } |
4793 | 1365 #define VALID_TAG(x) if (!g_ascii_strncasecmp (string, x ">", strlen (x ">"))) { \ |
3922 | 1366 *tag = g_strndup (string, strlen (x)); \ |
1367 *len = strlen (x) + 1; \ | |
1368 return TRUE; \ | |
1369 } \ | |
1370 (*type)++ | |
1428 | 1371 |
4793 | 1372 #define VALID_OPT_TAG(x) if (!g_ascii_strncasecmp (string, x " ", strlen (x " "))) { \ |
3922 | 1373 const gchar *c = string + strlen (x " "); \ |
1374 gchar e = '"'; \ | |
1375 gboolean quote = FALSE; \ | |
1376 while (*c) { \ | |
1377 if (*c == '"' || *c == '\'') { \ | |
1378 if (quote && (*c == e)) \ | |
1379 quote = !quote; \ | |
1380 else if (!quote) { \ | |
1381 quote = !quote; \ | |
1382 e = *c; \ | |
1383 } \ | |
1384 } else if (!quote && (*c == '>')) \ | |
1385 break; \ | |
1386 c++; \ | |
1387 } \ | |
1388 if (*c) { \ | |
1389 *tag = g_strndup (string, c - string); \ | |
1390 *len = c - string + 1; \ | |
1391 return TRUE; \ | |
1392 } \ | |
1393 } \ | |
1394 (*type)++ | |
1428 | 1395 |
1396 | |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1397 static gboolean |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1398 gtk_imhtml_is_amp_escape (const gchar *string, |
7280 | 1399 gchar **replace, |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1400 gint *length) |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1401 { |
7287 | 1402 static char buf[7]; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1403 g_return_val_if_fail (string != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1404 g_return_val_if_fail (replace != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1405 g_return_val_if_fail (length != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1406 |
4793 | 1407 if (!g_ascii_strncasecmp (string, "&", 5)) { |
7280 | 1408 *replace = "&"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1409 *length = 5; |
4793 | 1410 } else if (!g_ascii_strncasecmp (string, "<", 4)) { |
7280 | 1411 *replace = "<"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1412 *length = 4; |
4793 | 1413 } else if (!g_ascii_strncasecmp (string, ">", 4)) { |
7280 | 1414 *replace = ">"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1415 *length = 4; |
4793 | 1416 } else if (!g_ascii_strncasecmp (string, " ", 6)) { |
7280 | 1417 *replace = " "; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1418 *length = 6; |
4793 | 1419 } else if (!g_ascii_strncasecmp (string, "©", 6)) { |
7280 | 1420 *replace = "©"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1421 *length = 6; |
4793 | 1422 } else if (!g_ascii_strncasecmp (string, """, 6)) { |
7280 | 1423 *replace = "\""; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1424 *length = 6; |
4793 | 1425 } else if (!g_ascii_strncasecmp (string, "®", 5)) { |
7280 | 1426 *replace = "®"; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1427 *length = 5; |
5093 | 1428 } else if (!g_ascii_strncasecmp (string, "'", 6)) { |
7280 | 1429 *replace = "\'"; |
5093 | 1430 *length = 6; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1431 } else if (*(string + 1) == '#') { |
2022
199ba82faacb
[gaim-migrate @ 2032]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2002
diff
changeset
|
1432 guint pound = 0; |
3004 | 1433 if ((sscanf (string, "&#%u;", £) == 1) && pound != 0) { |
7287 | 1434 int buflen; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1435 if (*(string + 3 + (gint)log10 (pound)) != ';') |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1436 return FALSE; |
7287 | 1437 buflen = g_unichar_to_utf8((gunichar)pound, buf); |
1438 buf[buflen] = '\0'; | |
7280 | 1439 *replace = buf; |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1440 *length = 2; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1441 while (isdigit ((gint) string [*length])) (*length)++; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1442 if (string [*length] == ';') (*length)++; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1443 } else { |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1444 return FALSE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1445 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1446 } else { |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1447 return FALSE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1448 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1449 |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1450 return TRUE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1451 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
1452 |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1453 static gboolean |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1454 gtk_imhtml_is_tag (const gchar *string, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1455 gchar **tag, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1456 gint *len, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1457 gint *type) |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1458 { |
8061 | 1459 char *close; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1460 *type = 1; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1461 |
8118 | 1462 |
8061 | 1463 if (!(close = strchr (string, '>'))) |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1464 return FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1465 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1466 VALID_TAG ("B"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1467 VALID_TAG ("BOLD"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1468 VALID_TAG ("/B"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1469 VALID_TAG ("/BOLD"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1470 VALID_TAG ("I"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1471 VALID_TAG ("ITALIC"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1472 VALID_TAG ("/I"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1473 VALID_TAG ("/ITALIC"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1474 VALID_TAG ("U"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1475 VALID_TAG ("UNDERLINE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1476 VALID_TAG ("/U"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1477 VALID_TAG ("/UNDERLINE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1478 VALID_TAG ("S"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1479 VALID_TAG ("STRIKE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1480 VALID_TAG ("/S"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1481 VALID_TAG ("/STRIKE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1482 VALID_TAG ("SUB"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1483 VALID_TAG ("/SUB"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1484 VALID_TAG ("SUP"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1485 VALID_TAG ("/SUP"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1486 VALID_TAG ("PRE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1487 VALID_TAG ("/PRE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1488 VALID_TAG ("TITLE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1489 VALID_TAG ("/TITLE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1490 VALID_TAG ("BR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1491 VALID_TAG ("HR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1492 VALID_TAG ("/FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1493 VALID_TAG ("/A"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1494 VALID_TAG ("P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1495 VALID_TAG ("/P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1496 VALID_TAG ("H3"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1497 VALID_TAG ("/H3"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1498 VALID_TAG ("HTML"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1499 VALID_TAG ("/HTML"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1500 VALID_TAG ("BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1501 VALID_TAG ("/BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1502 VALID_TAG ("FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1503 VALID_TAG ("HEAD"); |
2993 | 1504 VALID_TAG ("/HEAD"); |
1505 VALID_TAG ("BINARY"); | |
1506 VALID_TAG ("/BINARY"); | |
5093 | 1507 |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1508 VALID_OPT_TAG ("HR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1509 VALID_OPT_TAG ("FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1510 VALID_OPT_TAG ("BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1511 VALID_OPT_TAG ("A"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1512 VALID_OPT_TAG ("IMG"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1513 VALID_OPT_TAG ("P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1514 VALID_OPT_TAG ("H3"); |
5093 | 1515 VALID_OPT_TAG ("HTML"); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1516 |
5101 | 1517 VALID_TAG ("CITE"); |
1518 VALID_TAG ("/CITE"); | |
1519 VALID_TAG ("EM"); | |
1520 VALID_TAG ("/EM"); | |
1521 VALID_TAG ("STRONG"); | |
1522 VALID_TAG ("/STRONG"); | |
1523 | |
5104 | 1524 VALID_OPT_TAG ("SPAN"); |
1525 VALID_TAG ("/SPAN"); | |
5174 | 1526 VALID_TAG ("BR/"); /* hack until gtkimhtml handles things better */ |
6982 | 1527 VALID_TAG ("IMG"); |
8026 | 1528 VALID_TAG("SPAN"); |
8061 | 1529 VALID_OPT_TAG("BR"); |
7988 | 1530 |
4793 | 1531 if (!g_ascii_strncasecmp(string, "!--", strlen ("!--"))) { |
2954
f6c4f2187c08
[gaim-migrate @ 2967]
Christian Hammond <chipx86@chipx86.com>
parents:
2898
diff
changeset
|
1532 gchar *e = strstr (string + strlen("!--"), "-->"); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1533 if (e) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1534 *len = e - string + strlen ("-->"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1535 *tag = g_strndup (string + strlen ("!--"), *len - strlen ("!---->")); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1536 return TRUE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1537 } |
8118 | 1538 } |
1539 | |
8061 | 1540 *type = -1; |
1541 *len = close - string + 1; | |
1542 *tag = g_strndup(string, *len - 1); | |
1543 return TRUE; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1544 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1545 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1546 static gchar* |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1547 gtk_imhtml_get_html_opt (gchar *tag, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1548 const gchar *opt) |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1549 { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1550 gchar *t = tag; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1551 gchar *e, *a; |
5177 | 1552 gchar *val; |
1553 gint len; | |
7280 | 1554 gchar *c; |
5177 | 1555 GString *ret; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1556 |
4793 | 1557 while (g_ascii_strncasecmp (t, opt, strlen (opt))) { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1558 gboolean quote = FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1559 if (*t == '\0') break; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1560 while (*t && !((*t == ' ') && !quote)) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1561 if (*t == '\"') |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1562 quote = ! quote; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1563 t++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1564 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1565 while (*t && (*t == ' ')) t++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1566 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1567 |
4793 | 1568 if (!g_ascii_strncasecmp (t, opt, strlen (opt))) { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1569 t += strlen (opt); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1570 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1571 return NULL; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1572 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1573 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1574 if ((*t == '\"') || (*t == '\'')) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1575 e = a = ++t; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1576 while (*e && (*e != *(t - 1))) e++; |
2993 | 1577 if (*e == '\0') { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1578 return NULL; |
5177 | 1579 } else |
1580 val = g_strndup(a, e - a); | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1581 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1582 e = a = t; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1583 while (*e && !isspace ((gint) *e)) e++; |
5177 | 1584 val = g_strndup(a, e - a); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1585 } |
5177 | 1586 |
1587 ret = g_string_new(""); | |
1588 e = val; | |
1589 while(*e) { | |
1590 if(gtk_imhtml_is_amp_escape(e, &c, &len)) { | |
7280 | 1591 ret = g_string_append(ret, c); |
5177 | 1592 e += len; |
1593 } else { | |
1594 ret = g_string_append_c(ret, *e); | |
1595 e++; | |
1596 } | |
1597 } | |
1598 | |
1599 g_free(val); | |
8568 | 1600 |
1601 return g_string_free(ret, FALSE); | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1602 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1603 |
8118 | 1604 /* Inline CSS Support - Douglas Thrift */ |
1605 static gchar* | |
1606 gtk_imhtml_get_css_opt (gchar *style, | |
1607 const gchar *opt) | |
1608 { | |
1609 gchar *t = style; | |
1610 gchar *e, *a; | |
1611 gchar *val; | |
1612 gint len; | |
1613 gchar *c; | |
1614 GString *ret; | |
1615 | |
1616 while (g_ascii_strncasecmp (t, opt, strlen (opt))) { | |
8177 | 1617 /* gboolean quote = FALSE; */ |
8118 | 1618 if (*t == '\0') break; |
1619 while (*t && !((*t == ' ') /*&& !quote*/)) { | |
1620 /* if (*t == '\"') | |
8177 | 1621 quote = ! quote; */ |
8118 | 1622 t++; |
1623 } | |
1624 while (*t && (*t == ' ')) t++; | |
1625 } | |
1626 | |
1627 if (!g_ascii_strncasecmp (t, opt, strlen (opt))) { | |
1628 t += strlen (opt); | |
1629 } else { | |
1630 return NULL; | |
1631 } | |
1632 | |
1633 /* if ((*t == '\"') || (*t == '\'')) { | |
1634 e = a = ++t; | |
1635 while (*e && (*e != *(t - 1))) e++; | |
1636 if (*e == '\0') { | |
1637 return NULL; | |
1638 } else | |
1639 val = g_strndup(a, e - a); | |
1640 } else { | |
1641 e = a = t; | |
1642 while (*e && !isspace ((gint) *e)) e++; | |
1643 val = g_strndup(a, e - a); | |
1644 }*/ | |
1645 | |
1646 e = a = t; | |
1647 while (*e && *e != ';') e++; | |
1648 val = g_strndup(a, e - a); | |
1649 | |
1650 ret = g_string_new(""); | |
1651 e = val; | |
1652 while(*e) { | |
1653 if(gtk_imhtml_is_amp_escape(e, &c, &len)) { | |
1654 ret = g_string_append(ret, c); | |
1655 e += len; | |
1656 } else { | |
1657 ret = g_string_append_c(ret, *e); | |
1658 e++; | |
1659 } | |
1660 } | |
1661 | |
1662 g_free(val); | |
1663 val = ret->str; | |
1664 g_string_free(ret, FALSE); | |
1665 return val; | |
1666 } | |
3922 | 1667 |
8334 | 1668 static const char *accepted_protocols[] = { |
1669 "http://", | |
1670 "https://", | |
1671 "ftp://" | |
1672 }; | |
1673 | |
1674 static const int accepted_protocols_size = 3; | |
1675 | |
1676 /* returns if the beginning of the text is a protocol. If it is the protocol, returns the length so | |
1677 the caller knows how long the protocol string is. */ | |
1678 int gtk_imhtml_is_protocol(const char *text) | |
1679 { | |
1680 gint i; | |
1681 | |
1682 for(i=0; i<accepted_protocols_size; i++){ | |
1683 if( strncasecmp(text, accepted_protocols[i], strlen(accepted_protocols[i])) == 0 ){ | |
1684 return strlen(accepted_protocols[i]); | |
1685 } | |
1686 } | |
1687 return 0; | |
1688 } | |
1689 | |
8677 | 1690 /* |
1691 <KingAnt> marv: The two IM image functions in oscar are gaim_odc_send_im and gaim_odc_incoming | |
1692 | |
1693 | |
1694 [19:58] <Robot101> marv: images go into the imgstore, a refcounted... well.. hash. :) | |
1695 [19:59] <KingAnt> marv: I think the image tag used by the core is something like <img id="#"/> | |
1696 [19:59] Ro0tSiEgE robert42 RobFlynn Robot101 ross22 roz | |
1697 [20:00] <KingAnt> marv: Where the ID is the what is returned when you add the image to the imgstore using gaim_imgstore_add | |
1698 [20:00] <marv> Robot101: so how does the image get passed to serv_got_im() and serv_send_im()? just as the <img id="#" and then the prpl looks it up from the store? | |
1699 [20:00] <KingAnt> marv: Right | |
1700 [20:00] <marv> alright | |
1701 | |
1702 Here's my plan with IMImages. make gtk_imhtml_[append|insert]_text_with_images instead just | |
1703 gtkimhtml_[append|insert]_text (hrm maybe it should be called html instead of text), add a | |
1704 function for gaim to register for look up images, i.e. gtk_imhtml_set_get_img_fnc, so that | |
1705 images can be looked up like that, instead of passing a GSList of them. | |
1706 */ | |
1707 | |
1708 void gtk_imhtml_append_text_with_images (GtkIMHtml *imhtml, | |
1709 const gchar *text, | |
1710 GtkIMHtmlOptions options, | |
1711 GSList *unused) | |
1428 | 1712 { |
8677 | 1713 GtkTextIter iter, ins, sel; |
1714 GdkRectangle rect; | |
1715 int y, height, ins_offset = 0, sel_offset = 0; | |
1716 gboolean fixins = FALSE, fixsel = FALSE; | |
1717 | |
1718 g_return_if_fail (imhtml != NULL); | |
1719 g_return_if_fail (GTK_IS_IMHTML (imhtml)); | |
1720 g_return_if_fail (text != NULL); | |
1721 | |
1722 | |
1723 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); | |
1724 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &ins, gtk_text_buffer_get_insert(imhtml->text_buffer)); | |
1725 if (gtk_text_iter_equal(&iter, &ins) && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, NULL, NULL)) { | |
1726 fixins = TRUE; | |
1727 ins_offset = gtk_text_iter_get_offset(&ins); | |
1728 } | |
1729 | |
1730 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &sel, gtk_text_buffer_get_selection_bound(imhtml->text_buffer)); | |
1731 if (gtk_text_iter_equal(&iter, &sel) && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, NULL, NULL)) { | |
1732 fixsel = TRUE; | |
1733 sel_offset = gtk_text_iter_get_offset(&sel); | |
1734 } | |
1735 | |
1736 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); | |
1737 gtk_text_view_get_line_yrange(GTK_TEXT_VIEW(imhtml), &iter, &y, &height); | |
1738 | |
1739 | |
1740 if(((y + height) - (rect.y + rect.height)) > height | |
1741 && gtk_text_buffer_get_char_count(imhtml->text_buffer)){ | |
1742 options |= GTK_IMHTML_NO_SCROLL; | |
1743 } | |
1744 | |
1745 gtk_imhtml_insert_html_at_iter(imhtml, text, options, &iter); | |
1746 | |
1747 if (fixins) { | |
1748 gtk_text_buffer_get_iter_at_offset(imhtml->text_buffer, &ins, ins_offset); | |
1749 gtk_text_buffer_move_mark(imhtml->text_buffer, gtk_text_buffer_get_insert(imhtml->text_buffer), &ins); | |
1750 } | |
1751 | |
1752 if (fixsel) { | |
1753 gtk_text_buffer_get_iter_at_offset(imhtml->text_buffer, &sel, sel_offset); | |
1754 gtk_text_buffer_move_mark(imhtml->text_buffer, gtk_text_buffer_get_selection_bound(imhtml->text_buffer), &sel); | |
1755 } | |
1756 | |
1757 if (!(options & GTK_IMHTML_NO_SCROLL)) { | |
8729 | 1758 gtk_imhtml_scroll_to_end(imhtml); |
8677 | 1759 } |
1760 } | |
1761 | |
8729 | 1762 void gtk_imhtml_scroll_to_end(GtkIMHtml *imhtml) |
1763 { | |
1764 GtkTextIter iter; | |
1765 /* If this seems backwards at first glance, well it's not. | |
1766 * It means scroll such that the mark is closest to the top, | |
1767 * and closest to the right as possible. Remember kids, you have | |
1768 * to scroll left to move a given spot closest to the right, | |
1769 * and scroll down to move a spot closest to the top. | |
1770 */ | |
1771 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); | |
1772 gtk_text_iter_set_line_offset(&iter, 0); | |
1773 gtk_text_buffer_move_mark(imhtml->text_buffer, imhtml->scrollpoint, &iter); | |
1774 gtk_text_view_scroll_to_mark(GTK_TEXT_VIEW(imhtml), imhtml->scrollpoint, | |
1775 0, TRUE, 1.0, 0.0); | |
1776 } | |
1777 | |
8677 | 1778 void gtk_imhtml_insert_html_at_iter(GtkIMHtml *imhtml, |
1779 const gchar *text, | |
1780 GtkIMHtmlOptions options, | |
1781 GtkTextIter *iter) | |
1782 { | |
8061 | 1783 GdkRectangle rect; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1784 gint pos = 0; |
3922 | 1785 gchar *ws; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1786 gchar *tag; |
3922 | 1787 gchar *bg = NULL; |
6982 | 1788 gint len; |
4032 | 1789 gint tlen, smilelen, wpos=0; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1790 gint type; |
3922 | 1791 const gchar *c; |
7280 | 1792 gchar *amp; |
8334 | 1793 gint len_protocol; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1794 |
1428 | 1795 guint bold = 0, |
1796 italics = 0, | |
1797 underline = 0, | |
1798 strike = 0, | |
1799 sub = 0, | |
1800 sup = 0, | |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1801 title = 0, |
8061 | 1802 pre = 0; |
1428 | 1803 |
3922 | 1804 GSList *fonts = NULL; |
8506 | 1805 GObject *object; |
8061 | 1806 GtkIMHtmlScalable *scalable = NULL; |
8677 | 1807 |
1808 g_return_if_fail (imhtml != NULL); | |
1809 g_return_if_fail (GTK_IS_IMHTML (imhtml)); | |
1810 g_return_if_fail (text != NULL); | |
3922 | 1811 c = text; |
6982 | 1812 len = strlen(text); |
3922 | 1813 ws = g_malloc(len + 1); |
1814 ws[0] = 0; | |
1428 | 1815 |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1816 while (pos < len) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1817 if (*c == '<' && gtk_imhtml_is_tag (c + 1, &tag, &tlen, &type)) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1818 c++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1819 pos++; |
8061 | 1820 ws[wpos] = '\0'; |
1821 switch (type) | |
3922 | 1822 { |
1823 case 1: /* B */ | |
1824 case 2: /* BOLD */ | |
5101 | 1825 case 54: /* STRONG */ |
8677 | 1826 |
1827 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); | |
1828 | |
1829 if ((bold == 0) && (imhtml->format_functions & GTK_IMHTML_BOLD)) | |
8061 | 1830 gtk_imhtml_toggle_bold(imhtml); |
3922 | 1831 bold++; |
8061 | 1832 ws[0] = '\0'; wpos = 0; |
3922 | 1833 break; |
1834 case 3: /* /B */ | |
1835 case 4: /* /BOLD */ | |
5101 | 1836 case 55: /* /STRONG */ |
8677 | 1837 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8061 | 1838 ws[0] = '\0'; wpos = 0; |
1839 | |
3922 | 1840 if (bold) |
1841 bold--; | |
8677 | 1842 if ((bold == 0) && (imhtml->format_functions & GTK_IMHTML_BOLD) && !imhtml->wbfo) |
8061 | 1843 gtk_imhtml_toggle_bold(imhtml); |
3922 | 1844 break; |
1845 case 5: /* I */ | |
1846 case 6: /* ITALIC */ | |
5101 | 1847 case 52: /* EM */ |
8677 | 1848 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8061 | 1849 ws[0] = '\0'; wpos = 0; |
8677 | 1850 if ((italics == 0) && (imhtml->format_functions & GTK_IMHTML_ITALIC)) |
8061 | 1851 gtk_imhtml_toggle_italic(imhtml); |
3922 | 1852 italics++; |
1853 break; | |
1854 case 7: /* /I */ | |
1855 case 8: /* /ITALIC */ | |
5101 | 1856 case 53: /* /EM */ |
8677 | 1857 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8061 | 1858 ws[0] = '\0'; wpos = 0; |
3922 | 1859 if (italics) |
1860 italics--; | |
8677 | 1861 if ((italics == 0) && (imhtml->format_functions & GTK_IMHTML_ITALIC) && !imhtml->wbfo) |
8061 | 1862 gtk_imhtml_toggle_italic(imhtml); |
3922 | 1863 break; |
1864 case 9: /* U */ | |
1865 case 10: /* UNDERLINE */ | |
8677 | 1866 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8061 | 1867 ws[0] = '\0'; wpos = 0; |
8677 | 1868 if ((underline == 0) && (imhtml->format_functions & GTK_IMHTML_UNDERLINE)) |
8061 | 1869 gtk_imhtml_toggle_underline(imhtml); |
3922 | 1870 underline++; |
1871 break; | |
1872 case 11: /* /U */ | |
1873 case 12: /* /UNDERLINE */ | |
8677 | 1874 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8061 | 1875 ws[0] = '\0'; wpos = 0; |
3922 | 1876 if (underline) |
1877 underline--; | |
8677 | 1878 if ((underline == 0) && (imhtml->format_functions & GTK_IMHTML_UNDERLINE) && !imhtml->wbfo) |
8061 | 1879 gtk_imhtml_toggle_underline(imhtml); |
3922 | 1880 break; |
1881 case 13: /* S */ | |
1882 case 14: /* STRIKE */ | |
8677 | 1883 /* FIXME: reimplement this */ |
3922 | 1884 strike++; |
1885 break; | |
1886 case 15: /* /S */ | |
1887 case 16: /* /STRIKE */ | |
8677 | 1888 /* FIXME: reimplement this */ |
3922 | 1889 if (strike) |
1890 strike--; | |
1891 break; | |
1892 case 17: /* SUB */ | |
8677 | 1893 /* FIXME: reimpliment this */ |
3922 | 1894 sub++; |
1895 break; | |
1896 case 18: /* /SUB */ | |
8677 | 1897 /* FIXME: reimpliment this */ |
3922 | 1898 if (sub) |
1899 sub--; | |
1900 break; | |
1901 case 19: /* SUP */ | |
8677 | 1902 /* FIXME: reimplement this */ |
3922 | 1903 sup++; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1904 break; |
3922 | 1905 case 20: /* /SUP */ |
8677 | 1906 /* FIXME: reimplement this */ |
3922 | 1907 if (sup) |
1908 sup--; | |
1909 break; | |
1910 case 21: /* PRE */ | |
8677 | 1911 /* FIXME: reimplement this */ |
3922 | 1912 pre++; |
1913 break; | |
1914 case 22: /* /PRE */ | |
8677 | 1915 /* FIXME: reimplement this */ |
3922 | 1916 if (pre) |
1917 pre--; | |
1918 break; | |
1919 case 23: /* TITLE */ | |
8677 | 1920 /* FIXME: what was this supposed to do anyway? */ |
3922 | 1921 title++; |
1922 break; | |
1923 case 24: /* /TITLE */ | |
8677 | 1924 /* FIXME: make this undo whatever 23 was supposed to do */ |
3922 | 1925 if (title) { |
1926 if (options & GTK_IMHTML_NO_TITLE) { | |
1927 wpos = 0; | |
1928 ws [wpos] = '\0'; | |
1929 } | |
1930 title--; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1931 } |
3922 | 1932 break; |
1933 case 25: /* BR */ | |
5174 | 1934 case 58: /* BR/ */ |
8061 | 1935 case 61: /* BR (opt) */ |
3922 | 1936 ws[wpos] = '\n'; |
1937 wpos++; | |
6982 | 1938 break; |
3922 | 1939 case 26: /* HR */ |
1940 case 42: /* HR (opt) */ | |
8726 | 1941 { |
1942 int minus; | |
1943 | |
3922 | 1944 ws[wpos++] = '\n'; |
8677 | 1945 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
1946 | |
5967 | 1947 scalable = gtk_imhtml_hr_new(); |
8061 | 1948 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); |
8677 | 1949 scalable->add_to(scalable, imhtml, iter); |
8726 | 1950 minus = gtk_text_view_get_left_margin(GTK_TEXT_VIEW(imhtml)) + |
1951 gtk_text_view_get_right_margin(GTK_TEXT_VIEW(imhtml)); | |
1952 scalable->scale(scalable, rect.width - minus, rect.height); | |
8061 | 1953 imhtml->scalables = g_list_append(imhtml->scalables, scalable); |
1954 ws[0] = '\0'; wpos = 0; | |
7942 | 1955 ws[wpos++] = '\n'; |
8061 | 1956 |
3922 | 1957 break; |
8726 | 1958 } |
3922 | 1959 case 27: /* /FONT */ |
8677 | 1960 if (fonts && !imhtml->wbfo) { |
5967 | 1961 GtkIMHtmlFontDetail *font = fonts->data; |
8677 | 1962 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8061 | 1963 ws[0] = '\0'; wpos = 0; |
8177 | 1964 /* NEW_BIT (NEW_TEXT_BIT); */ |
8677 | 1965 |
8698 | 1966 if (font->face && (imhtml->format_functions & GTK_IMHTML_FACE)) { |
8061 | 1967 gtk_imhtml_toggle_fontface(imhtml, NULL); |
3922 | 1968 g_free (font->face); |
8061 | 1969 } |
8698 | 1970 if (font->fore && (imhtml->format_functions & GTK_IMHTML_FORECOLOR)) { |
8061 | 1971 gtk_imhtml_toggle_forecolor(imhtml, NULL); |
3922 | 1972 g_free (font->fore); |
8061 | 1973 } |
8698 | 1974 if (font->back && (imhtml->format_functions & GTK_IMHTML_BACKCOLOR)) { |
8061 | 1975 gtk_imhtml_toggle_backcolor(imhtml, NULL); |
3922 | 1976 g_free (font->back); |
8061 | 1977 } |
4032 | 1978 if (font->sml) |
1979 g_free (font->sml); | |
3922 | 1980 g_free (font); |
8309 | 1981 |
8698 | 1982 if ((font->size != 3) && (imhtml->format_functions & (GTK_IMHTML_GROW|GTK_IMHTML_SHRINK))) |
8309 | 1983 gtk_imhtml_font_set_size(imhtml, 3); |
1984 | |
1985 fonts = fonts->next; | |
1986 if (fonts) { | |
1987 GtkIMHtmlFontDetail *font = fonts->data; | |
8677 | 1988 |
8698 | 1989 if (font->face && (imhtml->format_functions & GTK_IMHTML_FACE)) |
8309 | 1990 gtk_imhtml_toggle_fontface(imhtml, font->face); |
8698 | 1991 if (font->fore && (imhtml->format_functions & GTK_IMHTML_FORECOLOR)) |
8309 | 1992 gtk_imhtml_toggle_forecolor(imhtml, font->fore); |
8698 | 1993 if (font->back && (imhtml->format_functions & GTK_IMHTML_BACKCOLOR)) |
8309 | 1994 gtk_imhtml_toggle_backcolor(imhtml, font->back); |
8698 | 1995 if ((font->size != 3) && (imhtml->format_functions & (GTK_IMHTML_GROW|GTK_IMHTML_SHRINK))) |
8309 | 1996 gtk_imhtml_font_set_size(imhtml, font->size); |
1997 } | |
3922 | 1998 } |
8309 | 1999 break; |
3922 | 2000 case 28: /* /A */ |
8677 | 2001 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
2002 gtk_imhtml_toggle_link(imhtml, NULL); | |
2003 ws[0] = '\0'; wpos = 0; | |
8061 | 2004 break; |
8118 | 2005 |
3922 | 2006 case 29: /* P */ |
2007 case 30: /* /P */ | |
2008 case 31: /* H3 */ | |
2009 case 32: /* /H3 */ | |
2010 case 33: /* HTML */ | |
2011 case 34: /* /HTML */ | |
2012 case 35: /* BODY */ | |
2013 case 36: /* /BODY */ | |
2014 case 37: /* FONT */ | |
2015 case 38: /* HEAD */ | |
2016 case 39: /* /HEAD */ | |
6982 | 2017 case 40: /* BINARY */ |
2018 case 41: /* /BINARY */ | |
3922 | 2019 break; |
2020 case 43: /* FONT (opt) */ | |
2021 { | |
4032 | 2022 gchar *color, *back, *face, *size, *sml; |
5967 | 2023 GtkIMHtmlFontDetail *font, *oldfont = NULL; |
3922 | 2024 color = gtk_imhtml_get_html_opt (tag, "COLOR="); |
2025 back = gtk_imhtml_get_html_opt (tag, "BACK="); | |
2026 face = gtk_imhtml_get_html_opt (tag, "FACE="); | |
2027 size = gtk_imhtml_get_html_opt (tag, "SIZE="); | |
4032 | 2028 sml = gtk_imhtml_get_html_opt (tag, "SML="); |
2029 if (!(color || back || face || size || sml)) | |
3922 | 2030 break; |
8061 | 2031 |
8677 | 2032 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8061 | 2033 ws[0] = '\0'; wpos = 0; |
2034 | |
5967 | 2035 font = g_new0 (GtkIMHtmlFontDetail, 1); |
3922 | 2036 if (fonts) |
2037 oldfont = fonts->data; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2038 |
8677 | 2039 if (color && !(options & GTK_IMHTML_NO_COLOURS) && (imhtml->format_functions & GTK_IMHTML_FORECOLOR)) { |
3922 | 2040 font->fore = color; |
8061 | 2041 gtk_imhtml_toggle_forecolor(imhtml, font->fore); |
8677 | 2042 } |
8309 | 2043 //else if (oldfont && oldfont->fore) |
2044 // font->fore = g_strdup(oldfont->fore); | |
8677 | 2045 |
2046 if (back && !(options & GTK_IMHTML_NO_COLOURS) && (imhtml->format_functions & GTK_IMHTML_BACKCOLOR)) { | |
3922 | 2047 font->back = back; |
8061 | 2048 gtk_imhtml_toggle_backcolor(imhtml, font->back); |
8309 | 2049 } |
2050 //else if (oldfont && oldfont->back) | |
2051 // font->back = g_strdup(oldfont->back); | |
8677 | 2052 |
2053 if (face && !(options & GTK_IMHTML_NO_FONTS) && (imhtml->format_functions & GTK_IMHTML_FACE)) { | |
3922 | 2054 font->face = face; |
8061 | 2055 gtk_imhtml_toggle_fontface(imhtml, font->face); |
8309 | 2056 } |
2057 //else if (oldfont && oldfont->face) | |
2058 // font->face = g_strdup(oldfont->face); | |
4032 | 2059 |
2060 if (sml) | |
2061 font->sml = sml; | |
2062 else if (oldfont && oldfont->sml) | |
2063 font->sml = g_strdup(oldfont->sml); | |
2064 | |
8677 | 2065 if (size && !(options & GTK_IMHTML_NO_SIZES) && (imhtml->format_functions & (GTK_IMHTML_GROW|GTK_IMHTML_SHRINK))) { |
3922 | 2066 if (*size == '+') { |
2067 sscanf (size + 1, "%hd", &font->size); | |
2068 font->size += 3; | |
2069 } else if (*size == '-') { | |
2070 sscanf (size + 1, "%hd", &font->size); | |
2071 font->size = MAX (0, 3 - font->size); | |
2072 } else if (isdigit (*size)) { | |
2073 sscanf (size, "%hd", &font->size); | |
8061 | 2074 } |
6042 | 2075 if (font->size > 100) |
2076 font->size = 100; | |
3922 | 2077 } else if (oldfont) |
2078 font->size = oldfont->size; | |
8309 | 2079 else |
2080 font->size = 3; | |
8698 | 2081 if ((imhtml->format_functions & (GTK_IMHTML_GROW|GTK_IMHTML_SHRINK))) |
2082 gtk_imhtml_font_set_size(imhtml, font->size); | |
3922 | 2083 g_free(size); |
2084 fonts = g_slist_prepend (fonts, font); | |
2085 } | |
2086 break; | |
2087 case 44: /* BODY (opt) */ | |
2088 if (!(options & GTK_IMHTML_NO_COLOURS)) { | |
2089 char *bgcolor = gtk_imhtml_get_html_opt (tag, "BGCOLOR="); | |
8677 | 2090 if (bgcolor && (imhtml->format_functions & GTK_IMHTML_BACKCOLOR)) { |
2091 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); | |
8061 | 2092 ws[0] = '\0'; wpos = 0; |
8177 | 2093 /* NEW_BIT(NEW_TEXT_BIT); */ |
3922 | 2094 if (bg) |
2095 g_free(bg); | |
2096 bg = bgcolor; | |
8061 | 2097 gtk_imhtml_toggle_backcolor(imhtml, bg); |
2885
f72efa29c109
[gaim-migrate @ 2898]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2871
diff
changeset
|
2098 } |
1428 | 2099 } |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2100 break; |
3922 | 2101 case 45: /* A (opt) */ |
2102 { | |
2103 gchar *href = gtk_imhtml_get_html_opt (tag, "HREF="); | |
8677 | 2104 if (href && (imhtml->format_functions & GTK_IMHTML_LINK)) { |
2105 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); | |
8061 | 2106 ws[0] = '\0'; wpos = 0; |
8677 | 2107 gtk_imhtml_toggle_link(imhtml, href); |
3922 | 2108 } |
2993 | 2109 } |
3922 | 2110 break; |
4895 | 2111 case 46: /* IMG (opt) */ |
6982 | 2112 case 59: /* IMG */ |
4895 | 2113 { |
8677 | 2114 #if 0 |
2115 /* disabling this for now, it's easy to add it back... */ | |
6982 | 2116 GdkPixbuf *img = NULL; |
2117 const gchar *filename = NULL; | |
4895 | 2118 |
8677 | 2119 if (!(imhtml->format_functions & GTK_IMHTML_IMAGE)) |
2120 break; | |
2121 | |
6982 | 2122 if (images && images->data) { |
2123 img = images->data; | |
2124 images = images->next; | |
2125 filename = g_object_get_data(G_OBJECT(img), "filename"); | |
2126 g_object_ref(G_OBJECT(img)); | |
2127 } else { | |
2128 img = gtk_widget_render_icon(GTK_WIDGET(imhtml), | |
2129 GTK_STOCK_MISSING_IMAGE, GTK_ICON_SIZE_BUTTON, | |
2130 "gtkimhtml-missing-image"); | |
2131 } | |
4895 | 2132 |
6982 | 2133 scalable = gtk_imhtml_image_new(img, filename); |
8177 | 2134 /* NEW_BIT(NEW_SCALABLE_BIT); */ |
8677 | 2135 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); |
2136 scalable->add_to(scalable, imhtml, iter); | |
2137 scalable->scale(scalable, rect.width, rect.height); | |
2138 imhtml->scalables = g_list_append(imhtml->scalables, scalable); | |
2139 | |
6982 | 2140 g_object_unref(G_OBJECT(img)); |
8677 | 2141 #endif |
4895 | 2142 } |
3922 | 2143 case 47: /* P (opt) */ |
2144 case 48: /* H3 (opt) */ | |
5093 | 2145 case 49: /* HTML (opt) */ |
5101 | 2146 case 50: /* CITE */ |
2147 case 51: /* /CITE */ | |
8026 | 2148 case 56: /* SPAN (opt) */ |
8118 | 2149 /* Inline CSS Support - Douglas Thrift |
2150 * | |
2151 * color | |
8686 | 2152 * background |
8118 | 2153 * font-family |
2154 * font-size | |
8686 | 2155 * text-decoration: underline |
8118 | 2156 */ |
2157 { | |
8686 | 2158 gchar *style, *color, *background, *family, *size; |
2159 gchar *textdec; | |
8118 | 2160 GtkIMHtmlFontDetail *font, *oldfont = NULL; |
2161 style = gtk_imhtml_get_html_opt (tag, "style="); | |
2162 | |
2163 if (!style) break; | |
2164 | |
2165 color = gtk_imhtml_get_css_opt (style, "color: "); | |
8686 | 2166 background = gtk_imhtml_get_css_opt (style, "background: "); |
8118 | 2167 family = gtk_imhtml_get_css_opt (style, |
2168 "font-family: "); | |
2169 size = gtk_imhtml_get_css_opt (style, "font-size: "); | |
8686 | 2170 textdec = gtk_imhtml_get_css_opt (style, "text-decoration: "); |
2171 | |
2172 if (!(color || family || size || background || textdec)) { | |
8120 | 2173 g_free(style); |
2174 break; | |
2175 } | |
8118 | 2176 |
8677 | 2177 |
2178 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); | |
8118 | 2179 ws[0] = '\0'; wpos = 0; |
8177 | 2180 /* NEW_BIT (NEW_TEXT_BIT); */ |
8118 | 2181 |
2182 font = g_new0 (GtkIMHtmlFontDetail, 1); | |
2183 if (fonts) | |
2184 oldfont = fonts->data; | |
2185 | |
8677 | 2186 if (color && !(options & GTK_IMHTML_NO_COLOURS) && (imhtml->format_functions & GTK_IMHTML_FORECOLOR)) |
8686 | 2187 { |
8118 | 2188 font->fore = color; |
8686 | 2189 gtk_imhtml_toggle_forecolor(imhtml, font->fore); |
2190 } | |
8118 | 2191 else if (oldfont && oldfont->fore) |
2192 font->fore = g_strdup(oldfont->fore); | |
2193 | |
8686 | 2194 if (background && !(options & GTK_IMHTML_NO_COLOURS) && (imhtml->format_functions & GTK_IMHTML_BACKCOLOR)) |
2195 { | |
2196 font->back = background; | |
2197 gtk_imhtml_toggle_backcolor(imhtml, font->back); | |
2198 } | |
2199 else if (oldfont && oldfont->back) | |
8118 | 2200 font->back = g_strdup(oldfont->back); |
2201 | |
8677 | 2202 if (family && !(options & GTK_IMHTML_NO_FONTS) && (imhtml->format_functions & GTK_IMHTML_FACE)) |
8686 | 2203 { |
8118 | 2204 font->face = family; |
8686 | 2205 gtk_imhtml_toggle_fontface(imhtml, font->face); |
2206 } | |
8118 | 2207 else if (oldfont && oldfont->face) |
2208 font->face = g_strdup(oldfont->face); | |
2209 if (font->face && (atoi(font->face) > 100)) { | |
8677 | 2210 /* WTF is this? */ |
8118 | 2211 g_free(font->face); |
2212 font->face = g_strdup("100"); | |
2213 } | |
2214 | |
2215 if (oldfont && oldfont->sml) | |
2216 font->sml = g_strdup(oldfont->sml); | |
2217 | |
8677 | 2218 if (size && !(options & GTK_IMHTML_NO_SIZES) && (imhtml->format_functions & (GTK_IMHTML_SHRINK|GTK_IMHTML_GROW))) { |
8686 | 2219 if (g_ascii_strcasecmp(size, "xx-small") == 0) |
2220 font->size = 1; | |
2221 else if (g_ascii_strcasecmp(size, "smaller") == 0 | |
2222 || g_ascii_strcasecmp(size, "x-small") == 0) | |
8118 | 2223 font->size = 2; |
8686 | 2224 else if (g_ascii_strcasecmp(size, "larger") == 0 |
2225 || g_ascii_strcasecmp(size, "medium") == 0) | |
8118 | 2226 font->size = 4; |
8686 | 2227 else if (g_ascii_strcasecmp(size, "large") == 0) |
2228 font->size = 5; | |
2229 else if (g_ascii_strcasecmp(size, "x-large") == 0) | |
2230 font->size = 6; | |
2231 else if (g_ascii_strcasecmp(size, "xx-large") == 0) | |
2232 font->size = 7; | |
8118 | 2233 else |
2234 font->size = 3; | |
8686 | 2235 gtk_imhtml_font_set_size(imhtml, font->size); |
2236 } | |
2237 else if (oldfont) | |
2238 { | |
2239 font->size = oldfont->size; | |
2240 } | |
2241 | |
2242 if (oldfont) | |
2243 { | |
2244 font->underline = oldfont->underline; | |
2245 } | |
2246 if (textdec && font->underline != 1 | |
8858 | 2247 && size |
8686 | 2248 && g_ascii_strcasecmp(size, "underline") == 0 |
2249 && (imhtml->format_functions & GTK_IMHTML_UNDERLINE)) | |
2250 { | |
2251 gtk_imhtml_toggle_underline(imhtml); | |
2252 font->underline = 1; | |
2253 } | |
8118 | 2254 |
2255 g_free(style); | |
2256 g_free(size); | |
2257 fonts = g_slist_prepend (fonts, font); | |
2258 } | |
2259 break; | |
5104 | 2260 case 57: /* /SPAN */ |
8118 | 2261 /* Inline CSS Support - Douglas Thrift */ |
8677 | 2262 if (fonts && !imhtml->wbfo) { |
8686 | 2263 GtkIMHtmlFontDetail *oldfont = NULL; |
8118 | 2264 GtkIMHtmlFontDetail *font = fonts->data; |
8677 | 2265 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8118 | 2266 ws[0] = '\0'; wpos = 0; |
8177 | 2267 /* NEW_BIT (NEW_TEXT_BIT); */ |
8118 | 2268 fonts = g_slist_remove (fonts, font); |
8692 | 2269 if (fonts) |
2270 oldfont = fonts->data; | |
2271 | |
2272 if (!oldfont) { | |
2273 gtk_imhtml_font_set_size(imhtml, 3); | |
2274 if (font->underline) | |
2275 gtk_imhtml_toggle_underline(imhtml); | |
2276 gtk_imhtml_toggle_fontface(imhtml, NULL); | |
2277 gtk_imhtml_toggle_forecolor(imhtml, NULL); | |
2278 gtk_imhtml_toggle_backcolor(imhtml, NULL); | |
8686 | 2279 } |
8692 | 2280 else |
8686 | 2281 { |
8692 | 2282 |
2283 if (font->size != oldfont->size) | |
2284 gtk_imhtml_font_set_size(imhtml, oldfont->size); | |
2285 | |
2286 if (font->underline != oldfont->underline) | |
2287 gtk_imhtml_toggle_underline(imhtml); | |
2288 | |
2289 if (!oldfont->face || strcmp(font->face, oldfont->face) != 0) | |
2290 gtk_imhtml_toggle_fontface(imhtml, oldfont->face); | |
2291 | |
2292 if (!oldfont->fore || strcmp(font->fore, oldfont->fore) != 0) | |
2293 gtk_imhtml_toggle_forecolor(imhtml, oldfont->fore); | |
2294 | |
2295 if (!oldfont->back || strcmp(font->back, oldfont->back) != 0) | |
2296 gtk_imhtml_toggle_backcolor(imhtml, oldfont->back); | |
8686 | 2297 } |
8692 | 2298 |
2299 g_free (font->face); | |
2300 g_free (font->fore); | |
2301 g_free (font->back); | |
2302 g_free (font->sml); | |
2303 | |
8118 | 2304 g_free (font); |
2305 } | |
2306 break; | |
8026 | 2307 case 60: /* SPAN */ |
2993 | 2308 break; |
8061 | 2309 case 62: /* comment */ |
8177 | 2310 /* NEW_BIT (NEW_TEXT_BIT); */ |
8317 | 2311 ws[wpos] = '\0'; |
8677 | 2312 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
2313 | |
6124 | 2314 if (imhtml->show_comments) |
2315 wpos = g_snprintf (ws, len, "%s", tag); | |
8177 | 2316 /* NEW_BIT (NEW_COMMENT_BIT); */ |
3922 | 2317 break; |
2318 default: | |
6882 | 2319 break; |
2993 | 2320 } |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2321 c += tlen; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2322 pos += tlen; |
4138 | 2323 if(tag) |
2324 g_free(tag); /* This was allocated back in VALID_TAG() */ | |
8881 | 2325 } else if (gtk_imhtml_is_smiley (imhtml, fonts, c, &smilelen) || gtk_imhtml_is_smiley(imhtml, NULL, c, &smilelen)) { |
8473 | 2326 GtkIMHtmlFontDetail *fd; |
2327 | |
2328 gchar *sml = NULL; | |
2329 if (fonts) { | |
2330 fd = fonts->data; | |
2331 sml = fd->sml; | |
2332 } | |
8677 | 2333 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8505 | 2334 wpos = g_snprintf (ws, smilelen + 1, "%s", c); |
8473 | 2335 |
8677 | 2336 gtk_imhtml_insert_smiley_at_iter(imhtml, sml, ws, iter); |
8473 | 2337 |
8505 | 2338 c += smilelen; |
2339 pos += smilelen; | |
8473 | 2340 wpos = 0; |
2341 ws[0] = 0; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2342 } else if (*c == '&' && gtk_imhtml_is_amp_escape (c, &, &tlen)) { |
7280 | 2343 while(*amp) { |
2344 ws [wpos++] = *amp++; | |
2345 } | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2346 c += tlen; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2347 pos += tlen; |
1428 | 2348 } else if (*c == '\n') { |
2349 if (!(options & GTK_IMHTML_NO_NEWLINE)) { | |
3922 | 2350 ws[wpos] = '\n'; |
2351 wpos++; | |
8677 | 2352 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8061 | 2353 ws[0] = '\0'; |
2354 wpos = 0; | |
8177 | 2355 /* NEW_BIT (NEW_TEXT_BIT); */ |
1428 | 2356 } |
2357 c++; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2358 pos++; |
8334 | 2359 } else if ((len_protocol = gtk_imhtml_is_protocol(c)) > 0){ |
2360 while(len_protocol--){ | |
8677 | 2361 /* Skip the next len_protocol characters, but make sure they're |
8334 | 2362 copied into the ws array. |
2363 */ | |
2364 ws [wpos++] = *c++; | |
2365 pos++; | |
2366 } | |
8061 | 2367 } else if (*c) { |
1428 | 2368 ws [wpos++] = *c++; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2369 pos++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2370 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
2371 break; |
1428 | 2372 } |
2373 } | |
8677 | 2374 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos); |
8061 | 2375 ws[0] = '\0'; wpos = 0; |
2376 | |
8177 | 2377 /* NEW_BIT(NEW_TEXT_BIT); */ |
8061 | 2378 |
4032 | 2379 while (fonts) { |
5967 | 2380 GtkIMHtmlFontDetail *font = fonts->data; |
4032 | 2381 fonts = g_slist_remove (fonts, font); |
2382 if (font->face) | |
2383 g_free (font->face); | |
2384 if (font->fore) | |
2385 g_free (font->fore); | |
2386 if (font->back) | |
2387 g_free (font->back); | |
2388 if (font->sml) | |
2389 g_free (font->sml); | |
2390 g_free (font); | |
8677 | 2391 //if (str) |
2392 // str = g_string_append (str, "</FONT>"); | |
4032 | 2393 } |
8677 | 2394 #if 0 |
3922 | 2395 if (str) { |
1428 | 2396 while (bold) { |
8677 | 2397 // str = g_string_append (str, "</B>"); |
1428 | 2398 bold--; |
2399 } | |
2400 while (italics) { | |
8677 | 2401 // str = g_string_append (str, "</I>"); |
1428 | 2402 italics--; |
2403 } | |
2404 while (underline) { | |
8677 | 2405 //str = g_string_append (str, "</U>"); |
1428 | 2406 underline--; |
2407 } | |
2408 while (strike) { | |
8677 | 2409 //str = g_string_append (str, "</S>"); |
1428 | 2410 strike--; |
2411 } | |
2412 while (sub) { | |
8677 | 2413 //str = g_string_append (str, "</SUB>"); |
1428 | 2414 sub--; |
2415 } | |
2416 while (sup) { | |
8677 | 2417 //str = g_string_append (str, "</SUP>"); |
1428 | 2418 sup--; |
2419 } | |
2420 while (title) { | |
8677 | 2421 //str = g_string_append (str, "</TITLE>"); |
1428 | 2422 title--; |
2423 } | |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
2424 while (pre) { |
8677 | 2425 //str = g_string_append (str, "</PRE>"); |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
2426 pre--; |
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
2427 } |
1428 | 2428 } |
8677 | 2429 #endif |
4032 | 2430 g_free (ws); |
4630 | 2431 if(bg) |
2432 g_free(bg); | |
8677 | 2433 |
2434 if (!imhtml->wbfo) | |
8698 | 2435 gtk_imhtml_close_tags(imhtml, iter); |
8506 | 2436 |
2437 object = g_object_ref(G_OBJECT(imhtml)); | |
2438 g_signal_emit(object, signals[UPDATE_FORMAT], 0); | |
2439 g_object_unref(object); | |
2440 | |
3922 | 2441 } |
2442 | |
4892 | 2443 void gtk_imhtml_remove_smileys(GtkIMHtml *imhtml) |
2444 { | |
4288 | 2445 g_hash_table_destroy(imhtml->smiley_data); |
2446 gtk_smiley_tree_destroy(imhtml->default_smilies); | |
4892 | 2447 imhtml->smiley_data = g_hash_table_new_full(g_str_hash, g_str_equal, |
4902 | 2448 g_free, (GDestroyNotify)gtk_smiley_tree_destroy); |
4288 | 2449 imhtml->default_smilies = gtk_smiley_tree_new(); |
2450 } | |
8481 | 2451 |
3922 | 2452 void gtk_imhtml_show_comments (GtkIMHtml *imhtml, |
4253 | 2453 gboolean show) |
2454 { | |
6124 | 2455 imhtml->show_comments = show; |
4253 | 2456 } |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2457 |
8456 | 2458 void gtk_imhtml_html_shortcuts (GtkIMHtml *imhtml, |
2459 gboolean allow) | |
2460 { | |
2461 imhtml->html_shortcuts = allow; | |
2462 } | |
2463 | |
2464 void gtk_imhtml_smiley_shortcuts (GtkIMHtml *imhtml, | |
2465 gboolean allow) | |
2466 { | |
2467 imhtml->smiley_shortcuts = allow; | |
2468 } | |
2469 | |
2470 void | |
2471 gtk_imhtml_set_protocol_name(GtkIMHtml *imhtml, gchar *protocol_name) { | |
2472 imhtml->protocol_name = protocol_name; | |
2473 } | |
2474 | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2475 void |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2476 gtk_imhtml_clear (GtkIMHtml *imhtml) |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2477 { |
7991 | 2478 GList *del; |
3922 | 2479 GtkTextIter start, end; |
8427 | 2480 GObject *object = g_object_ref(G_OBJECT(imhtml)); |
7991 | 2481 |
3922 | 2482 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); |
2483 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
2484 gtk_text_buffer_delete(imhtml->text_buffer, &start, &end); | |
7991 | 2485 |
2486 for(del = imhtml->scalables; del; del = del->next) { | |
2487 GtkIMHtmlScalable *scale = del->data; | |
2488 scale->free(scale); | |
2489 } | |
2490 g_list_free(imhtml->scalables); | |
2491 imhtml->scalables = NULL; | |
8061 | 2492 |
8719 | 2493 gtk_imhtml_close_tags(imhtml, &start); |
8481 | 2494 |
8427 | 2495 g_signal_emit(object, signals[CLEAR_FORMAT], 0); |
2496 g_object_unref(object); | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
2497 } |
2363
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
2498 |
4046 | 2499 void gtk_imhtml_page_up (GtkIMHtml *imhtml) |
2500 { | |
5282 | 2501 GdkRectangle rect; |
2502 GtkTextIter iter; | |
4046 | 2503 |
5282 | 2504 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); |
2505 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, rect.x, | |
2506 rect.y - rect.height); | |
2507 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &iter, 0, TRUE, 0, 0); | |
8061 | 2508 |
4046 | 2509 } |
5282 | 2510 void gtk_imhtml_page_down (GtkIMHtml *imhtml) |
2511 { | |
2512 GdkRectangle rect; | |
2513 GtkTextIter iter; | |
2514 | |
2515 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); | |
2516 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, rect.x, | |
2517 rect.y + rect.height); | |
2518 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &iter, 0, TRUE, 0, 0); | |
2519 } | |
4735 | 2520 |
5967 | 2521 /* GtkIMHtmlScalable, gtk_imhtml_image, gtk_imhtml_hr */ |
6982 | 2522 GtkIMHtmlScalable *gtk_imhtml_image_new(GdkPixbuf *img, const gchar *filename) |
4735 | 2523 { |
5967 | 2524 GtkIMHtmlImage *im_image = g_malloc(sizeof(GtkIMHtmlImage)); |
5012 | 2525 GtkImage *image = GTK_IMAGE(gtk_image_new_from_pixbuf(img)); |
4895 | 2526 |
5967 | 2527 GTK_IMHTML_SCALABLE(im_image)->scale = gtk_imhtml_image_scale; |
2528 GTK_IMHTML_SCALABLE(im_image)->add_to = gtk_imhtml_image_add_to; | |
2529 GTK_IMHTML_SCALABLE(im_image)->free = gtk_imhtml_image_free; | |
5046 | 2530 |
2531 im_image->pixbuf = img; | |
5012 | 2532 im_image->image = image; |
4895 | 2533 im_image->width = gdk_pixbuf_get_width(img); |
2534 im_image->height = gdk_pixbuf_get_height(img); | |
2535 im_image->mark = NULL; | |
6982 | 2536 im_image->filename = filename ? g_strdup(filename) : NULL; |
4895 | 2537 |
5046 | 2538 g_object_ref(img); |
4895 | 2539 return GTK_IMHTML_SCALABLE(im_image); |
2540 } | |
2541 | |
5967 | 2542 void gtk_imhtml_image_scale(GtkIMHtmlScalable *scale, int width, int height) |
4895 | 2543 { |
5967 | 2544 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; |
4895 | 2545 |
2546 if(image->width > width || image->height > height){ | |
2547 GdkPixbuf *new_image = NULL; | |
2548 float factor; | |
2549 int new_width = image->width, new_height = image->height; | |
2550 | |
8588 | 2551 if(image->width > (width - 2)){ |
4895 | 2552 factor = (float)(width)/image->width; |
2553 new_width = width; | |
2554 new_height = image->height * factor; | |
2555 } | |
8588 | 2556 if(new_height >= (height - 2)){ |
4895 | 2557 factor = (float)(height)/new_height; |
2558 new_height = height; | |
2559 new_width = new_width * factor; | |
2560 } | |
2561 | |
5046 | 2562 new_image = gdk_pixbuf_scale_simple(image->pixbuf, new_width, new_height, GDK_INTERP_BILINEAR); |
5012 | 2563 gtk_image_set_from_pixbuf(image->image, new_image); |
4895 | 2564 g_object_unref(G_OBJECT(new_image)); |
2565 } | |
2566 } | |
2567 | |
5012 | 2568 static void write_img_to_file(GtkWidget *w, GtkFileSelection *sel) |
2569 { | |
2570 const gchar *filename = gtk_file_selection_get_filename(sel); | |
5967 | 2571 gchar *dirname; |
2572 GtkIMHtmlImage *image = g_object_get_data(G_OBJECT(sel), "GtkIMHtmlImage"); | |
5012 | 2573 gchar *type = NULL; |
5019 | 2574 GError *error = NULL; |
5015 | 2575 #if GTK_CHECK_VERSION(2,2,0) |
5012 | 2576 GSList *formats = gdk_pixbuf_get_formats(); |
6162 | 2577 #else |
2578 char *basename = g_path_get_basename(filename); | |
2579 char *ext = strrchr(basename, '.'); | |
5959 | 2580 #endif |
5012 | 2581 |
5967 | 2582 if (g_file_test(filename, G_FILE_TEST_IS_DIR)) { |
2583 /* append a / if needed */ | |
2584 if (filename[strlen(filename) - 1] != '/') { | |
2585 dirname = g_strconcat(filename, "/", NULL); | |
2586 } else { | |
2587 dirname = g_strdup(filename); | |
2588 } | |
2589 gtk_file_selection_set_filename(sel, dirname); | |
2590 g_free(dirname); | |
5959 | 2591 return; |
5967 | 2592 } |
5959 | 2593 |
2594 #if GTK_CHECK_VERSION(2,2,0) | |
5012 | 2595 while(formats){ |
2596 GdkPixbufFormat *format = formats->data; | |
2597 gchar **extensions = gdk_pixbuf_format_get_extensions(format); | |
2598 gpointer p = extensions; | |
2599 | |
2600 while(gdk_pixbuf_format_is_writable(format) && extensions && extensions[0]){ | |
2601 gchar *fmt_ext = extensions[0]; | |
2602 const gchar* file_ext = filename + strlen(filename) - strlen(fmt_ext); | |
2603 | |
2604 if(!strcmp(fmt_ext, file_ext)){ | |
2605 type = gdk_pixbuf_format_get_name(format); | |
2606 break; | |
2607 } | |
2608 | |
2609 extensions++; | |
2610 } | |
2611 | |
2612 g_strfreev(p); | |
2613 | |
2614 if(type) | |
2615 break; | |
2616 | |
2617 formats = formats->next; | |
2618 } | |
2619 | |
5020 | 2620 g_slist_free(formats); |
2621 #else | |
2622 /* this is really ugly code, but I think it will work */ | |
2623 if(ext) { | |
2624 ext++; | |
2625 if(!g_ascii_strcasecmp(ext, "jpeg") || !g_ascii_strcasecmp(ext, "jpg")) | |
2626 type = g_strdup("jpeg"); | |
2627 else if(!g_ascii_strcasecmp(ext, "png")) | |
2628 type = g_strdup("png"); | |
2629 } | |
2630 | |
2631 g_free(basename); | |
2632 #endif | |
2633 | |
5012 | 2634 /* If I can't find a valid type, I will just tell the user about it and then assume |
2635 it's a png */ | |
2636 if(!type){ | |
2637 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
5967 | 2638 _("Unable to guess the image type based on the file extension supplied. Defaulting to PNG.")); |
5012 | 2639 type = g_strdup("png"); |
2640 } | |
2641 | |
5046 | 2642 gdk_pixbuf_save(image->pixbuf, filename, type, &error, NULL); |
5012 | 2643 |
2644 if(error){ | |
2645 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
2646 _("Error saving image: %s"), error->message); | |
2647 g_error_free(error); | |
2648 } | |
2649 | |
2650 g_free(type); | |
2651 } | |
2652 | |
5967 | 2653 static void gtk_imhtml_image_save(GtkWidget *w, GtkIMHtmlImage *image) |
5012 | 2654 { |
5967 | 2655 GtkWidget *sel = gtk_file_selection_new(_("Save Image")); |
5012 | 2656 |
6982 | 2657 if (image->filename) |
2658 gtk_file_selection_set_filename(GTK_FILE_SELECTION(sel), image->filename); | |
5967 | 2659 g_object_set_data(G_OBJECT(sel), "GtkIMHtmlImage", image); |
5012 | 2660 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", |
2661 G_CALLBACK(write_img_to_file), sel); | |
2662 | |
2663 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", | |
2664 G_CALLBACK(gtk_widget_destroy), sel); | |
2665 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->cancel_button), "clicked", | |
8061 | 2666 G_CALLBACK(gtk_widget_destroy), sel); |
5012 | 2667 |
2668 gtk_widget_show(sel); | |
2669 } | |
2670 | |
5967 | 2671 static gboolean gtk_imhtml_image_clicked(GtkWidget *w, GdkEvent *event, GtkIMHtmlImage *image) |
5012 | 2672 { |
2673 GdkEventButton *event_button = (GdkEventButton *) event; | |
2674 | |
2675 if (event->type == GDK_BUTTON_RELEASE) { | |
2676 if(event_button->button == 3) { | |
2677 GtkWidget *img, *item, *menu; | |
2678 gchar *text = g_strdup_printf(_("_Save Image...")); | |
2679 menu = gtk_menu_new(); | |
2680 | |
2681 /* buttons and such */ | |
2682 img = gtk_image_new_from_stock(GTK_STOCK_SAVE, GTK_ICON_SIZE_MENU); | |
2683 item = gtk_image_menu_item_new_with_mnemonic(text); | |
2684 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); | |
5967 | 2685 g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(gtk_imhtml_image_save), image); |
5012 | 2686 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
2687 | |
2688 gtk_widget_show_all(menu); | |
2689 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, | |
2690 event_button->button, event_button->time); | |
2691 | |
2692 g_free(text); | |
2693 return TRUE; | |
2694 } | |
2695 } | |
2696 if(event->type == GDK_BUTTON_PRESS && event_button->button == 3) | |
2697 return TRUE; /* Clicking the right mouse button on a link shouldn't | |
2698 be caught by the regular GtkTextView menu */ | |
2699 else | |
2700 return FALSE; /* Let clicks go through if we didn't catch anything */ | |
2701 | |
2702 } | |
5967 | 2703 void gtk_imhtml_image_free(GtkIMHtmlScalable *scale) |
2704 { | |
2705 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; | |
2706 | |
2707 g_object_unref(image->pixbuf); | |
6982 | 2708 if (image->filename) |
2709 g_free(image->filename); | |
5967 | 2710 g_free(scale); |
2711 } | |
2712 | |
2713 void gtk_imhtml_image_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
2714 { | |
2715 GtkIMHtmlImage *image = (GtkIMHtmlImage *)scale; | |
2716 GtkWidget *box = gtk_event_box_new(); | |
2717 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
2718 | |
2719 gtk_container_add(GTK_CONTAINER(box), GTK_WIDGET(image->image)); | |
2720 | |
2721 gtk_widget_show(GTK_WIDGET(image->image)); | |
2722 gtk_widget_show(box); | |
2723 | |
2724 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), box, anchor); | |
2725 g_signal_connect(G_OBJECT(box), "event", G_CALLBACK(gtk_imhtml_image_clicked), image); | |
2726 } | |
2727 | |
2728 GtkIMHtmlScalable *gtk_imhtml_hr_new() | |
2729 { | |
2730 GtkIMHtmlHr *hr = g_malloc(sizeof(GtkIMHtmlHr)); | |
2731 | |
2732 GTK_IMHTML_SCALABLE(hr)->scale = gtk_imhtml_hr_scale; | |
2733 GTK_IMHTML_SCALABLE(hr)->add_to = gtk_imhtml_hr_add_to; | |
2734 GTK_IMHTML_SCALABLE(hr)->free = gtk_imhtml_hr_free; | |
2735 | |
2736 hr->sep = gtk_hseparator_new(); | |
2737 gtk_widget_set_size_request(hr->sep, 5000, 2); | |
2738 gtk_widget_show(hr->sep); | |
2739 | |
2740 return GTK_IMHTML_SCALABLE(hr); | |
2741 } | |
2742 | |
2743 void gtk_imhtml_hr_scale(GtkIMHtmlScalable *scale, int width, int height) | |
2744 { | |
8588 | 2745 gtk_widget_set_size_request(((GtkIMHtmlHr *)scale)->sep, width - 2, 2); |
5967 | 2746 } |
2747 | |
2748 void gtk_imhtml_hr_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
2749 { | |
2750 GtkIMHtmlHr *hr = (GtkIMHtmlHr *)scale; | |
2751 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
8698 | 2752 g_object_set_data(G_OBJECT(anchor), "gtkimhtml_htmltext", "<hr>"); |
2753 g_object_set_data(G_OBJECT(anchor), "gtkimhtml_plaintext", "\n---\n"); | |
5967 | 2754 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), hr->sep, anchor); |
2755 } | |
2756 | |
2757 void gtk_imhtml_hr_free(GtkIMHtmlScalable *scale) | |
2758 { | |
2759 g_free(scale); | |
2760 } | |
7295 | 2761 |
2762 gboolean gtk_imhtml_search_find(GtkIMHtml *imhtml, const gchar *text) | |
2763 { | |
2764 GtkTextIter iter, start, end; | |
2765 gboolean new_search = TRUE; | |
2766 | |
2767 g_return_val_if_fail(imhtml != NULL, FALSE); | |
2768 g_return_val_if_fail(text != NULL, FALSE); | |
8061 | 2769 |
7295 | 2770 if (imhtml->search_string && !strcmp(text, imhtml->search_string)) |
2771 new_search = FALSE; | |
8061 | 2772 |
7295 | 2773 if (new_search) { |
2774 gtk_imhtml_search_clear(imhtml); | |
2775 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &iter); | |
2776 } else { | |
2777 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, | |
8061 | 2778 gtk_text_buffer_get_mark(imhtml->text_buffer, "search")); |
7295 | 2779 } |
2780 imhtml->search_string = g_strdup(text); | |
2781 | |
7358 | 2782 if (gtk_source_iter_forward_search(&iter, imhtml->search_string, |
2783 GTK_SOURCE_SEARCH_VISIBLE_ONLY | GTK_SOURCE_SEARCH_CASE_INSENSITIVE, | |
7295 | 2784 &start, &end, NULL)) { |
2785 | |
2786 gtk_text_view_scroll_to_iter(GTK_TEXT_VIEW(imhtml), &start, 0, TRUE, 0, 0); | |
2787 gtk_text_buffer_create_mark(imhtml->text_buffer, "search", &end, FALSE); | |
2788 if (new_search) { | |
2789 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "search", &iter, &end); | |
8061 | 2790 do |
7295 | 2791 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "search", &start, &end); |
8061 | 2792 while (gtk_source_iter_forward_search(&end, imhtml->search_string, |
2793 GTK_SOURCE_SEARCH_VISIBLE_ONLY | | |
7358 | 2794 GTK_SOURCE_SEARCH_CASE_INSENSITIVE, |
7295 | 2795 &start, &end, NULL)); |
2796 } | |
2797 return TRUE; | |
2798 } | |
8061 | 2799 |
2800 gtk_imhtml_search_clear(imhtml); | |
2801 | |
7295 | 2802 return FALSE; |
2803 } | |
2804 | |
2805 void gtk_imhtml_search_clear(GtkIMHtml *imhtml) | |
2806 { | |
2807 GtkTextIter start, end; | |
8061 | 2808 |
7295 | 2809 g_return_if_fail(imhtml != NULL); |
8061 | 2810 |
7295 | 2811 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); |
2812 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
2813 | |
2814 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "search", &start, &end); | |
2815 if (imhtml->search_string) | |
2816 g_free(imhtml->search_string); | |
2817 imhtml->search_string = NULL; | |
2818 } | |
8061 | 2819 |
8677 | 2820 static GtkTextTag *find_font_forecolor_tag(GtkIMHtml *imhtml, gchar *color) |
2821 { | |
2822 gchar str[18]; | |
2823 GtkTextTag *tag; | |
2824 | |
2825 g_snprintf(str, sizeof(str), "FORECOLOR %s", color); | |
2826 | |
2827 tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(imhtml->text_buffer), str); | |
2828 if (!tag) | |
2829 tag = gtk_text_buffer_create_tag(imhtml->text_buffer, str, "foreground", color, NULL); | |
2830 | |
2831 return tag; | |
2832 } | |
2833 | |
2834 static GtkTextTag *find_font_backcolor_tag(GtkIMHtml *imhtml, gchar *color) | |
2835 { | |
2836 gchar str[18]; | |
2837 GtkTextTag *tag; | |
2838 | |
2839 g_snprintf(str, sizeof(str), "BACKCOLOR %s", color); | |
2840 | |
2841 tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(imhtml->text_buffer), str); | |
2842 if (!tag) | |
2843 tag = gtk_text_buffer_create_tag(imhtml->text_buffer, str, "background", color, NULL); | |
2844 | |
2845 return tag; | |
2846 } | |
2847 | |
2848 static GtkTextTag *find_font_face_tag(GtkIMHtml *imhtml, gchar *face) | |
8061 | 2849 { |
8677 | 2850 gchar str[256]; |
2851 GtkTextTag *tag; | |
2852 | |
2853 g_snprintf(str, sizeof(str), "FONT FACE %s", face); | |
2854 str[255] = '\0'; | |
2855 | |
2856 tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(imhtml->text_buffer), str); | |
2857 if (!tag) | |
2858 tag = gtk_text_buffer_create_tag(imhtml->text_buffer, str, "family", face, NULL); | |
2859 | |
2860 return tag; | |
2861 } | |
2862 | |
8740
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2863 static void _init_original_fsize(GtkIMHtml *imhtml) |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2864 { |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2865 GtkTextAttributes *attr; |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2866 attr = gtk_text_view_get_default_attributes(GTK_TEXT_VIEW(imhtml)); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2867 imhtml->original_fsize = pango_font_description_get_size(attr->font); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2868 gtk_text_attributes_unref(attr); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2869 } |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2870 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2871 static void _recalculate_font_sizes(GtkTextTag *tag, gpointer imhtml) |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2872 { |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2873 if (strncmp(tag->name, "FONT SIZE ", 10) == 0) { |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2874 int size; |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2875 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2876 size = strtol(tag->name + 10, NULL, 10); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2877 g_object_set(G_OBJECT(tag), "size", |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2878 (gint) (GTK_IMHTML(imhtml)->original_fsize * |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2879 ((double) _point_sizes[size-1] * GTK_IMHTML(imhtml)->zoom)), NULL); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2880 } |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2881 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2882 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2883 } |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2884 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2885 void gtk_imhtml_font_zoom(GtkIMHtml *imhtml, double zoom) |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2886 { |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2887 GtkRcStyle *s; |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2888 PangoFontDescription *font_desc = pango_font_description_new(); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2889 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2890 imhtml->zoom = zoom; |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2891 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2892 if (!imhtml->original_fsize) |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2893 _init_original_fsize(imhtml); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2894 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2895 gtk_text_tag_table_foreach(gtk_text_buffer_get_tag_table(imhtml->text_buffer), |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2896 _recalculate_font_sizes, imhtml); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2897 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2898 pango_font_description_set_size(font_desc, (gint)((double) imhtml->original_fsize * zoom)); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2899 |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2900 s = gtk_widget_get_modifier_style(GTK_WIDGET(imhtml)); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2901 s->font_desc = font_desc; |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2902 gtk_widget_modify_style(GTK_WIDGET(imhtml), s); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2903 } |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2904 |
8677 | 2905 static GtkTextTag *find_font_size_tag(GtkIMHtml *imhtml, int size) |
2906 { | |
2907 gchar str[24]; | |
2908 GtkTextTag *tag; | |
2909 | |
8740
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2910 if (!imhtml->original_fsize) |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2911 _init_original_fsize(imhtml); |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2912 |
8677 | 2913 g_snprintf(str, sizeof(str), "FONT SIZE %d", size); |
2914 str[23] = '\0'; | |
2915 | |
2916 tag = gtk_text_tag_table_lookup(gtk_text_buffer_get_tag_table(imhtml->text_buffer), str); | |
2917 if (!tag) { | |
2918 /* For reasons I don't understand, setting "scale" here scaled based on some default | |
2919 * size other than my theme's default size. Our size 4 was actually smaller than | |
2920 * our size 3 for me. So this works around that oddity. | |
2921 */ | |
2922 tag = gtk_text_buffer_create_tag(imhtml->text_buffer, str, "size", | |
8740
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2923 (gint) (imhtml->original_fsize * |
61a090413b93
[gaim-migrate @ 9495]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
2924 ((double) _point_sizes[size-1] * imhtml->zoom)), NULL); |
8061 | 2925 } |
2926 | |
8677 | 2927 return tag; |
2928 } | |
2929 | |
2930 static void remove_tag_by_prefix(GtkIMHtml *imhtml, const GtkTextIter *i, const GtkTextIter *e, | |
2931 const char *prefix, guint len, gboolean homo) | |
2932 { | |
2933 GSList *tags, *l; | |
2934 GtkTextIter iter; | |
2935 | |
2936 tags = gtk_text_iter_get_tags(i); | |
2937 | |
2938 for (l = tags; l; l = l->next) { | |
2939 GtkTextTag *tag = l->data; | |
2940 | |
2941 if (tag->name && !strncmp(tag->name, prefix, len)) | |
2942 gtk_text_buffer_remove_tag(imhtml->text_buffer, tag, i, e); | |
8061 | 2943 } |
2944 | |
8677 | 2945 g_slist_free(tags); |
2946 | |
2947 if (homo) | |
2948 return; | |
2949 | |
2950 iter = *i; | |
2951 | |
2952 while (gtk_text_iter_forward_char(&iter) && !gtk_text_iter_equal(&iter, e)) { | |
2953 if (gtk_text_iter_begins_tag(&iter, NULL)) { | |
2954 tags = gtk_text_iter_get_toggled_tags(&iter, TRUE); | |
2955 | |
2956 for (l = tags; l; l = l->next) { | |
2957 GtkTextTag *tag = l->data; | |
2958 | |
2959 if (tag->name && !strncmp(tag->name, prefix, len)) | |
2960 gtk_text_buffer_remove_tag(imhtml->text_buffer, tag, &iter, e); | |
2961 } | |
2962 | |
2963 g_slist_free(tags); | |
2964 } | |
8061 | 2965 } |
8677 | 2966 } |
2967 | |
2968 static void remove_font_size(GtkIMHtml *imhtml, GtkTextIter *i, GtkTextIter *e, gboolean homo) | |
2969 { | |
2970 remove_tag_by_prefix(imhtml, i, e, "FONT SIZE ", 10, homo); | |
2971 } | |
2972 | |
2973 static void remove_font_face(GtkIMHtml *imhtml, GtkTextIter *i, GtkTextIter *e, gboolean homo) | |
2974 { | |
2975 remove_tag_by_prefix(imhtml, i, e, "FONT FACE ", 10, homo); | |
2976 } | |
2977 | |
2978 static void remove_font_forecolor(GtkIMHtml *imhtml, GtkTextIter *i, GtkTextIter *e, gboolean homo) | |
2979 { | |
2980 remove_tag_by_prefix(imhtml, i, e, "FORECOLOR ", 10, homo); | |
2981 } | |
2982 | |
2983 static void remove_font_backcolor(GtkIMHtml *imhtml, GtkTextIter *i, GtkTextIter *e, gboolean homo) | |
2984 { | |
2985 remove_tag_by_prefix(imhtml, i, e, "BACKCOLOR ", 10, homo); | |
2986 } | |
2987 | |
2988 static void remove_font_link(GtkIMHtml *imhtml, GtkTextIter *i, GtkTextIter *e, gboolean homo) | |
2989 { | |
2990 remove_tag_by_prefix(imhtml, i, e, "LINK ", 5, homo); | |
2991 } | |
2992 | |
2993 /* Editable stuff */ | |
2994 static void preinsert_cb(GtkTextBuffer *buffer, GtkTextIter *iter, gchar *text, gint len, GtkIMHtml *imhtml) | |
2995 { | |
2996 imhtml->insert_offset = gtk_text_iter_get_offset(iter); | |
2997 } | |
2998 | |
2999 static void insert_cb(GtkTextBuffer *buffer, GtkTextIter *end, gchar *text, gint len, GtkIMHtml *imhtml) | |
3000 { | |
3001 GtkTextIter start; | |
3002 | |
3003 if (!len) | |
3004 return; | |
3005 | |
3006 start = *end; | |
3007 gtk_text_iter_set_offset(&start, imhtml->insert_offset); | |
3008 | |
3009 if (imhtml->edit.bold) | |
3010 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "BOLD", &start, end); | |
3011 else | |
3012 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "BOLD", &start, end); | |
3013 | |
3014 if (imhtml->edit.italic) | |
3015 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "ITALICS", &start, end); | |
3016 else | |
3017 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "ITALICS", &start, end); | |
3018 | |
3019 if (imhtml->edit.underline) | |
3020 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "UNDERLINE", &start, end); | |
3021 else | |
3022 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "UNDERLINE", &start, end); | |
3023 | |
3024 if (imhtml->edit.forecolor) { | |
3025 remove_font_forecolor(imhtml, &start, end, TRUE); | |
3026 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3027 find_font_forecolor_tag(imhtml, imhtml->edit.forecolor), | |
3028 &start, end); | |
8061 | 3029 } |
3030 | |
8677 | 3031 if (imhtml->edit.backcolor) { |
3032 remove_font_backcolor(imhtml, &start, end, TRUE); | |
3033 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3034 find_font_backcolor_tag(imhtml, imhtml->edit.backcolor), | |
3035 &start, end); | |
3036 } | |
3037 | |
3038 if (imhtml->edit.fontface) { | |
3039 remove_font_face(imhtml, &start, end, TRUE); | |
3040 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3041 find_font_face_tag(imhtml, imhtml->edit.fontface), | |
3042 &start, end); | |
8061 | 3043 } |
8677 | 3044 |
3045 if (imhtml->edit.fontsize) { | |
3046 remove_font_size(imhtml, &start, end, TRUE); | |
3047 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3048 find_font_size_tag(imhtml, imhtml->edit.fontsize), | |
3049 &start, end); | |
3050 } | |
3051 | |
3052 if (imhtml->edit.link) { | |
3053 remove_font_link(imhtml, &start, end, TRUE); | |
3054 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3055 imhtml->edit.link, | |
3056 &start, end); | |
3057 } | |
3058 | |
8061 | 3059 } |
3060 | |
3061 void gtk_imhtml_set_editable(GtkIMHtml *imhtml, gboolean editable) | |
3062 { | |
3063 gtk_text_view_set_editable(GTK_TEXT_VIEW(imhtml), editable); | |
8177 | 3064 /* |
3065 * We need a visible caret for accessibility, so mouseless | |
3066 * people can highlight stuff. | |
3067 */ | |
3068 /* gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(imhtml), editable); */ | |
8061 | 3069 imhtml->editable = editable; |
8677 | 3070 imhtml->format_functions = GTK_IMHTML_ALL; |
3071 | |
3072 if (editable) | |
3073 g_signal_connect_after(G_OBJECT(GTK_IMHTML(imhtml)->text_buffer), "mark-set", | |
3074 G_CALLBACK(mark_set_cb), imhtml); | |
3075 } | |
3076 | |
3077 void gtk_imhtml_set_whole_buffer_formatting_only(GtkIMHtml *imhtml, gboolean wbfo) | |
3078 { | |
3079 g_return_if_fail(imhtml != NULL); | |
3080 | |
3081 imhtml->wbfo = wbfo; | |
8420 | 3082 } |
3083 | |
3084 void gtk_imhtml_set_format_functions(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons) | |
3085 { | |
3086 GObject *object = g_object_ref(G_OBJECT(imhtml)); | |
8677 | 3087 imhtml->format_functions = buttons; |
8420 | 3088 g_signal_emit(object, signals[BUTTONS_UPDATE], 0, buttons); |
3089 g_object_unref(object); | |
8061 | 3090 } |
3091 | |
8788 | 3092 GtkIMHtmlButtons gtk_imhtml_get_format_functions(GtkIMHtml *imhtml) |
3093 { | |
3094 return imhtml->format_functions; | |
3095 } | |
8516 | 3096 |
3097 void gtk_imhtml_get_current_format(GtkIMHtml *imhtml, gboolean *bold, | |
3098 gboolean *italic, gboolean *underline) | |
8481 | 3099 { |
8677 | 3100 if (imhtml->edit.bold) |
3101 (*bold) = TRUE; | |
3102 if (imhtml->edit.italic) | |
3103 (*italic) = TRUE; | |
3104 if (imhtml->edit.underline) | |
3105 (*underline) = TRUE; | |
8481 | 3106 } |
3107 | |
8061 | 3108 gboolean gtk_imhtml_get_editable(GtkIMHtml *imhtml) |
3109 { | |
3110 return imhtml->editable; | |
3111 } | |
3112 | |
8677 | 3113 /* |
3114 * I had this crazy idea about changing the text cursor color to reflex the foreground color | |
3115 * of the text about to be entered. This is the place you'd do it, along with the place where | |
3116 * we actually set a new foreground color. | |
3117 * I may not do this, because people will bitch about Gaim overriding their gtk theme's cursor | |
3118 * colors. | |
3119 * | |
3120 * Just in case I do do this, I asked about what to set the secondary text cursor to. | |
3121 * | |
8719 | 3122 * (12:45:27) ?? ???: secondary_cursor_color = (rgb(background) + rgb(primary_cursor_color) ) / 2 |
3123 * (12:45:55) ?? ???: understand? | |
8677 | 3124 * (12:46:14) Tim: yeah. i didn't know there was an exact formula |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8729
diff
changeset
|
3125 * (12:46:56) ?? ???: u might need to extract separate each color from RGB |
8677 | 3126 */ |
3127 | |
3128 static void mark_set_cb(GtkTextBuffer *buffer, GtkTextIter *arg1, GtkTextMark *mark, | |
3129 GtkIMHtml *imhtml) | |
3130 { | |
3131 GSList *tags, *l; | |
3132 GtkTextIter iter; | |
3133 | |
3134 if (mark != gtk_text_buffer_get_insert(buffer)) | |
3135 return; | |
3136 | |
3137 if (!gtk_text_buffer_get_char_count(buffer)) | |
3138 return; | |
3139 | |
3140 imhtml->edit.bold = imhtml->edit.italic = imhtml->edit.underline = FALSE; | |
3141 if (imhtml->edit.forecolor) | |
3142 g_free(imhtml->edit.forecolor); | |
3143 imhtml->edit.forecolor = NULL; | |
3144 if (imhtml->edit.backcolor) | |
3145 g_free(imhtml->edit.backcolor); | |
3146 imhtml->edit.backcolor = NULL; | |
3147 if (imhtml->edit.fontface) | |
3148 g_free(imhtml->edit.fontface); | |
3149 imhtml->edit.fontface = NULL; | |
3150 imhtml->edit.fontsize = 0; | |
3151 imhtml->edit.link = NULL; | |
3152 | |
3153 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, mark); | |
3154 | |
3155 | |
3156 if (gtk_text_iter_is_end(&iter)) | |
3157 tags = gtk_text_iter_get_toggled_tags(&iter, FALSE); | |
3158 else | |
3159 tags = gtk_text_iter_get_tags(&iter); | |
3160 | |
3161 for (l = tags; l != NULL; l = l->next) { | |
3162 GtkTextTag *tag = GTK_TEXT_TAG(l->data); | |
3163 | |
3164 if (tag->name) { | |
3165 if (strcmp(tag->name, "BOLD") == 0) | |
3166 imhtml->edit.bold = TRUE; | |
3167 if (strcmp(tag->name, "ITALICS") == 0) | |
3168 imhtml->edit.italic = TRUE; | |
3169 if (strcmp(tag->name, "UNDERLINE") == 0) | |
3170 imhtml->edit.underline = TRUE; | |
3171 if (strncmp(tag->name, "FORECOLOR ", 10) == 0) | |
3172 imhtml->edit.forecolor = g_strdup(&(tag->name)[10]); | |
3173 if (strncmp(tag->name, "BACKCOLOR ", 10) == 0) | |
3174 imhtml->edit.backcolor = g_strdup(&(tag->name)[10]); | |
3175 if (strncmp(tag->name, "FONT FACE ", 10) == 0) | |
3176 imhtml->edit.fontface = g_strdup(&(tag->name)[10]); | |
3177 if (strncmp(tag->name, "FONT SIZE ", 10) == 0) | |
3178 imhtml->edit.fontsize = strtol(&(tag->name)[10], NULL, 10); | |
8719 | 3179 if ((strncmp(tag->name, "LINK ", 5) == 0) && !gtk_text_iter_is_end(&iter)) |
8677 | 3180 imhtml->edit.link = tag; |
3181 } | |
3182 } | |
3183 | |
3184 g_slist_free(tags); | |
3185 } | |
3186 | |
8061 | 3187 gboolean gtk_imhtml_toggle_bold(GtkIMHtml *imhtml) |
3188 { | |
8481 | 3189 GObject *object; |
8677 | 3190 GtkTextIter start, end; |
3191 | |
3192 imhtml->edit.bold = !imhtml->edit.bold; | |
3193 | |
3194 if (imhtml->wbfo) { | |
3195 gtk_text_buffer_get_bounds(imhtml->text_buffer, &start, &end); | |
3196 if (imhtml->edit.bold) | |
3197 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "BOLD", &start, &end); | |
3198 else | |
3199 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "BOLD", &start, &end); | |
3200 } else if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3201 if (imhtml->edit.bold) | |
3202 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "BOLD", &start, &end); | |
3203 else | |
3204 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "BOLD", &start, &end); | |
3205 | |
8061 | 3206 } |
8481 | 3207 object = g_object_ref(G_OBJECT(imhtml)); |
3208 g_signal_emit(object, signals[TOGGLE_FORMAT], 0, GTK_IMHTML_BOLD); | |
3209 g_object_unref(object); | |
3210 | |
8677 | 3211 return (imhtml->edit.bold != FALSE); |
8061 | 3212 } |
3213 | |
3214 gboolean gtk_imhtml_toggle_italic(GtkIMHtml *imhtml) | |
3215 { | |
8481 | 3216 GObject *object; |
8677 | 3217 GtkTextIter start, end; |
3218 | |
3219 imhtml->edit.italic = !imhtml->edit.italic; | |
3220 | |
3221 if (imhtml->wbfo) { | |
3222 gtk_text_buffer_get_bounds(imhtml->text_buffer, &start, &end); | |
3223 if (imhtml->edit.italic) | |
3224 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "ITALICS", &start, &end); | |
3225 else | |
3226 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "ITALICS", &start, &end); | |
3227 } else if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3228 if (imhtml->edit.italic) | |
3229 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "ITALICS", &start, &end); | |
3230 else | |
3231 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "ITALICS", &start, &end); | |
8061 | 3232 } |
8481 | 3233 object = g_object_ref(G_OBJECT(imhtml)); |
3234 g_signal_emit(object, signals[TOGGLE_FORMAT], 0, GTK_IMHTML_ITALIC); | |
3235 g_object_unref(object); | |
3236 | |
8677 | 3237 return imhtml->edit.italic != FALSE; |
8061 | 3238 } |
3239 | |
3240 gboolean gtk_imhtml_toggle_underline(GtkIMHtml *imhtml) | |
3241 { | |
8481 | 3242 GObject *object; |
8677 | 3243 GtkTextIter start, end; |
3244 | |
3245 imhtml->edit.underline = !imhtml->edit.underline; | |
3246 | |
3247 if (imhtml->wbfo) { | |
3248 gtk_text_buffer_get_bounds(imhtml->text_buffer, &start, &end); | |
3249 if (imhtml->edit.underline) | |
3250 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "UNDERLINE", &start, &end); | |
3251 else | |
3252 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "UNDERLINE", &start, &end); | |
3253 } else if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3254 if (imhtml->edit.underline) | |
3255 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "UNDERLINE", &start, &end); | |
3256 else | |
3257 gtk_text_buffer_remove_tag_by_name(imhtml->text_buffer, "UNDERLINE", &start, &end); | |
8061 | 3258 } |
8481 | 3259 object = g_object_ref(G_OBJECT(imhtml)); |
3260 g_signal_emit(object, signals[TOGGLE_FORMAT], 0, GTK_IMHTML_UNDERLINE); | |
3261 g_object_unref(object); | |
3262 | |
8677 | 3263 return imhtml->edit.underline != FALSE; |
8061 | 3264 } |
3265 | |
3266 void gtk_imhtml_font_set_size(GtkIMHtml *imhtml, gint size) | |
3267 { | |
8677 | 3268 GtkTextIter start, end; |
8061 | 3269 |
3270 imhtml->edit.fontsize = size; | |
3271 | |
8677 | 3272 |
3273 if (imhtml->wbfo) { | |
3274 gtk_text_buffer_get_bounds(imhtml->text_buffer, &start, &end); | |
3275 remove_font_size(imhtml, &start, &end, TRUE); | |
3276 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3277 find_font_size_tag(imhtml, imhtml->edit.fontsize), &start, &end); | |
3278 } else if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3279 remove_font_size(imhtml, &start, &end, FALSE); | |
3280 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3281 find_font_size_tag(imhtml, imhtml->edit.fontsize), &start, &end); | |
8061 | 3282 } |
8677 | 3283 |
8061 | 3284 } |
3285 | |
3286 void gtk_imhtml_font_shrink(GtkIMHtml *imhtml) | |
3287 { | |
8677 | 3288 GtkTextIter start, end; |
3289 | |
8061 | 3290 if (imhtml->edit.fontsize == 1) |
3291 return; | |
3292 | |
8677 | 3293 if (!imhtml->edit.fontsize) |
3294 imhtml->edit.fontsize = 2; | |
3295 else | |
3296 imhtml->edit.fontsize--; | |
3297 | |
3298 if (imhtml->wbfo) { | |
3299 gtk_text_buffer_get_bounds(imhtml->text_buffer, &start, &end); | |
3300 remove_font_size(imhtml, &start, &end, TRUE); | |
3301 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3302 find_font_size_tag(imhtml, imhtml->edit.fontsize), &start, &end); | |
3303 } else if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3304 remove_font_size(imhtml, &start, &end, FALSE); | |
3305 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3306 find_font_size_tag(imhtml, imhtml->edit.fontsize), &start, &end); | |
8061 | 3307 } |
3308 } | |
3309 | |
3310 void gtk_imhtml_font_grow(GtkIMHtml *imhtml) | |
3311 { | |
8677 | 3312 GtkTextIter start, end; |
3313 | |
8061 | 3314 if (imhtml->edit.fontsize == MAX_FONT_SIZE) |
3315 return; | |
3316 | |
8677 | 3317 if (!imhtml->edit.fontsize) |
3318 imhtml->edit.fontsize = 4; | |
3319 else | |
3320 imhtml->edit.fontsize++; | |
3321 | |
3322 if (imhtml->wbfo) { | |
3323 gtk_text_buffer_get_bounds(imhtml->text_buffer, &start, &end); | |
3324 remove_font_size(imhtml, &start, &end, TRUE); | |
3325 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3326 find_font_size_tag(imhtml, imhtml->edit.fontsize), &start, &end); | |
3327 } else if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3328 remove_font_size(imhtml, &start, &end, FALSE); | |
3329 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3330 find_font_size_tag(imhtml, imhtml->edit.fontsize), &start, &end); | |
8061 | 3331 } |
3332 } | |
3333 | |
3334 gboolean gtk_imhtml_toggle_forecolor(GtkIMHtml *imhtml, const char *color) | |
3335 { | |
8677 | 3336 GtkTextIter start, end; |
3337 | |
3338 if (imhtml->edit.forecolor != NULL) | |
3339 g_free(imhtml->edit.forecolor); | |
3340 | |
8429 | 3341 if (color) { |
8677 | 3342 imhtml->edit.forecolor = g_strdup(color); |
3343 if (imhtml->wbfo) { | |
3344 gtk_text_buffer_get_bounds(imhtml->text_buffer, &start, &end); | |
3345 remove_font_forecolor(imhtml, &start, &end, TRUE); | |
3346 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3347 find_font_forecolor_tag(imhtml, imhtml->edit.forecolor), &start, &end); | |
3348 } else if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3349 remove_font_forecolor(imhtml, &start, &end, FALSE); | |
3350 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3351 find_font_forecolor_tag(imhtml, imhtml->edit.forecolor), | |
3352 &start, &end); | |
3353 } | |
8061 | 3354 } else { |
3355 imhtml->edit.forecolor = NULL; | |
3356 } | |
3357 | |
3358 return imhtml->edit.forecolor != NULL; | |
3359 } | |
3360 | |
3361 gboolean gtk_imhtml_toggle_backcolor(GtkIMHtml *imhtml, const char *color) | |
3362 { | |
8677 | 3363 GtkTextIter start, end; |
3364 | |
3365 if (imhtml->edit.backcolor != NULL) | |
3366 g_free(imhtml->edit.backcolor); | |
3367 | |
8429 | 3368 if (color) { |
8677 | 3369 imhtml->edit.backcolor = g_strdup(color); |
3370 | |
3371 if (imhtml->wbfo) { | |
3372 gtk_text_buffer_get_bounds(imhtml->text_buffer, &start, &end); | |
3373 remove_font_backcolor(imhtml, &start, &end, TRUE); | |
3374 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3375 find_font_backcolor_tag(imhtml, imhtml->edit.backcolor), &start, &end); | |
3376 } else if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3377 remove_font_backcolor(imhtml, &start, &end, FALSE); | |
3378 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3379 find_font_backcolor_tag(imhtml, | |
3380 imhtml->edit.backcolor), &start, &end); | |
3381 } | |
8061 | 3382 } else { |
3383 imhtml->edit.backcolor = NULL; | |
3384 } | |
8677 | 3385 |
8061 | 3386 return imhtml->edit.backcolor != NULL; |
3387 } | |
3388 | |
3389 gboolean gtk_imhtml_toggle_fontface(GtkIMHtml *imhtml, const char *face) | |
3390 { | |
8677 | 3391 GtkTextIter start, end; |
3392 | |
3393 if (imhtml->edit.fontface != NULL) | |
3394 g_free(imhtml->edit.fontface); | |
3395 | |
8429 | 3396 if (face) { |
8677 | 3397 imhtml->edit.fontface = g_strdup(face); |
3398 | |
3399 if (imhtml->wbfo) { | |
3400 gtk_text_buffer_get_bounds(imhtml->text_buffer, &start, &end); | |
3401 remove_font_face(imhtml, &start, &end, TRUE); | |
3402 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3403 find_font_face_tag(imhtml, imhtml->edit.fontface), &start, &end); | |
3404 } else if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3405 remove_font_face(imhtml, &start, &end, FALSE); | |
3406 gtk_text_buffer_apply_tag(imhtml->text_buffer, | |
3407 find_font_face_tag(imhtml, imhtml->edit.fontface), | |
3408 &start, &end); | |
3409 } | |
8061 | 3410 } else { |
3411 imhtml->edit.fontface = NULL; | |
3412 } | |
8677 | 3413 |
8061 | 3414 return imhtml->edit.fontface != NULL; |
3415 } | |
3416 | |
8677 | 3417 void gtk_imhtml_toggle_link(GtkIMHtml *imhtml, const char *url) |
8061 | 3418 { |
8677 | 3419 GtkTextIter start, end; |
3420 GtkTextTag *linktag; | |
3421 static guint linkno = 0; | |
3422 gchar str[48]; | |
3423 | |
3424 imhtml->edit.link = NULL; | |
3425 | |
3426 | |
3427 | |
3428 if (url) { | |
3429 g_snprintf(str, sizeof(str), "LINK %d", linkno++); | |
3430 str[47] = '\0'; | |
3431 | |
3432 imhtml->edit.link = linktag = gtk_text_buffer_create_tag(imhtml->text_buffer, str, "foreground", "blue", "underline", PANGO_UNDERLINE_SINGLE, NULL); | |
3433 g_object_set_data_full(G_OBJECT(linktag), "link_url", g_strdup(url), g_free); | |
3434 g_signal_connect(G_OBJECT(linktag), "event", G_CALLBACK(tag_event), NULL); | |
3435 | |
3436 if (imhtml->editable && gtk_text_buffer_get_selection_bounds(imhtml->text_buffer, &start, &end)) { | |
3437 remove_font_link(imhtml, &start, &end, FALSE); | |
3438 gtk_text_buffer_apply_tag(imhtml->text_buffer, linktag, &start, &end); | |
3439 } | |
3440 } | |
3441 } | |
3442 | |
3443 void gtk_imhtml_insert_link(GtkIMHtml *imhtml, GtkTextMark *mark, const char *url, const char *text) | |
3444 { | |
8061 | 3445 GtkTextIter iter; |
8677 | 3446 |
3447 gtk_imhtml_toggle_link(imhtml, url); | |
8061 | 3448 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, mark); |
8677 | 3449 gtk_text_buffer_insert(imhtml->text_buffer, &iter, text, -1); |
3450 gtk_imhtml_toggle_link(imhtml, NULL); | |
8061 | 3451 } |
3452 | |
3453 void gtk_imhtml_insert_smiley(GtkIMHtml *imhtml, const char *sml, char *smiley) | |
3454 { | |
8677 | 3455 GtkTextMark *mark; |
8061 | 3456 GtkTextIter iter; |
8677 | 3457 |
3458 mark = gtk_text_buffer_get_insert(imhtml->text_buffer); | |
3459 | |
3460 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &iter, mark); | |
3461 gtk_imhtml_insert_smiley_at_iter(imhtml, sml, smiley, &iter); | |
3462 } | |
3463 | |
3464 void gtk_imhtml_insert_smiley_at_iter(GtkIMHtml *imhtml, const char *sml, char *smiley, GtkTextIter *iter) | |
3465 { | |
8061 | 3466 GdkPixbuf *pixbuf = NULL; |
3467 GdkPixbufAnimation *annipixbuf = NULL; | |
3468 GtkWidget *icon = NULL; | |
3469 GtkTextChildAnchor *anchor; | |
8505 | 3470 char *unescaped = gaim_unescape_html(smiley); |
8061 | 3471 |
8677 | 3472 anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); |
8698 | 3473 g_object_set_data_full(G_OBJECT(anchor), "gtkimhtml_plaintext", unescaped, g_free); |
3474 g_object_set_data_full(G_OBJECT(anchor), "gtkimhtml_htmltext", g_strdup(smiley), g_free); | |
8505 | 3475 |
3476 annipixbuf = gtk_smiley_tree_image(imhtml, sml, unescaped); | |
8061 | 3477 if(annipixbuf) { |
3478 if(gdk_pixbuf_animation_is_static_image(annipixbuf)) { | |
3479 pixbuf = gdk_pixbuf_animation_get_static_image(annipixbuf); | |
3480 if(pixbuf) | |
3481 icon = gtk_image_new_from_pixbuf(pixbuf); | |
3482 } else { | |
3483 icon = gtk_image_new_from_animation(annipixbuf); | |
3484 } | |
3485 } | |
3486 | |
3487 if (icon) { | |
3488 gtk_widget_show(icon); | |
3489 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), icon, anchor); | |
3490 } | |
3491 } | |
3492 | |
8677 | 3493 static const gchar *tag_to_html_start(GtkTextTag *tag) |
8061 | 3494 { |
8677 | 3495 const gchar *name; |
3496 static gchar buf[1024]; | |
3497 | |
3498 name = tag->name; | |
3499 g_return_val_if_fail(name != NULL, ""); | |
3500 | |
3501 if (strcmp(name, "BOLD") == 0) { | |
3502 return "<b>"; | |
3503 } else if (strcmp(name, "ITALICS") == 0) { | |
3504 return "<i>"; | |
3505 } else if (strcmp(name, "UNDERLINE") == 0) { | |
3506 return "<u>"; | |
3507 } else if (strncmp(name, "LINK ", 5) == 0) { | |
3508 char *tmp = g_object_get_data(G_OBJECT(tag), "link_url"); | |
3509 if (tmp) { | |
3510 g_snprintf(buf, sizeof(buf), "<a href=\"%s\">", tmp); | |
3511 buf[sizeof(buf)-1] = '\0'; | |
3512 return buf; | |
3513 } else { | |
3514 return ""; | |
3515 } | |
3516 } else if (strncmp(name, "FORECOLOR ", 10) == 0) { | |
3517 g_snprintf(buf, sizeof(buf), "<font color=\"%s\">", &name[10]); | |
3518 return buf; | |
3519 } else if (strncmp(name, "BACKCOLOR ", 10) == 0) { | |
3520 g_snprintf(buf, sizeof(buf), "<font back=\"%s\">", &name[10]); | |
3521 return buf; | |
3522 } else if (strncmp(name, "FONT FACE ", 10) == 0) { | |
3523 g_snprintf(buf, sizeof(buf), "<font face=\"%s\">", &name[10]); | |
3524 return buf; | |
3525 } else if (strncmp(name, "FONT SIZE ", 10) == 0) { | |
3526 g_snprintf(buf, sizeof(buf), "<font size=\"%s\">", &name[10]); | |
3527 return buf; | |
3528 } else { | |
3529 return ""; | |
3530 } | |
8061 | 3531 } |
3532 | |
8677 | 3533 static const gchar *tag_to_html_end(GtkTextTag *tag) |
8061 | 3534 { |
8677 | 3535 const gchar *name; |
3536 | |
3537 name = tag->name; | |
3538 g_return_val_if_fail(name != NULL, ""); | |
3539 | |
3540 if (strcmp(name, "BOLD") == 0) { | |
3541 return "</b>"; | |
3542 } else if (strcmp(name, "ITALICS") == 0) { | |
3543 return "</i>"; | |
3544 } else if (strcmp(name, "UNDERLINE") == 0) { | |
3545 return "</u>"; | |
3546 } else if (strncmp(name, "LINK ", 5) == 0) { | |
3547 return "</a>"; | |
3548 } else if (strncmp(name, "FORECOLOR ", 10) == 0) { | |
3549 return "</font>"; | |
3550 } else if (strncmp(name, "BACKCOLOR ", 10) == 0) { | |
3551 return "</font>"; | |
3552 } else if (strncmp(name, "FONT FACE ", 10) == 0) { | |
3553 return "</font>"; | |
3554 } else if (strncmp(name, "FONT SIZE ", 10) == 0) { | |
3555 return "</font>"; | |
3556 } else { | |
3557 return ""; | |
3558 } | |
3559 } | |
3560 | |
3561 static gboolean tag_ends_here(GtkTextTag *tag, GtkTextIter *iter, GtkTextIter *niter) | |
3562 { | |
3563 return ((gtk_text_iter_has_tag(iter, GTK_TEXT_TAG(tag)) && | |
3564 !gtk_text_iter_has_tag(niter, GTK_TEXT_TAG(tag))) || | |
3565 gtk_text_iter_is_end(niter)); | |
8061 | 3566 } |
3567 | |
3568 /* Basic notion here: traverse through the text buffer one-by-one, non-character elements, such | |
3569 * as smileys and IM images are represented by the Unicode "unknown" character. Handle them. Else | |
8677 | 3570 * check for tags that are toggled on, insert their html form, and push them on the queue. Then insert |
3571 * the actual text. Then check for tags that are toggled off and insert them, after checking the queue. | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8729
diff
changeset
|
3572 * Finally, replace <, >, &, and " with their HTML equivalent. |
8677 | 3573 */ |
8061 | 3574 char *gtk_imhtml_get_markup_range(GtkIMHtml *imhtml, GtkTextIter *start, GtkTextIter *end) |
3575 { | |
3576 gunichar c; | |
8677 | 3577 GtkTextIter iter, nextiter; |
8061 | 3578 GString *str = g_string_new(""); |
8677 | 3579 GSList *tags, *sl; |
3580 GQueue *q, *r; | |
3581 GtkTextTag *tag; | |
3582 | |
3583 q = g_queue_new(); | |
3584 r = g_queue_new(); | |
3585 | |
8061 | 3586 |
3587 gtk_text_iter_order(start, end); | |
8677 | 3588 nextiter = iter = *start; |
3589 gtk_text_iter_forward_char(&nextiter); | |
3590 | |
3591 /* First add the tags that are already in progress */ | |
3592 tags = gtk_text_iter_get_tags(start); | |
3593 | |
3594 for (sl = tags; sl; sl = sl->next) { | |
3595 tag = sl->data; | |
3596 if (!gtk_text_iter_toggles_tag(start, GTK_TEXT_TAG(tag))) { | |
3597 g_string_append(str, tag_to_html_start(GTK_TEXT_TAG(tag))); | |
3598 g_queue_push_tail(q, tag); | |
8061 | 3599 } |
3600 } | |
8677 | 3601 g_slist_free(tags); |
8061 | 3602 |
3603 while ((c = gtk_text_iter_get_char(&iter)) != 0 && !gtk_text_iter_equal(&iter, end)) { | |
8677 | 3604 |
3605 tags = gtk_text_iter_get_tags(&iter); | |
3606 | |
3607 for (sl = tags; sl; sl = sl->next) { | |
3608 tag = sl->data; | |
3609 if (gtk_text_iter_begins_tag(&iter, GTK_TEXT_TAG(tag))) { | |
3610 g_string_append(str, tag_to_html_start(GTK_TEXT_TAG(tag))); | |
3611 g_queue_push_tail(q, tag); | |
3612 } | |
3613 } | |
3614 | |
3615 | |
8061 | 3616 if (c == 0xFFFC) { |
3617 GtkTextChildAnchor* anchor = gtk_text_iter_get_child_anchor(&iter); | |
8698 | 3618 char *text = NULL; |
3619 if (anchor) | |
3620 text = g_object_get_data(G_OBJECT(anchor), "gtkimhtml_htmltext"); | |
3621 if (text) | |
3622 str = g_string_append(str, text); | |
8677 | 3623 } else if (c == '<') { |
3624 str = g_string_append(str, "<"); | |
3625 } else if (c == '>') { | |
3626 str = g_string_append(str, ">"); | |
3627 } else if (c == '&') { | |
3628 str = g_string_append(str, "&"); | |
3629 } else if (c == '"') { | |
3630 str = g_string_append(str, """); | |
3631 } else if (c == '\n') { | |
3632 str = g_string_append(str, "<br>"); | |
8061 | 3633 } else { |
8677 | 3634 str = g_string_append_unichar(str, c); |
3635 } | |
3636 | |
3637 tags = g_slist_reverse(tags); | |
3638 for (sl = tags; sl; sl = sl->next) { | |
3639 tag = sl->data; | |
3640 if (tag_ends_here(tag, &iter, &nextiter)) { | |
3641 | |
3642 GtkTextTag *tmp; | |
3643 | |
3644 while ((tmp = g_queue_pop_tail(q)) != tag) { | |
3645 if (tmp == NULL) | |
3646 break; | |
3647 | |
3648 if (!tag_ends_here(tmp, &iter, &nextiter)) | |
3649 g_queue_push_tail(r, tmp); | |
3650 g_string_append(str, tag_to_html_end(GTK_TEXT_TAG(tmp))); | |
3651 } | |
3652 | |
3653 if (tmp == NULL) | |
3654 gaim_debug_warning("gtkimhtml", "empty queue, more closing tags than open tags!\n"); | |
3655 else | |
3656 g_string_append(str, tag_to_html_end(GTK_TEXT_TAG(tag))); | |
3657 | |
3658 while ((tmp = g_queue_pop_head(r))) { | |
3659 g_string_append(str, tag_to_html_start(GTK_TEXT_TAG(tmp))); | |
3660 g_queue_push_tail(q, tmp); | |
8061 | 3661 } |
3662 } | |
3663 } | |
8677 | 3664 |
3665 g_slist_free(tags); | |
8061 | 3666 gtk_text_iter_forward_char(&iter); |
8677 | 3667 gtk_text_iter_forward_char(&nextiter); |
8061 | 3668 } |
8677 | 3669 |
3670 while ((tag = g_queue_pop_tail(q))) | |
3671 g_string_append(str, tag_to_html_end(GTK_TEXT_TAG(tag))); | |
3672 | |
3673 g_queue_free(q); | |
3674 g_queue_free(r); | |
8061 | 3675 return g_string_free(str, FALSE); |
3676 } | |
3677 | |
8698 | 3678 void gtk_imhtml_close_tags(GtkIMHtml *imhtml, GtkTextIter *iter) |
8061 | 3679 { |
3680 if (imhtml->edit.bold) | |
3681 gtk_imhtml_toggle_bold(imhtml); | |
3682 | |
3683 if (imhtml->edit.italic) | |
3684 gtk_imhtml_toggle_italic(imhtml); | |
3685 | |
3686 if (imhtml->edit.underline) | |
3687 gtk_imhtml_toggle_underline(imhtml); | |
3688 | |
3689 if (imhtml->edit.forecolor) | |
3690 gtk_imhtml_toggle_forecolor(imhtml, NULL); | |
3691 | |
3692 if (imhtml->edit.backcolor) | |
3693 gtk_imhtml_toggle_backcolor(imhtml, NULL); | |
3694 | |
3695 if (imhtml->edit.fontface) | |
3696 gtk_imhtml_toggle_fontface(imhtml, NULL); | |
3697 | |
8677 | 3698 imhtml->edit.fontsize = 0; |
3699 | |
8719 | 3700 if (imhtml->edit.link) |
3701 gtk_imhtml_toggle_link(imhtml, NULL); | |
3702 | |
8698 | 3703 gtk_text_buffer_remove_all_tags(imhtml->text_buffer, iter, iter); |
8061 | 3704 |
3705 } | |
3706 | |
3707 char *gtk_imhtml_get_markup(GtkIMHtml *imhtml) | |
3708 { | |
3709 GtkTextIter start, end; | |
3710 | |
3711 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); | |
3712 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
3713 return gtk_imhtml_get_markup_range(imhtml, &start, &end); | |
3714 } | |
3715 | |
8677 | 3716 char **gtk_imhtml_get_markup_lines(GtkIMHtml *imhtml) |
3717 { | |
3718 int i, j, lines; | |
3719 GtkTextIter start, end; | |
3720 char **ret; | |
3721 | |
3722 lines = gtk_text_buffer_get_line_count(imhtml->text_buffer); | |
3723 ret = g_new0(char *, lines + 1); | |
3724 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); | |
3725 end = start; | |
3726 gtk_text_iter_forward_to_line_end(&end); | |
3727 | |
3728 for (i = 0, j = 0; i < lines; i++) { | |
3729 ret[j] = gtk_imhtml_get_markup_range(imhtml, &start, &end); | |
3730 if (ret[j] != NULL) | |
3731 j++; | |
3732 gtk_text_iter_forward_line(&start); | |
3733 end = start; | |
3734 gtk_text_iter_forward_to_line_end(&end); | |
3735 } | |
3736 | |
3737 return ret; | |
3738 } | |
3739 | |
3740 char *gtk_imhtml_get_text(GtkIMHtml *imhtml, GtkTextIter *start, GtkTextIter *stop) | |
8061 | 3741 { |
8519 | 3742 GString *str = g_string_new(""); |
3743 GtkTextIter iter, end; | |
3744 gunichar c; | |
3745 | |
8677 | 3746 if (start == NULL) |
3747 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &iter); | |
3748 else | |
3749 iter = *start; | |
3750 | |
3751 if (stop == NULL) | |
3752 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
3753 else | |
3754 end = *stop; | |
3755 | |
3756 gtk_text_iter_order(&iter, &end); | |
8519 | 3757 |
3758 while ((c = gtk_text_iter_get_char(&iter)) != 0 && !gtk_text_iter_equal(&iter, &end)) { | |
3759 if (c == 0xFFFC) { | |
8677 | 3760 GtkTextChildAnchor* anchor; |
3761 char *text = NULL; | |
3762 | |
3763 anchor = gtk_text_iter_get_child_anchor(&iter); | |
3764 if (anchor) | |
8698 | 3765 text = g_object_get_data(G_OBJECT(anchor), "gtkimhtml_plaintext"); |
8677 | 3766 if (text) |
3767 str = g_string_append(str, text); | |
8519 | 3768 } else { |
3769 g_string_append_unichar(str, c); | |
3770 } | |
3771 gtk_text_iter_forward_char(&iter); | |
3772 } | |
3773 | |
3774 return g_string_free(str, FALSE); | |
8061 | 3775 } |