Mercurial > pidgin
annotate src/blist.h @ 8001:934f5df83b29
[gaim-migrate @ 8678]
This fixes some issues with deryni's patch, and just removes a little bit
of redundant code. Thanks go to my cup of water for the inspiration, and
all the elfs that sing to me at night.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Mon, 05 Jan 2004 03:06:13 +0000 |
parents | 7b8407d8c546 |
children | 5a6853d0ae27 |
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 | |
6695 | 26 #ifndef _BLIST_H_ |
27 #define _BLIST_H_ | |
5228 | 28 |
29 #include <glib.h> | |
30 | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
31 typedef struct _GaimBuddyList GaimBuddyList; |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
32 typedef struct _GaimBlistUiOps GaimBlistUiOps; |
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
33 typedef struct _GaimBlistNode GaimBlistNode; |
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
34 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
35 typedef struct _GaimChat GaimChat; |
6695 | 36 typedef struct _GaimGroup GaimGroup; |
37 typedef struct _GaimContact GaimContact; | |
38 typedef struct _GaimBuddy GaimBuddy; | |
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
39 |
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
40 #include "account.h" |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
41 #include "buddyicon.h" |
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 |
5234 | 56 #define GAIM_BLIST_NODE_IS_CHAT(n) ((n)->type == GAIM_BLIST_CHAT_NODE) |
5228 | 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) |
5228 | 59 #define GAIM_BLIST_NODE_IS_GROUP(n) ((n)->type == GAIM_BLIST_GROUP_NODE) |
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 |
6695 | 70 #define GAIM_BUDDY_IS_ONLINE(b) ((b)->account->gc && \ |
71 ((b)->present == GAIM_BUDDY_ONLINE || \ | |
72 (b)->present == GAIM_BUDDY_SIGNING_ON)) | |
5228 | 73 |
74 | |
75 /**************************************************************************/ | |
76 /* Data Structures */ | |
77 /**************************************************************************/ | |
78 | |
79 /** | |
80 * A Buddy list node. This can represent a group, a buddy, or anything else. This is a base class for struct buddy and | |
81 * struct group and for anything else that wants to put itself in the buddy list. */ | |
82 struct _GaimBlistNode { | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
83 GaimBlistNodeType type; /**< The type of node this is */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
84 GaimBlistNode *prev; /**< The sibling before this buddy. */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
85 GaimBlistNode *next; /**< The sibling after this buddy. */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
86 GaimBlistNode *parent; /**< The parent of this node */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
87 GaimBlistNode *child; /**< The child of this node */ |
7693 | 88 GHashTable *settings; /**< per-node settings */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
89 void *ui_data; /**< The UI can put data here. */ |
5228 | 90 }; |
91 | |
92 /** | |
93 * A buddy. This contains everything Gaim will ever need to know about someone on the buddy list. Everything. | |
94 */ | |
6695 | 95 struct _GaimBuddy { |
5228 | 96 GaimBlistNode node; /**< The node that this buddy inherits from */ |
97 char *name; /**< The screenname of the buddy. */ | |
98 char *alias; /**< The user-set alias of the buddy */ | |
6695 | 99 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
|
100 GaimBuddyPresenceState present; /**< This is 0 if the buddy appears offline, 1 if he appears online, and 2 if |
5228 | 101 he has recently signed on */ |
102 int evil; /**< The warning level */ | |
103 time_t signon; /**< The time the buddy signed on. */ | |
104 int idle; /**< The time the buddy has been idle in minutes. */ | |
105 int uc; /**< This is a cryptic bitmask that makes sense only to the prpl. This will get changed */ | |
106 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
|
107 GaimBuddyIcon *icon; /**< The buddy icon. */ |
6695 | 108 GaimAccount *account; /**< the account this buddy belongs to */ |
5228 | 109 guint timer; /**< The timer handle. */ |
110 }; | |
111 | |
112 /** | |
6695 | 113 * A contact. This contains everything Gaim will ever need to know about a contact. |
114 */ | |
115 struct _GaimContact { | |
6755 | 116 GaimBlistNode node; /**< The node that this contact inherits from. */ |
117 char *alias; /**< The user-set alias of the contact */ | |
118 int totalsize; /**< The number of buddies in this contact */ | |
119 int currentsize; /**< The number of buddies in this contact corresponding to online accounts */ | |
120 int online; /**< The number of buddies in this contact who are currently online */ | |
6843 | 121 GaimBuddy *priority; /**< The "top" buddy for this contact */ |
6695 | 122 }; |
123 | |
124 | |
125 /** | |
5228 | 126 * A group. This contains everything Gaim will ever need to know about a group. |
127 */ | |
6695 | 128 struct _GaimGroup { |
5228 | 129 GaimBlistNode node; /**< The node that this group inherits from */ |
130 char *name; /**< The name of this group. */ | |
6695 | 131 int totalsize; /**< The number of chats and contacts in this group */ |
132 int currentsize; /**< The number of chats and contacts in this group corresponding to online accounts */ | |
133 int online; /**< The number of chats and contacts in this group who are currently online */ | |
5228 | 134 }; |
135 | |
5234 | 136 /** |
6695 | 137 * A chat. This contains everything Gaim needs to put a chat room in the |
5234 | 138 * buddy list. |
139 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
140 struct _GaimChat { |
5234 | 141 GaimBlistNode node; /**< The node that this chat inherits from */ |
142 char *alias; /**< The display name of this chat. */ | |
143 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
|
144 GaimAccount *account; /**< The account this chat is attached to */ |
5234 | 145 }; |
146 | |
5228 | 147 |
148 /** | |
149 * The Buddy List | |
150 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
151 struct _GaimBuddyList { |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
152 GaimBlistNode *root; /**< The first node in the buddy list */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
153 GHashTable *buddies; /**< Every buddy in this list */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
154 GaimBlistUiOps *ui_ops; /**< The UI operations for the buddy list */ |
5228 | 155 |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
156 void *ui_data; /**< UI-specific data. */ |
5228 | 157 }; |
158 | |
159 /** | |
160 * Buddy list UI operations. | |
161 * | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
162 * Any UI representing a buddy list must assign a filled-out gaim_conv_window_ops |
5228 | 163 * structure to the buddy list core. |
164 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
165 struct _GaimBlistUiOps |
5228 | 166 { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
167 void (*new_list)(GaimBuddyList *list); /**< Sets UI-specific data on a buddy list. */ |
5228 | 168 void (*new_node)(GaimBlistNode *node); /**< Sets UI-specific data on a node. */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
169 void (*show)(GaimBuddyList *list); /**< The core will call this when its finished doing it's core stuff */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
170 void (*update)(GaimBuddyList *list, |
5228 | 171 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
|
172 void (*remove)(GaimBuddyList *list, |
5228 | 173 GaimBlistNode *node); /**< This removes a node from the list */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
174 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
|
175 void (*set_visible)(GaimBuddyList *list, |
5228 | 176 gboolean show); /**< Hides or unhides the buddy list */ |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
177 void (*request_add_buddy)(GaimAccount *account, const char *username, |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
178 const char *group, const char *alias); |
7859 | 179 void (*request_add_chat)(GaimAccount *account, GaimGroup *group, |
180 const char *alias); | |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
181 void (*request_add_group)(void); |
5228 | 182 }; |
183 | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
184 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
185 extern "C" { |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
186 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
187 |
5228 | 188 /**************************************************************************/ |
189 /** @name Buddy List API */ | |
190 /**************************************************************************/ | |
191 /*@{*/ | |
192 | |
193 /** | |
194 * Creates a new buddy list | |
195 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
196 GaimBuddyList *gaim_blist_new(); |
5228 | 197 |
198 /** | |
199 * Sets the main buddy list. | |
200 * | |
201 * @return The main buddy list. | |
202 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
203 void gaim_set_blist(GaimBuddyList *blist); |
5228 | 204 |
205 /** | |
206 * Returns the main buddy list. | |
207 * | |
208 * @return The main buddy list. | |
209 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
210 GaimBuddyList *gaim_get_blist(void); |
5228 | 211 |
212 /** | |
213 * Shows the buddy list, creating a new one if necessary. | |
214 * | |
215 */ | |
216 void gaim_blist_show(); | |
217 | |
218 | |
219 /** | |
220 * Destroys the buddy list window. | |
221 */ | |
222 void gaim_blist_destroy(); | |
223 | |
224 /** | |
225 * Hides or unhides the buddy list. | |
226 * | |
227 * @param show Whether or not to show the buddy list | |
228 */ | |
229 void gaim_blist_set_visible(gboolean show); | |
230 | |
231 /** | |
232 * Updates a buddy's status. | |
5234 | 233 * |
5228 | 234 * This needs to not take an int. |
235 * | |
236 * @param buddy The buddy whose status has changed | |
237 * @param status The new status in cryptic prpl-understood code | |
238 */ | |
6695 | 239 void gaim_blist_update_buddy_status(GaimBuddy *buddy, int status); |
5228 | 240 |
241 | |
242 /** | |
243 * Updates a buddy's presence. | |
244 * | |
245 * @param buddy The buddy whose presence has changed | |
246 * @param presence The new presence | |
247 */ | |
6695 | 248 void gaim_blist_update_buddy_presence(GaimBuddy *buddy, int presence); |
5228 | 249 |
7950 | 250 /** |
251 * Updates a buddy's signon time. | |
252 * | |
253 * @param buddy The buddy whose idle time has changed. | |
254 * @param signon The buddy's signon time since the dawn of the UNIX epoch. | |
255 */ | |
256 void gaim_blist_update_buddy_signon(GaimBuddy *buddy, time_t signon); | |
5228 | 257 |
258 /** | |
259 * Updates a buddy's idle time. | |
260 * | |
261 * @param buddy The buddy whose idle time has changed | |
262 * @param idle The buddy's idle time in minutes. | |
263 */ | |
6695 | 264 void gaim_blist_update_buddy_idle(GaimBuddy *buddy, int idle); |
5228 | 265 |
266 | |
267 /** | |
268 * Updates a buddy's warning level. | |
269 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
270 * @param buddy The buddy whose warning level has changed. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
271 * @param warning The warning level as an int from 0 to 100. |
5228 | 272 */ |
6695 | 273 void gaim_blist_update_buddy_evil(GaimBuddy *buddy, int warning); |
5228 | 274 |
275 /** | |
276 * Updates a buddy's icon. | |
277 * | |
278 * @param buddy The buddy whose buddy icon has changed | |
279 */ | |
6695 | 280 void gaim_blist_update_buddy_icon(GaimBuddy *buddy); |
5228 | 281 |
282 /** | |
283 * Renames a buddy in the buddy list. | |
284 * | |
285 * @param buddy The buddy whose name will be changed. | |
286 * @param name The new name of the buddy. | |
287 */ | |
6695 | 288 void gaim_blist_rename_buddy(GaimBuddy *buddy, const char *name); |
5228 | 289 |
290 | |
291 /** | |
292 * Aliases a buddy in the buddy list. | |
293 * | |
294 * @param buddy The buddy whose alias will be changed. | |
295 * @param alias The buddy's alias. | |
296 */ | |
6695 | 297 void gaim_blist_alias_buddy(GaimBuddy *buddy, const char *alias); |
5228 | 298 |
5234 | 299 /** |
6059 | 300 * Sets the server-sent alias of a buddy in the buddy list. |
6058 | 301 * |
302 * @param buddy The buddy whose alias will be changed. | |
303 * @param alias The buddy's "official" alias. | |
304 */ | |
6695 | 305 void gaim_blist_server_alias_buddy(GaimBuddy *buddy, const char *alias); |
6058 | 306 |
307 /** | |
5234 | 308 * Aliases a chat in the buddy list. |
309 * | |
310 * @param chat The chat whose alias will be changed. | |
311 * @param alias The chat's new alias. | |
312 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
313 void gaim_blist_alias_chat(GaimChat *chat, const char *alias); |
5228 | 314 |
315 /** | |
316 * Renames a group | |
317 * | |
318 * @param group The group to rename | |
319 * @param name The new name | |
320 */ | |
6695 | 321 void gaim_blist_rename_group(GaimGroup *group, const char *name); |
5228 | 322 |
5234 | 323 /** |
324 * Creates a new chat for the buddy list | |
325 * | |
326 * @param account The account this chat will get added to | |
327 * @param alias The alias of the new chat | |
328 * @param components The info the prpl needs to join the chat | |
329 * @return A newly allocated chat | |
330 */ | |
7125 | 331 GaimChat *gaim_chat_new(GaimAccount *account, const char *alias, GHashTable *components); |
5234 | 332 |
333 /** | |
6034 | 334 * Gets the alias of the chat, or the chat name if the alias does not exist |
335 * | |
336 * @param chat The chat | |
337 * @return The display name of the chat | |
338 */ | |
7125 | 339 char *gaim_chat_get_display_name(GaimChat *chat); |
6034 | 340 |
341 /** | |
5234 | 342 * Adds a new chat to the buddy list. |
343 * | |
344 * The chat will be inserted right after node or appended to the end | |
345 * of group if node is NULL. If both are NULL, the buddy will be added to | |
346 * the "Chats" group. | |
347 * | |
348 * @param chat The new chat who gets added | |
349 * @param group The group to add the new chat to. | |
350 * @param node The insertion point | |
351 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
352 void gaim_blist_add_chat(GaimChat *chat, GaimGroup *group, GaimBlistNode *node); |
5228 | 353 |
354 /** | |
355 * Creates a new buddy | |
356 * | |
357 * @param account The account this buddy will get added to | |
358 * @param screenname The screenname of the new buddy | |
359 * @param alias The alias of the new buddy (or NULL if unaliased) | |
360 * @return A newly allocated buddy | |
361 */ | |
6695 | 362 GaimBuddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias); |
5228 | 363 |
364 /** | |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
365 * Sets a buddy's icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
366 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
367 * 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
|
368 * call gaim_buddy_icon_set_data(). |
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 * @param buddy The buddy. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
371 * @param icon The buddy icon. |
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 * @see gaim_buddy_icon_set_data() |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
374 */ |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
375 void gaim_buddy_set_icon(GaimBuddy *buddy, GaimBuddyIcon *icon); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
376 |
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 * Returns a buddy's 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 * @param buddy The buddy. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
381 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
382 * @return The buddy icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
383 */ |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
384 GaimBuddyIcon *gaim_buddy_get_icon(const GaimBuddy *buddy); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
385 |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
386 /** |
7312 | 387 * Returns a buddy's contact. |
388 * | |
389 * @param buddy The buddy. | |
390 * | |
391 * @return The buddy's contact. | |
392 */ | |
393 GaimContact *gaim_buddy_get_contact(GaimBuddy *buddy); | |
394 | |
395 /** | |
5228 | 396 * Adds a new buddy to the buddy list. |
397 * | |
6695 | 398 * The buddy will be inserted right after node or prepended to the |
399 * group if node is NULL. If both are NULL, the buddy will be added to | |
5228 | 400 * the "Buddies" group. |
401 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
402 * @param buddy The new buddy who gets added |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
403 * @param contact The optional contact to place the buddy in. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
404 * @param group The group to add the new buddy to. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
405 * @param node The insertion point |
5228 | 406 */ |
6695 | 407 void gaim_blist_add_buddy(GaimBuddy *buddy, GaimContact *contact, GaimGroup *group, GaimBlistNode *node); |
5228 | 408 |
409 /** | |
410 * Creates a new group | |
411 * | |
6695 | 412 * You can't have more than one group with the same name. Sorry. If you pass |
413 * this the * name of a group that already exists, it will return that group. | |
5228 | 414 * |
415 * @param name The name of the new group | |
6695 | 416 * @return A new group struct |
5228 | 417 */ |
6695 | 418 GaimGroup *gaim_group_new(const char *name); |
5228 | 419 |
420 /** | |
421 * Adds a new group to the buddy list. | |
422 * | |
6695 | 423 * The new group will be inserted after insert or prepended to the list if |
424 * node is NULL. | |
425 * | |
426 * @param group The group | |
427 * @param node The insertion point | |
428 */ | |
429 void gaim_blist_add_group(GaimGroup *group, GaimBlistNode *node); | |
430 | |
431 /** | |
432 * Creates a new contact | |
5228 | 433 * |
6695 | 434 * @return A new contact struct |
5228 | 435 */ |
6695 | 436 GaimContact *gaim_contact_new(); |
437 | |
438 /** | |
439 * Adds a new contact to the buddy list. | |
440 * | |
441 * The new contact will be inserted after insert or prepended to the list if | |
442 * node is NULL. | |
443 * | |
444 * @param contact The contact | |
445 * @param group The group to add the contact to | |
446 * @param node The insertion point | |
447 */ | |
448 void gaim_blist_add_contact(GaimContact *contact, GaimGroup *group, GaimBlistNode *node); | |
449 | |
450 /** | |
6965 | 451 * Merges two contacts |
452 * | |
453 * All of the buddies from source will be moved to target | |
454 * | |
455 * @param source The contact to merge | |
7246 | 456 * @param node The place to merge to (a buddy or contact) |
6965 | 457 */ |
7246 | 458 void gaim_blist_merge_contact(GaimContact *source, GaimBlistNode *node); |
6965 | 459 |
460 /** | |
6695 | 461 * Returns the highest priority buddy for a given contact. |
462 * | |
463 * @param contact The contact | |
464 * @return The highest priority buddy | |
465 */ | |
466 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact); | |
5228 | 467 |
468 /** | |
6755 | 469 * Sets the alias for a contact. |
470 * | |
471 * @param contact The contact | |
472 * @param alias The alias to set, or NULL to unset | |
473 */ | |
474 void gaim_contact_set_alias(GaimContact *contact, const char *alias); | |
475 | |
476 /** | |
477 * Gets the alias for a contact. | |
478 * | |
479 * @param contact The contact | |
480 * @return The alias, or NULL if it is not set. | |
481 */ | |
482 const char *gaim_contact_get_alias(GaimContact *contact); | |
483 | |
484 /** | |
5228 | 485 * Removes a buddy from the buddy list and frees the memory allocated to it. |
486 * | |
487 * @param buddy The buddy to be removed | |
488 */ | |
6695 | 489 void gaim_blist_remove_buddy(GaimBuddy *buddy); |
490 | |
491 /** | |
492 * Removes a contact, and any buddies it contains, and frees the memory | |
493 * allocated to it. | |
494 * | |
495 * @param contact The contact to be removed | |
496 */ | |
497 void gaim_blist_remove_contact(GaimContact *contact); | |
5228 | 498 |
499 /** | |
5234 | 500 * Removes a chat from the buddy list and frees the memory allocated to it. |
501 * | |
502 * @param chat The chat to be removed | |
503 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
504 void gaim_blist_remove_chat(GaimChat *chat); |
5234 | 505 |
506 /** | |
5228 | 507 * Removes a group from the buddy list and frees the memory allocated to it and to |
508 * its children | |
509 * | |
510 * @param group The group to be removed | |
511 */ | |
6695 | 512 void gaim_blist_remove_group(GaimGroup *group); |
5228 | 513 |
514 /** | |
515 * Returns the alias of a buddy. | |
516 * | |
517 * @param buddy The buddy whose name will be returned. | |
518 * @return The alias (if set), server alias (if option is set), or NULL. | |
519 */ | |
6695 | 520 const char *gaim_get_buddy_alias_only(GaimBuddy *buddy); |
5228 | 521 |
522 | |
523 /** | |
524 * Returns the correct name to display for a buddy. | |
525 * | |
526 * @param buddy The buddy whose name will be returned. | |
527 * @return The alias (if set), server alias (if option is set), screenname, or "Unknown" | |
528 */ | |
6695 | 529 const char *gaim_get_buddy_alias(GaimBuddy *buddy); |
5228 | 530 |
531 /** | |
6744 | 532 * Returns the correct name to display for a blist chat. |
533 * | |
534 * @param chat The chat whose name will be returned. | |
535 * @return The alias (if set), or first component value. | |
536 */ | |
7125 | 537 const char *gaim_chat_get_name(GaimChat *chat); |
6744 | 538 |
539 /** | |
5228 | 540 * Finds the buddy struct given a screenname and an account |
541 * | |
6872 | 542 * @param name The buddy's screenname |
5228 | 543 * @param account The account this buddy belongs to |
544 * @return The buddy or NULL if the buddy does not exist | |
545 */ | |
6695 | 546 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name); |
6245 | 547 |
548 /** | |
6872 | 549 * Finds the buddy struct given a screenname, an account, and a group |
550 * | |
551 * @param name The buddy's screenname | |
552 * @param account The account this buddy belongs to | |
553 * @param group The group to look in | |
554 * @return The buddy or NULL if the buddy does not exist in the group | |
555 */ | |
556 GaimBuddy *gaim_find_buddy_in_group(GaimAccount *account, const char *name, | |
557 GaimGroup *group); | |
558 | |
559 /** | |
6245 | 560 * Finds all buddies struct given a screenname and an account |
561 * | |
562 * @param name The buddy's screenname | |
563 * @param account The account this buddy belongs to | |
564 * | |
565 * @return A GSList of buddies (which must be freed), or NULL if the buddy doesn't exist | |
566 */ | |
567 GSList *gaim_find_buddies(GaimAccount *account, const char *name); | |
568 | |
5228 | 569 |
570 /** | |
571 * Finds a group by name | |
572 * | |
573 * @param name The groups name | |
574 * @return The group or NULL if the group does not exist | |
575 */ | |
6695 | 576 GaimGroup *gaim_find_group(const char *name); |
577 | |
578 /** | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
579 * Finds a chat by name. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
580 * |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
581 * @param account The chat's account. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
582 * @param name The chat's name. |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
583 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
584 * @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
|
585 */ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
586 GaimChat *gaim_blist_find_chat(GaimAccount *account, const char *name); |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
587 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
588 /** |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
589 * Returns the group of which the chat is a member. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
590 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
591 * @param chat The chat. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
592 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
593 * @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
|
594 */ |
7125 | 595 GaimGroup *gaim_chat_get_group(GaimChat *chat); |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
596 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
597 /** |
5228 | 598 * Returns the group of which the buddy is a member. |
599 * | |
600 * @param buddy The buddy | |
601 * @return The group or NULL if the buddy is not in a group | |
602 */ | |
6695 | 603 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy); |
5228 | 604 |
605 | |
606 /** | |
607 * Returns a list of accounts that have buddies in this group | |
608 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
609 * @param g The group |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
610 * |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
611 * @return A list of gaim_accounts |
5228 | 612 */ |
6695 | 613 GSList *gaim_group_get_accounts(GaimGroup *g); |
5228 | 614 |
615 /** | |
616 * Determines whether an account owns any buddies in a given group | |
617 * | |
618 * @param g The group to search through. | |
619 * @param account The account. | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
620 * |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
621 * @return TRUE if there are any buddies in the group, or FALSE otherwise. |
5228 | 622 */ |
6695 | 623 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account); |
5228 | 624 |
625 /** | |
5234 | 626 * Called when an account gets signed on. Tells the UI to update all the |
627 * buddies. | |
628 * | |
629 * @param account The account | |
630 */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
631 void gaim_blist_add_account(GaimAccount *account); |
5234 | 632 |
633 | |
634 /** | |
5228 | 635 * Called when an account gets signed off. Sets the presence of all the buddies to 0 |
636 * and tells the UI to update them. | |
637 * | |
6695 | 638 * @param account The account |
5228 | 639 */ |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
640 void gaim_blist_remove_account(GaimAccount *account); |
5228 | 641 |
642 | |
643 /** | |
644 * Determines the total size of a group | |
645 * | |
646 * @param group The group | |
647 * @param offline Count buddies in offline accounts | |
648 * @return The number of buddies in the group | |
649 */ | |
6695 | 650 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline); |
5228 | 651 |
652 /** | |
653 * Determines the number of online buddies in a group | |
654 * | |
655 * @param group The group | |
656 * @return The number of online buddies in the group, or 0 if the group is NULL | |
657 */ | |
6695 | 658 int gaim_blist_get_group_online_count(GaimGroup *group); |
5228 | 659 |
660 /*@}*/ | |
661 | |
662 /****************************************************************************************/ | |
663 /** @name Buddy list file management API */ | |
664 /****************************************************************************************/ | |
665 | |
666 /*@{*/ | |
667 /** | |
668 * Saves the buddy list to file | |
669 */ | |
670 void gaim_blist_save(); | |
671 | |
672 /** | |
7117
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
673 * 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
|
674 * |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
675 * @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
|
676 * @param config This is the toc-style buddy list data |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
677 */ |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
678 void gaim_blist_parse_toc_buddy_list(GaimAccount *account, char *config); |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
679 |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
680 |
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7115
diff
changeset
|
681 /** |
5228 | 682 * Loads the buddy list from ~/.gaim/blist.xml. |
683 */ | |
684 void gaim_blist_load(); | |
685 | |
686 /** | |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
687 * 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
|
688 * buddy list. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
689 * |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
690 * @param account The account the buddy is added to. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
691 * @param username The username of the buddy. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
692 * @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
|
693 * @param alias The optional alias for the buddy. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
694 */ |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
695 void gaim_blist_request_add_buddy(GaimAccount *account, const char *username, |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
696 const char *group, const char *alias); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
697 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
698 /** |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
699 * 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
|
700 * buddy list. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
701 * |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
702 * @param account The account the buddy is added to. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
703 * @param group The optional group to add the chat to. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
704 */ |
7859 | 705 void gaim_blist_request_add_chat(GaimAccount *account, GaimGroup *group, |
706 const char *alias); | |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
707 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
708 /** |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
709 * 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
|
710 * buddy list. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
711 */ |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
712 void gaim_blist_request_add_group(void); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
713 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
714 /** |
7693 | 715 * Associates a boolean with a node in the buddy list |
716 * | |
717 * @param node The node to associate the data with | |
718 * @param key The identifier for the data | |
719 * @param value The value to set | |
720 */ | |
721 void gaim_blist_node_set_bool(GaimBlistNode *node, const char *key, gboolean value); | |
722 | |
723 /** | |
724 * Retreives a named boolean setting from a node in the buddy list | |
725 * | |
726 * @param node The node to retreive the data from | |
727 * @param key The identifier of the data | |
728 * | |
729 * @return The value, or FALSE if there is no setting | |
730 */ | |
731 gboolean gaim_blist_node_get_bool(GaimBlistNode *node, const char *key); | |
732 | |
733 /** | |
734 * Associates an integer with a node in the buddy list | |
735 * | |
736 * @param node The node to associate the data with | |
737 * @param key The identifier for the data | |
738 * @param value The value to set | |
739 */ | |
740 void gaim_blist_node_set_int(GaimBlistNode *node, const char *key, int value); | |
741 | |
742 /** | |
743 * Retreives a named integer setting from a node in the buddy list | |
744 * | |
745 * @param node The node to retreive the data from | |
746 * @param key The identifier of the data | |
747 * | |
748 * @return The value, or 0 if there is no setting | |
749 */ | |
750 int gaim_blist_node_get_int(GaimBlistNode *node, const char *key); | |
751 | |
752 /** | |
753 * Associates a string with a node in the buddy list | |
754 * | |
755 * @param node The node to associate the data with | |
756 * @param key The identifier for the data | |
757 * @param value The value to set | |
758 */ | |
759 void gaim_blist_node_set_string(GaimBlistNode *node, const char *key, | |
760 const char *value); | |
761 | |
762 /** | |
763 * Retreives a named string setting from a node in the buddy list | |
764 * | |
765 * @param node The node to retreive the data from | |
766 * @param key The identifier of the data | |
767 * | |
768 * @return The value, or NULL if there is no setting | |
769 */ | |
770 const char *gaim_blist_node_get_string(GaimBlistNode *node, const char *key); | |
771 | |
772 /** | |
7811 | 773 * Removes a named setting from a blist node |
774 * | |
775 * @param node The node from which to remove the setting | |
776 * @param key The name of the setting | |
777 */ | |
778 void gaim_blist_node_remove_setting(GaimBlistNode *node, const char *key); | |
779 | |
780 /** | |
5228 | 781 * Associates some data with the group in the xml buddy list |
782 * | |
783 * @param g The group the data is associated with | |
784 * @param key The key used to retrieve the data | |
785 * @param value The data to set | |
7812 | 786 * @deprecated Replaced by gaim_blist_node_set_bool(), gaim_blist_node_set_int() |
787 * and gaim_blist_node_set_string() to enable types and consolidate functionality. | |
788 * This function is scheduled to be removed in the near future. | |
5228 | 789 */ |
6695 | 790 void gaim_group_set_setting(GaimGroup *g, const char *key, const char *value); |
5228 | 791 |
792 /** | |
793 * Retrieves data from the XML buddy list set by gaim_group_set_setting()) | |
794 * | |
795 * @param g The group to retrieve data from | |
796 * @param key The key to retrieve the data with | |
797 * @return The associated data or NULL if no data is associated | |
7812 | 798 * @deprecated Replaced by gaim_blist_node_get_bool(), gaim_blist_node_get_int() |
799 * and gaim_blist_node_get_string() to enable types and consolidate functionality. | |
800 * This function is scheduled to be removed in the near future. | |
5228 | 801 */ |
7125 | 802 const char *gaim_group_get_setting(GaimGroup *g, const char *key); |
5228 | 803 |
5906 | 804 /** |
805 * Associates some data with the chat in the xml buddy list | |
806 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
807 * @param c The chat the data is associated with |
5906 | 808 * @param key The key used to retrieve the data |
809 * @param value The data to set | |
7812 | 810 * @deprecated Replaced by gaim_blist_node_set_bool(), gaim_blist_node_set_int() |
811 * and gaim_blist_node_set_string() to enable types and consolidate functionality. | |
812 * This function is scheduled to be removed in the near future. | |
5906 | 813 */ |
7125 | 814 void gaim_chat_set_setting(GaimChat *c, const char *key, const char *value); |
5906 | 815 |
816 /** | |
7125 | 817 * Retrieves data from the XML buddy list set by gaim_chat_set_setting()) |
5906 | 818 * |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
819 * @param c The chat to retrieve data from |
5906 | 820 * @param key The key to retrieve the data with |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
821 * |
5906 | 822 * @return The associated data or NULL if no data is associated |
7812 | 823 * @deprecated Replaced by gaim_blist_node_get_bool(), gaim_blist_node_get_int() |
824 * and gaim_blist_node_get_string() to enable types and consolidate functionality. | |
825 * This function is scheduled to be removed in the near future. | |
5906 | 826 */ |
7125 | 827 const char *gaim_chat_get_setting(GaimChat *c, const char *key); |
5228 | 828 |
829 /** | |
830 * Associates some data with the buddy in the xml buddy list | |
831 * | |
832 * @param b The buddy the data is associated with | |
833 * @param key The key used to retrieve the data | |
834 * @param value The data to set | |
7812 | 835 * @deprecated Replaced by gaim_blist_node_set_bool(), gaim_blist_node_set_int() |
836 * and gaim_blist_node_set_string() to enable types and consolidate functionality. | |
837 * This function is scheduled to be removed in the near future. | |
5228 | 838 */ |
6695 | 839 void gaim_buddy_set_setting(GaimBuddy *b, const char *key, const char *value); |
5228 | 840 |
841 /** | |
842 * Retrieves data from the XML buddy list set by gaim_buddy_set_setting()) | |
843 * | |
844 * @param b The buddy to retrieve data from | |
845 * @param key The key to retrieve the data with | |
846 * @return The associated data or NULL if no data is associated | |
7812 | 847 * @deprecated Replaced by gaim_blist_node_get_bool(), gaim_blist_node_get_int() |
848 * and gaim_blist_node_get_string() to enable types and consolidate functionality. | |
849 * This function is scheduled to be removed in the near future. | |
5228 | 850 */ |
7125 | 851 const char *gaim_buddy_get_setting(GaimBuddy *b, const char *key); |
5228 | 852 |
853 /*@}*/ | |
854 | |
855 /**************************************************************************/ | |
856 /** @name UI Registration Functions */ | |
857 /**************************************************************************/ | |
858 /*@{*/ | |
859 | |
860 /** | |
861 * Sets the UI operations structure to be used for the buddy list. | |
862 * | |
863 * @param ops The ops struct. | |
864 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
865 void gaim_blist_set_ui_ops(GaimBlistUiOps *ops); |
5228 | 866 |
867 /** | |
868 * Returns the UI operations structure to be used for the buddy list. | |
869 * | |
870 * @return The UI operations structure. | |
871 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
872 GaimBlistUiOps *gaim_blist_get_ui_ops(void); |
5228 | 873 |
874 /*@}*/ | |
875 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
876 /**************************************************************************/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
877 /** @name Buddy List Subsystem */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
878 /**************************************************************************/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
879 /*@{*/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
880 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
881 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
882 * Returns the handle for the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
883 * |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
884 * @return The buddy list subsystem handle. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
885 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
886 void *gaim_blist_get_handle(void); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
887 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
888 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
889 * Initializes the buddy list subsystem. |
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 void gaim_blist_init(void); |
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 * Uninitializes the buddy list subsystem. |
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 void gaim_blist_uninit(void); |
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 /*@}*/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
899 |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
900 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
901 } |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
902 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
903 |
6695 | 904 #endif /* _BLIST_H_ */ |