Mercurial > pidgin
annotate src/gtkconv.h @ 6758:424647996866
[gaim-migrate @ 7290]
SSL in GNUTLS no longer blocks everything. Now it uses the input watchers,
as it should.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sat, 06 Sep 2003 00:47:24 +0000 |
parents | e9974608b319 |
children | 8eebba08b44b |
rev | line source |
---|---|
4359 | 1 /** |
2 * @file gtkconv.h GTK+ Conversation API | |
5034
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
3 * @ingroup gtkui |
4359 | 4 * |
5 * gaim | |
6 * | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5676
diff
changeset
|
7 * Copyright (C) 2002-2003 Christian Hammond <chipx86@gnupdate.org> |
4359 | 8 * |
9 * This program is free software; you can redistribute it and/or modify | |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 */ | |
23 | |
24 #ifndef _GAIM_GTK_CONVERSATION_H_ | |
25 #define _GAIM_GTK_CONVERSATION_H_ | |
26 | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
27 #include "conversation.h" |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
28 |
4359 | 29 /************************************************************************** |
30 * @name Structures | |
31 **************************************************************************/ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
32 /*@{*/ |
4359 | 33 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
34 typedef struct _GaimGtkWindow GaimGtkWindow; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
35 typedef struct _GaimGtkImPane GaimGtkImPane; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
36 typedef struct _GaimGtkChatPane GaimGtkChatPane; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
37 typedef struct _GaimGtkConversation GaimGtkConversation; |
4359 | 38 |
39 /** | |
40 * A GTK+ representation of a graphical window containing one or more | |
41 * conversations. | |
42 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
43 struct _GaimGtkWindow |
4359 | 44 { |
45 GtkWidget *window; /**< The window. */ | |
46 GtkWidget *notebook; /**< The notebook of conversations. */ | |
47 | |
48 struct | |
49 { | |
50 GtkWidget *menubar; | |
51 | |
5167 | 52 GtkWidget *view_log; |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
53 |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
54 GtkWidget *add_pounce; |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
55 GtkWidget *alias; |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
56 GtkWidget *get_info; |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
57 GtkWidget *invite; |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
58 |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
59 GtkWidget *warn; |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
60 GtkWidget *block; |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
61 GtkWidget *add; |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
62 GtkWidget *remove; |
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
63 |
4359 | 64 GtkWidget *insert_link; |
65 GtkWidget *insert_image; | |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
66 |
4359 | 67 GtkWidget *logging; |
68 GtkWidget *sounds; | |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
69 |
4359 | 70 GtkWidget *send_as; |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
71 |
4736 | 72 GtkWidget *typing_icon; |
4359 | 73 |
4630 | 74 GtkItemFactory *item_factory; |
75 | |
4359 | 76 } menu; |
77 | |
78 /* Tab dragging stuff. */ | |
79 gboolean in_drag; | |
80 gboolean in_predrag; | |
81 | |
82 gint drag_min_x, drag_max_x, drag_min_y, drag_max_y; | |
83 | |
84 gint drag_motion_signal; | |
85 gint drag_leave_signal; | |
86 }; | |
87 | |
88 /** | |
89 * GTK+ Instant Message panes. | |
90 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
91 struct _GaimGtkImPane |
4359 | 92 { |
93 GtkWidget *warn; | |
94 GtkWidget *block; | |
95 GtkWidget *add; | |
96 GtkWidget *sep1; | |
97 GtkWidget *sep2; | |
98 GtkWidget *check; | |
99 GtkWidget *progress; | |
100 | |
101 gboolean a_virgin; | |
102 | |
103 /* Buddy icon stuff */ | |
104 GtkWidget *icon; | |
105 GdkPixbufAnimation *anim; | |
106 GdkPixbufAnimationIter *iter; | |
107 guint32 icon_timer; | |
108 GtkWidget *save_icon; | |
109 }; | |
110 | |
111 /** | |
112 * GTK+ Chat panes. | |
113 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
114 struct _GaimGtkChatPane |
4359 | 115 { |
116 GtkWidget *count; | |
117 GtkWidget *list; | |
118 GtkWidget *whisper; | |
119 GtkWidget *invite; | |
120 GtkWidget *topic_text; | |
121 }; | |
122 | |
123 /** | |
124 * A GTK+ conversation pane. | |
125 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
126 struct _GaimGtkConversation |
4359 | 127 { |
128 gboolean make_sound; | |
129 gboolean has_font; | |
130 char fontface[128]; | |
131 GdkColor fg_color; | |
132 GdkColor bg_color; | |
133 | |
134 GtkTooltips *tooltips; | |
135 | |
136 GtkWidget *tab_cont; | |
137 GtkWidget *tabby; | |
138 | |
139 GtkWidget *imhtml; | |
140 GtkTextBuffer *entry_buffer; | |
141 GtkWidget *entry; | |
142 | |
143 GtkWidget *send; | |
144 GtkWidget *info; | |
145 GtkWidget *close; | |
6392
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
5908
diff
changeset
|
146 GtkWidget *icon; |
4359 | 147 GtkWidget *tab_label; |
148 GtkSizeGroup *sg; | |
149 | |
150 GtkWidget *bbox; | |
151 GtkWidget *sw; | |
152 | |
153 struct | |
154 { | |
155 GtkWidget *toolbar; | |
4685 | 156 |
4359 | 157 GtkWidget *bold; |
158 GtkWidget *italic; | |
159 GtkWidget *underline; | |
160 | |
5049 | 161 GtkWidget *larger_size; |
4359 | 162 GtkWidget *normal_size; |
5049 | 163 GtkWidget *smaller_size; |
4359 | 164 |
4685 | 165 GtkWidget *font; |
4359 | 166 GtkWidget *fgcolor; |
167 GtkWidget *bgcolor; | |
168 | |
169 GtkWidget *image; | |
170 GtkWidget *link; | |
171 GtkWidget *smiley; | |
172 GtkWidget *log; | |
4685 | 173 |
4359 | 174 } toolbar; |
175 | |
176 struct | |
177 { | |
178 GtkWidget *fg_color; | |
179 GtkWidget *bg_color; | |
180 GtkWidget *font; | |
181 GtkWidget *smiley; | |
182 GtkWidget *link; | |
5106 | 183 GtkWidget *image; |
4359 | 184 GtkWidget *log; |
185 | |
186 } dialogs; | |
187 | |
188 union | |
189 { | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
190 GaimGtkImPane *im; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
191 GaimGtkChatPane *chat; |
4359 | 192 |
193 } u; | |
194 }; | |
195 | |
196 #define GAIM_GTK_WINDOW(win) \ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
197 ((GaimGtkWindow *)(win)->ui_data) |
4359 | 198 |
199 #define GAIM_GTK_CONVERSATION(conv) \ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
200 ((GaimGtkConversation *)(conv)->ui_data) |
4359 | 201 |
4384
8f633419c837
[gaim-migrate @ 4650]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
202 #define GAIM_IS_GTK_WINDOW(win) \ |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4445
diff
changeset
|
203 (gaim_window_get_ui_ops(win) == gaim_get_gtk_window_ui_ops()) |
4384
8f633419c837
[gaim-migrate @ 4650]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
204 |
8f633419c837
[gaim-migrate @ 4650]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
205 #define GAIM_IS_GTK_CONVERSATION(conv) \ |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4445
diff
changeset
|
206 (gaim_conversation_get_ui_ops(conv) == gaim_get_gtk_conversation_ui_ops()) |
4359 | 207 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
208 /*@}*/ |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
209 |
4359 | 210 /************************************************************************** |
211 * @name GTK+ Conversation API | |
212 **************************************************************************/ | |
5673
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
213 /*@{*/ |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
214 |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
215 /** |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
216 * Initializes the GTK+ conversation system. |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
217 */ |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
218 void gaim_gtk_conversation_init(void); |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
219 |
4359 | 220 /** |
221 * Returns the UI operations structure for GTK windows. | |
222 * | |
223 * @return The GTK window operations structure. | |
224 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
225 GaimWindowUiOps *gaim_get_gtk_window_ui_ops(void); |
4359 | 226 |
227 /** | |
228 * Returns the UI operations structure for GTK conversations. | |
229 * | |
230 * @return The GTK conversation operations structure. | |
231 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
232 GaimConversationUiOps *gaim_get_gtk_conversation_ui_ops(void); |
4359 | 233 |
234 /** | |
235 * Updates the buddy icon on a conversation. | |
236 * | |
237 * @param conv The conversation. | |
238 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
239 void gaim_gtkconv_update_buddy_icon(GaimConversation *conv); |
4359 | 240 |
241 /** | |
242 * Updates the font buttons on all conversations to reflect any changed | |
243 * preferences. | |
244 */ | |
245 void gaim_gtkconv_update_font_buttons(void); | |
246 | |
247 /** | |
4421 | 248 * Updates the font colors of each conversation to the new colors |
249 * chosen in the prefs dialog. | |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
250 * |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
251 * @param conv The conversation to update. |
4421 | 252 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
253 void gaim_gtkconv_update_font_colors(GaimConversation *conv); |
4421 | 254 |
255 /** | |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
256 * Updates the font faces of each conversation to the new font |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
257 * face chosen in the prefs dialog. |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
258 * |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
259 * @param conv The conversation to update. |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
260 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
261 void gaim_gtkconv_update_font_face(GaimConversation *conv); |
4438
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
262 |
2054d8429925
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
263 /** |
4359 | 264 * Updates the tab positions on all conversation windows to reflect any |
265 * changed preferences. | |
266 */ | |
267 void gaim_gtkconv_update_tabs(void); | |
268 | |
269 /** | |
270 * Updates the button style on chat windows to reflect any | |
271 * changed preferences. | |
272 */ | |
273 void gaim_gtkconv_update_chat_button_style(); | |
274 | |
275 /** | |
276 * Updates the button style on IM windows to reflect any | |
277 * changed preferences. | |
278 */ | |
279 void gaim_gtkconv_update_im_button_style(); | |
280 | |
281 /** | |
282 * Updates conversation buttons by protocol. | |
283 * | |
284 * @param conv The conversation. | |
285 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
286 void gaim_gtkconv_update_buttons_by_protocol(GaimConversation *conv); |
4359 | 287 |
288 /** | |
289 * Returns the window at the specified X, Y location. | |
290 * | |
291 * If the window is not a GTK+ window, @c NULL is returned. | |
292 * | |
293 * @param x The X coordinate. | |
294 * @param y The Y coordinate. | |
295 * | |
296 * @return The GTK+ window at the location, if it exists, or @c NULL otherwise. | |
297 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
298 GaimWindow *gaim_gtkwin_get_at_xy(int x, int y); |
4359 | 299 |
300 /** | |
301 * Returns the index of the tab at the specified X, Y location in a notebook. | |
302 * | |
303 * @param win The GTK+ window containing the notebook. | |
304 * @param x The X coordinate. | |
305 * @param y The Y coordinate. | |
306 * | |
307 * @return The index of the tab at the location. | |
308 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
309 int gaim_gtkconv_get_tab_at_xy(GaimWindow *win, int x, int y); |
4359 | 310 |
311 /** | |
312 * Returns the index of the destination tab at the | |
313 * specified X, Y location in a notebook. | |
314 * | |
315 * This is used for drag-and-drop functions when the tab at the index | |
316 * is a destination tab. | |
317 * | |
318 * @param win The GTK+ window containing the notebook. | |
319 * @param x The X coordinate. | |
320 * @param y The Y coordinate. | |
321 * | |
322 * @return The index of the tab at the location. | |
323 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
324 int gaim_gtkconv_get_dest_tab_at_xy(GaimWindow *win, int x, int y); |
4359 | 325 |
5673
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
326 /*@}*/ |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
327 |
4359 | 328 #endif /* _GAIM_GTK_CONVERSATION_H_ */ |