GtkCellRendererCombo

Renders a combobox in a cell

gtk.cell_renderer_combo.CellRendererCombo renders text in a cell like gtk.cell_renderer_text.CellRendererText from which it is derived. But while gtk.cell_renderer_text.CellRendererText offers a simple entry to edit the text, gtk.cell_renderer_combo.CellRendererCombo offers a gtk.combo_box.ComboBox widget to edit the text. The values to display in the combo box are taken from the tree model specified in the gtk.cell_renderer_combo.CellRendererCombo:model property.

The combo cell renderer takes care of adding a text cell renderer to the combo box and sets it to display the column specified by its gtk.cell_renderer_combo.CellRendererCombo:text-column property. Further properties of the combo box can be set in a handler for the GtkCellRenderer::editing-started signal.

More...
struct GtkCellRendererCombo

Detailed Description

Deprecated: List views use widgets to display their contents. You should use gtk.drop_down.DropDown instead