Mon, 03 May 2004 17:49:27 +0000
[gaim-migrate @ 9629]
Nickolai Zeldovich noticed a missing \n
committer: Luke Schierer <lschiere@pidgin.im>
| 4359 | 1 | /** |
| 2 | * @file gtkconv.h GTK+ Conversation API | |
|
5034
077678f7b048
[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
599c9e8c9da4
[gaim-migrate @ 7912]
Nathan Fredrickson <nathan@silverorange.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 | */ | |
| 25 | ||
| 26 | #ifndef _GAIM_GTK_CONVERSATION_H_ | |
| 27 | #define _GAIM_GTK_CONVERSATION_H_ | |
| 28 | ||
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
29 | #include "conversation.h" |
|
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
30 | |
| 4359 | 31 | /************************************************************************** |
| 32 | * @name Structures | |
| 33 | **************************************************************************/ | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
34 | /*@{*/ |
| 4359 | 35 | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
36 | typedef struct _GaimGtkWindow GaimGtkWindow; |
|
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
37 | typedef struct _GaimGtkImPane GaimGtkImPane; |
|
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
38 | typedef struct _GaimGtkChatPane GaimGtkChatPane; |
|
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
39 | typedef struct _GaimGtkConversation GaimGtkConversation; |
| 4359 | 40 | |
| 41 | /** | |
| 42 | * A GTK+ representation of a graphical window containing one or more | |
| 43 | * conversations. | |
| 44 | */ | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
45 | struct _GaimGtkWindow |
| 4359 | 46 | { |
| 47 | GtkWidget *window; /**< The window. */ | |
| 48 | GtkWidget *notebook; /**< The notebook of conversations. */ | |
| 49 | ||
| 50 | struct | |
| 51 | { | |
| 52 | GtkWidget *menubar; | |
| 53 | ||
|
5167
e6674b684b55
[gaim-migrate @ 5531]
Mark Doliner <markdoliner@pidgin.im>
parents:
5106
diff
changeset
|
54 | GtkWidget *view_log; |
|
5908
47ad3b3798ac
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
55 | |
|
47ad3b3798ac
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
56 | GtkWidget *add_pounce; |
|
7887
4b2925a88897
[gaim-migrate @ 8545]
Mark Doliner <markdoliner@pidgin.im>
parents:
7859
diff
changeset
|
57 | GtkWidget *get_info; |
|
4b2925a88897
[gaim-migrate @ 8545]
Mark Doliner <markdoliner@pidgin.im>
parents:
7859
diff
changeset
|
58 | GtkWidget *warn; |
|
4b2925a88897
[gaim-migrate @ 8545]
Mark Doliner <markdoliner@pidgin.im>
parents:
7859
diff
changeset
|
59 | GtkWidget *invite; |
|
4b2925a88897
[gaim-migrate @ 8545]
Mark Doliner <markdoliner@pidgin.im>
parents:
7859
diff
changeset
|
60 | |
|
5908
47ad3b3798ac
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
61 | GtkWidget *alias; |
|
7887
4b2925a88897
[gaim-migrate @ 8545]
Mark Doliner <markdoliner@pidgin.im>
parents:
7859
diff
changeset
|
62 | GtkWidget *block; |
|
4b2925a88897
[gaim-migrate @ 8545]
Mark Doliner <markdoliner@pidgin.im>
parents:
7859
diff
changeset
|
63 | GtkWidget *add; |
|
4b2925a88897
[gaim-migrate @ 8545]
Mark Doliner <markdoliner@pidgin.im>
parents:
7859
diff
changeset
|
64 | GtkWidget *remove; |
|
5908
47ad3b3798ac
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
65 | |
|
7859
b0f646df7125
[gaim-migrate @ 8513]
Mark Doliner <markdoliner@pidgin.im>
parents:
7820
diff
changeset
|
66 | GtkWidget *insert_link; |
|
b0f646df7125
[gaim-migrate @ 8513]
Mark Doliner <markdoliner@pidgin.im>
parents:
7820
diff
changeset
|
67 | GtkWidget *insert_image; |
|
b0f646df7125
[gaim-migrate @ 8513]
Mark Doliner <markdoliner@pidgin.im>
parents:
7820
diff
changeset
|
68 | |
| 4359 | 69 | GtkWidget *logging; |
| 70 | GtkWidget *sounds; | |
|
7326
599c9e8c9da4
[gaim-migrate @ 7912]
Nathan Fredrickson <nathan@silverorange.com>
parents:
7295
diff
changeset
|
71 | GtkWidget *show_formatting_toolbar; |
|
5908
47ad3b3798ac
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
72 | |
| 4359 | 73 | GtkWidget *send_as; |
|
5908
47ad3b3798ac
[gaim-migrate @ 6340]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
74 | |
| 4736 | 75 | GtkWidget *typing_icon; |
| 4359 | 76 | |
| 4630 | 77 | GtkItemFactory *item_factory; |
| 78 | ||
| 4359 | 79 | } menu; |
| 80 | ||
| 81 | /* Tab dragging stuff. */ | |
| 82 | gboolean in_drag; | |
| 83 | gboolean in_predrag; | |
| 84 | ||
| 85 | gint drag_min_x, drag_max_x, drag_min_y, drag_max_y; | |
| 86 | ||
| 87 | gint drag_motion_signal; | |
| 88 | gint drag_leave_signal; | |
| 89 | }; | |
| 90 | ||
| 91 | /** | |
|
7820
06fc9f66d2cb
[gaim-migrate @ 8472]
Mark Doliner <markdoliner@pidgin.im>
parents:
7650
diff
changeset
|
92 | * A GTK+ Instant Message pane. |
| 4359 | 93 | */ |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
94 | struct _GaimGtkImPane |
| 4359 | 95 | { |
| 96 | GtkWidget *warn; | |
| 97 | GtkWidget *block; | |
| 98 | GtkWidget *sep1; | |
| 99 | GtkWidget *sep2; | |
| 100 | GtkWidget *check; | |
| 101 | GtkWidget *progress; | |
| 102 | ||
| 103 | gboolean a_virgin; | |
| 104 | ||
| 105 | /* Buddy icon stuff */ | |
| 106 | GtkWidget *icon; | |
| 8189 | 107 | gboolean animate; |
| 4359 | 108 | GdkPixbufAnimation *anim; |
| 109 | GdkPixbufAnimationIter *iter; | |
| 110 | guint32 icon_timer; | |
| 111 | GtkWidget *save_icon; | |
| 112 | }; | |
| 113 | ||
| 114 | /** | |
| 115 | * GTK+ Chat panes. | |
| 116 | */ | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
117 | struct _GaimGtkChatPane |
| 4359 | 118 | { |
| 119 | GtkWidget *count; | |
| 120 | GtkWidget *list; | |
| 121 | GtkWidget *invite; | |
| 122 | GtkWidget *topic_text; | |
|
7996
c3a4e8b9dfd9
[gaim-migrate @ 8673]
Robert McQueen <robot101@debian.org>
parents:
7930
diff
changeset
|
123 | GtkWidget *sep; |
| 4359 | 124 | }; |
| 125 | ||
| 126 | /** | |
| 127 | * A GTK+ conversation pane. | |
| 128 | */ | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
129 | struct _GaimGtkConversation |
| 4359 | 130 | { |
| 131 | gboolean make_sound; | |
|
7326
599c9e8c9da4
[gaim-migrate @ 7912]
Nathan Fredrickson <nathan@silverorange.com>
parents:
7295
diff
changeset
|
132 | gboolean show_formatting_toolbar; |
| 4359 | 133 | gboolean has_font; |
| 134 | char fontface[128]; | |
| 135 | GdkColor fg_color; | |
| 136 | GdkColor bg_color; | |
| 137 | ||
| 138 | GtkTooltips *tooltips; | |
| 139 | ||
| 140 | GtkWidget *tab_cont; | |
| 141 | GtkWidget *tabby; | |
| 6771 | 142 | GtkWidget *menu_tabby; |
| 4359 | 143 | |
| 144 | GtkWidget *imhtml; | |
| 145 | GtkTextBuffer *entry_buffer; | |
| 146 | GtkWidget *entry; | |
| 147 | ||
|
7930
3005873ac411
[gaim-migrate @ 8601]
Mark Doliner <markdoliner@pidgin.im>
parents:
7887
diff
changeset
|
148 | GtkWidget *add; |
|
3005873ac411
[gaim-migrate @ 8601]
Mark Doliner <markdoliner@pidgin.im>
parents:
7887
diff
changeset
|
149 | GtkWidget *remove; |
| 4359 | 150 | GtkWidget *info; |
|
7930
3005873ac411
[gaim-migrate @ 8601]
Mark Doliner <markdoliner@pidgin.im>
parents:
7887
diff
changeset
|
151 | GtkWidget *send; |
|
3005873ac411
[gaim-migrate @ 8601]
Mark Doliner <markdoliner@pidgin.im>
parents:
7887
diff
changeset
|
152 | GtkWidget *close; /* "x" on the tab */ |
|
6392
3db2b3c7b5aa
[gaim-migrate @ 6897]
Christian Hammond <chipx86@chipx86.com>
parents:
5908
diff
changeset
|
153 | GtkWidget *icon; |
| 4359 | 154 | GtkWidget *tab_label; |
| 6771 | 155 | GtkWidget *menu_icon; |
| 156 | GtkWidget *menu_label; | |
| 4359 | 157 | GtkSizeGroup *sg; |
| 158 | ||
| 159 | GtkWidget *bbox; | |
| 160 | GtkWidget *sw; | |
| 8821 | 161 | GtkWidget *entrybox; |
| 4359 | 162 | |
| 8317 | 163 | GtkWidget *toolbar; |
| 4359 | 164 | |
| 165 | struct | |
| 166 | { | |
| 5106 | 167 | GtkWidget *image; |
| 4359 | 168 | GtkWidget *log; |
| 7295 | 169 | GtkWidget *search; |
| 4359 | 170 | |
| 171 | } dialogs; | |
| 172 | ||
| 173 | union | |
| 174 | { | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
175 | GaimGtkImPane *im; |
|
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
176 | GaimGtkChatPane *chat; |
| 4359 | 177 | |
| 178 | } u; | |
| 179 | }; | |
| 180 | ||
| 181 | #define GAIM_GTK_WINDOW(win) \ | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
182 | ((GaimGtkWindow *)(win)->ui_data) |
| 4359 | 183 | |
| 184 | #define GAIM_GTK_CONVERSATION(conv) \ | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
185 | ((GaimGtkConversation *)(conv)->ui_data) |
| 4359 | 186 | |
|
4384
32592d368209
[gaim-migrate @ 4650]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
187 | #define GAIM_IS_GTK_WINDOW(win) \ |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
188 | (gaim_conv_window_get_ui_ops(win) == gaim_gtk_conversations_get_win_ui_ops()) |
|
4384
32592d368209
[gaim-migrate @ 4650]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
189 | |
|
32592d368209
[gaim-migrate @ 4650]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
190 | #define GAIM_IS_GTK_CONVERSATION(conv) \ |
|
7035
76bca80cd91d
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6771
diff
changeset
|
191 | (gaim_conversation_get_ui_ops(conv) == \ |
|
76bca80cd91d
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6771
diff
changeset
|
192 | gaim_gtk_conversations_get_conv_ui_ops()) |
| 4359 | 193 | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
194 | /*@}*/ |
|
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
195 | |
| 4359 | 196 | /************************************************************************** |
| 197 | * @name GTK+ Conversation API | |
| 198 | **************************************************************************/ | |
|
5673
47f654fb5134
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
199 | /*@{*/ |
|
47f654fb5134
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
200 | |
|
47f654fb5134
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
201 | /** |
| 4359 | 202 | * Returns the UI operations structure for GTK windows. |
| 203 | * | |
| 204 | * @return The GTK window operations structure. | |
| 205 | */ | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
206 | GaimConvWindowUiOps *gaim_gtk_conversations_get_win_ui_ops(void); |
| 4359 | 207 | |
| 208 | /** | |
| 209 | * Returns the UI operations structure for GTK conversations. | |
| 210 | * | |
| 211 | * @return The GTK conversation operations structure. | |
| 212 | */ | |
|
7035
76bca80cd91d
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6771
diff
changeset
|
213 | GaimConversationUiOps *gaim_gtk_conversations_get_conv_ui_ops(void); |
| 4359 | 214 | |
| 215 | /** | |
| 216 | * Updates the buddy icon on a conversation. | |
| 217 | * | |
| 218 | * @param conv The conversation. | |
| 219 | */ | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
220 | void gaim_gtkconv_update_buddy_icon(GaimConversation *conv); |
| 4359 | 221 | |
| 222 | /** | |
| 223 | * Updates the font buttons on all conversations to reflect any changed | |
| 224 | * preferences. | |
| 225 | */ | |
| 226 | void gaim_gtkconv_update_font_buttons(void); | |
| 227 | ||
| 228 | /** | |
| 4421 | 229 | * Updates the font colors of each conversation to the new colors |
| 230 | * chosen in the prefs dialog. | |
|
4438
9beaf48335fc
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
231 | * |
|
9beaf48335fc
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
232 | * @param conv The conversation to update. |
| 4421 | 233 | */ |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
234 | void gaim_gtkconv_update_font_colors(GaimConversation *conv); |
| 4421 | 235 | |
| 236 | /** | |
|
4438
9beaf48335fc
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
237 | * Updates the font faces of each conversation to the new font |
|
9beaf48335fc
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
238 | * face chosen in the prefs dialog. |
|
9beaf48335fc
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
239 | * |
|
9beaf48335fc
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
240 | * @param conv The conversation to update. |
|
9beaf48335fc
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
241 | */ |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
242 | void gaim_gtkconv_update_font_face(GaimConversation *conv); |
|
4438
9beaf48335fc
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
243 | |
|
9beaf48335fc
[gaim-migrate @ 4713]
Christian Hammond <chipx86@chipx86.com>
parents:
4421
diff
changeset
|
244 | /** |
| 4359 | 245 | * Updates the tab positions on all conversation windows to reflect any |
| 246 | * changed preferences. | |
| 247 | */ | |
| 248 | void gaim_gtkconv_update_tabs(void); | |
| 249 | ||
| 250 | /** | |
| 251 | * Updates the button style on chat windows to reflect any | |
| 252 | * changed preferences. | |
| 253 | */ | |
| 254 | void gaim_gtkconv_update_chat_button_style(); | |
| 255 | ||
| 256 | /** | |
| 257 | * Updates the button style on IM windows to reflect any | |
| 258 | * changed preferences. | |
| 259 | */ | |
| 260 | void gaim_gtkconv_update_im_button_style(); | |
| 261 | ||
| 262 | /** | |
| 263 | * Updates conversation buttons by protocol. | |
| 264 | * | |
| 265 | * @param conv The conversation. | |
| 266 | */ | |
|
5676
d3c2fdaf4821
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5674
diff
changeset
|
267 | void gaim_gtkconv_update_buttons_by_protocol(GaimConversation *conv); |
| 4359 | 268 | |
| 269 | /** | |
| 270 | * Returns the window at the specified X, Y location. | |
| 271 | * | |
| 272 | * If the window is not a GTK+ window, @c NULL is returned. | |
| 273 | * | |
| 274 | * @param x The X coordinate. | |
| 275 | * @param y The Y coordinate. | |
| 276 | * | |
| 277 | * @return The GTK+ window at the location, if it exists, or @c NULL otherwise. | |
| 278 | */ | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
279 | GaimConvWindow *gaim_gtkwin_get_at_xy(int x, int y); |
| 4359 | 280 | |
| 281 | /** | |
| 282 | * Returns the index of the tab at the specified X, Y location in a notebook. | |
| 283 | * | |
| 284 | * @param win The GTK+ window containing the notebook. | |
| 285 | * @param x The X coordinate. | |
| 286 | * @param y The Y coordinate. | |
| 287 | * | |
| 288 | * @return The index of the tab at the location. | |
| 289 | */ | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
290 | int gaim_gtkconv_get_tab_at_xy(GaimConvWindow *win, int x, int y); |
| 4359 | 291 | |
| 292 | /** | |
| 293 | * Returns the index of the destination tab at the | |
| 294 | * specified X, Y location in a notebook. | |
| 295 | * | |
| 296 | * This is used for drag-and-drop functions when the tab at the index | |
| 297 | * is a destination tab. | |
| 298 | * | |
| 299 | * @param win The GTK+ window containing the notebook. | |
| 300 | * @param x The X coordinate. | |
| 301 | * @param y The Y coordinate. | |
| 302 | * | |
| 303 | * @return The index of the tab at the location. | |
| 304 | */ | |
|
7118
280b3b85a28a
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
305 | int gaim_gtkconv_get_dest_tab_at_xy(GaimConvWindow *win, int x, int y); |
| 4359 | 306 | |
|
5673
47f654fb5134
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
307 | /*@}*/ |
|
47f654fb5134
[gaim-migrate @ 6091]
Christian Hammond <chipx86@chipx86.com>
parents:
5167
diff
changeset
|
308 | |
| 8582 | 309 | /**************************************************************************/ |
| 310 | /** @name GTK+ Conversations Subsystem */ | |
| 311 | /**************************************************************************/ | |
| 312 | /*@{*/ | |
| 313 | ||
| 314 | /** | |
| 315 | * Returns the gtk conversations subsystem handle. | |
| 316 | * | |
| 317 | * @return The conversations subsystem handle. | |
| 318 | */ | |
| 319 | void *gaim_gtk_conversations_get_handle(void); | |
| 320 | ||
| 321 | /** | |
| 322 | * Initializes the GTK+ conversations subsystem. | |
| 323 | */ | |
| 324 | void gaim_gtk_conversations_init(void); | |
| 325 | ||
| 326 | /** | |
| 327 | * Uninitialized the GTK+ conversation subsystem. | |
| 328 | */ | |
| 329 | void gaim_gtk_conversations_uninit(void); | |
| 330 | ||
| 331 | /*@}*/ | |
| 332 | ||
| 4359 | 333 | #endif /* _GAIM_GTK_CONVERSATION_H_ */ |