Mercurial > pidgin
annotate src/savedstatuses.h @ 13794:ecfd8fb02c19
[gaim-migrate @ 16206]
We don't really need to pop up an error if the sound file doesn't exist
committer: Tailor Script <tailor@pidgin.im>
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Tue, 30 May 2006 17:02:27 +0000 |
| parents | c4be649e2aca |
| children | a8a033a89ee0 |
| 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 | |
| 13673 | 157 * how many times it has been used. If the current status would |
| 158 * normally show up in this list, then it is omited and instead | |
| 13675 | 159 * the "how_many+1" saved status will appear in the list. Also |
| 160 * transient statuses without messages are not included in the | |
| 161 * list. | |
| 12688 | 162 * |
| 163 * @param how_many The maximum number of saved statuses | |
| 164 * to return, or '0' to get all saved | |
| 165 * statuses sorted by popularity. | |
| 166 * @return A linked list containing at most how_many | |
| 167 * GaimSavedStatuses. This list should be | |
| 168 * g_list_free'd by the caller (but the | |
| 169 * GaimSavedStatuses must not be free'd). | |
| 170 */ | |
| 171 GList *gaim_savedstatuses_get_popular(unsigned int how_many); | |
| 172 | |
| 173 /** | |
| 12125 | 174 * Returns the currently selected saved status. |
| 175 * | |
| 176 * @return A pointer to the in-use GaimSavedStatus. | |
| 13681 | 177 * This function never returns NULL. |
| 12125 | 178 */ |
|
12323
fc464a0abccc
[gaim-migrate @ 14627]
Richard Laager <rlaager@wiktel.com>
parents:
12245
diff
changeset
|
179 GaimSavedStatus *gaim_savedstatus_get_current(void); |
| 12125 | 180 |
| 181 /** | |
| 182 * Returns the saved status that gets used when your | |
| 183 * accounts become idle-away. | |
| 184 * | |
| 185 * @return A pointer to the idle-away GaimSavedStatus. | |
| 13681 | 186 * This function never returns NULL. |
| 12125 | 187 */ |
|
12323
fc464a0abccc
[gaim-migrate @ 14627]
Richard Laager <rlaager@wiktel.com>
parents:
12245
diff
changeset
|
188 GaimSavedStatus *gaim_savedstatus_get_idleaway(void); |
| 12125 | 189 |
| 190 /** | |
| 13681 | 191 * Returns the status to be used when gaim is starting up |
| 192 * | |
| 193 * @return A pointer to the startup GaimSavedStatus. | |
| 194 * This function never returns NULL. | |
| 195 */ | |
| 196 GaimSavedStatus *gaim_savedstatus_get_startup(void); | |
| 197 | |
| 198 /** | |
| 10418 | 199 * Finds a saved status with the specified title. |
| 200 * | |
| 201 * @param title The name of the saved status. | |
| 202 * | |
| 203 * @return The saved status if found, or NULL. | |
| 204 */ | |
| 10419 | 205 GaimSavedStatus *gaim_savedstatus_find(const char *title); |
| 10418 | 206 |
| 207 /** | |
| 12690 | 208 * Finds a saved status with the specified creation time. |
| 209 * | |
| 210 * @param creation_time The timestamp when the saved | |
| 211 * status was created. | |
| 212 * | |
| 213 * @return The saved status if found, or NULL. | |
| 214 */ | |
| 215 GaimSavedStatus *gaim_savedstatus_find_by_creation_time(time_t creation_time); | |
| 216 | |
| 217 /** | |
| 13012 | 218 * Finds a saved status with the specified primitive and message. |
| 219 * | |
| 220 * @param type The GaimStatusPrimitive for the status you're trying | |
| 221 * to find. | |
| 222 * @param message The message for the status you're trying | |
| 223 * to find. | |
| 224 * | |
| 225 * @return The saved status if found, or NULL. | |
| 226 */ | |
| 13244 | 227 GaimSavedStatus *gaim_savedstatus_find_transient_by_type_and_message(GaimStatusPrimitive type, const char *message); |
| 13012 | 228 |
| 229 /** | |
| 11651 | 230 * Determines if a given saved status is "transient." |
| 231 * A transient saved status is one that was not | |
| 232 * explicitly added by the user. Transient statuses | |
| 233 * are automatically removed if they are not used | |
| 234 * for a period of time. | |
| 235 * | |
| 236 * A transient saved statuses is automatically | |
| 237 * created by the status box when the user sets himself | |
| 238 * to one of the generic primitive statuses. The reason | |
| 239 * we need to save this status information is so we can | |
| 240 * restore it when Gaim restarts. | |
| 241 * | |
| 242 * @param saved_status The saved status. | |
| 243 * | |
| 244 * @return TRUE if the saved status is transient. | |
| 245 */ | |
| 246 gboolean gaim_savedstatus_is_transient(const GaimSavedStatus *saved_status); | |
| 247 | |
| 248 /** | |
| 10418 | 249 * Return the name of a given saved status. |
| 250 * | |
| 251 * @param saved_status The saved status. | |
| 252 * | |
| 12690 | 253 * @return The title. This value may be a static buffer which may |
| 254 * be overwritten on subsequent calls to this function. If | |
| 255 * you need a reference to the title for prolonged use then | |
| 256 * you should make a copy of it. | |
| 10418 | 257 */ |
| 10419 | 258 const char *gaim_savedstatus_get_title(const GaimSavedStatus *saved_status); |
| 10418 | 259 |
| 260 /** | |
| 12056 | 261 * Return the type of a given saved status. |
| 10418 | 262 * |
| 263 * @param saved_status The saved status. | |
| 264 * | |
| 265 * @return The name. | |
| 266 */ | |
| 10419 | 267 GaimStatusPrimitive gaim_savedstatus_get_type(const GaimSavedStatus *saved_status); |
| 10418 | 268 |
| 269 /** | |
| 12056 | 270 * Return the default message of a given saved status. |
| 10418 | 271 * |
| 272 * @param saved_status The saved status. | |
| 273 * | |
| 13121 | 274 * @return The message. This will return NULL if the saved |
| 275 * status does not have a message. This will | |
| 276 * contain the normal markup that is created by | |
| 277 * Gaim's IMHTML (basically HTML markup). | |
| 10418 | 278 */ |
| 10419 | 279 const char *gaim_savedstatus_get_message(const GaimSavedStatus *saved_status); |
| 10418 | 280 |
| 281 /** | |
| 12125 | 282 * Return the time in seconds-since-the-epoch when this |
| 283 * saved status was created. Note: For any status created | |
| 284 * by Gaim 1.5.0 or older this value will be invalid and | |
| 285 * very small (close to 0). This is because Gaim 1.5.0 | |
| 286 * and older did not record the timestamp when the status | |
| 287 * was created. | |
| 288 * | |
| 289 * However, this value is guaranteed to be a unique | |
| 290 * identifier for the given saved status. | |
| 291 * | |
| 292 * @param saved_status The saved status. | |
| 293 * | |
| 294 * @return The timestamp when this saved status was created. | |
| 295 */ | |
| 296 time_t gaim_savedstatus_get_creation_time(const GaimSavedStatus *saved_status); | |
| 297 | |
| 298 /** | |
| 11651 | 299 * Determine if a given saved status has "substatuses," |
| 300 * or if it is a simple status (the same for all | |
| 301 * accounts). | |
| 302 * | |
| 303 * @param saved_status The saved status. | |
| 304 * | |
| 305 * @return TRUE if the saved_status has substatuses. | |
| 306 * FALSE otherwise. | |
| 307 */ | |
| 308 gboolean gaim_savedstatus_has_substatuses(const GaimSavedStatus *saved_status); | |
| 309 | |
| 310 /** | |
| 12056 | 311 * Get the substatus for an account in a saved status. |
| 312 * | |
| 12245 | 313 * @param saved_status The saved status. |
| 314 * @param account The account. | |
| 12056 | 315 * |
| 316 * @return The GaimSavedStatusSub for the account, or NULL if | |
| 317 * the given account does not have a substatus that | |
| 318 * differs from the default status of this GaimSavedStatus. | |
| 319 */ | |
| 12080 | 320 GaimSavedStatusSub *gaim_savedstatus_get_substatus( |
| 12056 | 321 const GaimSavedStatus *saved_status, |
| 322 const GaimAccount *account); | |
| 323 | |
| 324 /** | |
| 325 * Get the status type of a given substatus. | |
| 326 * | |
| 327 * @param substatus The substatus. | |
| 328 * | |
| 329 * @return The status type. | |
| 330 */ | |
| 331 const GaimStatusType *gaim_savedstatus_substatus_get_type(const GaimSavedStatusSub *substatus); | |
| 332 | |
| 333 /** | |
| 334 * Get the message of a given substatus. | |
| 335 * | |
| 336 * @param substatus The substatus. | |
| 337 * | |
| 338 * @return The message of the substatus, or NULL if this substatus does | |
| 339 * not have a message. | |
| 340 */ | |
| 341 const char *gaim_savedstatus_substatus_get_message(const GaimSavedStatusSub *substatus); | |
| 342 | |
| 343 /** | |
| 11724 | 344 * Sets the statuses for all your accounts to those specified |
| 345 * by the given saved_status. This function calls | |
| 346 * gaim_savedstatus_activate_for_account() for all your accounts. | |
| 347 * | |
| 348 * @param saved_status The status you want to set your accounts to. | |
| 349 */ | |
| 12125 | 350 void gaim_savedstatus_activate(GaimSavedStatus *saved_status); |
| 11724 | 351 |
| 352 /** | |
| 353 * Sets the statuses for a given account to those specified | |
| 354 * by the given saved_status. | |
| 355 * | |
| 356 * @param saved_status The status you want to set your accounts to. | |
| 357 * @param account The account whose statuses you want to change. | |
| 358 */ | |
| 359 void gaim_savedstatus_activate_for_account(const GaimSavedStatus *saved_status, GaimAccount *account); | |
| 360 | |
| 361 /** | |
| 10418 | 362 * Get the handle for the status subsystem. |
| 363 * | |
| 364 * @return the handle to the status subsystem | |
| 365 */ | |
|
12323
fc464a0abccc
[gaim-migrate @ 14627]
Richard Laager <rlaager@wiktel.com>
parents:
12245
diff
changeset
|
366 void *gaim_savedstatuses_get_handle(void); |
| 10418 | 367 |
| 368 /** | |
| 369 * Initializes the status subsystem. | |
| 370 */ | |
| 371 void gaim_savedstatuses_init(void); | |
| 372 | |
| 373 /** | |
| 374 * Uninitializes the status subsystem. | |
| 375 */ | |
| 376 void gaim_savedstatuses_uninit(void); | |
| 377 | |
| 378 /*@}*/ | |
| 379 | |
| 380 #endif /* _GAIM_SAVEDSTATUSES_H_ */ |
