diff options
Diffstat (limited to 'gtk/gtkcellrendererpixbuf.c')
-rw-r--r-- | gtk/gtkcellrendererpixbuf.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gtk/gtkcellrendererpixbuf.c b/gtk/gtkcellrendererpixbuf.c index 61a557237..f3a434e37 100644 --- a/gtk/gtkcellrendererpixbuf.c +++ b/gtk/gtkcellrendererpixbuf.c @@ -153,6 +153,19 @@ gtk_cell_renderer_pixbuf_set_property (GObject *object, } } +/** + * gtk_cell_renderer_pixbuf_new: + * + * Creates a new #GtkCellRendererPixbuf. Adjust rendering + * parameters 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 "pixbuf" property on the cell renderer to a pixbuf value + * in the model, thus rendering a different image in each row of the + * #GtkTreeView. + * + * Return value: the new cell renderer + **/ GtkCellRenderer * gtk_cell_renderer_pixbuf_new (void) { |