Mercurial > pidgin.yaz
annotate src/gtkconv.h @ 10197:7369bf2bf593
[gaim-migrate @ 11314]
More status fixes. Oscar kind of works... you can set yourself away,
invisible and available, but you can't choose the message for away,
can't choose an available message, and invisible only seems to work
the first time.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 17 Nov 2004 01:32:06 +0000 |
parents | 53410b84336f |
children | 393750603513 |
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 * | |
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. | |
7326
00a9ab26d607
[gaim-migrate @ 7912]
Christian Hammond <chipx86@chipx86.com>
parents:
7295
diff
changeset
|
10 * |
4359 | 11 * This program is free software; you can redistribute it and/or modify |
12 * it 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 */ | |
9713 | 25 #ifndef _GAIM_GTKCONVERSATION_H_ |
26 #define _GAIM_GTKCONVERSATION_H_ | |
4359 | 27 |
10008 | 28 typedef struct _GaimGtkWindow GaimGtkWindow; |
29 typedef struct _GaimGtkImPane GaimGtkImPane; | |
30 typedef struct _GaimGtkChatPane GaimGtkChatPane; | |
31 typedef struct _GaimGtkConversation GaimGtkConversation; | |
9709 | 32 |
9498 | 33 enum { |
34 CHAT_USERS_ICON_COLUMN, | |
35 CHAT_USERS_NAME_COLUMN, | |
9554 | 36 CHAT_USERS_FLAGS_COLUMN, |
9498 | 37 CHAT_USERS_COLUMNS |
38 }; | |
39 | |
10008 | 40 #define GAIM_GTK_WINDOW(win) \ |
41 ((GaimGtkWindow *)(win)->ui_data) | |
42 | |
43 #define GAIM_GTK_CONVERSATION(conv) \ | |
44 ((GaimGtkConversation *)(conv)->ui_data) | |
45 | |
46 #define GAIM_IS_GTK_WINDOW(win) \ | |
47 (gaim_conv_window_get_ui_ops(win) == gaim_gtk_conversations_get_win_ui_ops()) | |
48 | |
49 #define GAIM_IS_GTK_CONVERSATION(conv) \ | |
50 (gaim_conversation_get_ui_ops(conv) == \ | |
51 gaim_gtk_conversations_get_conv_ui_ops()) | |
52 | |
53 #include "gtkgaim.h" | |
54 #include "conversation.h" | |
55 | |
4359 | 56 /************************************************************************** |
57 * @name Structures | |
58 **************************************************************************/ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
59 /*@{*/ |
4359 | 60 |
61 /** | |
62 * A GTK+ representation of a graphical window containing one or more | |
63 * conversations. | |
64 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
65 struct _GaimGtkWindow |
4359 | 66 { |
67 GtkWidget *window; /**< The window. */ | |
68 GtkWidget *notebook; /**< The notebook of conversations. */ | |
69 | |
70 struct | |
71 { | |
72 GtkWidget *menubar; | |
73 | |
5167 | 74 GtkWidget *view_log; |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
75 |
9468 | 76 GtkWidget *send_file; |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
77 GtkWidget *add_pounce; |
7887 | 78 GtkWidget *get_info; |
79 GtkWidget *warn; | |
80 GtkWidget *invite; | |
81 | |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
82 GtkWidget *alias; |
7887 | 83 GtkWidget *block; |
84 GtkWidget *add; | |
85 GtkWidget *remove; | |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
86 |
7859 | 87 GtkWidget *insert_link; |
88 GtkWidget *insert_image; | |
89 | |
4359 | 90 GtkWidget *logging; |
91 GtkWidget *sounds; | |
7326
00a9ab26d607
[gaim-migrate @ 7912]
Christian Hammond <chipx86@chipx86.com>
parents:
7295
diff
changeset
|
92 GtkWidget *show_formatting_toolbar; |
9188 | 93 GtkWidget *show_timestamps; |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
94 |
4359 | 95 GtkWidget *send_as; |
5908
ed8a9a3bf7e2
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
96 |
4736 | 97 GtkWidget *typing_icon; |
4359 | 98 |
4630 | 99 GtkItemFactory *item_factory; |
100 | |
4359 | 101 } menu; |
102 | |
103 /* Tab dragging stuff. */ | |
104 gboolean in_drag; | |
105 gboolean in_predrag; | |
106 | |
107 gint drag_min_x, drag_max_x, drag_min_y, drag_max_y; | |
108 | |
109 gint drag_motion_signal; | |
110 gint drag_leave_signal; | |
111 }; | |
112 | |
113 /** | |
7820 | 114 * A GTK+ Instant Message pane. |
4359 | 115 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
116 struct _GaimGtkImPane |
4359 | 117 { |
118 GtkWidget *block; | |
9468 | 119 GtkWidget *send_file; |
4359 | 120 GtkWidget *sep1; |
121 GtkWidget *sep2; | |
122 GtkWidget *check; | |
123 GtkWidget *progress; | |
124 | |
125 gboolean a_virgin; | |
126 | |
127 /* Buddy icon stuff */ | |
9885 | 128 GtkWidget *icon_container; |
4359 | 129 GtkWidget *icon; |
9687 | 130 gboolean show_icon; |
8189 | 131 gboolean animate; |
4359 | 132 GdkPixbufAnimation *anim; |
133 GdkPixbufAnimationIter *iter; | |
134 guint32 icon_timer; | |
135 }; | |
136 | |
137 /** | |
138 * GTK+ Chat panes. | |
139 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
140 struct _GaimGtkChatPane |
4359 | 141 { |
142 GtkWidget *count; | |
143 GtkWidget *list; | |
144 GtkWidget *invite; | |
145 GtkWidget *topic_text; | |
7996
334ab1319406
[gaim-migrate @ 8673]
Christian Hammond <chipx86@chipx86.com>
parents:
7930
diff
changeset
|
146 GtkWidget *sep; |
4359 | 147 }; |
148 | |
149 /** | |
150 * A GTK+ conversation pane. | |
151 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
152 struct _GaimGtkConversation |
4359 | 153 { |
154 gboolean make_sound; | |
7326
00a9ab26d607
[gaim-migrate @ 7912]
Christian Hammond <chipx86@chipx86.com>
parents:
7295
diff
changeset
|
155 gboolean show_formatting_toolbar; |
9188 | 156 gboolean show_timestamps; |
4359 | 157 |
158 GtkTooltips *tooltips; | |
159 | |
160 GtkWidget *tab_cont; | |
161 GtkWidget *tabby; | |
6771
8eebba08b44b
[gaim-migrate @ 7308]
Christian Hammond <chipx86@chipx86.com>
parents:
6392
diff
changeset
|
162 GtkWidget *menu_tabby; |
4359 | 163 |
164 GtkWidget *imhtml; | |
165 GtkTextBuffer *entry_buffer; | |
166 GtkWidget *entry; | |
167 | |
7930 | 168 GtkWidget *add; |
169 GtkWidget *remove; | |
4359 | 170 GtkWidget *info; |
7930 | 171 GtkWidget *send; |
172 GtkWidget *close; /* "x" on the tab */ | |
6392
e9974608b319
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
5908
diff
changeset
|
173 GtkWidget *icon; |
4359 | 174 GtkWidget *tab_label; |
6771
8eebba08b44b
[gaim-migrate @ 7308]
Christian Hammond <chipx86@chipx86.com>
parents:
6392
diff
changeset
|
175 GtkWidget *menu_icon; |
8eebba08b44b
[gaim-migrate @ 7308]
Christian Hammond <chipx86@chipx86.com>
parents:
6392
diff
changeset
|
176 GtkWidget *menu_label; |
4359 | 177 GtkSizeGroup *sg; |
178 | |
179 GtkWidget *bbox; | |
9332 | 180 GtkWidget *lower_hbox; |
4359 | 181 |
8317 | 182 GtkWidget *toolbar; |
4359 | 183 |
184 struct | |
185 { | |
5106 | 186 GtkWidget *image; |
7295 | 187 GtkWidget *search; |
4359 | 188 |
189 } dialogs; | |
190 | |
191 union | |
192 { | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
193 GaimGtkImPane *im; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
194 GaimGtkChatPane *chat; |
4359 | 195 |
196 } u; | |
197 }; | |
198 | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
199 /*@}*/ |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
200 |
4359 | 201 /************************************************************************** |
202 * @name GTK+ Conversation API | |
203 **************************************************************************/ | |
5673
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
204 /*@{*/ |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
205 |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
206 /** |
4359 | 207 * Returns the UI operations structure for GTK windows. |
208 * | |
209 * @return The GTK window operations structure. | |
210 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
211 GaimConvWindowUiOps *gaim_gtk_conversations_get_win_ui_ops(void); |
4359 | 212 |
213 /** | |
214 * Returns the UI operations structure for GTK conversations. | |
215 * | |
216 * @return The GTK conversation operations structure. | |
217 */ | |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6771
diff
changeset
|
218 GaimConversationUiOps *gaim_gtk_conversations_get_conv_ui_ops(void); |
4359 | 219 |
220 /** | |
221 * Updates the buddy icon on a conversation. | |
222 * | |
223 * @param conv The conversation. | |
224 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
225 void gaim_gtkconv_update_buddy_icon(GaimConversation *conv); |
4359 | 226 |
227 /** | |
228 * Updates the tab positions on all conversation windows to reflect any | |
229 * changed preferences. | |
230 */ | |
231 void gaim_gtkconv_update_tabs(void); | |
232 | |
233 /** | |
234 * Updates the button style on chat windows to reflect any | |
235 * changed preferences. | |
236 */ | |
237 void gaim_gtkconv_update_chat_button_style(); | |
238 | |
239 /** | |
240 * Updates the button style on IM windows to reflect any | |
241 * changed preferences. | |
242 */ | |
243 void gaim_gtkconv_update_im_button_style(); | |
244 | |
245 /** | |
246 * Updates conversation buttons by protocol. | |
247 * | |
248 * @param conv The conversation. | |
249 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
250 void gaim_gtkconv_update_buttons_by_protocol(GaimConversation *conv); |
4359 | 251 |
252 /** | |
9759 | 253 * Creates a conversation button |
254 * | |
255 * @param icon The stock icon name. | |
256 * @param text The text for the button. | |
257 * @param tooltip The tooltip text. | |
258 * @param tooltips The group of tooltips. | |
259 * @param callback A function to call when the button is clicked. | |
260 * @param data Data to pass to the callback. | |
261 * | |
262 * @return The button | |
263 */ | |
264 GtkWidget *gaim_gtkconv_button_new(const char *icon, const char *text, | |
265 const char *tooltip, GtkTooltips *tooltips, | |
266 void *callback, void *data); | |
267 | |
268 /** | |
4359 | 269 * Returns the window at the specified X, Y location. |
270 * | |
271 * If the window is not a GTK+ window, @c NULL is returned. | |
272 * | |
273 * @param x The X coordinate. | |
274 * @param y The Y coordinate. | |
275 * | |
276 * @return The GTK+ window at the location, if it exists, or @c NULL otherwise. | |
277 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
278 GaimConvWindow *gaim_gtkwin_get_at_xy(int x, int y); |
4359 | 279 |
280 /** | |
281 * Returns the index of the tab at the specified X, Y location in a notebook. | |
282 * | |
283 * @param win The GTK+ window containing the notebook. | |
284 * @param x The X coordinate. | |
285 * @param y The Y coordinate. | |
286 * | |
287 * @return The index of the tab at the location. | |
288 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
289 int gaim_gtkconv_get_tab_at_xy(GaimConvWindow *win, int x, int y); |
4359 | 290 |
291 /** | |
292 * Returns the index of the destination tab at the | |
293 * specified X, Y location in a notebook. | |
294 * | |
295 * This is used for drag-and-drop functions when the tab at the index | |
296 * is a destination tab. | |
297 * | |
298 * @param win The GTK+ window containing the notebook. | |
299 * @param x The X coordinate. | |
300 * @param y The Y coordinate. | |
301 * | |
302 * @return The index of the tab at the location. | |
303 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
304 int gaim_gtkconv_get_dest_tab_at_xy(GaimConvWindow *win, int x, int y); |
4359 | 305 |
5673
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
306 /*@}*/ |
62f57ec16f29
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
307 |
8582
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
308 /**************************************************************************/ |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
309 /** @name GTK+ Conversations Subsystem */ |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
310 /**************************************************************************/ |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
311 /*@{*/ |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
312 |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
313 /** |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
314 * Returns the gtk conversations subsystem handle. |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
315 * |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
316 * @return The conversations subsystem handle. |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
317 */ |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
318 void *gaim_gtk_conversations_get_handle(void); |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
319 |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
320 /** |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
321 * Initializes the GTK+ conversations subsystem. |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
322 */ |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
323 void gaim_gtk_conversations_init(void); |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
324 |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
325 /** |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
326 * Uninitialized the GTK+ conversation subsystem. |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
327 */ |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
328 void gaim_gtk_conversations_uninit(void); |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
329 |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
330 /*@}*/ |
d7c85220c685
[gaim-migrate @ 9332]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
331 |
9713 | 332 #endif /* _GAIM_GTKCONVERSATION_H_ */ |