Mercurial > pidgin.yaz
annotate src/blist.h @ 10037:e6e68b9db19b
[gaim-migrate @ 10996]
" Adds gaim_buddy_get_account and gaim_buddy_get_name to
blist.c and blist.h" --Dave West
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sat, 18 Sep 2004 22:14:47 +0000 |
parents | a38881ec9c0f |
children | eaec201b2688 |
rev | line source |
---|---|
5228 | 1 /** |
5497 | 2 * @file blist.h Buddy List API |
5228 | 3 * @ingroup core |
4 * | |
5 * gaim | |
6 * | |
8046 | 7 * Gaim is the legal property of its developers, whose names are too numerous |
8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
9 * source distribution. | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
10 * |
5228 | 11 * This program is free software; you can redistribute it and/or modify |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 */ | |
9713 | 25 #ifndef _GAIM_BLIST_H_ |
26 #define _GAIM_BLIST_H_ | |
5228 | 27 |
28 /* I can't believe I let ChipX86 inspire me to write good code. -Sean */ | |
29 | |
30 #include <glib.h> | |
31 | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
32 typedef struct _GaimBuddyList GaimBuddyList; |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
33 typedef struct _GaimBlistUiOps GaimBlistUiOps; |
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
34 typedef struct _GaimBlistNode GaimBlistNode; |
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
35 |
9030 | 36 typedef struct _GaimBlistNodeAction GaimBlistNodeAction; |
37 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
38 typedef struct _GaimChat GaimChat; |
6695 | 39 typedef struct _GaimGroup GaimGroup; |
40 typedef struct _GaimContact GaimContact; | |
41 typedef struct _GaimBuddy GaimBuddy; | |
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
42 |
5228 | 43 /**************************************************************************/ |
44 /* Enumerations */ | |
45 /**************************************************************************/ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
46 typedef enum |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
47 { |
5228 | 48 GAIM_BLIST_GROUP_NODE, |
6695 | 49 GAIM_BLIST_CONTACT_NODE, |
5228 | 50 GAIM_BLIST_BUDDY_NODE, |
5234 | 51 GAIM_BLIST_CHAT_NODE, |
6063 | 52 GAIM_BLIST_OTHER_NODE |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
53 |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
54 } GaimBlistNodeType; |
5228 | 55 |
9944 | 56 #define GAIM_BLIST_NODE_IS_CHAT(n) ((n)->type == GAIM_BLIST_CHAT_NODE) |
57 #define GAIM_BLIST_NODE_IS_BUDDY(n) ((n)->type == GAIM_BLIST_BUDDY_NODE) | |
6695 | 58 #define GAIM_BLIST_NODE_IS_CONTACT(n) ((n)->type == GAIM_BLIST_CONTACT_NODE) |
9944 | 59 #define GAIM_BLIST_NODE_IS_GROUP(n) ((n)->type == GAIM_BLIST_GROUP_NODE) |
5228 | 60 |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
61 typedef enum |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
62 { |
5228 | 63 GAIM_BUDDY_SIGNING_OFF = -1, |
64 GAIM_BUDDY_OFFLINE = 0, | |
65 GAIM_BUDDY_ONLINE, | |
6063 | 66 GAIM_BUDDY_SIGNING_ON |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
67 |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
68 } GaimBuddyPresenceState; |
5228 | 69 |
9944 | 70 #define GAIM_BUDDY_IS_ONLINE(b) \ |
71 ((b) != NULL && gaim_account_is_connected((b)->account) && \ | |
72 gaim_presence_is_online(gaim_buddy_get_presence(b))) | |
5228 | 73 |
9787 | 74 typedef enum |
75 { | |
10008 | 76 GAIM_BLIST_NODE_FLAG_NO_SAVE = 1 /**< node should not be saved with the buddy list */ |
77 | |
9787 | 78 } GaimBlistNodeFlags; |
79 | |
80 #define GAIM_BLIST_NODE_HAS_FLAG(b, f) ((b)->flags & (f)) | |
81 #define GAIM_BLIST_NODE_SHOULD_SAVE(b) (! GAIM_BLIST_NODE_HAS_FLAG(b, GAIM_BLIST_NODE_FLAG_NO_SAVE)) | |
82 | |
10008 | 83 #include "account.h" |
84 #include "buddyicon.h" | |
85 #include "status.h" | |
5228 | 86 |
87 /**************************************************************************/ | |
88 /* Data Structures */ | |
89 /**************************************************************************/ | |
90 | |
91 /** | |
92 * A Buddy list node. This can represent a group, a buddy, or anything else. This is a base class for struct buddy and | |
93 * struct group and for anything else that wants to put itself in the buddy list. */ | |
94 struct _GaimBlistNode { | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
95 GaimBlistNodeType type; /**< The type of node this is */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
96 GaimBlistNode *prev; /**< The sibling before this buddy. */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
97 GaimBlistNode *next; /**< The sibling after this buddy. */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
98 GaimBlistNode *parent; /**< The parent of this node */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
99 GaimBlistNode *child; /**< The child of this node */ |
7693 | 100 GHashTable *settings; /**< per-node settings */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
101 void *ui_data; /**< The UI can put data here. */ |
9787 | 102 GaimBlistNodeFlags flags; /**< The buddy flags */ |
5228 | 103 }; |
104 | |
105 /** | |
106 * A buddy. This contains everything Gaim will ever need to know about someone on the buddy list. Everything. | |
107 */ | |
6695 | 108 struct _GaimBuddy { |
5228 | 109 GaimBlistNode node; /**< The node that this buddy inherits from */ |
110 char *name; /**< The screenname of the buddy. */ | |
111 char *alias; /**< The user-set alias of the buddy */ | |
6695 | 112 char *server_alias; /**< The server-specified alias of the buddy. (i.e. MSN "Friendly Names") */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
113 GaimBuddyPresenceState present; /**< This is 0 if the buddy appears offline, 1 if he appears online, and 2 if |
5228 | 114 he has recently signed on */ |
115 time_t signon; /**< The time the buddy signed on. */ | |
116 int uc; /**< This is a cryptic bitmask that makes sense only to the prpl. This will get changed */ | |
117 void *proto_data; /**< This allows the prpl to associate whatever data it wants with a buddy */ | |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
118 GaimBuddyIcon *icon; /**< The buddy icon. */ |
9787 | 119 GaimAccount *account; /**< the account this buddy belongs to */ |
120 guint timer; /**< The timer handle. */ | |
9949 | 121 GaimPresence *presence; |
5228 | 122 }; |
123 | |
124 /** | |
6695 | 125 * A contact. This contains everything Gaim will ever need to know about a contact. |
126 */ | |
127 struct _GaimContact { | |
6755 | 128 GaimBlistNode node; /**< The node that this contact inherits from. */ |
129 char *alias; /**< The user-set alias of the contact */ | |
130 int totalsize; /**< The number of buddies in this contact */ | |
131 int currentsize; /**< The number of buddies in this contact corresponding to online accounts */ | |
132 int online; /**< The number of buddies in this contact who are currently online */ | |
6843 | 133 GaimBuddy *priority; /**< The "top" buddy for this contact */ |
6695 | 134 }; |
135 | |
136 | |
137 /** | |
5228 | 138 * A group. This contains everything Gaim will ever need to know about a group. |
139 */ | |
6695 | 140 struct _GaimGroup { |
5228 | 141 GaimBlistNode node; /**< The node that this group inherits from */ |
142 char *name; /**< The name of this group. */ | |
6695 | 143 int totalsize; /**< The number of chats and contacts in this group */ |
144 int currentsize; /**< The number of chats and contacts in this group corresponding to online accounts */ | |
145 int online; /**< The number of chats and contacts in this group who are currently online */ | |
5228 | 146 }; |
147 | |
5234 | 148 /** |
6695 | 149 * A chat. This contains everything Gaim needs to put a chat room in the |
5234 | 150 * buddy list. |
151 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
152 struct _GaimChat { |
5234 | 153 GaimBlistNode node; /**< The node that this chat inherits from */ |
154 char *alias; /**< The display name of this chat. */ | |
155 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
|
156 GaimAccount *account; /**< The account this chat is attached to */ |
5234 | 157 }; |
158 | |
5228 | 159 |
160 /** | |
161 * The Buddy List | |
162 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
163 struct _GaimBuddyList { |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
164 GaimBlistNode *root; /**< The first node in the buddy list */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
165 GHashTable *buddies; /**< Every buddy in this list */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
166 GaimBlistUiOps *ui_ops; /**< The UI operations for the buddy list */ |
5228 | 167 |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
168 void *ui_data; /**< UI-specific data. */ |
5228 | 169 }; |
170 | |
171 /** | |
172 * Buddy list UI operations. | |
173 * | |
9460 | 174 * Any UI representing a buddy list must assign a filled-out GaimBlistUiOps |
5228 | 175 * structure to the buddy list core. |
176 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
177 struct _GaimBlistUiOps |
5228 | 178 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
179 void (*new_list)(GaimBuddyList *list); /**< Sets UI-specific data on a buddy list. */ |
9996 | 180 void (*new_node)(GaimBlistNode *node); /**< Sets UI-specific data on a node. */ |
9997 | 181 void (*show)(GaimBuddyList *list); /**< The core will call this when it's finished doing its core stuff */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
182 void (*update)(GaimBuddyList *list, |
9996 | 183 GaimBlistNode *node); /**< This will update a node in the buddy list. */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
184 void (*remove)(GaimBuddyList *list, |
9996 | 185 GaimBlistNode *node); /**< This removes a node from the list */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
186 void (*destroy)(GaimBuddyList *list); /**< When the list gets destroyed, this gets called to destroy the UI. */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
187 void (*set_visible)(GaimBuddyList *list, |
9996 | 188 gboolean show); /**< Hides or unhides the buddy list */ |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
189 void (*request_add_buddy)(GaimAccount *account, const char *username, |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
190 const char *group, const char *alias); |
7859 | 191 void (*request_add_chat)(GaimAccount *account, GaimGroup *group, |
9754 | 192 const char *alias, const char *name); |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
193 void (*request_add_group)(void); |
5228 | 194 }; |
195 | |
9030 | 196 |
197 struct _GaimBlistNodeAction { | |
198 char *label; | |
199 void (*callback)(GaimBlistNode *, gpointer); | |
200 gpointer data; | |
201 }; | |
202 | |
203 | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
204 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
205 extern "C" { |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
206 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
207 |
5228 | 208 /**************************************************************************/ |
209 /** @name Buddy List API */ | |
210 /**************************************************************************/ | |
211 /*@{*/ | |
212 | |
213 /** | |
214 * Creates a new buddy list | |
215 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
216 GaimBuddyList *gaim_blist_new(); |
5228 | 217 |
218 /** | |
219 * Sets the main buddy list. | |
220 * | |
221 * @return The main buddy list. | |
222 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
223 void gaim_set_blist(GaimBuddyList *blist); |
5228 | 224 |
225 /** | |
226 * Returns the main buddy list. | |
227 * | |
228 * @return The main buddy list. | |
229 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
230 GaimBuddyList *gaim_get_blist(void); |
5228 | 231 |
232 /** | |
233 * Shows the buddy list, creating a new one if necessary. | |
234 * | |
235 */ | |
236 void gaim_blist_show(); | |
237 | |
238 | |
239 /** | |
240 * Destroys the buddy list window. | |
241 */ | |
242 void gaim_blist_destroy(); | |
243 | |
244 /** | |
245 * Hides or unhides the buddy list. | |
246 * | |
247 * @param show Whether or not to show the buddy list | |
248 */ | |
249 void gaim_blist_set_visible(gboolean show); | |
250 | |
251 /** | |
252 * Updates a buddy's status. | |
5234 | 253 * |
5228 | 254 * This needs to not take an int. |
255 * | |
256 * @param buddy The buddy whose status has changed | |
257 * @param status The new status in cryptic prpl-understood code | |
258 */ | |
6695 | 259 void gaim_blist_update_buddy_status(GaimBuddy *buddy, int status); |
5228 | 260 |
261 | |
262 /** | |
263 * Updates a buddy's presence. | |
264 * | |
265 * @param buddy The buddy whose presence has changed | |
9927 | 266 * @param online If the buddy is now online |
5228 | 267 */ |
9927 | 268 void gaim_blist_update_buddy_presence(GaimBuddy *buddy, gboolean online); |
5228 | 269 |
7950 | 270 /** |
271 * Updates a buddy's signon time. | |
272 * | |
9944 | 273 * @param buddy The buddy whose sign-on time has changed. |
7950 | 274 * @param signon The buddy's signon time since the dawn of the UNIX epoch. |
275 */ | |
276 void gaim_blist_update_buddy_signon(GaimBuddy *buddy, time_t signon); | |
5228 | 277 |
278 /** | |
279 * Updates a buddy's icon. | |
280 * | |
281 * @param buddy The buddy whose buddy icon has changed | |
282 */ | |
6695 | 283 void gaim_blist_update_buddy_icon(GaimBuddy *buddy); |
5228 | 284 |
285 /** | |
286 * Renames a buddy in the buddy list. | |
287 * | |
288 * @param buddy The buddy whose name will be changed. | |
289 * @param name The new name of the buddy. | |
290 */ | |
6695 | 291 void gaim_blist_rename_buddy(GaimBuddy *buddy, const char *name); |
5228 | 292 |
293 | |
294 /** | |
295 * Aliases a buddy in the buddy list. | |
296 * | |
297 * @param buddy The buddy whose alias will be changed. | |
298 * @param alias The buddy's alias. | |
299 */ | |
6695 | 300 void gaim_blist_alias_buddy(GaimBuddy *buddy, const char *alias); |
5228 | 301 |
5234 | 302 /** |
6059 | 303 * Sets the server-sent alias of a buddy in the buddy list. |
6058 | 304 * |
305 * @param buddy The buddy whose alias will be changed. | |
306 * @param alias The buddy's "official" alias. | |
307 */ | |
6695 | 308 void gaim_blist_server_alias_buddy(GaimBuddy *buddy, const char *alias); |
6058 | 309 |
310 /** | |
5234 | 311 * Aliases a chat in the buddy list. |
312 * | |
313 * @param chat The chat whose alias will be changed. | |
314 * @param alias The chat's new alias. | |
315 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
316 void gaim_blist_alias_chat(GaimChat *chat, const char *alias); |
5228 | 317 |
318 /** | |
319 * Renames a group | |
320 * | |
321 * @param group The group to rename | |
322 * @param name The new name | |
323 */ | |
6695 | 324 void gaim_blist_rename_group(GaimGroup *group, const char *name); |
5228 | 325 |
5234 | 326 /** |
327 * Creates a new chat for the buddy list | |
328 * | |
329 * @param account The account this chat will get added to | |
330 * @param alias The alias of the new chat | |
331 * @param components The info the prpl needs to join the chat | |
332 * @return A newly allocated chat | |
333 */ | |
7125 | 334 GaimChat *gaim_chat_new(GaimAccount *account, const char *alias, GHashTable *components); |
5234 | 335 |
336 /** | |
6034 | 337 * Gets the alias of the chat, or the chat name if the alias does not exist |
338 * | |
339 * @param chat The chat | |
340 * @return The display name of the chat | |
341 */ | |
7125 | 342 char *gaim_chat_get_display_name(GaimChat *chat); |
6034 | 343 |
344 /** | |
5234 | 345 * Adds a new chat to the buddy list. |
346 * | |
347 * The chat will be inserted right after node or appended to the end | |
348 * of group if node is NULL. If both are NULL, the buddy will be added to | |
349 * the "Chats" group. | |
350 * | |
351 * @param chat The new chat who gets added | |
352 * @param group The group to add the new chat to. | |
353 * @param node The insertion point | |
354 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
355 void gaim_blist_add_chat(GaimChat *chat, GaimGroup *group, GaimBlistNode *node); |
5228 | 356 |
357 /** | |
358 * Creates a new buddy | |
359 * | |
360 * @param account The account this buddy will get added to | |
361 * @param screenname The screenname of the new buddy | |
362 * @param alias The alias of the new buddy (or NULL if unaliased) | |
363 * @return A newly allocated buddy | |
364 */ | |
6695 | 365 GaimBuddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias); |
5228 | 366 |
367 /** | |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
368 * Sets a buddy's icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
369 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
370 * This should only be called from within Gaim. You probably want to |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
371 * call gaim_buddy_icon_set_data(). |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
372 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
373 * @param buddy The buddy. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
374 * @param icon The buddy icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
375 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
376 * @see gaim_buddy_icon_set_data() |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
377 */ |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
378 void gaim_buddy_set_icon(GaimBuddy *buddy, GaimBuddyIcon *icon); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
379 |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
380 /** |
10037
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
381 * Returns a buddy's account. |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
382 * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
383 * @param buddy The buddy. |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
384 * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
385 * @return The account |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
386 */ |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
387 GaimAccount *gaim_buddy_get_account(const GaimBuddy *buddy); |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
388 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
389 /** |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
390 * Returns a buddy's name |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
391 * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
392 * @param buddy The buddy. |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
393 * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
394 * @return The name. |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
395 */ |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
396 const char *gaim_buddy_get_name(const GaimBuddy *buddy); |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
397 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
398 /** |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
399 * Returns a buddy's icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
400 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
401 * @param buddy The buddy. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
402 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
403 * @return The buddy icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
404 */ |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
405 GaimBuddyIcon *gaim_buddy_get_icon(const GaimBuddy *buddy); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
406 |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
407 /** |
7312 | 408 * Returns a buddy's contact. |
409 * | |
410 * @param buddy The buddy. | |
411 * | |
412 * @return The buddy's contact. | |
413 */ | |
414 GaimContact *gaim_buddy_get_contact(GaimBuddy *buddy); | |
415 | |
416 /** | |
9944 | 417 * Returns a buddy's presence. |
418 * | |
419 * @param buddy The buddy. | |
420 * | |
421 * @return The buddy's presence. | |
422 */ | |
423 GaimPresence *gaim_buddy_get_presence(const GaimBuddy *buddy); | |
424 | |
425 /** | |
5228 | 426 * Adds a new buddy to the buddy list. |
427 * | |
6695 | 428 * The buddy will be inserted right after node or prepended to the |
429 * group if node is NULL. If both are NULL, the buddy will be added to | |
5228 | 430 * the "Buddies" group. |
431 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
432 * @param buddy The new buddy who gets added |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
433 * @param contact The optional contact to place the buddy in. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
434 * @param group The group to add the new buddy to. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
435 * @param node The insertion point |
5228 | 436 */ |
6695 | 437 void gaim_blist_add_buddy(GaimBuddy *buddy, GaimContact *contact, GaimGroup *group, GaimBlistNode *node); |
5228 | 438 |
439 /** | |
440 * Creates a new group | |
441 * | |
6695 | 442 * You can't have more than one group with the same name. Sorry. If you pass |
443 * this the * name of a group that already exists, it will return that group. | |
5228 | 444 * |
445 * @param name The name of the new group | |
6695 | 446 * @return A new group struct |
5228 | 447 */ |
6695 | 448 GaimGroup *gaim_group_new(const char *name); |
5228 | 449 |
450 /** | |
451 * Adds a new group to the buddy list. | |
452 * | |
6695 | 453 * The new group will be inserted after insert or prepended to the list if |
454 * node is NULL. | |
455 * | |
456 * @param group The group | |
457 * @param node The insertion point | |
458 */ | |
459 void gaim_blist_add_group(GaimGroup *group, GaimBlistNode *node); | |
460 | |
461 /** | |
462 * Creates a new contact | |
5228 | 463 * |
6695 | 464 * @return A new contact struct |
5228 | 465 */ |
6695 | 466 GaimContact *gaim_contact_new(); |
467 | |
468 /** | |
469 * Adds a new contact to the buddy list. | |
470 * | |
471 * The new contact will be inserted after insert or prepended to the list if | |
472 * node is NULL. | |
473 * | |
474 * @param contact The contact | |
475 * @param group The group to add the contact to | |
476 * @param node The insertion point | |
477 */ | |
478 void gaim_blist_add_contact(GaimContact *contact, GaimGroup *group, GaimBlistNode *node); | |
479 | |
480 /** | |
6965 | 481 * Merges two contacts |
482 * | |
483 * All of the buddies from source will be moved to target | |
484 * | |
485 * @param source The contact to merge | |
7246 | 486 * @param node The place to merge to (a buddy or contact) |
6965 | 487 */ |
7246 | 488 void gaim_blist_merge_contact(GaimContact *source, GaimBlistNode *node); |
6965 | 489 |
490 /** | |
6695 | 491 * Returns the highest priority buddy for a given contact. |
492 * | |
493 * @param contact The contact | |
494 * @return The highest priority buddy | |
495 */ | |
496 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact); | |
5228 | 497 |
498 /** | |
6755 | 499 * Sets the alias for a contact. |
500 * | |
501 * @param contact The contact | |
502 * @param alias The alias to set, or NULL to unset | |
503 */ | |
504 void gaim_contact_set_alias(GaimContact *contact, const char *alias); | |
505 | |
506 /** | |
507 * Gets the alias for a contact. | |
508 * | |
509 * @param contact The contact | |
510 * @return The alias, or NULL if it is not set. | |
511 */ | |
512 const char *gaim_contact_get_alias(GaimContact *contact); | |
513 | |
514 /** | |
9787 | 515 * Determines whether an account owns any buddies in a given contact |
516 * | |
517 * @param contact The contact to search through. | |
518 * @param account The account. | |
519 * | |
520 * @return TRUE if there are any buddies from account in the contact, or FALSE otherwise. | |
521 */ | |
522 gboolean gaim_contact_on_account(GaimContact *contact, GaimAccount *account); | |
523 | |
524 | |
525 /** | |
9944 | 526 * Re-calculates the priority buddy for a contact. |
527 * | |
528 * @param contact The contact. | |
529 */ | |
530 void gaim_contact_compute_priority_buddy(GaimContact *contact); | |
531 | |
532 /** | |
5228 | 533 * Removes a buddy from the buddy list and frees the memory allocated to it. |
534 * | |
535 * @param buddy The buddy to be removed | |
536 */ | |
6695 | 537 void gaim_blist_remove_buddy(GaimBuddy *buddy); |
538 | |
539 /** | |
540 * Removes a contact, and any buddies it contains, and frees the memory | |
541 * allocated to it. | |
542 * | |
543 * @param contact The contact to be removed | |
544 */ | |
545 void gaim_blist_remove_contact(GaimContact *contact); | |
5228 | 546 |
547 /** | |
5234 | 548 * Removes a chat from the buddy list and frees the memory allocated to it. |
549 * | |
550 * @param chat The chat to be removed | |
551 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
552 void gaim_blist_remove_chat(GaimChat *chat); |
5234 | 553 |
554 /** | |
5228 | 555 * Removes a group from the buddy list and frees the memory allocated to it and to |
556 * its children | |
557 * | |
558 * @param group The group to be removed | |
559 */ | |
6695 | 560 void gaim_blist_remove_group(GaimGroup *group); |
5228 | 561 |
562 /** | |
563 * Returns the alias of a buddy. | |
564 * | |
565 * @param buddy The buddy whose name will be returned. | |
9635 | 566 * @return The alias (if set), server alias (if set and preference |
567 * is to display server aliases), or NULL. | |
5228 | 568 */ |
9620 | 569 const char *gaim_buddy_get_alias_only(GaimBuddy *buddy); |
5228 | 570 |
571 | |
572 /** | |
9620 | 573 * Returns the correct name to display for a buddy, taking the contact alias |
574 * into account. In order of precedence: the buddy's alias; the buddy's | |
575 * contact alias; the buddy's server alias; the buddy's user name. | |
576 * | |
577 * @param buddy The buddy whose name will be returned | |
9635 | 578 * @return The appropriate name or alias, or NULL. |
9620 | 579 * |
580 */ | |
581 const char *gaim_buddy_get_contact_alias(GaimBuddy *buddy); | |
582 | |
583 | |
584 /** | |
585 * Returns the correct name to display for a buddy. In order of precedence: | |
586 * the buddy's alias; the buddy's server alias; the buddy's contact alias; | |
587 * the buddy's user name. | |
5228 | 588 * |
589 * @param buddy The buddy whose name will be returned. | |
9635 | 590 * @return The appropriate name or alias, or NULL |
5228 | 591 */ |
9620 | 592 const char *gaim_buddy_get_alias(GaimBuddy *buddy); |
5228 | 593 |
594 /** | |
6744 | 595 * Returns the correct name to display for a blist chat. |
596 * | |
597 * @param chat The chat whose name will be returned. | |
598 * @return The alias (if set), or first component value. | |
599 */ | |
7125 | 600 const char *gaim_chat_get_name(GaimChat *chat); |
6744 | 601 |
602 /** | |
5228 | 603 * Finds the buddy struct given a screenname and an account |
604 * | |
6872 | 605 * @param name The buddy's screenname |
5228 | 606 * @param account The account this buddy belongs to |
607 * @return The buddy or NULL if the buddy does not exist | |
608 */ | |
6695 | 609 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name); |
6245 | 610 |
611 /** | |
6872 | 612 * Finds the buddy struct given a screenname, an account, and a group |
613 * | |
614 * @param name The buddy's screenname | |
615 * @param account The account this buddy belongs to | |
616 * @param group The group to look in | |
617 * @return The buddy or NULL if the buddy does not exist in the group | |
618 */ | |
619 GaimBuddy *gaim_find_buddy_in_group(GaimAccount *account, const char *name, | |
620 GaimGroup *group); | |
621 | |
622 /** | |
9285 | 623 * Finds all GaimBuddy structs given a screenname and an account |
6245 | 624 * |
625 * @param name The buddy's screenname | |
626 * @param account The account this buddy belongs to | |
627 * | |
628 * @return A GSList of buddies (which must be freed), or NULL if the buddy doesn't exist | |
629 */ | |
630 GSList *gaim_find_buddies(GaimAccount *account, const char *name); | |
631 | |
5228 | 632 |
633 /** | |
634 * Finds a group by name | |
635 * | |
636 * @param name The groups name | |
637 * @return The group or NULL if the group does not exist | |
638 */ | |
6695 | 639 GaimGroup *gaim_find_group(const char *name); |
640 | |
641 /** | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
642 * Finds a chat by name. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
643 * |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
644 * @param account The chat's account. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
645 * @param name The chat's name. |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
646 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
647 * @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
|
648 */ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
649 GaimChat *gaim_blist_find_chat(GaimAccount *account, const char *name); |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
650 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
651 /** |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
652 * Returns the group of which the chat is a member. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
653 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
654 * @param chat The chat. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
655 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
656 * @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
|
657 */ |
7125 | 658 GaimGroup *gaim_chat_get_group(GaimChat *chat); |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
659 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
660 /** |
5228 | 661 * Returns the group of which the buddy is a member. |
662 * | |
663 * @param buddy The buddy | |
664 * @return The group or NULL if the buddy is not in a group | |
665 */ | |
6695 | 666 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy); |
5228 | 667 |
668 | |
669 /** | |
670 * Returns a list of accounts that have buddies in this group | |
671 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
672 * @param g The group |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
673 * |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
674 * @return A list of gaim_accounts |
5228 | 675 */ |
6695 | 676 GSList *gaim_group_get_accounts(GaimGroup *g); |
5228 | 677 |
678 /** | |
679 * Determines whether an account owns any buddies in a given group | |
680 * | |
681 * @param g The group to search through. | |
682 * @param account The account. | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
683 * |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
684 * @return TRUE if there are any buddies in the group, or FALSE otherwise. |
5228 | 685 */ |
6695 | 686 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account); |
5228 | 687 |
688 /** | |
5234 | 689 * Called when an account gets signed on. Tells the UI to update all the |
690 * buddies. | |
691 * | |
692 * @param account The account | |
693 */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
694 void gaim_blist_add_account(GaimAccount *account); |
5234 | 695 |
696 | |
697 /** | |
5228 | 698 * Called when an account gets signed off. Sets the presence of all the buddies to 0 |
699 * and tells the UI to update them. | |
700 * | |
6695 | 701 * @param account The account |
5228 | 702 */ |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
703 void gaim_blist_remove_account(GaimAccount *account); |
5228 | 704 |
705 | |
706 /** | |
707 * Determines the total size of a group | |
708 * | |
709 * @param group The group | |
710 * @param offline Count buddies in offline accounts | |
711 * @return The number of buddies in the group | |
712 */ | |
6695 | 713 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline); |
5228 | 714 |
715 /** | |
716 * Determines the number of online buddies in a group | |
717 * | |
718 * @param group The group | |
719 * @return The number of online buddies in the group, or 0 if the group is NULL | |
720 */ | |
6695 | 721 int gaim_blist_get_group_online_count(GaimGroup *group); |
5228 | 722 |
723 /*@}*/ | |
724 | |
725 /****************************************************************************************/ | |
726 /** @name Buddy list file management API */ | |
727 /****************************************************************************************/ | |
728 | |
729 /*@{*/ | |
730 /** | |
9285 | 731 * Force an immediate write of the buddy list. Normally the buddy list is |
732 * saved automatically a few seconds after a change is made. | |
5228 | 733 */ |
9285 | 734 void gaim_blist_sync(); |
5228 | 735 |
736 /** | |
7117
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
737 * Parses the toc-style buddy list used in older versions of Gaim and for SSI in toc.c |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
738 * |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
739 * @param account This is the account that the buddies and groups from config will get added to |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
740 * @param config This is the toc-style buddy list data |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
741 */ |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
742 void gaim_blist_parse_toc_buddy_list(GaimAccount *account, char *config); |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
743 |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
744 |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
745 /** |
5228 | 746 * Loads the buddy list from ~/.gaim/blist.xml. |
747 */ | |
748 void gaim_blist_load(); | |
749 | |
750 /** | |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
751 * Requests from the user information needed to add a buddy to the |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
752 * buddy list. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
753 * |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
754 * @param account The account the buddy is added to. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
755 * @param username The username of the buddy. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
756 * @param group The name of the group to place the buddy in. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
757 * @param alias The optional alias for the buddy. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
758 */ |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
759 void gaim_blist_request_add_buddy(GaimAccount *account, const char *username, |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
760 const char *group, const char *alias); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
761 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
762 /** |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
763 * Requests from the user information needed to add a chat to the |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
764 * buddy list. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
765 * |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
766 * @param account The account the buddy is added to. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
767 * @param group The optional group to add the chat to. |
9000 | 768 * @param alias The optional alias for the chat. |
9939 | 769 * @param name The required chat name. |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
770 */ |
7859 | 771 void gaim_blist_request_add_chat(GaimAccount *account, GaimGroup *group, |
9754 | 772 const char *alias, const char *name); |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
773 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
774 /** |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
775 * Requests from the user information needed to add a group to the |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
776 * buddy list. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
777 */ |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
778 void gaim_blist_request_add_group(void); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
779 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
780 /** |
7693 | 781 * Associates a boolean with a node in the buddy list |
782 * | |
783 * @param node The node to associate the data with | |
784 * @param key The identifier for the data | |
785 * @param value The value to set | |
786 */ | |
787 void gaim_blist_node_set_bool(GaimBlistNode *node, const char *key, gboolean value); | |
788 | |
789 /** | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
790 * Retrieves a named boolean setting from a node in the buddy list |
7693 | 791 * |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
792 * @param node The node to retrieve the data from |
7693 | 793 * @param key The identifier of the data |
794 * | |
795 * @return The value, or FALSE if there is no setting | |
796 */ | |
797 gboolean gaim_blist_node_get_bool(GaimBlistNode *node, const char *key); | |
798 | |
799 /** | |
800 * Associates an integer with a node in the buddy list | |
801 * | |
802 * @param node The node to associate the data with | |
803 * @param key The identifier for the data | |
804 * @param value The value to set | |
805 */ | |
806 void gaim_blist_node_set_int(GaimBlistNode *node, const char *key, int value); | |
807 | |
808 /** | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
809 * Retrieves a named integer setting from a node in the buddy list |
7693 | 810 * |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
811 * @param node The node to retrieve the data from |
7693 | 812 * @param key The identifier of the data |
813 * | |
814 * @return The value, or 0 if there is no setting | |
815 */ | |
816 int gaim_blist_node_get_int(GaimBlistNode *node, const char *key); | |
817 | |
818 /** | |
819 * Associates a string with a node in the buddy list | |
820 * | |
821 * @param node The node to associate the data with | |
822 * @param key The identifier for the data | |
823 * @param value The value to set | |
824 */ | |
825 void gaim_blist_node_set_string(GaimBlistNode *node, const char *key, | |
826 const char *value); | |
827 | |
828 /** | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
829 * Retrieves a named string setting from a node in the buddy list |
7693 | 830 * |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
831 * @param node The node to retrieve the data from |
7693 | 832 * @param key The identifier of the data |
833 * | |
834 * @return The value, or NULL if there is no setting | |
835 */ | |
836 const char *gaim_blist_node_get_string(GaimBlistNode *node, const char *key); | |
837 | |
838 /** | |
7811 | 839 * Removes a named setting from a blist node |
840 * | |
841 * @param node The node from which to remove the setting | |
842 * @param key The name of the setting | |
843 */ | |
844 void gaim_blist_node_remove_setting(GaimBlistNode *node, const char *key); | |
845 | |
5228 | 846 /*@}*/ |
847 | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
848 |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
849 /** |
9030 | 850 * Retrieves the extended menu items for a buddy list node. |
851 * @param n The blist node for which to obtain the extended menu items. | |
852 * @return list of GaimBlistNodeAction items, as harvested by the | |
853 * blist-node-extended-menu signal. | |
854 */ | |
855 GList *gaim_blist_node_get_extended_menu(GaimBlistNode *n); | |
856 | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
857 |
8952 | 858 /** |
9030 | 859 * Creates a new GaimBlistNodeAction. |
860 * @param label The text label to display for this action. | |
861 * @param callback The function to be called when the action is used on | |
862 * a selected GaimBlistNode. | |
863 * @param data Additional data, to be passed to the callback | |
864 */ | |
865 GaimBlistNodeAction *gaim_blist_node_action_new(char *label, | |
866 void (*callback)(GaimBlistNode *, gpointer), gpointer data); | |
8952 | 867 |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
868 |
5228 | 869 /**************************************************************************/ |
870 /** @name UI Registration Functions */ | |
871 /**************************************************************************/ | |
872 /*@{*/ | |
873 | |
874 /** | |
875 * Sets the UI operations structure to be used for the buddy list. | |
876 * | |
877 * @param ops The ops struct. | |
878 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
879 void gaim_blist_set_ui_ops(GaimBlistUiOps *ops); |
5228 | 880 |
881 /** | |
882 * Returns the UI operations structure to be used for the buddy list. | |
883 * | |
884 * @return The UI operations structure. | |
885 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
886 GaimBlistUiOps *gaim_blist_get_ui_ops(void); |
5228 | 887 |
888 /*@}*/ | |
889 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
890 /**************************************************************************/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
891 /** @name Buddy List Subsystem */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
892 /**************************************************************************/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
893 /*@{*/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
894 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
895 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
896 * Returns the handle for the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
897 * |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
898 * @return The buddy list subsystem handle. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
899 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
900 void *gaim_blist_get_handle(void); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
901 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
902 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
903 * Initializes the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
904 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
905 void gaim_blist_init(void); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
906 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
907 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
908 * Uninitializes the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
909 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
910 void gaim_blist_uninit(void); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
911 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
912 /*@}*/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
913 |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
914 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
915 } |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
916 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
917 |
9713 | 918 #endif /* _GAIM_BLIST_H_ */ |