comparison src/savedstatuses.h @ 11724:a8ec0a291d14

[gaim-migrate @ 14015] If you're online, and sitting around, and la-di-da you enable one of your accounts, it will now use the status currently set in your gtkstatusbox instead of whatever the account was set to when it was disabled committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 22 Oct 2005 22:29:40 +0000
parents 723487d07aa0
children 6dc48f991b8d
comparison
equal deleted inserted replaced
11723:9537977703bb 11724:a8ec0a291d14
166 * FALSE otherwise. 166 * FALSE otherwise.
167 */ 167 */
168 gboolean gaim_savedstatus_has_substatuses(const GaimSavedStatus *saved_status); 168 gboolean gaim_savedstatus_has_substatuses(const GaimSavedStatus *saved_status);
169 169
170 /** 170 /**
171 * Sets the statuses for all your accounts to those specified
172 * by the given saved_status. This function calls
173 * gaim_savedstatus_activate_for_account() for all your accounts.
174 *
175 * @param saved_status The status you want to set your accounts to.
176 */
177 void gaim_savedstatus_activate(const GaimSavedStatus *saved_status);
178
179 /**
180 * Sets the statuses for a given account to those specified
181 * by the given saved_status.
182 *
183 * @param saved_status The status you want to set your accounts to.
184 * @param account The account whose statuses you want to change.
185 */
186 void gaim_savedstatus_activate_for_account(const GaimSavedStatus *saved_status, GaimAccount *account);
187
188 /**
171 * Get the handle for the status subsystem. 189 * Get the handle for the status subsystem.
172 * 190 *
173 * @return the handle to the status subsystem 191 * @return the handle to the status subsystem
174 */ 192 */
175 void *gaim_savedstatuses_get_handle(); 193 void *gaim_savedstatuses_get_handle();