Mercurial > pidgin.yaz
annotate src/buddyicon.h @ 10703:a7486f12e56f
[gaim-migrate @ 12286]
Some kind of Gtk 2.4 support, it may not be implemented exactly how we want
it eventually, but it helps crazy people help us out. Thanks to Nathan
Fredrickson for doing the real work.
committer: Tailor Script <tailor@pidgin.im>
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Sun, 20 Mar 2005 01:23:06 +0000 |
parents | 748aa3c6de36 |
children | e8e535ad720b |
rev | line source |
---|---|
6846 | 1 /** |
6869 | 2 * @file buddyicon.h Buddy Icon API |
6846 | 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. | |
6846 | 10 * |
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_BUDDYICON_H_ |
26 #define _GAIM_BUDDYICON_H_ | |
6846 | 27 |
28 typedef struct _GaimBuddyIcon GaimBuddyIcon; | |
29 | |
30 #include "account.h" | |
9718 | 31 #include "blist.h" |
10483 | 32 #include "prpl.h" |
6846 | 33 |
34 struct _GaimBuddyIcon | |
35 { | |
36 GaimAccount *account; /**< The account the user is on. */ | |
37 char *username; /**< The username the icon belongs to. */ | |
38 | |
39 void *data; /**< The buddy icon data. */ | |
40 size_t len; /**< The length of the buddy icon data. */ | |
41 | |
42 int ref_count; /**< The buddy icon reference count. */ | |
43 }; | |
44 | |
45 /**************************************************************************/ | |
46 /** @name Buddy Icon API */ | |
47 /**************************************************************************/ | |
48 /*@{*/ | |
49 | |
50 /** | |
51 * Creates a new buddy icon structure. | |
52 * | |
53 * @param account The account the user is on. | |
54 * @param username The username the icon belongs to. | |
55 * @param icon_data The buddy icon data. | |
56 * @param icon_len The buddy icon length. | |
57 * | |
58 * @return The buddy icon structure. | |
59 */ | |
60 GaimBuddyIcon *gaim_buddy_icon_new(GaimAccount *account, const char *username, | |
61 void *icon_data, size_t icon_len); | |
62 | |
63 /** | |
64 * Destroys a buddy icon structure. | |
65 * | |
66 * If the buddy icon's reference count is greater than 1, this will | |
67 * just decrease the reference count and return. | |
68 * | |
69 * @param icon The buddy icon structure to destroy. | |
70 */ | |
71 void gaim_buddy_icon_destroy(GaimBuddyIcon *icon); | |
72 | |
73 /** | |
74 * Increments the reference count on a buddy icon. | |
75 * | |
76 * @param icon The buddy icon. | |
77 * | |
78 * @return @a icon. | |
79 */ | |
80 GaimBuddyIcon *gaim_buddy_icon_ref(GaimBuddyIcon *icon); | |
81 | |
82 /** | |
83 * Decrements the reference count on a buddy icon. | |
84 * | |
85 * If the reference count reaches 0, the icon will be destroyed. | |
86 * | |
87 * @param icon The buddy icon. | |
88 * | |
89 * @return @a icon, or @c NULL if the reference count reached 0. | |
90 */ | |
91 GaimBuddyIcon *gaim_buddy_icon_unref(GaimBuddyIcon *icon); | |
92 | |
93 /** | |
94 * Updates every instance of this icon. | |
95 * | |
96 * @param icon The buddy icon. | |
97 */ | |
98 void gaim_buddy_icon_update(GaimBuddyIcon *icon); | |
99 | |
100 /** | |
6886
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
101 * Caches a buddy icon associated with a specific buddy to disk. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
102 * |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
103 * @param icon The buddy icon. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
104 * @param buddy The buddy that this icon belongs to. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
105 */ |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
106 void gaim_buddy_icon_cache(GaimBuddyIcon *icon, GaimBuddy *buddy); |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
107 |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
108 /** |
6846 | 109 * Sets the buddy icon's account. |
110 * | |
111 * @param icon The buddy icon. | |
112 * @param account The account. | |
113 */ | |
114 void gaim_buddy_icon_set_account(GaimBuddyIcon *icon, GaimAccount *account); | |
115 | |
116 /** | |
117 * Sets the buddy icon's username. | |
118 * | |
119 * @param icon The buddy icon. | |
120 * @param username The username. | |
121 */ | |
122 void gaim_buddy_icon_set_username(GaimBuddyIcon *icon, const char *username); | |
123 | |
124 /** | |
125 * Sets the buddy icon's icon data. | |
126 * | |
127 * @param icon The buddy icon. | |
128 * @param data The buddy icon data. | |
129 * @param len The length of the icon data. | |
130 */ | |
131 void gaim_buddy_icon_set_data(GaimBuddyIcon *icon, void *data, size_t len); | |
132 | |
133 /** | |
134 * Returns the buddy icon's account. | |
135 * | |
136 * @param icon The buddy icon. | |
137 * | |
138 * @return The account. | |
139 */ | |
140 GaimAccount *gaim_buddy_icon_get_account(const GaimBuddyIcon *icon); | |
141 | |
142 /** | |
143 * Returns the buddy icon's username. | |
144 * | |
145 * @param icon The buddy icon. | |
146 * | |
147 * @return The username. | |
148 */ | |
149 const char *gaim_buddy_icon_get_username(const GaimBuddyIcon *icon); | |
150 | |
151 /** | |
152 * Returns the buddy icon's data. | |
153 * | |
154 * @param icon The buddy icon. | |
155 * @param len The returned icon length. | |
156 * | |
157 * @return The icon data. | |
158 */ | |
159 const void *gaim_buddy_icon_get_data(const GaimBuddyIcon *icon, size_t *len); | |
160 | |
161 /*@}*/ | |
162 | |
163 /**************************************************************************/ | |
164 /** @name Buddy Icon Subsystem API */ | |
165 /**************************************************************************/ | |
166 /*@{*/ | |
167 | |
168 /** | |
169 * Sets a buddy icon for a user. | |
170 * | |
171 * @param account The account the user is on. | |
172 * @param username The username of the user. | |
173 * @param icon_data The icon data. | |
174 * @param icon_len The length of the icon data. | |
175 */ | |
176 void gaim_buddy_icons_set_for_user(GaimAccount *account, const char *username, | |
177 void *icon_data, size_t icon_len); | |
178 | |
179 /** | |
180 * Returns the buddy icon information for a user. | |
181 * | |
182 * @param account The account the user is on. | |
183 * @param username The username of the user. | |
184 * | |
185 * @return The icon data if found, or @c NULL if not found. | |
186 */ | |
9396 | 187 GaimBuddyIcon *gaim_buddy_icons_find(GaimAccount *account, |
6846 | 188 const char *username); |
189 | |
190 /** | |
6886
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
191 * Sets whether or not buddy icon caching is enabled. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
192 * |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
193 * @param caching TRUE of buddy icon caching should be enabled, or |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
194 * FALSE otherwise. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
195 */ |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
196 void gaim_buddy_icons_set_caching(gboolean caching); |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
197 |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
198 /** |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
199 * Returns whether or not buddy icon caching should be enabled. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
200 * |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
201 * The default is TRUE, unless otherwise specified by |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
202 * gaim_buddy_icons_set_caching(). |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
203 * |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
204 * @return TRUE if buddy icon caching is enabled, or FALSE otherwise. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
205 */ |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
206 gboolean gaim_buddy_icons_is_caching(void); |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
207 |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
208 /** |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
209 * Sets the directory used to store buddy icon cache files. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
210 * |
7114
c47633e9e2a4
[gaim-migrate @ 7681]
Christian Hammond <chipx86@chipx86.com>
parents:
6886
diff
changeset
|
211 * @param cache_dir The directory to store buddy icon cache files to. |
6886
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
212 */ |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
213 void gaim_buddy_icons_set_cache_dir(const char *cache_dir); |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
214 |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
215 /** |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
216 * Returns the directory used to store buddy icon cache files. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
217 * |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
218 * The default directory is GAIMDIR/icons, unless otherwise specified |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
219 * by gaim_buddy_icons_set_cache_dir(). |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
220 * |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
221 * @return The directory to store buddy icon cache files to. |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
222 */ |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
223 const char *gaim_buddy_icons_get_cache_dir(void); |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
224 |
b5fb1d5282e5
[gaim-migrate @ 7432]
Christian Hammond <chipx86@chipx86.com>
parents:
6869
diff
changeset
|
225 /** |
6846 | 226 * Returns the buddy icon subsystem handle. |
227 * | |
228 * @return The subsystem handle. | |
229 */ | |
230 void *gaim_buddy_icons_get_handle(); | |
231 | |
232 /** | |
233 * Initializes the buddy icon subsystem. | |
234 */ | |
235 void gaim_buddy_icons_init(); | |
236 | |
237 /** | |
238 * Uninitializes the buddy icon subsystem. | |
239 */ | |
240 void gaim_buddy_icons_uninit(); | |
241 | |
242 /*@}*/ | |
243 | |
10483 | 244 /**************************************************************************/ |
245 /** @name Buddy Icon Helper API */ | |
246 /**************************************************************************/ | |
247 /*@{*/ | |
248 | |
249 /** | |
250 * Gets display size for a buddy icon | |
251 */ | |
252 void gaim_buddy_icon_get_scale_size(GaimBuddyIconSpec *spec, int *width, int *height); | |
253 | |
254 /*@}*/ | |
255 | |
9713 | 256 #endif /* _GAIM_BUDDYICON_H_ */ |