struct GtkComboText; GtkWidget* gtk_combo_text_new (gboolean const is_scrolled); gint gtk_combo_text_set_case_sensitive (GtkComboText *combo_text, gboolean val); void gtk_combo_text_select_item (GtkComboText *combo_text, int elem); void gtk_combo_text_set_text (GtkComboText *combo_text, const gchar *text); void gtk_combo_text_add_item (GtkComboText *combo_text, const gchar *item, const gchar *value); |
GtkObject +----GtkWidget +----GtkContainer +----GtkBox +----GtkHBox +----MyGtkComboBox +----GtkComboText |
gint gtk_combo_text_set_case_sensitive (GtkComboText *combo_text, gboolean val); |
Specifies whether the text entered into the GtkEntry field and the text in the list items is case sensitive. Because the values are stored in a hash, it is not legal to change case sensitivity when the list contains elements.
void gtk_combo_text_set_text (GtkComboText *combo_text, const gchar *text); |
void gtk_combo_text_add_item (GtkComboText *combo_text, const gchar *item, const gchar *value); |