Mercurial > pidgin
annotate src/gtkimhtml.h @ 1548:c867a2123830
[gaim-migrate @ 1558]
ignore SIGPIPE
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Thu, 08 Mar 2001 22:15:44 +0000 |
parents | d3ff7d80b8fb |
children | 7ad82fa9e6ce |
rev | line source |
---|---|
1428 | 1 /* |
2 * GtkIMHtml | |
3 * | |
4 * Copyright (C) 2000, Eric Warmenhoven <warmenhoven@yahoo.com> | |
5 * | |
6 * This program is free software; you can redistribute it and/or modify | |
7 * under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 */ | |
21 | |
22 #ifndef __GTK_IMHTML_H | |
23 #define __GTK_IMHTML_H | |
24 | |
25 #include <gdk/gdk.h> | |
26 #include <gtk/gtklayout.h> | |
27 | |
28 #ifdef __cplusplus | |
29 extern "C" { | |
30 #endif | |
31 | |
32 #define GTK_TYPE_IMHTML (gtk_imhtml_get_type ()) | |
33 #define GTK_IMHTML(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_IMHTML, GtkIMHtml)) | |
34 #define GTK_IMHTML_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_IMHTML, GtkIMHtmlClass)) | |
35 #define GTK_IS_IMHTML(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_IMHTML)) | |
36 #define GTK_IS_IMHTML_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IMHTML)) | |
37 | |
38 typedef gchar** (*GtkIMHtmlImage) (gchar *url); | |
39 | |
40 typedef struct _GtkIMHtml GtkIMHtml; | |
41 typedef struct _GtkIMHtmlClass GtkIMHtmlClass; | |
42 | |
43 struct _GtkIMHtml { | |
44 GtkLayout layout; | |
45 | |
46 GdkFont *default_font; | |
47 GdkColor *default_fg_color; | |
1460
36c56d591674
[gaim-migrate @ 1470]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1428
diff
changeset
|
48 GdkColor *default_bg_color; |
1428 | 49 |
50 GdkCursor *hand_cursor; | |
51 GdkCursor *arrow_cursor; | |
52 | |
53 GList *bits; | |
54 GList *urls; | |
55 | |
56 guint sel_startx, sel_starty; | |
57 guint sel_endx, sel_endy; | |
58 gboolean selection; | |
59 GString *selected_text; | |
1515
206f995a33f3
[gaim-migrate @ 1525]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1460
diff
changeset
|
60 struct line_info *sel_endchunk; |
1428 | 61 guint scroll_timer; |
62 | |
63 guint x, y; | |
64 guint xsize; | |
65 guint llheight; | |
66 guint llascent; | |
67 GList *line; | |
68 | |
69 GtkIMHtmlImage img; | |
70 | |
71 gboolean smileys; | |
72 gboolean comments; | |
73 | |
74 GHashTable *smiley_hash; | |
1519
d3ff7d80b8fb
[gaim-migrate @ 1529]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1515
diff
changeset
|
75 GString *smiley_start; |
1428 | 76 gint smin, smax; |
77 }; | |
78 | |
79 struct _GtkIMHtmlClass { | |
80 GtkLayoutClass parent_class; | |
81 | |
82 void (*url_clicked) (GtkIMHtml *, const gchar *); | |
83 }; | |
84 | |
85 typedef enum | |
86 { | |
87 GTK_IMHTML_NO_COLOURS = 1 << 0, | |
88 GTK_IMHTML_NO_FONTS = 1 << 1, | |
89 GTK_IMHTML_NO_COMMENTS = 1 << 2, | |
90 GTK_IMHTML_NO_TITLE = 1 << 3, | |
91 GTK_IMHTML_NO_NEWLINE = 1 << 4, | |
92 GTK_IMHTML_NO_SIZES = 1 << 5, | |
93 GTK_IMHTML_NO_SCROLL = 1 << 6, | |
94 GTK_IMHTML_RETURN_LOG = 1 << 7 | |
95 } GtkIMHtmlOptions; | |
96 | |
97 GtkType gtk_imhtml_get_type (void); | |
98 GtkWidget* gtk_imhtml_new (GtkAdjustment *hadj, | |
99 GtkAdjustment *vadj); | |
100 | |
101 void gtk_imhtml_set_adjustments (GtkIMHtml *imhtml, | |
102 GtkAdjustment *hadj, | |
103 GtkAdjustment *vadj); | |
104 | |
105 void gtk_imhtml_set_defaults (GtkIMHtml *imhtml, | |
106 GdkFont *font, | |
1460
36c56d591674
[gaim-migrate @ 1470]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1428
diff
changeset
|
107 GdkColor *fg_color, |
36c56d591674
[gaim-migrate @ 1470]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1428
diff
changeset
|
108 GdkColor *bg_color); |
1428 | 109 |
110 void gtk_imhtml_set_img_handler (GtkIMHtml *imhtml, | |
111 GtkIMHtmlImage handler); | |
112 | |
113 void gtk_imhtml_associate_smiley (GtkIMHtml *imhtml, | |
114 gchar *text, | |
115 gchar **xpm); | |
116 | |
117 void gtk_imhtml_show_smileys (GtkIMHtml *imhtml, | |
118 gboolean show); | |
119 | |
120 void gtk_imhtml_show_comments (GtkIMHtml *imhtml, | |
121 gboolean show); | |
122 | |
123 GString* gtk_imhtml_append_text (GtkIMHtml *imhtml, | |
124 const gchar *text, | |
125 GtkIMHtmlOptions options); | |
126 | |
127 #ifdef __cplusplus | |
128 } | |
129 #endif | |
130 | |
131 #endif |