Mercurial > pidgin
annotate src/conversation.h @ 5760:22cbb8e934cb
[gaim-migrate @ 6185]
Ha! Now *this* is a logo!
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Thu, 05 Jun 2003 17:37:05 +0000 |
parents | 1d140b31d4b3 |
children | 96e5b32e75ad |
rev | line source |
---|---|
4359 | 1 /** |
2 * @file conversation.h Conversation API | |
5034
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4890
diff
changeset
|
3 * @ingroup core |
4359 | 4 * |
5 * gaim | |
6 * | |
7 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org> | |
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 | |
4890
89cb14edf8cf
[gaim-migrate @ 5220]
Christian Hammond <chipx86@chipx86.com>
parents:
4877
diff
changeset
|
24 #ifndef _GAIM_CONVERSATION_H_ |
89cb14edf8cf
[gaim-migrate @ 5220]
Christian Hammond <chipx86@chipx86.com>
parents:
4877
diff
changeset
|
25 #define _GAIM_CONVERSATION_H_ |
4359 | 26 |
5717 | 27 #include "account.h" |
28 | |
4359 | 29 /**************************************************************************/ |
30 /** Data Structures */ | |
31 /**************************************************************************/ | |
32 | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
33 typedef enum _GaimConversationType GaimConversationType; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
34 typedef enum _GaimUnseenState GaimUnseenState; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
35 typedef enum _GaimConvUpdateType GaimConvUpdateType; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
36 typedef struct _GaimWindowUiOps GaimWindowUiOps; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
37 typedef struct _GaimWindow GaimWindow; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
38 typedef struct _GaimConversationUiOps GaimConversationUiOps; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
39 typedef struct _GaimConversation GaimConversation; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
40 typedef struct _GaimIm GaimIm; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
41 typedef struct _GaimChat GaimChat; |
4359 | 42 |
43 /** | |
44 * A type of conversation. | |
45 */ | |
46 enum _GaimConversationType | |
47 { | |
48 GAIM_CONV_UNKNOWN = 0, /**< Unknown conversation type. */ | |
49 GAIM_CONV_IM, /**< Instant Message. */ | |
4378
194507c83612
[gaim-migrate @ 4644]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
50 GAIM_CONV_CHAT, /**< Chat room. */ |
194507c83612
[gaim-migrate @ 4644]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
51 GAIM_CONV_MISC /**< A misc. conversation. */ |
4359 | 52 }; |
53 | |
54 /** | |
55 * Unseen text states. | |
56 */ | |
57 enum _GaimUnseenState | |
58 { | |
59 GAIM_UNSEEN_NONE = 0, /**< No unseen text in the conversation. */ | |
60 GAIM_UNSEEN_TEXT, /**< Unseen text in the conversation. */ | |
61 GAIM_UNSEEN_NICK, /**< Unseen text and the nick was said. */ | |
62 }; | |
63 | |
64 /** | |
65 * Conversation update type. | |
66 */ | |
67 enum _GaimConvUpdateType | |
68 { | |
69 GAIM_CONV_UPDATE_ADD = 0, /**< The buddy associated with the conversation | |
70 was added. */ | |
71 GAIM_CONV_UPDATE_REMOVE, /**< The buddy associated with the conversation | |
72 was removed. */ | |
4491 | 73 GAIM_CONV_UPDATE_ACCOUNT, /**< The gaim_account was changed. */ |
4359 | 74 GAIM_CONV_UPDATE_TYPING, /**< The typing state was updated. */ |
75 GAIM_CONV_UPDATE_UNSEEN, /**< The unseen state was updated. */ | |
76 GAIM_CONV_UPDATE_LOGGING, /**< Logging for this conversation was | |
77 enabled or disabled. */ | |
78 GAIM_CONV_UPDATE_TOPIC, /**< The topic for a chat was updated. */ | |
79 | |
80 /* | |
81 * XXX These need to go when we implement a more generic core/UI event | |
82 * system. | |
83 */ | |
4378
194507c83612
[gaim-migrate @ 4644]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
84 GAIM_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online. */ |
194507c83612
[gaim-migrate @ 4644]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
85 GAIM_CONV_ACCOUNT_OFFLINE, /**< One of the user's accounts went offline. */ |
194507c83612
[gaim-migrate @ 4644]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
86 GAIM_CONV_UPDATE_AWAY /**< The other user went away. */ |
4359 | 87 }; |
88 | |
89 /** | |
90 * Conversation window operations. | |
91 * | |
92 * Any UI representing a window must assign a filled-out gaim_window_ops | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
93 * structure to the GaimWindow. |
4359 | 94 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
95 struct _GaimWindowUiOps |
4359 | 96 { |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
97 GaimConversationUiOps *(*get_conversation_ui_ops)(void); |
4359 | 98 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
99 void (*new_window)(GaimWindow *win); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
100 void (*destroy_window)(GaimWindow *win); |
4359 | 101 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
102 void (*show)(GaimWindow *win); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
103 void (*hide)(GaimWindow *win); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
104 void (*raise)(GaimWindow *win); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
105 void (*flash)(GaimWindow *win); |
4359 | 106 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
107 void (*switch_conversation)(GaimWindow *win, unsigned int index); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
108 void (*add_conversation)(GaimWindow *win, GaimConversation *conv); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
109 void (*remove_conversation)(GaimWindow *win, GaimConversation *conv); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
110 void (*move_conversation)(GaimWindow *win, GaimConversation *conv, |
4359 | 111 unsigned int newIndex); |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
112 int (*get_active_index)(const GaimWindow *win); |
4359 | 113 }; |
114 | |
115 /** | |
116 * Conversation operations and events. | |
117 * | |
118 * Any UI representing a conversation must assign a filled-out | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
119 * GaimConversationUiOps structure to the GaimConversation. |
4359 | 120 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
121 struct _GaimConversationUiOps |
4359 | 122 { |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
123 void (*destroy_conversation)(GaimConversation *conv); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
124 void (*write_chat)(GaimConversation *conv, const char *who, |
4359 | 125 const char *message, int flags, time_t mtime); |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
126 void (*write_im)(GaimConversation *conv, const char *who, |
4359 | 127 const char *message, size_t len, int flags, time_t mtime); |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
128 void (*write_conv)(GaimConversation *conv, const char *who, |
4359 | 129 const char *message, size_t length, int flags, |
130 time_t mtime); | |
131 | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
132 void (*chat_add_user)(GaimConversation *conv, const char *user); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
133 void (*chat_rename_user)(GaimConversation *conv, |
4359 | 134 const char *old_name, const char *new_name); |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
135 void (*chat_remove_user)(GaimConversation *conv, const char *user); |
4359 | 136 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
137 void (*set_title)(GaimConversation *conv, const char *title); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
138 void (*update_progress)(GaimConversation *conv, float percent); |
4359 | 139 |
140 /* Events */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
141 void (*updated)(GaimConversation *conv, GaimConvUpdateType type); |
4359 | 142 }; |
143 | |
144 /** | |
145 * A core representation of a graphical window containing one or more | |
146 * conversations. | |
147 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
148 struct _GaimWindow |
4359 | 149 { |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
150 GList *conversations; /**< The conversations in the window. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
151 size_t conversation_count; /**< The number of conversations. */ |
4359 | 152 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
153 GaimWindowUiOps *ui_ops; /**< UI-specific window operations. */ |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
154 void *ui_data; /**< UI-specific data. */ |
4359 | 155 }; |
156 | |
157 /** | |
158 * Data specific to Instant Messages. | |
159 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
160 struct _GaimIm |
4359 | 161 { |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
162 GaimConversation *conv; /**< The parent conversation. */ |
4359 | 163 |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
164 int typing_state; /**< The current typing state. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
165 guint typing_timeout; /**< The typing timer handle. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
166 time_t type_again; /**< The type again time. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
167 guint type_again_timeout; /**< The type again timer handle. */ |
4359 | 168 |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
169 GSList *images; /**< A list of images in the IM. */ |
4359 | 170 }; |
171 | |
172 /** | |
173 * Data specific to Chats. | |
174 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
175 struct _GaimChat |
4359 | 176 { |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
177 GaimConversation *conv; /**< The parent conversation. */ |
4359 | 178 |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
179 GList *in_room; /**< The users in the room. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
180 GList *ignored; /**< Ignored users. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
181 char *who; /**< The person who set the topic. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
182 char *topic; /**< The topic. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
183 int id; /**< The chat ID. */ |
4359 | 184 }; |
185 | |
186 /** | |
187 * A core representation of a conversation between two or more people. | |
188 * | |
189 * The conversation can be an IM or a chat. Each conversation is kept | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
190 * in a GaimWindow and has a UI representation. |
4359 | 191 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
192 struct _GaimConversation |
4359 | 193 { |
194 GaimConversationType type; /**< The type of conversation. */ | |
195 | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
196 GaimAccount *account; /**< The user using this conversation. */ |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
197 GaimWindow *window; /**< The parent window. */ |
4359 | 198 |
199 int conversation_pos; /**< The position in the window's list. */ | |
200 | |
201 char *name; /**< The name of the conversation. */ | |
202 char *title; /**< The window title. */ | |
203 | |
204 gboolean logging; /**< The status of logging. */ | |
205 | |
206 GList *send_history; /**< The send history. */ | |
207 GString *history; /**< The conversation history. */ | |
208 | |
209 GaimUnseenState unseen; /**< The unseen tab state. */ | |
210 | |
211 union | |
212 { | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
213 GaimIm *im; /**< IM-specific data. */ |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
214 GaimChat *chat; /**< Chat-specific data. */ |
4378
194507c83612
[gaim-migrate @ 4644]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
215 void *misc; /**< Misc. data. */ |
4359 | 216 |
217 } u; | |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
218 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
219 GaimConversationUiOps *ui_ops; /**< UI-specific operations. */ |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
220 void *ui_data; /**< UI-specific data. */ |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
221 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
222 GHashTable *data; /**< Plugin-specific data. */ |
4359 | 223 }; |
224 | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
225 typedef void (*GaimConvPlacementFunc)(GaimConversation *); |
4359 | 226 |
227 /**************************************************************************/ | |
228 /** @name Conversation Window API */ | |
229 /**************************************************************************/ | |
230 /*@{*/ | |
231 | |
232 /** | |
233 * Creates a new conversation window. | |
234 * | |
235 * This window is added to the list of windows, but is not shown until | |
236 * gaim_window_show() is called. | |
237 * | |
238 * @return The new conversation window. | |
239 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
240 GaimWindow *gaim_window_new(void); |
4359 | 241 |
242 /** | |
243 * Destroys the specified conversation window and all conversations in it. | |
244 * | |
245 * @param win The window to destroy. | |
246 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
247 void gaim_window_destroy(GaimWindow *win); |
4359 | 248 |
249 /** | |
250 * Shows the specified conversation window. | |
251 * | |
252 * @param win The window. | |
253 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
254 void gaim_window_show(GaimWindow *win); |
4359 | 255 |
256 /** | |
257 * Hides the specified conversation window. | |
258 * | |
259 * @param win The window. | |
260 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
261 void gaim_window_hide(GaimWindow *win); |
4359 | 262 |
263 /** | |
264 * Raises the specified conversation window. | |
265 * | |
266 * @param win The window. | |
267 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
268 void gaim_window_raise(GaimWindow *win); |
4359 | 269 |
270 /** | |
271 * Causes the window to flash for IM notification, if the UI supports this. | |
272 * | |
273 * @param win The window. | |
274 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
275 void gaim_window_flash(GaimWindow *win); |
4359 | 276 |
277 /** | |
278 * Sets the specified window's UI window operations structure. | |
279 * | |
280 * @param win The window. | |
281 * @param ops The UI window operations structure. | |
282 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
283 void gaim_window_set_ui_ops(GaimWindow *win, GaimWindowUiOps *ops); |
4359 | 284 |
285 /** | |
286 * Returns the specified window's UI window operations structure. | |
287 * | |
288 * @param win The window. | |
289 * | |
290 * @return The UI window operations structure. | |
291 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
292 GaimWindowUiOps *gaim_window_get_ui_ops(const GaimWindow *win); |
4359 | 293 |
294 /** | |
295 * Adds a conversation to this window. | |
296 * | |
297 * If the conversation already has a parent window, this will do nothing. | |
298 * | |
299 * @param win The window. | |
300 * @param conv The conversation. | |
301 * | |
302 * @return The new index of the conversation in the window. | |
303 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
304 int gaim_window_add_conversation(GaimWindow *win, GaimConversation *conv); |
4359 | 305 |
306 /** | |
307 * Removes the conversation at the specified index from the window. | |
308 * | |
309 * If there is no conversation at this index, this will do nothing. | |
310 * | |
311 * @param win The window. | |
312 * @param index The index of the conversation. | |
313 * | |
314 * @return The conversation removed. | |
315 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
316 GaimConversation *gaim_window_remove_conversation(GaimWindow *win, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
317 unsigned int index); |
4359 | 318 |
319 /** | |
320 * Moves the conversation at the specified index in a window to a new index. | |
321 * | |
322 * @param win The window. | |
323 * @param index The index of the conversation to move. | |
324 * @param new_index The new index. | |
325 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
326 void gaim_window_move_conversation(GaimWindow *win, unsigned int index, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
327 unsigned int new_index); |
4359 | 328 |
329 /** | |
330 * Returns the conversation in the window at the specified index. | |
331 * | |
332 * If the index is out of range, this returns @c NULL. | |
333 * | |
334 * @param win The window. | |
335 * @param index The index containing a conversation. | |
336 * | |
337 * @return The conversation at the specified index. | |
338 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
339 GaimConversation *gaim_window_get_conversation_at(const GaimWindow *win, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
340 unsigned int index); |
4359 | 341 |
342 /** | |
343 * Returns the number of conversations in the window. | |
344 * | |
345 * @param win The window. | |
346 * | |
347 * @return The number of conversations. | |
348 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
349 size_t gaim_window_get_conversation_count(const GaimWindow *win); |
4359 | 350 |
351 /** | |
352 * Switches the active conversation to the one at the specified index. | |
353 * | |
354 * If @a index is out of range, this does nothing. | |
355 * | |
356 * @param win The window. | |
357 * @param index The new index. | |
358 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
359 void gaim_window_switch_conversation(GaimWindow *win, unsigned int index); |
4359 | 360 |
361 /** | |
362 * Returns the active conversation in the window. | |
363 * | |
364 * @param win The window. | |
365 * | |
366 * @return The active conversation. | |
367 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
368 GaimConversation *gaim_window_get_active_conversation(const GaimWindow *win); |
4359 | 369 |
370 /** | |
371 * Returns the list of conversations in the specified window. | |
372 * | |
373 * @param win The window. | |
374 * | |
375 * @return The list of conversations. | |
376 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
377 GList *gaim_window_get_conversations(const GaimWindow *win); |
4359 | 378 |
379 /** | |
380 * Returns a list of all windows. | |
381 * | |
382 * @return A list of windows. | |
383 */ | |
384 GList *gaim_get_windows(void); | |
385 | |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
386 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
387 * Returns the first window containing a conversation of the specified type. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
388 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
389 * @param type The conversation type. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
390 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
391 * @return The window if found, or @c NULL if not found. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
392 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
393 GaimWindow *gaim_get_first_window_with_type(GaimConversationType type); |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
394 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
395 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
396 * Returns the last window containing a conversation of the specified type. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
397 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
398 * @param type The conversation type. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
399 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
400 * @return The window if found, or @c NULL if not found. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
401 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
402 GaimWindow *gaim_get_last_window_with_type(GaimConversationType type); |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
403 |
4359 | 404 /*@}*/ |
405 | |
406 /**************************************************************************/ | |
407 /** @name Conversation API */ | |
408 /**************************************************************************/ | |
409 /*@{*/ | |
410 | |
411 /** | |
412 * Creates a new conversation of the specified type. | |
413 * | |
414 * @param type The type of conversation. | |
4476
62c1e5e656d0
[gaim-migrate @ 4751]
Christian Hammond <chipx86@chipx86.com>
parents:
4469
diff
changeset
|
415 * @param user The account opening the conversation window on the gaim |
62c1e5e656d0
[gaim-migrate @ 4751]
Christian Hammond <chipx86@chipx86.com>
parents:
4469
diff
changeset
|
416 * user's end. |
4359 | 417 * @param name The name of the conversation. |
418 * | |
419 * @return The new conversation. | |
420 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
421 GaimConversation *gaim_conversation_new(GaimConversationType type, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
422 GaimAccount *account, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
423 const char *name); |
4359 | 424 |
425 /** | |
426 * Destroys the specified conversation and removes it from the parent | |
427 * window. | |
428 * | |
429 * If this conversation is the only one contained in the parent window, | |
430 * that window is also destroyed. | |
431 * | |
432 * @param conv The conversation to destroy. | |
433 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
434 void gaim_conversation_destroy(GaimConversation *conv); |
4359 | 435 |
436 /** | |
437 * Returns the specified conversation's type. | |
438 * | |
439 * @param conv The conversation. | |
440 * | |
441 * @return The conversation's type. | |
442 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
443 GaimConversationType gaim_conversation_get_type(const GaimConversation *conv); |
4359 | 444 |
445 /** | |
446 * Sets the specified conversation's UI operations structure. | |
447 * | |
448 * @param conv The conversation. | |
449 * @param ops The UI conversation operations structure. | |
450 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
451 void gaim_conversation_set_ui_ops(GaimConversation *conv, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
452 GaimConversationUiOps *ops); |
4359 | 453 |
454 /** | |
455 * Returns the specified conversation's UI operations structure. | |
456 * | |
457 * @param conv The conversation. | |
458 * | |
459 * @return The operations structure. | |
460 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
461 GaimConversationUiOps *gaim_conversation_get_ui_ops( |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
462 const GaimConversation *conv); |
4359 | 463 |
464 /** | |
4491 | 465 * Sets the specified conversation's gaim_account. |
4359 | 466 * |
4491 | 467 * This gaim_account represents the user using gaim, not the person the user |
4359 | 468 * is having a conversation/chat/flame with. |
469 * | |
470 * @param conv The conversation. | |
4491 | 471 * @param account The gaim_account. |
4359 | 472 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
473 void gaim_conversation_set_account(GaimConversation *conv, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
474 GaimAccount *account); |
4359 | 475 |
476 /** | |
4491 | 477 * Returns the specified conversation's gaim_account. |
4359 | 478 * |
4491 | 479 * This gaim_account represents the user using gaim, not the person the user |
4359 | 480 * is having a conversation/chat/flame with. |
481 * | |
482 * @param conv The conversation. | |
483 * | |
4491 | 484 * @return The conversation's gaim_account. |
4359 | 485 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
486 GaimAccount *gaim_conversation_get_account(const GaimConversation *conv); |
4359 | 487 |
488 /** | |
489 * Returns the specified conversation's gaim_connection. | |
490 * | |
491 * This is the same as gaim_conversation_get_user(conv)->gc. | |
492 * | |
493 * @param conv The conversation. | |
494 * | |
495 * @return The conversation's gaim_connection. | |
496 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
497 GaimConnection *gaim_conversation_get_gc(const GaimConversation *conv); |
4359 | 498 |
499 /** | |
500 * Sets the specified conversation's title. | |
501 * | |
502 * @param conv The conversation. | |
503 * @param title The title. | |
504 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
505 void gaim_conversation_set_title(GaimConversation *conv, const char *title); |
4359 | 506 |
507 /** | |
508 * Returns the specified conversation's title. | |
509 * | |
510 * @param win The conversation. | |
511 * | |
512 * @return The title. | |
513 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
514 const char *gaim_conversation_get_title(const GaimConversation *conv); |
4359 | 515 |
516 /** | |
517 * Automatically sets the specified conversation's title. | |
518 * | |
519 * This function takes OPT_IM_ALIAS_TAB into account, as well as the | |
520 * user's alias. | |
521 * | |
522 * @param conv The conversation. | |
523 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
524 void gaim_conversation_autoset_title(GaimConversation *conv); |
4359 | 525 |
526 /** | |
527 * Returns the specified conversation's index in the parent window. | |
528 * | |
529 * @param conv The conversation. | |
530 * | |
531 * @return The current index in the parent window. | |
532 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
533 int gaim_conversation_get_index(const GaimConversation *conv); |
4359 | 534 |
535 /** | |
536 * Sets the conversation's unseen state. | |
537 * | |
538 * @param conv The conversation. | |
539 * @param state The new unseen state. | |
540 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
541 void gaim_conversation_set_unseen(GaimConversation *conv, |
4359 | 542 GaimUnseenState state); |
543 | |
544 /** | |
545 * Returns the conversation's unseen state. | |
546 * | |
547 * @param conv The conversation. | |
548 * | |
549 * @param The conversation's unseen state. | |
550 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
551 GaimUnseenState gaim_conversation_get_unseen(const GaimConversation *conv); |
4359 | 552 |
553 /** | |
554 * Returns the specified conversation's name. | |
555 * | |
556 * @param conv The conversation. | |
557 * | |
558 * @return The conversation's name. | |
559 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
560 const char *gaim_conversation_get_name(const GaimConversation *conv); |
4359 | 561 |
562 /** | |
563 * Enables or disables logging for this conversation. | |
564 * | |
565 * @param log @c TRUE if logging should be enabled, or @c FALSE otherwise. | |
566 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
567 void gaim_conversation_set_logging(GaimConversation *conv, gboolean log); |
4359 | 568 |
569 /** | |
570 * Returns whether or not logging is enabled for this conversation. | |
571 * | |
572 * @return @c TRUE if logging is enabled, or @c FALSE otherwise. | |
573 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
574 gboolean gaim_conversation_is_logging(const GaimConversation *conv); |
4359 | 575 |
576 /** | |
577 * Returns the specified conversation's send history. | |
578 * | |
579 * @param conv The conversation. | |
580 * | |
581 * @return The conversation's send history. | |
582 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
583 GList *gaim_conversation_get_send_history(const GaimConversation *conv); |
4359 | 584 |
585 /** | |
586 * Sets the specified conversation's history. | |
587 * | |
588 * @param conv The conversation. | |
589 * @param history The history. | |
590 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
591 void gaim_conversation_set_history(GaimConversation *conv, GString *history); |
4359 | 592 |
593 /** | |
594 * Returns the specified conversation's history. | |
595 * | |
596 * @param conv The conversation. | |
597 * | |
598 * @return The conversation's history. | |
599 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
600 GString *gaim_conversation_get_history(const GaimConversation *conv); |
4359 | 601 |
602 /** | |
603 * Returns the specified conversation's parent window. | |
604 * | |
605 * @param conv The conversation. | |
606 * | |
607 * @return The conversation's parent window. | |
608 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
609 GaimWindow *gaim_conversation_get_window(const GaimConversation *conv); |
4359 | 610 |
611 /** | |
612 * Returns the specified conversation's IM-specific data. | |
613 * | |
614 * If the conversation type is not GAIM_CONV_IM, this will return @c NULL. | |
615 * | |
616 * @param conv The conversation. | |
617 * | |
618 * @return The IM-specific data. | |
619 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
620 GaimIm *gaim_conversation_get_im_data(const GaimConversation *conv); |
4359 | 621 |
622 #define GAIM_IM(c) (gaim_conversation_get_im_data(c)) | |
623 | |
624 /** | |
625 * Returns the specified conversation's chat-specific data. | |
626 * | |
627 * If the conversation type is not GAIM_CONV_CHAT, this will return @c NULL. | |
628 * | |
629 * @param conv The conversation. | |
630 * | |
631 * @return The chat-specific data. | |
632 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
633 GaimChat *gaim_conversation_get_chat_data(const GaimConversation *conv); |
4359 | 634 |
635 #define GAIM_CHAT(c) (gaim_conversation_get_chat_data(c)) | |
636 | |
637 /** | |
4877
249382064693
[gaim-migrate @ 5207]
Christian Hammond <chipx86@chipx86.com>
parents:
4876
diff
changeset
|
638 * Sets extra data for a conversation. |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
639 * |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
640 * @param conv The conversation. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
641 * @param key The unique key. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
642 * @param data The data to assign. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
643 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
644 void gaim_conversation_set_data(GaimConversation *conv, const char *key, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
645 gpointer data); |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
646 |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
647 /** |
4877
249382064693
[gaim-migrate @ 5207]
Christian Hammond <chipx86@chipx86.com>
parents:
4876
diff
changeset
|
648 * Returns extra data in a conversation. |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
649 * |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
650 * @param conv The conversation. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
651 * @param key The unqiue key. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
652 * |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
653 * @return The data associated with the key. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
654 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
655 gpointer gaim_conversation_get_data(GaimConversation *conv, const char *key); |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
656 |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
657 /** |
4359 | 658 * Returns a list of all conversations. |
659 * | |
660 * This list includes both IMs and chats. | |
661 * | |
662 * @return A GList of all conversations. | |
663 */ | |
664 GList *gaim_get_conversations(void); | |
665 | |
666 /** | |
667 * Returns a list of all IMs. | |
668 * | |
669 * @return A GList of all IMs. | |
670 */ | |
671 GList *gaim_get_ims(void); | |
672 | |
673 /** | |
674 * Returns a list of all chats. | |
675 * | |
676 * @return A GList of all chats. | |
677 */ | |
678 GList *gaim_get_chats(void); | |
679 | |
680 /** | |
681 * Finds the conversation with the specified name. | |
682 * | |
683 * @param name The name of the conversation. | |
684 * | |
685 * @return The conversation if found, or @c NULL otherwise. | |
686 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
687 GaimConversation *gaim_find_conversation(const char *name); |
4359 | 688 |
689 /** | |
690 * Finds a conversation with the specified name and user. | |
691 * | |
692 * @param name The name of the conversation. | |
4491 | 693 * @param account The gaim_account associated with the conversation. |
4359 | 694 * |
695 * @return The conversation if found, or @c NULL otherwise. | |
696 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
697 GaimConversation *gaim_find_conversation_with_account( |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5207
diff
changeset
|
698 const char *name, const GaimAccount *account); |
4359 | 699 |
700 /** | |
701 * Writes to a conversation window. | |
702 * | |
703 * This function should not be used to write IM or chat messages. Use | |
704 * gaim_im_write() and gaim_chat_write() instead. Those functions will | |
705 * most likely call this anyway, but they may do their own formatting, | |
706 * sound playback, etc. | |
707 * | |
708 * This can be used to write generic messages, such as "so and so closed | |
709 * the conversation window." | |
710 * | |
711 * @param conv The conversation. | |
712 * @param who The user who sent the message. | |
713 * @param message The message. | |
714 * @param length The length of the message. | |
715 * @param flags The flags. | |
716 * @param mtime The time the message was sent. | |
717 * | |
718 * @see gaim_im_write() | |
719 * @see gaim_chat_write() | |
720 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
721 void gaim_conversation_write(GaimConversation *conv, const char *who, |
4359 | 722 const char *message, size_t length, int flags, |
723 time_t mtime); | |
724 | |
725 /** | |
726 * Updates the progress bar on a conversation window | |
727 * (if one exists in the UI). | |
728 * | |
729 * This is used for loading images typically. | |
730 * | |
731 * @param conv The conversation. | |
732 * @param percent The percentage. | |
733 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
734 void gaim_conversation_update_progress(GaimConversation *conv, float percent); |
4359 | 735 |
736 /** | |
737 * Updates the visual status and UI of a conversation. | |
738 * | |
739 * @param conv The conversation. | |
740 * @param type The update type. | |
741 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
742 void gaim_conversation_update(GaimConversation *conv, GaimConvUpdateType type); |
4359 | 743 |
744 /** | |
745 * Calls a function on each conversation. | |
746 * | |
747 * @param func The function. | |
748 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
749 void gaim_conversation_foreach(void (*func)(GaimConversation *conv)); |
4359 | 750 |
751 /*@}*/ | |
752 | |
753 | |
754 /**************************************************************************/ | |
755 /** @name IM Conversation API */ | |
756 /**************************************************************************/ | |
757 /*@{*/ | |
758 | |
759 /** | |
760 * Gets an IM's parent conversation. | |
761 * | |
762 * @param im The IM. | |
763 * | |
764 * @return The parent conversation. | |
765 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
766 GaimConversation *gaim_im_get_conversation(const GaimIm *im); |
4359 | 767 |
768 /** | |
769 * Sets the IM's typing state. | |
770 * | |
771 * @param im The IM. | |
772 * @param state The typing state. | |
773 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
774 void gaim_im_set_typing_state(GaimIm *im, int state); |
4359 | 775 |
776 /** | |
777 * Returns the IM's typing state. | |
778 * | |
779 * @param im The IM. | |
780 * | |
781 * @return The IM's typing state. | |
782 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
783 int gaim_im_get_typing_state(const GaimIm *im); |
4359 | 784 |
785 /** | |
786 * Starts the IM's typing timeout. | |
787 * | |
788 * @param im The IM. | |
789 * @param timeout The timeout. | |
790 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
791 void gaim_im_start_typing_timeout(GaimIm *im, int timeout); |
4359 | 792 |
793 /** | |
794 * Stops the IM's typing timeout. | |
795 * | |
796 * @param im The IM. | |
797 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
798 void gaim_im_stop_typing_timeout(GaimIm *im); |
4359 | 799 |
800 /** | |
801 * Returns the IM's typing timeout. | |
802 * | |
803 * @param im The IM. | |
804 * | |
805 * @return The timeout. | |
806 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
807 guint gaim_im_get_typing_timeout(const GaimIm *im); |
4359 | 808 |
809 /** | |
810 * Sets the IM's time until it should send another typing notification. | |
811 * | |
812 * @param im The IM. | |
813 * @param val The time. | |
814 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
815 void gaim_im_set_type_again(GaimIm *im, time_t val); |
4359 | 816 |
817 /** | |
818 * Returns the IM's time until it should send another typing notification. | |
819 * | |
820 * @param im The IM. | |
821 * | |
822 * @return The time. | |
823 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
824 time_t gaim_im_get_type_again(const GaimIm *im); |
4359 | 825 |
826 /** | |
827 * Starts the IM's type again timeout. | |
828 * | |
829 * @param im The IM. | |
830 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
831 void gaim_im_start_type_again_timeout(GaimIm *im); |
4359 | 832 |
833 /** | |
834 * Stops the IM's type again timeout. | |
835 * | |
836 * @param im The IM. | |
837 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
838 void gaim_im_stop_type_again_timeout(GaimIm *im); |
4359 | 839 |
840 /** | |
841 * Returns the IM's type again timeout interval. | |
842 * | |
843 * @param im The IM. | |
844 * | |
845 * @return The type again timeout interval. | |
846 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
847 guint gaim_im_get_type_again_timeout(const GaimIm *im); |
4359 | 848 |
849 /** | |
850 * Updates the visual typing notification for an IM conversation. | |
851 * | |
852 * @param im The IM. | |
853 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
854 void gaim_im_update_typing(GaimIm *im); |
4359 | 855 |
856 /** | |
857 * Writes to an IM. | |
858 * | |
859 * The @a len parameter is used for writing binary data, such as an | |
860 * image. If @c message is text, specify -1 for @a len. | |
861 * | |
862 * @param im The IM. | |
863 * @param who The user who sent the message. | |
864 * @param message The message to write. | |
865 * @param len The length of the message, or -1 to specify the length | |
866 * of @a message. | |
867 * @param flag The flags. | |
868 * @param mtime The time the message was sent. | |
869 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
870 void gaim_im_write(GaimIm *im, const char *who, |
4359 | 871 const char *message, size_t len, int flag, time_t mtime); |
872 | |
873 /** | |
874 * Sends a message to this IM conversation. | |
875 * | |
876 * @param im The IM. | |
877 * @param message The message to send. | |
878 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
879 void gaim_im_send(GaimIm *im, const char *message); |
4359 | 880 |
881 /*@}*/ | |
882 | |
883 | |
884 /**************************************************************************/ | |
885 /** @name Chat Conversation API */ | |
886 /**************************************************************************/ | |
887 /*@{*/ | |
888 | |
889 /** | |
890 * Gets a chat's parent conversation. | |
891 * | |
892 * @param chat The chat. | |
893 * | |
894 * @return The parent conversation. | |
895 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
896 GaimConversation *gaim_chat_get_conversation(const GaimChat *chat); |
4359 | 897 |
898 /** | |
899 * Sets the list of users in the chat room. | |
900 * | |
901 * @param chat The chat. | |
902 * @param users The list of users. | |
903 * | |
904 * @return The list passed. | |
905 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
906 GList *gaim_chat_set_users(GaimChat *chat, GList *users); |
4359 | 907 |
908 /** | |
909 * Returns a list of users in the chat room. | |
910 * | |
911 * @param chat The chat. | |
912 * | |
913 * @return The list of users. | |
914 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
915 GList *gaim_chat_get_users(const GaimChat *chat); |
4359 | 916 |
917 /** | |
918 * Ignores a user in a chat room. | |
919 * | |
920 * @param chat The chat. | |
921 * @param name The name of the user. | |
922 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
923 void gaim_chat_ignore(GaimChat *chat, const char *name); |
4359 | 924 |
925 /** | |
926 * Unignores a user in a chat room. | |
927 * | |
928 * @param chat The chat. | |
929 * @param name The name of the user. | |
930 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
931 void gaim_chat_unignore(GaimChat *chat, const char *name); |
4359 | 932 |
933 /** | |
934 * Sets the list of ignored users in the chat room. | |
935 * | |
936 * @param chat The chat. | |
937 * @param ignored The list of ignored users. | |
938 * | |
939 * @return The list passed. | |
940 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
941 GList *gaim_chat_set_ignored(GaimChat *chat, GList *ignored); |
4359 | 942 |
943 /** | |
944 * Returns the list of ignored users in the chat room. | |
945 * | |
946 * @param chat The chat. | |
947 * | |
948 * @return The list of ignored users. | |
949 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
950 GList *gaim_chat_get_ignored(const GaimChat *chat); |
4359 | 951 |
952 /** | |
953 * Returns the actual name of the specified ignored user, if it exists in | |
954 * the ignore list. | |
955 * | |
956 * If the user found contains a prefix, such as '+' or '\@', this is also | |
957 * returned. The username passed to the function does not have to have this | |
958 * formatting. | |
959 * | |
960 * @param chat The chat. | |
961 * @param user The user to check in the ignore list. | |
962 * | |
963 * @return The ignored user if found, complete with prefixes, or @c NULL | |
964 * if not found. | |
965 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
966 const char *gaim_chat_get_ignored_user(const GaimChat *chat, |
4359 | 967 const char *user); |
968 | |
969 /** | |
970 * Returns @c TRUE if the specified user is ignored. | |
971 * | |
972 * @param chat The chat. | |
973 * @param user The user. | |
974 * | |
975 * @return @c TRUE if the user is in the ignore list; @c FALSE otherwise. | |
976 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
977 gboolean gaim_chat_is_user_ignored(const GaimChat *chat, |
4359 | 978 const char *user); |
979 | |
980 /** | |
981 * Sets the chat room's topic. | |
982 * | |
983 * @param chat The chat. | |
984 * @param who The user that set the topic. | |
985 * @param topic The topic. | |
986 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
987 void gaim_chat_set_topic(GaimChat *chat, const char *who, |
4359 | 988 const char *topic); |
989 | |
990 /** | |
991 * Returns the chat room's topic. | |
992 * | |
993 * @param chat The chat. | |
994 * | |
995 * @return The chat's topic. | |
996 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
997 const char *gaim_chat_get_topic(const GaimChat *chat); |
4359 | 998 |
999 /** | |
1000 * Sets the chat room's ID. | |
1001 * | |
1002 * @param chat The chat. | |
1003 * @param id The ID. | |
1004 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1005 void gaim_chat_set_id(GaimChat *chat, int id); |
4359 | 1006 |
1007 /** | |
1008 * Returns the chat room's ID. | |
1009 * | |
1010 * @param chat The chat. | |
1011 * | |
1012 * @return The ID. | |
1013 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1014 int gaim_chat_get_id(const GaimChat *chat); |
4359 | 1015 |
1016 /** | |
1017 * Writes to a chat. | |
1018 * | |
1019 * @param chat The chat. | |
1020 * @param who The user who sent the message. | |
1021 * @param message The message to write. | |
1022 * @param flag The flags. | |
1023 * @param mtime The time the message was sent. | |
1024 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1025 void gaim_chat_write(GaimChat *chat, const char *who, |
4359 | 1026 const char *message, int flag, time_t mtime); |
1027 | |
1028 /** | |
1029 * Sends a message to this chat conversation. | |
1030 * | |
1031 * @param chat The chat. | |
1032 * @param message The message to send. | |
1033 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1034 void gaim_chat_send(GaimChat *chat, const char *message); |
4359 | 1035 |
1036 /** | |
1037 * Adds a user to a chat. | |
1038 * | |
1039 * @param chat The chat. | |
1040 * @param user The user to add. | |
1041 * @param extra_msg An extra message to display with the join message. | |
1042 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1043 void gaim_chat_add_user(GaimChat *chat, const char *user, |
4359 | 1044 const char *extra_msg); |
1045 | |
1046 /** | |
1047 * Renames a user in a chat. | |
1048 * | |
1049 * @param chat The chat. | |
1050 * @param old_user The old username. | |
1051 * @param new_user The new username. | |
1052 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1053 void gaim_chat_rename_user(GaimChat *chat, const char *old_user, |
4359 | 1054 const char *new_user); |
1055 | |
1056 /** | |
1057 * Removes a user from a chat, optionally with a reason. | |
1058 * | |
1059 * @param chat The chat. | |
1060 * @param user The user that is being removed. | |
1061 * @param reason The optional reason given for the removal. Can be @c NULL. | |
1062 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1063 void gaim_chat_remove_user(GaimChat *chat, const char *user, |
4359 | 1064 const char *reason); |
1065 | |
1066 /** | |
1067 * Finds a chat with the specified chat ID. | |
1068 * | |
1069 * @param gc The gaim_connection. | |
1070 * @param id The chat ID. | |
1071 * | |
1072 * @return The chat conversation. | |
1073 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1074 GaimConversation *gaim_find_chat(const GaimConnection *gc, int id); |
4359 | 1075 |
1076 /*@}*/ | |
1077 | |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1078 /**************************************************************************/ |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1079 /** @name Conversation Placement Functions */ |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1080 /**************************************************************************/ |
4481
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1081 /*@{*/ |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1082 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1083 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1084 * Adds a conversation placement function to the list of possible functions. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1085 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1086 * @param name The name of the function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1087 * @param fnc A pointer to the function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1088 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1089 * @return The index of this entry. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1090 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1091 int gaim_conv_placement_add_fnc(const char *name, GaimConvPlacementFunc fnc); |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1092 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1093 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1094 * Removes a conversation placement function from the list of possible |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1095 * functions. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1096 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1097 * @param index The index of the function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1098 */ |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1099 void gaim_conv_placement_remove_fnc(int index); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1100 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1101 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1102 * Returns the number of conversation placement functions. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1103 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1104 * @return The number of registered functions. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1105 */ |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1106 int gaim_conv_placement_get_fnc_count(void); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1107 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1108 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1109 * Returns the name of the conversation placement function at the |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1110 * specified index. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1111 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1112 * @param index The index. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1113 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1114 * @return The name of the function, or @c NULL if this index is out of |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1115 * range. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1116 */ |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1117 const char *gaim_conv_placement_get_name(int index); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1118 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1119 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1120 * Returns a pointer to the conversation placement function at the |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1121 * specified index. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1122 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1123 * @param index The index. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1124 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1125 * @return A pointer to the function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1126 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1127 GaimConvPlacementFunc gaim_conv_placement_get_fnc(int index); |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1128 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1129 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1130 * Returns the index of the specified conversation placement function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1131 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1132 * @param fnc A pointer to the registered function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1133 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1134 * @return The index of the conversation, or -1 if the function is not |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1135 * registered. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1136 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1137 int gaim_conv_placement_get_fnc_index(GaimConvPlacementFunc fnc); |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1138 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1139 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1140 * Returns the index of the active conversation placement function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1141 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1142 * @param index The index of the active function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1143 */ |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1144 int gaim_conv_placement_get_active(void); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1145 |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1146 /** |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1147 * Sets the active conversation placement function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1148 * |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1149 * @param index The index of the function. |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1150 */ |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1151 void gaim_conv_placement_set_active(int index); |
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1152 |
4481
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1153 /*@}*/ |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1154 |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1155 /**************************************************************************/ |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1156 /** @name UI Registration Functions */ |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1157 /**************************************************************************/ |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1158 /*@{*/ |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1159 |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1160 /** |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1161 * Sets the UI operations structure to be used in all gaim conversation |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1162 * windows. |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1163 * |
5207
2819f90a20ba
[gaim-migrate @ 5575]
Christian Hammond <chipx86@chipx86.com>
parents:
5034
diff
changeset
|
1164 * @param ops The UI operations structure. |
4481
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1165 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1166 void gaim_set_win_ui_ops(GaimWindowUiOps *ops); |
4481
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1167 |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1168 /** |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1169 * Returns the gaim window UI operations structure to be used in |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1170 * new windows. |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1171 * |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1172 * @return A filled-out GaimWindowUiOps structure. |
4481
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1173 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1174 GaimWindowUiOps *gaim_get_win_ui_ops(void); |
4481
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1175 |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1176 /*@}*/ |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1177 |
4890
89cb14edf8cf
[gaim-migrate @ 5220]
Christian Hammond <chipx86@chipx86.com>
parents:
4877
diff
changeset
|
1178 #endif /* _GAIM_CONVERSATION_H_ */ |