Mercurial > pidgin.yaz
annotate src/blist.h @ 11994:9dd895fdafdd
[gaim-migrate @ 14287]
SF Patch #1349218 from Richard Gobeille
"This patch changes the string representing transfer
progress in the GTK file transfer window to something a
bit more user friendly."
Basically, it shows a percentage in addition to the byte count.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 06 Nov 2005 23:01:56 +0000 |
parents | 73777ad45562 |
children | 1ec93dd2f359 |
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 |
9944 | 61 #define GAIM_BUDDY_IS_ONLINE(b) \ |
62 ((b) != NULL && gaim_account_is_connected((b)->account) && \ | |
63 gaim_presence_is_online(gaim_buddy_get_presence(b))) | |
5228 | 64 |
9787 | 65 typedef enum |
66 { | |
10008 | 67 GAIM_BLIST_NODE_FLAG_NO_SAVE = 1 /**< node should not be saved with the buddy list */ |
68 | |
9787 | 69 } GaimBlistNodeFlags; |
70 | |
71 #define GAIM_BLIST_NODE_HAS_FLAG(b, f) ((b)->flags & (f)) | |
72 #define GAIM_BLIST_NODE_SHOULD_SAVE(b) (! GAIM_BLIST_NODE_HAS_FLAG(b, GAIM_BLIST_NODE_FLAG_NO_SAVE)) | |
73 | |
10008 | 74 #include "account.h" |
75 #include "buddyicon.h" | |
76 #include "status.h" | |
5228 | 77 |
78 /**************************************************************************/ | |
79 /* Data Structures */ | |
80 /**************************************************************************/ | |
81 | |
82 /** | |
10566
62fc579810f4
[gaim-migrate @ 11949]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10548
diff
changeset
|
83 * A Buddy list node. This can represent a group, a buddy, or anything else. |
62fc579810f4
[gaim-migrate @ 11949]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10548
diff
changeset
|
84 * This is a base class for struct buddy and struct group and for anything |
62fc579810f4
[gaim-migrate @ 11949]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10548
diff
changeset
|
85 * else that wants to put itself in the buddy list. */ |
5228 | 86 struct _GaimBlistNode { |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
87 GaimBlistNodeType type; /**< The type of node this is */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
88 GaimBlistNode *prev; /**< The sibling before this buddy. */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
89 GaimBlistNode *next; /**< The sibling after this buddy. */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
90 GaimBlistNode *parent; /**< The parent of this node */ |
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
91 GaimBlistNode *child; /**< The child of this node */ |
7693 | 92 GHashTable *settings; /**< per-node settings */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
93 void *ui_data; /**< The UI can put data here. */ |
9787 | 94 GaimBlistNodeFlags flags; /**< The buddy flags */ |
5228 | 95 }; |
96 | |
97 /** | |
98 * A buddy. This contains everything Gaim will ever need to know about someone on the buddy list. Everything. | |
99 */ | |
6695 | 100 struct _GaimBuddy { |
5228 | 101 GaimBlistNode node; /**< The node that this buddy inherits from */ |
102 char *name; /**< The screenname of the buddy. */ | |
103 char *alias; /**< The user-set alias of the buddy */ | |
6695 | 104 char *server_alias; /**< The server-specified alias of the buddy. (i.e. MSN "Friendly Names") */ |
5228 | 105 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
|
106 GaimBuddyIcon *icon; /**< The buddy icon. */ |
11972 | 107 GaimAccount *account; /**< the account this buddy belongs to */ |
9949 | 108 GaimPresence *presence; |
5228 | 109 }; |
110 | |
111 /** | |
6695 | 112 * A contact. This contains everything Gaim will ever need to know about a contact. |
113 */ | |
114 struct _GaimContact { | |
6755 | 115 GaimBlistNode node; /**< The node that this contact inherits from. */ |
116 char *alias; /**< The user-set alias of the contact */ | |
117 int totalsize; /**< The number of buddies in this contact */ | |
118 int currentsize; /**< The number of buddies in this contact corresponding to online accounts */ | |
119 int online; /**< The number of buddies in this contact who are currently online */ | |
6843 | 120 GaimBuddy *priority; /**< The "top" buddy for this contact */ |
10378 | 121 gboolean priority_valid; /**< Is priority valid? */ |
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 * | |
9460 | 162 * Any UI representing a buddy list must assign a filled-out GaimBlistUiOps |
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. */ |
9996 | 168 void (*new_node)(GaimBlistNode *node); /**< Sets UI-specific data on a node. */ |
9997 | 169 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
|
170 void (*update)(GaimBuddyList *list, |
9996 | 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, |
9996 | 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, |
9996 | 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); |
10433 | 179 void (*request_add_chat)(GaimAccount *account, GaimGroup *group, |
9754 | 180 const char *alias, const char *name); |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
181 void (*request_add_group)(void); |
5228 | 182 }; |
183 | |
9030 | 184 |
185 struct _GaimBlistNodeAction { | |
186 char *label; | |
187 void (*callback)(GaimBlistNode *, gpointer); | |
188 gpointer data; | |
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
189 GList *children; |
9030 | 190 }; |
191 | |
192 | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
193 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
194 extern "C" { |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
195 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
196 |
5228 | 197 /**************************************************************************/ |
198 /** @name Buddy List API */ | |
199 /**************************************************************************/ | |
200 /*@{*/ | |
201 | |
202 /** | |
203 * Creates a new buddy list | |
10071 | 204 * |
205 * @return The new buddy list. | |
5228 | 206 */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
207 GaimBuddyList *gaim_blist_new(); |
5228 | 208 |
209 /** | |
210 * Sets the main buddy list. | |
211 * | |
10071 | 212 * @param blist The buddy list you want to use. |
5228 | 213 */ |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
214 void gaim_set_blist(GaimBuddyList *blist); |
5228 | 215 |
216 /** | |
217 * Returns the main buddy list. | |
218 * | |
219 * @return The main buddy list. | |
220 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
221 GaimBuddyList *gaim_get_blist(void); |
5228 | 222 |
223 /** | |
224 * Shows the buddy list, creating a new one if necessary. | |
225 */ | |
226 void gaim_blist_show(); | |
227 | |
228 | |
229 /** | |
230 * Destroys the buddy list window. | |
231 */ | |
232 void gaim_blist_destroy(); | |
233 | |
234 /** | |
235 * Hides or unhides the buddy list. | |
236 * | |
237 * @param show Whether or not to show the buddy list | |
238 */ | |
239 void gaim_blist_set_visible(gboolean show); | |
240 | |
241 /** | |
242 * Updates a buddy's status. | |
5234 | 243 * |
10052 | 244 * @param buddy The buddy whose status has changed. |
245 * @param old_status The status from which we are changing. | |
5228 | 246 */ |
10052 | 247 void gaim_blist_update_buddy_status(GaimBuddy *buddy, GaimStatus *old_status); |
5228 | 248 |
7950 | 249 /** |
5228 | 250 * Updates a buddy's icon. |
251 * | |
252 * @param buddy The buddy whose buddy icon has changed | |
253 */ | |
6695 | 254 void gaim_blist_update_buddy_icon(GaimBuddy *buddy); |
5228 | 255 |
256 /** | |
257 * Renames a buddy in the buddy list. | |
258 * | |
259 * @param buddy The buddy whose name will be changed. | |
260 * @param name The new name of the buddy. | |
261 */ | |
6695 | 262 void gaim_blist_rename_buddy(GaimBuddy *buddy, const char *name); |
5228 | 263 |
264 | |
265 /** | |
266 * Aliases a buddy in the buddy list. | |
267 * | |
268 * @param buddy The buddy whose alias will be changed. | |
269 * @param alias The buddy's alias. | |
270 */ | |
6695 | 271 void gaim_blist_alias_buddy(GaimBuddy *buddy, const char *alias); |
5228 | 272 |
5234 | 273 /** |
6059 | 274 * Sets the server-sent alias of a buddy in the buddy list. |
6058 | 275 * |
276 * @param buddy The buddy whose alias will be changed. | |
277 * @param alias The buddy's "official" alias. | |
278 */ | |
6695 | 279 void gaim_blist_server_alias_buddy(GaimBuddy *buddy, const char *alias); |
6058 | 280 |
281 /** | |
5234 | 282 * Aliases a chat in the buddy list. |
283 * | |
284 * @param chat The chat whose alias will be changed. | |
285 * @param alias The chat's new alias. | |
286 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
287 void gaim_blist_alias_chat(GaimChat *chat, const char *alias); |
5228 | 288 |
289 /** | |
290 * Renames a group | |
291 * | |
292 * @param group The group to rename | |
293 * @param name The new name | |
294 */ | |
6695 | 295 void gaim_blist_rename_group(GaimGroup *group, const char *name); |
5228 | 296 |
5234 | 297 /** |
298 * Creates a new chat for the buddy list | |
299 * | |
300 * @param account The account this chat will get added to | |
301 * @param alias The alias of the new chat | |
302 * @param components The info the prpl needs to join the chat | |
303 * @return A newly allocated chat | |
304 */ | |
7125 | 305 GaimChat *gaim_chat_new(GaimAccount *account, const char *alias, GHashTable *components); |
5234 | 306 |
307 /** | |
308 * Adds a new chat to the buddy list. | |
309 * | |
310 * The chat will be inserted right after node or appended to the end | |
311 * of group if node is NULL. If both are NULL, the buddy will be added to | |
312 * the "Chats" group. | |
313 * | |
314 * @param chat The new chat who gets added | |
315 * @param group The group to add the new chat to. | |
316 * @param node The insertion point | |
317 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
318 void gaim_blist_add_chat(GaimChat *chat, GaimGroup *group, GaimBlistNode *node); |
5228 | 319 |
320 /** | |
321 * Creates a new buddy | |
322 * | |
323 * @param account The account this buddy will get added to | |
324 * @param screenname The screenname of the new buddy | |
325 * @param alias The alias of the new buddy (or NULL if unaliased) | |
326 * @return A newly allocated buddy | |
327 */ | |
6695 | 328 GaimBuddy *gaim_buddy_new(GaimAccount *account, const char *screenname, const char *alias); |
5228 | 329 |
330 /** | |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
331 * Sets a buddy's icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
332 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
333 * 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
|
334 * call gaim_buddy_icon_set_data(). |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
335 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
336 * @param buddy The buddy. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
337 * @param icon The buddy icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
338 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
339 * @see gaim_buddy_icon_set_data() |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
340 */ |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
341 void gaim_buddy_set_icon(GaimBuddy *buddy, GaimBuddyIcon *icon); |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
342 |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
343 /** |
10037
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
344 * Returns a buddy's account. |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
345 * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
346 * @param buddy The buddy. |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
347 * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
348 * @return The account |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
349 */ |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
350 GaimAccount *gaim_buddy_get_account(const GaimBuddy *buddy); |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
351 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
352 /** |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
353 * Returns a buddy's name |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
354 * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
355 * @param buddy The buddy. |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
356 * |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
357 * @return The name. |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
358 */ |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
359 const char *gaim_buddy_get_name(const GaimBuddy *buddy); |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
360 |
e6e68b9db19b
[gaim-migrate @ 10996]
Luke Schierer <lschiere@pidgin.im>
parents:
10012
diff
changeset
|
361 /** |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
362 * Returns a buddy's icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
363 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
364 * @param buddy The buddy. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
365 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
366 * @return The buddy icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
367 */ |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6843
diff
changeset
|
368 GaimBuddyIcon *gaim_buddy_get_icon(const GaimBuddy *buddy); |
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 /** |
7312 | 371 * Returns a buddy's contact. |
372 * | |
373 * @param buddy The buddy. | |
374 * | |
375 * @return The buddy's contact. | |
376 */ | |
377 GaimContact *gaim_buddy_get_contact(GaimBuddy *buddy); | |
378 | |
379 /** | |
9944 | 380 * Returns a buddy's presence. |
381 * | |
382 * @param buddy The buddy. | |
383 * | |
384 * @return The buddy's presence. | |
385 */ | |
386 GaimPresence *gaim_buddy_get_presence(const GaimBuddy *buddy); | |
387 | |
388 /** | |
5228 | 389 * Adds a new buddy to the buddy list. |
390 * | |
6695 | 391 * The buddy will be inserted right after node or prepended to the |
392 * group if node is NULL. If both are NULL, the buddy will be added to | |
5228 | 393 * the "Buddies" group. |
394 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
395 * @param buddy The new buddy who gets added |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
396 * @param contact The optional contact to place the buddy in. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
397 * @param group The group to add the new buddy to. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
398 * @param node The insertion point |
5228 | 399 */ |
6695 | 400 void gaim_blist_add_buddy(GaimBuddy *buddy, GaimContact *contact, GaimGroup *group, GaimBlistNode *node); |
5228 | 401 |
402 /** | |
403 * Creates a new group | |
404 * | |
6695 | 405 * You can't have more than one group with the same name. Sorry. If you pass |
406 * this the * name of a group that already exists, it will return that group. | |
5228 | 407 * |
408 * @param name The name of the new group | |
6695 | 409 * @return A new group struct |
5228 | 410 */ |
6695 | 411 GaimGroup *gaim_group_new(const char *name); |
5228 | 412 |
413 /** | |
414 * Adds a new group to the buddy list. | |
415 * | |
6695 | 416 * The new group will be inserted after insert or prepended to the list if |
417 * node is NULL. | |
418 * | |
419 * @param group The group | |
420 * @param node The insertion point | |
421 */ | |
422 void gaim_blist_add_group(GaimGroup *group, GaimBlistNode *node); | |
423 | |
424 /** | |
425 * Creates a new contact | |
5228 | 426 * |
6695 | 427 * @return A new contact struct |
5228 | 428 */ |
6695 | 429 GaimContact *gaim_contact_new(); |
430 | |
431 /** | |
432 * Adds a new contact to the buddy list. | |
433 * | |
434 * The new contact will be inserted after insert or prepended to the list if | |
435 * node is NULL. | |
436 * | |
437 * @param contact The contact | |
438 * @param group The group to add the contact to | |
439 * @param node The insertion point | |
440 */ | |
441 void gaim_blist_add_contact(GaimContact *contact, GaimGroup *group, GaimBlistNode *node); | |
442 | |
443 /** | |
6965 | 444 * Merges two contacts |
445 * | |
446 * All of the buddies from source will be moved to target | |
447 * | |
448 * @param source The contact to merge | |
7246 | 449 * @param node The place to merge to (a buddy or contact) |
6965 | 450 */ |
7246 | 451 void gaim_blist_merge_contact(GaimContact *source, GaimBlistNode *node); |
6965 | 452 |
453 /** | |
6695 | 454 * Returns the highest priority buddy for a given contact. |
455 * | |
456 * @param contact The contact | |
457 * @return The highest priority buddy | |
458 */ | |
459 GaimBuddy *gaim_contact_get_priority_buddy(GaimContact *contact); | |
5228 | 460 |
461 /** | |
6755 | 462 * Sets the alias for a contact. |
463 * | |
464 * @param contact The contact | |
465 * @param alias The alias to set, or NULL to unset | |
466 */ | |
467 void gaim_contact_set_alias(GaimContact *contact, const char *alias); | |
468 | |
469 /** | |
470 * Gets the alias for a contact. | |
471 * | |
472 * @param contact The contact | |
473 * @return The alias, or NULL if it is not set. | |
474 */ | |
475 const char *gaim_contact_get_alias(GaimContact *contact); | |
476 | |
477 /** | |
9787 | 478 * Determines whether an account owns any buddies in a given contact |
479 * | |
480 * @param contact The contact to search through. | |
481 * @param account The account. | |
482 * | |
483 * @return TRUE if there are any buddies from account in the contact, or FALSE otherwise. | |
484 */ | |
485 gboolean gaim_contact_on_account(GaimContact *contact, GaimAccount *account); | |
486 | |
487 /** | |
10378 | 488 * Invalidates the priority buddy so that the next call to |
489 * gaim_contact_get_priority_buddy recomputes it. | |
9944 | 490 * |
10378 | 491 * @param contact The contact |
9944 | 492 */ |
10378 | 493 void gaim_contact_invalidate_priority_buddy(GaimContact *contact); |
9944 | 494 /** |
5228 | 495 * Removes a buddy from the buddy list and frees the memory allocated to it. |
496 * | |
497 * @param buddy The buddy to be removed | |
498 */ | |
6695 | 499 void gaim_blist_remove_buddy(GaimBuddy *buddy); |
500 | |
501 /** | |
502 * Removes a contact, and any buddies it contains, and frees the memory | |
503 * allocated to it. | |
504 * | |
505 * @param contact The contact to be removed | |
506 */ | |
507 void gaim_blist_remove_contact(GaimContact *contact); | |
5228 | 508 |
509 /** | |
5234 | 510 * Removes a chat from the buddy list and frees the memory allocated to it. |
511 * | |
512 * @param chat The chat to be removed | |
513 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
514 void gaim_blist_remove_chat(GaimChat *chat); |
5234 | 515 |
516 /** | |
5228 | 517 * Removes a group from the buddy list and frees the memory allocated to it and to |
518 * its children | |
519 * | |
520 * @param group The group to be removed | |
521 */ | |
6695 | 522 void gaim_blist_remove_group(GaimGroup *group); |
5228 | 523 |
524 /** | |
525 * Returns the alias of a buddy. | |
526 * | |
527 * @param buddy The buddy whose name will be returned. | |
10349 | 528 * @return The alias (if set), server alias (if set), |
529 * or NULL. | |
5228 | 530 */ |
9620 | 531 const char *gaim_buddy_get_alias_only(GaimBuddy *buddy); |
5228 | 532 |
533 | |
534 /** | |
9620 | 535 * Returns the correct name to display for a buddy, taking the contact alias |
536 * into account. In order of precedence: the buddy's alias; the buddy's | |
537 * contact alias; the buddy's server alias; the buddy's user name. | |
538 * | |
539 * @param buddy The buddy whose name will be returned | |
9635 | 540 * @return The appropriate name or alias, or NULL. |
9620 | 541 * |
542 */ | |
543 const char *gaim_buddy_get_contact_alias(GaimBuddy *buddy); | |
544 | |
10349 | 545 /** |
546 * Returns the correct alias for this user, ignoring server aliases. Used | |
547 * when a user-recognizable name is required. In order: buddy's alias; buddy's | |
548 * contact alias; buddy's user name. | |
549 * | |
550 * @param buddy The buddy whose alias will be returned. | |
551 * @return The appropriate name or alias. | |
552 */ | |
553 const char *gaim_buddy_get_local_alias(GaimBuddy *buddy); | |
9620 | 554 |
555 /** | |
556 * Returns the correct name to display for a buddy. In order of precedence: | |
557 * the buddy's alias; the buddy's server alias; the buddy's contact alias; | |
558 * the buddy's user name. | |
5228 | 559 * |
560 * @param buddy The buddy whose name will be returned. | |
9635 | 561 * @return The appropriate name or alias, or NULL |
5228 | 562 */ |
9620 | 563 const char *gaim_buddy_get_alias(GaimBuddy *buddy); |
5228 | 564 |
565 /** | |
6744 | 566 * Returns the correct name to display for a blist chat. |
567 * | |
568 * @param chat The chat whose name will be returned. | |
569 * @return The alias (if set), or first component value. | |
570 */ | |
7125 | 571 const char *gaim_chat_get_name(GaimChat *chat); |
6744 | 572 |
573 /** | |
5228 | 574 * Finds the buddy struct given a screenname and an account |
575 * | |
10071 | 576 * @param account The account this buddy belongs to |
6872 | 577 * @param name The buddy's screenname |
5228 | 578 * @return The buddy or NULL if the buddy does not exist |
579 */ | |
6695 | 580 GaimBuddy *gaim_find_buddy(GaimAccount *account, const char *name); |
6245 | 581 |
582 /** | |
6872 | 583 * Finds the buddy struct given a screenname, an account, and a group |
584 * | |
10071 | 585 * @param account The account this buddy belongs to |
6872 | 586 * @param name The buddy's screenname |
587 * @param group The group to look in | |
588 * @return The buddy or NULL if the buddy does not exist in the group | |
589 */ | |
590 GaimBuddy *gaim_find_buddy_in_group(GaimAccount *account, const char *name, | |
591 GaimGroup *group); | |
592 | |
593 /** | |
9285 | 594 * Finds all GaimBuddy structs given a screenname and an account |
6245 | 595 * |
10071 | 596 * @param account The account this buddy belongs to |
6245 | 597 * @param name The buddy's screenname |
598 * | |
599 * @return A GSList of buddies (which must be freed), or NULL if the buddy doesn't exist | |
600 */ | |
601 GSList *gaim_find_buddies(GaimAccount *account, const char *name); | |
602 | |
5228 | 603 |
604 /** | |
605 * Finds a group by name | |
606 * | |
607 * @param name The groups name | |
608 * @return The group or NULL if the group does not exist | |
609 */ | |
6695 | 610 GaimGroup *gaim_find_group(const char *name); |
611 | |
612 /** | |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
613 * Finds a chat by name. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
614 * |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
615 * @param account The chat's account. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
616 * @param name The chat's name. |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
617 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
618 * @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
|
619 */ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
620 GaimChat *gaim_blist_find_chat(GaimAccount *account, const char *name); |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
621 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
622 /** |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
623 * Returns the group of which the chat is a member. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
624 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
625 * @param chat The chat. |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
626 * |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
627 * @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
|
628 */ |
7125 | 629 GaimGroup *gaim_chat_get_group(GaimChat *chat); |
6456
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
630 |
ccfdf9f2cdd1
[gaim-migrate @ 6965]
Christian Hammond <chipx86@chipx86.com>
parents:
6245
diff
changeset
|
631 /** |
5228 | 632 * Returns the group of which the buddy is a member. |
633 * | |
634 * @param buddy The buddy | |
635 * @return The group or NULL if the buddy is not in a group | |
636 */ | |
6695 | 637 GaimGroup *gaim_find_buddys_group(GaimBuddy *buddy); |
5228 | 638 |
639 | |
640 /** | |
641 * Returns a list of accounts that have buddies in this group | |
642 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
643 * @param g The group |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
644 * |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
645 * @return A list of gaim_accounts |
5228 | 646 */ |
6695 | 647 GSList *gaim_group_get_accounts(GaimGroup *g); |
5228 | 648 |
649 /** | |
650 * Determines whether an account owns any buddies in a given group | |
651 * | |
652 * @param g The group to search through. | |
653 * @param account The account. | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
654 * |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
655 * @return TRUE if there are any buddies in the group, or FALSE otherwise. |
5228 | 656 */ |
6695 | 657 gboolean gaim_group_on_account(GaimGroup *g, GaimAccount *account); |
5228 | 658 |
659 /** | |
5234 | 660 * Called when an account gets signed on. Tells the UI to update all the |
661 * buddies. | |
662 * | |
663 * @param account The account | |
664 */ | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
665 void gaim_blist_add_account(GaimAccount *account); |
5234 | 666 |
667 | |
668 /** | |
5228 | 669 * Called when an account gets signed off. Sets the presence of all the buddies to 0 |
670 * and tells the UI to update them. | |
671 * | |
6695 | 672 * @param account The account |
5228 | 673 */ |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
674 void gaim_blist_remove_account(GaimAccount *account); |
5228 | 675 |
676 | |
677 /** | |
678 * Determines the total size of a group | |
679 * | |
680 * @param group The group | |
681 * @param offline Count buddies in offline accounts | |
682 * @return The number of buddies in the group | |
683 */ | |
6695 | 684 int gaim_blist_get_group_size(GaimGroup *group, gboolean offline); |
5228 | 685 |
686 /** | |
687 * Determines the number of online buddies in a group | |
688 * | |
689 * @param group The group | |
690 * @return The number of online buddies in the group, or 0 if the group is NULL | |
691 */ | |
6695 | 692 int gaim_blist_get_group_online_count(GaimGroup *group); |
5228 | 693 |
694 /*@}*/ | |
695 | |
696 /****************************************************************************************/ | |
697 /** @name Buddy list file management API */ | |
698 /****************************************************************************************/ | |
699 | |
700 /** | |
701 * Loads the buddy list from ~/.gaim/blist.xml. | |
702 */ | |
703 void gaim_blist_load(); | |
704 | |
705 /** | |
10704 | 706 * Schedule a save of the blist.xml file. This is used by the privacy |
707 * API whenever the privacy settings are changed. If you make a change | |
708 * to blist.xml using one of the functions in the buddy list API, then | |
709 * the buddy list is saved automatically, so you should not need to | |
710 * call this. | |
10350 | 711 */ |
10704 | 712 void gaim_blist_schedule_save(); |
10350 | 713 |
714 /** | |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
715 * 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
|
716 * buddy list. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
717 * |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
718 * @param account The account the buddy is added to. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
719 * @param username The username of the buddy. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
720 * @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
|
721 * @param alias The optional alias for the buddy. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
722 */ |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
723 void gaim_blist_request_add_buddy(GaimAccount *account, const char *username, |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
724 const char *group, const char *alias); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
725 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
726 /** |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
727 * 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
|
728 * buddy list. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
729 * |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
730 * @param account The account the buddy is added to. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
731 * @param group The optional group to add the chat to. |
9000 | 732 * @param alias The optional alias for the chat. |
9939 | 733 * @param name The required chat name. |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
734 */ |
7859 | 735 void gaim_blist_request_add_chat(GaimAccount *account, GaimGroup *group, |
9754 | 736 const char *alias, const char *name); |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
737 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
738 /** |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
739 * 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
|
740 * buddy list. |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
741 */ |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
742 void gaim_blist_request_add_group(void); |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
743 |
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
744 /** |
7693 | 745 * Associates a boolean with a node in the buddy list |
746 * | |
747 * @param node The node to associate the data with | |
748 * @param key The identifier for the data | |
749 * @param value The value to set | |
750 */ | |
751 void gaim_blist_node_set_bool(GaimBlistNode *node, const char *key, gboolean value); | |
752 | |
753 /** | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
754 * Retrieves a named boolean setting from a node in the buddy list |
7693 | 755 * |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
756 * @param node The node to retrieve the data from |
7693 | 757 * @param key The identifier of the data |
758 * | |
759 * @return The value, or FALSE if there is no setting | |
760 */ | |
761 gboolean gaim_blist_node_get_bool(GaimBlistNode *node, const char *key); | |
762 | |
763 /** | |
764 * Associates an integer with a node in the buddy list | |
765 * | |
766 * @param node The node to associate the data with | |
767 * @param key The identifier for the data | |
768 * @param value The value to set | |
769 */ | |
770 void gaim_blist_node_set_int(GaimBlistNode *node, const char *key, int value); | |
771 | |
772 /** | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
773 * Retrieves a named integer setting from a node in the buddy list |
7693 | 774 * |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
775 * @param node The node to retrieve the data from |
7693 | 776 * @param key The identifier of the data |
777 * | |
778 * @return The value, or 0 if there is no setting | |
779 */ | |
780 int gaim_blist_node_get_int(GaimBlistNode *node, const char *key); | |
781 | |
782 /** | |
783 * Associates a string with a node in the buddy list | |
784 * | |
785 * @param node The node to associate the data with | |
786 * @param key The identifier for the data | |
787 * @param value The value to set | |
788 */ | |
789 void gaim_blist_node_set_string(GaimBlistNode *node, const char *key, | |
790 const char *value); | |
791 | |
792 /** | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
793 * Retrieves a named string setting from a node in the buddy list |
7693 | 794 * |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8710
diff
changeset
|
795 * @param node The node to retrieve the data from |
7693 | 796 * @param key The identifier of the data |
797 * | |
798 * @return The value, or NULL if there is no setting | |
799 */ | |
800 const char *gaim_blist_node_get_string(GaimBlistNode *node, const char *key); | |
801 | |
802 /** | |
7811 | 803 * Removes a named setting from a blist node |
804 * | |
805 * @param node The node from which to remove the setting | |
806 * @param key The name of the setting | |
807 */ | |
808 void gaim_blist_node_remove_setting(GaimBlistNode *node, const char *key); | |
809 | |
10548 | 810 /** |
811 * Set the flags for the given node. Setting a node's flags will overwrite | |
812 * the old flags, so if you want to save them, you must first call | |
813 * gaim_blist_node_get_flags and modify that appropriately. | |
814 * | |
815 * @param node The node on which to set the flags. | |
816 * @param flags The flags to set. This is a bitmask. | |
817 */ | |
818 void gaim_blist_node_set_flags(GaimBlistNode *node, GaimBlistNodeFlags flags); | |
819 | |
820 /** | |
821 * Get the current flags on a given node. | |
822 * | |
823 * @param node The node from which to get the flags. | |
824 * | |
825 * @return The flags on the node. This is a bitmask. | |
826 */ | |
827 GaimBlistNodeFlags gaim_blist_node_get_flags(GaimBlistNode *node); | |
828 | |
5228 | 829 /*@}*/ |
830 | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
831 |
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
832 /** |
9030 | 833 * Retrieves the extended menu items for a buddy list node. |
834 * @param n The blist node for which to obtain the extended menu items. | |
835 * @return list of GaimBlistNodeAction items, as harvested by the | |
836 * blist-node-extended-menu signal. | |
837 */ | |
838 GList *gaim_blist_node_get_extended_menu(GaimBlistNode *n); | |
839 | |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
840 |
8952 | 841 /** |
9030 | 842 * Creates a new GaimBlistNodeAction. |
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
843 * @param label The text label to display for this action. |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
844 * @param callback The function to be called when the action is used on |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
845 * a selected GaimBlistNode. |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
846 * @param data Additional data, to be passed to the callback |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
847 * @param children A GList of GaimBlistNodeActions to be added as a |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
848 * submenu of the action. |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
849 * @return The GaimBlistNodeAction. |
9030 | 850 */ |
10662
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
851 GaimBlistNodeAction *gaim_blist_node_action_new(char *label, |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
852 void (*callback)(GaimBlistNode *, gpointer), gpointer data, |
54ac161a876e
[gaim-migrate @ 12199]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10567
diff
changeset
|
853 GList *children); |
8952 | 854 |
8710
36b043fe2740
[gaim-migrate @ 9464]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
855 |
5228 | 856 /**************************************************************************/ |
857 /** @name UI Registration Functions */ | |
858 /**************************************************************************/ | |
859 /*@{*/ | |
860 | |
861 /** | |
862 * Sets the UI operations structure to be used for the buddy list. | |
863 * | |
864 * @param ops The ops struct. | |
865 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
866 void gaim_blist_set_ui_ops(GaimBlistUiOps *ops); |
5228 | 867 |
868 /** | |
869 * Returns the UI operations structure to be used for the buddy list. | |
870 * | |
871 * @return The UI operations structure. | |
872 */ | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
873 GaimBlistUiOps *gaim_blist_get_ui_ops(void); |
5228 | 874 |
875 /*@}*/ | |
876 | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
877 /**************************************************************************/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
878 /** @name Buddy List Subsystem */ |
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 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
883 * Returns the handle for the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
884 * |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
885 * @return The buddy list subsystem handle. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
886 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
887 void *gaim_blist_get_handle(void); |
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 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
890 * Initializes the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
891 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
892 void gaim_blist_init(void); |
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 * Uninitializes the buddy list subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
896 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
897 void gaim_blist_uninit(void); |
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 /*@}*/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6456
diff
changeset
|
900 |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
901 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
902 } |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
903 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
904 |
9713 | 905 #endif /* _GAIM_BLIST_H_ */ |