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