Mercurial > pidgin.yaz
annotate src/gtkimhtml.h @ 4965:6e7082cf0892
[gaim-migrate @ 5299]
April fools.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Thu, 03 Apr 2003 02:32:17 +0000 |
parents | 24c9a23df63b |
children | 3ee1b1409660 |
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> | |
3922 | 26 #include <gtk/gtktextview.h> |
4735 | 27 #include <gtk/gtktooltips.h> |
1428 | 28 |
29 #ifdef __cplusplus | |
30 extern "C" { | |
31 #endif | |
32 | |
33 #define GTK_TYPE_IMHTML (gtk_imhtml_get_type ()) | |
34 #define GTK_IMHTML(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_IMHTML, GtkIMHtml)) | |
35 #define GTK_IMHTML_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_IMHTML, GtkIMHtmlClass)) | |
36 #define GTK_IS_IMHTML(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_IMHTML)) | |
37 #define GTK_IS_IMHTML_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IMHTML)) | |
38 | |
39 typedef gchar** (*GtkIMHtmlImage) (gchar *url); | |
40 | |
2349
60c716c32c40
[gaim-migrate @ 2362]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1780
diff
changeset
|
41 typedef struct _GtkSmileyTree GtkSmileyTree; |
4263 | 42 typedef struct _GtkIMHtmlSmiley GtkIMHtmlSmiley; |
2349
60c716c32c40
[gaim-migrate @ 2362]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1780
diff
changeset
|
43 |
1428 | 44 typedef struct _GtkIMHtml GtkIMHtml; |
45 typedef struct _GtkIMHtmlClass GtkIMHtmlClass; | |
46 | |
47 struct _GtkIMHtml { | |
3922 | 48 GtkTextView text_view; |
49 GtkTextBuffer *text_buffer; | |
50 GtkTextMark *end; | |
51 gboolean comments, smileys; | |
1428 | 52 GdkCursor *hand_cursor; |
53 GdkCursor *arrow_cursor; | |
4032 | 54 GHashTable *smiley_data; |
55 GtkSmileyTree *default_smilies; | |
4254 | 56 |
57 gboolean show_smileys; | |
58 gboolean show_comments; | |
4735 | 59 |
60 GtkWidget *tip_window; | |
61 char *tip; | |
62 guint tip_timer; | |
4895 | 63 |
64 GList *scalables; | |
4947 | 65 GdkRectangle old_rect; |
1428 | 66 }; |
67 | |
68 struct _GtkIMHtmlClass { | |
3922 | 69 GtkTextViewClass parent_class; |
1428 | 70 |
71 void (*url_clicked) (GtkIMHtml *, const gchar *); | |
72 }; | |
73 | |
4263 | 74 struct _GtkIMHtmlSmiley { |
75 gchar *smile; | |
76 gchar *file; | |
77 GdkPixbuf *icon; | |
78 gboolean hidden; | |
79 }; | |
80 | |
1428 | 81 typedef enum |
82 { | |
83 GTK_IMHTML_NO_COLOURS = 1 << 0, | |
84 GTK_IMHTML_NO_FONTS = 1 << 1, | |
85 GTK_IMHTML_NO_COMMENTS = 1 << 2, | |
86 GTK_IMHTML_NO_TITLE = 1 << 3, | |
87 GTK_IMHTML_NO_NEWLINE = 1 << 4, | |
88 GTK_IMHTML_NO_SIZES = 1 << 5, | |
89 GTK_IMHTML_NO_SCROLL = 1 << 6, | |
90 GTK_IMHTML_RETURN_LOG = 1 << 7 | |
91 } GtkIMHtmlOptions; | |
92 | |
93 GtkType gtk_imhtml_get_type (void); | |
3922 | 94 GtkWidget* gtk_imhtml_new (void *, void *); |
1428 | 95 |
96 void gtk_imhtml_set_adjustments (GtkIMHtml *imhtml, | |
97 GtkAdjustment *hadj, | |
98 GtkAdjustment *vadj); | |
99 | |
100 void gtk_imhtml_associate_smiley (GtkIMHtml *imhtml, | |
4032 | 101 gchar *sml, |
4263 | 102 GtkIMHtmlSmiley *smiley); |
1428 | 103 |
2728
16df889d81e2
[gaim-migrate @ 2741]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2363
diff
changeset
|
104 void gtk_imhtml_remove_smileys (GtkIMHtml *imhtml); |
16df889d81e2
[gaim-migrate @ 2741]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2363
diff
changeset
|
105 |
1428 | 106 void gtk_imhtml_show_smileys (GtkIMHtml *imhtml, |
107 gboolean show); | |
108 | |
109 void gtk_imhtml_show_comments (GtkIMHtml *imhtml, | |
110 gboolean show); | |
111 | |
112 GString* gtk_imhtml_append_text (GtkIMHtml *imhtml, | |
113 const gchar *text, | |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2728
diff
changeset
|
114 gint len, |
1428 | 115 GtkIMHtmlOptions options); |
116 | |
1780
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1574
diff
changeset
|
117 void gtk_imhtml_clear (GtkIMHtml *imhtml); |
d7cbedd1d651
[gaim-migrate @ 1790]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1574
diff
changeset
|
118 |
2363
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
119 void gtk_imhtml_page_up (GtkIMHtml *imhtml); |
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
120 |
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
121 void gtk_imhtml_page_down (GtkIMHtml *imhtml); |
3867 | 122 void gtk_imhtml_to_bottom (GtkIMHtml *imhtml); |
2363
08c66712364c
[gaim-migrate @ 2376]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2349
diff
changeset
|
123 |
4895 | 124 /* GtkIMHtmlScalable, gaim_im_image, and gaim_hr */ |
125 | |
126 typedef struct _GtkIMHtmlScalable GtkIMHtmlScalable; | |
127 #define GTK_IMHTML_SCALABLE(x) ((GtkIMHtmlScalable *)x) | |
128 | |
129 struct _GtkIMHtmlScalable{ | |
130 void (*scale)(struct _GtkIMHtmlScalable *, int, int); | |
131 void (*add_to)(struct _GtkIMHtmlScalable *, GtkIMHtml *, GtkTextIter *); | |
132 void (*free)(struct _GtkIMHtmlScalable *); | |
133 }; | |
134 | |
135 typedef struct { | |
136 GtkIMHtmlScalable scalable; | |
137 GdkPixbuf *image; | |
138 GtkIMHtml *imhtml; | |
139 GtkTextMark *mark; | |
140 int width; | |
141 int height; | |
142 } gaim_im_image; | |
143 | |
144 typedef struct { | |
145 GtkIMHtmlScalable scalable; | |
146 GtkWidget *sep; | |
147 } gaim_hr; | |
148 | |
149 GtkIMHtmlScalable *gtk_imhtml_scalable_new(); | |
150 | |
151 GtkIMHtmlScalable *gaim_im_image_new(GdkPixbuf *img); | |
152 | |
153 void gaim_im_image_free(GtkIMHtmlScalable *); | |
154 | |
155 void gaim_im_image_scale(GtkIMHtmlScalable *, int, int); | |
156 | |
157 void gaim_im_image_add_to(GtkIMHtmlScalable *, GtkIMHtml *, GtkTextIter *); | |
158 | |
159 GtkIMHtmlScalable *gaim_hr_new(); | |
160 | |
161 void gaim_hr_free(GtkIMHtmlScalable *); | |
162 | |
163 void gaim_hr_scale(GtkIMHtmlScalable *, int, int); | |
164 | |
165 void gaim_hr_add_to(GtkIMHtmlScalable *, GtkIMHtml *, GtkTextIter *); | |
166 | |
167 | |
168 | |
1428 | 169 #ifdef __cplusplus |
170 } | |
171 #endif | |
172 | |
173 #endif |