![]() | ![]() | ![]() | Anjuta Developers Reference Manual | ![]() |
---|
AnjutaStatus —
struct AnjutaStatus; struct AnjutaStatusClass; struct AnjutaStatusPriv; GtkWidget* anjuta_status_new (void); void anjuta_status_set (AnjutaStatus *status, gchar *mesg, ...); void anjuta_status_push (AnjutaStatus *status, gchar *mesg, ...); #define anjuta_status_pop (obj) void anjuta_status_busy_push (AnjutaStatus *status); void anjuta_status_busy_pop (AnjutaStatus *status); void anjuta_status_set_default (AnjutaStatus *status, const gchar *label, const gchar *value_format, ...); void anjuta_status_add_widget (AnjutaStatus *status, GtkWidget *widget);
GObject +----GtkObject +----GtkWidget +----GtkContainer +----GtkBox +----GtkHBox +----GnomeAppBar +----AnjutaStatus
"busy" void user_function (AnjutaStatus *anjutastatus, gboolean arg1, gpointer user_data);
struct AnjutaStatusClass { GnomeAppBarClass parent_class; /* signals */ void (*busy) (AnjutaStatus *status, gboolean state); };
void anjuta_status_set (AnjutaStatus *status, gchar *mesg, ...);
status : | |
mesg : | |
... : |
void anjuta_status_push (AnjutaStatus *status, gchar *mesg, ...);
status : | |
mesg : | |
... : |
void anjuta_status_set_default (AnjutaStatus *status, const gchar *label, const gchar *value_format, ...);
status : | |
label : | |
value_format : | |
... : |
void anjuta_status_add_widget (AnjutaStatus *status, GtkWidget *widget);
status : | |
widget : |
void user_function (AnjutaStatus *anjutastatus, gboolean arg1, gpointer user_data);
anjutastatus : | the object which received the signal. |
arg1 : | |
user_data : | user data set when the signal handler was connected. |
<< AnjutaUI | AnjutaPlugin >> |