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