struct GtkComboStack; GtkWidget* gtk_combo_stack_new (const gchar *stock_name, gboolean const is_scrolled); void gtk_combo_stack_push_item (GtkComboStack *combo_stack, const gchar *item); void gtk_combo_stack_remove_top (GtkComboStack *combo_stack, gint num); void gtk_combo_stack_pop (GtkComboStack *combo_stack, gint num); void gtk_combo_stack_clear (GtkComboStack *combo_stack); void gtk_combo_stack_truncate (GtkComboStack *combo, int n);
GtkObject
+----GtkWidget
+----GtkContainer
+----GtkBox
+----GtkHBox
+----MyGtkComboBox
+----GtkComboStack"pop" void user_function (GtkComboStack *combostack, gint arg1, gpointer user_data);
GtkWidget* gtk_combo_stack_new (const gchar *stock_name,
gboolean const is_scrolled);| stock_name : | |
| is_scrolled : | |
| Returns : |
|
void gtk_combo_stack_push_item (GtkComboStack *combo_stack, const gchar *item);
| combo_stack : | |
| item : |
|
void gtk_combo_stack_remove_top (GtkComboStack *combo_stack, gint num);
| combo_stack : | |
| num : |
|
void gtk_combo_stack_pop (GtkComboStack *combo_stack, gint num);
| combo_stack : | |
| num : |
|
void user_function (GtkComboStack *combostack, gint arg1, gpointer user_data);
| combostack : | the object which received the signal. |
| arg1 : | |
| user_data : | user data set when the signal handler was connected. |
| <<< Combo Boxes and associated utilities | GtkComboText >>> |