diff 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
line wrap: on
line diff
--- a/src/savedstatuses.h	Sun Dec 26 02:03:14 2004 +0000
+++ b/src/savedstatuses.h	Sun Dec 26 05:23:51 2004 +0000
@@ -47,12 +47,23 @@
  * @param title The title of the saved status.  This must be unique.
  * @param type  The type of saved status.
  *
- * @return The newly created saved status.
+ * @return The newly created saved status, or NULL if the title you
+ *         used was already taken.
  */
 GaimSavedStatus *gaim_savedstatus_new(const char *title,
 									  GaimStatusPrimitive type);
 
 /**
+ * Set the message for the given saved status.
+ *
+ * @param status  The saved status.
+ * @param message The message, or NULL if you want to unset the
+ *                message for this status.
+ */
+void gaim_savedstatus_set_message(GaimSavedStatus *status,
+								  const char *message);
+
+/**
  * Delete a saved status.  This removes the saved status from the list
  * of saved statuses, and writes the revised list to status.xml.
  *