ComboBoxEntry.this

Warning gtk_combo_box_entry_new_with_model has been deprecated since version 2.24 and should not be used in newly-written code. Use gtk_combo_box_new_with_model_and_entry() instead Creates a new GtkComboBoxEntry which has a GtkEntry as child and a list of strings as popup. You can get the GtkEntry from a GtkComboBoxEntry using GTK_ENTRY (GTK_BIN (combo_box_entry)->child). To add and remove strings from the list, just modify model using its data manipulation API. Since 2.4

  1. this(GtkComboBoxEntry* gtkComboBoxEntry)
  2. this(bool text)
  3. this(TreeModelIF model, int textColumn)
    class ComboBoxEntry

Parameters

model TreeModelIF

A GtkTreeModel.

textColumn int

A column in model to get the strings from.

Throws

ConstructionException GTK+ fails to create the object.

Meta