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
+----GtkComboTextGtkWidget* gtk_combo_text_new (gboolean const is_scrolled);
| is_scrolled : | |
| Returns : |
|
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.
| combo_text : | ComboText widget |
| val : | make case sensitive if TRUE |
| Returns : | The function returns -1 if request could not be honored. On success, it returns 0. |
void gtk_combo_text_select_item (GtkComboText *combo_text, int elem);
| combo_text : | |
| elem : |
|
void gtk_combo_text_set_text (GtkComboText *combo_text, const gchar *text);
| combo_text : | |
| text : |
|
void gtk_combo_text_add_item (GtkComboText *combo_text, const gchar *item, const gchar *value);
| combo_text : | |
| item : | |
| value : |
|
| <<< GtkComboStack | PixmapCombo >>> |