GTK+ Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
#include <gtk/gtk.h> struct GtkStatusbar; struct GtkStatusbarMsg; GtkWidget* gtk_statusbar_new (void); guint gtk_statusbar_get_context_id (GtkStatusbar *statusbar, const gchar *context_description); guint gtk_statusbar_push (GtkStatusbar *statusbar, guint context_id, const gchar *text); void gtk_statusbar_pop (GtkStatusbar *statusbar, guint context_id); void gtk_statusbar_remove (GtkStatusbar *statusbar, guint context_id, guint message_id); |
GtkObject +----GtkWidget +----GtkContainer +----GtkBox +----GtkHBox +----GtkStatusbar |
"text-pushed" void user_function (GtkStatusbar *statusbar, guint context_id, gchar *text, gpointer user_data); "text-popped" void user_function (GtkStatusbar *statusbar, guint context_id, gchar *text, gpointer user_data); |
guint gtk_statusbar_get_context_id (GtkStatusbar *statusbar, const gchar *context_description); |
statusbar : | |
context_description : | |
Returns : |
guint gtk_statusbar_push (GtkStatusbar *statusbar, guint context_id, const gchar *text); |
statusbar : | |
context_id : | |
text : | |
Returns : |
void gtk_statusbar_pop (GtkStatusbar *statusbar, guint context_id); |
statusbar : | |
context_id : |
void gtk_statusbar_remove (GtkStatusbar *statusbar, guint context_id, guint message_id); |
statusbar : | |
context_id : | |
message_id : |
void user_function (GtkStatusbar *statusbar, guint context_id, gchar *text, gpointer user_data); |
statusbar : | the object which received the signal. |
context_id : | |
text : | |
user_data : | user data set when the signal handler was connected. |
void user_function (GtkStatusbar *statusbar, guint context_id, gchar *text, gpointer user_data); |
statusbar : | the object which received the signal. |
context_id : | |
text : | |
user_data : | user data set when the signal handler was connected. |