comparison src/savedstatuses.h @ 10420:854c972ea863

[gaim-migrate @ 11671] The ability to add, modify and _save_ new statuses. This hopefully brings our functionality slightly past where it is in oldstatus. This could use a bit of testing, but I think it's pretty good. We still can't edit substatuses. Primitive types like "unset" should be hidden from the status selector dropdown. "Online" and "offline" should maybe be hidden... but someone in #gaim mentioned that it might be a good way to choose which accounts are offline for a given status. Eh. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 26 Dec 2004 05:23:51 +0000
parents c9b1f3fac753
children 6feef0a9098a
comparison
equal deleted inserted replaced
10419:c9b1f3fac753 10420:854c972ea863
45 * list of saved statuses and writes the revised list to status.xml. 45 * list of saved statuses and writes the revised list to status.xml.
46 * 46 *
47 * @param title The title of the saved status. This must be unique. 47 * @param title The title of the saved status. This must be unique.
48 * @param type The type of saved status. 48 * @param type The type of saved status.
49 * 49 *
50 * @return The newly created saved status. 50 * @return The newly created saved status, or NULL if the title you
51 * used was already taken.
51 */ 52 */
52 GaimSavedStatus *gaim_savedstatus_new(const char *title, 53 GaimSavedStatus *gaim_savedstatus_new(const char *title,
53 GaimStatusPrimitive type); 54 GaimStatusPrimitive type);
55
56 /**
57 * Set the message for the given saved status.
58 *
59 * @param status The saved status.
60 * @param message The message, or NULL if you want to unset the
61 * message for this status.
62 */
63 void gaim_savedstatus_set_message(GaimSavedStatus *status,
64 const char *message);
54 65
55 /** 66 /**
56 * Delete a saved status. This removes the saved status from the list 67 * Delete a saved status. This removes the saved status from the list
57 * of saved statuses, and writes the revised list to status.xml. 68 * of saved statuses, and writes the revised list to status.xml.
58 * 69 *