comparison src/gtksavedstatuses.h @ 10421:ee56a3e54fbd

[gaim-migrate @ 11672] Swap the order of status_window and status_editor code in gtksavedstatuses. This way we avoid 2 forward function declarations for static functions. I also added gaim_gtk_status_editor_show() to gtksavedstatus.h committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 26 Dec 2004 05:34:49 +0000
parents bed2c96bc1fb
children 6feef0a9098a
comparison
equal deleted inserted replaced
10420:854c972ea863 10421:ee56a3e54fbd
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */ 24 */
25 #ifndef _GAIM_GTKSAVEDSTATUSES_H_ 25 #ifndef _GAIM_GTKSAVEDSTATUSES_H_
26 #define _GAIM_GTKSAVEDSTATUSES_H_ 26 #define _GAIM_GTKSAVEDSTATUSES_H_
27 27
28 #include "savedstatuses.h"
28 #include "status.h" 29 #include "status.h"
29 30
30 /** 31 /**
31 * Shows the status window. 32 * Shows the status window.
32 */ 33 */
34 35
35 /** 36 /**
36 * Hides the status window. 37 * Hides the status window.
37 */ 38 */
38 void gaim_gtk_status_window_hide(void); 39 void gaim_gtk_status_window_hide(void);
40
41 /**
42 * Shows a status editor (used for editing a single saved status).
43 */
44 void gaim_gtk_status_editor_show(GaimSavedStatus *status);
39 45
40 /** 46 /**
41 * Returns the gtkstatus handle. 47 * Returns the gtkstatus handle.
42 * 48 *
43 * @return The handle to the GTK+ status system. 49 * @return The handle to the GTK+ status system.