]> Pileus Git - ~andy/gtk/blob - gtk/gtkcellview.c
Deprecate all the public API that is using GdkColor struct
[~andy/gtk] / gtk / gtkcellview.c
1 /* gtkellview.c
2  * Copyright (C) 2002, 2003  Kristian Rietveld <kris@gtk.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include "config.h"
21 #include <string.h>
22 #include "gtkcellview.h"
23 #include "gtkcelllayout.h"
24 #include "gtkcellareabox.h"
25 #include "gtkintl.h"
26 #include "gtkcellrenderertext.h"
27 #include "gtkcellrendererpixbuf.h"
28 #include "gtkprivate.h"
29 #include "gtkorientableprivate.h"
30 #include <gobject/gmarshal.h>
31 #include "gtkbuildable.h"
32
33
34 /**
35  * SECTION:gtkcellview
36  * @Short_description: A widget displaying a single row of a GtkTreeModel
37  * @Title: GtkCellView
38  *
39  * A #GtkCellView displays a single row of a #GtkTreeModel using a #GtkCellArea
40  * and #GtkCellAreaContext. A #GtkCellAreaContext can be provided to the 
41  * #GtkCellView at construction time in order to keep the cellview in context
42  * of a group of cell views, this ensures that the renderers displayed will
43  * be properly aligned with eachother (like the aligned cells in the menus
44  * of #GtkComboBox).
45  *
46  * #GtkCellView is #GtkOrientable in order to decide in which orientation
47  * the underlying #GtkCellAreaContext should be allocated. Taking the #GtkComboBox
48  * menu as an example, cellviews should be oriented horizontally if the menus are
49  * listed top-to-bottom and thus all share the same width but may have separate
50  * individual heights (left-to-right menus should be allocated vertically since
51  * they all share the same height but may have variable widths).
52  */
53
54 static GObject    *gtk_cell_view_constructor              (GType                  type,
55                                                            guint                  n_construct_properties,
56                                                            GObjectConstructParam *construct_properties);
57 static void        gtk_cell_view_get_property             (GObject           *object,
58                                                            guint             param_id,
59                                                            GValue           *value,
60                                                            GParamSpec       *pspec);
61 static void        gtk_cell_view_set_property             (GObject          *object,
62                                                            guint             param_id,
63                                                            const GValue     *value,
64                                                            GParamSpec       *pspec);
65 static void        gtk_cell_view_finalize                 (GObject          *object);
66 static void        gtk_cell_view_dispose                  (GObject          *object);
67 static void        gtk_cell_view_size_allocate            (GtkWidget        *widget,
68                                                            GtkAllocation    *allocation);
69 static gboolean    gtk_cell_view_draw                     (GtkWidget        *widget,
70                                                            cairo_t          *cr);
71 static void        gtk_cell_view_set_value                (GtkCellView     *cell_view,
72                                                            GtkCellRenderer *renderer,
73                                                            gchar           *property,
74                                                            GValue          *value);
75 static void        gtk_cell_view_set_cell_data            (GtkCellView      *cell_view);
76
77 /* celllayout */
78 static void        gtk_cell_view_cell_layout_init         (GtkCellLayoutIface *iface);
79 static GtkCellArea *gtk_cell_view_cell_layout_get_area         (GtkCellLayout         *layout);
80
81
82 /* buildable */
83 static void       gtk_cell_view_buildable_init                 (GtkBuildableIface     *iface);
84 static gboolean   gtk_cell_view_buildable_custom_tag_start     (GtkBuildable          *buildable,
85                                                                 GtkBuilder            *builder,
86                                                                 GObject               *child,
87                                                                 const gchar           *tagname,
88                                                                 GMarkupParser         *parser,
89                                                                 gpointer              *data);
90 static void       gtk_cell_view_buildable_custom_tag_end       (GtkBuildable          *buildable,
91                                                                 GtkBuilder            *builder,
92                                                                 GObject               *child,
93                                                                 const gchar           *tagname,
94                                                                 gpointer              *data);
95
96 static GtkSizeRequestMode gtk_cell_view_get_request_mode       (GtkWidget             *widget);
97 static void       gtk_cell_view_get_preferred_width            (GtkWidget             *widget,
98                                                                 gint                  *minimum_size,
99                                                                 gint                  *natural_size);
100 static void       gtk_cell_view_get_preferred_height           (GtkWidget             *widget,
101                                                                 gint                  *minimum_size,
102                                                                 gint                  *natural_size);
103 static void       gtk_cell_view_get_preferred_width_for_height (GtkWidget             *widget,
104                                                                 gint                   avail_size,
105                                                                 gint                  *minimum_size,
106                                                                 gint                  *natural_size);
107 static void       gtk_cell_view_get_preferred_height_for_width (GtkWidget             *widget,
108                                                                 gint                   avail_size,
109                                                                 gint                  *minimum_size,
110                                                                 gint                  *natural_size);
111
112 static void       context_size_changed_cb                      (GtkCellAreaContext   *context,
113                                                                 GParamSpec           *pspec,
114                                                                 GtkWidget            *view);
115 static void       row_changed_cb                               (GtkTreeModel         *model,
116                                                                 GtkTreePath          *path,
117                                                                 GtkTreeIter          *iter,
118                                                                 GtkCellView          *view);
119
120
121 struct _GtkCellViewPrivate
122 {
123   GtkTreeModel        *model;
124   GtkTreeRowReference *displayed_row;
125
126   GtkCellArea         *area;
127   GtkCellAreaContext  *context;
128
129   GdkRGBA              background;
130
131   gulong               size_changed_id;
132   gulong               row_changed_id;
133
134   GtkOrientation       orientation;
135
136   guint                background_set : 1;
137   guint                draw_sensitive : 1;
138   guint                fit_model      : 1;
139 };
140
141 static GtkBuildableIface *parent_buildable_iface;
142
143 enum
144 {
145   PROP_0,
146   PROP_ORIENTATION,
147   PROP_BACKGROUND,
148   PROP_BACKGROUND_GDK,
149   PROP_BACKGROUND_RGBA,
150   PROP_BACKGROUND_SET,
151   PROP_MODEL,
152   PROP_CELL_AREA,
153   PROP_CELL_AREA_CONTEXT,
154   PROP_DRAW_SENSITIVE,
155   PROP_FIT_MODEL
156 };
157
158 G_DEFINE_TYPE_WITH_CODE (GtkCellView, gtk_cell_view, GTK_TYPE_WIDGET, 
159                          G_IMPLEMENT_INTERFACE (GTK_TYPE_CELL_LAYOUT,
160                                                 gtk_cell_view_cell_layout_init)
161                          G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
162                                                 gtk_cell_view_buildable_init)
163                          G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE, NULL));
164
165 static void
166 gtk_cell_view_class_init (GtkCellViewClass *klass)
167 {
168   GObjectClass   *gobject_class = G_OBJECT_CLASS (klass);
169   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
170
171   gobject_class->constructor = gtk_cell_view_constructor;
172   gobject_class->get_property = gtk_cell_view_get_property;
173   gobject_class->set_property = gtk_cell_view_set_property;
174   gobject_class->finalize = gtk_cell_view_finalize;
175   gobject_class->dispose = gtk_cell_view_dispose;
176
177   widget_class->draw                           = gtk_cell_view_draw;
178   widget_class->size_allocate                  = gtk_cell_view_size_allocate;
179   widget_class->get_request_mode               = gtk_cell_view_get_request_mode;
180   widget_class->get_preferred_width            = gtk_cell_view_get_preferred_width;
181   widget_class->get_preferred_height           = gtk_cell_view_get_preferred_height;
182   widget_class->get_preferred_width_for_height = gtk_cell_view_get_preferred_width_for_height;
183   widget_class->get_preferred_height_for_width = gtk_cell_view_get_preferred_height_for_width;
184
185   /* properties */
186   g_object_class_override_property (gobject_class, PROP_ORIENTATION, "orientation");
187
188   g_object_class_install_property (gobject_class,
189                                    PROP_BACKGROUND,
190                                    g_param_spec_string ("background",
191                                                         P_("Background color name"),
192                                                         P_("Background color as a string"),
193                                                         NULL,
194                                                         GTK_PARAM_WRITABLE));
195
196   /**
197    * GtkCellView:background-gdk
198    *
199    * The background color as a #GdkColor
200    *
201    * Deprecated: 3.4: Use #GtkCellView:background-rgba instead.
202    */
203   g_object_class_install_property (gobject_class,
204                                    PROP_BACKGROUND_GDK,
205                                    g_param_spec_boxed ("background-gdk",
206                                                       P_("Background color"),
207                                                       P_("Background color as a GdkColor"),
208                                                       GDK_TYPE_COLOR,
209                                                       GTK_PARAM_READWRITE | G_PARAM_DEPRECATED));
210   /**
211    * GtkCellView:background-rgba
212    *
213    * The background color as a #GdkRGBA
214    *
215    * Since: 3.0
216    */
217   g_object_class_install_property (gobject_class,
218                                    PROP_BACKGROUND_RGBA,
219                                    g_param_spec_boxed ("background-rgba",
220                                                       P_("Background RGBA color"),
221                                                       P_("Background color as a GdkRGBA"),
222                                                       GDK_TYPE_RGBA,
223                                                       GTK_PARAM_READWRITE));
224
225   /**
226    * GtkCellView:model
227    *
228    * The model for cell view
229    *
230    * since 2.10
231    */
232   g_object_class_install_property (gobject_class,
233                                    PROP_MODEL,
234                                    g_param_spec_object  ("model",
235                                                          P_("CellView model"),
236                                                          P_("The model for cell view"),
237                                                          GTK_TYPE_TREE_MODEL,
238                                                          GTK_PARAM_READWRITE));
239
240
241   /**
242    * GtkCellView:cell-area
243    *
244    * The #GtkCellArea rendering cells
245    *
246    * If no area is specified when creating the cell view with gtk_cell_view_new_with_context() 
247    * a horizontally oriented #GtkCellAreaBox will be used.
248    *
249    * since 3.0
250    */
251    g_object_class_install_property (gobject_class,
252                                     PROP_CELL_AREA,
253                                     g_param_spec_object ("cell-area",
254                                                          P_("Cell Area"),
255                                                          P_("The GtkCellArea used to layout cells"),
256                                                          GTK_TYPE_CELL_AREA,
257                                                          GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
258
259   /**
260    * GtkCellView:cell-area-context
261    *
262    * The #GtkCellAreaContext used to compute the geometry of the cell view.
263    *
264    * A group of cell views can be assigned the same context in order to
265    * ensure the sizes and cell alignments match across all the views with
266    * the same context.
267    *
268    * #GtkComboBox menus uses this to assign the same context to all cell views
269    * in the menu items for a single menu (each submenu creates its own
270    * context since the size of each submenu does not depend on parent
271    * or sibling menus).
272    *
273    * since 3.0
274    */
275    g_object_class_install_property (gobject_class,
276                                     PROP_CELL_AREA_CONTEXT,
277                                     g_param_spec_object ("cell-area-context",
278                                                          P_("Cell Area Context"),
279                                                          P_("The GtkCellAreaContext used to "
280                                                             "compute the geometry of the cell view"),
281                                                          GTK_TYPE_CELL_AREA_CONTEXT,
282                                                          GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
283
284   /**
285    * GtkCellView:draw-sensitive
286    *
287    * Whether all cells should be draw as sensitive for this view regardless
288    * of the actual cell properties (used to make menus with submenus appear
289    * sensitive when the items in submenus might be insensitive).
290    *
291    * since 3.0
292    */
293    g_object_class_install_property (gobject_class,
294                                     PROP_DRAW_SENSITIVE,
295                                     g_param_spec_boolean ("draw-sensitive",
296                                                           P_("Draw Sensitive"),
297                                                           P_("Whether to force cells to be drawn in a "
298                                                              "sensitive state"),
299                                                           FALSE,
300                                                           GTK_PARAM_READWRITE));
301
302   /**
303    * GtkCellView:fit-model
304    *
305    * Whether the view should request enough space to always fit
306    * the size of every row in the model (used by the combo box to
307    * ensure the combo box size doesnt change when different items
308    * are selected).
309    *
310    * since 3.0
311    */
312    g_object_class_install_property (gobject_class,
313                                     PROP_FIT_MODEL,
314                                     g_param_spec_boolean ("fit-model",
315                                                           P_("Fit Model"),
316                                                           P_("Whether to request enough space for "
317                                                              "every row in the model"),
318                                                           FALSE,
319                                                           GTK_PARAM_READWRITE));
320
321   
322 #define ADD_SET_PROP(propname, propval, nick, blurb) g_object_class_install_property (gobject_class, propval, g_param_spec_boolean (propname, nick, blurb, FALSE, GTK_PARAM_READWRITE))
323
324   ADD_SET_PROP ("background-set", PROP_BACKGROUND_SET,
325                 P_("Background set"),
326                 P_("Whether this tag affects the background color"));
327
328   g_type_class_add_private (gobject_class, sizeof (GtkCellViewPrivate));
329 }
330
331 static void
332 gtk_cell_view_buildable_init (GtkBuildableIface *iface)
333 {
334   parent_buildable_iface = g_type_interface_peek_parent (iface);
335   iface->add_child = _gtk_cell_layout_buildable_add_child;
336   iface->custom_tag_start = gtk_cell_view_buildable_custom_tag_start;
337   iface->custom_tag_end = gtk_cell_view_buildable_custom_tag_end;
338 }
339
340 static void
341 gtk_cell_view_cell_layout_init (GtkCellLayoutIface *iface)
342 {
343   iface->get_area = gtk_cell_view_cell_layout_get_area;
344 }
345
346 static GObject *
347 gtk_cell_view_constructor (GType                  type,
348                            guint                  n_construct_properties,
349                            GObjectConstructParam *construct_properties)
350 {
351   GObject            *object;
352   GtkCellView        *view;
353   GtkCellViewPrivate *priv;
354
355   object = G_OBJECT_CLASS (gtk_cell_view_parent_class)->constructor
356     (type, n_construct_properties, construct_properties);
357
358   view = GTK_CELL_VIEW (object);
359   priv = view->priv;
360
361   if (!priv->area)
362     {
363       priv->area = gtk_cell_area_box_new ();
364       g_object_ref_sink (priv->area);
365     }
366
367   if (!priv->context)
368     priv->context = gtk_cell_area_create_context (priv->area);
369
370   priv->size_changed_id =
371     g_signal_connect (priv->context, "notify",
372                       G_CALLBACK (context_size_changed_cb), view);
373
374   return object;
375 }
376
377 static void
378 gtk_cell_view_get_property (GObject    *object,
379                             guint       param_id,
380                             GValue     *value,
381                             GParamSpec *pspec)
382 {
383   GtkCellView *view = GTK_CELL_VIEW (object);
384
385   switch (param_id)
386     {
387     case PROP_ORIENTATION:
388       g_value_set_enum (value, view->priv->orientation);
389       break;
390     case PROP_BACKGROUND_GDK:
391       {
392         GdkColor color;
393         
394         color.red = (guint) (view->priv->background.red * 65535);
395         color.green = (guint) (view->priv->background.green * 65535);
396         color.blue = (guint) (view->priv->background.blue * 65535);
397         color.pixel = 0;
398         
399         g_value_set_boxed (value, &color);
400       }
401       break;
402     case PROP_BACKGROUND_RGBA:
403       g_value_set_boxed (value, &view->priv->background);
404       break;
405     case PROP_BACKGROUND_SET:
406       g_value_set_boolean (value, view->priv->background_set);
407       break;
408     case PROP_MODEL:
409       g_value_set_object (value, view->priv->model);
410       break;
411     case PROP_CELL_AREA:
412       g_value_set_object (value, view->priv->area);
413       break;
414     case PROP_CELL_AREA_CONTEXT:
415       g_value_set_object (value, view->priv->context);
416       break;
417     case PROP_DRAW_SENSITIVE:
418       g_value_set_boolean (value, view->priv->draw_sensitive);
419       break;
420     case PROP_FIT_MODEL:
421       g_value_set_boolean (value, view->priv->fit_model);
422       break;
423     default:
424       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
425       break;
426     }
427 }
428
429 static void
430 gtk_cell_view_set_property (GObject      *object,
431                             guint         param_id,
432                             const GValue *value,
433                             GParamSpec   *pspec)
434 {
435   GtkCellView *view = GTK_CELL_VIEW (object);
436   GtkCellViewPrivate *priv = view->priv;
437   GtkCellArea *area;
438   GtkCellAreaContext *context;
439
440   switch (param_id)
441     {
442     case PROP_ORIENTATION:
443       priv->orientation = g_value_get_enum (value);
444       if (priv->context)
445         gtk_cell_area_context_reset (priv->context);
446
447       _gtk_orientable_set_style_classes (GTK_ORIENTABLE (object));
448       break;
449     case PROP_BACKGROUND:
450       {
451         GdkRGBA color;
452
453         if (!g_value_get_string (value))
454           gtk_cell_view_set_background_rgba (view, NULL);
455         else if (gdk_rgba_parse (&color, g_value_get_string (value)))
456           gtk_cell_view_set_background_rgba (view, &color);
457         else
458           g_warning ("Don't know color `%s'", g_value_get_string (value));
459
460         g_object_notify (object, "background-rgba");
461         g_object_notify (object, "background-gdk");
462       }
463       break;
464     case PROP_BACKGROUND_GDK:
465       gtk_cell_view_set_background_color (view, g_value_get_boxed (value));
466       break;
467     case PROP_BACKGROUND_RGBA:
468       gtk_cell_view_set_background_rgba (view, g_value_get_boxed (value));
469       break;
470     case PROP_BACKGROUND_SET:
471       view->priv->background_set = g_value_get_boolean (value);
472       break;
473     case PROP_MODEL:
474       gtk_cell_view_set_model (view, g_value_get_object (value));
475       break;
476     case PROP_CELL_AREA:
477       /* Construct-only, can only be assigned once */
478       area = g_value_get_object (value);
479
480       if (area)
481         {
482           if (priv->area != NULL)
483             {
484               g_warning ("cell-area has already been set, ignoring construct property");
485               g_object_ref_sink (area);
486               g_object_unref (area);
487             }
488           else
489             priv->area = g_object_ref_sink (area);
490         }
491       break;
492     case PROP_CELL_AREA_CONTEXT:
493       /* Construct-only, can only be assigned once */
494       context = g_value_get_object (value);
495
496       if (context)
497         {
498           if (priv->context != NULL)
499             {
500               g_warning ("cell-area-context has already been set, ignoring construct property");
501               g_object_ref_sink (context);
502               g_object_unref (context);
503             }
504           else
505             priv->context = g_object_ref (context);
506         }
507       break;
508
509     case PROP_DRAW_SENSITIVE:
510       gtk_cell_view_set_draw_sensitive (view, g_value_get_boolean (value));
511       break;
512
513     case PROP_FIT_MODEL:
514       gtk_cell_view_set_fit_model (view, g_value_get_boolean (value));
515       break;
516
517     default:
518         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
519         break;
520     }
521 }
522
523 static void
524 gtk_cell_view_init (GtkCellView *cellview)
525 {
526   GtkCellViewPrivate *priv;
527
528   cellview->priv = G_TYPE_INSTANCE_GET_PRIVATE (cellview,
529                                                 GTK_TYPE_CELL_VIEW,
530                                                 GtkCellViewPrivate);
531   priv = cellview->priv;
532
533   gtk_widget_set_has_window (GTK_WIDGET (cellview), FALSE);
534
535   priv->orientation = GTK_ORIENTATION_HORIZONTAL;
536 }
537
538 static void
539 gtk_cell_view_finalize (GObject *object)
540 {
541   GtkCellView *cellview = GTK_CELL_VIEW (object);
542
543   if (cellview->priv->displayed_row)
544      gtk_tree_row_reference_free (cellview->priv->displayed_row);
545
546   G_OBJECT_CLASS (gtk_cell_view_parent_class)->finalize (object);
547 }
548
549 static void
550 gtk_cell_view_dispose (GObject *object)
551 {
552   GtkCellView *cellview = GTK_CELL_VIEW (object);
553
554   gtk_cell_view_set_model (cellview, NULL);
555
556   if (cellview->priv->area)
557     {
558       g_object_unref (cellview->priv->area);
559       cellview->priv->area = NULL;
560     }
561
562   if (cellview->priv->context)
563     {
564       g_signal_handler_disconnect (cellview->priv->context, cellview->priv->size_changed_id);
565
566       g_object_unref (cellview->priv->context);
567       cellview->priv->context = NULL;
568       cellview->priv->size_changed_id = 0;
569     }
570
571   G_OBJECT_CLASS (gtk_cell_view_parent_class)->dispose (object);
572 }
573
574 static void
575 gtk_cell_view_size_allocate (GtkWidget     *widget,
576                              GtkAllocation *allocation)
577 {
578   GtkCellView        *cellview = GTK_CELL_VIEW (widget);
579   GtkCellViewPrivate *priv = cellview->priv;
580   gint                alloc_width, alloc_height;
581
582   gtk_widget_set_allocation (widget, allocation);
583
584   gtk_cell_area_context_get_allocation (priv->context, &alloc_width, &alloc_height);
585
586   /* The first cell view in context is responsible for allocating the context at allocate time 
587    * (or the cellview has its own context and is not grouped with any other cell views) 
588    *
589    * If the cellview is in "fit model" mode, we assume its not in context and needs to
590    * allocate every time.
591    */
592   if (priv->fit_model)
593     gtk_cell_area_context_allocate (priv->context, allocation->width, allocation->height);
594   else if (alloc_width != allocation->width && priv->orientation == GTK_ORIENTATION_HORIZONTAL)
595     gtk_cell_area_context_allocate (priv->context, allocation->width, -1);
596   else if (alloc_height != allocation->height && priv->orientation == GTK_ORIENTATION_VERTICAL)
597     gtk_cell_area_context_allocate (priv->context, -1, allocation->height);
598 }
599
600 static void
601 gtk_cell_view_request_model (GtkCellView        *cellview,
602                              GtkTreeIter        *parent,
603                              GtkOrientation      orientation,
604                              gint                for_size,
605                              gint               *minimum_size,
606                              gint               *natural_size)
607 {
608   GtkCellViewPrivate *priv = cellview->priv;
609   GtkTreeIter         iter;
610   gboolean            valid;
611
612   if (!priv->model)
613     return;
614
615   valid = gtk_tree_model_iter_children (priv->model, &iter, parent);
616   while (valid)
617     {
618       gint min, nat;
619
620       gtk_cell_area_apply_attributes (priv->area, priv->model, &iter, FALSE, FALSE);
621
622       if (orientation == GTK_ORIENTATION_HORIZONTAL)
623         {
624           if (for_size < 0)
625             gtk_cell_area_get_preferred_width (priv->area, priv->context, 
626                                                GTK_WIDGET (cellview), &min, &nat);
627           else
628             gtk_cell_area_get_preferred_width_for_height (priv->area, priv->context, 
629                                                           GTK_WIDGET (cellview), for_size, &min, &nat);
630         }
631       else
632         {
633           if (for_size < 0)
634             gtk_cell_area_get_preferred_height (priv->area, priv->context, 
635                                                 GTK_WIDGET (cellview), &min, &nat);
636           else
637             gtk_cell_area_get_preferred_height_for_width (priv->area, priv->context, 
638                                                           GTK_WIDGET (cellview), for_size, &min, &nat);
639         }
640
641       *minimum_size = MAX (min, *minimum_size);
642       *natural_size = MAX (nat, *natural_size);
643
644       /* Recurse into children when they exist */
645       gtk_cell_view_request_model (cellview, &iter, orientation, for_size, minimum_size, natural_size);
646
647       valid = gtk_tree_model_iter_next (priv->model, &iter);
648     }
649 }
650
651 static GtkSizeRequestMode 
652 gtk_cell_view_get_request_mode (GtkWidget *widget)
653 {
654   GtkCellView        *cellview = GTK_CELL_VIEW (widget);
655   GtkCellViewPrivate *priv = cellview->priv;
656
657   return gtk_cell_area_get_request_mode (priv->area);
658 }
659
660 static void
661 gtk_cell_view_get_preferred_width  (GtkWidget *widget,
662                                     gint      *minimum_size,
663                                     gint      *natural_size)
664 {
665   GtkCellView        *cellview = GTK_CELL_VIEW (widget);
666   GtkCellViewPrivate *priv = cellview->priv;
667
668   g_signal_handler_block (priv->context, priv->size_changed_id);
669
670   if (priv->fit_model)
671     {
672       gint min = 0, nat = 0;
673       gtk_cell_view_request_model (cellview, NULL, GTK_ORIENTATION_HORIZONTAL, -1, &min, &nat);
674     }
675   else
676     {
677       if (cellview->priv->displayed_row)
678         gtk_cell_view_set_cell_data (cellview);
679
680       gtk_cell_area_get_preferred_width (priv->area, priv->context, widget, NULL, NULL);
681     }
682
683   gtk_cell_area_context_get_preferred_width (priv->context, minimum_size, natural_size);
684
685   g_signal_handler_unblock (priv->context, priv->size_changed_id);
686 }
687
688 static void       
689 gtk_cell_view_get_preferred_height (GtkWidget *widget,
690                                     gint      *minimum_size,
691                                     gint      *natural_size)
692 {
693   GtkCellView        *cellview = GTK_CELL_VIEW (widget);
694   GtkCellViewPrivate *priv = cellview->priv;
695
696   g_signal_handler_block (priv->context, priv->size_changed_id);
697
698   if (priv->fit_model)
699     {
700       gint min = 0, nat = 0;
701       gtk_cell_view_request_model (cellview, NULL, GTK_ORIENTATION_VERTICAL, -1, &min, &nat);
702     }
703   else
704     {
705       if (cellview->priv->displayed_row)
706         gtk_cell_view_set_cell_data (cellview);
707       
708       gtk_cell_area_get_preferred_height (priv->area, priv->context, widget, NULL, NULL);
709     }
710
711   gtk_cell_area_context_get_preferred_height (priv->context, minimum_size, natural_size);
712
713   g_signal_handler_unblock (priv->context, priv->size_changed_id);
714 }
715
716 static void       
717 gtk_cell_view_get_preferred_width_for_height (GtkWidget *widget,
718                                               gint       for_size,
719                                               gint      *minimum_size,
720                                               gint      *natural_size)
721 {
722   GtkCellView        *cellview = GTK_CELL_VIEW (widget);
723   GtkCellViewPrivate *priv = cellview->priv;
724
725   if (priv->fit_model)
726     {
727       gint min = 0, nat = 0;
728       gtk_cell_view_request_model (cellview, NULL, GTK_ORIENTATION_HORIZONTAL, for_size, &min, &nat);
729
730       *minimum_size = min;
731       *natural_size = nat;
732     }
733   else
734     {
735       if (cellview->priv->displayed_row)
736         gtk_cell_view_set_cell_data (cellview);
737
738       gtk_cell_area_get_preferred_width_for_height (priv->area, priv->context, widget, 
739                                                     for_size, minimum_size, natural_size);
740     }
741 }
742
743 static void       
744 gtk_cell_view_get_preferred_height_for_width (GtkWidget *widget,
745                                               gint       for_size,
746                                               gint      *minimum_size,
747                                               gint      *natural_size)
748 {
749   GtkCellView        *cellview = GTK_CELL_VIEW (widget);
750   GtkCellViewPrivate *priv = cellview->priv;
751
752   if (priv->fit_model)
753     {
754       gint min = 0, nat = 0;
755       gtk_cell_view_request_model (cellview, NULL, GTK_ORIENTATION_VERTICAL, for_size, &min, &nat);
756
757       *minimum_size = min;
758       *natural_size = nat;
759     }
760   else
761     {
762       if (cellview->priv->displayed_row)
763         gtk_cell_view_set_cell_data (cellview);
764
765       gtk_cell_area_get_preferred_height_for_width (priv->area, priv->context, widget, 
766                                                     for_size, minimum_size, natural_size);
767     }
768 }
769
770 static gboolean
771 gtk_cell_view_draw (GtkWidget *widget,
772                     cairo_t   *cr)
773 {
774   GtkCellView *cellview;
775   GdkRectangle area;
776   GtkCellRendererState state;
777
778   cellview = GTK_CELL_VIEW (widget);
779
780   /* render cells */
781   area.x = 0;
782   area.y = 0;
783   area.width  = gtk_widget_get_allocated_width (widget);
784   area.height = gtk_widget_get_allocated_height (widget);
785
786   /* "blank" background */
787   if (cellview->priv->background_set)
788     {
789       gdk_cairo_rectangle (cr, &area);
790       gdk_cairo_set_source_rgba (cr, &cellview->priv->background);
791       cairo_fill (cr);
792     }
793
794   /* set cell data (if available) */
795   if (cellview->priv->displayed_row)
796     gtk_cell_view_set_cell_data (cellview);
797   else if (cellview->priv->model)
798     return FALSE;
799
800   if (gtk_widget_get_state_flags (widget) & GTK_STATE_FLAG_PRELIGHT)
801     state = GTK_CELL_RENDERER_PRELIT;
802   else
803     state = 0;
804       
805   /* Render the cells */
806   gtk_cell_area_render (cellview->priv->area, cellview->priv->context, 
807                         widget, cr, &area, &area, state, FALSE);
808
809   return FALSE;
810 }
811
812 static void
813 gtk_cell_view_set_cell_data (GtkCellView *cell_view)
814 {
815   GtkTreeIter iter;
816   GtkTreePath *path;
817
818   g_return_if_fail (cell_view->priv->displayed_row != NULL);
819
820   path = gtk_tree_row_reference_get_path (cell_view->priv->displayed_row);
821   if (!path)
822     return;
823
824   gtk_tree_model_get_iter (cell_view->priv->model, &iter, path);
825   gtk_tree_path_free (path);
826
827   gtk_cell_area_apply_attributes (cell_view->priv->area, 
828                                   cell_view->priv->model, 
829                                   &iter, FALSE, FALSE);
830
831   if (cell_view->priv->draw_sensitive)
832     {
833       GList *l, *cells = 
834         gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (cell_view->priv->area));
835
836       for (l = cells; l; l = l->next)
837         {
838           GObject *renderer = l->data;
839
840           g_object_set (renderer, "sensitive", TRUE, NULL);
841         }
842       g_list_free (cells);
843     }
844 }
845
846 /* GtkCellLayout implementation */
847 static GtkCellArea *
848 gtk_cell_view_cell_layout_get_area (GtkCellLayout   *layout)
849 {
850   GtkCellView *cellview = GTK_CELL_VIEW (layout);
851   GtkCellViewPrivate *priv = cellview->priv;
852
853   if (G_UNLIKELY (!priv->area))
854     {
855       priv->area = gtk_cell_area_box_new ();
856       g_object_ref_sink (priv->area);
857     }
858
859   return priv->area;
860 }
861
862 /* GtkBuildable implementation */
863 static gboolean
864 gtk_cell_view_buildable_custom_tag_start (GtkBuildable  *buildable,
865                                           GtkBuilder    *builder,
866                                           GObject       *child,
867                                           const gchar   *tagname,
868                                           GMarkupParser *parser,
869                                           gpointer      *data)
870 {
871   if (parent_buildable_iface->custom_tag_start &&
872       parent_buildable_iface->custom_tag_start (buildable, builder, child,
873                                                 tagname, parser, data))
874     return TRUE;
875
876   return _gtk_cell_layout_buildable_custom_tag_start (buildable, builder, child,
877                                                       tagname, parser, data);
878 }
879
880 static void
881 gtk_cell_view_buildable_custom_tag_end (GtkBuildable *buildable,
882                                         GtkBuilder   *builder,
883                                         GObject      *child,
884                                         const gchar  *tagname,
885                                         gpointer     *data)
886 {
887   if (_gtk_cell_layout_buildable_custom_tag_end (buildable, builder, child, tagname,
888                                                  data))
889     return;
890   else if (parent_buildable_iface->custom_tag_end)
891     parent_buildable_iface->custom_tag_end (buildable, builder, child, tagname,
892                                             data);
893 }
894
895 static void
896 context_size_changed_cb (GtkCellAreaContext  *context,
897                          GParamSpec          *pspec,
898                          GtkWidget           *view)
899 {
900   if (!strcmp (pspec->name, "minimum-width") ||
901       !strcmp (pspec->name, "natural-width") ||
902       !strcmp (pspec->name, "minimum-height") ||
903       !strcmp (pspec->name, "natural-height"))
904     gtk_widget_queue_resize (view);
905 }
906
907 static void
908 row_changed_cb (GtkTreeModel         *model,
909                 GtkTreePath          *path,
910                 GtkTreeIter          *iter,
911                 GtkCellView          *view)
912 {
913   GtkTreePath *row_path;
914
915   if (view->priv->displayed_row)
916     {
917       row_path = 
918         gtk_tree_row_reference_get_path (view->priv->displayed_row);
919
920       if (row_path)
921         {
922           /* Resize everything in our context if our row changed */
923           if (gtk_tree_path_compare (row_path, path) == 0)
924             gtk_cell_area_context_reset (view->priv->context);
925
926           gtk_tree_path_free (row_path);
927         }
928     }
929 }
930
931 /**
932  * gtk_cell_view_new:
933  *
934  * Creates a new #GtkCellView widget.
935  *
936  * Return value: A newly created #GtkCellView widget.
937  *
938  * Since: 2.6
939  */
940 GtkWidget *
941 gtk_cell_view_new (void)
942 {
943   GtkCellView *cellview;
944
945   cellview = g_object_new (gtk_cell_view_get_type (), NULL);
946
947   return GTK_WIDGET (cellview);
948 }
949
950
951 /**
952  * gtk_cell_view_new_with_context:
953  * @area: the #GtkCellArea to layout cells
954  * @context: the #GtkCellAreaContext in which to calculate cell geometry
955  *
956  * Creates a new #GtkCellView widget with a specific #GtkCellArea
957  * to layout cells and a specific #GtkCellAreaContext.
958  *
959  * Specifying the same context for a handfull of cells lets
960  * the underlying area synchronize the geometry for those cells,
961  * in this way alignments with cellviews for other rows are
962  * possible.
963  *
964  * Return value: A newly created #GtkCellView widget.
965  *
966  * Since: 2.6
967  */
968 GtkWidget *
969 gtk_cell_view_new_with_context (GtkCellArea        *area,
970                                 GtkCellAreaContext *context)
971 {
972   g_return_val_if_fail (GTK_IS_CELL_AREA (area), NULL);
973   g_return_val_if_fail (context == NULL || GTK_IS_CELL_AREA_CONTEXT (context), NULL);
974
975   return (GtkWidget *)g_object_new (GTK_TYPE_CELL_VIEW, 
976                                     "cell-area", area,
977                                     "cell-area-context", context,
978                                     NULL);
979 }
980
981 /**
982  * gtk_cell_view_new_with_text:
983  * @text: the text to display in the cell view
984  *
985  * Creates a new #GtkCellView widget, adds a #GtkCellRendererText 
986  * to it, and makes its show @text.
987  *
988  * Return value: A newly created #GtkCellView widget.
989  *
990  * Since: 2.6
991  */
992 GtkWidget *
993 gtk_cell_view_new_with_text (const gchar *text)
994 {
995   GtkCellView *cellview;
996   GtkCellRenderer *renderer;
997   GValue value = G_VALUE_INIT;
998
999   cellview = GTK_CELL_VIEW (gtk_cell_view_new ());
1000
1001   renderer = gtk_cell_renderer_text_new ();
1002   gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (cellview),
1003                               renderer, TRUE);
1004
1005   g_value_init (&value, G_TYPE_STRING);
1006   g_value_set_string (&value, text);
1007   gtk_cell_view_set_value (cellview, renderer, "text", &value);
1008   g_value_unset (&value);
1009
1010   return GTK_WIDGET (cellview);
1011 }
1012
1013 /**
1014  * gtk_cell_view_new_with_markup:
1015  * @markup: the text to display in the cell view
1016  *
1017  * Creates a new #GtkCellView widget, adds a #GtkCellRendererText 
1018  * to it, and makes it show @markup. The text can be
1019  * marked up with the <link linkend="PangoMarkupFormat">Pango text 
1020  * markup language</link>.
1021  *
1022  * Return value: A newly created #GtkCellView widget.
1023  *
1024  * Since: 2.6
1025  */
1026 GtkWidget *
1027 gtk_cell_view_new_with_markup (const gchar *markup)
1028 {
1029   GtkCellView *cellview;
1030   GtkCellRenderer *renderer;
1031   GValue value = G_VALUE_INIT;
1032
1033   cellview = GTK_CELL_VIEW (gtk_cell_view_new ());
1034
1035   renderer = gtk_cell_renderer_text_new ();
1036   gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (cellview),
1037                               renderer, TRUE);
1038
1039   g_value_init (&value, G_TYPE_STRING);
1040   g_value_set_string (&value, markup);
1041   gtk_cell_view_set_value (cellview, renderer, "markup", &value);
1042   g_value_unset (&value);
1043
1044   return GTK_WIDGET (cellview);
1045 }
1046
1047 /**
1048  * gtk_cell_view_new_with_pixbuf:
1049  * @pixbuf: the image to display in the cell view
1050  *
1051  * Creates a new #GtkCellView widget, adds a #GtkCellRendererPixbuf 
1052  * to it, and makes its show @pixbuf. 
1053  *
1054  * Return value: A newly created #GtkCellView widget.
1055  *
1056  * Since: 2.6
1057  */
1058 GtkWidget *
1059 gtk_cell_view_new_with_pixbuf (GdkPixbuf *pixbuf)
1060 {
1061   GtkCellView *cellview;
1062   GtkCellRenderer *renderer;
1063   GValue value = G_VALUE_INIT;
1064
1065   cellview = GTK_CELL_VIEW (gtk_cell_view_new ());
1066
1067   renderer = gtk_cell_renderer_pixbuf_new ();
1068   gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (cellview),
1069                               renderer, TRUE);
1070
1071   g_value_init (&value, GDK_TYPE_PIXBUF);
1072   g_value_set_object (&value, pixbuf);
1073   gtk_cell_view_set_value (cellview, renderer, "pixbuf", &value);
1074   g_value_unset (&value);
1075
1076   return GTK_WIDGET (cellview);
1077 }
1078
1079 /**
1080  * gtk_cell_view_set_value:
1081  * @cell_view: a #GtkCellView widget
1082  * @renderer: one of the renderers of @cell_view
1083  * @property: the name of the property of @renderer to set
1084  * @value: the new value to set the property to
1085  * 
1086  * Sets a property of a cell renderer of @cell_view, and
1087  * makes sure the display of @cell_view is updated.
1088  *
1089  * Since: 2.6
1090  */
1091 static void
1092 gtk_cell_view_set_value (GtkCellView     *cell_view,
1093                          GtkCellRenderer *renderer,
1094                          gchar           *property,
1095                          GValue          *value)
1096 {
1097   g_object_set_property (G_OBJECT (renderer), property, value);
1098
1099   /* force resize and redraw */
1100   gtk_widget_queue_resize (GTK_WIDGET (cell_view));
1101   gtk_widget_queue_draw (GTK_WIDGET (cell_view));
1102 }
1103
1104 /**
1105  * gtk_cell_view_set_model:
1106  * @cell_view: a #GtkCellView
1107  * @model: (allow-none): a #GtkTreeModel
1108  *
1109  * Sets the model for @cell_view.  If @cell_view already has a model
1110  * set, it will remove it before setting the new model.  If @model is
1111  * %NULL, then it will unset the old model.
1112  *
1113  * Since: 2.6
1114  */
1115 void
1116 gtk_cell_view_set_model (GtkCellView  *cell_view,
1117                          GtkTreeModel *model)
1118 {
1119   g_return_if_fail (GTK_IS_CELL_VIEW (cell_view));
1120   g_return_if_fail (model == NULL || GTK_IS_TREE_MODEL (model));
1121
1122   if (cell_view->priv->model)
1123     {
1124       g_signal_handler_disconnect (cell_view->priv->model, 
1125                                    cell_view->priv->row_changed_id);
1126       cell_view->priv->row_changed_id = 0;
1127
1128       if (cell_view->priv->displayed_row)
1129         gtk_tree_row_reference_free (cell_view->priv->displayed_row);
1130       cell_view->priv->displayed_row = NULL;
1131
1132       g_object_unref (cell_view->priv->model);
1133     }
1134
1135   cell_view->priv->model = model;
1136
1137   if (cell_view->priv->model)
1138     {
1139       g_object_ref (cell_view->priv->model);
1140
1141       cell_view->priv->row_changed_id = 
1142         g_signal_connect (cell_view->priv->model, "row-changed",
1143                           G_CALLBACK (row_changed_cb), cell_view);
1144     }
1145 }
1146
1147 /**
1148  * gtk_cell_view_get_model:
1149  * @cell_view: a #GtkCellView
1150  *
1151  * Returns the model for @cell_view. If no model is used %NULL is
1152  * returned.
1153  *
1154  * Returns: (transfer none): a #GtkTreeModel used or %NULL
1155  *
1156  * Since: 2.16
1157  **/
1158 GtkTreeModel *
1159 gtk_cell_view_get_model (GtkCellView *cell_view)
1160 {
1161   g_return_val_if_fail (GTK_IS_CELL_VIEW (cell_view), NULL);
1162
1163   return cell_view->priv->model;
1164 }
1165
1166 /**
1167  * gtk_cell_view_set_displayed_row:
1168  * @cell_view: a #GtkCellView
1169  * @path: (allow-none): a #GtkTreePath or %NULL to unset.
1170  *
1171  * Sets the row of the model that is currently displayed
1172  * by the #GtkCellView. If the path is unset, then the
1173  * contents of the cellview "stick" at their last value;
1174  * this is not normally a desired result, but may be
1175  * a needed intermediate state if say, the model for
1176  * the #GtkCellView becomes temporarily empty.
1177  *
1178  * Since: 2.6
1179  **/
1180 void
1181 gtk_cell_view_set_displayed_row (GtkCellView *cell_view,
1182                                  GtkTreePath *path)
1183 {
1184   g_return_if_fail (GTK_IS_CELL_VIEW (cell_view));
1185   g_return_if_fail (GTK_IS_TREE_MODEL (cell_view->priv->model));
1186
1187   if (cell_view->priv->displayed_row)
1188     gtk_tree_row_reference_free (cell_view->priv->displayed_row);
1189
1190   if (path)
1191     {
1192       cell_view->priv->displayed_row =
1193         gtk_tree_row_reference_new (cell_view->priv->model, path);
1194     }
1195   else
1196     cell_view->priv->displayed_row = NULL;
1197
1198   /* force resize and redraw */
1199   gtk_widget_queue_resize (GTK_WIDGET (cell_view));
1200   gtk_widget_queue_draw (GTK_WIDGET (cell_view));
1201 }
1202
1203 /**
1204  * gtk_cell_view_get_displayed_row:
1205  * @cell_view: a #GtkCellView
1206  *
1207  * Returns a #GtkTreePath referring to the currently 
1208  * displayed row. If no row is currently displayed, 
1209  * %NULL is returned.
1210  *
1211  * Returns: the currently displayed row or %NULL
1212  *
1213  * Since: 2.6
1214  */
1215 GtkTreePath *
1216 gtk_cell_view_get_displayed_row (GtkCellView *cell_view)
1217 {
1218   g_return_val_if_fail (GTK_IS_CELL_VIEW (cell_view), NULL);
1219
1220   if (!cell_view->priv->displayed_row)
1221     return NULL;
1222
1223   return gtk_tree_row_reference_get_path (cell_view->priv->displayed_row);
1224 }
1225
1226 /**
1227  * gtk_cell_view_get_size_of_row:
1228  * @cell_view: a #GtkCellView
1229  * @path: a #GtkTreePath 
1230  * @requisition: (out): return location for the size 
1231  *
1232  * Sets @requisition to the size needed by @cell_view to display 
1233  * the model row pointed to by @path.
1234  * 
1235  * Return value: %TRUE
1236  *
1237  * Since: 2.6
1238  * 
1239  * Deprecated: 3.0: Combo box formerly used this to calculate the
1240  * sizes for cellviews, now you can achieve this by either using
1241  * the #GtkCellView:fit-model property or by setting the currently
1242  * displayed row of the #GtkCellView and using gtk_widget_get_preferred_size().
1243  */
1244 gboolean
1245 gtk_cell_view_get_size_of_row (GtkCellView    *cell_view,
1246                                GtkTreePath    *path,
1247                                GtkRequisition *requisition)
1248 {
1249   GtkTreeRowReference *tmp;
1250   GtkRequisition req;
1251
1252   g_return_val_if_fail (GTK_IS_CELL_VIEW (cell_view), FALSE);
1253   g_return_val_if_fail (path != NULL, FALSE);
1254
1255   tmp = cell_view->priv->displayed_row;
1256   cell_view->priv->displayed_row =
1257     gtk_tree_row_reference_new (cell_view->priv->model, path);
1258
1259   gtk_widget_get_preferred_width (GTK_WIDGET (cell_view), &req.width, NULL);
1260   gtk_widget_get_preferred_height_for_width (GTK_WIDGET (cell_view), req.width, &req.height, NULL);
1261
1262   gtk_tree_row_reference_free (cell_view->priv->displayed_row);
1263   cell_view->priv->displayed_row = tmp;
1264
1265   if (requisition)
1266     *requisition = req;
1267
1268   return TRUE;
1269 }
1270
1271 /**
1272  * gtk_cell_view_set_background_color:
1273  * @cell_view: a #GtkCellView
1274  * @color: the new background color
1275  *
1276  * Sets the background color of @view.
1277  *
1278  * Since: 2.6
1279  *
1280  * Deprecated: 3.4: Use gtk_cell_view_set_background_rgba() instead.
1281  */
1282 void
1283 gtk_cell_view_set_background_color (GtkCellView    *cell_view,
1284                                     const GdkColor *color)
1285 {
1286   g_return_if_fail (GTK_IS_CELL_VIEW (cell_view));
1287
1288   if (color)
1289     {
1290       if (!cell_view->priv->background_set)
1291         {
1292           cell_view->priv->background_set = TRUE;
1293           g_object_notify (G_OBJECT (cell_view), "background-set");
1294         }
1295
1296       cell_view->priv->background.red = color->red / 65535.;
1297       cell_view->priv->background.green = color->green / 65535.;
1298       cell_view->priv->background.blue = color->blue / 65535.;
1299       cell_view->priv->background.alpha = 1;
1300     }
1301   else
1302     {
1303       if (cell_view->priv->background_set)
1304         {
1305           cell_view->priv->background_set = FALSE;
1306           g_object_notify (G_OBJECT (cell_view), "background-set");
1307         }
1308     }
1309
1310   gtk_widget_queue_draw (GTK_WIDGET (cell_view));
1311 }
1312
1313 /**
1314  * gtk_cell_view_set_background_rgba:
1315  * @cell_view: a #GtkCellView
1316  * @rgba: the new background color
1317  *
1318  * Sets the background color of @cell_view.
1319  *
1320  * Since: 3.0
1321  */
1322 void
1323 gtk_cell_view_set_background_rgba (GtkCellView   *cell_view,
1324                                    const GdkRGBA *rgba)
1325 {
1326   g_return_if_fail (GTK_IS_CELL_VIEW (cell_view));
1327
1328   if (rgba)
1329     {
1330       if (!cell_view->priv->background_set)
1331         {
1332           cell_view->priv->background_set = TRUE;
1333           g_object_notify (G_OBJECT (cell_view), "background-set");
1334         }
1335
1336       cell_view->priv->background = *rgba;
1337     }
1338   else
1339     {
1340       if (cell_view->priv->background_set)
1341         {
1342           cell_view->priv->background_set = FALSE;
1343           g_object_notify (G_OBJECT (cell_view), "background-set");
1344         }
1345     }
1346
1347   gtk_widget_queue_draw (GTK_WIDGET (cell_view));
1348 }
1349
1350 /**
1351  * gtk_cell_view_get_draw_sensitive:
1352  * @cell_view: a #GtkCellView
1353  *
1354  * Gets whether @cell_view is configured to draw all of its
1355  * cells in a sensitive state.
1356  *
1357  * Return value: whether @cell_view draws all of its
1358  * cells in a sensitive state
1359  *
1360  * Since: 3.0
1361  */
1362 gboolean
1363 gtk_cell_view_get_draw_sensitive (GtkCellView     *cell_view)
1364 {
1365   GtkCellViewPrivate *priv;
1366
1367   g_return_val_if_fail (GTK_IS_CELL_VIEW (cell_view), FALSE);
1368
1369   priv = cell_view->priv;
1370
1371   return priv->draw_sensitive;
1372 }
1373
1374 /**
1375  * gtk_cell_view_set_draw_sensitive:
1376  * @cell_view: a #GtkCellView
1377  * @draw_sensitive: whether to draw all cells in a sensitive state.
1378  *
1379  * Sets whether @cell_view should draw all of its
1380  * cells in a sensitive state, this is used by #GtkComboBox menus
1381  * to ensure that rows with insensitive cells that contain
1382  * children appear sensitive in the parent menu item.
1383  *
1384  * Since: 3.0
1385  */
1386 void
1387 gtk_cell_view_set_draw_sensitive (GtkCellView     *cell_view,
1388                                   gboolean         draw_sensitive)
1389 {
1390   GtkCellViewPrivate *priv;
1391
1392   g_return_if_fail (GTK_IS_CELL_VIEW (cell_view));
1393
1394   priv = cell_view->priv;
1395
1396   if (priv->draw_sensitive != draw_sensitive)
1397     {
1398       priv->draw_sensitive = draw_sensitive;
1399
1400       g_object_notify (G_OBJECT (cell_view), "draw-sensitive");
1401     }
1402 }
1403
1404 /**
1405  * gtk_cell_view_get_fit_model:
1406  * @cell_view: a #GtkCellView
1407  *
1408  * Gets whether @cell_view is configured to request space
1409  * to fit the entire #GtkTreeModel.
1410  *
1411  * Return value: whether @cell_view requests space to fit
1412  * the entire #GtkTreeModel.
1413  *
1414  * Since: 3.0
1415  */
1416 gboolean
1417 gtk_cell_view_get_fit_model (GtkCellView     *cell_view)
1418 {
1419   GtkCellViewPrivate *priv;
1420
1421   g_return_val_if_fail (GTK_IS_CELL_VIEW (cell_view), FALSE);
1422
1423   priv = cell_view->priv;
1424
1425   return priv->fit_model;
1426 }
1427
1428 /**
1429  * gtk_cell_view_set_fit_model:
1430  * @cell_view: a #GtkCellView
1431  * @fit_model: whether @cell_view should request space for the whole model.
1432  *
1433  * Sets whether @cell_view should request space to fit the entire #GtkTreeModel.
1434  *
1435  * This is used by #GtkComboBox to ensure that the cell view displayed on
1436  * the combo box's button always gets enough space and does not resize
1437  * when selection changes.
1438  *
1439  * Since: 3.0
1440  */
1441 void
1442 gtk_cell_view_set_fit_model (GtkCellView *cell_view,
1443                              gboolean     fit_model)
1444 {
1445   GtkCellViewPrivate *priv;
1446
1447   g_return_if_fail (GTK_IS_CELL_VIEW (cell_view));
1448
1449   priv = cell_view->priv;
1450
1451   if (priv->fit_model != fit_model)
1452     {
1453       priv->fit_model = fit_model;
1454
1455       gtk_cell_area_context_reset (cell_view->priv->context);
1456
1457       g_object_notify (G_OBJECT (cell_view), "fit-model");
1458     }
1459 }