![]() |
![]() |
![]() |
GTK+ Reference Manual | ![]() |
---|---|---|---|---|
#include <gtk/gtk.h> GtkCellRendererCombo; GtkCellRenderer* gtk_cell_renderer_combo_new (void);
GtkCellRendererCombo renders text in a cell like GtkCellRendererText from which it is derived. But while GtkCellRendererText offers a simple entry to edit the text, GtkCellRendererCombo offers a GtkComboBox or GtkComboBoxEntry widget to edit the text. The values to display in the combo box are taken from the tree model specified in the 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 text-column property. Further properties of the comnbo box can be set in a handler for the editing-started signal.
The GtkCellRendererCombo cell renderer was added in GTK+ 2.6.
typedef struct { GtkCellRendererText parent; GtkTreeModel *model; gint text_column; gboolean has_entry; } GtkCellRendererCombo;
GtkCellRenderer* gtk_cell_renderer_combo_new (void);
Creates a new GtkCellRendererCombo.
Adjust how text is drawn using object properties.
Object properties can be set globally (with g_object_set()
).
Also, with GtkTreeViewColumn, you can bind a property to a value
in a GtkTreeModel. 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 the GtkTreeView.
Returns : |
the new cell renderer |
Since 2.6