Mercurial > pidgin
annotate src/gtkimhtml.c @ 5034:4691c5936c01
[gaim-migrate @ 5377]
More to recompile!
Put some special Doxygen group tags in the documentation. I'm basically
organizing it so when you do a make docs, you get a little Modules page
showing "Gaim Core" and "GTK+ User Interface." This should make it easy for
us to show which files belong in either category for now.
This is kind of in preparation for all the core/ui split stuff I hope to
start soon.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sat, 05 Apr 2003 10:45:32 +0000 |
parents | 29c87c6e75d9 |
children | 44945824ba60 |
rev | line source |
---|---|
1428 | 1 /* |
2 * GtkIMHtml | |
3 * | |
4 * Copyright (C) 2000, Eric Warmenhoven <warmenhoven@yahoo.com> | |
5 * | |
6 * This program is free software; you can redistribute it and/or modify | |
7 * under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 */ | |
21 | |
2541
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
22 #ifdef HAVE_CONFIG_H |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
23 #include <config.h> |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
24 #endif |
1428 | 25 #include "gtkimhtml.h" |
26 #include <gtk/gtk.h> | |
4895 | 27 #include <glib/gerror.h> |
4046 | 28 #include <gdk/gdkkeysyms.h> |
1428 | 29 #include <string.h> |
30 #include <ctype.h> | |
31 #include <stdio.h> | |
4629 | 32 #include <stdlib.h> |
1428 | 33 #include <math.h> |
2541
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
34 #ifdef HAVE_LANGINFO_CODESET |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
35 #include <langinfo.h> |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
36 #include <locale.h> |
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2365
diff
changeset
|
37 #endif |
1428 | 38 |
4417 | 39 #ifdef ENABLE_NLS |
40 # include <libintl.h> | |
41 # define _(x) gettext(x) | |
42 # ifdef gettext_noop | |
43 # define N_(String) gettext_noop (String) | |
44 # else | |
45 # define N_(String) (String) | |
46 # endif | |
47 #else | |
48 # define N_(String) (String) | |
49 # define _(x) (x) | |
50 #endif | |
51 | |
4735 | 52 #include <pango/pango-font.h> |
53 | |
54 #define TOOLTIP_TIMEOUT 500 | |
55 | |
4764 | 56 static gboolean gtk_motion_event_notify(GtkWidget *imhtml, GdkEventMotion *event, gpointer user_data); |
4944 | 57 static gboolean gtk_leave_event_notify(GtkWidget *imhtml, GdkEventCrossing *event, gpointer user_data); |
4764 | 58 |
4947 | 59 static gboolean gtk_size_allocate_cb(GtkIMHtml *widget, GtkAllocation *alloc, gpointer user_data); |
5012 | 60 |
61 static gboolean gaim_im_image_clicked(GtkWidget *w, GdkEvent *event, gaim_im_image *image); | |
62 | |
4895 | 63 static gint gtk_imhtml_tip (gpointer data); |
4764 | 64 |
4735 | 65 |
3922 | 66 /* POINT_SIZE converts from AIM font sizes to point sizes. It probably should be redone in such a |
67 * way that it base the sizes off the default font size rather than using arbitrary font sizes. */ | |
68 #define MAX_FONT_SIZE 7 | |
69 #define POINT_SIZE(x) (_point_sizes [MIN ((x), MAX_FONT_SIZE) - 1]) | |
3928 | 70 static gint _point_sizes [] = { 8, 10, 12, 14, 20, 30, 40 }; |
2349
60c716c32c40
[gaim-migrate @ 2362]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2348
diff
changeset
|
71 |
3922 | 72 /* The four elements present in a <FONT> tag contained in a struct */ |
73 typedef struct _FontDetail FontDetail; | |
1428 | 74 struct _FontDetail { |
75 gushort size; | |
76 gchar *face; | |
3922 | 77 gchar *fore; |
78 gchar *back; | |
4032 | 79 gchar *sml; |
1428 | 80 }; |
81 | |
4032 | 82 struct _GtkSmileyTree { |
83 GString *values; | |
84 GtkSmileyTree **children; | |
4263 | 85 GtkIMHtmlSmiley *image; |
4032 | 86 }; |
87 | |
88 static GtkSmileyTree* | |
89 gtk_smiley_tree_new () | |
90 { | |
91 return g_new0 (GtkSmileyTree, 1); | |
92 } | |
93 | |
94 static void | |
95 gtk_smiley_tree_insert (GtkSmileyTree *tree, | |
4263 | 96 GtkIMHtmlSmiley *smiley) |
4032 | 97 { |
98 GtkSmileyTree *t = tree; | |
4263 | 99 const gchar *x = smiley->smile; |
4032 | 100 |
101 if (!strlen (x)) | |
102 return; | |
103 | |
104 while (*x) { | |
105 gchar *pos; | |
106 gint index; | |
107 | |
108 if (!t->values) | |
109 t->values = g_string_new (""); | |
110 | |
111 pos = strchr (t->values->str, *x); | |
112 if (!pos) { | |
113 t->values = g_string_append_c (t->values, *x); | |
114 index = t->values->len - 1; | |
115 t->children = g_realloc (t->children, t->values->len * sizeof (GtkSmileyTree *)); | |
116 t->children [index] = g_new0 (GtkSmileyTree, 1); | |
117 } else | |
118 index = (int) pos - (int) t->values->str; | |
119 | |
120 t = t->children [index]; | |
121 | |
122 x++; | |
123 } | |
124 | |
4263 | 125 t->image = smiley; |
4032 | 126 } |
4041 | 127 |
4263 | 128 |
4264 | 129 void gtk_smiley_tree_destroy (GtkSmileyTree *tree) |
4032 | 130 { |
131 GSList *list = g_slist_append (NULL, tree); | |
132 | |
133 while (list) { | |
134 GtkSmileyTree *t = list->data; | |
135 gint i; | |
136 list = g_slist_remove(list, t); | |
137 if (t->values) { | |
138 for (i = 0; i < t->values->len; i++) | |
139 list = g_slist_append (list, t->children [i]); | |
140 g_string_free (t->values, TRUE); | |
141 g_free (t->children); | |
142 } | |
143 g_free (t); | |
144 } | |
145 } | |
146 | |
4263 | 147 |
4032 | 148 static GtkTextViewClass *parent_class = NULL; |
149 | |
150 | |
3922 | 151 /* GtkIMHtml has one signal--URL_CLICKED */ |
1428 | 152 enum { |
153 URL_CLICKED, | |
154 LAST_SIGNAL | |
155 }; | |
156 static guint signals [LAST_SIGNAL] = { 0 }; | |
157 | |
4032 | 158 static void |
159 gtk_imhtml_finalize (GObject *object) | |
160 { | |
161 GtkIMHtml *imhtml = GTK_IMHTML(object); | |
4895 | 162 GList *scalables; |
163 | |
4138 | 164 g_hash_table_destroy(imhtml->smiley_data); |
4032 | 165 gtk_smiley_tree_destroy(imhtml->default_smilies); |
4138 | 166 gdk_cursor_unref(imhtml->hand_cursor); |
167 gdk_cursor_unref(imhtml->arrow_cursor); | |
4735 | 168 if(imhtml->tip_window){ |
169 gtk_widget_destroy(imhtml->tip_window); | |
170 } | |
171 if(imhtml->tip_timer) | |
172 gtk_timeout_remove(imhtml->tip_timer); | |
173 | |
4895 | 174 for(scalables = imhtml->scalables; scalables; scalables = scalables->next) { |
175 GtkIMHtmlScalable *scale = GTK_IMHTML_SCALABLE(scalables->data); | |
176 scale->free(scale); | |
177 } | |
178 | |
179 g_list_free(imhtml->scalables); | |
4032 | 180 G_OBJECT_CLASS(parent_class)->finalize (object); |
181 } | |
1428 | 182 |
3922 | 183 /* Boring GTK stuff */ |
184 static void gtk_imhtml_class_init (GtkIMHtmlClass *class) | |
1428 | 185 { |
3922 | 186 GtkObjectClass *object_class; |
4032 | 187 GObjectClass *gobject_class; |
3922 | 188 object_class = (GtkObjectClass*) class; |
4032 | 189 gobject_class = (GObjectClass*) class; |
190 parent_class = gtk_type_class(GTK_TYPE_TEXT_VIEW); | |
4417 | 191 signals[URL_CLICKED] = g_signal_new("url_clicked", |
192 G_TYPE_FROM_CLASS(gobject_class), | |
193 G_SIGNAL_RUN_FIRST, | |
194 G_STRUCT_OFFSET(GtkIMHtmlClass, url_clicked), | |
195 NULL, | |
196 0, | |
197 g_cclosure_marshal_VOID__POINTER, | |
198 G_TYPE_NONE, 1, | |
199 G_TYPE_POINTER); | |
4032 | 200 gobject_class->finalize = gtk_imhtml_finalize; |
1428 | 201 } |
202 | |
3922 | 203 static void gtk_imhtml_init (GtkIMHtml *imhtml) |
1428 | 204 { |
3922 | 205 GtkTextIter iter; |
206 imhtml->text_buffer = gtk_text_buffer_new(NULL); | |
207 gtk_text_buffer_get_end_iter (imhtml->text_buffer, &iter); | |
208 imhtml->end = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, FALSE); | |
209 gtk_text_view_set_buffer(GTK_TEXT_VIEW(imhtml), imhtml->text_buffer); | |
210 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(imhtml), GTK_WRAP_WORD); | |
211 gtk_text_view_set_editable(GTK_TEXT_VIEW(imhtml), FALSE); | |
212 gtk_text_view_set_pixels_below_lines(GTK_TEXT_VIEW(imhtml), 5); | |
213 gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(imhtml), FALSE); | |
214 /*gtk_text_view_set_justification(GTK_TEXT_VIEW(imhtml), GTK_JUSTIFY_FILL);*/ | |
3465 | 215 |
3922 | 216 /* These tags will be used often and can be reused--we create them on init and then apply them by name |
217 * other tags (color, size, face, etc.) will have to be created and applied dynamically */ | |
218 gtk_text_buffer_create_tag(imhtml->text_buffer, "BOLD", "weight", PANGO_WEIGHT_BOLD, NULL); | |
219 gtk_text_buffer_create_tag(imhtml->text_buffer, "ITALICS", "style", PANGO_STYLE_ITALIC, NULL); | |
220 gtk_text_buffer_create_tag(imhtml->text_buffer, "UNDERLINE", "underline", PANGO_UNDERLINE_SINGLE, NULL); | |
221 gtk_text_buffer_create_tag(imhtml->text_buffer, "STRIKE", "strikethrough", TRUE, NULL); | |
222 gtk_text_buffer_create_tag(imhtml->text_buffer, "SUB", "rise", -5000, NULL); | |
223 gtk_text_buffer_create_tag(imhtml->text_buffer, "SUP", "rise", 5000, NULL); | |
224 gtk_text_buffer_create_tag(imhtml->text_buffer, "PRE", "family", "Monospace", NULL); | |
3465 | 225 |
3922 | 226 /* When hovering over a link, we show the hand cursor--elsewhere we show the plain ol' pointer cursor */ |
227 imhtml->hand_cursor = gdk_cursor_new (GDK_HAND2); | |
228 imhtml->arrow_cursor = gdk_cursor_new (GDK_LEFT_PTR); | |
2993 | 229 |
4253 | 230 imhtml->show_smileys = TRUE; |
231 imhtml->show_comments = TRUE; | |
232 | |
4892 | 233 imhtml->smiley_data = g_hash_table_new_full(g_str_hash, g_str_equal, |
4902 | 234 g_free, (GDestroyNotify)gtk_smiley_tree_destroy); |
4032 | 235 imhtml->default_smilies = gtk_smiley_tree_new(); |
4735 | 236 |
4944 | 237 g_signal_connect(G_OBJECT(imhtml), "size-allocate", G_CALLBACK(gtk_size_allocate_cb), NULL); |
4735 | 238 g_signal_connect(G_OBJECT(imhtml), "motion-notify-event", G_CALLBACK(gtk_motion_event_notify), NULL); |
4944 | 239 g_signal_connect(G_OBJECT(imhtml), "leave-notify-event", G_CALLBACK(gtk_leave_event_notify), NULL); |
240 gtk_widget_add_events(GTK_WIDGET(imhtml), GDK_LEAVE_NOTIFY_MASK); | |
4735 | 241 |
242 imhtml->tip = NULL; | |
243 imhtml->tip_timer = 0; | |
244 imhtml->tip_window = NULL; | |
4895 | 245 |
246 imhtml->scalables = NULL; | |
2993 | 247 } |
248 | |
3922 | 249 GtkWidget *gtk_imhtml_new(void *a, void *b) |
1428 | 250 { |
4635 | 251 return GTK_WIDGET(g_object_new(gtk_imhtml_get_type(), NULL)); |
1428 | 252 } |
253 | |
4635 | 254 GType gtk_imhtml_get_type() |
1428 | 255 { |
4635 | 256 static GType imhtml_type = 0; |
1428 | 257 |
258 if (!imhtml_type) { | |
4635 | 259 static const GTypeInfo imhtml_info = { |
260 sizeof(GtkIMHtmlClass), | |
261 NULL, | |
262 NULL, | |
263 (GClassInitFunc) gtk_imhtml_class_init, | |
264 NULL, | |
265 NULL, | |
1428 | 266 sizeof (GtkIMHtml), |
4635 | 267 0, |
268 (GInstanceInitFunc) gtk_imhtml_init | |
1428 | 269 }; |
4635 | 270 |
271 imhtml_type = g_type_register_static(gtk_text_view_get_type(), | |
272 "GtkIMHtml", &imhtml_info, 0); | |
1428 | 273 } |
274 | |
275 return imhtml_type; | |
276 } | |
277 | |
4417 | 278 struct url_data { |
279 GObject *object; | |
280 gchar *url; | |
281 }; | |
282 | |
283 static void url_open(GtkWidget *w, struct url_data *data) { | |
284 if(!data) return; | |
285 | |
286 g_signal_emit(data->object, signals[URL_CLICKED], 0, data->url); | |
287 | |
288 g_object_unref(data->object); | |
289 g_free(data->url); | |
290 g_free(data); | |
291 } | |
292 static void url_copy(GtkWidget *w, gchar *url) { | |
293 GtkClipboard *clipboard; | |
294 | |
4419 | 295 clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD); |
4417 | 296 gtk_clipboard_set_text(clipboard, url, -1); |
297 } | |
298 | |
299 /* The callback for an event on a link tag. */ | |
300 gboolean tag_event(GtkTextTag *tag, GObject *arg1, GdkEvent *event, GtkTextIter *arg2, char *url) { | |
301 GdkEventButton *event_button = (GdkEventButton *) event; | |
302 | |
3922 | 303 if (event->type == GDK_BUTTON_RELEASE) { |
4417 | 304 if (event_button->button == 1) { |
305 GtkTextIter start, end; | |
306 /* we shouldn't open a URL if the user has selected something: */ | |
307 gtk_text_buffer_get_selection_bounds( | |
308 gtk_text_iter_get_buffer(arg2), &start, &end); | |
309 if(gtk_text_iter_get_offset(&start) != | |
310 gtk_text_iter_get_offset(&end)) | |
311 return FALSE; | |
312 | |
313 /* A link was clicked--we emit the "url_clicked" signal | |
314 * with the URL as the argument */ | |
315 g_signal_emit(arg1, signals[URL_CLICKED], 0, url); | |
316 return FALSE; | |
317 } else if(event_button->button == 3) { | |
4745 | 318 GtkWidget *img, *item, *menu; |
4417 | 319 struct url_data *tempdata = g_new(struct url_data, 1); |
320 tempdata->object = g_object_ref(arg1); | |
321 tempdata->url = g_strdup(url); | |
4745 | 322 |
4417 | 323 menu = gtk_menu_new(); |
4745 | 324 |
4417 | 325 /* buttons and such */ |
326 img = gtk_image_new_from_stock(GTK_STOCK_COPY, GTK_ICON_SIZE_MENU); | |
4420 | 327 item = gtk_image_menu_item_new_with_mnemonic(_("_Copy Link Location")); |
4417 | 328 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); |
329 g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(url_copy), | |
330 url); | |
331 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); | |
332 | |
333 img = gtk_image_new_from_stock(GTK_STOCK_JUMP_TO, GTK_ICON_SIZE_MENU); | |
4420 | 334 item = gtk_image_menu_item_new_with_mnemonic(_("_Open Link in Browser")); |
4417 | 335 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); |
336 g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(url_open), | |
337 tempdata); | |
338 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); | |
4756 | 339 |
4417 | 340 gtk_widget_show_all(menu); |
4756 | 341 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, |
342 event_button->button, event_button->time); | |
4745 | 343 |
4417 | 344 return TRUE; |
345 } | |
1428 | 346 } |
4417 | 347 if(event->type == GDK_BUTTON_PRESS && event_button->button == 3) |
348 return TRUE; /* Clicking the right mouse button on a link shouldn't | |
349 be caught by the regular GtkTextView menu */ | |
350 else | |
351 return FALSE; /* Let clicks go through if we didn't catch anything */ | |
1428 | 352 } |
353 | |
4735 | 354 gboolean gtk_motion_event_notify(GtkWidget *imhtml, GdkEventMotion *event, gpointer data) |
355 { | |
356 GtkTextIter iter; | |
357 GdkWindow *win = event->window; | |
358 int x, y; | |
4740 | 359 char *tip = NULL; |
4735 | 360 GSList *tags = NULL, *templist = NULL; |
361 gdk_window_get_pointer(GTK_WIDGET(imhtml)->window, NULL, NULL, NULL); | |
362 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(imhtml), GTK_TEXT_WINDOW_WIDGET, | |
363 event->x, event->y, &x, &y); | |
364 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(imhtml), &iter, x, y); | |
365 tags = gtk_text_iter_get_tags(&iter); | |
366 | |
4740 | 367 templist = tags; |
368 while (templist) { | |
4735 | 369 GtkTextTag *tag = templist->data; |
4740 | 370 tip = g_object_get_data(G_OBJECT(tag), "link_url"); |
371 if (tip) | |
372 break; | |
373 templist = templist->next; | |
4735 | 374 } |
4740 | 375 |
376 if (GTK_IMHTML(imhtml)->tip) { | |
377 if ((tip == GTK_IMHTML(imhtml)->tip)) { | |
378 return FALSE; | |
379 } | |
380 /* We've left the cell. Remove the timeout and create a new one below */ | |
381 if (GTK_IMHTML(imhtml)->tip_window) { | |
382 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
383 GTK_IMHTML(imhtml)->tip_window = NULL; | |
384 } | |
385 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->arrow_cursor); | |
386 if (GTK_IMHTML(imhtml)->tip_timer) | |
387 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
388 GTK_IMHTML(imhtml)->tip_timer = 0; | |
389 } | |
390 | |
391 if(tip){ | |
4735 | 392 gdk_window_set_cursor(win, GTK_IMHTML(imhtml)->hand_cursor); |
4740 | 393 GTK_IMHTML(imhtml)->tip_timer = g_timeout_add (TOOLTIP_TIMEOUT, |
394 gtk_imhtml_tip, imhtml); | |
4735 | 395 } |
4740 | 396 |
397 GTK_IMHTML(imhtml)->tip = tip; | |
4735 | 398 g_slist_free(tags); |
399 return FALSE; | |
400 } | |
401 | |
4944 | 402 gboolean gtk_leave_event_notify(GtkWidget *imhtml, GdkEventCrossing *event, gpointer data) |
403 { | |
404 /* when leaving the widget, clear any current & pending tooltips and restore the cursor */ | |
405 if (GTK_IMHTML(imhtml)->tip_window) { | |
406 gtk_widget_destroy(GTK_IMHTML(imhtml)->tip_window); | |
407 GTK_IMHTML(imhtml)->tip_window = NULL; | |
408 } | |
409 if (GTK_IMHTML(imhtml)->tip_timer) { | |
410 g_source_remove(GTK_IMHTML(imhtml)->tip_timer); | |
411 GTK_IMHTML(imhtml)->tip_timer = 0; | |
412 } | |
413 gdk_window_set_cursor(event->window, GTK_IMHTML(imhtml)->arrow_cursor); | |
414 | |
415 /* propogate the event normally */ | |
416 return FALSE; | |
417 } | |
418 | |
4298 | 419 /* this isn't used yet |
4032 | 420 static void |
4263 | 421 gtk_smiley_tree_remove (GtkSmileyTree *tree, |
422 GtkIMHtmlSmiley *smiley) | |
4032 | 423 { |
424 GtkSmileyTree *t = tree; | |
4263 | 425 const gchar *x = smiley->smile; |
4032 | 426 gint len = 0; |
427 | |
428 while (*x) { | |
429 gchar *pos; | |
430 | |
431 if (!t->values) | |
432 return; | |
433 | |
434 pos = strchr (t->values->str, *x); | |
435 if (pos) | |
436 t = t->children [(int) pos - (int) t->values->str]; | |
437 else | |
438 return; | |
439 | |
440 x++; len++; | |
441 } | |
442 | |
4141
ccec4fde84f4
[gaim-migrate @ 4359]
Christian Hammond <chipx86@chipx86.com>
parents:
4140
diff
changeset
|
443 if (t->image) { |
4032 | 444 t->image = NULL; |
4141
ccec4fde84f4
[gaim-migrate @ 4359]
Christian Hammond <chipx86@chipx86.com>
parents:
4140
diff
changeset
|
445 } |
4032 | 446 } |
4298 | 447 */ |
448 | |
4032 | 449 |
450 static gint | |
451 gtk_smiley_tree_lookup (GtkSmileyTree *tree, | |
452 const gchar *text) | |
453 { | |
454 GtkSmileyTree *t = tree; | |
455 const gchar *x = text; | |
456 gint len = 0; | |
457 | |
458 while (*x) { | |
459 gchar *pos; | |
460 | |
461 if (!t->values) | |
462 break; | |
463 | |
464 pos = strchr (t->values->str, *x); | |
465 if (pos) | |
466 t = t->children [(int) pos - (int) t->values->str]; | |
467 else | |
468 break; | |
469 | |
470 x++; len++; | |
471 } | |
472 | |
473 if (t->image) | |
474 return len; | |
475 | |
476 return 0; | |
477 } | |
478 | |
479 void | |
4263 | 480 gtk_imhtml_associate_smiley (GtkIMHtml *imhtml, |
481 gchar *sml, | |
482 GtkIMHtmlSmiley *smiley) | |
4032 | 483 { |
484 GtkSmileyTree *tree; | |
485 g_return_if_fail (imhtml != NULL); | |
486 g_return_if_fail (GTK_IS_IMHTML (imhtml)); | |
4263 | 487 |
4032 | 488 if (sml == NULL) |
489 tree = imhtml->default_smilies; | |
490 else if ((tree = g_hash_table_lookup(imhtml->smiley_data, sml))) { | |
491 } else { | |
492 tree = gtk_smiley_tree_new(); | |
4892 | 493 g_hash_table_insert(imhtml->smiley_data, g_strdup(sml), tree); |
4032 | 494 } |
495 | |
4263 | 496 gtk_smiley_tree_insert (tree, smiley); |
4032 | 497 } |
498 | |
499 static gboolean | |
500 gtk_imhtml_is_smiley (GtkIMHtml *imhtml, | |
501 GSList *fonts, | |
502 const gchar *text, | |
503 gint *len) | |
504 { | |
505 GtkSmileyTree *tree; | |
506 FontDetail *font; | |
507 char *sml = NULL; | |
508 | |
509 if (fonts) { | |
510 font = fonts->data; | |
511 sml = font->sml; | |
512 } | |
513 | |
514 if (sml == NULL) | |
515 tree = imhtml->default_smilies; | |
516 else { | |
517 tree = g_hash_table_lookup(imhtml->smiley_data, sml); | |
518 } | |
519 if (tree == NULL) | |
520 return FALSE; | |
521 | |
522 *len = gtk_smiley_tree_lookup (tree, text); | |
523 return (*len > 0); | |
524 } | |
525 | |
4263 | 526 GdkPixbuf* |
4032 | 527 gtk_smiley_tree_image (GtkIMHtml *imhtml, |
528 const gchar *sml, | |
529 const gchar *text) | |
530 { | |
531 GtkSmileyTree *t; | |
532 const gchar *x = text; | |
533 if (sml == NULL) | |
534 t = imhtml->default_smilies; | |
535 else | |
536 t = g_hash_table_lookup(imhtml->smiley_data, sml); | |
537 | |
538 | |
539 if (t == NULL) | |
540 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
541 | |
542 while (*x) { | |
543 gchar *pos; | |
544 | |
545 if (!t->values) { | |
546 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
547 } | |
548 | |
549 pos = strchr (t->values->str, *x); | |
550 if (pos) { | |
551 t = t->children [(int) pos - (int) t->values->str]; | |
552 } else { | |
553 return sml ? gtk_smiley_tree_image(imhtml, NULL, text) : NULL; | |
554 } | |
555 x++; | |
556 } | |
557 | |
4263 | 558 if (!t->image->icon) |
559 t->image->icon = gdk_pixbuf_new_from_file(t->image->file, NULL); | |
560 | |
561 return t->image->icon; | |
4032 | 562 } |
4793 | 563 #define VALID_TAG(x) if (!g_ascii_strncasecmp (string, x ">", strlen (x ">"))) { \ |
3922 | 564 *tag = g_strndup (string, strlen (x)); \ |
565 *len = strlen (x) + 1; \ | |
566 return TRUE; \ | |
567 } \ | |
568 (*type)++ | |
1428 | 569 |
4793 | 570 #define VALID_OPT_TAG(x) if (!g_ascii_strncasecmp (string, x " ", strlen (x " "))) { \ |
3922 | 571 const gchar *c = string + strlen (x " "); \ |
572 gchar e = '"'; \ | |
573 gboolean quote = FALSE; \ | |
574 while (*c) { \ | |
575 if (*c == '"' || *c == '\'') { \ | |
576 if (quote && (*c == e)) \ | |
577 quote = !quote; \ | |
578 else if (!quote) { \ | |
579 quote = !quote; \ | |
580 e = *c; \ | |
581 } \ | |
582 } else if (!quote && (*c == '>')) \ | |
583 break; \ | |
584 c++; \ | |
585 } \ | |
586 if (*c) { \ | |
587 *tag = g_strndup (string, c - string); \ | |
588 *len = c - string + 1; \ | |
589 return TRUE; \ | |
590 } \ | |
591 } \ | |
592 (*type)++ | |
1428 | 593 |
594 | |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
595 static gboolean |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
596 gtk_imhtml_is_amp_escape (const gchar *string, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
597 gchar *replace, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
598 gint *length) |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
599 { |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
600 g_return_val_if_fail (string != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
601 g_return_val_if_fail (replace != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
602 g_return_val_if_fail (length != NULL, FALSE); |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
603 |
4793 | 604 if (!g_ascii_strncasecmp (string, "&", 5)) { |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
605 *replace = '&'; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
606 *length = 5; |
4793 | 607 } else if (!g_ascii_strncasecmp (string, "<", 4)) { |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
608 *replace = '<'; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
609 *length = 4; |
4793 | 610 } else if (!g_ascii_strncasecmp (string, ">", 4)) { |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
611 *replace = '>'; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
612 *length = 4; |
4793 | 613 } else if (!g_ascii_strncasecmp (string, " ", 6)) { |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
614 *replace = ' '; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
615 *length = 6; |
4793 | 616 } else if (!g_ascii_strncasecmp (string, "©", 6)) { |
3717
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3705
diff
changeset
|
617 *replace = '©'; /* was: '©' */ |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
618 *length = 6; |
4793 | 619 } else if (!g_ascii_strncasecmp (string, """, 6)) { |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
620 *replace = '\"'; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
621 *length = 6; |
4793 | 622 } else if (!g_ascii_strncasecmp (string, "®", 5)) { |
3717
988485669631
[gaim-migrate @ 3850]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3705
diff
changeset
|
623 *replace = '®'; /* was: '®' */ |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
624 *length = 5; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
625 } else if (*(string + 1) == '#') { |
2022
199ba82faacb
[gaim-migrate @ 2032]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2002
diff
changeset
|
626 guint pound = 0; |
3004 | 627 if ((sscanf (string, "&#%u;", £) == 1) && pound != 0) { |
1472
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
628 if (*(string + 3 + (gint)log10 (pound)) != ';') |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
629 return FALSE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
630 *replace = (gchar)pound; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
631 *length = 2; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
632 while (isdigit ((gint) string [*length])) (*length)++; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
633 if (string [*length] == ';') (*length)++; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
634 } else { |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
635 return FALSE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
636 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
637 } else { |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
638 return FALSE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
639 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
640 |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
641 return TRUE; |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
642 } |
be620a051d6d
[gaim-migrate @ 1482]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1463
diff
changeset
|
643 |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
644 static gboolean |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
645 gtk_imhtml_is_tag (const gchar *string, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
646 gchar **tag, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
647 gint *len, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
648 gint *type) |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
649 { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
650 *type = 1; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
651 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
652 if (!strchr (string, '>')) |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
653 return FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
654 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
655 VALID_TAG ("B"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
656 VALID_TAG ("BOLD"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
657 VALID_TAG ("/B"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
658 VALID_TAG ("/BOLD"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
659 VALID_TAG ("I"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
660 VALID_TAG ("ITALIC"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
661 VALID_TAG ("/I"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
662 VALID_TAG ("/ITALIC"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
663 VALID_TAG ("U"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
664 VALID_TAG ("UNDERLINE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
665 VALID_TAG ("/U"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
666 VALID_TAG ("/UNDERLINE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
667 VALID_TAG ("S"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
668 VALID_TAG ("STRIKE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
669 VALID_TAG ("/S"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
670 VALID_TAG ("/STRIKE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
671 VALID_TAG ("SUB"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
672 VALID_TAG ("/SUB"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
673 VALID_TAG ("SUP"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
674 VALID_TAG ("/SUP"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
675 VALID_TAG ("PRE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
676 VALID_TAG ("/PRE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
677 VALID_TAG ("TITLE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
678 VALID_TAG ("/TITLE"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
679 VALID_TAG ("BR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
680 VALID_TAG ("HR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
681 VALID_TAG ("/FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
682 VALID_TAG ("/A"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
683 VALID_TAG ("P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
684 VALID_TAG ("/P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
685 VALID_TAG ("H3"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
686 VALID_TAG ("/H3"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
687 VALID_TAG ("HTML"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
688 VALID_TAG ("/HTML"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
689 VALID_TAG ("BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
690 VALID_TAG ("/BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
691 VALID_TAG ("FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
692 VALID_TAG ("HEAD"); |
2993 | 693 VALID_TAG ("/HEAD"); |
694 VALID_TAG ("BINARY"); | |
695 VALID_TAG ("/BINARY"); | |
696 | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
697 VALID_OPT_TAG ("HR"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
698 VALID_OPT_TAG ("FONT"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
699 VALID_OPT_TAG ("BODY"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
700 VALID_OPT_TAG ("A"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
701 VALID_OPT_TAG ("IMG"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
702 VALID_OPT_TAG ("P"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
703 VALID_OPT_TAG ("H3"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
704 |
4793 | 705 if (!g_ascii_strncasecmp(string, "!--", strlen ("!--"))) { |
2954
f6c4f2187c08
[gaim-migrate @ 2967]
Christian Hammond <chipx86@chipx86.com>
parents:
2898
diff
changeset
|
706 gchar *e = strstr (string + strlen("!--"), "-->"); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
707 if (e) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
708 *len = e - string + strlen ("-->"); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
709 *tag = g_strndup (string + strlen ("!--"), *len - strlen ("!---->")); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
710 return TRUE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
711 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
712 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
713 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
714 return FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
715 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
716 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
717 static gchar* |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
718 gtk_imhtml_get_html_opt (gchar *tag, |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
719 const gchar *opt) |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
720 { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
721 gchar *t = tag; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
722 gchar *e, *a; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
723 |
4793 | 724 while (g_ascii_strncasecmp (t, opt, strlen (opt))) { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
725 gboolean quote = FALSE; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
726 if (*t == '\0') break; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
727 while (*t && !((*t == ' ') && !quote)) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
728 if (*t == '\"') |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
729 quote = ! quote; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
730 t++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
731 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
732 while (*t && (*t == ' ')) t++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
733 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
734 |
4793 | 735 if (!g_ascii_strncasecmp (t, opt, strlen (opt))) { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
736 t += strlen (opt); |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
737 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
738 return NULL; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
739 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
740 |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
741 if ((*t == '\"') || (*t == '\'')) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
742 e = a = ++t; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
743 while (*e && (*e != *(t - 1))) e++; |
2993 | 744 if (*e == '\0') { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
745 return NULL; |
2993 | 746 } else |
747 return g_strndup (a, e - a); | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
748 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
749 e = a = t; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
750 while (*e && !isspace ((gint) *e)) e++; |
2993 | 751 return g_strndup (a, e - a); |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
752 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
753 } |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
754 |
3922 | 755 |
756 | |
757 #define NEW_TEXT_BIT 0 | |
4343 | 758 #define NEW_COMMENT_BIT 2 |
4895 | 759 #define NEW_SCALABLE_BIT 1 |
3922 | 760 #define NEW_BIT(x) ws [wpos] = '\0'; \ |
761 mark2 = gtk_text_buffer_create_mark(imhtml->text_buffer, NULL, &iter, TRUE); \ | |
762 gtk_text_buffer_insert(imhtml->text_buffer, &iter, ws, -1); \ | |
4895 | 763 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); \ |
3922 | 764 gtk_text_buffer_get_iter_at_mark(imhtml->text_buffer, &siter, mark2); \ |
765 gtk_text_buffer_delete_mark(imhtml->text_buffer, mark2); \ | |
766 if (bold) \ | |
767 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "BOLD", &siter, &iter); \ | |
4895 | 768 if (italics) \ |
3922 | 769 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "ITALICS", &siter, &iter); \ |
770 if (underline) \ | |
771 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "UNDERLINE", &siter, &iter); \ | |
772 if (strike) \ | |
773 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "STRIKE", &siter, &iter); \ | |
774 if (sub) \ | |
775 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "SUB", &siter, &iter); \ | |
776 if (sup) \ | |
777 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "SUP", &siter, &iter); \ | |
778 if (pre) \ | |
779 gtk_text_buffer_apply_tag_by_name(imhtml->text_buffer, "PRE", &siter, &iter); \ | |
780 if (bg) { \ | |
781 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "background", bg, NULL); \ | |
782 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
783 } \ | |
784 if (fonts) { \ | |
785 FontDetail *fd = fonts->data; \ | |
786 if (fd->fore) { \ | |
787 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "foreground", fd->fore, NULL); \ | |
788 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
789 } \ | |
790 if (fd->back) { \ | |
791 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "background", fd->back, NULL); \ | |
792 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
793 } \ | |
794 if (fd->face) { \ | |
795 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "font", fd->face, NULL); \ | |
796 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
797 } \ | |
798 if (fd->size) { \ | |
799 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "size-points", (double)POINT_SIZE(fd->size), NULL); \ | |
800 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
801 } \ | |
802 } \ | |
803 if (url) { \ | |
804 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "foreground", "blue", "underline", PANGO_UNDERLINE_SINGLE, NULL); \ | |
5012 | 805 g_signal_connect(G_OBJECT(texttag), "event", G_CALLBACK(tag_event), g_strdup(url)); \ |
3922 | 806 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ |
4735 | 807 texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, NULL); \ |
808 g_object_set_data(G_OBJECT(texttag), "link_url", g_strdup(url)); \ | |
809 gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ | |
3922 | 810 } \ |
811 wpos = 0; \ | |
812 ws[0] = 0; \ | |
813 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); \ | |
4895 | 814 if (x == NEW_SCALABLE_BIT) { \ |
815 GdkRectangle rect; \ | |
816 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); \ | |
817 scalable->add_to(scalable, imhtml, &iter); \ | |
818 scalable->scale(scalable, rect.width, rect.height); \ | |
819 imhtml->scalables = g_list_append(imhtml->scalables, scalable); \ | |
820 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); \ | |
4343 | 821 } \ |
3922 | 822 |
4895 | 823 |
824 | |
3922 | 825 GString* gtk_imhtml_append_text (GtkIMHtml *imhtml, |
826 const gchar *text, | |
827 gint len, | |
828 GtkIMHtmlOptions options) | |
1428 | 829 { |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
830 gint pos = 0; |
3922 | 831 GString *str = NULL; |
832 GtkTextIter iter, siter; | |
833 GtkTextMark *mark, *mark2; | |
834 GtkTextTag *texttag; | |
835 gchar *ws; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
836 gchar *tag; |
3922 | 837 gchar *url = NULL; |
838 gchar *bg = NULL; | |
4032 | 839 gint tlen, smilelen, wpos=0; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
840 gint type; |
3922 | 841 const gchar *c; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
842 gchar amp; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
843 |
1428 | 844 guint bold = 0, |
845 italics = 0, | |
846 underline = 0, | |
847 strike = 0, | |
848 sub = 0, | |
849 sup = 0, | |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
850 title = 0, |
3922 | 851 pre = 0; |
1428 | 852 |
3922 | 853 GSList *fonts = NULL; |
1428 | 854 |
4612 | 855 GdkRectangle rect; |
856 int y, height; | |
857 | |
4895 | 858 GtkIMHtmlScalable *scalable = NULL; |
859 | |
1428 | 860 g_return_val_if_fail (imhtml != NULL, NULL); |
861 g_return_val_if_fail (GTK_IS_IMHTML (imhtml), NULL); | |
862 g_return_val_if_fail (text != NULL, NULL); | |
3922 | 863 g_return_val_if_fail (len != 0, NULL); |
864 | |
865 c = text; | |
866 if (len == -1) | |
867 len = strlen(text); | |
868 ws = g_malloc(len + 1); | |
869 ws[0] = 0; | |
1428 | 870 |
871 if (options & GTK_IMHTML_RETURN_LOG) | |
3922 | 872 str = g_string_new(""); |
1428 | 873 |
3922 | 874 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &iter); |
875 mark = gtk_text_buffer_create_mark (imhtml->text_buffer, NULL, &iter, /* right grav */ FALSE); | |
4612 | 876 |
877 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(imhtml), &rect); | |
878 gtk_text_view_get_line_yrange(GTK_TEXT_VIEW(imhtml), &iter, &y, &height); | |
879 | |
880 if(((y + height) - (rect.y + rect.height)) > height | |
881 && gtk_text_buffer_get_char_count(imhtml->text_buffer)){ | |
882 options |= GTK_IMHTML_NO_SCROLL; | |
883 } | |
884 | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
885 while (pos < len) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
886 if (*c == '<' && gtk_imhtml_is_tag (c + 1, &tag, &tlen, &type)) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
887 c++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
888 pos++; |
3922 | 889 switch (type) |
890 { | |
891 case 1: /* B */ | |
892 case 2: /* BOLD */ | |
893 NEW_BIT (NEW_TEXT_BIT); | |
894 bold++; | |
895 break; | |
896 case 3: /* /B */ | |
897 case 4: /* /BOLD */ | |
898 NEW_BIT (NEW_TEXT_BIT); | |
899 if (bold) | |
900 bold--; | |
901 break; | |
902 case 5: /* I */ | |
903 case 6: /* ITALIC */ | |
904 NEW_BIT (NEW_TEXT_BIT); | |
905 italics++; | |
906 break; | |
907 case 7: /* /I */ | |
908 case 8: /* /ITALIC */ | |
909 NEW_BIT (NEW_TEXT_BIT); | |
910 if (italics) | |
911 italics--; | |
912 break; | |
913 case 9: /* U */ | |
914 case 10: /* UNDERLINE */ | |
915 NEW_BIT (NEW_TEXT_BIT); | |
916 underline++; | |
917 break; | |
918 case 11: /* /U */ | |
919 case 12: /* /UNDERLINE */ | |
920 NEW_BIT (NEW_TEXT_BIT); | |
921 if (underline) | |
922 underline--; | |
923 break; | |
924 case 13: /* S */ | |
925 case 14: /* STRIKE */ | |
926 NEW_BIT (NEW_TEXT_BIT); | |
927 strike++; | |
928 break; | |
929 case 15: /* /S */ | |
930 case 16: /* /STRIKE */ | |
931 NEW_BIT (NEW_TEXT_BIT); | |
932 if (strike) | |
933 strike--; | |
934 break; | |
935 case 17: /* SUB */ | |
936 NEW_BIT (NEW_TEXT_BIT); | |
937 sub++; | |
938 break; | |
939 case 18: /* /SUB */ | |
940 NEW_BIT (NEW_TEXT_BIT); | |
941 if (sub) | |
942 sub--; | |
943 break; | |
944 case 19: /* SUP */ | |
945 NEW_BIT (NEW_TEXT_BIT); | |
946 sup++; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
947 break; |
3922 | 948 case 20: /* /SUP */ |
949 NEW_BIT (NEW_TEXT_BIT); | |
950 if (sup) | |
951 sup--; | |
952 break; | |
953 case 21: /* PRE */ | |
954 NEW_BIT (NEW_TEXT_BIT); | |
955 pre++; | |
956 break; | |
957 case 22: /* /PRE */ | |
958 NEW_BIT (NEW_TEXT_BIT); | |
959 if (pre) | |
960 pre--; | |
961 break; | |
962 case 23: /* TITLE */ | |
963 NEW_BIT (NEW_TEXT_BIT); | |
964 title++; | |
965 break; | |
966 case 24: /* /TITLE */ | |
967 if (title) { | |
968 if (options & GTK_IMHTML_NO_TITLE) { | |
969 wpos = 0; | |
970 ws [wpos] = '\0'; | |
971 } | |
972 title--; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
973 } |
3922 | 974 break; |
975 case 25: /* BR */ | |
976 ws[wpos] = '\n'; | |
977 wpos++; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
978 NEW_BIT (NEW_TEXT_BIT); |
3922 | 979 break; |
980 case 26: /* HR */ | |
981 case 42: /* HR (opt) */ | |
982 ws[wpos++] = '\n'; | |
4895 | 983 scalable = gaim_hr_new(); |
984 NEW_BIT(NEW_SCALABLE_BIT); | |
4343 | 985 ws[wpos++] = '\n'; |
3922 | 986 break; |
987 case 27: /* /FONT */ | |
988 if (fonts) { | |
989 FontDetail *font = fonts->data; | |
990 NEW_BIT (NEW_TEXT_BIT); | |
991 fonts = g_slist_remove (fonts, font); | |
992 if (font->face) | |
993 g_free (font->face); | |
994 if (font->fore) | |
995 g_free (font->fore); | |
996 if (font->back) | |
997 g_free (font->back); | |
4032 | 998 if (font->sml) |
999 g_free (font->sml); | |
3922 | 1000 g_free (font); |
1001 } | |
1002 break; | |
1003 case 28: /* /A */ | |
1004 if (url) { | |
1005 NEW_BIT(NEW_TEXT_BIT); | |
1006 g_free(url); | |
1007 url = NULL; | |
2993 | 1008 break; |
1009 } | |
3922 | 1010 case 29: /* P */ |
1011 case 30: /* /P */ | |
1012 case 31: /* H3 */ | |
1013 case 32: /* /H3 */ | |
1014 case 33: /* HTML */ | |
1015 case 34: /* /HTML */ | |
1016 case 35: /* BODY */ | |
1017 case 36: /* /BODY */ | |
1018 case 37: /* FONT */ | |
1019 case 38: /* HEAD */ | |
1020 case 39: /* /HEAD */ | |
1021 break; | |
1022 case 40: /* BINARY */ | |
4895 | 1023 NEW_BIT (NEW_TEXT_BIT); |
4997 | 1024 while (pos < len && g_ascii_strncasecmp("</BINARY>", c, strlen("</BINARY>"))) { |
1025 c++; | |
1026 pos++; | |
1027 } | |
1028 c = c - tlen; /* Because it will add this later */ | |
4895 | 1029 break; |
3922 | 1030 case 41: /* /BINARY */ |
1031 break; | |
1032 case 43: /* FONT (opt) */ | |
1033 { | |
4032 | 1034 gchar *color, *back, *face, *size, *sml; |
3922 | 1035 FontDetail *font, *oldfont = NULL; |
1036 color = gtk_imhtml_get_html_opt (tag, "COLOR="); | |
1037 back = gtk_imhtml_get_html_opt (tag, "BACK="); | |
1038 face = gtk_imhtml_get_html_opt (tag, "FACE="); | |
1039 size = gtk_imhtml_get_html_opt (tag, "SIZE="); | |
4032 | 1040 sml = gtk_imhtml_get_html_opt (tag, "SML="); |
1041 if (!(color || back || face || size || sml)) | |
3922 | 1042 break; |
1043 | |
1044 NEW_BIT (NEW_TEXT_BIT); | |
1045 | |
1046 font = g_new0 (FontDetail, 1); | |
1047 if (fonts) | |
1048 oldfont = fonts->data; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1049 |
3922 | 1050 if (color && !(options & GTK_IMHTML_NO_COLOURS)) |
1051 font->fore = color; | |
1052 else if (oldfont && oldfont->fore) | |
1053 font->fore = g_strdup(oldfont->fore); | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1054 |
3922 | 1055 if (back && !(options & GTK_IMHTML_NO_COLOURS)) |
1056 font->back = back; | |
1057 else if (oldfont && oldfont->back) | |
1058 font->back = g_strdup(oldfont->back); | |
1059 | |
1060 if (face && !(options & GTK_IMHTML_NO_FONTS)) | |
1061 font->face = face; | |
1062 else if (oldfont && oldfont->face) | |
1063 font->face = g_strdup(oldfont->face); | |
4629 | 1064 if (font->face && (atoi(font->face) > 100)) { |
1065 g_free(font->face); | |
1066 font->face = g_strdup("100"); | |
1067 } | |
4032 | 1068 |
1069 if (sml) | |
1070 font->sml = sml; | |
1071 else if (oldfont && oldfont->sml) | |
1072 font->sml = g_strdup(oldfont->sml); | |
1073 | |
3922 | 1074 if (size && !(options & GTK_IMHTML_NO_SIZES)) { |
1075 if (*size == '+') { | |
1076 sscanf (size + 1, "%hd", &font->size); | |
1077 font->size += 3; | |
1078 } else if (*size == '-') { | |
1079 sscanf (size + 1, "%hd", &font->size); | |
1080 font->size = MAX (0, 3 - font->size); | |
1081 } else if (isdigit (*size)) { | |
1082 sscanf (size, "%hd", &font->size); | |
1083 } | |
1084 } else if (oldfont) | |
1085 font->size = oldfont->size; | |
1086 g_free(size); | |
1087 fonts = g_slist_prepend (fonts, font); | |
1088 } | |
1089 break; | |
1090 case 44: /* BODY (opt) */ | |
1091 if (!(options & GTK_IMHTML_NO_COLOURS)) { | |
1092 char *bgcolor = gtk_imhtml_get_html_opt (tag, "BGCOLOR="); | |
1093 if (bgcolor) { | |
1094 NEW_BIT(NEW_TEXT_BIT); | |
1095 if (bg) | |
1096 g_free(bg); | |
1097 bg = bgcolor; | |
2885
f72efa29c109
[gaim-migrate @ 2898]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2871
diff
changeset
|
1098 } |
1428 | 1099 } |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1100 break; |
3922 | 1101 case 45: /* A (opt) */ |
1102 { | |
1103 gchar *href = gtk_imhtml_get_html_opt (tag, "HREF="); | |
1104 if (href) { | |
1105 NEW_BIT (NEW_TEXT_BIT); | |
1106 if (url) | |
1107 g_free (url); | |
1108 url = href; | |
1109 } | |
2993 | 1110 } |
3922 | 1111 break; |
4895 | 1112 case 46: /* IMG (opt) */ |
1113 { | |
1114 gchar *src = gtk_imhtml_get_html_opt (tag, "SRC="); | |
1115 gchar *id = gtk_imhtml_get_html_opt (tag, "ID="); | |
1116 gchar *datasize = gtk_imhtml_get_html_opt (tag, "DATASIZE="); | |
1117 gint im_len = datasize?atoi(datasize):0; | |
1118 | |
1119 if (src && id && im_len && im_len <= len - pos) { | |
1120 /* This is an embedded IM image, or is it? */ | |
1121 char *tmp = NULL; | |
1122 const char *alltext; | |
1123 guchar *imagedata = NULL; | |
1124 | |
1125 GdkPixbufLoader *load; | |
1126 GdkPixbuf *imagepb = NULL; | |
1127 GError *error = NULL; | |
1128 | |
1129 tmp = g_strdup_printf("<DATA ID=\"%s\" SIZE=\"%s\">", id, datasize); | |
1130 alltext = strstr(c, tmp); | |
1131 imagedata = g_memdup(alltext + strlen(tmp), im_len); | |
1132 | |
1133 g_free(tmp); | |
1134 | |
1135 load = gdk_pixbuf_loader_new(); | |
1136 if (!gdk_pixbuf_loader_write(load, imagedata, im_len, &error)){ | |
1137 fprintf(stderr, "IM Image corrupted or unreadable.: %s\n", error->message); | |
1138 } else { | |
1139 imagepb = gdk_pixbuf_loader_get_pixbuf(load); | |
1140 if (imagepb) { | |
5012 | 1141 scalable = gaim_im_image_new(imagepb, g_strdup(src)); |
4895 | 1142 NEW_BIT(NEW_SCALABLE_BIT); |
5012 | 1143 g_object_unref(imagepb); |
4895 | 1144 } |
1145 } | |
1146 | |
1147 gdk_pixbuf_loader_close(load, NULL); | |
1148 | |
1149 | |
1150 g_free(imagedata); | |
1151 g_free(id); | |
1152 g_free(datasize); | |
1153 g_free(src); | |
1154 | |
1155 break; | |
1156 } | |
1157 g_free(id); | |
1158 g_free(datasize); | |
1159 g_free(src); | |
1160 } | |
3922 | 1161 case 47: /* P (opt) */ |
1162 case 48: /* H3 (opt) */ | |
2993 | 1163 break; |
3922 | 1164 case 49: /* comment */ |
1165 NEW_BIT (NEW_TEXT_BIT); | |
4253 | 1166 if (imhtml->show_comments) |
1167 wpos = g_snprintf (ws, len, "%s", tag); | |
3922 | 1168 NEW_BIT (NEW_COMMENT_BIT); |
1169 break; | |
1170 default: | |
1171 break; | |
2993 | 1172 } |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1173 c += tlen; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1174 pos += tlen; |
4138 | 1175 if(tag) |
1176 g_free(tag); /* This was allocated back in VALID_TAG() */ | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1177 } else if (*c == '&' && gtk_imhtml_is_amp_escape (c, &, &tlen)) { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1178 ws [wpos++] = amp; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1179 c += tlen; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1180 pos += tlen; |
1428 | 1181 } else if (*c == '\n') { |
1182 if (!(options & GTK_IMHTML_NO_NEWLINE)) { | |
3922 | 1183 ws[wpos] = '\n'; |
1184 wpos++; | |
1428 | 1185 NEW_BIT (NEW_TEXT_BIT); |
1186 } | |
1187 c++; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1188 pos++; |
4253 | 1189 } else if (imhtml->show_smileys && (gtk_imhtml_is_smiley (imhtml, fonts, c, &smilelen) || gtk_imhtml_is_smiley(imhtml, NULL, c, &smilelen))) { |
4032 | 1190 FontDetail *fd; |
1191 gchar *sml = NULL; | |
1192 if (fonts) { | |
1193 fd = fonts->data; | |
1194 sml = fd->sml; | |
1195 } | |
1196 NEW_BIT (NEW_TEXT_BIT); | |
1197 wpos = g_snprintf (ws, smilelen + 1, "%s", c); | |
4263 | 1198 gtk_text_buffer_insert_pixbuf(imhtml->text_buffer, &iter, gtk_smiley_tree_image (imhtml, sml, ws)); |
4032 | 1199 c += smilelen; |
1200 pos += smilelen; | |
1201 wpos = 0; | |
1202 ws[0] = 0; | |
1203 } else if (*c) { | |
1428 | 1204 ws [wpos++] = *c++; |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1205 pos++; |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1206 } else { |
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2826
diff
changeset
|
1207 break; |
1428 | 1208 } |
1209 } | |
3922 | 1210 |
1211 NEW_BIT(NEW_TEXT_BIT); | |
1428 | 1212 if (url) { |
1213 g_free (url); | |
3922 | 1214 if (str) |
1215 str = g_string_append (str, "</A>"); | |
1428 | 1216 } |
3922 | 1217 |
4032 | 1218 while (fonts) { |
1219 FontDetail *font = fonts->data; | |
1220 fonts = g_slist_remove (fonts, font); | |
1221 if (font->face) | |
1222 g_free (font->face); | |
1223 if (font->fore) | |
1224 g_free (font->fore); | |
1225 if (font->back) | |
1226 g_free (font->back); | |
1227 if (font->sml) | |
1228 g_free (font->sml); | |
1229 g_free (font); | |
1230 if (str) | |
1231 str = g_string_append (str, "</FONT>"); | |
1232 } | |
1233 | |
3922 | 1234 if (str) { |
1428 | 1235 while (bold) { |
3922 | 1236 str = g_string_append (str, "</B>"); |
1428 | 1237 bold--; |
1238 } | |
1239 while (italics) { | |
3922 | 1240 str = g_string_append (str, "</I>"); |
1428 | 1241 italics--; |
1242 } | |
1243 while (underline) { | |
3922 | 1244 str = g_string_append (str, "</U>"); |
1428 | 1245 underline--; |
1246 } | |
1247 while (strike) { | |
3922 | 1248 str = g_string_append (str, "</S>"); |
1428 | 1249 strike--; |
1250 } | |
1251 while (sub) { | |
3922 | 1252 str = g_string_append (str, "</SUB>"); |
1428 | 1253 sub--; |
1254 } | |
1255 while (sup) { | |
3922 | 1256 str = g_string_append (str, "</SUP>"); |
1428 | 1257 sup--; |
1258 } | |
1259 while (title) { | |
3922 | 1260 str = g_string_append (str, "</TITLE>"); |
1428 | 1261 title--; |
1262 } | |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1263 while (pre) { |
3922 | 1264 str = g_string_append (str, "</PRE>"); |
1691
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1265 pre--; |
d802b115800f
[gaim-migrate @ 1701]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1647
diff
changeset
|
1266 } |
1428 | 1267 } |
4032 | 1268 g_free (ws); |
4630 | 1269 if(bg) |
1270 g_free(bg); | |
4032 | 1271 if (!(options & GTK_IMHTML_NO_SCROLL)) |
1272 gtk_text_view_scroll_to_mark (GTK_TEXT_VIEW (imhtml), mark, | |
1273 0, TRUE, 0.0, 1.0); | |
3922 | 1274 gtk_text_buffer_delete_mark (imhtml->text_buffer, mark); |
1275 return str; | |
1276 } | |
1277 | |
4892 | 1278 void gtk_imhtml_remove_smileys(GtkIMHtml *imhtml) |
1279 { | |
4288 | 1280 g_hash_table_destroy(imhtml->smiley_data); |
1281 gtk_smiley_tree_destroy(imhtml->default_smilies); | |
4892 | 1282 imhtml->smiley_data = g_hash_table_new_full(g_str_hash, g_str_equal, |
4902 | 1283 g_free, (GDestroyNotify)gtk_smiley_tree_destroy); |
4288 | 1284 imhtml->default_smilies = gtk_smiley_tree_new(); |
1285 } | |
3922 | 1286 void gtk_imhtml_show_smileys (GtkIMHtml *imhtml, |
4253 | 1287 gboolean show) |
1288 { | |
1289 imhtml->show_smileys = show; | |
1290 } | |
3922 | 1291 |
1292 void gtk_imhtml_show_comments (GtkIMHtml *imhtml, | |
4253 | 1293 gboolean show) |
1294 { | |
1295 imhtml->show_comments = show; | |
1296 } | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1297 |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1298 void |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1299 gtk_imhtml_clear (GtkIMHtml *imhtml) |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1300 { |
3922 | 1301 GtkTextIter start, end; |
2993 | 1302 |
3922 | 1303 gtk_text_buffer_get_start_iter(imhtml->text_buffer, &start); |
1304 gtk_text_buffer_get_end_iter(imhtml->text_buffer, &end); | |
1305 gtk_text_buffer_delete(imhtml->text_buffer, &start, &end); | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1738
diff
changeset
|
1306 } |
2363
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
1307 |
4046 | 1308 void gtk_imhtml_page_up (GtkIMHtml *imhtml) |
1309 { | |
1310 | |
1311 } | |
3922 | 1312 void gtk_imhtml_page_down (GtkIMHtml *imhtml){} |
4735 | 1313 |
1314 static gint | |
1315 gtk_imhtml_tip_paint (GtkIMHtml *imhtml) | |
1316 { | |
1317 PangoLayout *layout; | |
1318 | |
1319 g_return_val_if_fail(GTK_IS_IMHTML(imhtml), FALSE); | |
1320 | |
1321 layout = gtk_widget_create_pango_layout(imhtml->tip_window, imhtml->tip); | |
1322 | |
1323 gtk_paint_flat_box (imhtml->tip_window->style, imhtml->tip_window->window, | |
1324 GTK_STATE_NORMAL, GTK_SHADOW_OUT, NULL, imhtml->tip_window, | |
1325 "tooltip", 0, 0, -1, -1); | |
1326 | |
1327 gtk_paint_layout (imhtml->tip_window->style, imhtml->tip_window->window, GTK_STATE_NORMAL, | |
1328 FALSE, NULL, imhtml->tip_window, NULL, 4, 4, layout); | |
1329 | |
4764 | 1330 g_object_unref(layout); |
4735 | 1331 return FALSE; |
1332 } | |
1333 | |
1334 static gint | |
1335 gtk_imhtml_tip (gpointer data) | |
1336 { | |
1337 GtkIMHtml *imhtml = data; | |
1338 PangoFontMetrics *font; | |
1339 PangoLayout *layout; | |
1340 | |
1341 gint gap, x, y, h, w, scr_w, baseline_skip; | |
1342 | |
1343 g_return_val_if_fail(GTK_IS_IMHTML(imhtml), FALSE); | |
1344 | |
1345 if (!imhtml->tip || !GTK_WIDGET_DRAWABLE (GTK_WIDGET(imhtml))) { | |
1346 imhtml->tip_timer = 0; | |
1347 return FALSE; | |
1348 } | |
1349 | |
1350 if (imhtml->tip_window){ | |
1351 gtk_widget_destroy (imhtml->tip_window); | |
1352 imhtml->tip_window = NULL; | |
1353 } | |
1354 | |
1355 imhtml->tip_timer = 0; | |
1356 imhtml->tip_window = gtk_window_new (GTK_WINDOW_POPUP); | |
1357 gtk_widget_set_app_paintable (imhtml->tip_window, TRUE); | |
1358 gtk_window_set_resizable (GTK_WINDOW (imhtml->tip_window), FALSE); | |
1359 gtk_widget_set_name (imhtml->tip_window, "gtk-tooltips"); | |
1360 g_signal_connect_swapped (G_OBJECT (imhtml->tip_window), "expose_event", | |
1361 G_CALLBACK (gtk_imhtml_tip_paint), imhtml); | |
1362 | |
1363 gtk_widget_ensure_style (imhtml->tip_window); | |
1364 layout = gtk_widget_create_pango_layout(imhtml->tip_window, imhtml->tip); | |
1365 font = pango_font_get_metrics(pango_context_load_font(pango_layout_get_context(layout), | |
1366 imhtml->tip_window->style->font_desc), | |
1367 NULL); | |
1368 | |
1369 | |
1370 pango_layout_get_pixel_size(layout, &scr_w, NULL); | |
1371 gap = PANGO_PIXELS((pango_font_metrics_get_ascent(font) + | |
1372 pango_font_metrics_get_descent(font))/ 4); | |
1373 | |
1374 if (gap < 2) | |
1375 gap = 2; | |
1376 baseline_skip = PANGO_PIXELS(pango_font_metrics_get_ascent(font) + | |
1377 pango_font_metrics_get_descent(font)); | |
1378 w = 8 + scr_w; | |
1379 h = 8 + baseline_skip; | |
1380 | |
1381 gdk_window_get_pointer (NULL, &x, &y, NULL); | |
1382 if (GTK_WIDGET_NO_WINDOW (GTK_WIDGET(imhtml))) | |
1383 y += GTK_WIDGET(imhtml)->allocation.y; | |
1384 | |
1385 scr_w = gdk_screen_width(); | |
1386 | |
1387 x -= ((w >> 1) + 4); | |
1388 | |
1389 if ((x + w) > scr_w) | |
1390 x -= (x + w) - scr_w; | |
1391 else if (x < 0) | |
1392 x = 0; | |
1393 | |
1394 y = y + PANGO_PIXELS(pango_font_metrics_get_ascent(font) + | |
1395 pango_font_metrics_get_descent(font)); | |
1396 | |
1397 gtk_widget_set_size_request (imhtml->tip_window, w, h); | |
1398 gtk_widget_show (imhtml->tip_window); | |
1399 gtk_window_move (GTK_WINDOW(imhtml->tip_window), x, y); | |
1400 | |
1401 pango_font_metrics_unref(font); | |
4895 | 1402 g_object_unref(layout); |
4735 | 1403 |
1404 return FALSE; | |
1405 } | |
4895 | 1406 |
4947 | 1407 static gboolean gtk_size_allocate_cb(GtkIMHtml *widget, GtkAllocation *alloc, gpointer user_data) |
4895 | 1408 { |
4903 | 1409 GdkRectangle rect; |
4895 | 1410 |
4903 | 1411 gtk_text_view_get_visible_rect(GTK_TEXT_VIEW(widget), &rect); |
4947 | 1412 if(widget->old_rect.width != rect.width || widget->old_rect.height != rect.height){ |
4902 | 1413 GList *iter = GTK_IMHTML(widget)->scalables; |
4895 | 1414 |
1415 while(iter){ | |
1416 GtkIMHtmlScalable *scale = GTK_IMHTML_SCALABLE(iter->data); | |
4903 | 1417 scale->scale(scale, rect.width, rect.height); |
4895 | 1418 |
1419 iter = iter->next; | |
1420 } | |
1421 } | |
1422 | |
4947 | 1423 widget->old_rect = rect; |
4895 | 1424 return FALSE; |
1425 } | |
1426 | |
1427 /* GtkIMHtmlScalable, gaim_im_image, gaim_hr */ | |
5012 | 1428 GtkIMHtmlScalable *gaim_im_image_new(GdkPixbuf *img, gchar *filename) |
4895 | 1429 { |
1430 gaim_im_image *im_image = g_malloc(sizeof(gaim_im_image)); | |
5012 | 1431 GtkImage *image = GTK_IMAGE(gtk_image_new_from_pixbuf(img)); |
4895 | 1432 |
1433 GTK_IMHTML_SCALABLE(im_image)->scale = gaim_im_image_scale; | |
1434 GTK_IMHTML_SCALABLE(im_image)->add_to = gaim_im_image_add_to; | |
1435 GTK_IMHTML_SCALABLE(im_image)->free = gaim_im_image_free; | |
5012 | 1436 im_image->image = image; |
4895 | 1437 im_image->width = gdk_pixbuf_get_width(img); |
1438 im_image->height = gdk_pixbuf_get_height(img); | |
1439 im_image->mark = NULL; | |
5012 | 1440 im_image->filename = filename; |
4895 | 1441 |
1442 return GTK_IMHTML_SCALABLE(im_image); | |
1443 } | |
1444 | |
1445 void gaim_im_image_scale(GtkIMHtmlScalable *scale, int width, int height) | |
1446 { | |
1447 gaim_im_image *image = (gaim_im_image *)scale; | |
1448 | |
1449 if(image->width > width || image->height > height){ | |
5012 | 1450 GdkPixbuf *old_image = gtk_image_get_pixbuf(image->image); |
4895 | 1451 GdkPixbuf *new_image = NULL; |
1452 float factor; | |
1453 int new_width = image->width, new_height = image->height; | |
1454 | |
1455 if(image->width > width){ | |
1456 factor = (float)(width)/image->width; | |
1457 new_width = width; | |
1458 new_height = image->height * factor; | |
1459 } | |
1460 if(new_height > height){ | |
1461 factor = (float)(height)/new_height; | |
1462 new_height = height; | |
1463 new_width = new_width * factor; | |
1464 } | |
1465 | |
5012 | 1466 new_image = gdk_pixbuf_scale_simple(old_image, new_width, new_height, GDK_INTERP_BILINEAR); |
1467 gtk_image_set_from_pixbuf(image->image, new_image); | |
4895 | 1468 g_object_unref(G_OBJECT(new_image)); |
1469 } | |
1470 } | |
1471 | |
1472 void gaim_im_image_free(GtkIMHtmlScalable *scale) | |
1473 { | |
1474 gaim_im_image *image = (gaim_im_image *)scale; | |
5012 | 1475 /* |
4895 | 1476 g_object_unref(image->image); |
5012 | 1477 */ |
1478 g_free(image->filename); | |
4895 | 1479 g_free(scale); |
1480 } | |
1481 | |
1482 void gaim_im_image_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
1483 { | |
1484 gaim_im_image *image = (gaim_im_image *)scale; | |
5012 | 1485 GtkWidget *box = gtk_event_box_new(); |
1486 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
4895 | 1487 |
5012 | 1488 gtk_container_add(GTK_CONTAINER(box), GTK_WIDGET(image->image)); |
1489 | |
1490 gtk_widget_show(GTK_WIDGET(image->image)); | |
1491 gtk_widget_show(box); | |
1492 | |
1493 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), box, anchor); | |
1494 g_signal_connect(G_OBJECT(box), "event", G_CALLBACK(gaim_im_image_clicked), image); | |
4895 | 1495 } |
1496 | |
1497 GtkIMHtmlScalable *gaim_hr_new() | |
1498 { | |
1499 gaim_hr *hr = g_malloc(sizeof(gaim_hr)); | |
1500 | |
1501 GTK_IMHTML_SCALABLE(hr)->scale = gaim_hr_scale; | |
1502 GTK_IMHTML_SCALABLE(hr)->add_to = gaim_hr_add_to; | |
1503 GTK_IMHTML_SCALABLE(hr)->free = gaim_hr_free; | |
1504 | |
1505 hr->sep = gtk_hseparator_new(); | |
1506 gtk_widget_set_size_request(hr->sep, 5000, 2); | |
1507 gtk_widget_show(hr->sep); | |
1508 | |
1509 return GTK_IMHTML_SCALABLE(hr); | |
1510 } | |
1511 | |
1512 void gaim_hr_scale(GtkIMHtmlScalable *scale, int width, int height) | |
1513 { | |
1514 gtk_widget_set_size_request(((gaim_hr *)scale)->sep, width, 2); | |
1515 } | |
1516 | |
1517 void gaim_hr_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *imhtml, GtkTextIter *iter) | |
1518 { | |
1519 gaim_hr *hr = (gaim_hr *)scale; | |
1520 GtkTextChildAnchor *anchor = gtk_text_buffer_create_child_anchor(imhtml->text_buffer, iter); | |
1521 | |
1522 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(imhtml), hr->sep, anchor); | |
1523 } | |
1524 | |
1525 void gaim_hr_free(GtkIMHtmlScalable *scale) | |
1526 { | |
1527 /* gtk_widget_destroy(((gaim_hr *)scale)->sep); */ | |
1528 g_free(scale); | |
1529 } | |
5012 | 1530 |
1531 static void write_img_to_file(GtkWidget *w, GtkFileSelection *sel) | |
1532 { | |
1533 const gchar *filename = gtk_file_selection_get_filename(sel); | |
1534 gaim_im_image *image = g_object_get_data(G_OBJECT(sel), "gaim_im_image"); | |
1535 gchar *type = NULL; | |
5019 | 1536 GError *error = NULL; |
5015 | 1537 #if GTK_CHECK_VERSION(2,2,0) |
5012 | 1538 GSList *formats = gdk_pixbuf_get_formats(); |
1539 | |
1540 while(formats){ | |
1541 GdkPixbufFormat *format = formats->data; | |
1542 gchar **extensions = gdk_pixbuf_format_get_extensions(format); | |
1543 gpointer p = extensions; | |
1544 | |
1545 while(gdk_pixbuf_format_is_writable(format) && extensions && extensions[0]){ | |
1546 gchar *fmt_ext = extensions[0]; | |
1547 const gchar* file_ext = filename + strlen(filename) - strlen(fmt_ext); | |
1548 | |
1549 if(!strcmp(fmt_ext, file_ext)){ | |
1550 type = gdk_pixbuf_format_get_name(format); | |
1551 break; | |
1552 } | |
1553 | |
1554 extensions++; | |
1555 } | |
1556 | |
1557 g_strfreev(p); | |
1558 | |
1559 if(type) | |
1560 break; | |
1561 | |
1562 formats = formats->next; | |
1563 } | |
1564 | |
5020 | 1565 g_slist_free(formats); |
1566 #else | |
1567 /* this is really ugly code, but I think it will work */ | |
1568 char *basename = g_path_get_basename(filename); | |
1569 char *ext = strrchr(basename, '.'); | |
1570 | |
1571 if(ext) { | |
1572 ext++; | |
1573 if(!g_ascii_strcasecmp(ext, "jpeg") || !g_ascii_strcasecmp(ext, "jpg")) | |
1574 type = g_strdup("jpeg"); | |
1575 else if(!g_ascii_strcasecmp(ext, "png")) | |
1576 type = g_strdup("png"); | |
1577 } | |
1578 | |
1579 g_free(basename); | |
1580 #endif | |
1581 | |
5012 | 1582 /* If I can't find a valid type, I will just tell the user about it and then assume |
1583 it's a png */ | |
1584 if(!type){ | |
1585 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
1586 _("Gaim was unable to guess the image type base on the file extension supplied. Defaulting to PNG.")); | |
1587 type = g_strdup("png"); | |
1588 } | |
1589 | |
1590 gdk_pixbuf_save(gtk_image_get_pixbuf(image->image), filename, type, &error, NULL); | |
1591 | |
1592 if(error){ | |
1593 gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, | |
1594 _("Error saving image: %s"), error->message); | |
1595 g_error_free(error); | |
1596 } | |
1597 | |
1598 g_free(type); | |
1599 } | |
1600 | |
1601 static void gaim_im_image_save(GtkWidget *w, gaim_im_image *image) | |
1602 { | |
1603 GtkWidget *sel = gtk_file_selection_new(_("Gaim - Save Image")); | |
1604 | |
1605 gtk_file_selection_set_filename(GTK_FILE_SELECTION(sel), image->filename); | |
1606 g_object_set_data(G_OBJECT(sel), "gaim_im_image", image); | |
1607 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", | |
1608 G_CALLBACK(write_img_to_file), sel); | |
1609 | |
1610 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->ok_button), "clicked", | |
1611 G_CALLBACK(gtk_widget_destroy), sel); | |
1612 g_signal_connect_swapped(G_OBJECT(GTK_FILE_SELECTION(sel)->cancel_button), "clicked", | |
1613 G_CALLBACK(gtk_widget_destroy), sel); | |
1614 | |
1615 gtk_widget_show(sel); | |
1616 } | |
1617 | |
1618 static gboolean gaim_im_image_clicked(GtkWidget *w, GdkEvent *event, gaim_im_image *image) | |
1619 { | |
1620 GdkEventButton *event_button = (GdkEventButton *) event; | |
1621 | |
1622 if (event->type == GDK_BUTTON_RELEASE) { | |
1623 if(event_button->button == 3) { | |
1624 GtkWidget *img, *item, *menu; | |
1625 gchar *text = g_strdup_printf(_("_Save Image...")); | |
1626 menu = gtk_menu_new(); | |
1627 | |
1628 /* buttons and such */ | |
1629 img = gtk_image_new_from_stock(GTK_STOCK_SAVE, GTK_ICON_SIZE_MENU); | |
1630 item = gtk_image_menu_item_new_with_mnemonic(text); | |
1631 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), img); | |
1632 g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(gaim_im_image_save), image); | |
1633 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); | |
1634 | |
1635 gtk_widget_show_all(menu); | |
1636 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, | |
1637 event_button->button, event_button->time); | |
1638 | |
1639 g_free(text); | |
1640 return TRUE; | |
1641 } | |
1642 } | |
1643 if(event->type == GDK_BUTTON_PRESS && event_button->button == 3) | |
1644 return TRUE; /* Clicking the right mouse button on a link shouldn't | |
1645 be caught by the regular GtkTextView menu */ | |
1646 else | |
1647 return FALSE; /* Let clicks go through if we didn't catch anything */ | |
1648 | |
1649 } |