Mercurial > pidgin.yaz
annotate src/blist.h @ 6533:6a34b7097149
[gaim-migrate @ 7050]
Sometimes, when signals aren't emitted when you think they should be,
it's because other parts of the program think they're being emitted
when they are being emitted and not when you think they should be.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Thu, 21 Aug 2003 01:24:49 +0000 |
parents | 70d5122bc3ff |
children | 0c5637b5462e |
rev | line source |
---|---|
5228 | 1 /** |
5497 | 2 * @file blist.h Buddy List API |
5228 | 3 * @ingroup core |
4 * | |
5 * gaim | |
6 * | |
7 * Copyright (C) 2003, Sean Egan <sean.egan@binghamton.edu> | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
8 * |
5228 | 9 * This program is free software; you can redistribute it and/or modify |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 */ | |
23 | |
24 /* I can't believe I let ChipX86 inspire me to write good code. -Sean */ | |
25 | |
26 #ifndef _LIST_H_ | |
27 #define _LIST_H_ | |
28 | |
29 #include <glib.h> | |
30 | |
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
31 typedef struct _GaimBlistNode GaimBlistNode; |
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
32 |
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
33 /* TODO Namespace these! */ |
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
34 struct chat; |
5794
5e93fc46d1af
[gaim-migrate @ 6219]
Christian Hammond <chipx86@chipx86.com>
parents:
5758
diff
changeset
|
35 struct buddy; |
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
36 |
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
37 #include "account.h" |
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
38 |
5228 | 39 /**************************************************************************/ |
40 /* Enumerations */ | |
41 /**************************************************************************/ | |
42 enum gaim_blist_node_type { | |
43 GAIM_BLIST_GROUP_NODE, | |
44 GAIM_BLIST_BUDDY_NODE, | |
5234 | 45 GAIM_BLIST_CHAT_NODE, |
6063 | 46 GAIM_BLIST_OTHER_NODE |
5228 | 47 }; |
48 | |
5234 | 49 #define GAIM_BLIST_NODE_IS_CHAT(n) ((n)->type == GAIM_BLIST_CHAT_NODE) |
5228 | 50 #define GAIM_BLIST_NODE_IS_BUDDY(n) ((n)->type == GAIM_BLIST_BUDDY_NODE) |
51 #define GAIM_BLIST_NODE_IS_GROUP(n) ((n)->type == GAIM_BLIST_GROUP_NODE) | |
52 | |
53 enum gaim_buddy_presence_state { | |
54 GAIM_BUDDY_SIGNING_OFF = -1, | |
55 GAIM_BUDDY_OFFLINE = 0, | |
56 GAIM_BUDDY_ONLINE, | |
6063 | 57 GAIM_BUDDY_SIGNING_ON |
5228 | 58 }; |
59 | |
60 #define GAIM_BUDDY_IS_ONLINE(b) ((b)->present == GAIM_BUDDY_ONLINE || \ | |
61 (b)->present == GAIM_BUDDY_SIGNING_ON) | |
62 | |
63 | |
64 /**************************************************************************/ | |
65 /* Data Structures */ | |
66 /**************************************************************************/ | |
67 | |
68 /** | |
69 * A Buddy list node. This can represent a group, a buddy, or anything else. This is a base class for struct buddy and | |
70 * struct group and for anything else that wants to put itself in the buddy list. */ | |
71 struct _GaimBlistNode { | |
72 enum gaim_blist_node_type type; /**< The type of node this is */ | |
73 GaimBlistNode *prev; /**< The sibling before this buddy. */ | |
74 GaimBlistNode *next; /**< The sibling after this buddy. */ | |
75 GaimBlistNode *parent; /**< The parent of this node */ | |
76 GaimBlistNode *child; /**< The child of this node */ | |
77 void *ui_data; /**< The UI can put data here. */ | |
78 }; | |
79 | |
80 /** | |
81 * A buddy. This contains everything Gaim will ever need to know about someone on the buddy list. Everything. | |
82 */ | |
83 struct buddy { | |
84 GaimBlistNode node; /**< The node that this buddy inherits from */ | |
85 char *name; /**< The screenname of the buddy. */ | |
86 char *alias; /**< The user-set alias of the buddy */ | |
87 char *server_alias; /**< The server-specified alias of the buddy. (i.e. MSN "Friendly Names") */ | |
88 enum gaim_buddy_presence_state present; /**< This is 0 if the buddy appears offline, 1 if he appears online, and 2 if | |
89 he has recently signed on */ | |
90 int evil; /**< The warning level */ | |
91 time_t signon; /**< The time the buddy signed on. */ | |
92 int idle; /**< The time the buddy has been idle in minutes. */ | |
93 int uc; /**< This is a cryptic bitmask that makes sense only to the prpl. This will get changed */ | |
94 void *proto_data; /**< This allows the prpl to associate whatever data it wants with a buddy */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
95 GaimAccount *account; /**< the account this buddy belongs to */ |
5228 | 96 GHashTable *settings; /**< per-buddy settings from the XML buddy list, set by plugins and the likes. */ |
97 guint timer; /**< The timer handle. */ | |
98 }; | |
99 | |
100 /** | |
101 * A group. This contains everything Gaim will ever need to know about a group. | |
102 */ | |
103 struct group { | |
104 GaimBlistNode node; /**< The node that this group inherits from */ | |
105 char *name; /**< The name of this group. */ | |
5277 | 106 int totalsize; /**< The number of buddies in this group */ |
107 int currentsize; /**< The number of buddies in this group corresponding to online accounts */ | |
108 int online; /**< The number of buddies in this group who are currently online */ | |
5228 | 109 GHashTable *settings; /**< per-group settings from the XML buddy list, set by plugins and the likes. */ |
110 }; | |
111 | |
5234 | 112 /** |
113 * A group. This contains everything Gaim needs to put a chat room in the | |
114 * buddy list. | |
115 */ | |
116 struct chat { | |
117 GaimBlistNode node; /**< The node that this chat inherits from */ | |
118 char *alias; /**< The display name of this chat. */ | |
119 GHashTable *components; /**< the stuff the protocol needs to know to join the chat */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
120 GaimAccount *account; /**< The account this chat is attached to */ |
5906 | 121 GHashTable *settings; /**< per-chat settings from the XML buddy list, set by plugins and the likes. */ |
5234 | 122 }; |
123 | |
5228 | 124 |
125 /** | |
126 * The Buddy List | |
127 */ | |
128 struct gaim_buddy_list { | |
129 GaimBlistNode *root; /**< The first node in the buddy list */ | |
5247 | 130 GHashTable *buddies; /**< Every buddy in this list */ |
5228 | 131 struct gaim_blist_ui_ops *ui_ops; /**< The UI operations for the buddy list */ |
132 | |
133 void *ui_data; /**< UI-specific data. */ | |
134 }; | |
135 | |
136 /** | |
137 * Buddy list UI operations. | |
138 * | |
139 * Any UI representing a buddy list must assign a filled-out gaim_window_ops | |
140 * structure to the buddy list core. | |
141 */ | |
142 struct gaim_blist_ui_ops | |
143 { | |
144 void (*new_list)(struct gaim_buddy_list *list); /**< Sets UI-specific data on a buddy list. */ | |
145 void (*new_node)(GaimBlistNode *node); /**< Sets UI-specific data on a node. */ | |
146 void (*show)(struct gaim_buddy_list *list); /**< The core will call this when its finished doing it's core stuff */ | |
147 void (*update)(struct gaim_buddy_list *list, | |
148 GaimBlistNode *node); /**< This will update a node in the buddy list. */ | |
149 void (*remove)(struct gaim_buddy_list *list, | |
150 GaimBlistNode *node); /**< This removes a node from the list */ | |
151 void (*destroy)(struct gaim_buddy_list *list); /**< When the list gets destroyed, this gets called to destroy the UI. */ | |
152 void (*set_visible)(struct gaim_buddy_list *list, | |
153 gboolean show); /**< Hides or unhides the buddy list */ | |
154 | |
155 }; | |
156 | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
157 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
158 extern "C" { |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
159 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
160 |
5228 | 161 /**************************************************************************/ |
162 /** @name Buddy List API */ | |
163 /**************************************************************************/ | |
164 /*@{*/ | |
165 | |
166 /** | |
167 * Creates a new buddy list | |
168 */ | |
169 struct gaim_buddy_list *gaim_blist_new(); | |
170 | |
171 /** | |
172 * Sets the main buddy list. | |
173 * | |
174 * @return The main buddy list. | |
175 */ | |
176 void gaim_set_blist(struct gaim_buddy_list *blist); | |
177 | |
178 /** | |
179 * Returns the main buddy list. | |
180 * | |
181 * @return The main buddy list. | |
182 */ | |
183 struct gaim_buddy_list *gaim_get_blist(void); | |
184 | |
185 /** | |
186 * Shows the buddy list, creating a new one if necessary. | |
187 * | |
188 */ | |
189 void gaim_blist_show(); | |
190 | |
191 | |
192 /** | |
193 * Destroys the buddy list window. | |
194 */ | |
195 void gaim_blist_destroy(); | |
196 | |
197 /** | |
198 * Hides or unhides the buddy list. | |
199 * | |
200 * @param show Whether or not to show the buddy list | |
201 */ | |
202 void gaim_blist_set_visible(gboolean show); | |
203 | |
204 /** | |
205 * Updates a buddy's status. | |
5234 | 206 * |
5228 | 207 * This needs to not take an int. |
208 * | |
209 * @param buddy The buddy whose status has changed | |
210 * @param status The new status in cryptic prpl-understood code | |
211 */ | |
212 void gaim_blist_update_buddy_status(struct buddy *buddy, int status); | |
213 | |
214 | |
215 /** | |
216 * Updates a buddy's presence. | |
217 * | |
218 * @param buddy The buddy whose presence has changed | |
219 * @param presence The new presence | |
220 */ | |
221 void gaim_blist_update_buddy_presence(struct buddy *buddy, int presence); | |
222 | |
223 | |
224 /** | |
225 * Updates a buddy's idle time. | |
226 * | |
227 * @param buddy The buddy whose idle time has changed | |
228 * @param idle The buddy's idle time in minutes. | |
229 */ | |
230 void gaim_blist_update_buddy_idle(struct buddy *buddy, int idle); | |
231 | |
232 | |
233 /** | |
234 * Updates a buddy's warning level. | |
235 * | |
236 * @param buddy The buddy whose warning level has changed | |
237 * @param evil The warning level as an int from 0 to 100 (or higher, I guess... but that'd be weird) | |
238 */ | |
239 void gaim_blist_update_buddy_evil(struct buddy *buddy, int warning); | |
240 | |
241 /** | |
242 * Updates a buddy's icon. | |
243 * | |
244 * @param buddy The buddy whose buddy icon has changed | |
245 */ | |
246 void gaim_blist_update_buddy_icon(struct buddy *buddy); | |
247 | |
248 | |
249 | |
250 /** | |
251 * Renames a buddy in the buddy list. | |
252 * | |
253 * @param buddy The buddy whose name will be changed. | |
254 * @param name The new name of the buddy. | |
255 */ | |
256 void gaim_blist_rename_buddy(struct buddy *buddy, const char *name); | |
257 | |
258 | |
259 /** | |
260 * Aliases a buddy in the buddy list. | |
261 * | |
262 * @param buddy The buddy whose alias will be changed. | |
263 * @param alias The buddy's alias. | |
264 */ | |
265 void gaim_blist_alias_buddy(struct buddy *buddy, const char *alias); | |
266 | |
5234 | 267 /** |
6059 | 268 * Sets the server-sent alias of a buddy in the buddy list. |
6058 | 269 * |
270 * @param buddy The buddy whose alias will be changed. | |
271 * @param alias The buddy's "official" alias. | |
272 */ | |
273 void gaim_blist_server_alias_buddy(struct buddy *buddy, const char *alias); | |
274 | |
275 /** | |
5234 | 276 * Aliases a chat in the buddy list. |
277 * | |
278 * @param chat The chat whose alias will be changed. | |
279 * @param alias The chat's new alias. | |
280 */ | |
281 void gaim_blist_alias_chat(struct chat *chat, const char *alias); | |
5228 | 282 |
283 /** | |
284 * Renames a group | |
285 * | |
286 * @param group The group to rename | |
287 * @param name The new name | |
288 */ | |
289 void gaim_blist_rename_group(struct group *group, const char *name); | |
290 | |
5234 | 291 /** |
292 * Creates a new chat for the buddy list | |
293 * | |
294 * @param account The account this chat will get added to | |
295 * @param alias The alias of the new chat | |
296 * @param components The info the prpl needs to join the chat | |
297 * @return A newly allocated chat | |
298 */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
299 struct chat *gaim_chat_new(GaimAccount *account, const char *alias, GHashTable *components); |
5234 | 300 |
301 /** | |
6034 | 302 * Gets the alias of the chat, or the chat name if the alias does not exist |
303 * | |
304 * @param chat The chat | |
305 * @return The display name of the chat | |
306 */ | |
6036 | 307 char *gaim_chat_get_display_name(struct chat *chat); |
6034 | 308 |
309 /** | |
5234 | 310 * Adds a new chat to the buddy list. |
311 * | |
312 * The chat will be inserted right after node or appended to the end | |
313 * of group if node is NULL. If both are NULL, the buddy will be added to | |
314 * the "Chats" group. | |
315 * | |
316 * @param chat The new chat who gets added | |
317 * @param group The group to add the new chat to. | |
318 * @param node The insertion point | |
319 */ | |
320 void gaim_blist_add_chat(struct chat *chat, struct group *group, GaimBlistNode *node); | |
5228 | 321 |
322 /** | |
323 * Creates a new buddy | |
324 * | |
325 * @param account The account this buddy will get added to | |
326 * @param screenname The screenname of the new buddy | |
327 * @param alias The alias of the new buddy (or NULL if unaliased) | |
328 * @return A newly allocated buddy | |
329 */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
330 struct buddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias); |
5228 | 331 |
332 /** | |
333 * Adds a new buddy to the buddy list. | |
334 * | |
335 * The buddy will be inserted right after node or appended to the end | |
336 * of group if node is NULL. If both are NULL, the buddy will be added to | |
337 * the "Buddies" group. | |
338 * | |
339 * @param buddy The new buddy who gets added | |
340 * @param group The group to add the new buddy to. | |
341 * @param node The insertion point | |
342 */ | |
343 void gaim_blist_add_buddy(struct buddy *buddy, struct group *group, GaimBlistNode *node); | |
344 | |
345 /** | |
346 * Creates a new group | |
347 * | |
348 * You can't have more than one group with the same name. Sorry. If you pass this the | |
349 * name of a group that already exists, it will return that group. | |
350 * | |
351 * @param name The name of the new group | |
352 * @return A new group struct | |
353 */ | |
354 struct group *gaim_group_new(const char *name); | |
355 | |
356 /** | |
357 * Adds a new group to the buddy list. | |
358 * | |
359 * The new group will be inserted after insert or appended to the end of | |
360 * the list if node is NULL. | |
361 * | |
362 * @param group The group to add the new buddy to. | |
363 * @param node The insertion point | |
364 */ | |
365 void gaim_blist_add_group(struct group *group, GaimBlistNode *node); | |
366 | |
367 /** | |
368 * Removes a buddy from the buddy list and frees the memory allocated to it. | |
369 * | |
370 * @param buddy The buddy to be removed | |
371 */ | |
372 void gaim_blist_remove_buddy(struct buddy *buddy); | |
373 | |
374 /** | |
5234 | 375 * Removes a chat from the buddy list and frees the memory allocated to it. |
376 * | |
377 * @param chat The chat to be removed | |
378 */ | |
379 void gaim_blist_remove_chat(struct chat *chat); | |
380 | |
381 /** | |
5228 | 382 * Removes a group from the buddy list and frees the memory allocated to it and to |
383 * its children | |
384 * | |
385 * @param group The group to be removed | |
386 */ | |
387 void gaim_blist_remove_group(struct group *group); | |
388 | |
389 /** | |
390 * Returns the alias of a buddy. | |
391 * | |
392 * @param buddy The buddy whose name will be returned. | |
393 * @return The alias (if set), server alias (if option is set), or NULL. | |
394 */ | |
395 char *gaim_get_buddy_alias_only(struct buddy *buddy); | |
396 | |
397 | |
398 /** | |
399 * Returns the correct name to display for a buddy. | |
400 * | |
401 * @param buddy The buddy whose name will be returned. | |
402 * @return The alias (if set), server alias (if option is set), screenname, or "Unknown" | |
403 */ | |
404 char *gaim_get_buddy_alias(struct buddy *buddy); | |
405 | |
406 /** | |
407 * Finds the buddy struct given a screenname and an account | |
408 * | |
5758 | 409 * @param name The buddy's screenname or NULL to search for more buddies with the same screenname |
410 * as the previous search | |
5228 | 411 * @param account The account this buddy belongs to |
412 * @return The buddy or NULL if the buddy does not exist | |
413 */ | |
6245 | 414 struct buddy *gaim_find_buddy(GaimAccount *account, const char *name); |
415 | |
416 /** | |
417 * Finds all buddies struct given a screenname and an account | |
418 * | |
419 * @param name The buddy's screenname | |
420 * @param account The account this buddy belongs to | |
421 * | |
422 * @return A GSList of buddies (which must be freed), or NULL if the buddy doesn't exist | |
423 */ | |
424 GSList *gaim_find_buddies(GaimAccount *account, const char *name); | |
425 | |
5228 | 426 |
427 /** | |
428 * Finds a group by name | |
429 * | |
430 * @param name The groups name | |
431 * @return The group or NULL if the group does not exist | |
432 */ | |
433 struct group *gaim_find_group(const char *name); | |
434 | |
435 /** | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
436 * Finds a chat by name. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
437 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
438 * @param name The chat's name. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
439 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
440 * @return The chat, or @c NULL if the chat does not exist. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
441 */ |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
442 struct chat *gaim_blist_find_chat(GaimAccount *account, const char *name); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
443 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
444 /** |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
445 * Returns the group of which the chat is a member. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
446 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
447 * @param chat The chat. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
448 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
449 * @return The parent group, or @c NULL if the chat is not in a group. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
450 */ |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
451 struct group *gaim_blist_chat_get_group(struct chat *chat); |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
452 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
453 /** |
5228 | 454 * Returns the group of which the buddy is a member. |
455 * | |
456 * @param buddy The buddy | |
457 * @return The group or NULL if the buddy is not in a group | |
458 */ | |
459 struct group *gaim_find_buddys_group(struct buddy *buddy); | |
460 | |
461 | |
462 /** | |
463 * Returns a list of accounts that have buddies in this group | |
464 * | |
465 * @param group The group | |
466 * @return A list of gaim_accounts | |
467 */ | |
468 GSList *gaim_group_get_accounts(struct group *g); | |
469 | |
470 /** | |
471 * Determines whether an account owns any buddies in a given group | |
472 * | |
473 * @param g The group to search through. | |
474 * @param account The account. | |
475 */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
476 gboolean gaim_group_on_account(struct group *g, GaimAccount *account); |
5228 | 477 |
478 /** | |
5234 | 479 * Called when an account gets signed on. Tells the UI to update all the |
480 * buddies. | |
481 * | |
482 * @param account The account | |
483 */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
484 void gaim_blist_add_account(GaimAccount *account); |
5234 | 485 |
486 | |
487 /** | |
5228 | 488 * Called when an account gets signed off. Sets the presence of all the buddies to 0 |
489 * and tells the UI to update them. | |
490 * | |
491 * @param account The account | |
492 */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
493 void gaim_blist_remove_account(GaimAccount *account); |
5228 | 494 |
495 | |
496 /** | |
497 * Determines the total size of a group | |
498 * | |
499 * @param group The group | |
500 * @param offline Count buddies in offline accounts | |
501 * @return The number of buddies in the group | |
502 */ | |
503 int gaim_blist_get_group_size(struct group *group, gboolean offline); | |
504 | |
505 /** | |
506 * Determines the number of online buddies in a group | |
507 * | |
508 * @param group The group | |
509 * @return The number of online buddies in the group, or 0 if the group is NULL | |
510 */ | |
511 int gaim_blist_get_group_online_count(struct group *group); | |
512 | |
513 /*@}*/ | |
514 | |
515 /****************************************************************************************/ | |
516 /** @name Buddy list file management API */ | |
517 /****************************************************************************************/ | |
518 | |
519 /*@{*/ | |
520 /** | |
521 * Saves the buddy list to file | |
522 */ | |
523 void gaim_blist_save(); | |
524 | |
525 /** | |
526 * Parses the toc-style buddy list used in older versions of Gaim and for SSI in toc.c | |
527 * | |
528 * @param account This is the account that the buddies and groups from config will get added to | |
529 * @param config This is the toc-style buddy list data | |
530 */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
531 void parse_toc_buddy_list(GaimAccount *account, char *config); |
5228 | 532 |
533 | |
534 /** | |
535 * Loads the buddy list from ~/.gaim/blist.xml. | |
536 */ | |
537 void gaim_blist_load(); | |
538 | |
539 /** | |
540 * Associates some data with the group in the xml buddy list | |
541 * | |
542 * @param g The group the data is associated with | |
543 * @param key The key used to retrieve the data | |
544 * @param value The data to set | |
545 */ | |
546 void gaim_group_set_setting(struct group *g, const char *key, const char *value); | |
547 | |
548 /** | |
549 * Retrieves data from the XML buddy list set by gaim_group_set_setting()) | |
550 * | |
551 * @param g The group to retrieve data from | |
552 * @param key The key to retrieve the data with | |
553 * @return The associated data or NULL if no data is associated | |
554 */ | |
555 char *gaim_group_get_setting(struct group *g, const char *key); | |
556 | |
5906 | 557 /** |
558 * Associates some data with the chat in the xml buddy list | |
559 * | |
560 * @param b The chat the data is associated with | |
561 * @param key The key used to retrieve the data | |
562 * @param value The data to set | |
563 */ | |
564 void gaim_chat_set_setting(struct chat *c, const char *key, const char *value); | |
565 | |
566 /** | |
567 * Retrieves data from the XML buddy list set by gaim_chat_set_setting()) | |
568 * | |
569 * @param b The chat to retrieve data from | |
570 * @param key The key to retrieve the data with | |
571 * @return The associated data or NULL if no data is associated | |
572 */ | |
573 char *gaim_chat_get_setting(struct chat *c, const char *key); | |
5228 | 574 |
575 /** | |
576 * Associates some data with the buddy in the xml buddy list | |
577 * | |
578 * @param b The buddy the data is associated with | |
579 * @param key The key used to retrieve the data | |
580 * @param value The data to set | |
581 */ | |
582 void gaim_buddy_set_setting(struct buddy *b, const char *key, const char *value); | |
583 | |
584 /** | |
585 * Retrieves data from the XML buddy list set by gaim_buddy_set_setting()) | |
586 * | |
587 * @param b The buddy to retrieve data from | |
588 * @param key The key to retrieve the data with | |
589 * @return The associated data or NULL if no data is associated | |
590 */ | |
591 char *gaim_buddy_get_setting(struct buddy *b, const char *key); | |
592 | |
593 /*@}*/ | |
594 | |
595 /**************************************************************************/ | |
596 /** @name UI Registration Functions */ | |
597 /**************************************************************************/ | |
598 /*@{*/ | |
599 | |
600 /** | |
601 * Sets the UI operations structure to be used for the buddy list. | |
602 * | |
603 * @param ops The ops struct. | |
604 */ | |
605 void gaim_set_blist_ui_ops(struct gaim_blist_ui_ops *ops); | |
606 | |
607 /** | |
608 * Returns the UI operations structure to be used for the buddy list. | |
609 * | |
610 * @return The UI operations structure. | |
611 */ | |
612 struct gaim_blist_ui_ops *gaim_get_blist_ui_ops(void); | |
613 | |
614 /*@}*/ | |
615 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
616 /**************************************************************************/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
617 /** @name Buddy List Subsystem */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
618 /**************************************************************************/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
619 /*@{*/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
620 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
621 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
622 * Returns the handle for the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
623 * |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
624 * @return The buddy list subsystem handle. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
625 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
626 void *gaim_blist_get_handle(void); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
627 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
628 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
629 * Initializes the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
630 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
631 void gaim_blist_init(void); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
632 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
633 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
634 * Uninitializes the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
635 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
636 void gaim_blist_uninit(void); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
637 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
638 /*@}*/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
639 |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
640 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
641 } |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
642 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
643 |
5228 | 644 #endif /* _LIST_H_ */ |