| GTK+ FAQ | ||
|---|---|---|
| <<< Previous | Development with GTK+: widget specific questions | Next >>> | 
A GtkCombo has an associated entry which can be accessed using the following expression:
| GTK_COMBO(combo_widget)->entry | 
If you don't want the user to be able to modify the content of this entry, you can use the gtk_entry_set_editable() function:
|       void gtk_entry_set_editable(GtkEntry *entry, 
                                  gboolean editable); | 
Set the editable parameter to FALSE to disable typing into the entry.
| <<< Previous | Home | Next >>> | 
| How do I stop the column headings of a GtkCList disappearing when the list is scrolled? | Up | How do I catch a combo box change? |