Gtk.CellRendererCombo¶
- Subclasses:
None
Methods¶
- Inherited:
Gtk.CellRendererText (2), Gtk.CellRenderer (27), GObject.Object (37)
- Structs:
class |
|
Virtual Methods¶
Properties¶
- Inherited:
Name |
Type |
Flags |
Short Description |
---|---|---|---|
r/w/en |
|||
r/w |
|||
r/w/en |
Signals¶
Name |
Short Description |
---|---|
This signal is emitted each time after the user selected an item in the combo box, either by using the mouse or the arrow keys. |
Fields¶
Class Details¶
- class Gtk.CellRendererCombo(**kwargs)¶
- Bases:
- Abstract:
No
Renders a combobox in a cell
GtkCellRendererCombo
renders text in a cell likeGtkCellRendererText
from which it is derived. But whileGtkCellRendererText
offers a simple entry to edit the text,GtkCellRendererCombo
offers aGtkComboBox
widget to edit the text. The values to display in the combo box are taken from the tree model specified in theGtkCellRendererCombo
: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
GtkCellRendererCombo
:text-column
property. Further properties of the combo box can be set in a handler for theGtkCellRenderer::editing-started
signal.Deprecated since version 4.10: List views use widgets to display their contents. You should use [class`Gtk`.DropDown] instead
- classmethod new()[source]¶
- Returns:
the new cell renderer
- Return type:
Creates a new
GtkCellRendererCombo
. Adjust how text is drawn using object properties. Object properties can be set globally (with g_object_set()). Also, withGtkTreeViewColumn
, you can bind a property to a value in aGtkTreeModel
. For example, you can bind the “text” property on the cell renderer to a string value in the model, thus rendering a different string in each row of theGtkTreeView
.Deprecated since version 4.10.
Signal Details¶
- Gtk.CellRendererCombo.signals.changed(cell_renderer_combo, path_string, new_iter)¶
- Signal Name:
changed
- Flags:
- Parameters:
cell_renderer_combo (
Gtk.CellRendererCombo
) – The object which received the signalpath_string (
str
) – a string of the path identifying the edited cell (relative to the tree view model)new_iter (
Gtk.TreeIter
) – the new iter selected in the combo box (relative to the combo box model)
This signal is emitted each time after the user selected an item in the combo box, either by using the mouse or the arrow keys. Contrary to
Gtk.ComboBox
,Gtk.CellRendererCombo
::changed
is not emitted for changes made to a selected item in the entry. The argument new_iter corresponds to the newly selected item in the combo box and it is relative to theGtk.TreeModel
set via the model property onGtk.CellRendererCombo
.Note that as soon as you change the model displayed in the tree view, the tree view will immediately cease the editing operating. This means that you most probably want to refrain from changing the model until the combo cell renderer emits the edited or editing_canceled signal.
Property Details¶
- Gtk.CellRendererCombo.props.has_entry¶
- Name:
has-entry
- Type:
- Default Value:
- Flags:
If
True
, the cell renderer will include an entry and allow to enter values other than the ones in the popup list.
- Gtk.CellRendererCombo.props.model¶
- Name:
model
- Type:
- Default Value:
- Flags:
Holds a tree model containing the possible values for the combo box. Use the text_column property to specify the column holding the values.
- Gtk.CellRendererCombo.props.text_column¶
- Name:
text-column
- Type:
- Default Value:
-1
- Flags:
Specifies the model column which holds the possible values for the combo box.
Note that this refers to the model specified in the model property, not the model backing the tree view to which this cell renderer is attached.
GtkCellRendererCombo
automatically adds a text cell renderer for this column to its combo box.