Mercurial > pidgin
annotate src/savedstatuses.h @ 12836:339d61ebca8a
[gaim-migrate @ 15184]
Revert the extra portion of my last commit that snuck in because I committed from the wrong tree.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Wed, 11 Jan 2006 23:18:52 +0000 |
| parents | d03afaccd41c |
| children | e5f780a6137b |
| rev | line source |
|---|---|
| 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 * | |
| 12245 | 129 * @param saved_status The saved status. |
| 130 * @param account The account. | |
| 12056 | 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 /** | |
| 12688 | 155 * Returns the n most popular saved statuses. "Popularity" is |
| 156 * determined by when the last time a saved_status was used and | |
| 157 * how many times it has been used. | |
| 158 * | |
| 159 * @param how_many The maximum number of saved statuses | |
| 160 * to return, or '0' to get all saved | |
| 161 * statuses sorted by popularity. | |
| 162 * @return A linked list containing at most how_many | |
| 163 * GaimSavedStatuses. This list should be | |
| 164 * g_list_free'd by the caller (but the | |
| 165 * GaimSavedStatuses must not be free'd). | |
| 166 */ | |
| 167 GList *gaim_savedstatuses_get_popular(unsigned int how_many); | |
| 168 | |
| 169 /** | |
| 12125 | 170 * Returns the currently selected saved status. |
| 171 * | |
| 172 * @return A pointer to the in-use GaimSavedStatus. | |
| 173 */ | |
|
12323
fc464a0abccc
[gaim-migrate @ 14627]
Richard Laager <rlaager@wiktel.com>
parents:
12245
diff
changeset
|
174 GaimSavedStatus *gaim_savedstatus_get_current(void); |
| 12125 | 175 |
| 176 /** | |
| 177 * Returns the saved status that gets used when your | |
| 178 * accounts become idle-away. | |
| 179 * | |
| 180 * @return A pointer to the idle-away GaimSavedStatus. | |
| 181 */ | |
|
12323
fc464a0abccc
[gaim-migrate @ 14627]
Richard Laager <rlaager@wiktel.com>
parents:
12245
diff
changeset
|
182 GaimSavedStatus *gaim_savedstatus_get_idleaway(void); |
| 12125 | 183 |
| 184 /** | |
| 10418 | 185 * Finds a saved status with the specified title. |
| 186 * | |
| 187 * @param title The name of the saved status. | |
| 188 * | |
| 189 * @return The saved status if found, or NULL. | |
| 190 */ | |
| 10419 | 191 GaimSavedStatus *gaim_savedstatus_find(const char *title); |
| 10418 | 192 |
| 193 /** | |
| 12690 | 194 * Finds a saved status with the specified creation time. |
| 195 * | |
| 196 * @param creation_time The timestamp when the saved | |
| 197 * status was created. | |
| 198 * | |
| 199 * @return The saved status if found, or NULL. | |
| 200 */ | |
| 201 GaimSavedStatus *gaim_savedstatus_find_by_creation_time(time_t creation_time); | |
| 202 | |
| 203 /** | |
| 11651 | 204 * Determines if a given saved status is "transient." |
| 205 * A transient saved status is one that was not | |
| 206 * explicitly added by the user. Transient statuses | |
| 207 * are automatically removed if they are not used | |
| 208 * for a period of time. | |
| 209 * | |
| 210 * A transient saved statuses is automatically | |
| 211 * created by the status box when the user sets himself | |
| 212 * to one of the generic primitive statuses. The reason | |
| 213 * we need to save this status information is so we can | |
| 214 * restore it when Gaim restarts. | |
| 215 * | |
| 216 * @param saved_status The saved status. | |
| 217 * | |
| 218 * @return TRUE if the saved status is transient. | |
| 219 */ | |
| 220 gboolean gaim_savedstatus_is_transient(const GaimSavedStatus *saved_status); | |
| 221 | |
| 222 /** | |
| 10418 | 223 * Return the name of a given saved status. |
| 224 * | |
| 225 * @param saved_status The saved status. | |
| 226 * | |
| 12690 | 227 * @return The title. This value may be a static buffer which may |
| 228 * be overwritten on subsequent calls to this function. If | |
| 229 * you need a reference to the title for prolonged use then | |
| 230 * you should make a copy of it. | |
| 10418 | 231 */ |
| 10419 | 232 const char *gaim_savedstatus_get_title(const GaimSavedStatus *saved_status); |
| 10418 | 233 |
| 234 /** | |
| 12056 | 235 * Return the type of a given saved status. |
| 10418 | 236 * |
| 237 * @param saved_status The saved status. | |
| 238 * | |
| 239 * @return The name. | |
| 240 */ | |
| 10419 | 241 GaimStatusPrimitive gaim_savedstatus_get_type(const GaimSavedStatus *saved_status); |
| 10418 | 242 |
| 243 /** | |
| 12056 | 244 * Return the default message of a given saved status. |
| 10418 | 245 * |
| 246 * @param saved_status The saved status. | |
| 247 * | |
| 248 * @return The name. | |
| 249 */ | |
| 10419 | 250 const char *gaim_savedstatus_get_message(const GaimSavedStatus *saved_status); |
| 10418 | 251 |
| 252 /** | |
| 12125 | 253 * Return the time in seconds-since-the-epoch when this |
| 254 * saved status was created. Note: For any status created | |
| 255 * by Gaim 1.5.0 or older this value will be invalid and | |
| 256 * very small (close to 0). This is because Gaim 1.5.0 | |
| 257 * and older did not record the timestamp when the status | |
| 258 * was created. | |
| 259 * | |
| 260 * However, this value is guaranteed to be a unique | |
| 261 * identifier for the given saved status. | |
| 262 * | |
| 263 * @param saved_status The saved status. | |
| 264 * | |
| 265 * @return The timestamp when this saved status was created. | |
| 266 */ | |
| 267 time_t gaim_savedstatus_get_creation_time(const GaimSavedStatus *saved_status); | |
| 268 | |
| 269 /** | |
| 11651 | 270 * Determine if a given saved status has "substatuses," |
| 271 * or if it is a simple status (the same for all | |
| 272 * accounts). | |
| 273 * | |
| 274 * @param saved_status The saved status. | |
| 275 * | |
| 276 * @return TRUE if the saved_status has substatuses. | |
| 277 * FALSE otherwise. | |
| 278 */ | |
| 279 gboolean gaim_savedstatus_has_substatuses(const GaimSavedStatus *saved_status); | |
| 280 | |
| 281 /** | |
| 12056 | 282 * Get the substatus for an account in a saved status. |
| 283 * | |
| 12245 | 284 * @param saved_status The saved status. |
| 285 * @param account The account. | |
| 12056 | 286 * |
| 287 * @return The GaimSavedStatusSub for the account, or NULL if | |
| 288 * the given account does not have a substatus that | |
| 289 * differs from the default status of this GaimSavedStatus. | |
| 290 */ | |
| 12080 | 291 GaimSavedStatusSub *gaim_savedstatus_get_substatus( |
| 12056 | 292 const GaimSavedStatus *saved_status, |
| 293 const GaimAccount *account); | |
| 294 | |
| 295 /** | |
| 296 * Get the status type of a given substatus. | |
| 297 * | |
| 298 * @param substatus The substatus. | |
| 299 * | |
| 300 * @return The status type. | |
| 301 */ | |
| 302 const GaimStatusType *gaim_savedstatus_substatus_get_type(const GaimSavedStatusSub *substatus); | |
| 303 | |
| 304 /** | |
| 305 * Get the message of a given substatus. | |
| 306 * | |
| 307 * @param substatus The substatus. | |
| 308 * | |
| 309 * @return The message of the substatus, or NULL if this substatus does | |
| 310 * not have a message. | |
| 311 */ | |
| 312 const char *gaim_savedstatus_substatus_get_message(const GaimSavedStatusSub *substatus); | |
| 313 | |
| 314 /** | |
| 11724 | 315 * Sets the statuses for all your accounts to those specified |
| 316 * by the given saved_status. This function calls | |
| 317 * gaim_savedstatus_activate_for_account() for all your accounts. | |
| 318 * | |
| 319 * @param saved_status The status you want to set your accounts to. | |
| 320 */ | |
| 12125 | 321 void gaim_savedstatus_activate(GaimSavedStatus *saved_status); |
| 11724 | 322 |
| 323 /** | |
| 324 * Sets the statuses for a given account to those specified | |
| 325 * by the given saved_status. | |
| 326 * | |
| 327 * @param saved_status The status you want to set your accounts to. | |
| 328 * @param account The account whose statuses you want to change. | |
| 329 */ | |
| 330 void gaim_savedstatus_activate_for_account(const GaimSavedStatus *saved_status, GaimAccount *account); | |
| 331 | |
| 332 /** | |
| 10418 | 333 * Get the handle for the status subsystem. |
| 334 * | |
| 335 * @return the handle to the status subsystem | |
| 336 */ | |
|
12323
fc464a0abccc
[gaim-migrate @ 14627]
Richard Laager <rlaager@wiktel.com>
parents:
12245
diff
changeset
|
337 void *gaim_savedstatuses_get_handle(void); |
| 10418 | 338 |
| 339 /** | |
| 340 * Initializes the status subsystem. | |
| 341 */ | |
| 342 void gaim_savedstatuses_init(void); | |
| 343 | |
| 344 /** | |
| 345 * Uninitializes the status subsystem. | |
| 346 */ | |
| 347 void gaim_savedstatuses_uninit(void); | |
| 348 | |
| 349 /*@}*/ | |
| 350 | |
| 351 #endif /* _GAIM_SAVEDSTATUSES_H_ */ |
