Mercurial > pidgin
annotate src/list.h @ 4779:443aade63ef8
[gaim-migrate @ 5099]
How now, brown cow?
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Fri, 14 Mar 2003 23:38:58 +0000 |
| parents | c4c28874ecd3 |
| children | 1e28e7d802a1 |
| rev | line source |
|---|---|
| 4688 | 1 /** |
| 2 * @file list.h Buddy List API | |
| 3 * | |
| 4 * gaim | |
| 5 * | |
| 6 * Copyright (C) 2003, Sean Egan <sean.egan@binghamton.edu> | |
| 7 * | |
| 8 * This program is free software; you can redistribute it and/or modify | |
| 9 * it under the terms of the GNU General Public License as published by | |
| 10 * the Free Software Foundation; either version 2 of the License, or | |
| 11 * (at your option) any later version. | |
| 12 * | |
| 13 * This program is distributed in the hope that it will be useful, | |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 * GNU General Public License for more details. | |
| 17 * | |
| 18 * You should have received a copy of the GNU General Public License | |
| 19 * along with this program; if not, write to the Free Software | |
| 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 21 * | |
| 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 | |
| 31 /**************************************************************************/ | |
| 32 /* Enumerations */ | |
| 33 /**************************************************************************/ | |
| 34 enum gaim_blist_node_type { | |
| 35 GAIM_BLIST_GROUP_NODE, | |
| 36 GAIM_BLIST_BUDDY_NODE, | |
| 37 GAIM_BLIST_OTHER_NODE, | |
| 38 }; | |
| 39 | |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
40 #define GAIM_BLIST_NODE_IS_BUDDY(n) ((n)->type == GAIM_BLIST_BUDDY_NODE) |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
41 #define GAIM_BLIST_NODE_IS_GROUP(n) ((n)->type == GAIM_BLIST_GROUP_NODE) |
| 4688 | 42 |
| 43 /**************************************************************************/ | |
| 44 /* Data Structures */ | |
| 45 /**************************************************************************/ | |
| 46 | |
| 47 typedef struct _GaimBlistNode GaimBlistNode; | |
| 48 /** | |
| 49 * A Buddy list node. This can represent a group, a buddy, or anything else. This is a base class for struct buddy and | |
| 50 * struct group and for anything else that wants to put itself in the buddy list. */ | |
| 51 struct _GaimBlistNode { | |
| 52 enum gaim_blist_node_type type; /**< The type of node this is */ | |
| 53 GaimBlistNode *prev; /**< The sibling before this buddy. */ | |
| 54 GaimBlistNode *next; /**< The sibling after this buddy. */ | |
| 55 GaimBlistNode *parent; /**< The parent of this node */ | |
| 56 GaimBlistNode *child; /**< The child of this node */ | |
| 57 void *ui_data; /**< The UI can put data here. */ | |
| 58 }; | |
| 59 | |
| 60 /** | |
| 61 * A buddy. This contains everything Gaim will ever need to know about someone on the buddy list. Everything. | |
| 62 */ | |
| 63 struct buddy { | |
| 64 GaimBlistNode node; /**< The node that this buddy inherits from */ | |
| 65 char *name; /**< The screenname of the buddy. */ | |
| 66 char *alias; /**< The user-set alias of the buddy */ | |
| 67 char *server_alias; /**< The server-specified alias of the buddy. (i.e. MSN "Friendly Names") */ | |
| 68 int present; /**< This is 0 if the buddy appears offline, 1 if he appears online, and 2 if | |
| 69 he has recently signed on */ | |
| 70 int evil; /**< The warning level */ | |
| 71 time_t signon; /**< The time the buddy signed on. */ | |
| 72 int idle; /**< The time the buddy has been idle in minutes. */ | |
| 73 int uc; /**< This is a cryptic bitmask that makes sense only to the prpl. This will get changed */ | |
| 74 void *proto_data; /**< This allows the prpl to associate whatever data it wants with a buddy */ | |
| 75 struct gaim_account *account; /**< the account this buddy belongs to */ | |
| 76 GHashTable *settings; /**< per-buddy settings from the XML buddy list, set by plugins and the likes. */ | |
| 77 }; | |
| 78 | |
| 79 /** | |
| 80 * A group. This contains everything Gaim will ever need to know about a group. | |
| 81 */ | |
| 82 struct group { | |
| 83 GaimBlistNode node; /**< The node that this group inherits from */ | |
| 84 char *name; /**< The name of this group. */ | |
| 85 }; | |
| 86 | |
| 87 | |
| 88 /** | |
| 89 * The Buddy List | |
| 90 */ | |
| 91 struct gaim_buddy_list { | |
| 92 GaimBlistNode *root; /**< The first node in the buddy list */ | |
| 93 struct gaim_blist_ui_ops *ui_ops; /**< The UI operations for the buddy list */ | |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
94 |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
95 void *ui_data; /**< UI-specific data. */ |
| 4688 | 96 }; |
| 97 | |
| 98 /** | |
| 99 * Buddy list UI operations. | |
| 100 * | |
| 101 * Any UI representing a buddy list must assign a filled-out gaim_window_ops | |
| 102 * structure to the buddy list core. | |
| 103 */ | |
| 104 struct gaim_blist_ui_ops | |
| 105 { | |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
106 void (*new_list)(struct gaim_buddy_list *list); /**< Sets UI-specific data on a buddy list. */ |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
107 void (*new_node)(GaimBlistNode *node); /**< Sets UI-specific data on a node. */ |
| 4688 | 108 void (*show)(struct gaim_buddy_list *list); /**< The core will call this when its finished doing it's core stuff */ |
| 109 void (*update)(struct gaim_buddy_list *list, | |
| 110 GaimBlistNode *node); /**< This will update a node in the buddy list. */ | |
| 111 void (*remove)(struct gaim_buddy_list *list, | |
| 112 GaimBlistNode *node); /**< This removes a node from the list */ | |
| 113 void (*destroy)(struct gaim_buddy_list *list); /**< When the list gets destroyed, this gets called to destroy the UI. */ | |
| 114 void (*set_visible)(struct gaim_buddy_list *list, | |
| 115 gboolean show); /**< Hides or unhides the buddy list */ | |
| 116 | |
| 117 }; | |
| 118 | |
| 119 /**************************************************************************/ | |
| 4770 | 120 /** Public Utility Functions */ |
| 121 /**************************************************************************/ | |
| 122 /*@{*/ | |
| 123 | |
| 124 /** | |
| 125 * Returns a GSList of the groups | |
| 126 */ | |
| 127 GSList *gaim_blist_groups(); | |
| 128 | |
| 129 /** | |
| 130 * Returns a GSList of the members of a group node. | |
| 131 * | |
| 132 * It's obviously much faster to recurse the GaimBlistNode linked list | |
| 133 * then using this function. You should try to avoid using it. Only use it | |
| 134 * when you're about to make a milestone release in a few hours and are desperately | |
| 135 * trying to add a critical feature | |
| 136 * | |
| 137 * @param group The group | |
| 138 */ | |
| 139 GSList *gaim_blist_members(struct group *group); | |
| 140 /*@}*/ | |
| 141 | |
| 142 /**************************************************************************/ | |
| 4688 | 143 /** @name Buddy List API */ |
| 144 /**************************************************************************/ | |
| 145 /*@{*/ | |
| 146 | |
| 147 /** | |
| 148 * Creates a new buddy list | |
| 149 */ | |
| 150 struct gaim_buddy_list *gaim_blist_new(); | |
| 151 | |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
152 /** |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
153 * Sets the main buddy list. |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
154 * |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
155 * @return The main buddy list. |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
156 */ |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
157 void gaim_set_blist(struct gaim_buddy_list *blist); |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
158 |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
159 /** |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
160 * Returns the main buddy list. |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
161 * |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
162 * @return The main buddy list. |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
163 */ |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
164 struct gaim_buddy_list *gaim_get_blist(void); |
| 4688 | 165 |
| 166 /** | |
| 167 * Shows the buddy list, creating a new one if necessary. | |
| 168 * | |
| 169 */ | |
| 170 void gaim_blist_show(); | |
| 171 | |
| 172 | |
| 173 /** | |
| 174 * Destroys the buddy list window. | |
| 175 */ | |
| 176 void gaim_blist_destroy(); | |
| 177 | |
| 178 /** | |
| 179 * Hides or unhides the buddy list. | |
| 180 * | |
| 181 * @param show Whether or not to show the buddy list | |
| 182 */ | |
| 183 void gaim_blist_set_visible(gboolean show); | |
| 184 | |
| 185 /** | |
| 186 * Updates a buddy's status. | |
| 187 * | |
| 188 * This needs to not take an int. | |
| 189 * | |
| 190 * @param buddy The buddy whose status has changed | |
| 191 * @param status The new status in cryptic prpl-understood code | |
| 192 */ | |
| 193 void gaim_blist_update_buddy_status(struct buddy *buddy, int status); | |
| 194 | |
| 195 | |
| 196 /** | |
| 197 * Updates a buddy's presence. | |
| 198 * | |
| 199 * @param buddy The buddy whose presence has changed | |
| 200 * @param presence The new presence | |
| 201 */ | |
| 202 void gaim_blist_update_buddy_presence(struct buddy *buddy, int presence); | |
| 203 | |
| 204 | |
| 205 /** | |
| 206 * Updates a buddy's idle time. | |
| 207 * | |
| 208 * @param buddy The buddy whose idle time has changed | |
| 209 * @param idle The buddy's idle time in minutes. | |
| 210 */ | |
| 211 void gaim_blist_update_buddy_idle(struct buddy *buddy, int idle); | |
| 212 | |
| 213 | |
| 214 /** | |
| 215 * Updates a buddy's warning level. | |
| 4757 | 216 * |
| 4688 | 217 * @param buddy The buddy whose warning level has changed |
| 218 * @param evil The warning level as an int from 0 to 100 (or higher, I guess... but that'd be weird) | |
| 219 */ | |
| 220 void gaim_blist_update_buddy_evil(struct buddy *buddy, int warning); | |
| 221 | |
| 4757 | 222 /** |
|
4765
b6f6a10f9baf
[gaim-migrate @ 5083]
Christian Hammond <chipx86@chipx86.com>
parents:
4757
diff
changeset
|
223 * Updates a buddy's icon. |
| 4757 | 224 * |
| 225 * @param buddy The buddy whose buddy icon has changed | |
| 226 */ | |
| 227 void gaim_blist_update_buddy_icon(struct buddy *buddy); | |
| 228 | |
| 229 | |
| 4688 | 230 |
| 231 /** | |
| 232 * Renames a buddy in the buddy list. | |
| 233 * | |
| 234 * @param buddy The buddy whose name will be changed. | |
| 235 * @param name The new name of the buddy. | |
| 236 */ | |
| 237 void gaim_blist_rename_buddy(struct buddy *buddy, const char *name); | |
| 238 | |
| 239 | |
| 240 /** | |
| 241 * Aliases a buddy in the buddy list. | |
| 242 * | |
| 243 * @param buddy The buddy whose alias will be changed. | |
| 244 * @param alias The buddy's alias. | |
| 245 */ | |
| 246 void gaim_blist_alias_buddy(struct buddy *buddy, const char *alias); | |
| 247 | |
| 248 | |
| 249 /** | |
| 250 * Renames a group | |
| 251 * | |
| 252 * @param group The group to rename | |
| 253 * @param name The new name | |
| 254 */ | |
| 255 void gaim_blist_rename_group(struct group *group, const char *name); | |
| 256 | |
| 257 | |
| 258 /** | |
| 259 * Creates a new buddy | |
| 260 * | |
| 261 * @param account The account this buddy will get added to | |
| 262 * @param screenname The screenname of the new buddy | |
| 263 * @param alias The alias of the new buddy (or NULL if unaliased) | |
| 264 * @return A newly allocated buddy | |
| 265 */ | |
| 266 struct buddy *gaim_buddy_new(struct gaim_account *account, const char *screenname, const char *alias); | |
| 267 | |
| 268 /** | |
| 269 * Adds a new buddy to the buddy list. | |
| 270 * | |
| 271 * The buddy will be inserted right after node or appended to the end | |
| 272 * of group if node is NULL. If both are NULL, the buddy will be added to | |
| 273 * the "Buddies" group. | |
| 274 * | |
| 275 * @param buddy The new buddy who gets added | |
| 276 * @param group The group to add the new buddy to. | |
| 277 * @param node The insertion point | |
| 278 */ | |
| 279 void gaim_blist_add_buddy(struct buddy *buddy, struct group *group, GaimBlistNode *node); | |
| 280 | |
| 281 /** | |
| 282 * Creates a new group | |
| 283 * | |
| 284 * You can't have more than one group with the same name. Sorry. If you pass this the | |
| 285 * name of a group that already exists, it will return that group. | |
| 286 * | |
| 287 * @param name The name of the new group | |
| 288 * @return A new group struct | |
| 289 */ | |
| 290 struct group *gaim_group_new(const char *name); | |
| 291 | |
| 292 /** | |
| 293 * Adds a new group to the buddy list. | |
| 294 * | |
| 295 * The new group will be inserted after insert or appended to the end of | |
| 296 * the list if node is NULL. | |
| 297 * | |
| 298 * @param group The group to add the new buddy to. | |
| 299 * @param node The insertion point | |
| 300 */ | |
| 301 void gaim_blist_add_group(struct group *group, GaimBlistNode *node); | |
| 302 | |
| 303 /** | |
| 304 * Removes a buddy from the buddy list and frees the memory allocated to it. | |
| 305 * | |
| 306 * @param buddy The buddy to be removed | |
| 307 */ | |
| 308 void gaim_blist_remove_buddy(struct buddy *buddy); | |
| 309 | |
| 310 /** | |
| 311 * Removes a group from the buddy list and frees the memory allocated to it and to | |
| 312 * its children | |
| 313 * | |
| 314 * @param group The group to be removed | |
| 315 */ | |
| 316 void gaim_blist_remove_group(struct group *group); | |
| 317 | |
| 318 /** | |
| 319 * Returns the alias of a buddy. | |
| 320 * | |
| 321 * @param buddy The buddy whose name will be returned. | |
| 322 * @return The alias (if set), server alias (if option is set), or NULL. | |
| 323 */ | |
| 324 char *gaim_get_buddy_alias_only(struct buddy *buddy); | |
| 325 | |
| 326 | |
| 327 /** | |
| 328 * Returns the correct name to display for a buddy. | |
| 329 * | |
| 330 * @param buddy The buddy whose name will be returned. | |
| 331 * @return The alias (if set), server alias (if option is set), screenname, or "Unknown" | |
| 332 */ | |
| 333 char *gaim_get_buddy_alias(struct buddy *buddy); | |
| 334 | |
| 335 /** | |
| 336 * Finds the buddy struct given a screenname and an account | |
| 337 * | |
| 338 * @param name The buddy's screenname | |
| 339 * @param account The account this buddy belongs to | |
| 340 * @return The buddy or NULL if the buddy does not exist | |
| 341 */ | |
| 342 struct buddy *gaim_find_buddy(struct gaim_account *account, const char *name); | |
| 343 | |
| 344 /** | |
| 345 * Finds a group by name | |
| 346 * | |
| 347 * @param name The groups name | |
| 348 * @return The group or NULL if the group does not exist | |
| 349 */ | |
| 350 struct group *gaim_find_group(const char *name); | |
| 351 | |
| 352 /** | |
| 353 * Returns the group of which the buddy is a member. | |
| 354 * | |
| 355 * @param buddy The buddy | |
| 356 * @return The group or NULL if the buddy is not in a group | |
| 357 */ | |
| 358 struct group *gaim_find_buddys_group(struct buddy *buddy); | |
| 359 | |
| 360 | |
| 361 /** | |
| 362 * Returns a list of accounts that have buddies in this group | |
| 363 * | |
| 364 * @param group The group | |
| 365 * @return A list of gaim_accounts | |
| 366 */ | |
| 367 GSList *gaim_group_get_accounts(struct group *g); | |
| 368 | |
| 369 /** | |
| 370 * Determines whether an account owns any buddies in a given group | |
| 371 * | |
| 372 * @param g The group to search through. | |
| 373 * @account The account. | |
| 374 */ | |
| 375 gboolean gaim_group_on_account(struct group *g, struct gaim_account *account); | |
| 376 | |
| 377 /** | |
| 378 * Called when an account gets signed off. Sets the presence of all the buddies to 0 | |
| 379 * and tells the UI to update them. | |
| 380 * | |
| 381 * @param account The account | |
| 382 */ | |
| 383 void gaim_blist_remove_account(struct gaim_account *account); | |
| 384 | |
| 385 | |
| 4701 | 386 /** |
| 387 * Determines the total size of a group | |
| 388 * | |
| 389 * @param group The group | |
| 390 * @param offline Count buddies in offline accounts | |
| 391 * @return The number of buddies in the group | |
| 392 */ | |
| 393 int gaim_blist_get_group_size(struct group *group, gboolean offline); | |
| 394 | |
| 395 /** | |
| 396 * Determines the number of online buddies in a group | |
| 397 * | |
| 398 * @param group The group | |
| 399 * @return The number of online buddies in the group, or 0 if the group is NULL | |
| 400 */ | |
| 401 int gaim_blist_get_group_online_count(struct group *group); | |
| 402 | |
| 4688 | 403 /*@}*/ |
| 404 | |
| 405 /****************************************************************************************/ | |
| 406 /** @name Buddy list file management API */ | |
| 407 /****************************************************************************************/ | |
| 408 | |
| 409 /*@{*/ | |
| 410 /** | |
| 411 * Saves the buddy list to file | |
| 412 */ | |
| 413 void gaim_blist_save(); | |
| 414 | |
| 415 /** | |
| 416 * Parses the toc-style buddy list used in older versions of Gaim and for SSI in toc.c | |
| 417 * | |
| 418 * @param account This is the account that the buddies and groups from config will get added to | |
| 419 * @param config This is the toc-style buddy list data | |
| 420 */ | |
| 421 void parse_toc_buddy_list(struct gaim_account *account, char *config); | |
| 422 | |
| 423 | |
| 424 /** | |
| 425 * Loads the buddy list from ~/.gaim/blist.xml. | |
| 426 */ | |
| 427 void gaim_blist_load(); | |
| 428 | |
| 429 /** | |
| 430 * Associates some data with the buddy in the xml buddy list | |
| 431 * | |
| 432 * @param b The buddy the data is associated with | |
| 433 * @param key The key used to retrieve the data | |
| 434 * @param value The data to set | |
| 435 */ | |
| 436 void gaim_buddy_set_setting(struct buddy *b, const char *key, const char *value); | |
| 437 | |
| 438 /** | |
| 439 * Retrieves data from the XML buddy list set by gaim_buddy_set_setting()) | |
| 440 * | |
| 441 * @param b The buddy to retrieve data from | |
| 442 * @param key The key to retrieve the data with | |
| 443 * @return The associated data or NULL if no data is associated | |
| 444 */ | |
| 445 char *gaim_buddy_get_setting(struct buddy *b, const char *key); | |
| 446 | |
| 447 /*@}*/ | |
| 448 | |
| 449 /**************************************************************************/ | |
| 450 /** @name UI Registration Functions */ | |
| 451 /**************************************************************************/ | |
| 452 /*@{*/ | |
| 453 | |
| 454 /** | |
| 455 * Sets the UI operations structure to be used for the buddy list. | |
| 456 * | |
| 457 * @param ops The ops struct. | |
| 458 */ | |
| 459 void gaim_set_blist_ui_ops(struct gaim_blist_ui_ops *ops); | |
| 460 | |
|
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
461 /** |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
462 * Returns the UI operations structure to be used for the buddy list. |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
463 * |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
464 * @return The UI operations structure. |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
465 */ |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
466 struct gaim_blist_ui_ops *gaim_get_blist_ui_ops(void); |
|
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4688
diff
changeset
|
467 |
| 4688 | 468 /*@}*/ |
| 469 | |
| 470 #endif /* _LIST_H_ */ |
