10418
|
1 /**
|
|
2 * @file savedstatuses.h Saved Status API
|
|
3 * @ingroup core
|
|
4 *
|
|
5 * gaim
|
|
6 *
|
|
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.
|
|
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 */
|
|
25 #ifndef _GAIM_SAVEDSTATUSES_H_
|
|
26 #define _GAIM_SAVEDSTATUSES_H_
|
|
27
|
|
28 /**
|
|
29 * Saved statuses don't really interact much with the rest of Gaim. It
|
|
30 * could really be a plugin. It's just a list of away states. When
|
|
31 * a user chooses one of the saved states, their Gaim accounts are set
|
|
32 * to the settings of that state.
|
12125
|
33 *
|
|
34 * In the savedstatus API, there is the concept of a 'transient'
|
|
35 * saved status. A transient saved status is one that is not
|
|
36 * permanent. Gaim will removed it automatically if it isn't
|
|
37 * used for a period of time. Transient saved statuses don't
|
|
38 * have titles and they don't show up in the list of saved
|
|
39 * statuses. In fact, if a saved status does not have a title
|
|
40 * then it is transient. If it does have a title, then it is not
|
|
41 * transient.
|
|
42 *
|
|
43 * What good is a transient status, you ask? They can be used to
|
|
44 * keep track of the user's 5 most recently used statuses, for
|
|
45 * example. Basically if they just set a message on the fly,
|
|
46 * we'll cache it for them in case they want to use it again. If
|
|
47 * they don't use it again, we'll just delete it.
|
10418
|
48 */
|
|
49
|
11651
|
50 /*
|
|
51 * TODO: Hmm. We should probably just be saving GaimPresences. That's
|
|
52 * something we should look into once the status box gets fleshed
|
|
53 * out more.
|
|
54 */
|
|
55
|
10419
|
56 typedef struct _GaimSavedStatus GaimSavedStatus;
|
|
57 typedef struct _GaimSavedStatusSub GaimSavedStatusSub;
|
10418
|
58
|
10447
|
59 #include "status.h"
|
|
60
|
10418
|
61 /**************************************************************************/
|
|
62 /** @name Saved status subsystem */
|
|
63 /**************************************************************************/
|
|
64 /*@{*/
|
|
65
|
|
66 /**
|
|
67 * Create a new saved status. This will add the saved status to the
|
|
68 * list of saved statuses and writes the revised list to status.xml.
|
|
69 *
|
11651
|
70 * @param title The title of the saved status. This must be
|
12125
|
71 * unique. Or, if you want to create a transient
|
|
72 * saved status, then pass in NULL.
|
11651
|
73 * @param type The type of saved status.
|
10418
|
74 *
|
10420
|
75 * @return The newly created saved status, or NULL if the title you
|
|
76 * used was already taken.
|
10418
|
77 */
|
10419
|
78 GaimSavedStatus *gaim_savedstatus_new(const char *title,
|
|
79 GaimStatusPrimitive type);
|
10418
|
80
|
|
81 /**
|
12056
|
82 * Set the title for the given saved status.
|
|
83 *
|
|
84 * @param status The saved status.
|
|
85 * @param title The title of the saved status.
|
|
86 */
|
|
87 void gaim_savedstatus_set_title(GaimSavedStatus *status,
|
|
88 const char *title);
|
|
89
|
|
90 /**
|
11651
|
91 * Set the type for the given saved status.
|
|
92 *
|
|
93 * @param status The saved status.
|
|
94 * @param type The type of saved status.
|
|
95 */
|
|
96 void gaim_savedstatus_set_type(GaimSavedStatus *status,
|
|
97 GaimStatusPrimitive type);
|
|
98
|
|
99 /**
|
10420
|
100 * Set the message for the given saved status.
|
|
101 *
|
|
102 * @param status The saved status.
|
|
103 * @param message The message, or NULL if you want to unset the
|
|
104 * message for this status.
|
|
105 */
|
|
106 void gaim_savedstatus_set_message(GaimSavedStatus *status,
|
|
107 const char *message);
|
|
108
|
|
109 /**
|
12056
|
110 * Set a substatus for an account in a saved status.
|
|
111 *
|
|
112 * @param status The saved status.
|
|
113 * @param account The account.
|
|
114 * @param type The status type for the account in the staved
|
|
115 * status.
|
|
116 * @param message The message for the account in the substatus.
|
|
117 */
|
12080
|
118 void gaim_savedstatus_set_substatus(GaimSavedStatus *status,
|
|
119 const GaimAccount *account,
|
|
120 const GaimStatusType *type,
|
|
121 const char *message);
|
12056
|
122
|
|
123 /**
|
|
124 * Unset a substatus for an account in a saved status. This clears
|
|
125 * the previosly set substatus for the GaimSavedStatus. If this
|
|
126 * saved status is activated then this account will use the default
|
|
127 * status type and message.
|
|
128 *
|
|
129 * @param status The saved status.
|
|
130 * @param account The account.
|
|
131 */
|
12080
|
132 void gaim_savedstatus_unset_substatus(GaimSavedStatus *saved_status,
|
12056
|
133 const GaimAccount *account);
|
|
134
|
|
135 /**
|
10418
|
136 * Delete a saved status. This removes the saved status from the list
|
|
137 * of saved statuses, and writes the revised list to status.xml.
|
|
138 *
|
|
139 * @param title The title of the saved status.
|
|
140 *
|
|
141 * @return TRUE if the status was successfully deleted. FALSE if the
|
|
142 * status could not be deleted because no saved status exists
|
|
143 * with the given title.
|
|
144 */
|
10419
|
145 gboolean gaim_savedstatus_delete(const char *title);
|
10418
|
146
|
|
147 /**
|
|
148 * Returns all saved statuses.
|
|
149 *
|
|
150 * @return A list of saved statuses.
|
|
151 */
|
|
152 const GList *gaim_savedstatuses_get_all(void);
|
|
153
|
|
154 /**
|
12125
|
155 * Returns the currently selected saved status.
|
|
156 *
|
|
157 * @return A pointer to the in-use GaimSavedStatus.
|
|
158 */
|
|
159 GaimSavedStatus *gaim_savedstatus_get_current();
|
|
160
|
|
161 /**
|
|
162 * Returns the saved status that gets used when your
|
|
163 * accounts become idle-away.
|
|
164 *
|
|
165 * @return A pointer to the idle-away GaimSavedStatus.
|
|
166 */
|
|
167 GaimSavedStatus *gaim_savedstatus_get_idleaway();
|
|
168
|
|
169 /**
|
10418
|
170 * Finds a saved status with the specified title.
|
|
171 *
|
|
172 * @param title The name of the saved status.
|
|
173 *
|
|
174 * @return The saved status if found, or NULL.
|
|
175 */
|
10419
|
176 GaimSavedStatus *gaim_savedstatus_find(const char *title);
|
10418
|
177
|
|
178 /**
|
11651
|
179 * Determines if a given saved status is "transient."
|
|
180 * A transient saved status is one that was not
|
|
181 * explicitly added by the user. Transient statuses
|
|
182 * are automatically removed if they are not used
|
|
183 * for a period of time.
|
|
184 *
|
|
185 * A transient saved statuses is automatically
|
|
186 * created by the status box when the user sets himself
|
|
187 * to one of the generic primitive statuses. The reason
|
|
188 * we need to save this status information is so we can
|
|
189 * restore it when Gaim restarts.
|
|
190 *
|
|
191 * @param saved_status The saved status.
|
|
192 *
|
|
193 * @return TRUE if the saved status is transient.
|
|
194 */
|
|
195 gboolean gaim_savedstatus_is_transient(const GaimSavedStatus *saved_status);
|
|
196
|
|
197 /**
|
10418
|
198 * Return the name of a given saved status.
|
|
199 *
|
|
200 * @param saved_status The saved status.
|
|
201 *
|
|
202 * @return The title.
|
|
203 */
|
10419
|
204 const char *gaim_savedstatus_get_title(const GaimSavedStatus *saved_status);
|
10418
|
205
|
|
206 /**
|
12056
|
207 * Return the type of a given saved status.
|
10418
|
208 *
|
|
209 * @param saved_status The saved status.
|
|
210 *
|
|
211 * @return The name.
|
|
212 */
|
10419
|
213 GaimStatusPrimitive gaim_savedstatus_get_type(const GaimSavedStatus *saved_status);
|
10418
|
214
|
|
215 /**
|
12056
|
216 * Return the default message of a given saved status.
|
10418
|
217 *
|
|
218 * @param saved_status The saved status.
|
|
219 *
|
|
220 * @return The name.
|
|
221 */
|
10419
|
222 const char *gaim_savedstatus_get_message(const GaimSavedStatus *saved_status);
|
10418
|
223
|
|
224 /**
|
12125
|
225 * Return the time in seconds-since-the-epoch when this
|
|
226 * saved status was created. Note: For any status created
|
|
227 * by Gaim 1.5.0 or older this value will be invalid and
|
|
228 * very small (close to 0). This is because Gaim 1.5.0
|
|
229 * and older did not record the timestamp when the status
|
|
230 * was created.
|
|
231 *
|
|
232 * However, this value is guaranteed to be a unique
|
|
233 * identifier for the given saved status.
|
|
234 *
|
|
235 * @param saved_status The saved status.
|
|
236 *
|
|
237 * @return The timestamp when this saved status was created.
|
|
238 */
|
|
239 time_t gaim_savedstatus_get_creation_time(const GaimSavedStatus *saved_status);
|
|
240
|
|
241 /**
|
11651
|
242 * Determine if a given saved status has "substatuses,"
|
|
243 * or if it is a simple status (the same for all
|
|
244 * accounts).
|
|
245 *
|
|
246 * @param saved_status The saved status.
|
|
247 *
|
|
248 * @return TRUE if the saved_status has substatuses.
|
|
249 * FALSE otherwise.
|
|
250 */
|
|
251 gboolean gaim_savedstatus_has_substatuses(const GaimSavedStatus *saved_status);
|
|
252
|
|
253 /**
|
12056
|
254 * Get the substatus for an account in a saved status.
|
|
255 *
|
|
256 * @param status The saved status.
|
|
257 * @param account The account.
|
|
258 *
|
|
259 * @return The GaimSavedStatusSub for the account, or NULL if
|
|
260 * the given account does not have a substatus that
|
|
261 * differs from the default status of this GaimSavedStatus.
|
|
262 */
|
12080
|
263 GaimSavedStatusSub *gaim_savedstatus_get_substatus(
|
12056
|
264 const GaimSavedStatus *saved_status,
|
|
265 const GaimAccount *account);
|
|
266
|
|
267 /**
|
|
268 * Get the status type of a given substatus.
|
|
269 *
|
|
270 * @param substatus The substatus.
|
|
271 *
|
|
272 * @return The status type.
|
|
273 */
|
|
274 const GaimStatusType *gaim_savedstatus_substatus_get_type(const GaimSavedStatusSub *substatus);
|
|
275
|
|
276 /**
|
|
277 * Get the message of a given substatus.
|
|
278 *
|
|
279 * @param substatus The substatus.
|
|
280 *
|
|
281 * @return The message of the substatus, or NULL if this substatus does
|
|
282 * not have a message.
|
|
283 */
|
|
284 const char *gaim_savedstatus_substatus_get_message(const GaimSavedStatusSub *substatus);
|
|
285
|
|
286 /**
|
11724
|
287 * Sets the statuses for all your accounts to those specified
|
|
288 * by the given saved_status. This function calls
|
|
289 * gaim_savedstatus_activate_for_account() for all your accounts.
|
|
290 *
|
|
291 * @param saved_status The status you want to set your accounts to.
|
|
292 */
|
12125
|
293 void gaim_savedstatus_activate(GaimSavedStatus *saved_status);
|
11724
|
294
|
|
295 /**
|
|
296 * Sets the statuses for a given account to those specified
|
|
297 * by the given saved_status.
|
|
298 *
|
|
299 * @param saved_status The status you want to set your accounts to.
|
|
300 * @param account The account whose statuses you want to change.
|
|
301 */
|
|
302 void gaim_savedstatus_activate_for_account(const GaimSavedStatus *saved_status, GaimAccount *account);
|
|
303
|
|
304 /**
|
10418
|
305 * Get the handle for the status subsystem.
|
|
306 *
|
|
307 * @return the handle to the status subsystem
|
|
308 */
|
|
309 void *gaim_savedstatuses_get_handle();
|
|
310
|
|
311 /**
|
|
312 * Initializes the status subsystem.
|
|
313 */
|
|
314 void gaim_savedstatuses_init(void);
|
|
315
|
|
316 /**
|
|
317 * Uninitializes the status subsystem.
|
|
318 */
|
|
319 void gaim_savedstatuses_uninit(void);
|
|
320
|
|
321 /*@}*/
|
|
322
|
|
323 #endif /* _GAIM_SAVEDSTATUSES_H_ */
|