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