Mercurial > pidgin.yaz
annotate src/gtkimhtml.h @ 3084:2c526f9f0d11
[gaim-migrate @ 3098]
woah
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Tue, 19 Mar 2002 23:36:24 +0000 |
parents | 200b8133616a |
children | fce1883cc608 |
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 | |
2349
60c716c32c40
[gaim-migrate @ 2362]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1780
diff
changeset
|
40 typedef struct _GtkSmileyTree GtkSmileyTree; |
60c716c32c40
[gaim-migrate @ 2362]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1780
diff
changeset
|
41 |
1428 | 42 typedef struct _GtkIMHtml GtkIMHtml; |
43 typedef struct _GtkIMHtmlClass GtkIMHtmlClass; | |
44 | |
45 struct _GtkIMHtml { | |
46 GtkLayout layout; | |
47 | |
48 GdkFont *default_font; | |
49 GdkColor *default_fg_color; | |
1460
36c56d591674
[gaim-migrate @ 1470]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1428
diff
changeset
|
50 GdkColor *default_bg_color; |
2993 | 51 GdkColor *default_hl_color; |
52 GdkColor *default_hlfg_color; | |
1428 | 53 |
54 GdkCursor *hand_cursor; | |
55 GdkCursor *arrow_cursor; | |
56 | |
57 GList *bits; | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2728
diff
changeset
|
58 GList *click; |
1574
7ad82fa9e6ce
[gaim-migrate @ 1584]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1519
diff
changeset
|
59 struct _GtkIMHtmlBit *tip_bit; |
2993 | 60 GList *im_images; |
1574
7ad82fa9e6ce
[gaim-migrate @ 1584]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1519
diff
changeset
|
61 GtkWidget *tip_window; |
7ad82fa9e6ce
[gaim-migrate @ 1584]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1519
diff
changeset
|
62 guint tip_timer; |
1428 | 63 |
64 guint sel_startx, sel_starty; | |
65 guint sel_endx, sel_endy; | |
66 gboolean selection; | |
2982 | 67 guint sel_mode; |
1428 | 68 GString *selected_text; |
1515
206f995a33f3
[gaim-migrate @ 1525]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1460
diff
changeset
|
69 struct line_info *sel_endchunk; |
1428 | 70 guint scroll_timer; |
71 | |
72 guint x, y; | |
73 guint xsize; | |
74 guint llheight; | |
75 guint llascent; | |
76 GList *line; | |
77 | |
78 GtkIMHtmlImage img; | |
79 | |
80 gboolean smileys; | |
81 gboolean comments; | |
82 | |
2349
60c716c32c40
[gaim-migrate @ 2362]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1780
diff
changeset
|
83 GtkSmileyTree *smiley_data; |
1428 | 84 }; |
85 | |
86 struct _GtkIMHtmlClass { | |
87 GtkLayoutClass parent_class; | |
88 | |
89 void (*url_clicked) (GtkIMHtml *, const gchar *); | |
90 }; | |
91 | |
92 typedef enum | |
93 { | |
94 GTK_IMHTML_NO_COLOURS = 1 << 0, | |
95 GTK_IMHTML_NO_FONTS = 1 << 1, | |
96 GTK_IMHTML_NO_COMMENTS = 1 << 2, | |
97 GTK_IMHTML_NO_TITLE = 1 << 3, | |
98 GTK_IMHTML_NO_NEWLINE = 1 << 4, | |
99 GTK_IMHTML_NO_SIZES = 1 << 5, | |
100 GTK_IMHTML_NO_SCROLL = 1 << 6, | |
101 GTK_IMHTML_RETURN_LOG = 1 << 7 | |
102 } GtkIMHtmlOptions; | |
103 | |
104 GtkType gtk_imhtml_get_type (void); | |
105 GtkWidget* gtk_imhtml_new (GtkAdjustment *hadj, | |
106 GtkAdjustment *vadj); | |
107 | |
108 void gtk_imhtml_set_adjustments (GtkIMHtml *imhtml, | |
109 GtkAdjustment *hadj, | |
110 GtkAdjustment *vadj); | |
111 | |
112 void gtk_imhtml_set_defaults (GtkIMHtml *imhtml, | |
113 GdkFont *font, | |
1460
36c56d591674
[gaim-migrate @ 1470]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1428
diff
changeset
|
114 GdkColor *fg_color, |
36c56d591674
[gaim-migrate @ 1470]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1428
diff
changeset
|
115 GdkColor *bg_color); |
1428 | 116 |
117 void gtk_imhtml_set_img_handler (GtkIMHtml *imhtml, | |
118 GtkIMHtmlImage handler); | |
119 | |
120 void gtk_imhtml_associate_smiley (GtkIMHtml *imhtml, | |
121 gchar *text, | |
122 gchar **xpm); | |
123 | |
3050 | 124 static void gtk_imhtml_init_smileys (GtkIMHtml *imhtml); |
125 | |
2728
16df889d81e2
[gaim-migrate @ 2741]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2363
diff
changeset
|
126 void gtk_imhtml_remove_smileys (GtkIMHtml *imhtml); |
16df889d81e2
[gaim-migrate @ 2741]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2363
diff
changeset
|
127 |
3050 | 128 void gtk_imhtml_reset_smileys (GtkIMHtml *imhtml); |
129 | |
1428 | 130 void gtk_imhtml_show_smileys (GtkIMHtml *imhtml, |
131 gboolean show); | |
132 | |
133 void gtk_imhtml_show_comments (GtkIMHtml *imhtml, | |
134 gboolean show); | |
135 | |
136 GString* gtk_imhtml_append_text (GtkIMHtml *imhtml, | |
137 const gchar *text, | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2728
diff
changeset
|
138 gint len, |
1428 | 139 GtkIMHtmlOptions options); |
140 | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1574
diff
changeset
|
141 void gtk_imhtml_clear (GtkIMHtml *imhtml); |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1574
diff
changeset
|
142 |
2363
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
143 void gtk_imhtml_page_up (GtkIMHtml *imhtml); |
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
144 |
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
145 void gtk_imhtml_page_down (GtkIMHtml *imhtml); |
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
146 |
1428 | 147 #ifdef __cplusplus |
148 } | |
149 #endif | |
150 | |
151 #endif |