]> Pileus Git - ~andy/gtk/blob - gtk/gtkiconview.c
docs: fix a number of typos and obsolete references
[~andy/gtk] / gtk / gtkiconview.c
1 /* gtkiconview.c
2  * Copyright (C) 2002, 2004  Anders Carlsson <andersca@gnu.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, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include "config.h"
19
20 #include <string.h>
21
22 #include "gtkiconview.h"
23 #include "gtkiconviewprivate.h"
24
25 #include "gtkadjustment.h"
26 #include "gtkcelllayout.h"
27 #include "gtkcellrenderer.h"
28 #include "gtkcellareabox.h"
29 #include "gtkcellareacontext.h"
30 #include "gtkcellrenderertext.h"
31 #include "gtkcellrendererpixbuf.h"
32 #include "gtkorientable.h"
33 #include "gtkmarshalers.h"
34 #include "gtkbindings.h"
35 #include "gtkdnd.h"
36 #include "gtkmain.h"
37 #include "gtkintl.h"
38 #include "gtkaccessible.h"
39 #include "gtkwindow.h"
40 #include "gtkentry.h"
41 #include "gtkcombobox.h"
42 #include "gtkscrollable.h"
43 #include "gtksizerequest.h"
44 #include "gtktreednd.h"
45 #include "gtktypebuiltins.h"
46 #include "gtkprivate.h"
47 #include "a11y/gtkiconviewaccessible.h"
48
49 /**
50  * SECTION:gtkiconview
51  * @title: GtkIconView
52  * @short_description: A widget which displays a list of icons in a grid
53  *
54  * #GtkIconView provides an alternative view on a #GtkTreeModel.
55  * It displays the model as a grid of icons with labels. Like
56  * #GtkTreeView, it allows to select one or multiple items
57  * (depending on the selection mode, see gtk_icon_view_set_selection_mode()).
58  * In addition to selection with the arrow keys, #GtkIconView supports
59  * rubberband selection, which is controlled by dragging the pointer.
60  *
61  * Note that if the tree model is backed by an actual tree store (as
62  * opposed to a flat list where the mapping to icons is obvious),
63  * #GtkIconView will only display the first level of the tree and
64  * ignore the tree's branches.
65  */
66
67 #define SCROLL_EDGE_SIZE 15
68
69 typedef struct _GtkIconViewChild GtkIconViewChild;
70 struct _GtkIconViewChild
71 {
72   GtkWidget    *widget;
73   GdkRectangle  area;
74 };
75
76 /* Signals */
77 enum
78 {
79   ITEM_ACTIVATED,
80   SELECTION_CHANGED,
81   SELECT_ALL,
82   UNSELECT_ALL,
83   SELECT_CURSOR_ITEM,
84   TOGGLE_CURSOR_ITEM,
85   MOVE_CURSOR,
86   ACTIVATE_CURSOR_ITEM,
87   LAST_SIGNAL
88 };
89
90 /* Properties */
91 enum
92 {
93   PROP_0,
94   PROP_PIXBUF_COLUMN,
95   PROP_TEXT_COLUMN,
96   PROP_MARKUP_COLUMN,
97   PROP_SELECTION_MODE,
98   PROP_ITEM_ORIENTATION,
99   PROP_MODEL,
100   PROP_COLUMNS,
101   PROP_ITEM_WIDTH,
102   PROP_SPACING,
103   PROP_ROW_SPACING,
104   PROP_COLUMN_SPACING,
105   PROP_MARGIN,
106   PROP_REORDERABLE,
107   PROP_TOOLTIP_COLUMN,
108   PROP_ITEM_PADDING,
109   PROP_CELL_AREA,
110
111   /* For scrollable interface */
112   PROP_HADJUSTMENT,
113   PROP_VADJUSTMENT,
114   PROP_HSCROLL_POLICY,
115   PROP_VSCROLL_POLICY
116 };
117
118 /* GObject vfuncs */
119 static void             gtk_icon_view_cell_layout_init          (GtkCellLayoutIface *iface);
120 static void             gtk_icon_view_dispose                   (GObject            *object);
121 static GObject         *gtk_icon_view_constructor               (GType               type,
122                                                                  guint               n_construct_properties,
123                                                                  GObjectConstructParam *construct_properties);
124 static void             gtk_icon_view_set_property              (GObject            *object,
125                                                                  guint               prop_id,
126                                                                  const GValue       *value,
127                                                                  GParamSpec         *pspec);
128 static void             gtk_icon_view_get_property              (GObject            *object,
129                                                                  guint               prop_id,
130                                                                  GValue             *value,
131                                                                  GParamSpec         *pspec);
132 /* GtkWidget vfuncs */
133 static void             gtk_icon_view_destroy                   (GtkWidget          *widget);
134 static void             gtk_icon_view_realize                   (GtkWidget          *widget);
135 static void             gtk_icon_view_unrealize                 (GtkWidget          *widget);
136 static void             gtk_icon_view_style_updated             (GtkWidget          *widget);
137 static void             gtk_icon_view_state_flags_changed       (GtkWidget          *widget,
138                                                                  GtkStateFlags       previous_state);
139 static GtkSizeRequestMode gtk_icon_view_get_request_mode        (GtkWidget          *widget);
140 static void             gtk_icon_view_get_preferred_width       (GtkWidget          *widget,
141                                                                  gint               *minimum,
142                                                                  gint               *natural);
143 static void             gtk_icon_view_get_preferred_width_for_height
144                                                                 (GtkWidget          *widget,
145                                                                  gint                height,
146                                                                  gint               *minimum,
147                                                                  gint               *natural);
148 static void             gtk_icon_view_get_preferred_height      (GtkWidget          *widget,
149                                                                  gint               *minimum,
150                                                                  gint               *natural);
151 static void             gtk_icon_view_get_preferred_height_for_width
152                                                                 (GtkWidget          *widget,
153                                                                  gint                width,
154                                                                  gint               *minimum,
155                                                                  gint               *natural);
156 static void             gtk_icon_view_size_allocate             (GtkWidget          *widget,
157                                                                  GtkAllocation      *allocation);
158 static gboolean         gtk_icon_view_draw                      (GtkWidget          *widget,
159                                                                  cairo_t            *cr);
160 static gboolean         gtk_icon_view_motion                    (GtkWidget          *widget,
161                                                                  GdkEventMotion     *event);
162 static gboolean         gtk_icon_view_button_press              (GtkWidget          *widget,
163                                                                  GdkEventButton     *event);
164 static gboolean         gtk_icon_view_button_release            (GtkWidget          *widget,
165                                                                  GdkEventButton     *event);
166 static gboolean         gtk_icon_view_key_press                 (GtkWidget          *widget,
167                                                                  GdkEventKey        *event);
168 static gboolean         gtk_icon_view_key_release               (GtkWidget          *widget,
169                                                                  GdkEventKey        *event);
170
171
172 /* GtkContainer vfuncs */
173 static void             gtk_icon_view_remove                    (GtkContainer       *container,
174                                                                  GtkWidget          *widget);
175 static void             gtk_icon_view_forall                    (GtkContainer       *container,
176                                                                  gboolean            include_internals,
177                                                                  GtkCallback         callback,
178                                                                  gpointer            callback_data);
179
180 /* GtkIconView vfuncs */
181 static void             gtk_icon_view_real_select_all           (GtkIconView        *icon_view);
182 static void             gtk_icon_view_real_unselect_all         (GtkIconView        *icon_view);
183 static void             gtk_icon_view_real_select_cursor_item   (GtkIconView        *icon_view);
184 static void             gtk_icon_view_real_toggle_cursor_item   (GtkIconView        *icon_view);
185 static gboolean         gtk_icon_view_real_activate_cursor_item (GtkIconView        *icon_view);
186
187  /* Internal functions */
188 static void                 gtk_icon_view_set_hadjustment_values         (GtkIconView            *icon_view);
189 static void                 gtk_icon_view_set_vadjustment_values         (GtkIconView            *icon_view);
190 static void                 gtk_icon_view_set_hadjustment                (GtkIconView            *icon_view,
191                                                                           GtkAdjustment          *adjustment);
192 static void                 gtk_icon_view_set_vadjustment                (GtkIconView            *icon_view,
193                                                                           GtkAdjustment          *adjustment);
194 static void                 gtk_icon_view_adjustment_changed             (GtkAdjustment          *adjustment,
195                                                                           GtkIconView            *icon_view);
196 static void                 gtk_icon_view_layout                         (GtkIconView            *icon_view);
197 static void                 gtk_icon_view_paint_item                     (GtkIconView            *icon_view,
198                                                                           cairo_t                *cr,
199                                                                           GtkIconViewItem        *item,
200                                                                           gint                    x,
201                                                                           gint                    y,
202                                                                           gboolean                draw_focus);
203 static void                 gtk_icon_view_paint_rubberband               (GtkIconView            *icon_view,
204                                                                           cairo_t                *cr);
205 static void                 gtk_icon_view_queue_draw_path                (GtkIconView *icon_view,
206                                                                           GtkTreePath *path);
207 static void                 gtk_icon_view_queue_draw_item                (GtkIconView            *icon_view,
208                                                                           GtkIconViewItem        *item);
209 static void                 gtk_icon_view_start_rubberbanding            (GtkIconView            *icon_view,
210                                                                           GdkDevice              *device,
211                                                                           gint                    x,
212                                                                           gint                    y);
213 static void                 gtk_icon_view_stop_rubberbanding             (GtkIconView            *icon_view);
214 static void                 gtk_icon_view_update_rubberband_selection    (GtkIconView            *icon_view);
215 static gboolean             gtk_icon_view_item_hit_test                  (GtkIconView            *icon_view,
216                                                                           GtkIconViewItem        *item,
217                                                                           gint                    x,
218                                                                           gint                    y,
219                                                                           gint                    width,
220                                                                           gint                    height);
221 static gboolean             gtk_icon_view_unselect_all_internal          (GtkIconView            *icon_view);
222 static void                 gtk_icon_view_update_rubberband              (gpointer                data);
223 static void                 gtk_icon_view_item_invalidate_size           (GtkIconViewItem        *item);
224 static void                 gtk_icon_view_invalidate_sizes               (GtkIconView            *icon_view);
225 static void                 gtk_icon_view_add_move_binding               (GtkBindingSet          *binding_set,
226                                                                           guint                   keyval,
227                                                                           guint                   modmask,
228                                                                           GtkMovementStep         step,
229                                                                           gint                    count);
230 static gboolean             gtk_icon_view_real_move_cursor               (GtkIconView            *icon_view,
231                                                                           GtkMovementStep         step,
232                                                                           gint                    count);
233 static void                 gtk_icon_view_move_cursor_up_down            (GtkIconView            *icon_view,
234                                                                           gint                    count);
235 static void                 gtk_icon_view_move_cursor_page_up_down       (GtkIconView            *icon_view,
236                                                                           gint                    count);
237 static void                 gtk_icon_view_move_cursor_left_right         (GtkIconView            *icon_view,
238                                                                           gint                    count);
239 static void                 gtk_icon_view_move_cursor_start_end          (GtkIconView            *icon_view,
240                                                                           gint                    count);
241 static void                 gtk_icon_view_scroll_to_item                 (GtkIconView            *icon_view,
242                                                                           GtkIconViewItem        *item);
243 static gboolean             gtk_icon_view_select_all_between             (GtkIconView            *icon_view,
244                                                                           GtkIconViewItem        *anchor,
245                                                                           GtkIconViewItem        *cursor);
246
247 static void                 gtk_icon_view_ensure_cell_area               (GtkIconView            *icon_view,
248                                                                           GtkCellArea            *cell_area);
249
250 static GtkCellArea         *gtk_icon_view_cell_layout_get_area           (GtkCellLayout          *layout);
251
252 static void                 gtk_icon_view_item_selected_changed          (GtkIconView            *icon_view,
253                                                                           GtkIconViewItem        *item);
254
255 static void                 gtk_icon_view_add_editable                   (GtkCellArea            *area,
256                                                                           GtkCellRenderer        *renderer,
257                                                                           GtkCellEditable        *editable,
258                                                                           GdkRectangle           *cell_area,
259                                                                           const gchar            *path,
260                                                                           GtkIconView            *icon_view);
261 static void                 gtk_icon_view_remove_editable                (GtkCellArea            *area,
262                                                                           GtkCellRenderer        *renderer,
263                                                                           GtkCellEditable        *editable,
264                                                                           GtkIconView            *icon_view);
265 static void                 update_text_cell                             (GtkIconView            *icon_view);
266 static void                 update_pixbuf_cell                           (GtkIconView            *icon_view);
267
268 /* Source side drag signals */
269 static void gtk_icon_view_drag_begin       (GtkWidget        *widget,
270                                             GdkDragContext   *context);
271 static void gtk_icon_view_drag_end         (GtkWidget        *widget,
272                                             GdkDragContext   *context);
273 static void gtk_icon_view_drag_data_get    (GtkWidget        *widget,
274                                             GdkDragContext   *context,
275                                             GtkSelectionData *selection_data,
276                                             guint             info,
277                                             guint             time);
278 static void gtk_icon_view_drag_data_delete (GtkWidget        *widget,
279                                             GdkDragContext   *context);
280
281 /* Target side drag signals */
282 static void     gtk_icon_view_drag_leave         (GtkWidget        *widget,
283                                                   GdkDragContext   *context,
284                                                   guint             time);
285 static gboolean gtk_icon_view_drag_motion        (GtkWidget        *widget,
286                                                   GdkDragContext   *context,
287                                                   gint              x,
288                                                   gint              y,
289                                                   guint             time);
290 static gboolean gtk_icon_view_drag_drop          (GtkWidget        *widget,
291                                                   GdkDragContext   *context,
292                                                   gint              x,
293                                                   gint              y,
294                                                   guint             time);
295 static void     gtk_icon_view_drag_data_received (GtkWidget        *widget,
296                                                   GdkDragContext   *context,
297                                                   gint              x,
298                                                   gint              y,
299                                                   GtkSelectionData *selection_data,
300                                                   guint             info,
301                                                   guint             time);
302 static gboolean gtk_icon_view_maybe_begin_drag   (GtkIconView             *icon_view,
303                                                   GdkEventMotion          *event);
304
305 static void     remove_scroll_timeout            (GtkIconView *icon_view);
306
307 /* GtkBuildable */
308 static GtkBuildableIface *parent_buildable_iface;
309 static void     gtk_icon_view_buildable_init             (GtkBuildableIface *iface);
310 static gboolean gtk_icon_view_buildable_custom_tag_start (GtkBuildable  *buildable,
311                                                           GtkBuilder    *builder,
312                                                           GObject       *child,
313                                                           const gchar   *tagname,
314                                                           GMarkupParser *parser,
315                                                           gpointer      *data);
316 static void     gtk_icon_view_buildable_custom_tag_end   (GtkBuildable  *buildable,
317                                                           GtkBuilder    *builder,
318                                                           GObject       *child,
319                                                           const gchar   *tagname,
320                                                           gpointer      *data);
321
322 static guint icon_view_signals[LAST_SIGNAL] = { 0 };
323
324 G_DEFINE_TYPE_WITH_CODE (GtkIconView, gtk_icon_view, GTK_TYPE_CONTAINER,
325                          G_IMPLEMENT_INTERFACE (GTK_TYPE_CELL_LAYOUT,
326                                                 gtk_icon_view_cell_layout_init)
327                          G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
328                                                 gtk_icon_view_buildable_init)
329                          G_IMPLEMENT_INTERFACE (GTK_TYPE_SCROLLABLE, NULL))
330
331 static void
332 gtk_icon_view_class_init (GtkIconViewClass *klass)
333 {
334   GObjectClass *gobject_class;
335   GtkWidgetClass *widget_class;
336   GtkContainerClass *container_class;
337   GtkBindingSet *binding_set;
338   
339   binding_set = gtk_binding_set_by_class (klass);
340
341   g_type_class_add_private (klass, sizeof (GtkIconViewPrivate));
342
343   gobject_class = (GObjectClass *) klass;
344   widget_class = (GtkWidgetClass *) klass;
345   container_class = (GtkContainerClass *) klass;
346
347   gobject_class->constructor = gtk_icon_view_constructor;
348   gobject_class->dispose = gtk_icon_view_dispose;
349   gobject_class->set_property = gtk_icon_view_set_property;
350   gobject_class->get_property = gtk_icon_view_get_property;
351
352   widget_class->destroy = gtk_icon_view_destroy;
353   widget_class->realize = gtk_icon_view_realize;
354   widget_class->unrealize = gtk_icon_view_unrealize;
355   widget_class->style_updated = gtk_icon_view_style_updated;
356   widget_class->get_request_mode = gtk_icon_view_get_request_mode;
357   widget_class->get_preferred_width = gtk_icon_view_get_preferred_width;
358   widget_class->get_preferred_height = gtk_icon_view_get_preferred_height;
359   widget_class->get_preferred_width_for_height = gtk_icon_view_get_preferred_width_for_height;
360   widget_class->get_preferred_height_for_width = gtk_icon_view_get_preferred_height_for_width;
361   widget_class->size_allocate = gtk_icon_view_size_allocate;
362   widget_class->draw = gtk_icon_view_draw;
363   widget_class->motion_notify_event = gtk_icon_view_motion;
364   widget_class->button_press_event = gtk_icon_view_button_press;
365   widget_class->button_release_event = gtk_icon_view_button_release;
366   widget_class->key_press_event = gtk_icon_view_key_press;
367   widget_class->key_release_event = gtk_icon_view_key_release;
368   widget_class->drag_begin = gtk_icon_view_drag_begin;
369   widget_class->drag_end = gtk_icon_view_drag_end;
370   widget_class->drag_data_get = gtk_icon_view_drag_data_get;
371   widget_class->drag_data_delete = gtk_icon_view_drag_data_delete;
372   widget_class->drag_leave = gtk_icon_view_drag_leave;
373   widget_class->drag_motion = gtk_icon_view_drag_motion;
374   widget_class->drag_drop = gtk_icon_view_drag_drop;
375   widget_class->drag_data_received = gtk_icon_view_drag_data_received;
376   widget_class->state_flags_changed = gtk_icon_view_state_flags_changed;
377
378   container_class->remove = gtk_icon_view_remove;
379   container_class->forall = gtk_icon_view_forall;
380
381   klass->select_all = gtk_icon_view_real_select_all;
382   klass->unselect_all = gtk_icon_view_real_unselect_all;
383   klass->select_cursor_item = gtk_icon_view_real_select_cursor_item;
384   klass->toggle_cursor_item = gtk_icon_view_real_toggle_cursor_item;
385   klass->activate_cursor_item = gtk_icon_view_real_activate_cursor_item;  
386   klass->move_cursor = gtk_icon_view_real_move_cursor;
387   
388   /* Properties */
389   /**
390    * GtkIconView:selection-mode:
391    * 
392    * The ::selection-mode property specifies the selection mode of
393    * icon view. If the mode is #GTK_SELECTION_MULTIPLE, rubberband selection
394    * is enabled, for the other modes, only keyboard selection is possible.
395    *
396    * Since: 2.6
397    */
398   g_object_class_install_property (gobject_class,
399                                    PROP_SELECTION_MODE,
400                                    g_param_spec_enum ("selection-mode",
401                                                       P_("Selection mode"),
402                                                       P_("The selection mode"),
403                                                       GTK_TYPE_SELECTION_MODE,
404                                                       GTK_SELECTION_SINGLE,
405                                                       GTK_PARAM_READWRITE));
406
407   /**
408    * GtkIconView:pixbuf-column:
409    *
410    * The ::pixbuf-column property contains the number of the model column
411    * containing the pixbufs which are displayed. The pixbuf column must be 
412    * of type #GDK_TYPE_PIXBUF. Setting this property to -1 turns off the
413    * display of pixbufs.
414    *
415    * Since: 2.6
416    */
417   g_object_class_install_property (gobject_class,
418                                    PROP_PIXBUF_COLUMN,
419                                    g_param_spec_int ("pixbuf-column",
420                                                      P_("Pixbuf column"),
421                                                      P_("Model column used to retrieve the icon pixbuf from"),
422                                                      -1, G_MAXINT, -1,
423                                                      GTK_PARAM_READWRITE));
424
425   /**
426    * GtkIconView:text-column:
427    *
428    * The ::text-column property contains the number of the model column
429    * containing the texts which are displayed. The text column must be 
430    * of type #G_TYPE_STRING. If this property and the :markup-column 
431    * property are both set to -1, no texts are displayed.   
432    *
433    * Since: 2.6
434    */
435   g_object_class_install_property (gobject_class,
436                                    PROP_TEXT_COLUMN,
437                                    g_param_spec_int ("text-column",
438                                                      P_("Text column"),
439                                                      P_("Model column used to retrieve the text from"),
440                                                      -1, G_MAXINT, -1,
441                                                      GTK_PARAM_READWRITE));
442
443   
444   /**
445    * GtkIconView:markup-column:
446    *
447    * The ::markup-column property contains the number of the model column
448    * containing markup information to be displayed. The markup column must be 
449    * of type #G_TYPE_STRING. If this property and the :text-column property 
450    * are both set to column numbers, it overrides the text column.
451    * If both are set to -1, no texts are displayed.   
452    *
453    * Since: 2.6
454    */
455   g_object_class_install_property (gobject_class,
456                                    PROP_MARKUP_COLUMN,
457                                    g_param_spec_int ("markup-column",
458                                                      P_("Markup column"),
459                                                      P_("Model column used to retrieve the text if using Pango markup"),
460                                                      -1, G_MAXINT, -1,
461                                                      GTK_PARAM_READWRITE));
462   
463   g_object_class_install_property (gobject_class,
464                                    PROP_MODEL,
465                                    g_param_spec_object ("model",
466                                                         P_("Icon View Model"),
467                                                         P_("The model for the icon view"),
468                                                         GTK_TYPE_TREE_MODEL,
469                                                         GTK_PARAM_READWRITE));
470   
471   /**
472    * GtkIconView:columns:
473    *
474    * The columns property contains the number of the columns in which the
475    * items should be displayed. If it is -1, the number of columns will
476    * be chosen automatically to fill the available area.
477    *
478    * Since: 2.6
479    */
480   g_object_class_install_property (gobject_class,
481                                    PROP_COLUMNS,
482                                    g_param_spec_int ("columns",
483                                                      P_("Number of columns"),
484                                                      P_("Number of columns to display"),
485                                                      -1, G_MAXINT, -1,
486                                                      GTK_PARAM_READWRITE));
487   
488
489   /**
490    * GtkIconView:item-width:
491    *
492    * The item-width property specifies the width to use for each item. 
493    * If it is set to -1, the icon view will automatically determine a 
494    * suitable item size.
495    *
496    * Since: 2.6
497    */
498   g_object_class_install_property (gobject_class,
499                                    PROP_ITEM_WIDTH,
500                                    g_param_spec_int ("item-width",
501                                                      P_("Width for each item"),
502                                                      P_("The width used for each item"),
503                                                      -1, G_MAXINT, -1,
504                                                      GTK_PARAM_READWRITE));  
505
506   /**
507    * GtkIconView:spacing:
508    *
509    * The spacing property specifies the space which is inserted between
510    * the cells (i.e. the icon and the text) of an item.
511    *
512    * Since: 2.6
513    */
514   g_object_class_install_property (gobject_class,
515                                    PROP_SPACING,
516                                    g_param_spec_int ("spacing",
517                                                      P_("Spacing"),
518                                                      P_("Space which is inserted between cells of an item"),
519                                                      0, G_MAXINT, 0,
520                                                      GTK_PARAM_READWRITE));
521
522   /**
523    * GtkIconView:row-spacing:
524    *
525    * The row-spacing property specifies the space which is inserted between
526    * the rows of the icon view.
527    *
528    * Since: 2.6
529    */
530   g_object_class_install_property (gobject_class,
531                                    PROP_ROW_SPACING,
532                                    g_param_spec_int ("row-spacing",
533                                                      P_("Row Spacing"),
534                                                      P_("Space which is inserted between grid rows"),
535                                                      0, G_MAXINT, 6,
536                                                      GTK_PARAM_READWRITE));
537
538   /**
539    * GtkIconView:column-spacing:
540    *
541    * The column-spacing property specifies the space which is inserted between
542    * the columns of the icon view.
543    *
544    * Since: 2.6
545    */
546   g_object_class_install_property (gobject_class,
547                                    PROP_COLUMN_SPACING,
548                                    g_param_spec_int ("column-spacing",
549                                                      P_("Column Spacing"),
550                                                      P_("Space which is inserted between grid columns"),
551                                                      0, G_MAXINT, 6,
552                                                      GTK_PARAM_READWRITE));
553
554   /**
555    * GtkIconView:margin:
556    *
557    * The margin property specifies the space which is inserted 
558    * at the edges of the icon view.
559    *
560    * Since: 2.6
561    */
562   g_object_class_install_property (gobject_class,
563                                    PROP_MARGIN,
564                                    g_param_spec_int ("margin",
565                                                      P_("Margin"),
566                                                      P_("Space which is inserted at the edges of the icon view"),
567                                                      0, G_MAXINT, 6,
568                                                      GTK_PARAM_READWRITE));
569
570   /**
571    * GtkIconView:item-orientation:
572    *
573    * The item-orientation property specifies how the cells (i.e. the icon and
574    * the text) of the item are positioned relative to each other.
575    *
576    * Since: 2.6
577    */
578   g_object_class_install_property (gobject_class,
579                                    PROP_ITEM_ORIENTATION,
580                                    g_param_spec_enum ("item-orientation",
581                                                       P_("Item Orientation"),
582                                                       P_("How the text and icon of each item are positioned relative to each other"),
583                                                       GTK_TYPE_ORIENTATION,
584                                                       GTK_ORIENTATION_VERTICAL,
585                                                       GTK_PARAM_READWRITE));
586
587   /**
588    * GtkIconView:reorderable:
589    *
590    * The reorderable property specifies if the items can be reordered
591    * by DND.
592    *
593    * Since: 2.8
594    */
595   g_object_class_install_property (gobject_class,
596                                    PROP_REORDERABLE,
597                                    g_param_spec_boolean ("reorderable",
598                                                          P_("Reorderable"),
599                                                          P_("View is reorderable"),
600                                                          FALSE,
601                                                          G_PARAM_READWRITE));
602
603     g_object_class_install_property (gobject_class,
604                                      PROP_TOOLTIP_COLUMN,
605                                      g_param_spec_int ("tooltip-column",
606                                                        P_("Tooltip Column"),
607                                                        P_("The column in the model containing the tooltip texts for the items"),
608                                                        -1,
609                                                        G_MAXINT,
610                                                        -1,
611                                                        GTK_PARAM_READWRITE));
612
613   /**
614    * GtkIconView:item-padding:
615    *
616    * The item-padding property specifies the padding around each
617    * of the icon view's item.
618    *
619    * Since: 2.18
620    */
621   g_object_class_install_property (gobject_class,
622                                    PROP_ITEM_PADDING,
623                                    g_param_spec_int ("item-padding",
624                                                      P_("Item Padding"),
625                                                      P_("Padding around icon view items"),
626                                                      0, G_MAXINT, 6,
627                                                      GTK_PARAM_READWRITE));
628
629   /**
630    * GtkIconView:cell-area:
631    *
632    * The #GtkCellArea used to layout cell renderers for this view.
633    *
634    * If no area is specified when creating the icon view with gtk_icon_view_new_with_area() 
635    * a #GtkCellAreaBox will be used.
636    *
637    * Since: 3.0
638    */
639   g_object_class_install_property (gobject_class,
640                                    PROP_CELL_AREA,
641                                    g_param_spec_object ("cell-area",
642                                                         P_("Cell Area"),
643                                                         P_("The GtkCellArea used to layout cells"),
644                                                         GTK_TYPE_CELL_AREA,
645                                                         GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
646
647   /* Scrollable interface properties */
648   g_object_class_override_property (gobject_class, PROP_HADJUSTMENT,    "hadjustment");
649   g_object_class_override_property (gobject_class, PROP_VADJUSTMENT,    "vadjustment");
650   g_object_class_override_property (gobject_class, PROP_HSCROLL_POLICY, "hscroll-policy");
651   g_object_class_override_property (gobject_class, PROP_VSCROLL_POLICY, "vscroll-policy");
652
653   /* Style properties */
654   gtk_widget_class_install_style_property (widget_class,
655                                            g_param_spec_boxed ("selection-box-color",
656                                                                P_("Selection Box Color"),
657                                                                P_("Color of the selection box"),
658                                                                GDK_TYPE_COLOR,
659                                                                GTK_PARAM_READABLE));
660
661   gtk_widget_class_install_style_property (widget_class,
662                                            g_param_spec_uchar ("selection-box-alpha",
663                                                                P_("Selection Box Alpha"),
664                                                                P_("Opacity of the selection box"),
665                                                                0, 0xff,
666                                                                0x40,
667                                                                GTK_PARAM_READABLE));
668
669   /* Signals */
670   /**
671    * GtkIconView::item-activated:
672    * @iconview: the object on which the signal is emitted
673    * @path: the #GtkTreePath for the activated item
674    *
675    * The ::item-activated signal is emitted when the method
676    * gtk_icon_view_item_activated() is called or the user double 
677    * clicks an item. It is also emitted when a non-editable item
678    * is selected and one of the keys: Space, Return or Enter is
679    * pressed.
680    */
681   icon_view_signals[ITEM_ACTIVATED] =
682     g_signal_new (I_("item-activated"),
683                   G_TYPE_FROM_CLASS (gobject_class),
684                   G_SIGNAL_RUN_LAST,
685                   G_STRUCT_OFFSET (GtkIconViewClass, item_activated),
686                   NULL, NULL,
687                   g_cclosure_marshal_VOID__BOXED,
688                   G_TYPE_NONE, 1,
689                   GTK_TYPE_TREE_PATH);
690
691   /**
692    * GtkIconView::selection-changed:
693    * @iconview: the object on which the signal is emitted
694    *
695    * The ::selection-changed signal is emitted when the selection
696    * (i.e. the set of selected items) changes.
697    */
698   icon_view_signals[SELECTION_CHANGED] =
699     g_signal_new (I_("selection-changed"),
700                   G_TYPE_FROM_CLASS (gobject_class),
701                   G_SIGNAL_RUN_FIRST,
702                   G_STRUCT_OFFSET (GtkIconViewClass, selection_changed),
703                   NULL, NULL,
704                   g_cclosure_marshal_VOID__VOID,
705                   G_TYPE_NONE, 0);
706   
707   /**
708    * GtkIconView::select-all:
709    * @iconview: the object on which the signal is emitted
710    *
711    * A <link linkend="keybinding-signals">keybinding signal</link>
712    * which gets emitted when the user selects all items.
713    *
714    * Applications should not connect to it, but may emit it with
715    * g_signal_emit_by_name() if they need to control selection
716    * programmatically.
717    * 
718    * The default binding for this signal is Ctrl-a.
719    */
720   icon_view_signals[SELECT_ALL] =
721     g_signal_new (I_("select-all"),
722                   G_TYPE_FROM_CLASS (gobject_class),
723                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
724                   G_STRUCT_OFFSET (GtkIconViewClass, select_all),
725                   NULL, NULL,
726                   g_cclosure_marshal_VOID__VOID,
727                   G_TYPE_NONE, 0);
728   
729   /**
730    * GtkIconView::unselect-all:
731    * @iconview: the object on which the signal is emitted
732    *
733    * A <link linkend="keybinding-signals">keybinding signal</link>
734    * which gets emitted when the user unselects all items.
735    *
736    * Applications should not connect to it, but may emit it with
737    * g_signal_emit_by_name() if they need to control selection
738    * programmatically.
739    * 
740    * The default binding for this signal is Ctrl-Shift-a. 
741    */
742   icon_view_signals[UNSELECT_ALL] =
743     g_signal_new (I_("unselect-all"),
744                   G_TYPE_FROM_CLASS (gobject_class),
745                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
746                   G_STRUCT_OFFSET (GtkIconViewClass, unselect_all),
747                   NULL, NULL,
748                   g_cclosure_marshal_VOID__VOID,
749                   G_TYPE_NONE, 0);
750
751   /**
752    * GtkIconView::select-cursor-item:
753    * @iconview: the object on which the signal is emitted
754    *
755    * A <link linkend="keybinding-signals">keybinding signal</link>
756    * which gets emitted when the user selects the item that is currently
757    * focused.
758    *
759    * Applications should not connect to it, but may emit it with
760    * g_signal_emit_by_name() if they need to control selection
761    * programmatically.
762    * 
763    * There is no default binding for this signal.
764    */
765   icon_view_signals[SELECT_CURSOR_ITEM] =
766     g_signal_new (I_("select-cursor-item"),
767                   G_TYPE_FROM_CLASS (gobject_class),
768                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
769                   G_STRUCT_OFFSET (GtkIconViewClass, select_cursor_item),
770                   NULL, NULL,
771                   g_cclosure_marshal_VOID__VOID,
772                   G_TYPE_NONE, 0);
773
774   /**
775    * GtkIconView::toggle-cursor-item:
776    * @iconview: the object on which the signal is emitted
777    *
778    * A <link linkend="keybinding-signals">keybinding signal</link>
779    * which gets emitted when the user toggles whether the currently
780    * focused item is selected or not. The exact effect of this 
781    * depend on the selection mode.
782    *
783    * Applications should not connect to it, but may emit it with
784    * g_signal_emit_by_name() if they need to control selection
785    * programmatically.
786    * 
787    * There is no default binding for this signal is Ctrl-Space.
788    */
789   icon_view_signals[TOGGLE_CURSOR_ITEM] =
790     g_signal_new (I_("toggle-cursor-item"),
791                   G_TYPE_FROM_CLASS (gobject_class),
792                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
793                   G_STRUCT_OFFSET (GtkIconViewClass, toggle_cursor_item),
794                   NULL, NULL,
795                   g_cclosure_marshal_VOID__VOID,
796                   G_TYPE_NONE, 0);
797
798   /**
799    * GtkIconView::activate-cursor-item:
800    * @iconview: the object on which the signal is emitted
801    *
802    * A <link linkend="keybinding-signals">keybinding signal</link>
803    * which gets emitted when the user activates the currently 
804    * focused item. 
805    *
806    * Applications should not connect to it, but may emit it with
807    * g_signal_emit_by_name() if they need to control activation
808    * programmatically.
809    * 
810    * The default bindings for this signal are Space, Return and Enter.
811    */
812   icon_view_signals[ACTIVATE_CURSOR_ITEM] =
813     g_signal_new (I_("activate-cursor-item"),
814                   G_TYPE_FROM_CLASS (gobject_class),
815                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
816                   G_STRUCT_OFFSET (GtkIconViewClass, activate_cursor_item),
817                   NULL, NULL,
818                   _gtk_marshal_BOOLEAN__VOID,
819                   G_TYPE_BOOLEAN, 0);
820   
821   /**
822    * GtkIconView::move-cursor:
823    * @iconview: the object which received the signal
824    * @step: the granularity of the move, as a #GtkMovementStep
825    * @count: the number of @step units to move
826    *
827    * The ::move-cursor signal is a
828    * <link linkend="keybinding-signals">keybinding signal</link>
829    * which gets emitted when the user initiates a cursor movement.
830    *
831    * Applications should not connect to it, but may emit it with
832    * g_signal_emit_by_name() if they need to control the cursor
833    * programmatically.
834    *
835    * The default bindings for this signal include
836    * <itemizedlist>
837    * <listitem>Arrow keys which move by individual steps</listitem>
838    * <listitem>Home/End keys which move to the first/last item</listitem>
839    * <listitem>PageUp/PageDown which move by "pages"</listitem>
840    * </itemizedlist>
841    *
842    * All of these will extend the selection when combined with
843    * the Shift modifier.
844    */
845   icon_view_signals[MOVE_CURSOR] =
846     g_signal_new (I_("move-cursor"),
847                   G_TYPE_FROM_CLASS (gobject_class),
848                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
849                   G_STRUCT_OFFSET (GtkIconViewClass, move_cursor),
850                   NULL, NULL,
851                   _gtk_marshal_BOOLEAN__ENUM_INT,
852                   G_TYPE_BOOLEAN, 2,
853                   GTK_TYPE_MOVEMENT_STEP,
854                   G_TYPE_INT);
855
856   /* Key bindings */
857   gtk_binding_entry_add_signal (binding_set, GDK_KEY_a, GDK_CONTROL_MASK, 
858                                 "select-all", 0);
859   gtk_binding_entry_add_signal (binding_set, GDK_KEY_a, GDK_CONTROL_MASK | GDK_SHIFT_MASK, 
860                                 "unselect-all", 0);
861   gtk_binding_entry_add_signal (binding_set, GDK_KEY_space, GDK_CONTROL_MASK, 
862                                 "toggle-cursor-item", 0);
863   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Space, GDK_CONTROL_MASK,
864                                 "toggle-cursor-item", 0);
865
866   gtk_binding_entry_add_signal (binding_set, GDK_KEY_space, 0, 
867                                 "activate-cursor-item", 0);
868   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Space, 0,
869                                 "activate-cursor-item", 0);
870   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Return, 0, 
871                                 "activate-cursor-item", 0);
872   gtk_binding_entry_add_signal (binding_set, GDK_KEY_ISO_Enter, 0, 
873                                 "activate-cursor-item", 0);
874   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Enter, 0, 
875                                 "activate-cursor-item", 0);
876
877   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_Up, 0,
878                                   GTK_MOVEMENT_DISPLAY_LINES, -1);
879   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_KP_Up, 0,
880                                   GTK_MOVEMENT_DISPLAY_LINES, -1);
881
882   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_Down, 0,
883                                   GTK_MOVEMENT_DISPLAY_LINES, 1);
884   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_KP_Down, 0,
885                                   GTK_MOVEMENT_DISPLAY_LINES, 1);
886
887   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_p, GDK_CONTROL_MASK,
888                                   GTK_MOVEMENT_DISPLAY_LINES, -1);
889
890   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_n, GDK_CONTROL_MASK,
891                                   GTK_MOVEMENT_DISPLAY_LINES, 1);
892
893   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_Home, 0,
894                                   GTK_MOVEMENT_BUFFER_ENDS, -1);
895   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_KP_Home, 0,
896                                   GTK_MOVEMENT_BUFFER_ENDS, -1);
897
898   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_End, 0,
899                                   GTK_MOVEMENT_BUFFER_ENDS, 1);
900   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_KP_End, 0,
901                                   GTK_MOVEMENT_BUFFER_ENDS, 1);
902
903   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_Page_Up, 0,
904                                   GTK_MOVEMENT_PAGES, -1);
905   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_KP_Page_Up, 0,
906                                   GTK_MOVEMENT_PAGES, -1);
907
908   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_Page_Down, 0,
909                                   GTK_MOVEMENT_PAGES, 1);
910   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_KP_Page_Down, 0,
911                                   GTK_MOVEMENT_PAGES, 1);
912
913   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_Right, 0, 
914                                   GTK_MOVEMENT_VISUAL_POSITIONS, 1);
915   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_Left, 0, 
916                                   GTK_MOVEMENT_VISUAL_POSITIONS, -1);
917
918   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_KP_Right, 0, 
919                                   GTK_MOVEMENT_VISUAL_POSITIONS, 1);
920   gtk_icon_view_add_move_binding (binding_set, GDK_KEY_KP_Left, 0, 
921                                   GTK_MOVEMENT_VISUAL_POSITIONS, -1);
922
923   gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_ICON_VIEW_ACCESSIBLE);
924 }
925
926 static void
927 gtk_icon_view_buildable_init (GtkBuildableIface *iface)
928 {
929   parent_buildable_iface = g_type_interface_peek_parent (iface);
930   iface->add_child = _gtk_cell_layout_buildable_add_child;
931   iface->custom_tag_start = gtk_icon_view_buildable_custom_tag_start;
932   iface->custom_tag_end = gtk_icon_view_buildable_custom_tag_end;
933 }
934
935 static void
936 gtk_icon_view_cell_layout_init (GtkCellLayoutIface *iface)
937 {
938   iface->get_area = gtk_icon_view_cell_layout_get_area;
939 }
940
941 static void
942 gtk_icon_view_init (GtkIconView *icon_view)
943 {
944   icon_view->priv = G_TYPE_INSTANCE_GET_PRIVATE (icon_view,
945                                                  GTK_TYPE_ICON_VIEW,
946                                                  GtkIconViewPrivate);
947
948   icon_view->priv->width = 0;
949   icon_view->priv->height = 0;
950   icon_view->priv->selection_mode = GTK_SELECTION_SINGLE;
951   icon_view->priv->pressed_button = -1;
952   icon_view->priv->press_start_x = -1;
953   icon_view->priv->press_start_y = -1;
954   icon_view->priv->text_column = -1;
955   icon_view->priv->markup_column = -1;  
956   icon_view->priv->pixbuf_column = -1;
957   icon_view->priv->text_cell = NULL;
958   icon_view->priv->pixbuf_cell = NULL;  
959   icon_view->priv->tooltip_column = -1;  
960
961   gtk_widget_set_can_focus (GTK_WIDGET (icon_view), TRUE);
962
963   icon_view->priv->item_orientation = GTK_ORIENTATION_VERTICAL;
964
965   icon_view->priv->columns = -1;
966   icon_view->priv->item_width = -1;
967   icon_view->priv->spacing = 0;
968   icon_view->priv->row_spacing = 6;
969   icon_view->priv->column_spacing = 6;
970   icon_view->priv->margin = 6;
971   icon_view->priv->item_padding = 6;
972
973   icon_view->priv->draw_focus = TRUE;
974
975   icon_view->priv->row_contexts = 
976     g_ptr_array_new_with_free_func ((GDestroyNotify)g_object_unref);
977 }
978
979 /* GObject methods */
980 static GObject *
981 gtk_icon_view_constructor (GType               type,
982                            guint               n_construct_properties,
983                            GObjectConstructParam *construct_properties)
984 {
985   GtkIconView        *icon_view;
986   GObject            *object;
987
988   object = G_OBJECT_CLASS (gtk_icon_view_parent_class)->constructor
989     (type, n_construct_properties, construct_properties);
990
991   icon_view = (GtkIconView *) object;
992
993   gtk_icon_view_ensure_cell_area (icon_view, NULL);
994
995   return object;
996 }
997
998 static void
999 gtk_icon_view_dispose (GObject *object)
1000 {
1001   GtkIconView *icon_view;
1002   GtkIconViewPrivate *priv;
1003
1004   icon_view = GTK_ICON_VIEW (object);
1005   priv      = icon_view->priv;
1006
1007   if (priv->cell_area_context)
1008     {
1009       g_object_unref (priv->cell_area_context);
1010       priv->cell_area_context = NULL;
1011     }
1012
1013   if (priv->row_contexts)
1014     {
1015       g_ptr_array_free (priv->row_contexts, TRUE);
1016       priv->row_contexts = NULL;
1017     }
1018
1019   if (priv->cell_area)
1020     {
1021       gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
1022
1023       g_signal_handler_disconnect (priv->cell_area, priv->add_editable_id);
1024       g_signal_handler_disconnect (priv->cell_area, priv->remove_editable_id);
1025       priv->add_editable_id = 0;
1026       priv->remove_editable_id = 0;
1027
1028       g_object_unref (priv->cell_area);
1029       priv->cell_area = NULL;
1030     }
1031
1032   G_OBJECT_CLASS (gtk_icon_view_parent_class)->dispose (object);
1033 }
1034
1035 static void
1036 gtk_icon_view_set_property (GObject      *object,
1037                             guint         prop_id,
1038                             const GValue *value,
1039                             GParamSpec   *pspec)
1040 {
1041   GtkIconView *icon_view;
1042   GtkCellArea *area;
1043
1044   icon_view = GTK_ICON_VIEW (object);
1045
1046   switch (prop_id)
1047     {
1048     case PROP_SELECTION_MODE:
1049       gtk_icon_view_set_selection_mode (icon_view, g_value_get_enum (value));
1050       break;
1051     case PROP_PIXBUF_COLUMN:
1052       gtk_icon_view_set_pixbuf_column (icon_view, g_value_get_int (value));
1053       break;
1054     case PROP_TEXT_COLUMN:
1055       gtk_icon_view_set_text_column (icon_view, g_value_get_int (value));
1056       break;
1057     case PROP_MARKUP_COLUMN:
1058       gtk_icon_view_set_markup_column (icon_view, g_value_get_int (value));
1059       break;
1060     case PROP_MODEL:
1061       gtk_icon_view_set_model (icon_view, g_value_get_object (value));
1062       break;
1063     case PROP_ITEM_ORIENTATION:
1064       gtk_icon_view_set_item_orientation (icon_view, g_value_get_enum (value));
1065       break;
1066     case PROP_COLUMNS:
1067       gtk_icon_view_set_columns (icon_view, g_value_get_int (value));
1068       break;
1069     case PROP_ITEM_WIDTH:
1070       gtk_icon_view_set_item_width (icon_view, g_value_get_int (value));
1071       break;
1072     case PROP_SPACING:
1073       gtk_icon_view_set_spacing (icon_view, g_value_get_int (value));
1074       break;
1075     case PROP_ROW_SPACING:
1076       gtk_icon_view_set_row_spacing (icon_view, g_value_get_int (value));
1077       break;
1078     case PROP_COLUMN_SPACING:
1079       gtk_icon_view_set_column_spacing (icon_view, g_value_get_int (value));
1080       break;
1081     case PROP_MARGIN:
1082       gtk_icon_view_set_margin (icon_view, g_value_get_int (value));
1083       break;
1084     case PROP_REORDERABLE:
1085       gtk_icon_view_set_reorderable (icon_view, g_value_get_boolean (value));
1086       break;
1087       
1088     case PROP_TOOLTIP_COLUMN:
1089       gtk_icon_view_set_tooltip_column (icon_view, g_value_get_int (value));
1090       break;
1091
1092     case PROP_ITEM_PADDING:
1093       gtk_icon_view_set_item_padding (icon_view, g_value_get_int (value));
1094       break;
1095
1096     case PROP_CELL_AREA:
1097       /* Construct-only, can only be assigned once */
1098       area = g_value_get_object (value);
1099       if (area)
1100         {
1101           if (icon_view->priv->cell_area != NULL)
1102             {
1103               g_warning ("cell-area has already been set, ignoring construct property");
1104               g_object_ref_sink (area);
1105               g_object_unref (area);
1106             }
1107           else
1108             gtk_icon_view_ensure_cell_area (icon_view, area);
1109         }
1110       break;
1111
1112     case PROP_HADJUSTMENT:
1113       gtk_icon_view_set_hadjustment (icon_view, g_value_get_object (value));
1114       break;
1115     case PROP_VADJUSTMENT:
1116       gtk_icon_view_set_vadjustment (icon_view, g_value_get_object (value));
1117       break;
1118     case PROP_HSCROLL_POLICY:
1119       icon_view->priv->hscroll_policy = g_value_get_enum (value);
1120       gtk_widget_queue_resize (GTK_WIDGET (icon_view));
1121       break;
1122     case PROP_VSCROLL_POLICY:
1123       icon_view->priv->vscroll_policy = g_value_get_enum (value);
1124       gtk_widget_queue_resize (GTK_WIDGET (icon_view));
1125       break;
1126
1127     default:
1128       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1129       break;
1130     }
1131 }
1132
1133 static void
1134 gtk_icon_view_get_property (GObject      *object,
1135                             guint         prop_id,
1136                             GValue       *value,
1137                             GParamSpec   *pspec)
1138 {
1139   GtkIconView *icon_view;
1140
1141   icon_view = GTK_ICON_VIEW (object);
1142
1143   switch (prop_id)
1144     {
1145     case PROP_SELECTION_MODE:
1146       g_value_set_enum (value, icon_view->priv->selection_mode);
1147       break;
1148     case PROP_PIXBUF_COLUMN:
1149       g_value_set_int (value, icon_view->priv->pixbuf_column);
1150       break;
1151     case PROP_TEXT_COLUMN:
1152       g_value_set_int (value, icon_view->priv->text_column);
1153       break;
1154     case PROP_MARKUP_COLUMN:
1155       g_value_set_int (value, icon_view->priv->markup_column);
1156       break;
1157     case PROP_MODEL:
1158       g_value_set_object (value, icon_view->priv->model);
1159       break;
1160     case PROP_ITEM_ORIENTATION:
1161       g_value_set_enum (value, icon_view->priv->item_orientation);
1162       break;
1163     case PROP_COLUMNS:
1164       g_value_set_int (value, icon_view->priv->columns);
1165       break;
1166     case PROP_ITEM_WIDTH:
1167       g_value_set_int (value, icon_view->priv->item_width);
1168       break;
1169     case PROP_SPACING:
1170       g_value_set_int (value, icon_view->priv->spacing);
1171       break;
1172     case PROP_ROW_SPACING:
1173       g_value_set_int (value, icon_view->priv->row_spacing);
1174       break;
1175     case PROP_COLUMN_SPACING:
1176       g_value_set_int (value, icon_view->priv->column_spacing);
1177       break;
1178     case PROP_MARGIN:
1179       g_value_set_int (value, icon_view->priv->margin);
1180       break;
1181     case PROP_REORDERABLE:
1182       g_value_set_boolean (value, icon_view->priv->reorderable);
1183       break;
1184     case PROP_TOOLTIP_COLUMN:
1185       g_value_set_int (value, icon_view->priv->tooltip_column);
1186       break;
1187
1188     case PROP_ITEM_PADDING:
1189       g_value_set_int (value, icon_view->priv->item_padding);
1190       break;
1191
1192     case PROP_CELL_AREA:
1193       g_value_set_object (value, icon_view->priv->cell_area);
1194       break;
1195
1196     case PROP_HADJUSTMENT:
1197       g_value_set_object (value, icon_view->priv->hadjustment);
1198       break;
1199     case PROP_VADJUSTMENT:
1200       g_value_set_object (value, icon_view->priv->vadjustment);
1201       break;
1202     case PROP_HSCROLL_POLICY:
1203       g_value_set_enum (value, icon_view->priv->hscroll_policy);
1204       break;
1205     case PROP_VSCROLL_POLICY:
1206       g_value_set_enum (value, icon_view->priv->vscroll_policy);
1207       break;
1208
1209     default:
1210       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1211       break;
1212     }
1213 }
1214
1215 /* GtkWidget methods */
1216 static void
1217 gtk_icon_view_destroy (GtkWidget *widget)
1218 {
1219   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
1220
1221   gtk_icon_view_set_model (icon_view, NULL);
1222
1223   if (icon_view->priv->scroll_to_path != NULL)
1224     {
1225       gtk_tree_row_reference_free (icon_view->priv->scroll_to_path);
1226       icon_view->priv->scroll_to_path = NULL;
1227     }
1228
1229   remove_scroll_timeout (icon_view);
1230
1231   if (icon_view->priv->hadjustment != NULL)
1232     {
1233       g_object_unref (icon_view->priv->hadjustment);
1234       icon_view->priv->hadjustment = NULL;
1235     }
1236
1237   if (icon_view->priv->vadjustment != NULL)
1238     {
1239       g_object_unref (icon_view->priv->vadjustment);
1240       icon_view->priv->vadjustment = NULL;
1241     }
1242
1243   GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->destroy (widget);
1244 }
1245
1246 static void
1247 gtk_icon_view_realize (GtkWidget *widget)
1248 {
1249   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
1250   GtkAllocation allocation;
1251   GdkWindow *window;
1252   GdkWindowAttr attributes;
1253   gint attributes_mask;
1254   GtkStyleContext *context;
1255
1256   gtk_widget_set_realized (widget, TRUE);
1257
1258   gtk_widget_get_allocation (widget, &allocation);
1259
1260   /* Make the main, clipping window */
1261   attributes.window_type = GDK_WINDOW_CHILD;
1262   attributes.x = allocation.x;
1263   attributes.y = allocation.y;
1264   attributes.width = allocation.width;
1265   attributes.height = allocation.height;
1266   attributes.wclass = GDK_INPUT_OUTPUT;
1267   attributes.visual = gtk_widget_get_visual (widget);
1268   attributes.event_mask = GDK_VISIBILITY_NOTIFY_MASK;
1269
1270   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL;
1271
1272   window = gdk_window_new (gtk_widget_get_parent_window (widget),
1273                            &attributes, attributes_mask);
1274   gtk_widget_set_window (widget, window);
1275   gdk_window_set_user_data (window, widget);
1276
1277   gtk_widget_get_allocation (widget, &allocation);
1278
1279   /* Make the window for the icon view */
1280   attributes.x = 0;
1281   attributes.y = 0;
1282   attributes.width = MAX (icon_view->priv->width, allocation.width);
1283   attributes.height = MAX (icon_view->priv->height, allocation.height);
1284   attributes.event_mask = (GDK_EXPOSURE_MASK |
1285                            GDK_SCROLL_MASK |
1286                            GDK_SMOOTH_SCROLL_MASK |
1287                            GDK_POINTER_MOTION_MASK |
1288                            GDK_BUTTON_PRESS_MASK |
1289                            GDK_BUTTON_RELEASE_MASK |
1290                            GDK_KEY_PRESS_MASK |
1291                            GDK_KEY_RELEASE_MASK) |
1292     gtk_widget_get_events (widget);
1293   
1294   icon_view->priv->bin_window = gdk_window_new (window,
1295                                                 &attributes, attributes_mask);
1296   gdk_window_set_user_data (icon_view->priv->bin_window, widget);
1297
1298   context = gtk_widget_get_style_context (widget);
1299
1300   gtk_style_context_save (context);
1301   gtk_style_context_add_class (context, GTK_STYLE_CLASS_VIEW);
1302   gtk_style_context_set_background (context, icon_view->priv->bin_window);
1303   gtk_style_context_set_background (context, window);
1304   gtk_style_context_restore (context);
1305
1306   gdk_window_show (icon_view->priv->bin_window);
1307 }
1308
1309 static void
1310 gtk_icon_view_unrealize (GtkWidget *widget)
1311 {
1312   GtkIconView *icon_view;
1313
1314   icon_view = GTK_ICON_VIEW (widget);
1315
1316   gdk_window_set_user_data (icon_view->priv->bin_window, NULL);
1317   gdk_window_destroy (icon_view->priv->bin_window);
1318   icon_view->priv->bin_window = NULL;
1319
1320   GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->unrealize (widget);
1321 }
1322
1323 static void
1324 _gtk_icon_view_update_background (GtkIconView *icon_view)
1325 {
1326   GtkWidget *widget = GTK_WIDGET (icon_view);
1327
1328   if (gtk_widget_get_realized (widget))
1329     {
1330       GtkStyleContext *context;
1331
1332       context = gtk_widget_get_style_context (widget);
1333
1334       gtk_style_context_save (context);
1335       gtk_style_context_add_class (context, GTK_STYLE_CLASS_VIEW);
1336
1337       gtk_style_context_set_background (context, gtk_widget_get_window (widget));
1338       gtk_style_context_set_background (context, icon_view->priv->bin_window);
1339
1340       gtk_style_context_restore (context);
1341     }
1342 }
1343
1344 static void
1345 gtk_icon_view_state_flags_changed (GtkWidget     *widget,
1346                                    GtkStateFlags  previous_state)
1347 {
1348   _gtk_icon_view_update_background (GTK_ICON_VIEW (widget));
1349   gtk_widget_queue_draw (widget);
1350 }
1351
1352 static void
1353 gtk_icon_view_style_updated (GtkWidget *widget)
1354 {
1355   GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->style_updated (widget);
1356
1357   _gtk_icon_view_update_background (GTK_ICON_VIEW (widget));
1358   gtk_widget_queue_resize (widget);
1359 }
1360
1361 static gint
1362 gtk_icon_view_get_n_items (GtkIconView *icon_view)
1363 {
1364   GtkIconViewPrivate *priv = icon_view->priv;
1365
1366   if (priv->model == NULL)
1367     return 0;
1368
1369   return gtk_tree_model_iter_n_children (priv->model, NULL);
1370 }
1371
1372 static void
1373 adjust_wrap_width (GtkIconView *icon_view)
1374 {
1375   if (icon_view->priv->text_cell)
1376     {
1377       gint wrap_width = 50;
1378
1379       /* Here we go with the same old guess, try the icon size and set double
1380        * the size of the first icon found in the list, naive but works much
1381        * of the time */
1382       if (icon_view->priv->items && icon_view->priv->pixbuf_cell)
1383         {
1384           gtk_cell_renderer_get_preferred_width (icon_view->priv->pixbuf_cell,
1385                                                  GTK_WIDGET (icon_view),
1386                                                  &wrap_width, NULL);
1387           
1388           wrap_width = MAX (wrap_width * 2, 50);
1389         }
1390       
1391       g_object_set (icon_view->priv->text_cell, "wrap-width", wrap_width, NULL);
1392       g_object_set (icon_view->priv->text_cell, "width", wrap_width, NULL);
1393     }
1394 }
1395
1396 /* General notes about layout
1397  *
1398  * The icon view is layouted like this:
1399  *
1400  * +----------+  s  +----------+
1401  * | padding  |  p  | padding  |
1402  * | +------+ |  a  | +------+ |
1403  * | | cell | |  c  | | cell | |
1404  * | +------+ |  i  | +------+ |
1405  * |          |  n  |          |
1406  * +----------+  g  +----------+
1407  *
1408  * In size request and allocation code, there are 3 sizes that are used:
1409  * * cell size
1410  *   This is the size returned by gtk_cell_area_get_preferred_foo(). In places
1411  *   where code is interacting with the cell area and renderers this is useful.
1412  * * padded size
1413  *   This is the cell size plus the item padding on each side.
1414  * * spaced size
1415  *   This is the padded size plus the spacing. This is what's used for most
1416  *   calculations because it can (ab)use the following formula:
1417  *   iconview_size = 2 * margin + n_items * spaced_size - spacing
1418  * So when reading this code and fixing my bugs where I confuse these two, be
1419  * aware of this distinction.
1420  */
1421 static void
1422 cell_area_get_preferred_size (GtkIconView        *icon_view,
1423                               GtkCellAreaContext *context,
1424                               GtkOrientation      orientation,
1425                               gint                for_size,
1426                               gint               *minimum,
1427                               gint               *natural)
1428 {
1429   if (orientation == GTK_ORIENTATION_HORIZONTAL)
1430     {
1431       if (for_size > 0)
1432         gtk_cell_area_get_preferred_width_for_height (icon_view->priv->cell_area,
1433                                                       context,
1434                                                       GTK_WIDGET (icon_view),
1435                                                       for_size,
1436                                                       minimum, natural);
1437       else
1438         gtk_cell_area_get_preferred_width (icon_view->priv->cell_area,
1439                                            context,
1440                                            GTK_WIDGET (icon_view),
1441                                            minimum, natural);
1442     }
1443   else
1444     {
1445       if (for_size > 0)
1446         gtk_cell_area_get_preferred_height_for_width (icon_view->priv->cell_area,
1447                                                       context,
1448                                                       GTK_WIDGET (icon_view),
1449                                                       for_size,
1450                                                       minimum, natural);
1451       else
1452         gtk_cell_area_get_preferred_height (icon_view->priv->cell_area,
1453                                             context,
1454                                             GTK_WIDGET (icon_view),
1455                                             minimum, natural);
1456     }
1457 }
1458
1459 static gboolean
1460 gtk_icon_view_is_empty (GtkIconView *icon_view)
1461 {
1462   return icon_view->priv->items == NULL;
1463 }
1464
1465 static void
1466 gtk_icon_view_get_preferred_item_size (GtkIconView    *icon_view,
1467                                        GtkOrientation  orientation,
1468                                        gint            for_size,
1469                                        gint           *minimum,
1470                                        gint           *natural)
1471 {
1472   GtkIconViewPrivate *priv = icon_view->priv;
1473   GtkCellAreaContext *context;
1474   GList *items;
1475
1476   g_assert (!gtk_icon_view_is_empty (icon_view));
1477
1478   context = gtk_cell_area_create_context (priv->cell_area);
1479
1480   for_size -= 2 * priv->item_padding;
1481
1482   if (for_size > 0)
1483     {
1484       /* This is necessary for the context to work properly */
1485       for (items = priv->items; items; items = items->next)
1486         {
1487           GtkIconViewItem *item = items->data;
1488
1489           _gtk_icon_view_set_cell_data (icon_view, item);
1490           cell_area_get_preferred_size (icon_view, context, 1 - orientation, -1, NULL, NULL);
1491         }
1492     }
1493
1494   for (items = priv->items; items; items = items->next)
1495     {
1496       GtkIconViewItem *item = items->data;
1497
1498       _gtk_icon_view_set_cell_data (icon_view, item);
1499       if (items == priv->items)
1500         adjust_wrap_width (icon_view);
1501       cell_area_get_preferred_size (icon_view, context, orientation, for_size, NULL, NULL);
1502     }
1503
1504   if (orientation == GTK_ORIENTATION_HORIZONTAL)
1505     {
1506       if (for_size > 0)
1507         gtk_cell_area_context_get_preferred_width_for_height (context,
1508                                                               for_size,
1509                                                               minimum, natural);
1510       else
1511         gtk_cell_area_context_get_preferred_width (context,
1512                                                    minimum, natural);
1513     }
1514   else
1515     {
1516       if (for_size > 0)
1517         gtk_cell_area_context_get_preferred_height_for_width (context,
1518                                                               for_size,
1519                                                               minimum, natural);
1520       else
1521         gtk_cell_area_context_get_preferred_height (context,
1522                                                     minimum, natural);
1523     }
1524
1525   if (orientation == GTK_ORIENTATION_HORIZONTAL && priv->item_width >= 0)
1526     {
1527       if (minimum)
1528         *minimum = MAX (*minimum, priv->item_width);
1529       if (natural)
1530         *natural = *minimum;
1531     }
1532
1533   if (minimum)
1534     *minimum = MAX (1, *minimum + 2 * priv->item_padding);
1535   if (natural)
1536     *natural = MAX (1, *natural + 2 * priv->item_padding);
1537
1538   g_object_unref (context);
1539 }
1540
1541 static void
1542 gtk_icon_view_compute_n_items_for_size (GtkIconView    *icon_view,
1543                                         GtkOrientation  orientation,
1544                                         gint            size,
1545                                         gint           *min_items,
1546                                         gint           *min_item_size,
1547                                         gint           *max_items,
1548                                         gint           *max_item_size)
1549 {
1550   GtkIconViewPrivate *priv = icon_view->priv;
1551   int minimum, natural, spacing;
1552
1553   g_return_if_fail (min_item_size == NULL || min_items != NULL);
1554   g_return_if_fail (max_item_size == NULL || max_items != NULL);
1555   g_return_if_fail (!gtk_icon_view_is_empty (icon_view));
1556
1557   gtk_icon_view_get_preferred_item_size (icon_view, orientation, -1, &minimum, &natural);
1558
1559   if (orientation == GTK_ORIENTATION_HORIZONTAL)
1560     spacing = priv->column_spacing;
1561   else
1562     spacing = priv->row_spacing;
1563   
1564   size -= 2 * priv->margin;
1565   size += spacing;
1566   minimum += spacing;
1567   natural += spacing;
1568
1569   if (priv->columns > 0)
1570     {
1571       if (orientation == GTK_ORIENTATION_HORIZONTAL)
1572         {
1573           if (min_items)
1574             *min_items = priv->columns;
1575           if (max_items)
1576             *max_items = priv->columns;
1577         }
1578       else
1579         {
1580           int n_items = gtk_icon_view_get_n_items (icon_view);
1581
1582           if (min_items)
1583             *min_items = (n_items + priv->columns - 1) / priv->columns;
1584           if (max_items)
1585             *max_items = (n_items + priv->columns - 1) / priv->columns;
1586         }
1587     }
1588   else
1589     {
1590       if (max_items)
1591         {
1592           if (size <= minimum)
1593             *max_items = 1;
1594           else
1595             *max_items = size / minimum;
1596         }
1597
1598       if (min_items)
1599         {
1600           if (size <= natural)
1601             *min_items = 1;
1602           else
1603             *min_items = size / natural;
1604         }
1605     }
1606
1607   if (min_item_size)
1608     {
1609       *min_item_size = size / *min_items;
1610       *min_item_size = CLAMP (*min_item_size, minimum, natural);
1611       *min_item_size -= spacing;
1612       *min_item_size -= 2 * priv->item_padding;
1613     }
1614
1615   if (max_item_size)
1616     {
1617       *max_item_size = size / *max_items;
1618       *max_item_size = CLAMP (*max_item_size, minimum, natural);
1619       *max_item_size -= spacing;
1620       *max_item_size -= 2 * priv->item_padding;
1621     }
1622 }
1623
1624 static GtkSizeRequestMode
1625 gtk_icon_view_get_request_mode (GtkWidget *widget)
1626 {
1627   return GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH;
1628 }
1629
1630 static void
1631 gtk_icon_view_get_preferred_width (GtkWidget *widget,
1632                                    gint      *minimum,
1633                                    gint      *natural)
1634 {
1635   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
1636   GtkIconViewPrivate *priv = icon_view->priv;
1637   int item_min, item_nat;
1638
1639   if (gtk_icon_view_is_empty (icon_view))
1640     {
1641       *minimum = *natural = 2 * priv->margin;
1642       return;
1643     }
1644
1645   gtk_icon_view_get_preferred_item_size (icon_view, GTK_ORIENTATION_HORIZONTAL, -1, &item_min, &item_nat);
1646
1647   if (priv->columns > 0)
1648     {
1649       *minimum = item_min * priv->columns + priv->column_spacing * (priv->columns - 1);
1650       *natural = item_nat * priv->columns + priv->column_spacing * (priv->columns - 1);
1651     }
1652   else
1653     {
1654       int n_items = gtk_icon_view_get_n_items (icon_view);
1655
1656       *minimum = item_min;
1657       *natural = item_nat * n_items + priv->column_spacing * (n_items - 1);
1658     }
1659
1660   *minimum += 2 * priv->margin;
1661   *natural += 2 * priv->margin;
1662 }
1663
1664 static void
1665 gtk_icon_view_get_preferred_width_for_height (GtkWidget *widget,
1666                                               gint       height,
1667                                               gint      *minimum,
1668                                               gint      *natural)
1669 {
1670   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
1671   GtkIconViewPrivate *priv = icon_view->priv;
1672   int item_min, item_nat, rows, row_height, n_items;
1673
1674   if (gtk_icon_view_is_empty (icon_view))
1675     {
1676       *minimum = *natural = 2 * priv->margin;
1677       return;
1678     }
1679
1680   gtk_icon_view_compute_n_items_for_size (icon_view, GTK_ORIENTATION_VERTICAL, height, &rows, &row_height, NULL, NULL);
1681   n_items = gtk_icon_view_get_n_items (icon_view);
1682
1683   gtk_icon_view_get_preferred_item_size (icon_view, GTK_ORIENTATION_HORIZONTAL, row_height, &item_min, &item_nat);
1684   *minimum = (item_min + priv->column_spacing) * ((n_items + rows - 1) / rows) - priv->column_spacing;
1685   *natural = (item_nat + priv->column_spacing) * ((n_items + rows - 1) / rows) - priv->column_spacing;
1686
1687   *minimum += 2 * priv->margin;
1688   *natural += 2 * priv->margin;
1689 }
1690
1691 static void
1692 gtk_icon_view_get_preferred_height (GtkWidget *widget,
1693                                     gint      *minimum,
1694                                     gint      *natural)
1695 {
1696   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
1697   GtkIconViewPrivate *priv = icon_view->priv;
1698   int item_min, item_nat, n_items;
1699
1700   if (gtk_icon_view_is_empty (icon_view))
1701     {
1702       *minimum = *natural = 2 * priv->margin;
1703       return;
1704     }
1705
1706   gtk_icon_view_get_preferred_item_size (icon_view, GTK_ORIENTATION_VERTICAL, -1, &item_min, &item_nat);
1707   n_items = gtk_icon_view_get_n_items (icon_view);
1708
1709   if (priv->columns > 0)
1710     {
1711       int n_rows = (n_items + priv->columns - 1) / priv->columns;
1712
1713       *minimum = item_min * n_rows + priv->row_spacing * (n_rows - 1);
1714       *natural = item_nat * n_rows + priv->row_spacing * (n_rows - 1);
1715     }
1716   else
1717     {
1718       *minimum = item_min;
1719       *natural = item_nat * n_items + priv->row_spacing * (n_items - 1);
1720     }
1721
1722   *minimum += 2 * priv->margin;
1723   *natural += 2 * priv->margin;
1724 }
1725
1726 static void
1727 gtk_icon_view_get_preferred_height_for_width (GtkWidget *widget,
1728                                               gint       width,
1729                                               gint      *minimum,
1730                                               gint      *natural)
1731 {
1732   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
1733   GtkIconViewPrivate *priv = icon_view->priv;
1734   int item_min, item_nat, columns, column_width, n_items;
1735
1736   if (gtk_icon_view_is_empty (icon_view))
1737     {
1738       *minimum = *natural = 2 * priv->margin;
1739       return;
1740     }
1741
1742   gtk_icon_view_compute_n_items_for_size (icon_view, GTK_ORIENTATION_HORIZONTAL, width, NULL, NULL, &columns, &column_width);
1743   n_items = gtk_icon_view_get_n_items (icon_view);
1744
1745   gtk_icon_view_get_preferred_item_size (icon_view, GTK_ORIENTATION_VERTICAL, column_width, &item_min, &item_nat);
1746   *minimum = (item_min + priv->row_spacing) * ((n_items + columns - 1) / columns) - priv->row_spacing;
1747   *natural = (item_nat + priv->row_spacing) * ((n_items + columns - 1) / columns) - priv->row_spacing;
1748
1749   *minimum += 2 * priv->margin;
1750   *natural += 2 * priv->margin;
1751 }
1752
1753 static void
1754 gtk_icon_view_allocate_children (GtkIconView *icon_view)
1755 {
1756   GList *list;
1757
1758   for (list = icon_view->priv->children; list; list = list->next)
1759     {
1760       GtkIconViewChild *child = list->data;
1761
1762       /* totally ignore our child's requisition */
1763       gtk_widget_size_allocate (child->widget, &child->area);
1764     }
1765 }
1766
1767 static void
1768 gtk_icon_view_size_allocate (GtkWidget      *widget,
1769                              GtkAllocation  *allocation)
1770 {
1771   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
1772
1773   gtk_widget_set_allocation (widget, allocation);
1774
1775   gtk_icon_view_layout (icon_view);
1776
1777   if (gtk_widget_get_realized (widget))
1778     {
1779       gdk_window_move_resize (gtk_widget_get_window (widget),
1780                               allocation->x, allocation->y,
1781                               allocation->width, allocation->height);
1782       gdk_window_resize (icon_view->priv->bin_window,
1783                          MAX (icon_view->priv->width, allocation->width),
1784                          MAX (icon_view->priv->height, allocation->height));
1785     }
1786
1787   gtk_icon_view_allocate_children (icon_view);
1788
1789   /* Delay signal emission */
1790   g_object_freeze_notify (G_OBJECT (icon_view->priv->hadjustment));
1791   g_object_freeze_notify (G_OBJECT (icon_view->priv->vadjustment));
1792
1793   gtk_icon_view_set_hadjustment_values (icon_view);
1794   gtk_icon_view_set_vadjustment_values (icon_view);
1795
1796   if (gtk_widget_get_realized (widget) &&
1797       icon_view->priv->scroll_to_path)
1798     {
1799       GtkTreePath *path;
1800       path = gtk_tree_row_reference_get_path (icon_view->priv->scroll_to_path);
1801       gtk_tree_row_reference_free (icon_view->priv->scroll_to_path);
1802       icon_view->priv->scroll_to_path = NULL;
1803
1804       gtk_icon_view_scroll_to_path (icon_view, path,
1805                                     icon_view->priv->scroll_to_use_align,
1806                                     icon_view->priv->scroll_to_row_align,
1807                                     icon_view->priv->scroll_to_col_align);
1808       gtk_tree_path_free (path);
1809     }
1810
1811   /* Emit any pending signals now */
1812   g_object_thaw_notify (G_OBJECT (icon_view->priv->hadjustment));
1813   g_object_thaw_notify (G_OBJECT (icon_view->priv->vadjustment));
1814 }
1815
1816 static gboolean
1817 gtk_icon_view_draw (GtkWidget *widget,
1818                     cairo_t   *cr)
1819 {
1820   GtkIconView *icon_view;
1821   GList *icons;
1822   GtkTreePath *path;
1823   gint dest_index;
1824   GtkIconViewDropPosition dest_pos;
1825   GtkIconViewItem *dest_item = NULL;
1826
1827   icon_view = GTK_ICON_VIEW (widget);
1828
1829   if (!gtk_cairo_should_draw_window (cr, icon_view->priv->bin_window))
1830     return FALSE;
1831
1832   cairo_save (cr);
1833
1834   gtk_cairo_transform_to_window (cr, widget, icon_view->priv->bin_window);
1835
1836   cairo_set_line_width (cr, 1.);
1837
1838   gtk_icon_view_get_drag_dest_item (icon_view, &path, &dest_pos);
1839
1840   if (path)
1841     {
1842       dest_index = gtk_tree_path_get_indices (path)[0];
1843       gtk_tree_path_free (path);
1844     }
1845   else
1846     dest_index = -1;
1847
1848   for (icons = icon_view->priv->items; icons; icons = icons->next)
1849     {
1850       GtkIconViewItem *item = icons->data;
1851       GdkRectangle paint_area;
1852
1853       paint_area.x      = item->cell_area.x      - icon_view->priv->item_padding;
1854       paint_area.y      = item->cell_area.y      - icon_view->priv->item_padding;
1855       paint_area.width  = item->cell_area.width  + icon_view->priv->item_padding * 2;
1856       paint_area.height = item->cell_area.height + icon_view->priv->item_padding * 2;
1857       
1858       cairo_save (cr);
1859
1860       cairo_rectangle (cr, paint_area.x, paint_area.y, paint_area.width, paint_area.height);
1861       cairo_clip (cr);
1862
1863       if (gdk_cairo_get_clip_rectangle (cr, NULL))
1864         {
1865           gtk_icon_view_paint_item (icon_view, cr, item,
1866                                     item->cell_area.x, item->cell_area.y,
1867                                     icon_view->priv->draw_focus);
1868
1869           if (dest_index == item->index)
1870             dest_item = item;
1871         }
1872
1873       cairo_restore (cr);
1874     }
1875
1876   if (dest_item &&
1877       dest_pos != GTK_ICON_VIEW_NO_DROP)
1878     {
1879       GtkStyleContext *context;
1880       GdkRectangle rect = { 0 };
1881
1882       context = gtk_widget_get_style_context (widget);
1883
1884       switch (dest_pos)
1885         {
1886         case GTK_ICON_VIEW_DROP_INTO:
1887           rect = dest_item->cell_area;
1888           break;
1889         case GTK_ICON_VIEW_DROP_ABOVE:
1890           rect.x = dest_item->cell_area.x;
1891           rect.y = dest_item->cell_area.y - 1;
1892           rect.width = dest_item->cell_area.width;
1893           rect.height = 2;
1894           break;
1895         case GTK_ICON_VIEW_DROP_LEFT:
1896           rect.x = dest_item->cell_area.x - 1;
1897           rect.y = dest_item->cell_area.y;
1898           rect.width = 2;
1899           rect.height = dest_item->cell_area.height;
1900           break;
1901         case GTK_ICON_VIEW_DROP_BELOW:
1902           rect.x = dest_item->cell_area.x;
1903           rect.y = dest_item->cell_area.y + dest_item->cell_area.height - 1;
1904           rect.width = dest_item->cell_area.width;
1905           rect.height = 2;
1906           break;
1907         case GTK_ICON_VIEW_DROP_RIGHT:
1908           rect.x = dest_item->cell_area.x + dest_item->cell_area.width - 1;
1909           rect.y = dest_item->cell_area.y;
1910           rect.width = 2;
1911           rect.height = dest_item->cell_area.height;
1912         case GTK_ICON_VIEW_NO_DROP: ;
1913           break;
1914         }
1915
1916       gtk_render_focus (context, cr,
1917                         rect.x, rect.y,
1918                         rect.width, rect.height);
1919     }
1920
1921   if (icon_view->priv->doing_rubberband)
1922     gtk_icon_view_paint_rubberband (icon_view, cr);
1923
1924   cairo_restore (cr);
1925
1926   return GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->draw (widget, cr);
1927 }
1928
1929 static gboolean
1930 rubberband_scroll_timeout (gpointer data)
1931 {
1932   GtkIconView *icon_view = data;
1933
1934   gtk_adjustment_set_value (icon_view->priv->vadjustment,
1935                             gtk_adjustment_get_value (icon_view->priv->vadjustment) +
1936                             icon_view->priv->scroll_value_diff);
1937
1938   gtk_icon_view_update_rubberband (icon_view);
1939   
1940   return TRUE;
1941 }
1942
1943 static gboolean
1944 gtk_icon_view_motion (GtkWidget      *widget,
1945                       GdkEventMotion *event)
1946 {
1947   GtkAllocation allocation;
1948   GtkIconView *icon_view;
1949   gint abs_y;
1950   
1951   icon_view = GTK_ICON_VIEW (widget);
1952
1953   gtk_icon_view_maybe_begin_drag (icon_view, event);
1954
1955   if (icon_view->priv->doing_rubberband)
1956     {
1957       gtk_icon_view_update_rubberband (widget);
1958       
1959       abs_y = event->y - icon_view->priv->height *
1960         (gtk_adjustment_get_value (icon_view->priv->vadjustment) /
1961          (gtk_adjustment_get_upper (icon_view->priv->vadjustment) -
1962           gtk_adjustment_get_lower (icon_view->priv->vadjustment)));
1963
1964       gtk_widget_get_allocation (widget, &allocation);
1965
1966       if (abs_y < 0 || abs_y > allocation.height)
1967         {
1968           if (abs_y < 0)
1969             icon_view->priv->scroll_value_diff = abs_y;
1970           else
1971             icon_view->priv->scroll_value_diff = abs_y - allocation.height;
1972
1973           icon_view->priv->event_last_x = event->x;
1974           icon_view->priv->event_last_y = event->y;
1975
1976           if (icon_view->priv->scroll_timeout_id == 0)
1977             icon_view->priv->scroll_timeout_id = gdk_threads_add_timeout (30, rubberband_scroll_timeout, 
1978                                                                 icon_view);
1979         }
1980       else 
1981         remove_scroll_timeout (icon_view);
1982     }
1983   else
1984     {
1985       GtkIconViewItem *item, *last_prelight_item;
1986       GtkCellRenderer *cell = NULL;
1987
1988       last_prelight_item = icon_view->priv->last_prelight;
1989       item = _gtk_icon_view_get_item_at_coords (icon_view,
1990                                                event->x, event->y,
1991                                                FALSE,
1992                                                &cell);
1993
1994       if (item != NULL)
1995         {
1996           item->prelight = TRUE;
1997           gtk_icon_view_queue_draw_item (icon_view, item);
1998         }
1999
2000       if (last_prelight_item != NULL &&
2001           last_prelight_item != item)
2002         {
2003           last_prelight_item->prelight = FALSE;
2004           gtk_icon_view_queue_draw_item (icon_view,
2005                                          icon_view->priv->last_prelight);
2006         }
2007
2008       icon_view->priv->last_prelight = item;
2009     }
2010   
2011   return TRUE;
2012 }
2013
2014 static void
2015 gtk_icon_view_remove (GtkContainer *container,
2016                       GtkWidget    *widget)
2017 {
2018   GtkIconView *icon_view;
2019   GtkIconViewChild *child = NULL;
2020   GList *tmp_list;
2021
2022   icon_view = GTK_ICON_VIEW (container);
2023   
2024   tmp_list = icon_view->priv->children;
2025   while (tmp_list)
2026     {
2027       child = tmp_list->data;
2028       if (child->widget == widget)
2029         {
2030           gtk_widget_unparent (widget);
2031
2032           icon_view->priv->children = g_list_remove_link (icon_view->priv->children, tmp_list);
2033           g_list_free_1 (tmp_list);
2034           g_free (child);
2035           return;
2036         }
2037
2038       tmp_list = tmp_list->next;
2039     }
2040 }
2041
2042 static void
2043 gtk_icon_view_forall (GtkContainer *container,
2044                       gboolean      include_internals,
2045                       GtkCallback   callback,
2046                       gpointer      callback_data)
2047 {
2048   GtkIconView *icon_view;
2049   GtkIconViewChild *child = NULL;
2050   GList *tmp_list;
2051
2052   icon_view = GTK_ICON_VIEW (container);
2053
2054   tmp_list = icon_view->priv->children;
2055   while (tmp_list)
2056     {
2057       child = tmp_list->data;
2058       tmp_list = tmp_list->next;
2059
2060       (* callback) (child->widget, callback_data);
2061     }
2062 }
2063
2064 static void 
2065 gtk_icon_view_item_selected_changed (GtkIconView      *icon_view,
2066                                      GtkIconViewItem  *item)
2067 {
2068   AtkObject *obj;
2069   AtkObject *item_obj;
2070
2071   obj = gtk_widget_get_accessible (GTK_WIDGET (icon_view));
2072   if (obj != NULL)
2073     {
2074       item_obj = atk_object_ref_accessible_child (obj, item->index);
2075       if (item_obj != NULL)
2076         {
2077           atk_object_notify_state_change (item_obj, ATK_STATE_SELECTED, item->selected);
2078           g_object_unref (item_obj);
2079         }
2080     }
2081 }
2082
2083 static void
2084 gtk_icon_view_add_editable (GtkCellArea            *area,
2085                             GtkCellRenderer        *renderer,
2086                             GtkCellEditable        *editable,
2087                             GdkRectangle           *cell_area,
2088                             const gchar            *path,
2089                             GtkIconView            *icon_view)
2090 {
2091   GtkIconViewChild *child;
2092   GtkWidget *widget = GTK_WIDGET (editable);
2093   
2094   child = g_new (GtkIconViewChild, 1);
2095   
2096   child->widget      = widget;
2097   child->area.x      = cell_area->x;
2098   child->area.y      = cell_area->y;
2099   child->area.width  = cell_area->width;
2100   child->area.height = cell_area->height;
2101
2102   icon_view->priv->children = g_list_append (icon_view->priv->children, child);
2103
2104   if (gtk_widget_get_realized (GTK_WIDGET (icon_view)))
2105     gtk_widget_set_parent_window (child->widget, icon_view->priv->bin_window);
2106   
2107   gtk_widget_set_parent (widget, GTK_WIDGET (icon_view));
2108 }
2109
2110 static void
2111 gtk_icon_view_remove_editable (GtkCellArea            *area,
2112                                GtkCellRenderer        *renderer,
2113                                GtkCellEditable        *editable,
2114                                GtkIconView            *icon_view)
2115 {
2116   GtkTreePath *path;
2117
2118   if (gtk_widget_has_focus (GTK_WIDGET (editable)))
2119     gtk_widget_grab_focus (GTK_WIDGET (icon_view));
2120   
2121   gtk_container_remove (GTK_CONTAINER (icon_view),
2122                         GTK_WIDGET (editable));  
2123
2124   path = gtk_tree_path_new_from_string (gtk_cell_area_get_current_path_string (area));
2125   gtk_icon_view_queue_draw_path (icon_view, path);
2126   gtk_tree_path_free (path);
2127 }
2128
2129 /**
2130  * gtk_icon_view_set_cursor:
2131  * @icon_view: A #GtkIconView
2132  * @path: A #GtkTreePath
2133  * @cell: (allow-none): One of the cell renderers of @icon_view, or %NULL
2134  * @start_editing: %TRUE if the specified cell should start being edited.
2135  *
2136  * Sets the current keyboard focus to be at @path, and selects it.  This is
2137  * useful when you want to focus the user's attention on a particular item.
2138  * If @cell is not %NULL, then focus is given to the cell specified by 
2139  * it. Additionally, if @start_editing is %TRUE, then editing should be 
2140  * started in the specified cell.  
2141  *
2142  * This function is often followed by <literal>gtk_widget_grab_focus 
2143  * (icon_view)</literal> in order to give keyboard focus to the widget.  
2144  * Please note that editing can only happen when the widget is realized.
2145  *
2146  * Since: 2.8
2147  **/
2148 void
2149 gtk_icon_view_set_cursor (GtkIconView     *icon_view,
2150                           GtkTreePath     *path,
2151                           GtkCellRenderer *cell,
2152                           gboolean         start_editing)
2153 {
2154   GtkIconViewItem *item = NULL;
2155
2156   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
2157   g_return_if_fail (path != NULL);
2158   g_return_if_fail (cell == NULL || GTK_IS_CELL_RENDERER (cell));
2159
2160   if (icon_view->priv->cell_area)
2161     gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
2162
2163   if (gtk_tree_path_get_depth (path) == 1)
2164     item = g_list_nth_data (icon_view->priv->items,
2165                             gtk_tree_path_get_indices(path)[0]);
2166   
2167   if (!item)
2168     return;
2169   
2170   _gtk_icon_view_set_cursor_item (icon_view, item, cell);
2171   gtk_icon_view_scroll_to_path (icon_view, path, FALSE, 0.0, 0.0);
2172
2173   if (start_editing && 
2174       icon_view->priv->cell_area)
2175     {
2176       GtkCellAreaContext *context;
2177
2178       context = g_ptr_array_index (icon_view->priv->row_contexts, item->row);
2179       _gtk_icon_view_set_cell_data (icon_view, item);
2180       gtk_cell_area_activate (icon_view->priv->cell_area, context, 
2181                               GTK_WIDGET (icon_view), &item->cell_area, 
2182                               0 /* XXX flags */, TRUE);
2183     }
2184 }
2185
2186 /**
2187  * gtk_icon_view_get_cursor:
2188  * @icon_view: A #GtkIconView
2189  * @path: (out) (allow-none): Return location for the current cursor path,
2190  *        or %NULL
2191  * @cell: (out) (allow-none): Return location the current focus cell, or %NULL
2192  *
2193  * Fills in @path and @cell with the current cursor path and cell. 
2194  * If the cursor isn't currently set, then *@path will be %NULL.  
2195  * If no cell currently has focus, then *@cell will be %NULL.
2196  *
2197  * The returned #GtkTreePath must be freed with gtk_tree_path_free().
2198  *
2199  * Return value: %TRUE if the cursor is set.
2200  *
2201  * Since: 2.8
2202  **/
2203 gboolean
2204 gtk_icon_view_get_cursor (GtkIconView      *icon_view,
2205                           GtkTreePath     **path,
2206                           GtkCellRenderer **cell)
2207 {
2208   GtkIconViewItem *item;
2209
2210   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
2211
2212   item = icon_view->priv->cursor_item;
2213
2214   if (path != NULL)
2215     {
2216       if (item != NULL)
2217         *path = gtk_tree_path_new_from_indices (item->index, -1);
2218       else
2219         *path = NULL;
2220     }
2221
2222   if (cell != NULL && item != NULL && icon_view->priv->cell_area != NULL)
2223     *cell = gtk_cell_area_get_focus_cell (icon_view->priv->cell_area);
2224
2225   return (item != NULL);
2226 }
2227
2228 static gboolean
2229 gtk_icon_view_button_press (GtkWidget      *widget,
2230                             GdkEventButton *event)
2231 {
2232   GtkIconView *icon_view;
2233   GtkIconViewItem *item;
2234   gboolean dirty = FALSE;
2235   GtkCellRenderer *cell = NULL, *cursor_cell = NULL;
2236
2237   icon_view = GTK_ICON_VIEW (widget);
2238
2239   if (event->window != icon_view->priv->bin_window)
2240     return FALSE;
2241
2242   if (!gtk_widget_has_focus (widget))
2243     gtk_widget_grab_focus (widget);
2244
2245   if (event->button == GDK_BUTTON_PRIMARY && event->type == GDK_BUTTON_PRESS)
2246     {
2247       GdkModifierType extend_mod_mask;
2248       GdkModifierType modify_mod_mask;
2249
2250       extend_mod_mask =
2251         gtk_widget_get_modifier_mask (widget, GDK_MODIFIER_INTENT_EXTEND_SELECTION);
2252
2253       modify_mod_mask =
2254         gtk_widget_get_modifier_mask (widget, GDK_MODIFIER_INTENT_MODIFY_SELECTION);
2255
2256       item = _gtk_icon_view_get_item_at_coords (icon_view, 
2257                                                event->x, event->y,
2258                                                FALSE,
2259                                                &cell);
2260
2261       /*
2262        * We consider only the the cells' area as the item area if the
2263        * item is not selected, but if it *is* selected, the complete
2264        * selection rectangle is considered to be part of the item.
2265        */
2266       if (item != NULL && (cell != NULL || item->selected))
2267         {
2268           if (cell != NULL)
2269             {
2270               if (gtk_cell_renderer_is_activatable (cell))
2271                 cursor_cell = cell;
2272             }
2273
2274           gtk_icon_view_scroll_to_item (icon_view, item);
2275           
2276           if (icon_view->priv->selection_mode == GTK_SELECTION_NONE)
2277             {
2278               _gtk_icon_view_set_cursor_item (icon_view, item, cursor_cell);
2279             }
2280           else if (icon_view->priv->selection_mode == GTK_SELECTION_MULTIPLE &&
2281                    (event->state & extend_mod_mask))
2282             {
2283               gtk_icon_view_unselect_all_internal (icon_view);
2284
2285               _gtk_icon_view_set_cursor_item (icon_view, item, cursor_cell);
2286               if (!icon_view->priv->anchor_item)
2287                 icon_view->priv->anchor_item = item;
2288               else 
2289                 gtk_icon_view_select_all_between (icon_view,
2290                                                   icon_view->priv->anchor_item,
2291                                                   item);
2292               dirty = TRUE;
2293             }
2294           else 
2295             {
2296               if ((icon_view->priv->selection_mode == GTK_SELECTION_MULTIPLE ||
2297                   ((icon_view->priv->selection_mode == GTK_SELECTION_SINGLE) && item->selected)) &&
2298                   (event->state & modify_mod_mask))
2299                 {
2300                   item->selected = !item->selected;
2301                   gtk_icon_view_queue_draw_item (icon_view, item);
2302                   dirty = TRUE;
2303                 }
2304               else
2305                 {
2306                   gtk_icon_view_unselect_all_internal (icon_view);
2307
2308                   item->selected = TRUE;
2309                   gtk_icon_view_queue_draw_item (icon_view, item);
2310                   dirty = TRUE;
2311                 }
2312               _gtk_icon_view_set_cursor_item (icon_view, item, cursor_cell);
2313               icon_view->priv->anchor_item = item;
2314             }
2315
2316           /* Save press to possibly begin a drag */
2317           if (icon_view->priv->pressed_button < 0)
2318             {
2319               icon_view->priv->pressed_button = event->button;
2320               icon_view->priv->press_start_x = event->x;
2321               icon_view->priv->press_start_y = event->y;
2322             }
2323
2324           if (!icon_view->priv->last_single_clicked)
2325             icon_view->priv->last_single_clicked = item;
2326
2327           /* cancel the current editing, if it exists */
2328           gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
2329
2330           if (cell != NULL && gtk_cell_renderer_is_activatable (cell))
2331             {
2332               GtkCellAreaContext *context;
2333
2334               context = g_ptr_array_index (icon_view->priv->row_contexts, item->row);
2335
2336               _gtk_icon_view_set_cell_data (icon_view, item);
2337               gtk_cell_area_activate (icon_view->priv->cell_area, context,
2338                                       GTK_WIDGET (icon_view),
2339                                       &item->cell_area, 0/* XXX flags */, FALSE);
2340             }
2341         }
2342       else
2343         {
2344           if (icon_view->priv->selection_mode != GTK_SELECTION_BROWSE &&
2345               !(event->state & modify_mod_mask))
2346             {
2347               dirty = gtk_icon_view_unselect_all_internal (icon_view);
2348             }
2349           
2350           if (icon_view->priv->selection_mode == GTK_SELECTION_MULTIPLE)
2351             gtk_icon_view_start_rubberbanding (icon_view, event->device, event->x, event->y);
2352         }
2353
2354       /* don't draw keyboard focus around an clicked-on item */
2355       icon_view->priv->draw_focus = FALSE;
2356     }
2357
2358   if (event->button == GDK_BUTTON_PRIMARY && event->type == GDK_2BUTTON_PRESS)
2359     {
2360       item = _gtk_icon_view_get_item_at_coords (icon_view,
2361                                                event->x, event->y,
2362                                                FALSE,
2363                                                NULL);
2364
2365       if (item && item == icon_view->priv->last_single_clicked)
2366         {
2367           GtkTreePath *path;
2368
2369           path = gtk_tree_path_new_from_indices (item->index, -1);
2370           gtk_icon_view_item_activated (icon_view, path);
2371           gtk_tree_path_free (path);
2372         }
2373
2374       icon_view->priv->last_single_clicked = NULL;
2375       icon_view->priv->pressed_button = -1;
2376     }
2377   
2378   if (dirty)
2379     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
2380
2381   return event->button == GDK_BUTTON_PRIMARY;
2382 }
2383
2384 static gboolean
2385 gtk_icon_view_button_release (GtkWidget      *widget,
2386                               GdkEventButton *event)
2387 {
2388   GtkIconView *icon_view;
2389
2390   icon_view = GTK_ICON_VIEW (widget);
2391   
2392   if (icon_view->priv->pressed_button == event->button)
2393     icon_view->priv->pressed_button = -1;
2394
2395   gtk_icon_view_stop_rubberbanding (icon_view);
2396
2397   remove_scroll_timeout (icon_view);
2398
2399   return TRUE;
2400 }
2401
2402 static gboolean
2403 gtk_icon_view_key_press (GtkWidget      *widget,
2404                          GdkEventKey    *event)
2405 {
2406   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
2407
2408   if (icon_view->priv->doing_rubberband)
2409     {
2410       if (event->keyval == GDK_KEY_Escape)
2411         gtk_icon_view_stop_rubberbanding (icon_view);
2412
2413       return TRUE;
2414     }
2415
2416   return GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->key_press_event (widget, event);
2417 }
2418
2419 static gboolean
2420 gtk_icon_view_key_release (GtkWidget      *widget,
2421                            GdkEventKey    *event)
2422 {
2423   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
2424
2425   if (icon_view->priv->doing_rubberband)
2426     return TRUE;
2427
2428   return GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->key_press_event (widget, event);
2429 }
2430
2431 static void
2432 gtk_icon_view_update_rubberband (gpointer data)
2433 {
2434   GtkIconView *icon_view;
2435   gint x, y;
2436   GdkRectangle old_area;
2437   GdkRectangle new_area;
2438   GdkRectangle common;
2439   cairo_region_t *invalid_region;
2440   
2441   icon_view = GTK_ICON_VIEW (data);
2442
2443   gdk_window_get_device_position (icon_view->priv->bin_window,
2444                                   icon_view->priv->rubberband_device,
2445                                   &x, &y, NULL);
2446
2447   x = MAX (x, 0);
2448   y = MAX (y, 0);
2449
2450   old_area.x = MIN (icon_view->priv->rubberband_x1,
2451                     icon_view->priv->rubberband_x2);
2452   old_area.y = MIN (icon_view->priv->rubberband_y1,
2453                     icon_view->priv->rubberband_y2);
2454   old_area.width = ABS (icon_view->priv->rubberband_x2 -
2455                         icon_view->priv->rubberband_x1) + 1;
2456   old_area.height = ABS (icon_view->priv->rubberband_y2 -
2457                          icon_view->priv->rubberband_y1) + 1;
2458   
2459   new_area.x = MIN (icon_view->priv->rubberband_x1, x);
2460   new_area.y = MIN (icon_view->priv->rubberband_y1, y);
2461   new_area.width = ABS (x - icon_view->priv->rubberband_x1) + 1;
2462   new_area.height = ABS (y - icon_view->priv->rubberband_y1) + 1;
2463
2464   invalid_region = cairo_region_create_rectangle (&old_area);
2465   cairo_region_union_rectangle (invalid_region, &new_area);
2466
2467   gdk_rectangle_intersect (&old_area, &new_area, &common);
2468   if (common.width > 2 && common.height > 2)
2469     {
2470       cairo_region_t *common_region;
2471
2472       /* make sure the border is invalidated */
2473       common.x += 1;
2474       common.y += 1;
2475       common.width -= 2;
2476       common.height -= 2;
2477       
2478       common_region = cairo_region_create_rectangle (&common);
2479
2480       cairo_region_subtract (invalid_region, common_region);
2481       cairo_region_destroy (common_region);
2482     }
2483   
2484   gdk_window_invalidate_region (icon_view->priv->bin_window, invalid_region, TRUE);
2485     
2486   cairo_region_destroy (invalid_region);
2487
2488   icon_view->priv->rubberband_x2 = x;
2489   icon_view->priv->rubberband_y2 = y;  
2490
2491   gtk_icon_view_update_rubberband_selection (icon_view);
2492 }
2493
2494 static void
2495 gtk_icon_view_start_rubberbanding (GtkIconView  *icon_view,
2496                                    GdkDevice    *device,
2497                                    gint          x,
2498                                    gint          y)
2499 {
2500   GList *items;
2501
2502   if (icon_view->priv->rubberband_device)
2503     return;
2504
2505   for (items = icon_view->priv->items; items; items = items->next)
2506     {
2507       GtkIconViewItem *item = items->data;
2508
2509       item->selected_before_rubberbanding = item->selected;
2510     }
2511   
2512   icon_view->priv->rubberband_x1 = x;
2513   icon_view->priv->rubberband_y1 = y;
2514   icon_view->priv->rubberband_x2 = x;
2515   icon_view->priv->rubberband_y2 = y;
2516
2517   icon_view->priv->doing_rubberband = TRUE;
2518   icon_view->priv->rubberband_device = device;
2519
2520   gtk_device_grab_add (GTK_WIDGET (icon_view), device, TRUE);
2521 }
2522
2523 static void
2524 gtk_icon_view_stop_rubberbanding (GtkIconView *icon_view)
2525 {
2526   if (!icon_view->priv->doing_rubberband)
2527     return;
2528
2529   gtk_device_grab_remove (GTK_WIDGET (icon_view),
2530                           icon_view->priv->rubberband_device);
2531
2532   icon_view->priv->doing_rubberband = FALSE;
2533   icon_view->priv->rubberband_device = NULL;
2534
2535   gtk_widget_queue_draw (GTK_WIDGET (icon_view));
2536 }
2537
2538 static void
2539 gtk_icon_view_update_rubberband_selection (GtkIconView *icon_view)
2540 {
2541   GList *items;
2542   gint x, y, width, height;
2543   gboolean dirty = FALSE;
2544   
2545   x = MIN (icon_view->priv->rubberband_x1,
2546            icon_view->priv->rubberband_x2);
2547   y = MIN (icon_view->priv->rubberband_y1,
2548            icon_view->priv->rubberband_y2);
2549   width = ABS (icon_view->priv->rubberband_x1 - 
2550                icon_view->priv->rubberband_x2);
2551   height = ABS (icon_view->priv->rubberband_y1 - 
2552                 icon_view->priv->rubberband_y2);
2553   
2554   for (items = icon_view->priv->items; items; items = items->next)
2555     {
2556       GtkIconViewItem *item = items->data;
2557       gboolean is_in;
2558       gboolean selected;
2559       
2560       is_in = gtk_icon_view_item_hit_test (icon_view, item, 
2561                                            x, y, width, height);
2562
2563       selected = is_in ^ item->selected_before_rubberbanding;
2564
2565       if (item->selected != selected)
2566         {
2567           item->selected = selected;
2568           dirty = TRUE;
2569           gtk_icon_view_queue_draw_item (icon_view, item);
2570         }
2571     }
2572
2573   if (dirty)
2574     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
2575 }
2576
2577
2578 typedef struct {
2579   GdkRectangle hit_rect;
2580   gboolean     hit;
2581 } HitTestData;
2582
2583 static gboolean 
2584 hit_test (GtkCellRenderer    *renderer,
2585           const GdkRectangle *cell_area,
2586           const GdkRectangle *cell_background,
2587           HitTestData        *data)
2588 {
2589   if (MIN (data->hit_rect.x + data->hit_rect.width, cell_area->x + cell_area->width) - 
2590       MAX (data->hit_rect.x, cell_area->x) > 0 &&
2591       MIN (data->hit_rect.y + data->hit_rect.height, cell_area->y + cell_area->height) - 
2592       MAX (data->hit_rect.y, cell_area->y) > 0)
2593     data->hit = TRUE;
2594   
2595   return (data->hit != FALSE);
2596 }
2597
2598 static gboolean
2599 gtk_icon_view_item_hit_test (GtkIconView      *icon_view,
2600                              GtkIconViewItem  *item,
2601                              gint              x,
2602                              gint              y,
2603                              gint              width,
2604                              gint              height)
2605 {
2606   HitTestData data = { { x, y, width, height }, FALSE };
2607   GtkCellAreaContext *context;
2608   GdkRectangle *item_area = &item->cell_area;
2609    
2610   if (MIN (x + width, item_area->x + item_area->width) - MAX (x, item_area->x) <= 0 ||
2611       MIN (y + height, item_area->y + item_area->height) - MAX (y, item_area->y) <= 0)
2612     return FALSE;
2613
2614   context = g_ptr_array_index (icon_view->priv->row_contexts, item->row);
2615
2616   _gtk_icon_view_set_cell_data (icon_view, item);
2617   gtk_cell_area_foreach_alloc (icon_view->priv->cell_area, context,
2618                                GTK_WIDGET (icon_view),
2619                                item_area, item_area,
2620                                (GtkCellAllocCallback)hit_test, &data);
2621
2622   return data.hit;
2623 }
2624
2625 static gboolean
2626 gtk_icon_view_unselect_all_internal (GtkIconView  *icon_view)
2627 {
2628   gboolean dirty = FALSE;
2629   GList *items;
2630
2631   if (icon_view->priv->selection_mode == GTK_SELECTION_NONE)
2632     return FALSE;
2633
2634   for (items = icon_view->priv->items; items; items = items->next)
2635     {
2636       GtkIconViewItem *item = items->data;
2637
2638       if (item->selected)
2639         {
2640           item->selected = FALSE;
2641           dirty = TRUE;
2642           gtk_icon_view_queue_draw_item (icon_view, item);
2643           gtk_icon_view_item_selected_changed (icon_view, item);
2644         }
2645     }
2646
2647   return dirty;
2648 }
2649
2650
2651 /* GtkIconView signals */
2652 static void
2653 gtk_icon_view_real_select_all (GtkIconView *icon_view)
2654 {
2655   gtk_icon_view_select_all (icon_view);
2656 }
2657
2658 static void
2659 gtk_icon_view_real_unselect_all (GtkIconView *icon_view)
2660 {
2661   gtk_icon_view_unselect_all (icon_view);
2662 }
2663
2664 static void
2665 gtk_icon_view_real_select_cursor_item (GtkIconView *icon_view)
2666 {
2667   gtk_icon_view_unselect_all (icon_view);
2668
2669   if (icon_view->priv->cursor_item != NULL)
2670     _gtk_icon_view_select_item (icon_view, icon_view->priv->cursor_item);
2671 }
2672
2673 static gboolean
2674 gtk_icon_view_real_activate_cursor_item (GtkIconView *icon_view)
2675 {
2676   GtkTreePath *path;
2677   GtkCellAreaContext *context;
2678
2679   if (!icon_view->priv->cursor_item)
2680     return FALSE;
2681
2682   context = g_ptr_array_index (icon_view->priv->row_contexts, icon_view->priv->cursor_item->row);
2683
2684   _gtk_icon_view_set_cell_data (icon_view, icon_view->priv->cursor_item);
2685   gtk_cell_area_activate (icon_view->priv->cell_area, context,
2686                           GTK_WIDGET (icon_view),
2687                           &icon_view->priv->cursor_item->cell_area,
2688                           0 /* XXX flags */,
2689                           FALSE);
2690
2691   path = gtk_tree_path_new_from_indices (icon_view->priv->cursor_item->index, -1);
2692   gtk_icon_view_item_activated (icon_view, path);
2693   gtk_tree_path_free (path);
2694
2695   return TRUE;
2696 }
2697
2698 static void
2699 gtk_icon_view_real_toggle_cursor_item (GtkIconView *icon_view)
2700 {
2701   if (!icon_view->priv->cursor_item)
2702     return;
2703
2704   switch (icon_view->priv->selection_mode)
2705     {
2706     case GTK_SELECTION_NONE:
2707       break;
2708     case GTK_SELECTION_BROWSE:
2709       _gtk_icon_view_select_item (icon_view, icon_view->priv->cursor_item);
2710       break;
2711     case GTK_SELECTION_SINGLE:
2712       if (icon_view->priv->cursor_item->selected)
2713         _gtk_icon_view_unselect_item (icon_view, icon_view->priv->cursor_item);
2714       else
2715         _gtk_icon_view_select_item (icon_view, icon_view->priv->cursor_item);
2716       break;
2717     case GTK_SELECTION_MULTIPLE:
2718       icon_view->priv->cursor_item->selected = !icon_view->priv->cursor_item->selected;
2719       g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0); 
2720       
2721       gtk_icon_view_item_selected_changed (icon_view, icon_view->priv->cursor_item);      
2722       gtk_icon_view_queue_draw_item (icon_view, icon_view->priv->cursor_item);
2723       break;
2724     }
2725 }
2726
2727 static void
2728 gtk_icon_view_set_hadjustment_values (GtkIconView *icon_view)
2729 {
2730   GtkAllocation  allocation;
2731   GtkAdjustment *adj = icon_view->priv->hadjustment;
2732   gdouble old_page_size;
2733   gdouble old_upper;
2734   gdouble old_value;
2735   gdouble new_value;
2736   gdouble new_upper;
2737
2738   gtk_widget_get_allocation (GTK_WIDGET (icon_view), &allocation);
2739
2740   old_value = gtk_adjustment_get_value (adj);
2741   old_upper = gtk_adjustment_get_upper (adj);
2742   old_page_size = gtk_adjustment_get_page_size (adj);
2743   new_upper = MAX (allocation.width, icon_view->priv->width);
2744
2745   if (gtk_widget_get_direction (GTK_WIDGET (icon_view)) == GTK_TEXT_DIR_RTL)
2746     {
2747       /* Make sure no scrolling occurs for RTL locales also (if possible) */
2748       /* Quick explanation:
2749        *   In LTR locales, leftmost portion of visible rectangle should stay
2750        *   fixed, which means left edge of scrollbar thumb should remain fixed
2751        *   and thus adjustment's value should stay the same.
2752        *
2753        *   In RTL locales, we want to keep rightmost portion of visible
2754        *   rectangle fixed. This means right edge of thumb should remain fixed.
2755        *   In this case, upper - value - page_size should remain constant.
2756        */
2757       new_value = (new_upper - allocation.width) -
2758                   (old_upper - old_value - old_page_size);
2759       new_value = CLAMP (new_value, 0, new_upper - allocation.width);
2760     }
2761   else
2762     new_value = CLAMP (old_value, 0, new_upper - allocation.width);
2763
2764   gtk_adjustment_configure (adj,
2765                             new_value,
2766                             0.0,
2767                             new_upper,
2768                             allocation.width * 0.1,
2769                             allocation.width * 0.9,
2770                             allocation.width);
2771 }
2772
2773 static void
2774 gtk_icon_view_set_vadjustment_values (GtkIconView *icon_view)
2775 {
2776   GtkAllocation  allocation;
2777   GtkAdjustment *adj = icon_view->priv->vadjustment;
2778
2779   gtk_widget_get_allocation (GTK_WIDGET (icon_view), &allocation);
2780
2781   gtk_adjustment_configure (adj,
2782                             gtk_adjustment_get_value (adj),
2783                             0.0,
2784                             MAX (allocation.height, icon_view->priv->height),
2785                             allocation.height * 0.1,
2786                             allocation.height * 0.9,
2787                             allocation.height);
2788 }
2789
2790 static void
2791 gtk_icon_view_set_hadjustment (GtkIconView   *icon_view,
2792                                GtkAdjustment *adjustment)
2793 {
2794   GtkIconViewPrivate *priv = icon_view->priv;
2795
2796   if (adjustment && priv->hadjustment == adjustment)
2797     return;
2798
2799   if (priv->hadjustment != NULL)
2800     {
2801       g_signal_handlers_disconnect_matched (priv->hadjustment,
2802                                             G_SIGNAL_MATCH_DATA,
2803                                             0, 0, NULL, NULL, icon_view);
2804       g_object_unref (priv->hadjustment);
2805     }
2806
2807   if (!adjustment)
2808     adjustment = gtk_adjustment_new (0.0, 0.0, 0.0,
2809                                      0.0, 0.0, 0.0);
2810
2811   g_signal_connect (adjustment, "value-changed",
2812                     G_CALLBACK (gtk_icon_view_adjustment_changed), icon_view);
2813   priv->hadjustment = g_object_ref_sink (adjustment);
2814   gtk_icon_view_set_hadjustment_values (icon_view);
2815
2816   g_object_notify (G_OBJECT (icon_view), "hadjustment");
2817 }
2818
2819 static void
2820 gtk_icon_view_set_vadjustment (GtkIconView   *icon_view,
2821                                GtkAdjustment *adjustment)
2822 {
2823   GtkIconViewPrivate *priv = icon_view->priv;
2824
2825   if (adjustment && priv->vadjustment == adjustment)
2826     return;
2827
2828   if (priv->vadjustment != NULL)
2829     {
2830       g_signal_handlers_disconnect_matched (priv->vadjustment,
2831                                             G_SIGNAL_MATCH_DATA,
2832                                             0, 0, NULL, NULL, icon_view);
2833       g_object_unref (priv->vadjustment);
2834     }
2835
2836   if (!adjustment)
2837     adjustment = gtk_adjustment_new (0.0, 0.0, 0.0,
2838                                      0.0, 0.0, 0.0);
2839
2840   g_signal_connect (adjustment, "value-changed",
2841                     G_CALLBACK (gtk_icon_view_adjustment_changed), icon_view);
2842   priv->vadjustment = g_object_ref_sink (adjustment);
2843   gtk_icon_view_set_vadjustment_values (icon_view);
2844
2845   g_object_notify (G_OBJECT (icon_view), "vadjustment");
2846 }
2847
2848 static void
2849 gtk_icon_view_adjustment_changed (GtkAdjustment *adjustment,
2850                                   GtkIconView   *icon_view)
2851 {
2852   GtkIconViewPrivate *priv = icon_view->priv;
2853
2854   if (gtk_widget_get_realized (GTK_WIDGET (icon_view)))
2855     {
2856       gdk_window_move (priv->bin_window,
2857                        - gtk_adjustment_get_value (priv->hadjustment),
2858                        - gtk_adjustment_get_value (priv->vadjustment));
2859
2860       if (icon_view->priv->doing_rubberband)
2861         gtk_icon_view_update_rubberband (GTK_WIDGET (icon_view));
2862       
2863       _gtk_icon_view_accessible_adjustment_changed (icon_view);
2864     }
2865 }
2866
2867 static gint
2868 compare_sizes (gconstpointer p1,
2869                gconstpointer p2,
2870                gpointer      unused)
2871 {
2872   return GPOINTER_TO_INT (((const GtkRequestedSize *) p1)->data)
2873        - GPOINTER_TO_INT (((const GtkRequestedSize *) p2)->data);
2874 }
2875
2876 static void
2877 gtk_icon_view_layout (GtkIconView *icon_view)
2878 {
2879   GtkIconViewPrivate *priv = icon_view->priv;
2880   GtkWidget *widget = GTK_WIDGET (icon_view);
2881   GList *items;
2882   gint item_width; /* this doesn't include item_padding */
2883   gint n_columns, n_rows, n_items;
2884   gint col, row;
2885   GtkRequestedSize *sizes;
2886   gboolean rtl;
2887
2888   if (gtk_icon_view_is_empty (icon_view))
2889     return;
2890
2891   rtl = gtk_widget_get_direction (GTK_WIDGET (icon_view)) == GTK_TEXT_DIR_RTL;
2892   n_items = gtk_icon_view_get_n_items (icon_view);
2893
2894   gtk_icon_view_compute_n_items_for_size (icon_view, 
2895                                           GTK_ORIENTATION_HORIZONTAL,
2896                                           gtk_widget_get_allocated_width (widget),
2897                                           NULL, NULL,
2898                                           &n_columns, &item_width);
2899   n_rows = (n_items + n_columns - 1) / n_columns;
2900
2901   priv->width = n_columns * (item_width + 2 * priv->item_padding + priv->column_spacing) - priv->column_spacing;
2902   priv->width += 2 * priv->margin;
2903   priv->width = MAX (priv->width, gtk_widget_get_allocated_width (widget));
2904
2905   /* Clear the per row contexts */
2906   g_ptr_array_set_size (icon_view->priv->row_contexts, 0);
2907
2908   gtk_cell_area_context_reset (priv->cell_area_context);
2909   /* because layouting is complicated. We designed an API
2910    * that is O(N²) and nonsensical.
2911    * And we're proud of it. */
2912   for (items = priv->items; items; items = items->next)
2913     {
2914       _gtk_icon_view_set_cell_data (icon_view, items->data);
2915       gtk_cell_area_get_preferred_width (priv->cell_area,
2916                                          priv->cell_area_context,
2917                                          widget,
2918                                          NULL, NULL);
2919     }
2920
2921   sizes = g_newa (GtkRequestedSize, n_rows);
2922   items = priv->items;
2923   priv->height = priv->margin;
2924
2925   /* Collect the heights for all rows */
2926   for (row = 0; row < n_rows; row++)
2927     {
2928       GtkCellAreaContext *context = gtk_cell_area_copy_context (priv->cell_area, priv->cell_area_context);
2929       g_ptr_array_add (priv->row_contexts, context);
2930
2931       for (col = 0; col < n_columns && items; col++, items = items->next)
2932         {
2933           GtkIconViewItem *item = items->data;
2934
2935           _gtk_icon_view_set_cell_data (icon_view, item);
2936           gtk_cell_area_get_preferred_height_for_width (priv->cell_area,
2937                                                         context,
2938                                                         widget,
2939                                                         item_width, 
2940                                                         NULL, NULL);
2941         }
2942       
2943       sizes[row].data = GINT_TO_POINTER (row);
2944       gtk_cell_area_context_get_preferred_height_for_width (context,
2945                                                             item_width,
2946                                                             &sizes[row].minimum_size,
2947                                                             &sizes[row].natural_size);
2948       priv->height += sizes[row].minimum_size + 2 * priv->item_padding + priv->row_spacing;
2949     }
2950
2951   priv->height -= priv->row_spacing;
2952   priv->height += priv->margin;
2953   priv->height = MIN (priv->height, gtk_widget_get_allocated_height (widget));
2954
2955   gtk_distribute_natural_allocation (gtk_widget_get_allocated_height (widget) - priv->height,
2956                                      n_rows,
2957                                      sizes);
2958
2959   /* Actually allocate the rows */
2960   g_qsort_with_data (sizes, n_rows, sizeof (GtkRequestedSize), compare_sizes, NULL);
2961   
2962   items = priv->items;
2963   priv->height = priv->margin;
2964
2965   for (row = 0; row < n_rows; row++)
2966     {
2967       GtkCellAreaContext *context = g_ptr_array_index (priv->row_contexts, row);
2968       gtk_cell_area_context_allocate (context, item_width, sizes[row].minimum_size);
2969
2970       priv->height += priv->item_padding;
2971
2972       for (col = 0; col < n_columns && items; col++, items = items->next)
2973         {
2974           GtkIconViewItem *item = items->data;
2975
2976           item->cell_area.x = priv->margin + (col * 2 + 1) * priv->item_padding + col * (priv->column_spacing + item_width);
2977           item->cell_area.width = item_width;
2978           item->cell_area.y = priv->height;
2979           item->cell_area.height = sizes[row].minimum_size;
2980           item->row = row;
2981           item->col = col;
2982           if (rtl)
2983             {
2984               item->cell_area.x = priv->width - item_width - item->cell_area.x;
2985               item->col = n_columns - 1 - col;
2986             }
2987         }
2988
2989       priv->height += sizes[row].minimum_size + priv->item_padding + priv->row_spacing;
2990     }
2991
2992   priv->height -= priv->row_spacing;
2993   priv->height += priv->margin;
2994   priv->height = MAX (priv->height, gtk_widget_get_allocated_height (widget));
2995 }
2996
2997 static void
2998 gtk_icon_view_invalidate_sizes (GtkIconView *icon_view)
2999 {
3000   /* Clear all item sizes */
3001   g_list_foreach (icon_view->priv->items,
3002                   (GFunc)gtk_icon_view_item_invalidate_size, NULL);
3003
3004   /* Re-layout the items */
3005   gtk_widget_queue_resize (GTK_WIDGET (icon_view));
3006 }
3007
3008 static void
3009 gtk_icon_view_item_invalidate_size (GtkIconViewItem *item)
3010 {
3011   item->cell_area.width = -1;
3012   item->cell_area.height = -1;
3013 }
3014
3015 static void
3016 gtk_icon_view_paint_item (GtkIconView     *icon_view,
3017                           cairo_t         *cr,
3018                           GtkIconViewItem *item,
3019                           gint             x,
3020                           gint             y,
3021                           gboolean         draw_focus)
3022 {
3023   GdkRectangle cell_area;
3024   GtkStateFlags state = 0;
3025   GtkCellRendererState flags = 0;
3026   GtkStyleContext *style_context;
3027   GtkWidget *widget = GTK_WIDGET (icon_view);
3028   GtkIconViewPrivate *priv = icon_view->priv;
3029   GtkCellAreaContext *context;
3030
3031   if (priv->model == NULL || item->cell_area.width <= 0 || item->cell_area.height <= 0)
3032     return;
3033
3034   _gtk_icon_view_set_cell_data (icon_view, item);
3035
3036   style_context = gtk_widget_get_style_context (widget);
3037   state = gtk_widget_get_state_flags (widget);
3038
3039   gtk_style_context_save (style_context);
3040   gtk_style_context_add_class (style_context, GTK_STYLE_CLASS_VIEW);
3041   gtk_style_context_add_class (style_context, GTK_STYLE_CLASS_CELL);
3042
3043   state &= ~(GTK_STATE_FLAG_SELECTED | GTK_STATE_FLAG_PRELIGHT);
3044
3045   if (item->selected)
3046     {
3047       if ((state & GTK_STATE_FLAG_FOCUSED) &&
3048           item == icon_view->priv->cursor_item)
3049         {
3050           flags |= GTK_CELL_RENDERER_FOCUSED;
3051         }
3052
3053       state |= GTK_STATE_FLAG_SELECTED;
3054       flags |= GTK_CELL_RENDERER_SELECTED;
3055     }
3056
3057   if (item->prelight)
3058     {
3059       state |= GTK_STATE_FLAG_PRELIGHT;
3060       flags |= GTK_CELL_RENDERER_PRELIT;
3061     }
3062
3063   gtk_style_context_set_state (style_context, state);
3064
3065   if (item->selected)
3066     {
3067       gtk_render_background (style_context, cr,
3068                              x - icon_view->priv->item_padding,
3069                              y - icon_view->priv->item_padding,
3070                              item->cell_area.width  + icon_view->priv->item_padding * 2,
3071                              item->cell_area.height + icon_view->priv->item_padding * 2);
3072       gtk_render_frame (style_context, cr,
3073                         x - icon_view->priv->item_padding,
3074                         y - icon_view->priv->item_padding,
3075                         item->cell_area.width  + icon_view->priv->item_padding * 2,
3076                         item->cell_area.height + icon_view->priv->item_padding * 2);
3077     }
3078
3079   cell_area.x      = x;
3080   cell_area.y      = y;
3081   cell_area.width  = item->cell_area.width;
3082   cell_area.height = item->cell_area.height;
3083
3084   context = g_ptr_array_index (priv->row_contexts, item->row);
3085   gtk_cell_area_render (priv->cell_area, context,
3086                         widget, cr, &cell_area, &cell_area, flags,
3087                         draw_focus);
3088
3089   gtk_style_context_restore (style_context);
3090 }
3091
3092 static void
3093 gtk_icon_view_paint_rubberband (GtkIconView     *icon_view,
3094                                 cairo_t         *cr)
3095 {
3096   GtkStyleContext *context;
3097   GdkRectangle rect;
3098
3099   cairo_save (cr);
3100
3101   rect.x = MIN (icon_view->priv->rubberband_x1, icon_view->priv->rubberband_x2);
3102   rect.y = MIN (icon_view->priv->rubberband_y1, icon_view->priv->rubberband_y2);
3103   rect.width = ABS (icon_view->priv->rubberband_x1 - icon_view->priv->rubberband_x2) + 1;
3104   rect.height = ABS (icon_view->priv->rubberband_y1 - icon_view->priv->rubberband_y2) + 1;
3105
3106   context = gtk_widget_get_style_context (GTK_WIDGET (icon_view));
3107
3108   gtk_style_context_save (context);
3109   gtk_style_context_add_class (context, GTK_STYLE_CLASS_RUBBERBAND);
3110
3111   gdk_cairo_rectangle (cr, &rect);
3112   cairo_clip (cr);
3113
3114   gtk_render_background (context, cr,
3115                          rect.x, rect.y,
3116                          rect.width, rect.height);
3117   gtk_render_frame (context, cr,
3118                     rect.x, rect.y,
3119                     rect.width, rect.height);
3120
3121   gtk_style_context_restore (context);
3122   cairo_restore (cr);
3123 }
3124
3125 static void
3126 gtk_icon_view_queue_draw_path (GtkIconView *icon_view,
3127                                GtkTreePath *path)
3128 {
3129   GList *l;
3130   gint index;
3131
3132   index = gtk_tree_path_get_indices (path)[0];
3133
3134   for (l = icon_view->priv->items; l; l = l->next) 
3135     {
3136       GtkIconViewItem *item = l->data;
3137
3138       if (item->index == index)
3139         {
3140           gtk_icon_view_queue_draw_item (icon_view, item);
3141           break;
3142         }
3143     }
3144 }
3145
3146 static void
3147 gtk_icon_view_queue_draw_item (GtkIconView     *icon_view,
3148                                GtkIconViewItem *item)
3149 {
3150   GdkRectangle  rect;
3151   GdkRectangle *item_area = &item->cell_area;
3152
3153   rect.x      = item_area->x - icon_view->priv->item_padding;
3154   rect.y      = item_area->y - icon_view->priv->item_padding;
3155   rect.width  = item_area->width  + icon_view->priv->item_padding * 2;
3156   rect.height = item_area->height + icon_view->priv->item_padding * 2;
3157
3158   if (icon_view->priv->bin_window)
3159     gdk_window_invalidate_rect (icon_view->priv->bin_window, &rect, TRUE);
3160 }
3161
3162 void
3163 _gtk_icon_view_set_cursor_item (GtkIconView     *icon_view,
3164                                 GtkIconViewItem *item,
3165                                 GtkCellRenderer *cursor_cell)
3166 {
3167   AtkObject *obj;
3168   AtkObject *item_obj;
3169   AtkObject *cursor_item_obj;
3170
3171   /* When hitting this path from keynav, the focus cell is
3172    * already set, we dont need to notify the atk object
3173    * but we still need to queue the draw here (in the case
3174    * that the focus cell changes but not the cursor item).
3175    */
3176   gtk_icon_view_queue_draw_item (icon_view, item);
3177
3178   if (icon_view->priv->cursor_item == item &&
3179       (cursor_cell == NULL || cursor_cell == gtk_cell_area_get_focus_cell (icon_view->priv->cell_area)))
3180     return;
3181
3182   obj = gtk_widget_get_accessible (GTK_WIDGET (icon_view));
3183   if (icon_view->priv->cursor_item != NULL)
3184     {
3185       gtk_icon_view_queue_draw_item (icon_view, icon_view->priv->cursor_item);
3186       if (obj != NULL)
3187         {
3188           cursor_item_obj = atk_object_ref_accessible_child (obj, icon_view->priv->cursor_item->index);
3189           if (cursor_item_obj != NULL)
3190             atk_object_notify_state_change (cursor_item_obj, ATK_STATE_FOCUSED, FALSE);
3191         }
3192     }
3193   icon_view->priv->cursor_item = item;
3194
3195   if (cursor_cell)
3196     gtk_cell_area_set_focus_cell (icon_view->priv->cell_area, cursor_cell);
3197   else
3198     {
3199       /* Make sure there is a cell in focus initially */
3200       if (!gtk_cell_area_get_focus_cell (icon_view->priv->cell_area))
3201         gtk_cell_area_focus (icon_view->priv->cell_area, GTK_DIR_TAB_FORWARD);
3202     }
3203   
3204   /* Notify that accessible focus object has changed */
3205   item_obj = atk_object_ref_accessible_child (obj, item->index);
3206
3207   if (item_obj != NULL)
3208     {
3209       atk_focus_tracker_notify (item_obj);
3210       atk_object_notify_state_change (item_obj, ATK_STATE_FOCUSED, TRUE);
3211       g_object_unref (item_obj); 
3212     }
3213 }
3214
3215
3216 static GtkIconViewItem *
3217 gtk_icon_view_item_new (void)
3218 {
3219   GtkIconViewItem *item;
3220
3221   item = g_slice_new0 (GtkIconViewItem);
3222
3223   item->cell_area.width  = -1;
3224   item->cell_area.height = -1;
3225   
3226   return item;
3227 }
3228
3229 static void
3230 gtk_icon_view_item_free (GtkIconViewItem *item)
3231 {
3232   g_return_if_fail (item != NULL);
3233
3234   g_slice_free (GtkIconViewItem, item);
3235 }
3236
3237 GtkIconViewItem *
3238 _gtk_icon_view_get_item_at_coords (GtkIconView          *icon_view,
3239                                    gint                  x,
3240                                    gint                  y,
3241                                    gboolean              only_in_cell,
3242                                    GtkCellRenderer     **cell_at_pos)
3243 {
3244   GList *items;
3245
3246   if (cell_at_pos)
3247     *cell_at_pos = NULL;
3248
3249   for (items = icon_view->priv->items; items; items = items->next)
3250     {
3251       GtkIconViewItem *item = items->data;
3252       GdkRectangle    *item_area = &item->cell_area;
3253
3254       if (x >= item_area->x - icon_view->priv->column_spacing/2 && 
3255           x <= item_area->x + item_area->width + icon_view->priv->column_spacing/2 &&
3256           y >= item_area->y - icon_view->priv->row_spacing/2 && 
3257           y <= item_area->y + item_area->height + icon_view->priv->row_spacing/2)
3258         {
3259           if (only_in_cell || cell_at_pos)
3260             {
3261               GtkCellRenderer *cell = NULL;
3262               GtkCellAreaContext *context;
3263
3264               context = g_ptr_array_index (icon_view->priv->row_contexts, item->row);
3265               _gtk_icon_view_set_cell_data (icon_view, item);
3266
3267               if (x >= item_area->x && x <= item_area->x + item_area->width &&
3268                   y >= item_area->y && y <= item_area->y + item_area->height)
3269                 cell = gtk_cell_area_get_cell_at_position (icon_view->priv->cell_area, context,
3270                                                            GTK_WIDGET (icon_view),
3271                                                            item_area,
3272                                                            x, y, NULL);
3273
3274               if (cell_at_pos)
3275                 *cell_at_pos = cell;
3276
3277               if (only_in_cell)
3278                 return cell != NULL ? item : NULL;
3279               else
3280                 return item;
3281             }
3282           return item;
3283         }
3284     }
3285   return NULL;
3286 }
3287
3288 void
3289 _gtk_icon_view_select_item (GtkIconView      *icon_view,
3290                             GtkIconViewItem  *item)
3291 {
3292   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
3293   g_return_if_fail (item != NULL);
3294
3295   if (item->selected)
3296     return;
3297   
3298   if (icon_view->priv->selection_mode == GTK_SELECTION_NONE)
3299     return;
3300   else if (icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
3301     gtk_icon_view_unselect_all_internal (icon_view);
3302
3303   item->selected = TRUE;
3304
3305   gtk_icon_view_item_selected_changed (icon_view, item);
3306   g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
3307
3308   gtk_icon_view_queue_draw_item (icon_view, item);
3309 }
3310
3311
3312 void
3313 _gtk_icon_view_unselect_item (GtkIconView      *icon_view,
3314                               GtkIconViewItem  *item)
3315 {
3316   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
3317   g_return_if_fail (item != NULL);
3318
3319   if (!item->selected)
3320     return;
3321   
3322   if (icon_view->priv->selection_mode == GTK_SELECTION_NONE ||
3323       icon_view->priv->selection_mode == GTK_SELECTION_BROWSE)
3324     return;
3325   
3326   item->selected = FALSE;
3327
3328   gtk_icon_view_item_selected_changed (icon_view, item);
3329   g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
3330
3331   gtk_icon_view_queue_draw_item (icon_view, item);
3332 }
3333
3334 static void
3335 verify_items (GtkIconView *icon_view)
3336 {
3337   GList *items;
3338   int i = 0;
3339
3340   for (items = icon_view->priv->items; items; items = items->next)
3341     {
3342       GtkIconViewItem *item = items->data;
3343
3344       if (item->index != i)
3345         g_error ("List item does not match its index: "
3346                  "item index %d and list index %d\n", item->index, i);
3347
3348       i++;
3349     }
3350 }
3351
3352 static void
3353 gtk_icon_view_row_changed (GtkTreeModel *model,
3354                            GtkTreePath  *path,
3355                            GtkTreeIter  *iter,
3356                            gpointer      data)
3357 {
3358   GtkIconView *icon_view = GTK_ICON_VIEW (data);
3359
3360   /* ignore changes in branches */
3361   if (gtk_tree_path_get_depth (path) > 1)
3362     return;
3363
3364   /* An icon view subclass might add it's own model and populate
3365    * things at init() time instead of waiting for the constructor() 
3366    * to be called 
3367    */
3368   if (icon_view->priv->cell_area)
3369     gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
3370
3371   /* Here we can use a "grow-only" strategy for optimization
3372    * and only invalidate a single item and queue a relayout
3373    * instead of invalidating the whole thing.
3374    *
3375    * For now GtkIconView still cant deal with huge models
3376    * so just invalidate the whole thing when the model
3377    * changes.
3378    */
3379   gtk_icon_view_invalidate_sizes (icon_view);
3380
3381   verify_items (icon_view);
3382 }
3383
3384 static void
3385 gtk_icon_view_row_inserted (GtkTreeModel *model,
3386                             GtkTreePath  *path,
3387                             GtkTreeIter  *iter,
3388                             gpointer      data)
3389 {
3390   GtkIconView *icon_view = GTK_ICON_VIEW (data);
3391   gint index;
3392   GtkIconViewItem *item;
3393   GList *list;
3394
3395   /* ignore changes in branches */
3396   if (gtk_tree_path_get_depth (path) > 1)
3397     return;
3398
3399   index = gtk_tree_path_get_indices(path)[0];
3400
3401   item = gtk_icon_view_item_new ();
3402
3403   item->index = index;
3404
3405   /* FIXME: We can be more efficient here,
3406      we can store a tail pointer and use that when
3407      appending (which is a rather common operation)
3408   */
3409   icon_view->priv->items = g_list_insert (icon_view->priv->items,
3410                                          item, index);
3411   
3412   list = g_list_nth (icon_view->priv->items, index + 1);
3413   for (; list; list = list->next)
3414     {
3415       item = list->data;
3416
3417       item->index++;
3418     }
3419     
3420   verify_items (icon_view);
3421
3422   gtk_widget_queue_resize (GTK_WIDGET (icon_view));
3423 }
3424
3425 static void
3426 gtk_icon_view_row_deleted (GtkTreeModel *model,
3427                            GtkTreePath  *path,
3428                            gpointer      data)
3429 {
3430   GtkIconView *icon_view = GTK_ICON_VIEW (data);
3431   gint index;
3432   GtkIconViewItem *item;
3433   GList *list, *next;
3434   gboolean emit = FALSE;
3435
3436   /* ignore changes in branches */
3437   if (gtk_tree_path_get_depth (path) > 1)
3438     return;
3439
3440   index = gtk_tree_path_get_indices(path)[0];
3441
3442   list = g_list_nth (icon_view->priv->items, index);
3443   item = list->data;
3444
3445   if (icon_view->priv->cell_area)
3446     gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
3447
3448   if (item == icon_view->priv->anchor_item)
3449     icon_view->priv->anchor_item = NULL;
3450
3451   if (item == icon_view->priv->cursor_item)
3452     icon_view->priv->cursor_item = NULL;
3453
3454   if (item == icon_view->priv->last_prelight)
3455     icon_view->priv->last_prelight = NULL;
3456
3457   if (item->selected)
3458     emit = TRUE;
3459   
3460   gtk_icon_view_item_free (item);
3461
3462   for (next = list->next; next; next = next->next)
3463     {
3464       item = next->data;
3465
3466       item->index--;
3467     }
3468   
3469   icon_view->priv->items = g_list_delete_link (icon_view->priv->items, list);
3470
3471   verify_items (icon_view);  
3472   
3473   gtk_widget_queue_resize (GTK_WIDGET (icon_view));
3474
3475   if (emit)
3476     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
3477 }
3478
3479 static void
3480 gtk_icon_view_rows_reordered (GtkTreeModel *model,
3481                               GtkTreePath  *parent,
3482                               GtkTreeIter  *iter,
3483                               gint         *new_order,
3484                               gpointer      data)
3485 {
3486   GtkIconView *icon_view = GTK_ICON_VIEW (data);
3487   int i;
3488   int length;
3489   GList *items = NULL, *list;
3490   GtkIconViewItem **item_array;
3491   gint *order;
3492
3493   /* ignore changes in branches */
3494   if (iter != NULL)
3495     return;
3496
3497   if (icon_view->priv->cell_area)
3498     gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
3499
3500   length = gtk_tree_model_iter_n_children (model, NULL);
3501
3502   order = g_new (gint, length);
3503   for (i = 0; i < length; i++)
3504     order [new_order[i]] = i;
3505
3506   item_array = g_new (GtkIconViewItem *, length);
3507   for (i = 0, list = icon_view->priv->items; list != NULL; list = list->next, i++)
3508     item_array[order[i]] = list->data;
3509   g_free (order);
3510
3511   for (i = length - 1; i >= 0; i--)
3512     {
3513       item_array[i]->index = i;
3514       items = g_list_prepend (items, item_array[i]);
3515     }
3516   
3517   g_free (item_array);
3518   g_list_free (icon_view->priv->items);
3519   icon_view->priv->items = items;
3520
3521   gtk_widget_queue_resize (GTK_WIDGET (icon_view));
3522
3523   verify_items (icon_view);  
3524 }
3525
3526 static void
3527 gtk_icon_view_build_items (GtkIconView *icon_view)
3528 {
3529   GtkTreeIter iter;
3530   int i;
3531   GList *items = NULL;
3532
3533   if (!gtk_tree_model_get_iter_first (icon_view->priv->model,
3534                                       &iter))
3535     return;
3536
3537   i = 0;
3538   
3539   do
3540     {
3541       GtkIconViewItem *item = gtk_icon_view_item_new ();
3542
3543       item->index = i;
3544       
3545       i++;
3546
3547       items = g_list_prepend (items, item);
3548       
3549     } while (gtk_tree_model_iter_next (icon_view->priv->model, &iter));
3550
3551   icon_view->priv->items = g_list_reverse (items);
3552 }
3553
3554 static void
3555 gtk_icon_view_add_move_binding (GtkBindingSet  *binding_set,
3556                                 guint           keyval,
3557                                 guint           modmask,
3558                                 GtkMovementStep step,
3559                                 gint            count)
3560 {
3561   
3562   gtk_binding_entry_add_signal (binding_set, keyval, modmask,
3563                                 I_("move-cursor"), 2,
3564                                 G_TYPE_ENUM, step,
3565                                 G_TYPE_INT, count);
3566
3567   gtk_binding_entry_add_signal (binding_set, keyval, GDK_SHIFT_MASK,
3568                                 "move-cursor", 2,
3569                                 G_TYPE_ENUM, step,
3570                                 G_TYPE_INT, count);
3571
3572   if ((modmask & GDK_CONTROL_MASK) == GDK_CONTROL_MASK)
3573    return;
3574
3575   gtk_binding_entry_add_signal (binding_set, keyval, GDK_CONTROL_MASK | GDK_SHIFT_MASK,
3576                                 "move-cursor", 2,
3577                                 G_TYPE_ENUM, step,
3578                                 G_TYPE_INT, count);
3579
3580   gtk_binding_entry_add_signal (binding_set, keyval, GDK_CONTROL_MASK,
3581                                 "move-cursor", 2,
3582                                 G_TYPE_ENUM, step,
3583                                 G_TYPE_INT, count);
3584 }
3585
3586 static gboolean
3587 gtk_icon_view_real_move_cursor (GtkIconView     *icon_view,
3588                                 GtkMovementStep  step,
3589                                 gint             count)
3590 {
3591   GdkModifierType state;
3592
3593   g_return_val_if_fail (GTK_ICON_VIEW (icon_view), FALSE);
3594   g_return_val_if_fail (step == GTK_MOVEMENT_LOGICAL_POSITIONS ||
3595                         step == GTK_MOVEMENT_VISUAL_POSITIONS ||
3596                         step == GTK_MOVEMENT_DISPLAY_LINES ||
3597                         step == GTK_MOVEMENT_PAGES ||
3598                         step == GTK_MOVEMENT_BUFFER_ENDS, FALSE);
3599
3600   if (!gtk_widget_has_focus (GTK_WIDGET (icon_view)))
3601     return FALSE;
3602
3603   gtk_cell_area_stop_editing (icon_view->priv->cell_area, FALSE);
3604   gtk_widget_grab_focus (GTK_WIDGET (icon_view));
3605
3606   if (gtk_get_current_event_state (&state))
3607     {
3608       GdkModifierType extend_mod_mask;
3609       GdkModifierType modify_mod_mask;
3610
3611       extend_mod_mask =
3612         gtk_widget_get_modifier_mask (GTK_WIDGET (icon_view),
3613                                       GDK_MODIFIER_INTENT_EXTEND_SELECTION);
3614       modify_mod_mask =
3615         gtk_widget_get_modifier_mask (GTK_WIDGET (icon_view),
3616                                       GDK_MODIFIER_INTENT_MODIFY_SELECTION);
3617
3618       if ((state & modify_mod_mask) == modify_mod_mask)
3619         icon_view->priv->modify_selection_pressed = TRUE;
3620       if ((state & extend_mod_mask) == extend_mod_mask)
3621         icon_view->priv->extend_selection_pressed = TRUE;
3622     }
3623   /* else we assume not pressed */
3624
3625   switch (step)
3626     {
3627     case GTK_MOVEMENT_LOGICAL_POSITIONS:
3628     case GTK_MOVEMENT_VISUAL_POSITIONS:
3629       gtk_icon_view_move_cursor_left_right (icon_view, count);
3630       break;
3631     case GTK_MOVEMENT_DISPLAY_LINES:
3632       gtk_icon_view_move_cursor_up_down (icon_view, count);
3633       break;
3634     case GTK_MOVEMENT_PAGES:
3635       gtk_icon_view_move_cursor_page_up_down (icon_view, count);
3636       break;
3637     case GTK_MOVEMENT_BUFFER_ENDS:
3638       gtk_icon_view_move_cursor_start_end (icon_view, count);
3639       break;
3640     default:
3641       g_assert_not_reached ();
3642     }
3643
3644   icon_view->priv->modify_selection_pressed = FALSE;
3645   icon_view->priv->extend_selection_pressed = FALSE;
3646
3647   icon_view->priv->draw_focus = TRUE;
3648
3649   return TRUE;
3650 }
3651
3652 static GtkIconViewItem *
3653 find_item (GtkIconView     *icon_view,
3654            GtkIconViewItem *current,
3655            gint             row_ofs,
3656            gint             col_ofs)
3657 {
3658   gint row, col;
3659   GList *items;
3660   GtkIconViewItem *item;
3661
3662   /* FIXME: this could be more efficient 
3663    */
3664   row = current->row + row_ofs;
3665   col = current->col + col_ofs;
3666
3667   for (items = icon_view->priv->items; items; items = items->next)
3668     {
3669       item = items->data;
3670       if (item->row == row && item->col == col)
3671         return item;
3672     }
3673   
3674   return NULL;
3675 }
3676
3677 static GtkIconViewItem *
3678 find_item_page_up_down (GtkIconView     *icon_view,
3679                         GtkIconViewItem *current,
3680                         gint             count)
3681 {
3682   GList *item, *next;
3683   gint y, col;
3684   
3685   col = current->col;
3686   y = current->cell_area.y + count * gtk_adjustment_get_page_size (icon_view->priv->vadjustment);
3687
3688   item = g_list_find (icon_view->priv->items, current);
3689   if (count > 0)
3690     {
3691       while (item)
3692         {
3693           for (next = item->next; next; next = next->next)
3694             {
3695               if (((GtkIconViewItem *)next->data)->col == col)
3696                 break;
3697             }
3698           if (!next || ((GtkIconViewItem *)next->data)->cell_area.y > y)
3699             break;
3700
3701           item = next;
3702         }
3703     }
3704   else 
3705     {
3706       while (item)
3707         {
3708           for (next = item->prev; next; next = next->prev)
3709             {
3710               if (((GtkIconViewItem *)next->data)->col == col)
3711                 break;
3712             }
3713           if (!next || ((GtkIconViewItem *)next->data)->cell_area.y < y)
3714             break;
3715
3716           item = next;
3717         }
3718     }
3719
3720   if (item)
3721     return item->data;
3722
3723   return NULL;
3724 }
3725
3726 static gboolean
3727 gtk_icon_view_select_all_between (GtkIconView     *icon_view,
3728                                   GtkIconViewItem *anchor,
3729                                   GtkIconViewItem *cursor)
3730 {
3731   GList *items;
3732   GtkIconViewItem *item;
3733   gint row1, row2, col1, col2;
3734   gboolean dirty = FALSE;
3735   
3736   if (anchor->row < cursor->row)
3737     {
3738       row1 = anchor->row;
3739       row2 = cursor->row;
3740     }
3741   else
3742     {
3743       row1 = cursor->row;
3744       row2 = anchor->row;
3745     }
3746
3747   if (anchor->col < cursor->col)
3748     {
3749       col1 = anchor->col;
3750       col2 = cursor->col;
3751     }
3752   else
3753     {
3754       col1 = cursor->col;
3755       col2 = anchor->col;
3756     }
3757
3758   for (items = icon_view->priv->items; items; items = items->next)
3759     {
3760       item = items->data;
3761
3762       if (row1 <= item->row && item->row <= row2 &&
3763           col1 <= item->col && item->col <= col2)
3764         {
3765           if (!item->selected)
3766             {
3767               dirty = TRUE;
3768               item->selected = TRUE;
3769               gtk_icon_view_item_selected_changed (icon_view, item);
3770             }
3771           gtk_icon_view_queue_draw_item (icon_view, item);
3772         }
3773     }
3774
3775   return dirty;
3776 }
3777
3778 static void 
3779 gtk_icon_view_move_cursor_up_down (GtkIconView *icon_view,
3780                                    gint         count)
3781 {
3782   GtkIconViewItem *item;
3783   GtkCellRenderer *cell = NULL;
3784   gboolean dirty = FALSE;
3785   gint step;
3786   GtkDirectionType direction;
3787
3788   if (!gtk_widget_has_focus (GTK_WIDGET (icon_view)))
3789     return;
3790
3791   direction = count < 0 ? GTK_DIR_UP : GTK_DIR_DOWN;
3792
3793   if (!icon_view->priv->cursor_item)
3794     {
3795       GList *list;
3796
3797       if (count > 0)
3798         list = icon_view->priv->items;
3799       else
3800         list = g_list_last (icon_view->priv->items);
3801
3802       if (list)
3803         {
3804           item = list->data;
3805
3806           /* Give focus to the first cell initially */
3807           _gtk_icon_view_set_cell_data (icon_view, item);
3808           gtk_cell_area_focus (icon_view->priv->cell_area, direction);
3809         }
3810       else
3811         {
3812           item = NULL;
3813         }
3814     }
3815   else
3816     {
3817       item = icon_view->priv->cursor_item;
3818       step = count > 0 ? 1 : -1;      
3819
3820       /* Save the current focus cell in case we hit the edge */
3821       cell = gtk_cell_area_get_focus_cell (icon_view->priv->cell_area);
3822
3823       while (item)
3824         {
3825           _gtk_icon_view_set_cell_data (icon_view, item);
3826
3827           if (gtk_cell_area_focus (icon_view->priv->cell_area, direction))
3828             break;
3829
3830           item = find_item (icon_view, item, step, 0);
3831         }
3832     }
3833
3834   if (!item)
3835     {
3836       if (!gtk_widget_keynav_failed (GTK_WIDGET (icon_view), direction))
3837         {
3838           GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (icon_view));
3839           if (toplevel)
3840             gtk_widget_child_focus (toplevel,
3841                                     direction == GTK_DIR_UP ?
3842                                     GTK_DIR_TAB_BACKWARD :
3843                                     GTK_DIR_TAB_FORWARD);
3844
3845         }
3846
3847       gtk_cell_area_set_focus_cell (icon_view->priv->cell_area, cell);
3848       return;
3849     }
3850
3851   if (icon_view->priv->modify_selection_pressed ||
3852       !icon_view->priv->extend_selection_pressed ||
3853       !icon_view->priv->anchor_item ||
3854       icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
3855     icon_view->priv->anchor_item = item;
3856
3857   cell = gtk_cell_area_get_focus_cell (icon_view->priv->cell_area);
3858   _gtk_icon_view_set_cursor_item (icon_view, item, cell);
3859
3860   if (!icon_view->priv->modify_selection_pressed &&
3861       icon_view->priv->selection_mode != GTK_SELECTION_NONE)
3862     {
3863       dirty = gtk_icon_view_unselect_all_internal (icon_view);
3864       dirty = gtk_icon_view_select_all_between (icon_view, 
3865                                                 icon_view->priv->anchor_item,
3866                                                 item) || dirty;
3867     }
3868
3869   gtk_icon_view_scroll_to_item (icon_view, item);
3870
3871   if (dirty)
3872     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
3873 }
3874
3875 static void 
3876 gtk_icon_view_move_cursor_page_up_down (GtkIconView *icon_view,
3877                                         gint         count)
3878 {
3879   GtkIconViewItem *item;
3880   gboolean dirty = FALSE;
3881   
3882   if (!gtk_widget_has_focus (GTK_WIDGET (icon_view)))
3883     return;
3884   
3885   if (!icon_view->priv->cursor_item)
3886     {
3887       GList *list;
3888
3889       if (count > 0)
3890         list = icon_view->priv->items;
3891       else
3892         list = g_list_last (icon_view->priv->items);
3893
3894       item = list ? list->data : NULL;
3895     }
3896   else
3897     item = find_item_page_up_down (icon_view, 
3898                                    icon_view->priv->cursor_item,
3899                                    count);
3900
3901   if (item == icon_view->priv->cursor_item)
3902     gtk_widget_error_bell (GTK_WIDGET (icon_view));
3903
3904   if (!item)
3905     return;
3906
3907   if (icon_view->priv->modify_selection_pressed ||
3908       !icon_view->priv->extend_selection_pressed ||
3909       !icon_view->priv->anchor_item ||
3910       icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
3911     icon_view->priv->anchor_item = item;
3912
3913   _gtk_icon_view_set_cursor_item (icon_view, item, NULL);
3914
3915   if (!icon_view->priv->modify_selection_pressed &&
3916       icon_view->priv->selection_mode != GTK_SELECTION_NONE)
3917     {
3918       dirty = gtk_icon_view_unselect_all_internal (icon_view);
3919       dirty = gtk_icon_view_select_all_between (icon_view, 
3920                                                 icon_view->priv->anchor_item,
3921                                                 item) || dirty;
3922     }
3923
3924   gtk_icon_view_scroll_to_item (icon_view, item);
3925
3926   if (dirty)
3927     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);  
3928 }
3929
3930 static void 
3931 gtk_icon_view_move_cursor_left_right (GtkIconView *icon_view,
3932                                       gint         count)
3933 {
3934   GtkIconViewItem *item;
3935   GtkCellRenderer *cell = NULL;
3936   gboolean dirty = FALSE;
3937   gint step;
3938   GtkDirectionType direction;
3939
3940   if (!gtk_widget_has_focus (GTK_WIDGET (icon_view)))
3941     return;
3942
3943   direction = count < 0 ? GTK_DIR_LEFT : GTK_DIR_RIGHT;
3944
3945   if (!icon_view->priv->cursor_item)
3946     {
3947       GList *list;
3948
3949       if (count > 0)
3950         list = icon_view->priv->items;
3951       else
3952         list = g_list_last (icon_view->priv->items);
3953
3954       if (list)
3955         {
3956           item = list->data;
3957
3958           /* Give focus to the first cell initially */
3959           _gtk_icon_view_set_cell_data (icon_view, item);
3960           gtk_cell_area_focus (icon_view->priv->cell_area, direction);
3961         }
3962       else
3963         {
3964           item = NULL;
3965         }
3966     }
3967   else
3968     {
3969       item = icon_view->priv->cursor_item;
3970       step = count > 0 ? 1 : -1;
3971
3972       /* Save the current focus cell in case we hit the edge */
3973       cell = gtk_cell_area_get_focus_cell (icon_view->priv->cell_area);
3974
3975       while (item)
3976         {
3977           _gtk_icon_view_set_cell_data (icon_view, item);
3978
3979           if (gtk_cell_area_focus (icon_view->priv->cell_area, direction))
3980             break;
3981           
3982           item = find_item (icon_view, item, 0, step);
3983         }
3984     }
3985
3986   if (!item)
3987     {
3988       if (!gtk_widget_keynav_failed (GTK_WIDGET (icon_view), direction))
3989         {
3990           GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (icon_view));
3991           if (toplevel)
3992             gtk_widget_child_focus (toplevel,
3993                                     direction == GTK_DIR_LEFT ?
3994                                     GTK_DIR_TAB_BACKWARD :
3995                                     GTK_DIR_TAB_FORWARD);
3996
3997         }
3998
3999       gtk_cell_area_set_focus_cell (icon_view->priv->cell_area, cell);
4000       return;
4001     }
4002
4003   if (icon_view->priv->modify_selection_pressed ||
4004       !icon_view->priv->extend_selection_pressed ||
4005       !icon_view->priv->anchor_item ||
4006       icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
4007     icon_view->priv->anchor_item = item;
4008
4009   cell = gtk_cell_area_get_focus_cell (icon_view->priv->cell_area);
4010   _gtk_icon_view_set_cursor_item (icon_view, item, cell);
4011
4012   if (!icon_view->priv->modify_selection_pressed &&
4013       icon_view->priv->selection_mode != GTK_SELECTION_NONE)
4014     {
4015       dirty = gtk_icon_view_unselect_all_internal (icon_view);
4016       dirty = gtk_icon_view_select_all_between (icon_view, 
4017                                                 icon_view->priv->anchor_item,
4018                                                 item) || dirty;
4019     }
4020
4021   gtk_icon_view_scroll_to_item (icon_view, item);
4022
4023   if (dirty)
4024     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
4025 }
4026
4027 static void 
4028 gtk_icon_view_move_cursor_start_end (GtkIconView *icon_view,
4029                                      gint         count)
4030 {
4031   GtkIconViewItem *item;
4032   GList *list;
4033   gboolean dirty = FALSE;
4034   
4035   if (!gtk_widget_has_focus (GTK_WIDGET (icon_view)))
4036     return;
4037   
4038   if (count < 0)
4039     list = icon_view->priv->items;
4040   else
4041     list = g_list_last (icon_view->priv->items);
4042   
4043   item = list ? list->data : NULL;
4044
4045   if (item == icon_view->priv->cursor_item)
4046     gtk_widget_error_bell (GTK_WIDGET (icon_view));
4047
4048   if (!item)
4049     return;
4050
4051   if (icon_view->priv->modify_selection_pressed ||
4052       !icon_view->priv->extend_selection_pressed ||
4053       !icon_view->priv->anchor_item ||
4054       icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
4055     icon_view->priv->anchor_item = item;
4056
4057   _gtk_icon_view_set_cursor_item (icon_view, item, NULL);
4058
4059   if (!icon_view->priv->modify_selection_pressed &&
4060       icon_view->priv->selection_mode != GTK_SELECTION_NONE)
4061     {
4062       dirty = gtk_icon_view_unselect_all_internal (icon_view);
4063       dirty = gtk_icon_view_select_all_between (icon_view, 
4064                                                 icon_view->priv->anchor_item,
4065                                                 item) || dirty;
4066     }
4067
4068   gtk_icon_view_scroll_to_item (icon_view, item);
4069
4070   if (dirty)
4071     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
4072 }
4073
4074 /**
4075  * gtk_icon_view_scroll_to_path:
4076  * @icon_view: A #GtkIconView.
4077  * @path: The path of the item to move to.
4078  * @use_align: whether to use alignment arguments, or %FALSE.
4079  * @row_align: The vertical alignment of the item specified by @path.
4080  * @col_align: The horizontal alignment of the item specified by @path.
4081  *
4082  * Moves the alignments of @icon_view to the position specified by @path.  
4083  * @row_align determines where the row is placed, and @col_align determines 
4084  * where @column is placed.  Both are expected to be between 0.0 and 1.0. 
4085  * 0.0 means left/top alignment, 1.0 means right/bottom alignment, 0.5 means 
4086  * center.
4087  *
4088  * If @use_align is %FALSE, then the alignment arguments are ignored, and the
4089  * tree does the minimum amount of work to scroll the item onto the screen.
4090  * This means that the item will be scrolled to the edge closest to its current
4091  * position.  If the item is currently visible on the screen, nothing is done.
4092  *
4093  * This function only works if the model is set, and @path is a valid row on 
4094  * the model. If the model changes before the @icon_view is realized, the 
4095  * centered path will be modified to reflect this change.
4096  *
4097  * Since: 2.8
4098  **/
4099 void
4100 gtk_icon_view_scroll_to_path (GtkIconView *icon_view,
4101                               GtkTreePath *path,
4102                               gboolean     use_align,
4103                               gfloat       row_align,
4104                               gfloat       col_align)
4105 {
4106   GtkIconViewItem *item = NULL;
4107   GtkWidget *widget;
4108
4109   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4110   g_return_if_fail (path != NULL);
4111   g_return_if_fail (row_align >= 0.0 && row_align <= 1.0);
4112   g_return_if_fail (col_align >= 0.0 && col_align <= 1.0);
4113
4114   widget = GTK_WIDGET (icon_view);
4115
4116   if (gtk_tree_path_get_depth (path) > 0)
4117     item = g_list_nth_data (icon_view->priv->items,
4118                             gtk_tree_path_get_indices(path)[0]);
4119   
4120   if (!item || item->cell_area.width < 0 ||
4121       !gtk_widget_get_realized (widget))
4122     {
4123       if (icon_view->priv->scroll_to_path)
4124         gtk_tree_row_reference_free (icon_view->priv->scroll_to_path);
4125
4126       icon_view->priv->scroll_to_path = NULL;
4127
4128       if (path)
4129         icon_view->priv->scroll_to_path = gtk_tree_row_reference_new_proxy (G_OBJECT (icon_view), icon_view->priv->model, path);
4130
4131       icon_view->priv->scroll_to_use_align = use_align;
4132       icon_view->priv->scroll_to_row_align = row_align;
4133       icon_view->priv->scroll_to_col_align = col_align;
4134
4135       return;
4136     }
4137
4138   if (use_align)
4139     {
4140       GtkAllocation allocation;
4141       gint x, y;
4142       gfloat offset;
4143       GdkRectangle item_area = 
4144         { 
4145           item->cell_area.x - icon_view->priv->item_padding, 
4146           item->cell_area.y - icon_view->priv->item_padding, 
4147           item->cell_area.width  + icon_view->priv->item_padding * 2, 
4148           item->cell_area.height + icon_view->priv->item_padding * 2 
4149         };
4150
4151       gdk_window_get_position (icon_view->priv->bin_window, &x, &y);
4152
4153       gtk_widget_get_allocation (widget, &allocation);
4154
4155       offset = y + item_area.y - row_align * (allocation.height - item_area.height);
4156
4157       gtk_adjustment_set_value (icon_view->priv->vadjustment,
4158                                 gtk_adjustment_get_value (icon_view->priv->vadjustment) + offset);
4159
4160       offset = x + item_area.x - col_align * (allocation.width - item_area.width);
4161
4162       gtk_adjustment_set_value (icon_view->priv->hadjustment,
4163                                 gtk_adjustment_get_value (icon_view->priv->hadjustment) + offset);
4164
4165       gtk_adjustment_changed (icon_view->priv->hadjustment);
4166       gtk_adjustment_changed (icon_view->priv->vadjustment);
4167     }
4168   else
4169     gtk_icon_view_scroll_to_item (icon_view, item);
4170 }
4171
4172
4173 static void
4174 gtk_icon_view_scroll_to_item (GtkIconView     *icon_view,
4175                               GtkIconViewItem *item)
4176 {
4177   GtkIconViewPrivate *priv = icon_view->priv;
4178   GtkWidget *widget = GTK_WIDGET (icon_view);
4179   GtkAdjustment *hadj, *vadj;
4180   GtkAllocation allocation;
4181   gint x, y;
4182   GdkRectangle item_area;
4183
4184   item_area.x = item->cell_area.x - priv->item_padding;
4185   item_area.y = item->cell_area.y - priv->item_padding;
4186   item_area.width = item->cell_area.width  + priv->item_padding * 2;
4187   item_area.height = item->cell_area.height + priv->item_padding * 2;
4188
4189   gdk_window_get_position (icon_view->priv->bin_window, &x, &y);
4190   gtk_widget_get_allocation (widget, &allocation);
4191
4192   hadj = icon_view->priv->hadjustment;
4193   vadj = icon_view->priv->vadjustment;
4194
4195   if (y + item_area.y < 0)
4196     gtk_adjustment_set_value (vadj,
4197                               gtk_adjustment_get_value (vadj)
4198                                 + y + item_area.y);
4199   else if (y + item_area.y + item_area.height > allocation.height)
4200     gtk_adjustment_set_value (vadj,
4201                               gtk_adjustment_get_value (vadj)
4202                                 + y + item_area.y + item_area.height - allocation.height);
4203
4204   if (x + item_area.x < 0)
4205     gtk_adjustment_set_value (hadj,
4206                               gtk_adjustment_get_value (hadj)
4207                                 + x + item_area.x);
4208   else if (x + item_area.x + item_area.width > allocation.width)
4209     gtk_adjustment_set_value (hadj,
4210                               gtk_adjustment_get_value (hadj)
4211                                 + x + item_area.x + item_area.width - allocation.width);
4212
4213   gtk_adjustment_changed (hadj);
4214   gtk_adjustment_changed (vadj);
4215 }
4216
4217 /* GtkCellLayout implementation */
4218
4219 static void
4220 gtk_icon_view_ensure_cell_area (GtkIconView *icon_view,
4221                                 GtkCellArea *cell_area)
4222 {
4223   GtkIconViewPrivate *priv = icon_view->priv;
4224
4225   if (priv->cell_area)
4226     return;
4227
4228   if (cell_area)
4229     priv->cell_area = cell_area;
4230   else
4231     priv->cell_area = gtk_cell_area_box_new ();
4232
4233   g_object_ref_sink (priv->cell_area);
4234
4235   if (GTK_IS_ORIENTABLE (priv->cell_area))
4236     gtk_orientable_set_orientation (GTK_ORIENTABLE (priv->cell_area), priv->item_orientation);
4237
4238   priv->cell_area_context = gtk_cell_area_create_context (priv->cell_area);
4239
4240   priv->add_editable_id =
4241     g_signal_connect (priv->cell_area, "add-editable",
4242                       G_CALLBACK (gtk_icon_view_add_editable), icon_view);
4243   priv->remove_editable_id =
4244     g_signal_connect (priv->cell_area, "remove-editable",
4245                       G_CALLBACK (gtk_icon_view_remove_editable), icon_view);
4246
4247   update_text_cell (icon_view);
4248   update_pixbuf_cell (icon_view);
4249 }
4250
4251 static GtkCellArea *
4252 gtk_icon_view_cell_layout_get_area (GtkCellLayout *cell_layout)
4253 {
4254   GtkIconView *icon_view = GTK_ICON_VIEW (cell_layout);
4255   GtkIconViewPrivate *priv = icon_view->priv;
4256
4257   if (G_UNLIKELY (!priv->cell_area))
4258     gtk_icon_view_ensure_cell_area (icon_view, NULL);
4259
4260   return icon_view->priv->cell_area;
4261 }
4262
4263 void
4264 _gtk_icon_view_set_cell_data (GtkIconView     *icon_view,
4265                               GtkIconViewItem *item)
4266 {
4267   GtkTreeIter iter;
4268   GtkTreePath *path;
4269
4270   path = gtk_tree_path_new_from_indices (item->index, -1);
4271   if (!gtk_tree_model_get_iter (icon_view->priv->model, &iter, path))
4272     return;
4273   gtk_tree_path_free (path);
4274
4275   gtk_cell_area_apply_attributes (icon_view->priv->cell_area, 
4276                                   icon_view->priv->model,
4277                                   &iter, FALSE, FALSE);
4278 }
4279
4280
4281
4282 /* Public API */
4283
4284
4285 /**
4286  * gtk_icon_view_new:
4287  * 
4288  * Creates a new #GtkIconView widget
4289  * 
4290  * Return value: A newly created #GtkIconView widget
4291  *
4292  * Since: 2.6
4293  **/
4294 GtkWidget *
4295 gtk_icon_view_new (void)
4296 {
4297   return g_object_new (GTK_TYPE_ICON_VIEW, NULL);
4298 }
4299
4300 /**
4301  * gtk_icon_view_new_with_area:
4302  * @area: the #GtkCellArea to use to layout cells
4303  * 
4304  * Creates a new #GtkIconView widget using the
4305  * specified @area to layout cells inside the icons.
4306  * 
4307  * Return value: A newly created #GtkIconView widget
4308  *
4309  * Since: 3.0
4310  **/
4311 GtkWidget *
4312 gtk_icon_view_new_with_area (GtkCellArea *area)
4313 {
4314   return g_object_new (GTK_TYPE_ICON_VIEW, "cell-area", area, NULL);
4315 }
4316
4317 /**
4318  * gtk_icon_view_new_with_model:
4319  * @model: The model.
4320  * 
4321  * Creates a new #GtkIconView widget with the model @model.
4322  * 
4323  * Return value: A newly created #GtkIconView widget.
4324  *
4325  * Since: 2.6 
4326  **/
4327 GtkWidget *
4328 gtk_icon_view_new_with_model (GtkTreeModel *model)
4329 {
4330   return g_object_new (GTK_TYPE_ICON_VIEW, "model", model, NULL);
4331 }
4332
4333 /**
4334  * gtk_icon_view_convert_widget_to_bin_window_coords:
4335  * @icon_view: a #GtkIconView 
4336  * @wx: X coordinate relative to the widget
4337  * @wy: Y coordinate relative to the widget
4338  * @bx: (out): return location for bin_window X coordinate
4339  * @by: (out): return location for bin_window Y coordinate
4340  * 
4341  * Converts widget coordinates to coordinates for the bin_window,
4342  * as expected by e.g. gtk_icon_view_get_path_at_pos(). 
4343  *
4344  * Since: 2.12
4345  */
4346 void
4347 gtk_icon_view_convert_widget_to_bin_window_coords (GtkIconView *icon_view,
4348                                                    gint         wx,
4349                                                    gint         wy, 
4350                                                    gint        *bx,
4351                                                    gint        *by)
4352 {
4353   gint x, y;
4354
4355   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4356
4357   if (icon_view->priv->bin_window) 
4358     gdk_window_get_position (icon_view->priv->bin_window, &x, &y);
4359   else
4360     x = y = 0;
4361  
4362   if (bx)
4363     *bx = wx - x;
4364   if (by)
4365     *by = wy - y;
4366 }
4367
4368 /**
4369  * gtk_icon_view_get_path_at_pos:
4370  * @icon_view: A #GtkIconView.
4371  * @x: The x position to be identified
4372  * @y: The y position to be identified
4373  * 
4374  * Finds the path at the point (@x, @y), relative to bin_window coordinates.
4375  * See gtk_icon_view_get_item_at_pos(), if you are also interested in
4376  * the cell at the specified position. 
4377  * See gtk_icon_view_convert_widget_to_bin_window_coords() for converting
4378  * widget coordinates to bin_window coordinates.
4379  * 
4380  * Return value: The #GtkTreePath corresponding to the icon or %NULL
4381  * if no icon exists at that position.
4382  *
4383  * Since: 2.6 
4384  **/
4385 GtkTreePath *
4386 gtk_icon_view_get_path_at_pos (GtkIconView *icon_view,
4387                                gint         x,
4388                                gint         y)
4389 {
4390   GtkIconViewItem *item;
4391   GtkTreePath *path;
4392   
4393   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), NULL);
4394
4395   item = _gtk_icon_view_get_item_at_coords (icon_view, x, y, TRUE, NULL);
4396
4397   if (!item)
4398     return NULL;
4399
4400   path = gtk_tree_path_new_from_indices (item->index, -1);
4401
4402   return path;
4403 }
4404
4405 /**
4406  * gtk_icon_view_get_item_at_pos:
4407  * @icon_view: A #GtkIconView.
4408  * @x: The x position to be identified
4409  * @y: The y position to be identified
4410  * @path: (out) (allow-none): Return location for the path, or %NULL
4411  * @cell: (out) (allow-none): Return location for the renderer
4412  *   responsible for the cell at (@x, @y), or %NULL
4413  * 
4414  * Finds the path at the point (@x, @y), relative to bin_window coordinates.
4415  * In contrast to gtk_icon_view_get_path_at_pos(), this function also 
4416  * obtains the cell at the specified position. The returned path should
4417  * be freed with gtk_tree_path_free().
4418  * See gtk_icon_view_convert_widget_to_bin_window_coords() for converting
4419  * widget coordinates to bin_window coordinates.
4420  * 
4421  * Return value: %TRUE if an item exists at the specified position
4422  *
4423  * Since: 2.8
4424  **/
4425 gboolean 
4426 gtk_icon_view_get_item_at_pos (GtkIconView      *icon_view,
4427                                gint              x,
4428                                gint              y,
4429                                GtkTreePath     **path,
4430                                GtkCellRenderer **cell)
4431 {
4432   GtkIconViewItem *item;
4433   GtkCellRenderer *renderer = NULL;
4434   
4435   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
4436
4437   item = _gtk_icon_view_get_item_at_coords (icon_view, x, y, TRUE, &renderer);
4438
4439   if (path != NULL)
4440     {
4441       if (item != NULL)
4442         *path = gtk_tree_path_new_from_indices (item->index, -1);
4443       else
4444         *path = NULL;
4445     }
4446
4447   if (cell != NULL)
4448     *cell = renderer;
4449
4450   return (item != NULL);
4451 }
4452
4453 /**
4454  * gtk_icon_view_get_cell_rect:
4455  * @icon_view: a #GtkIconView
4456  * @path: a #GtkTreePath
4457  * @cell: (allow-none): a #GtkCellRenderer or %NULL
4458  * @rect: (out): rectangle to fill with cell rect
4459  *
4460  * Fills the bounding rectangle in widget coordinates for the cell specified by
4461  * @path and @cell. If @cell is %NULL the main cell area is used.
4462  *
4463  * This function is only valid if @icon_view is realized.
4464  *
4465  * Return value: %FALSE if there is no such item, %TRUE otherwise
4466  *
4467  * Since: 3.6
4468  */
4469 gboolean
4470 gtk_icon_view_get_cell_rect (GtkIconView     *icon_view,
4471                              GtkTreePath     *path,
4472                              GtkCellRenderer *cell,
4473                              GdkRectangle    *rect)
4474 {
4475   GtkIconViewItem *item = NULL;
4476   gint x, y;
4477
4478   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
4479   g_return_val_if_fail (cell == NULL || GTK_IS_CELL_RENDERER (cell), FALSE);
4480
4481   if (gtk_tree_path_get_depth (path) > 0)
4482     item = g_list_nth_data (icon_view->priv->items,
4483                             gtk_tree_path_get_indices(path)[0]);
4484
4485   if (!item)
4486     return FALSE;
4487
4488   if (cell)
4489     {
4490       GtkCellAreaContext *context;
4491
4492       context = g_ptr_array_index (icon_view->priv->row_contexts, item->row);
4493       _gtk_icon_view_set_cell_data (icon_view, item);
4494       gtk_cell_area_get_cell_allocation (icon_view->priv->cell_area, context,
4495                                          GTK_WIDGET (icon_view),
4496                                          cell, &item->cell_area, rect);
4497     }
4498   else
4499     {
4500       rect->x = item->cell_area.x - icon_view->priv->item_padding;
4501       rect->y = item->cell_area.y - icon_view->priv->item_padding;
4502       rect->width  = item->cell_area.width  + icon_view->priv->item_padding * 2;
4503       rect->height = item->cell_area.height + icon_view->priv->item_padding * 2;
4504     }
4505
4506   if (icon_view->priv->bin_window)
4507     {
4508       gdk_window_get_position (icon_view->priv->bin_window, &x, &y);
4509       rect->x += x;
4510       rect->y += y;
4511     }
4512
4513   return TRUE;
4514 }
4515
4516 /**
4517  * gtk_icon_view_set_tooltip_item:
4518  * @icon_view: a #GtkIconView
4519  * @tooltip: a #GtkTooltip
4520  * @path: a #GtkTreePath
4521  * 
4522  * Sets the tip area of @tooltip to be the area covered by the item at @path.
4523  * See also gtk_icon_view_set_tooltip_column() for a simpler alternative.
4524  * See also gtk_tooltip_set_tip_area().
4525  * 
4526  * Since: 2.12
4527  */
4528 void 
4529 gtk_icon_view_set_tooltip_item (GtkIconView     *icon_view,
4530                                 GtkTooltip      *tooltip,
4531                                 GtkTreePath     *path)
4532 {
4533   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4534   g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
4535
4536   gtk_icon_view_set_tooltip_cell (icon_view, tooltip, path, NULL);
4537 }
4538
4539 /**
4540  * gtk_icon_view_set_tooltip_cell:
4541  * @icon_view: a #GtkIconView
4542  * @tooltip: a #GtkTooltip
4543  * @path: a #GtkTreePath
4544  * @cell: (allow-none): a #GtkCellRenderer or %NULL
4545  *
4546  * Sets the tip area of @tooltip to the area which @cell occupies in
4547  * the item pointed to by @path. See also gtk_tooltip_set_tip_area().
4548  *
4549  * See also gtk_icon_view_set_tooltip_column() for a simpler alternative.
4550  *
4551  * Since: 2.12
4552  */
4553 void
4554 gtk_icon_view_set_tooltip_cell (GtkIconView     *icon_view,
4555                                 GtkTooltip      *tooltip,
4556                                 GtkTreePath     *path,
4557                                 GtkCellRenderer *cell)
4558 {
4559   GdkRectangle rect;
4560
4561   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4562   g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
4563   g_return_if_fail (cell == NULL || GTK_IS_CELL_RENDERER (cell));
4564
4565   if (!gtk_icon_view_get_cell_rect (icon_view, path, cell, &rect))
4566     return;
4567
4568   gtk_tooltip_set_tip_area (tooltip, &rect);
4569 }
4570
4571
4572 /**
4573  * gtk_icon_view_get_tooltip_context:
4574  * @icon_view: an #GtkIconView
4575  * @x: (inout): the x coordinate (relative to widget coordinates)
4576  * @y: (inout): the y coordinate (relative to widget coordinates)
4577  * @keyboard_tip: whether this is a keyboard tooltip or not
4578  * @model: (out) (allow-none): a pointer to receive a #GtkTreeModel or %NULL
4579  * @path: (out) (allow-none): a pointer to receive a #GtkTreePath or %NULL
4580  * @iter: (out) (allow-none): a pointer to receive a #GtkTreeIter or %NULL
4581  *
4582  * This function is supposed to be used in a #GtkWidget::query-tooltip
4583  * signal handler for #GtkIconView.  The @x, @y and @keyboard_tip values
4584  * which are received in the signal handler, should be passed to this
4585  * function without modification.
4586  *
4587  * The return value indicates whether there is an icon view item at the given
4588  * coordinates (%TRUE) or not (%FALSE) for mouse tooltips. For keyboard
4589  * tooltips the item returned will be the cursor item. When %TRUE, then any of
4590  * @model, @path and @iter which have been provided will be set to point to
4591  * that row and the corresponding model. @x and @y will always be converted
4592  * to be relative to @icon_view's bin_window if @keyboard_tooltip is %FALSE.
4593  *
4594  * Return value: whether or not the given tooltip context points to a item
4595  *
4596  * Since: 2.12
4597  */
4598 gboolean
4599 gtk_icon_view_get_tooltip_context (GtkIconView   *icon_view,
4600                                    gint          *x,
4601                                    gint          *y,
4602                                    gboolean       keyboard_tip,
4603                                    GtkTreeModel **model,
4604                                    GtkTreePath  **path,
4605                                    GtkTreeIter   *iter)
4606 {
4607   GtkTreePath *tmppath = NULL;
4608
4609   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
4610   g_return_val_if_fail (x != NULL, FALSE);
4611   g_return_val_if_fail (y != NULL, FALSE);
4612
4613   if (keyboard_tip)
4614     {
4615       gtk_icon_view_get_cursor (icon_view, &tmppath, NULL);
4616
4617       if (!tmppath)
4618         return FALSE;
4619     }
4620   else
4621     {
4622       gtk_icon_view_convert_widget_to_bin_window_coords (icon_view, *x, *y,
4623                                                          x, y);
4624
4625       if (!gtk_icon_view_get_item_at_pos (icon_view, *x, *y, &tmppath, NULL))
4626         return FALSE;
4627     }
4628
4629   if (model)
4630     *model = gtk_icon_view_get_model (icon_view);
4631
4632   if (iter)
4633     gtk_tree_model_get_iter (gtk_icon_view_get_model (icon_view),
4634                              iter, tmppath);
4635
4636   if (path)
4637     *path = tmppath;
4638   else
4639     gtk_tree_path_free (tmppath);
4640
4641   return TRUE;
4642 }
4643
4644 static gboolean
4645 gtk_icon_view_set_tooltip_query_cb (GtkWidget  *widget,
4646                                     gint        x,
4647                                     gint        y,
4648                                     gboolean    keyboard_tip,
4649                                     GtkTooltip *tooltip,
4650                                     gpointer    data)
4651 {
4652   gchar *str;
4653   GtkTreeIter iter;
4654   GtkTreePath *path;
4655   GtkTreeModel *model;
4656   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
4657
4658   if (!gtk_icon_view_get_tooltip_context (GTK_ICON_VIEW (widget),
4659                                           &x, &y,
4660                                           keyboard_tip,
4661                                           &model, &path, &iter))
4662     return FALSE;
4663
4664   gtk_tree_model_get (model, &iter, icon_view->priv->tooltip_column, &str, -1);
4665
4666   if (!str)
4667     {
4668       gtk_tree_path_free (path);
4669       return FALSE;
4670     }
4671
4672   gtk_tooltip_set_markup (tooltip, str);
4673   gtk_icon_view_set_tooltip_item (icon_view, tooltip, path);
4674
4675   gtk_tree_path_free (path);
4676   g_free (str);
4677
4678   return TRUE;
4679 }
4680
4681
4682 /**
4683  * gtk_icon_view_set_tooltip_column:
4684  * @icon_view: a #GtkIconView
4685  * @column: an integer, which is a valid column number for @icon_view's model
4686  *
4687  * If you only plan to have simple (text-only) tooltips on full items, you
4688  * can use this function to have #GtkIconView handle these automatically
4689  * for you. @column should be set to the column in @icon_view's model
4690  * containing the tooltip texts, or -1 to disable this feature.
4691  *
4692  * When enabled, #GtkWidget:has-tooltip will be set to %TRUE and
4693  * @icon_view will connect a #GtkWidget::query-tooltip signal handler.
4694  *
4695  * Note that the signal handler sets the text with gtk_tooltip_set_markup(),
4696  * so &amp;, &lt;, etc have to be escaped in the text.
4697  *
4698  * Since: 2.12
4699  */
4700 void
4701 gtk_icon_view_set_tooltip_column (GtkIconView *icon_view,
4702                                   gint         column)
4703 {
4704   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4705
4706   if (column == icon_view->priv->tooltip_column)
4707     return;
4708
4709   if (column == -1)
4710     {
4711       g_signal_handlers_disconnect_by_func (icon_view,
4712                                             gtk_icon_view_set_tooltip_query_cb,
4713                                             NULL);
4714       gtk_widget_set_has_tooltip (GTK_WIDGET (icon_view), FALSE);
4715     }
4716   else
4717     {
4718       if (icon_view->priv->tooltip_column == -1)
4719         {
4720           g_signal_connect (icon_view, "query-tooltip",
4721                             G_CALLBACK (gtk_icon_view_set_tooltip_query_cb), NULL);
4722           gtk_widget_set_has_tooltip (GTK_WIDGET (icon_view), TRUE);
4723         }
4724     }
4725
4726   icon_view->priv->tooltip_column = column;
4727   g_object_notify (G_OBJECT (icon_view), "tooltip-column");
4728 }
4729
4730 /**
4731  * gtk_icon_view_get_tooltip_column:
4732  * @icon_view: a #GtkIconView
4733  *
4734  * Returns the column of @icon_view's model which is being used for
4735  * displaying tooltips on @icon_view's rows.
4736  *
4737  * Return value: the index of the tooltip column that is currently being
4738  * used, or -1 if this is disabled.
4739  *
4740  * Since: 2.12
4741  */
4742 gint
4743 gtk_icon_view_get_tooltip_column (GtkIconView *icon_view)
4744 {
4745   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), 0);
4746
4747   return icon_view->priv->tooltip_column;
4748 }
4749
4750 /**
4751  * gtk_icon_view_get_visible_range:
4752  * @icon_view: A #GtkIconView
4753  * @start_path: (out) (allow-none): Return location for start of region,
4754  *              or %NULL
4755  * @end_path: (out) (allow-none): Return location for end of region, or %NULL
4756  * 
4757  * Sets @start_path and @end_path to be the first and last visible path. 
4758  * Note that there may be invisible paths in between.
4759  * 
4760  * Both paths should be freed with gtk_tree_path_free() after use.
4761  * 
4762  * Return value: %TRUE, if valid paths were placed in @start_path and @end_path
4763  *
4764  * Since: 2.8
4765  **/
4766 gboolean
4767 gtk_icon_view_get_visible_range (GtkIconView  *icon_view,
4768                                  GtkTreePath **start_path,
4769                                  GtkTreePath **end_path)
4770 {
4771   gint start_index = -1;
4772   gint end_index = -1;
4773   GList *icons;
4774
4775   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
4776
4777   if (icon_view->priv->hadjustment == NULL ||
4778       icon_view->priv->vadjustment == NULL)
4779     return FALSE;
4780
4781   if (start_path == NULL && end_path == NULL)
4782     return FALSE;
4783   
4784   for (icons = icon_view->priv->items; icons; icons = icons->next) 
4785     {
4786       GtkIconViewItem *item = icons->data;
4787       GdkRectangle    *item_area = &item->cell_area;
4788
4789       if ((item_area->x + item_area->width >= (int)gtk_adjustment_get_value (icon_view->priv->hadjustment)) &&
4790           (item_area->y + item_area->height >= (int)gtk_adjustment_get_value (icon_view->priv->vadjustment)) &&
4791           (item_area->x <= 
4792            (int) (gtk_adjustment_get_value (icon_view->priv->hadjustment) + 
4793                   gtk_adjustment_get_page_size (icon_view->priv->hadjustment))) &&
4794           (item_area->y <= 
4795            (int) (gtk_adjustment_get_value (icon_view->priv->vadjustment) + 
4796                   gtk_adjustment_get_page_size (icon_view->priv->vadjustment))))
4797         {
4798           if (start_index == -1)
4799             start_index = item->index;
4800           end_index = item->index;
4801         }
4802     }
4803
4804   if (start_path && start_index != -1)
4805     *start_path = gtk_tree_path_new_from_indices (start_index, -1);
4806   if (end_path && end_index != -1)
4807     *end_path = gtk_tree_path_new_from_indices (end_index, -1);
4808   
4809   return start_index != -1;
4810 }
4811
4812 /**
4813  * gtk_icon_view_selected_foreach:
4814  * @icon_view: A #GtkIconView.
4815  * @func: (scope call): The function to call for each selected icon.
4816  * @data: User data to pass to the function.
4817  * 
4818  * Calls a function for each selected icon. Note that the model or
4819  * selection cannot be modified from within this function.
4820  *
4821  * Since: 2.6 
4822  **/
4823 void
4824 gtk_icon_view_selected_foreach (GtkIconView           *icon_view,
4825                                 GtkIconViewForeachFunc func,
4826                                 gpointer               data)
4827 {
4828   GList *list;
4829   
4830   for (list = icon_view->priv->items; list; list = list->next)
4831     {
4832       GtkIconViewItem *item = list->data;
4833       GtkTreePath *path = gtk_tree_path_new_from_indices (item->index, -1);
4834
4835       if (item->selected)
4836         (* func) (icon_view, path, data);
4837
4838       gtk_tree_path_free (path);
4839     }
4840 }
4841
4842 /**
4843  * gtk_icon_view_set_selection_mode:
4844  * @icon_view: A #GtkIconView.
4845  * @mode: The selection mode
4846  * 
4847  * Sets the selection mode of the @icon_view.
4848  *
4849  * Since: 2.6 
4850  **/
4851 void
4852 gtk_icon_view_set_selection_mode (GtkIconView      *icon_view,
4853                                   GtkSelectionMode  mode)
4854 {
4855   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4856
4857   if (mode == icon_view->priv->selection_mode)
4858     return;
4859   
4860   if (mode == GTK_SELECTION_NONE ||
4861       icon_view->priv->selection_mode == GTK_SELECTION_MULTIPLE)
4862     gtk_icon_view_unselect_all (icon_view);
4863   
4864   icon_view->priv->selection_mode = mode;
4865
4866   g_object_notify (G_OBJECT (icon_view), "selection-mode");
4867 }
4868
4869 /**
4870  * gtk_icon_view_get_selection_mode:
4871  * @icon_view: A #GtkIconView.
4872  * 
4873  * Gets the selection mode of the @icon_view.
4874  *
4875  * Return value: the current selection mode
4876  *
4877  * Since: 2.6 
4878  **/
4879 GtkSelectionMode
4880 gtk_icon_view_get_selection_mode (GtkIconView *icon_view)
4881 {
4882   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), GTK_SELECTION_SINGLE);
4883
4884   return icon_view->priv->selection_mode;
4885 }
4886
4887 /**
4888  * gtk_icon_view_set_model:
4889  * @icon_view: A #GtkIconView.
4890  * @model: (allow-none): The model.
4891  *
4892  * Sets the model for a #GtkIconView.
4893  * If the @icon_view already has a model set, it will remove
4894  * it before setting the new model.  If @model is %NULL, then
4895  * it will unset the old model.
4896  *
4897  * Since: 2.6 
4898  **/
4899 void
4900 gtk_icon_view_set_model (GtkIconView *icon_view,
4901                          GtkTreeModel *model)
4902 {
4903   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4904   g_return_if_fail (model == NULL || GTK_IS_TREE_MODEL (model));
4905   
4906   if (icon_view->priv->model == model)
4907     return;
4908
4909   if (icon_view->priv->scroll_to_path)
4910     {
4911       gtk_tree_row_reference_free (icon_view->priv->scroll_to_path);
4912       icon_view->priv->scroll_to_path = NULL;
4913     }
4914
4915   /* The area can be NULL while disposing */
4916   if (icon_view->priv->cell_area)
4917     gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
4918
4919   if (model)
4920     {
4921       GType column_type;
4922
4923       if (icon_view->priv->pixbuf_column != -1)
4924         {
4925           column_type = gtk_tree_model_get_column_type (model,
4926                                                         icon_view->priv->pixbuf_column);          
4927
4928           g_return_if_fail (column_type == GDK_TYPE_PIXBUF);
4929         }
4930
4931       if (icon_view->priv->text_column != -1)
4932         {
4933           column_type = gtk_tree_model_get_column_type (model,
4934                                                         icon_view->priv->text_column);    
4935
4936           g_return_if_fail (column_type == G_TYPE_STRING);
4937         }
4938
4939       if (icon_view->priv->markup_column != -1)
4940         {
4941           column_type = gtk_tree_model_get_column_type (model,
4942                                                         icon_view->priv->markup_column);          
4943
4944           g_return_if_fail (column_type == G_TYPE_STRING);
4945         }
4946       
4947     }
4948   
4949   if (icon_view->priv->model)
4950     {
4951       g_signal_handlers_disconnect_by_func (icon_view->priv->model,
4952                                             gtk_icon_view_row_changed,
4953                                             icon_view);
4954       g_signal_handlers_disconnect_by_func (icon_view->priv->model,
4955                                             gtk_icon_view_row_inserted,
4956                                             icon_view);
4957       g_signal_handlers_disconnect_by_func (icon_view->priv->model,
4958                                             gtk_icon_view_row_deleted,
4959                                             icon_view);
4960       g_signal_handlers_disconnect_by_func (icon_view->priv->model,
4961                                             gtk_icon_view_rows_reordered,
4962                                             icon_view);
4963
4964       g_object_unref (icon_view->priv->model);
4965       
4966       g_list_free_full (icon_view->priv->items, (GDestroyNotify) gtk_icon_view_item_free);
4967       icon_view->priv->items = NULL;
4968       icon_view->priv->anchor_item = NULL;
4969       icon_view->priv->cursor_item = NULL;
4970       icon_view->priv->last_single_clicked = NULL;
4971       icon_view->priv->last_prelight = NULL;
4972       icon_view->priv->width = 0;
4973       icon_view->priv->height = 0;
4974     }
4975
4976   icon_view->priv->model = model;
4977
4978   if (icon_view->priv->model)
4979     {
4980       g_object_ref (icon_view->priv->model);
4981       g_signal_connect (icon_view->priv->model,
4982                         "row-changed",
4983                         G_CALLBACK (gtk_icon_view_row_changed),
4984                         icon_view);
4985       g_signal_connect (icon_view->priv->model,
4986                         "row-inserted",
4987                         G_CALLBACK (gtk_icon_view_row_inserted),
4988                         icon_view);
4989       g_signal_connect (icon_view->priv->model,
4990                         "row-deleted",
4991                         G_CALLBACK (gtk_icon_view_row_deleted),
4992                         icon_view);
4993       g_signal_connect (icon_view->priv->model,
4994                         "rows-reordered",
4995                         G_CALLBACK (gtk_icon_view_rows_reordered),
4996                         icon_view);
4997
4998       gtk_icon_view_build_items (icon_view);
4999     }
5000
5001   g_object_notify (G_OBJECT (icon_view), "model");  
5002
5003   gtk_widget_queue_resize (GTK_WIDGET (icon_view));
5004 }
5005
5006 /**
5007  * gtk_icon_view_get_model:
5008  * @icon_view: a #GtkIconView
5009  *
5010  * Returns the model the #GtkIconView is based on.  Returns %NULL if the
5011  * model is unset.
5012  *
5013  * Return value: (transfer none): A #GtkTreeModel, or %NULL if none is
5014  *     currently being used.
5015  *
5016  * Since: 2.6 
5017  **/
5018 GtkTreeModel *
5019 gtk_icon_view_get_model (GtkIconView *icon_view)
5020 {
5021   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), NULL);
5022
5023   return icon_view->priv->model;
5024 }
5025
5026 static void
5027 update_text_cell (GtkIconView *icon_view)
5028 {
5029   if (!icon_view->priv->cell_area)
5030     return;
5031
5032   if (icon_view->priv->text_column == -1 &&
5033       icon_view->priv->markup_column == -1)
5034     {
5035       if (icon_view->priv->text_cell != NULL)
5036         {
5037           gtk_cell_area_remove (icon_view->priv->cell_area, 
5038                                 icon_view->priv->text_cell);
5039           icon_view->priv->text_cell = NULL;
5040         }
5041     }
5042   else 
5043     {
5044       if (icon_view->priv->text_cell == NULL)
5045         {
5046           icon_view->priv->text_cell = gtk_cell_renderer_text_new ();
5047
5048           gtk_cell_layout_pack_end (GTK_CELL_LAYOUT (icon_view), icon_view->priv->text_cell, FALSE);
5049         }
5050
5051       if (icon_view->priv->markup_column != -1)
5052         gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (icon_view),
5053                                         icon_view->priv->text_cell, 
5054                                         "markup", icon_view->priv->markup_column, 
5055                                         NULL);
5056       else
5057         gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (icon_view),
5058                                         icon_view->priv->text_cell, 
5059                                         "text", icon_view->priv->text_column, 
5060                                         NULL);
5061
5062       if (icon_view->priv->item_orientation == GTK_ORIENTATION_VERTICAL)
5063         g_object_set (icon_view->priv->text_cell,
5064                       "alignment", PANGO_ALIGN_CENTER,
5065                       "wrap-mode", PANGO_WRAP_WORD_CHAR,
5066                       "xalign", 0.5,
5067                       "yalign", 0.0,
5068                       NULL);
5069       else
5070         g_object_set (icon_view->priv->text_cell,
5071                       "alignment", PANGO_ALIGN_LEFT,
5072                       "wrap-mode", PANGO_WRAP_WORD_CHAR,
5073                       "xalign", 0.0,
5074                       "yalign", 0.5,
5075                       NULL);
5076     }
5077 }
5078
5079 static void
5080 update_pixbuf_cell (GtkIconView *icon_view)
5081 {
5082   if (!icon_view->priv->cell_area)
5083     return;
5084
5085   if (icon_view->priv->pixbuf_column == -1)
5086     {
5087       if (icon_view->priv->pixbuf_cell != NULL)
5088         {
5089           gtk_cell_area_remove (icon_view->priv->cell_area, 
5090                                 icon_view->priv->pixbuf_cell);
5091
5092           icon_view->priv->pixbuf_cell = NULL;
5093         }
5094     }
5095   else 
5096     {
5097       if (icon_view->priv->pixbuf_cell == NULL)
5098         {
5099           icon_view->priv->pixbuf_cell = gtk_cell_renderer_pixbuf_new ();
5100           
5101           gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (icon_view), icon_view->priv->pixbuf_cell, FALSE);
5102         }
5103       
5104       gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (icon_view),
5105                                       icon_view->priv->pixbuf_cell, 
5106                                       "pixbuf", icon_view->priv->pixbuf_column, 
5107                                       NULL);
5108
5109       if (icon_view->priv->item_orientation == GTK_ORIENTATION_VERTICAL)
5110         g_object_set (icon_view->priv->pixbuf_cell,
5111                       "xalign", 0.5,
5112                       "yalign", 1.0,
5113                       NULL);
5114       else
5115         g_object_set (icon_view->priv->pixbuf_cell,
5116                       "xalign", 0.0,
5117                       "yalign", 0.0,
5118                       NULL);
5119     }
5120 }
5121
5122 /**
5123  * gtk_icon_view_set_text_column:
5124  * @icon_view: A #GtkIconView.
5125  * @column: A column in the currently used model, or -1 to display no text
5126  * 
5127  * Sets the column with text for @icon_view to be @column. The text
5128  * column must be of type #G_TYPE_STRING.
5129  *
5130  * Since: 2.6 
5131  **/
5132 void
5133 gtk_icon_view_set_text_column (GtkIconView *icon_view,
5134                                gint          column)
5135 {
5136   if (column == icon_view->priv->text_column)
5137     return;
5138   
5139   if (column == -1)
5140     icon_view->priv->text_column = -1;
5141   else
5142     {
5143       if (icon_view->priv->model != NULL)
5144         {
5145           GType column_type;
5146           
5147           column_type = gtk_tree_model_get_column_type (icon_view->priv->model, column);
5148
5149           g_return_if_fail (column_type == G_TYPE_STRING);
5150         }
5151       
5152       icon_view->priv->text_column = column;
5153     }
5154
5155   if (icon_view->priv->cell_area)
5156     gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5157
5158   update_text_cell (icon_view);
5159
5160   gtk_icon_view_invalidate_sizes (icon_view);
5161   
5162   g_object_notify (G_OBJECT (icon_view), "text-column");
5163 }
5164
5165 /**
5166  * gtk_icon_view_get_text_column:
5167  * @icon_view: A #GtkIconView.
5168  *
5169  * Returns the column with text for @icon_view.
5170  *
5171  * Returns: the text column, or -1 if it's unset.
5172  *
5173  * Since: 2.6
5174  */
5175 gint
5176 gtk_icon_view_get_text_column (GtkIconView  *icon_view)
5177 {
5178   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5179
5180   return icon_view->priv->text_column;
5181 }
5182
5183 /**
5184  * gtk_icon_view_set_markup_column:
5185  * @icon_view: A #GtkIconView.
5186  * @column: A column in the currently used model, or -1 to display no text
5187  * 
5188  * Sets the column with markup information for @icon_view to be
5189  * @column. The markup column must be of type #G_TYPE_STRING.
5190  * If the markup column is set to something, it overrides
5191  * the text column set by gtk_icon_view_set_text_column().
5192  *
5193  * Since: 2.6
5194  **/
5195 void
5196 gtk_icon_view_set_markup_column (GtkIconView *icon_view,
5197                                  gint         column)
5198 {
5199   if (column == icon_view->priv->markup_column)
5200     return;
5201   
5202   if (column == -1)
5203     icon_view->priv->markup_column = -1;
5204   else
5205     {
5206       if (icon_view->priv->model != NULL)
5207         {
5208           GType column_type;
5209           
5210           column_type = gtk_tree_model_get_column_type (icon_view->priv->model, column);
5211
5212           g_return_if_fail (column_type == G_TYPE_STRING);
5213         }
5214       
5215       icon_view->priv->markup_column = column;
5216     }
5217
5218   if (icon_view->priv->cell_area)
5219     gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5220
5221   update_text_cell (icon_view);
5222
5223   gtk_icon_view_invalidate_sizes (icon_view);
5224   
5225   g_object_notify (G_OBJECT (icon_view), "markup-column");
5226 }
5227
5228 /**
5229  * gtk_icon_view_get_markup_column:
5230  * @icon_view: A #GtkIconView.
5231  *
5232  * Returns the column with markup text for @icon_view.
5233  *
5234  * Returns: the markup column, or -1 if it's unset.
5235  *
5236  * Since: 2.6
5237  */
5238 gint
5239 gtk_icon_view_get_markup_column (GtkIconView  *icon_view)
5240 {
5241   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5242
5243   return icon_view->priv->markup_column;
5244 }
5245
5246 /**
5247  * gtk_icon_view_set_pixbuf_column:
5248  * @icon_view: A #GtkIconView.
5249  * @column: A column in the currently used model, or -1 to disable
5250  * 
5251  * Sets the column with pixbufs for @icon_view to be @column. The pixbuf
5252  * column must be of type #GDK_TYPE_PIXBUF
5253  *
5254  * Since: 2.6 
5255  **/
5256 void
5257 gtk_icon_view_set_pixbuf_column (GtkIconView *icon_view,
5258                                  gint         column)
5259 {
5260   if (column == icon_view->priv->pixbuf_column)
5261     return;
5262   
5263   if (column == -1)
5264     icon_view->priv->pixbuf_column = -1;
5265   else
5266     {
5267       if (icon_view->priv->model != NULL)
5268         {
5269           GType column_type;
5270           
5271           column_type = gtk_tree_model_get_column_type (icon_view->priv->model, column);
5272
5273           g_return_if_fail (column_type == GDK_TYPE_PIXBUF);
5274         }
5275       
5276       icon_view->priv->pixbuf_column = column;
5277     }
5278
5279   if (icon_view->priv->cell_area)
5280     gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5281
5282   update_pixbuf_cell (icon_view);
5283
5284   gtk_icon_view_invalidate_sizes (icon_view);
5285   
5286   g_object_notify (G_OBJECT (icon_view), "pixbuf-column");
5287   
5288 }
5289
5290 /**
5291  * gtk_icon_view_get_pixbuf_column:
5292  * @icon_view: A #GtkIconView.
5293  *
5294  * Returns the column with pixbufs for @icon_view.
5295  *
5296  * Returns: the pixbuf column, or -1 if it's unset.
5297  *
5298  * Since: 2.6
5299  */
5300 gint
5301 gtk_icon_view_get_pixbuf_column (GtkIconView  *icon_view)
5302 {
5303   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5304
5305   return icon_view->priv->pixbuf_column;
5306 }
5307
5308 /**
5309  * gtk_icon_view_select_path:
5310  * @icon_view: A #GtkIconView.
5311  * @path: The #GtkTreePath to be selected.
5312  * 
5313  * Selects the row at @path.
5314  *
5315  * Since: 2.6
5316  **/
5317 void
5318 gtk_icon_view_select_path (GtkIconView *icon_view,
5319                            GtkTreePath *path)
5320 {
5321   GtkIconViewItem *item = NULL;
5322
5323   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5324   g_return_if_fail (icon_view->priv->model != NULL);
5325   g_return_if_fail (path != NULL);
5326
5327   if (gtk_tree_path_get_depth (path) > 0)
5328     item = g_list_nth_data (icon_view->priv->items,
5329                             gtk_tree_path_get_indices(path)[0]);
5330
5331   if (item)
5332     _gtk_icon_view_select_item (icon_view, item);
5333 }
5334
5335 /**
5336  * gtk_icon_view_unselect_path:
5337  * @icon_view: A #GtkIconView.
5338  * @path: The #GtkTreePath to be unselected.
5339  * 
5340  * Unselects the row at @path.
5341  *
5342  * Since: 2.6
5343  **/
5344 void
5345 gtk_icon_view_unselect_path (GtkIconView *icon_view,
5346                              GtkTreePath *path)
5347 {
5348   GtkIconViewItem *item;
5349   
5350   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5351   g_return_if_fail (icon_view->priv->model != NULL);
5352   g_return_if_fail (path != NULL);
5353
5354   item = g_list_nth_data (icon_view->priv->items,
5355                           gtk_tree_path_get_indices(path)[0]);
5356
5357   if (!item)
5358     return;
5359   
5360   _gtk_icon_view_unselect_item (icon_view, item);
5361 }
5362
5363 /**
5364  * gtk_icon_view_get_selected_items:
5365  * @icon_view: A #GtkIconView.
5366  *
5367  * Creates a list of paths of all selected items. Additionally, if you are
5368  * planning on modifying the model after calling this function, you may
5369  * want to convert the returned list into a list of #GtkTreeRowReference<!-- -->s.
5370  * To do this, you can use gtk_tree_row_reference_new().
5371  *
5372  * To free the return value, use:
5373  * |[
5374  * g_list_free_full (list, (GDestroyNotify) gtk_tree_patch_free);
5375  * ]|
5376  *
5377  * Return value: (element-type GtkTreePath) (transfer full): A #GList containing a #GtkTreePath for each selected row.
5378  *
5379  * Since: 2.6
5380  **/
5381 GList *
5382 gtk_icon_view_get_selected_items (GtkIconView *icon_view)
5383 {
5384   GList *list;
5385   GList *selected = NULL;
5386   
5387   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), NULL);
5388   
5389   for (list = icon_view->priv->items; list != NULL; list = list->next)
5390     {
5391       GtkIconViewItem *item = list->data;
5392
5393       if (item->selected)
5394         {
5395           GtkTreePath *path = gtk_tree_path_new_from_indices (item->index, -1);
5396
5397           selected = g_list_prepend (selected, path);
5398         }
5399     }
5400
5401   return selected;
5402 }
5403
5404 /**
5405  * gtk_icon_view_select_all:
5406  * @icon_view: A #GtkIconView.
5407  * 
5408  * Selects all the icons. @icon_view must has its selection mode set
5409  * to #GTK_SELECTION_MULTIPLE.
5410  *
5411  * Since: 2.6
5412  **/
5413 void
5414 gtk_icon_view_select_all (GtkIconView *icon_view)
5415 {
5416   GList *items;
5417   gboolean dirty = FALSE;
5418   
5419   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5420
5421   if (icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
5422     return;
5423
5424   for (items = icon_view->priv->items; items; items = items->next)
5425     {
5426       GtkIconViewItem *item = items->data;
5427       
5428       if (!item->selected)
5429         {
5430           dirty = TRUE;
5431           item->selected = TRUE;
5432           gtk_icon_view_queue_draw_item (icon_view, item);
5433         }
5434     }
5435
5436   if (dirty)
5437     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
5438 }
5439
5440 /**
5441  * gtk_icon_view_unselect_all:
5442  * @icon_view: A #GtkIconView.
5443  * 
5444  * Unselects all the icons.
5445  *
5446  * Since: 2.6
5447  **/
5448 void
5449 gtk_icon_view_unselect_all (GtkIconView *icon_view)
5450 {
5451   gboolean dirty = FALSE;
5452   
5453   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5454
5455   if (icon_view->priv->selection_mode == GTK_SELECTION_BROWSE)
5456     return;
5457
5458   dirty = gtk_icon_view_unselect_all_internal (icon_view);
5459
5460   if (dirty)
5461     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
5462 }
5463
5464 /**
5465  * gtk_icon_view_path_is_selected:
5466  * @icon_view: A #GtkIconView.
5467  * @path: A #GtkTreePath to check selection on.
5468  * 
5469  * Returns %TRUE if the icon pointed to by @path is currently
5470  * selected. If @path does not point to a valid location, %FALSE is returned.
5471  * 
5472  * Return value: %TRUE if @path is selected.
5473  *
5474  * Since: 2.6
5475  **/
5476 gboolean
5477 gtk_icon_view_path_is_selected (GtkIconView *icon_view,
5478                                 GtkTreePath *path)
5479 {
5480   GtkIconViewItem *item;
5481   
5482   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
5483   g_return_val_if_fail (icon_view->priv->model != NULL, FALSE);
5484   g_return_val_if_fail (path != NULL, FALSE);
5485   
5486   item = g_list_nth_data (icon_view->priv->items,
5487                           gtk_tree_path_get_indices(path)[0]);
5488
5489   if (!item)
5490     return FALSE;
5491   
5492   return item->selected;
5493 }
5494
5495 /**
5496  * gtk_icon_view_get_item_row:
5497  * @icon_view: a #GtkIconView
5498  * @path: the #GtkTreePath of the item
5499  *
5500  * Gets the row in which the item @path is currently
5501  * displayed. Row numbers start at 0.
5502  *
5503  * Returns: The row in which the item is displayed
5504  *
5505  * Since: 2.22
5506  */
5507 gint
5508 gtk_icon_view_get_item_row (GtkIconView *icon_view,
5509                             GtkTreePath *path)
5510 {
5511   GtkIconViewItem *item;
5512
5513   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5514   g_return_val_if_fail (icon_view->priv->model != NULL, -1);
5515   g_return_val_if_fail (path != NULL, -1);
5516
5517   item = g_list_nth_data (icon_view->priv->items,
5518                           gtk_tree_path_get_indices(path)[0]);
5519
5520   if (!item)
5521     return -1;
5522
5523   return item->row;
5524 }
5525
5526 /**
5527  * gtk_icon_view_get_item_column:
5528  * @icon_view: a #GtkIconView
5529  * @path: the #GtkTreePath of the item
5530  *
5531  * Gets the column in which the item @path is currently
5532  * displayed. Column numbers start at 0.
5533  *
5534  * Returns: The column in which the item is displayed
5535  *
5536  * Since: 2.22
5537  */
5538 gint
5539 gtk_icon_view_get_item_column (GtkIconView *icon_view,
5540                                GtkTreePath *path)
5541 {
5542   GtkIconViewItem *item;
5543
5544   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5545   g_return_val_if_fail (icon_view->priv->model != NULL, -1);
5546   g_return_val_if_fail (path != NULL, -1);
5547
5548   item = g_list_nth_data (icon_view->priv->items,
5549                           gtk_tree_path_get_indices(path)[0]);
5550
5551   if (!item)
5552     return -1;
5553
5554   return item->col;
5555 }
5556
5557 /**
5558  * gtk_icon_view_item_activated:
5559  * @icon_view: A #GtkIconView
5560  * @path: The #GtkTreePath to be activated
5561  * 
5562  * Activates the item determined by @path.
5563  *
5564  * Since: 2.6
5565  **/
5566 void
5567 gtk_icon_view_item_activated (GtkIconView      *icon_view,
5568                               GtkTreePath      *path)
5569 {
5570   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5571   g_return_if_fail (path != NULL);
5572   
5573   g_signal_emit (icon_view, icon_view_signals[ITEM_ACTIVATED], 0, path);
5574 }
5575
5576 /**
5577  * gtk_icon_view_set_item_orientation:
5578  * @icon_view: a #GtkIconView
5579  * @orientation: the relative position of texts and icons 
5580  * 
5581  * Sets the ::item-orientation property which determines whether the labels 
5582  * are drawn beside the icons instead of below.
5583  *
5584  * Since: 2.6
5585  **/
5586 void 
5587 gtk_icon_view_set_item_orientation (GtkIconView    *icon_view,
5588                                     GtkOrientation  orientation)
5589 {
5590   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5591
5592   if (icon_view->priv->item_orientation != orientation)
5593     {
5594       icon_view->priv->item_orientation = orientation;
5595
5596       if (icon_view->priv->cell_area)
5597         {
5598           if (GTK_IS_ORIENTABLE (icon_view->priv->cell_area))
5599             gtk_orientable_set_orientation (GTK_ORIENTABLE (icon_view->priv->cell_area), 
5600                                             icon_view->priv->item_orientation);
5601
5602           gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5603         }
5604
5605       gtk_icon_view_invalidate_sizes (icon_view);
5606
5607       update_text_cell (icon_view);
5608       update_pixbuf_cell (icon_view);
5609       
5610       g_object_notify (G_OBJECT (icon_view), "item-orientation");
5611     }
5612 }
5613
5614 /**
5615  * gtk_icon_view_get_item_orientation:
5616  * @icon_view: a #GtkIconView
5617  * 
5618  * Returns the value of the ::item-orientation property which determines 
5619  * whether the labels are drawn beside the icons instead of below. 
5620  * 
5621  * Return value: the relative position of texts and icons 
5622  *
5623  * Since: 2.6
5624  **/
5625 GtkOrientation
5626 gtk_icon_view_get_item_orientation (GtkIconView *icon_view)
5627 {
5628   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), 
5629                         GTK_ORIENTATION_VERTICAL);
5630
5631   return icon_view->priv->item_orientation;
5632 }
5633
5634 /**
5635  * gtk_icon_view_set_columns:
5636  * @icon_view: a #GtkIconView
5637  * @columns: the number of columns
5638  * 
5639  * Sets the ::columns property which determines in how
5640  * many columns the icons are arranged. If @columns is
5641  * -1, the number of columns will be chosen automatically 
5642  * to fill the available area. 
5643  *
5644  * Since: 2.6
5645  */
5646 void 
5647 gtk_icon_view_set_columns (GtkIconView *icon_view,
5648                            gint         columns)
5649 {
5650   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5651   
5652   if (icon_view->priv->columns != columns)
5653     {
5654       icon_view->priv->columns = columns;
5655
5656       if (icon_view->priv->cell_area)
5657         gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5658
5659       gtk_widget_queue_resize (GTK_WIDGET (icon_view));
5660       
5661       g_object_notify (G_OBJECT (icon_view), "columns");
5662     }  
5663 }
5664
5665 /**
5666  * gtk_icon_view_get_columns:
5667  * @icon_view: a #GtkIconView
5668  * 
5669  * Returns the value of the ::columns property.
5670  * 
5671  * Return value: the number of columns, or -1
5672  *
5673  * Since: 2.6
5674  */
5675 gint
5676 gtk_icon_view_get_columns (GtkIconView *icon_view)
5677 {
5678   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5679
5680   return icon_view->priv->columns;
5681 }
5682
5683 /**
5684  * gtk_icon_view_set_item_width:
5685  * @icon_view: a #GtkIconView
5686  * @item_width: the width for each item
5687  * 
5688  * Sets the ::item-width property which specifies the width 
5689  * to use for each item. If it is set to -1, the icon view will 
5690  * automatically determine a suitable item size.
5691  *
5692  * Since: 2.6
5693  */
5694 void 
5695 gtk_icon_view_set_item_width (GtkIconView *icon_view,
5696                               gint         item_width)
5697 {
5698   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5699   
5700   if (icon_view->priv->item_width != item_width)
5701     {
5702       icon_view->priv->item_width = item_width;
5703       
5704       if (icon_view->priv->cell_area)
5705         gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5706
5707       gtk_icon_view_invalidate_sizes (icon_view);
5708       
5709       update_text_cell (icon_view);
5710
5711       g_object_notify (G_OBJECT (icon_view), "item-width");
5712     }  
5713 }
5714
5715 /**
5716  * gtk_icon_view_get_item_width:
5717  * @icon_view: a #GtkIconView
5718  * 
5719  * Returns the value of the ::item-width property.
5720  * 
5721  * Return value: the width of a single item, or -1
5722  *
5723  * Since: 2.6
5724  */
5725 gint
5726 gtk_icon_view_get_item_width (GtkIconView *icon_view)
5727 {
5728   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5729
5730   return icon_view->priv->item_width;
5731 }
5732
5733
5734 /**
5735  * gtk_icon_view_set_spacing:
5736  * @icon_view: a #GtkIconView
5737  * @spacing: the spacing
5738  * 
5739  * Sets the ::spacing property which specifies the space 
5740  * which is inserted between the cells (i.e. the icon and 
5741  * the text) of an item.
5742  *
5743  * Since: 2.6
5744  */
5745 void 
5746 gtk_icon_view_set_spacing (GtkIconView *icon_view,
5747                            gint         spacing)
5748 {
5749   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5750   
5751   if (icon_view->priv->spacing != spacing)
5752     {
5753       icon_view->priv->spacing = spacing;
5754
5755       if (icon_view->priv->cell_area)
5756         gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5757
5758       gtk_icon_view_invalidate_sizes (icon_view);
5759
5760       g_object_notify (G_OBJECT (icon_view), "spacing");
5761     }  
5762 }
5763
5764 /**
5765  * gtk_icon_view_get_spacing:
5766  * @icon_view: a #GtkIconView
5767  * 
5768  * Returns the value of the ::spacing property.
5769  * 
5770  * Return value: the space between cells 
5771  *
5772  * Since: 2.6
5773  */
5774 gint
5775 gtk_icon_view_get_spacing (GtkIconView *icon_view)
5776 {
5777   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5778
5779   return icon_view->priv->spacing;
5780 }
5781
5782 /**
5783  * gtk_icon_view_set_row_spacing:
5784  * @icon_view: a #GtkIconView
5785  * @row_spacing: the row spacing
5786  * 
5787  * Sets the ::row-spacing property which specifies the space 
5788  * which is inserted between the rows of the icon view.
5789  *
5790  * Since: 2.6
5791  */
5792 void 
5793 gtk_icon_view_set_row_spacing (GtkIconView *icon_view,
5794                                gint         row_spacing)
5795 {
5796   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5797   
5798   if (icon_view->priv->row_spacing != row_spacing)
5799     {
5800       icon_view->priv->row_spacing = row_spacing;
5801
5802       if (icon_view->priv->cell_area)
5803         gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5804
5805       gtk_icon_view_invalidate_sizes (icon_view);
5806
5807       g_object_notify (G_OBJECT (icon_view), "row-spacing");
5808     }  
5809 }
5810
5811 /**
5812  * gtk_icon_view_get_row_spacing:
5813  * @icon_view: a #GtkIconView
5814  * 
5815  * Returns the value of the ::row-spacing property.
5816  * 
5817  * Return value: the space between rows
5818  *
5819  * Since: 2.6
5820  */
5821 gint
5822 gtk_icon_view_get_row_spacing (GtkIconView *icon_view)
5823 {
5824   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5825
5826   return icon_view->priv->row_spacing;
5827 }
5828
5829 /**
5830  * gtk_icon_view_set_column_spacing:
5831  * @icon_view: a #GtkIconView
5832  * @column_spacing: the column spacing
5833  * 
5834  * Sets the ::column-spacing property which specifies the space 
5835  * which is inserted between the columns of the icon view.
5836  *
5837  * Since: 2.6
5838  */
5839 void 
5840 gtk_icon_view_set_column_spacing (GtkIconView *icon_view,
5841                                   gint         column_spacing)
5842 {
5843   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5844   
5845   if (icon_view->priv->column_spacing != column_spacing)
5846     {
5847       icon_view->priv->column_spacing = column_spacing;
5848
5849       if (icon_view->priv->cell_area)
5850         gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5851
5852       gtk_icon_view_invalidate_sizes (icon_view);
5853
5854       g_object_notify (G_OBJECT (icon_view), "column-spacing");
5855     }  
5856 }
5857
5858 /**
5859  * gtk_icon_view_get_column_spacing:
5860  * @icon_view: a #GtkIconView
5861  * 
5862  * Returns the value of the ::column-spacing property.
5863  * 
5864  * Return value: the space between columns
5865  *
5866  * Since: 2.6
5867  */
5868 gint
5869 gtk_icon_view_get_column_spacing (GtkIconView *icon_view)
5870 {
5871   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5872
5873   return icon_view->priv->column_spacing;
5874 }
5875
5876 /**
5877  * gtk_icon_view_set_margin:
5878  * @icon_view: a #GtkIconView
5879  * @margin: the margin
5880  * 
5881  * Sets the ::margin property which specifies the space 
5882  * which is inserted at the top, bottom, left and right 
5883  * of the icon view.
5884  *
5885  * Since: 2.6
5886  */
5887 void 
5888 gtk_icon_view_set_margin (GtkIconView *icon_view,
5889                           gint         margin)
5890 {
5891   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5892   
5893   if (icon_view->priv->margin != margin)
5894     {
5895       icon_view->priv->margin = margin;
5896
5897       if (icon_view->priv->cell_area)
5898         gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5899
5900       gtk_icon_view_invalidate_sizes (icon_view);
5901
5902       g_object_notify (G_OBJECT (icon_view), "margin");
5903     }  
5904 }
5905
5906 /**
5907  * gtk_icon_view_get_margin:
5908  * @icon_view: a #GtkIconView
5909  * 
5910  * Returns the value of the ::margin property.
5911  * 
5912  * Return value: the space at the borders 
5913  *
5914  * Since: 2.6
5915  */
5916 gint
5917 gtk_icon_view_get_margin (GtkIconView *icon_view)
5918 {
5919   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5920
5921   return icon_view->priv->margin;
5922 }
5923
5924 /**
5925  * gtk_icon_view_set_item_padding:
5926  * @icon_view: a #GtkIconView
5927  * @item_padding: the item padding
5928  *
5929  * Sets the #GtkIconView:item-padding property which specifies the padding
5930  * around each of the icon view's items.
5931  *
5932  * Since: 2.18
5933  */
5934 void
5935 gtk_icon_view_set_item_padding (GtkIconView *icon_view,
5936                                 gint         item_padding)
5937 {
5938   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5939   
5940   if (icon_view->priv->item_padding != item_padding)
5941     {
5942       icon_view->priv->item_padding = item_padding;
5943
5944       if (icon_view->priv->cell_area)
5945         gtk_cell_area_stop_editing (icon_view->priv->cell_area, TRUE);
5946
5947       gtk_icon_view_invalidate_sizes (icon_view);
5948
5949       g_object_notify (G_OBJECT (icon_view), "item-padding");
5950     }  
5951 }
5952
5953 /**
5954  * gtk_icon_view_get_item_padding:
5955  * @icon_view: a #GtkIconView
5956  * 
5957  * Returns the value of the ::item-padding property.
5958  * 
5959  * Return value: the padding around items
5960  *
5961  * Since: 2.18
5962  */
5963 gint
5964 gtk_icon_view_get_item_padding (GtkIconView *icon_view)
5965 {
5966   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5967
5968   return icon_view->priv->item_padding;
5969 }
5970
5971 /* Get/set whether drag_motion requested the drag data and
5972  * drag_data_received should thus not actually insert the data,
5973  * since the data doesn't result from a drop.
5974  */
5975 static void
5976 set_status_pending (GdkDragContext *context,
5977                     GdkDragAction   suggested_action)
5978 {
5979   g_object_set_data (G_OBJECT (context),
5980                      I_("gtk-icon-view-status-pending"),
5981                      GINT_TO_POINTER (suggested_action));
5982 }
5983
5984 static GdkDragAction
5985 get_status_pending (GdkDragContext *context)
5986 {
5987   return GPOINTER_TO_INT (g_object_get_data (G_OBJECT (context),
5988                                              "gtk-icon-view-status-pending"));
5989 }
5990
5991 static void
5992 unset_reorderable (GtkIconView *icon_view)
5993 {
5994   if (icon_view->priv->reorderable)
5995     {
5996       icon_view->priv->reorderable = FALSE;
5997       g_object_notify (G_OBJECT (icon_view), "reorderable");
5998     }
5999 }
6000
6001 static void
6002 set_source_row (GdkDragContext *context,
6003                 GtkTreeModel   *model,
6004                 GtkTreePath    *source_row)
6005 {
6006   if (source_row)
6007     g_object_set_data_full (G_OBJECT (context),
6008                             I_("gtk-icon-view-source-row"),
6009                             gtk_tree_row_reference_new (model, source_row),
6010                             (GDestroyNotify) gtk_tree_row_reference_free);
6011   else
6012     g_object_set_data_full (G_OBJECT (context),
6013                             I_("gtk-icon-view-source-row"),
6014                             NULL, NULL);
6015 }
6016
6017 static GtkTreePath*
6018 get_source_row (GdkDragContext *context)
6019 {
6020   GtkTreeRowReference *ref;
6021
6022   ref = g_object_get_data (G_OBJECT (context), "gtk-icon-view-source-row");
6023
6024   if (ref)
6025     return gtk_tree_row_reference_get_path (ref);
6026   else
6027     return NULL;
6028 }
6029
6030 typedef struct
6031 {
6032   GtkTreeRowReference *dest_row;
6033   gboolean             empty_view_drop;
6034   gboolean             drop_append_mode;
6035 } DestRow;
6036
6037 static void
6038 dest_row_free (gpointer data)
6039 {
6040   DestRow *dr = (DestRow *)data;
6041
6042   gtk_tree_row_reference_free (dr->dest_row);
6043   g_free (dr);
6044 }
6045
6046 static void
6047 set_dest_row (GdkDragContext *context,
6048               GtkTreeModel   *model,
6049               GtkTreePath    *dest_row,
6050               gboolean        empty_view_drop,
6051               gboolean        drop_append_mode)
6052 {
6053   DestRow *dr;
6054
6055   if (!dest_row)
6056     {
6057       g_object_set_data_full (G_OBJECT (context),
6058                               I_("gtk-icon-view-dest-row"),
6059                               NULL, NULL);
6060       return;
6061     }
6062   
6063   dr = g_new0 (DestRow, 1);
6064      
6065   dr->dest_row = gtk_tree_row_reference_new (model, dest_row);
6066   dr->empty_view_drop = empty_view_drop;
6067   dr->drop_append_mode = drop_append_mode;
6068   g_object_set_data_full (G_OBJECT (context),
6069                           I_("gtk-icon-view-dest-row"),
6070                           dr, (GDestroyNotify) dest_row_free);
6071 }
6072
6073 static GtkTreePath*
6074 get_dest_row (GdkDragContext *context)
6075 {
6076   DestRow *dr;
6077
6078   dr = g_object_get_data (G_OBJECT (context), "gtk-icon-view-dest-row");
6079
6080   if (dr)
6081     {
6082       GtkTreePath *path = NULL;
6083       
6084       if (dr->dest_row)
6085         path = gtk_tree_row_reference_get_path (dr->dest_row);
6086       else if (dr->empty_view_drop)
6087         path = gtk_tree_path_new_from_indices (0, -1);
6088       else
6089         path = NULL;
6090
6091       if (path && dr->drop_append_mode)
6092         gtk_tree_path_next (path);
6093
6094       return path;
6095     }
6096   else
6097     return NULL;
6098 }
6099
6100 static gboolean
6101 check_model_dnd (GtkTreeModel *model,
6102                  GType         required_iface,
6103                  const gchar  *signal)
6104 {
6105   if (model == NULL || !G_TYPE_CHECK_INSTANCE_TYPE ((model), required_iface))
6106     {
6107       g_warning ("You must override the default '%s' handler "
6108                  "on GtkIconView when using models that don't support "
6109                  "the %s interface and enabling drag-and-drop. The simplest way to do this "
6110                  "is to connect to '%s' and call "
6111                  "g_signal_stop_emission_by_name() in your signal handler to prevent "
6112                  "the default handler from running. Look at the source code "
6113                  "for the default handler in gtkiconview.c to get an idea what "
6114                  "your handler should do. (gtkiconview.c is in the GTK+ source "
6115                  "code.) If you're using GTK+ from a language other than C, "
6116                  "there may be a more natural way to override default handlers, e.g. via derivation.",
6117                  signal, g_type_name (required_iface), signal);
6118       return FALSE;
6119     }
6120   else
6121     return TRUE;
6122 }
6123
6124 static void
6125 remove_scroll_timeout (GtkIconView *icon_view)
6126 {
6127   if (icon_view->priv->scroll_timeout_id != 0)
6128     {
6129       g_source_remove (icon_view->priv->scroll_timeout_id);
6130
6131       icon_view->priv->scroll_timeout_id = 0;
6132     }
6133 }
6134
6135 static void
6136 gtk_icon_view_autoscroll (GtkIconView *icon_view,
6137                           GdkDevice   *device)
6138 {
6139   GdkWindow *window;
6140   gint px, py, width, height;
6141   gint hoffset, voffset;
6142
6143   window = gtk_widget_get_window (GTK_WIDGET (icon_view));
6144
6145   gdk_window_get_device_position (window, device, &px, &py, NULL);
6146   gdk_window_get_geometry (window, NULL, NULL, &width, &height);
6147
6148   /* see if we are near the edge. */
6149   voffset = py - 2 * SCROLL_EDGE_SIZE;
6150   if (voffset > 0)
6151     voffset = MAX (py - (height - 2 * SCROLL_EDGE_SIZE), 0);
6152
6153   hoffset = px - 2 * SCROLL_EDGE_SIZE;
6154   if (hoffset > 0)
6155     hoffset = MAX (px - (width - 2 * SCROLL_EDGE_SIZE), 0);
6156
6157   if (voffset != 0)
6158     gtk_adjustment_set_value (icon_view->priv->vadjustment,
6159                               gtk_adjustment_get_value (icon_view->priv->vadjustment) + voffset);
6160
6161   if (hoffset != 0)
6162     gtk_adjustment_set_value (icon_view->priv->hadjustment,
6163                               gtk_adjustment_get_value (icon_view->priv->hadjustment) + hoffset);
6164 }
6165
6166 typedef struct {
6167   GtkIconView *icon_view;
6168   GdkDevice   *device;
6169 } DragScrollData;
6170
6171 static gboolean
6172 drag_scroll_timeout (gpointer datap)
6173 {
6174   DragScrollData *data = datap;
6175
6176   gtk_icon_view_autoscroll (data->icon_view, data->device);
6177
6178   return TRUE;
6179 }
6180
6181 static void
6182 drag_scroll_data_free (DragScrollData *data)
6183 {
6184   g_slice_free (DragScrollData, data);
6185 }
6186
6187 static gboolean
6188 set_destination (GtkIconView    *icon_view,
6189                  GdkDragContext *context,
6190                  gint            x,
6191                  gint            y,
6192                  GdkDragAction  *suggested_action,
6193                  GdkAtom        *target)
6194 {
6195   GtkWidget *widget;
6196   GtkTreePath *path = NULL;
6197   GtkIconViewDropPosition pos;
6198   GtkIconViewDropPosition old_pos;
6199   GtkTreePath *old_dest_path = NULL;
6200   gboolean can_drop = FALSE;
6201
6202   widget = GTK_WIDGET (icon_view);
6203
6204   *suggested_action = 0;
6205   *target = GDK_NONE;
6206
6207   if (!icon_view->priv->dest_set)
6208     {
6209       /* someone unset us as a drag dest, note that if
6210        * we return FALSE drag_leave isn't called
6211        */
6212
6213       gtk_icon_view_set_drag_dest_item (icon_view,
6214                                         NULL,
6215                                         GTK_ICON_VIEW_DROP_LEFT);
6216
6217       remove_scroll_timeout (GTK_ICON_VIEW (widget));
6218
6219       return FALSE; /* no longer a drop site */
6220     }
6221
6222   *target = gtk_drag_dest_find_target (widget, context,
6223                                        gtk_drag_dest_get_target_list (widget));
6224   if (*target == GDK_NONE)
6225     return FALSE;
6226
6227   if (!gtk_icon_view_get_dest_item_at_pos (icon_view, x, y, &path, &pos)) 
6228     {
6229       gint n_children;
6230       GtkTreeModel *model;
6231       
6232       /* the row got dropped on empty space, let's setup a special case
6233        */
6234
6235       if (path)
6236         gtk_tree_path_free (path);
6237
6238       model = gtk_icon_view_get_model (icon_view);
6239
6240       n_children = gtk_tree_model_iter_n_children (model, NULL);
6241       if (n_children)
6242         {
6243           pos = GTK_ICON_VIEW_DROP_BELOW;
6244           path = gtk_tree_path_new_from_indices (n_children - 1, -1);
6245         }
6246       else
6247         {
6248           pos = GTK_ICON_VIEW_DROP_ABOVE;
6249           path = gtk_tree_path_new_from_indices (0, -1);
6250         }
6251
6252       can_drop = TRUE;
6253
6254       goto out;
6255     }
6256
6257   g_assert (path);
6258
6259   gtk_icon_view_get_drag_dest_item (icon_view,
6260                                     &old_dest_path,
6261                                     &old_pos);
6262   
6263   if (old_dest_path)
6264     gtk_tree_path_free (old_dest_path);
6265   
6266   if (TRUE /* FIXME if the location droppable predicate */)
6267     {
6268       can_drop = TRUE;
6269     }
6270
6271 out:
6272   if (can_drop)
6273     {
6274       GtkWidget *source_widget;
6275
6276       *suggested_action = gdk_drag_context_get_suggested_action (context);
6277       source_widget = gtk_drag_get_source_widget (context);
6278
6279       if (source_widget == widget)
6280         {
6281           /* Default to MOVE, unless the user has
6282            * pressed ctrl or shift to affect available actions
6283            */
6284           if ((gdk_drag_context_get_actions (context) & GDK_ACTION_MOVE) != 0)
6285             *suggested_action = GDK_ACTION_MOVE;
6286         }
6287
6288       gtk_icon_view_set_drag_dest_item (GTK_ICON_VIEW (widget),
6289                                         path, pos);
6290     }
6291   else
6292     {
6293       /* can't drop here */
6294       gtk_icon_view_set_drag_dest_item (GTK_ICON_VIEW (widget),
6295                                         NULL,
6296                                         GTK_ICON_VIEW_DROP_LEFT);
6297     }
6298   
6299   if (path)
6300     gtk_tree_path_free (path);
6301   
6302   return TRUE;
6303 }
6304
6305 static GtkTreePath*
6306 get_logical_destination (GtkIconView *icon_view,
6307                          gboolean    *drop_append_mode)
6308 {
6309   /* adjust path to point to the row the drop goes in front of */
6310   GtkTreePath *path = NULL;
6311   GtkIconViewDropPosition pos;
6312   
6313   *drop_append_mode = FALSE;
6314
6315   gtk_icon_view_get_drag_dest_item (icon_view, &path, &pos);
6316
6317   if (path == NULL)
6318     return NULL;
6319
6320   if (pos == GTK_ICON_VIEW_DROP_RIGHT || 
6321       pos == GTK_ICON_VIEW_DROP_BELOW)
6322     {
6323       GtkTreeIter iter;
6324       GtkTreeModel *model = icon_view->priv->model;
6325
6326       if (!gtk_tree_model_get_iter (model, &iter, path) ||
6327           !gtk_tree_model_iter_next (model, &iter))
6328         *drop_append_mode = TRUE;
6329       else
6330         {
6331           *drop_append_mode = FALSE;
6332           gtk_tree_path_next (path);
6333         }      
6334     }
6335
6336   return path;
6337 }
6338
6339 static gboolean
6340 gtk_icon_view_maybe_begin_drag (GtkIconView    *icon_view,
6341                                 GdkEventMotion *event)
6342 {
6343   GtkWidget *widget = GTK_WIDGET (icon_view);
6344   GdkDragContext *context;
6345   GtkTreePath *path = NULL;
6346   gint button;
6347   GtkTreeModel *model;
6348   gboolean retval = FALSE;
6349
6350   if (!icon_view->priv->source_set)
6351     goto out;
6352
6353   if (icon_view->priv->pressed_button < 0)
6354     goto out;
6355
6356   if (!gtk_drag_check_threshold (GTK_WIDGET (icon_view),
6357                                  icon_view->priv->press_start_x,
6358                                  icon_view->priv->press_start_y,
6359                                  event->x, event->y))
6360     goto out;
6361
6362   model = gtk_icon_view_get_model (icon_view);
6363
6364   if (model == NULL)
6365     goto out;
6366
6367   button = icon_view->priv->pressed_button;
6368   icon_view->priv->pressed_button = -1;
6369
6370   path = gtk_icon_view_get_path_at_pos (icon_view,
6371                                         icon_view->priv->press_start_x,
6372                                         icon_view->priv->press_start_y);
6373
6374   if (path == NULL)
6375     goto out;
6376
6377   if (!GTK_IS_TREE_DRAG_SOURCE (model) ||
6378       !gtk_tree_drag_source_row_draggable (GTK_TREE_DRAG_SOURCE (model),
6379                                            path))
6380     goto out;
6381
6382   /* FIXME Check whether we're a start button, if not return FALSE and
6383    * free path
6384    */
6385
6386   /* Now we can begin the drag */
6387   
6388   retval = TRUE;
6389
6390   context = gtk_drag_begin (widget,
6391                             gtk_drag_source_get_target_list (widget),
6392                             icon_view->priv->source_actions,
6393                             button,
6394                             (GdkEvent*)event);
6395
6396   set_source_row (context, model, path);
6397   
6398  out:
6399   if (path)
6400     gtk_tree_path_free (path);
6401
6402   return retval;
6403 }
6404
6405 /* Source side drag signals */
6406 static void 
6407 gtk_icon_view_drag_begin (GtkWidget      *widget,
6408                           GdkDragContext *context)
6409 {
6410   GtkIconView *icon_view;
6411   GtkIconViewItem *item;
6412   cairo_surface_t *icon;
6413   gint x, y;
6414   GtkTreePath *path;
6415
6416   icon_view = GTK_ICON_VIEW (widget);
6417
6418   /* if the user uses a custom DnD impl, we don't set the icon here */
6419   if (!icon_view->priv->dest_set && !icon_view->priv->source_set)
6420     return;
6421
6422   item = _gtk_icon_view_get_item_at_coords (icon_view,
6423                                            icon_view->priv->press_start_x,
6424                                            icon_view->priv->press_start_y,
6425                                            TRUE,
6426                                            NULL);
6427
6428   g_return_if_fail (item != NULL);
6429
6430   x = icon_view->priv->press_start_x - item->cell_area.x + 1;
6431   y = icon_view->priv->press_start_y - item->cell_area.y + 1;
6432   
6433   path = gtk_tree_path_new_from_indices (item->index, -1);
6434   icon = gtk_icon_view_create_drag_icon (icon_view, path);
6435   gtk_tree_path_free (path);
6436
6437   cairo_surface_set_device_offset (icon, -x, -y);
6438
6439   gtk_drag_set_icon_surface (context, icon);
6440
6441   cairo_surface_destroy (icon);
6442 }
6443
6444 static void 
6445 gtk_icon_view_drag_end (GtkWidget      *widget,
6446                         GdkDragContext *context)
6447 {
6448   /* do nothing */
6449 }
6450
6451 static void 
6452 gtk_icon_view_drag_data_get (GtkWidget        *widget,
6453                              GdkDragContext   *context,
6454                              GtkSelectionData *selection_data,
6455                              guint             info,
6456                              guint             time)
6457 {
6458   GtkIconView *icon_view;
6459   GtkTreeModel *model;
6460   GtkTreePath *source_row;
6461
6462   icon_view = GTK_ICON_VIEW (widget);
6463   model = gtk_icon_view_get_model (icon_view);
6464
6465   if (model == NULL)
6466     return;
6467
6468   if (!icon_view->priv->source_set)
6469     return;
6470
6471   source_row = get_source_row (context);
6472
6473   if (source_row == NULL)
6474     return;
6475
6476   /* We can implement the GTK_TREE_MODEL_ROW target generically for
6477    * any model; for DragSource models there are some other targets
6478    * we also support.
6479    */
6480
6481   if (GTK_IS_TREE_DRAG_SOURCE (model) &&
6482       gtk_tree_drag_source_drag_data_get (GTK_TREE_DRAG_SOURCE (model),
6483                                           source_row,
6484                                           selection_data))
6485     goto done;
6486
6487   /* If drag_data_get does nothing, try providing row data. */
6488   if (gtk_selection_data_get_target (selection_data) == gdk_atom_intern_static_string ("GTK_TREE_MODEL_ROW"))
6489     gtk_tree_set_row_drag_data (selection_data,
6490                                 model,
6491                                 source_row);
6492
6493  done:
6494   gtk_tree_path_free (source_row);
6495 }
6496
6497 static void 
6498 gtk_icon_view_drag_data_delete (GtkWidget      *widget,
6499                                 GdkDragContext *context)
6500 {
6501   GtkTreeModel *model;
6502   GtkIconView *icon_view;
6503   GtkTreePath *source_row;
6504
6505   icon_view = GTK_ICON_VIEW (widget);
6506   model = gtk_icon_view_get_model (icon_view);
6507
6508   if (!check_model_dnd (model, GTK_TYPE_TREE_DRAG_SOURCE, "drag-data-delete"))
6509     return;
6510
6511   if (!icon_view->priv->source_set)
6512     return;
6513
6514   source_row = get_source_row (context);
6515
6516   if (source_row == NULL)
6517     return;
6518
6519   gtk_tree_drag_source_drag_data_delete (GTK_TREE_DRAG_SOURCE (model),
6520                                          source_row);
6521
6522   gtk_tree_path_free (source_row);
6523
6524   set_source_row (context, NULL, NULL);
6525 }
6526
6527 /* Target side drag signals */
6528 static void
6529 gtk_icon_view_drag_leave (GtkWidget      *widget,
6530                           GdkDragContext *context,
6531                           guint           time)
6532 {
6533   GtkIconView *icon_view;
6534
6535   icon_view = GTK_ICON_VIEW (widget);
6536
6537   /* unset any highlight row */
6538   gtk_icon_view_set_drag_dest_item (icon_view,
6539                                     NULL,
6540                                     GTK_ICON_VIEW_DROP_LEFT);
6541
6542   remove_scroll_timeout (icon_view);
6543 }
6544
6545 static gboolean 
6546 gtk_icon_view_drag_motion (GtkWidget      *widget,
6547                            GdkDragContext *context,
6548                            gint            x,
6549                            gint            y,
6550                            guint           time)
6551 {
6552   GtkTreePath *path = NULL;
6553   GtkIconViewDropPosition pos;
6554   GtkIconView *icon_view;
6555   GdkDragAction suggested_action = 0;
6556   GdkAtom target;
6557   gboolean empty;
6558
6559   icon_view = GTK_ICON_VIEW (widget);
6560
6561   if (!set_destination (icon_view, context, x, y, &suggested_action, &target))
6562     return FALSE;
6563
6564   gtk_icon_view_get_drag_dest_item (icon_view, &path, &pos);
6565
6566   /* we only know this *after* set_desination_row */
6567   empty = icon_view->priv->empty_view_drop;
6568
6569   if (path == NULL && !empty)
6570     {
6571       /* Can't drop here. */
6572       gdk_drag_status (context, 0, time);
6573     }
6574   else
6575     {
6576       if (icon_view->priv->scroll_timeout_id == 0)
6577         {
6578           DragScrollData *data = g_slice_new (DragScrollData);
6579           data->icon_view = icon_view;
6580           data->device = gdk_drag_context_get_device (context);
6581
6582           icon_view->priv->scroll_timeout_id =
6583             gdk_threads_add_timeout_full (G_PRIORITY_DEFAULT, 50, drag_scroll_timeout, data, (GDestroyNotify) drag_scroll_data_free);
6584         }
6585
6586       if (target == gdk_atom_intern_static_string ("GTK_TREE_MODEL_ROW"))
6587         {
6588           /* Request data so we can use the source row when
6589            * determining whether to accept the drop
6590            */
6591           set_status_pending (context, suggested_action);
6592           gtk_drag_get_data (widget, context, target, time);
6593         }
6594       else
6595         {
6596           set_status_pending (context, 0);
6597           gdk_drag_status (context, suggested_action, time);
6598         }
6599     }
6600
6601   if (path)
6602     gtk_tree_path_free (path);
6603
6604   return TRUE;
6605 }
6606
6607 static gboolean 
6608 gtk_icon_view_drag_drop (GtkWidget      *widget,
6609                          GdkDragContext *context,
6610                          gint            x,
6611                          gint            y,
6612                          guint           time)
6613 {
6614   GtkIconView *icon_view;
6615   GtkTreePath *path;
6616   GdkDragAction suggested_action = 0;
6617   GdkAtom target = GDK_NONE;
6618   GtkTreeModel *model;
6619   gboolean drop_append_mode;
6620
6621   icon_view = GTK_ICON_VIEW (widget);
6622   model = gtk_icon_view_get_model (icon_view);
6623
6624   remove_scroll_timeout (GTK_ICON_VIEW (widget));
6625
6626   if (!icon_view->priv->dest_set)
6627     return FALSE;
6628
6629   if (!check_model_dnd (model, GTK_TYPE_TREE_DRAG_DEST, "drag-drop"))
6630     return FALSE;
6631
6632   if (!set_destination (icon_view, context, x, y, &suggested_action, &target))
6633     return FALSE;
6634   
6635   path = get_logical_destination (icon_view, &drop_append_mode);
6636
6637   if (target != GDK_NONE && path != NULL)
6638     {
6639       /* in case a motion had requested drag data, change things so we
6640        * treat drag data receives as a drop.
6641        */
6642       set_status_pending (context, 0);
6643       set_dest_row (context, model, path, 
6644                     icon_view->priv->empty_view_drop, drop_append_mode);
6645     }
6646
6647   if (path)
6648     gtk_tree_path_free (path);
6649
6650   /* Unset this thing */
6651   gtk_icon_view_set_drag_dest_item (icon_view, NULL, GTK_ICON_VIEW_DROP_LEFT);
6652
6653   if (target != GDK_NONE)
6654     {
6655       gtk_drag_get_data (widget, context, target, time);
6656       return TRUE;
6657     }
6658   else
6659     return FALSE;
6660 }
6661
6662 static void
6663 gtk_icon_view_drag_data_received (GtkWidget        *widget,
6664                                   GdkDragContext   *context,
6665                                   gint              x,
6666                                   gint              y,
6667                                   GtkSelectionData *selection_data,
6668                                   guint             info,
6669                                   guint             time)
6670 {
6671   GtkTreePath *path;
6672   gboolean accepted = FALSE;
6673   GtkTreeModel *model;
6674   GtkIconView *icon_view;
6675   GtkTreePath *dest_row;
6676   GdkDragAction suggested_action;
6677   gboolean drop_append_mode;
6678   
6679   icon_view = GTK_ICON_VIEW (widget);  
6680   model = gtk_icon_view_get_model (icon_view);
6681
6682   if (!check_model_dnd (model, GTK_TYPE_TREE_DRAG_DEST, "drag-data-received"))
6683     return;
6684
6685   if (!icon_view->priv->dest_set)
6686     return;
6687
6688   suggested_action = get_status_pending (context);
6689
6690   if (suggested_action)
6691     {
6692       /* We are getting this data due to a request in drag_motion,
6693        * rather than due to a request in drag_drop, so we are just
6694        * supposed to call drag_status, not actually paste in the
6695        * data.
6696        */
6697       path = get_logical_destination (icon_view, &drop_append_mode);
6698
6699       if (path == NULL)
6700         suggested_action = 0;
6701
6702       if (suggested_action)
6703         {
6704           if (!gtk_tree_drag_dest_row_drop_possible (GTK_TREE_DRAG_DEST (model),
6705                                                      path,
6706                                                      selection_data))
6707             suggested_action = 0;
6708         }
6709
6710       gdk_drag_status (context, suggested_action, time);
6711
6712       if (path)
6713         gtk_tree_path_free (path);
6714
6715       /* If you can't drop, remove user drop indicator until the next motion */
6716       if (suggested_action == 0)
6717         gtk_icon_view_set_drag_dest_item (icon_view,
6718                                           NULL,
6719                                           GTK_ICON_VIEW_DROP_LEFT);
6720       return;
6721     }
6722   
6723
6724   dest_row = get_dest_row (context);
6725
6726   if (dest_row == NULL)
6727     return;
6728
6729   if (gtk_selection_data_get_length (selection_data) >= 0)
6730     {
6731       if (gtk_tree_drag_dest_drag_data_received (GTK_TREE_DRAG_DEST (model),
6732                                                  dest_row,
6733                                                  selection_data))
6734         accepted = TRUE;
6735     }
6736
6737   gtk_drag_finish (context,
6738                    accepted,
6739                    (gdk_drag_context_get_selected_action (context) == GDK_ACTION_MOVE),
6740                    time);
6741
6742   gtk_tree_path_free (dest_row);
6743
6744   /* drop dest_row */
6745   set_dest_row (context, NULL, NULL, FALSE, FALSE);
6746 }
6747
6748 /* Drag-and-Drop support */
6749 /**
6750  * gtk_icon_view_enable_model_drag_source:
6751  * @icon_view: a #GtkIconView
6752  * @start_button_mask: Mask of allowed buttons to start drag
6753  * @targets: (array length=n_targets): the table of targets that the drag will
6754  *           support
6755  * @n_targets: the number of items in @targets
6756  * @actions: the bitmask of possible actions for a drag from this
6757  *    widget
6758  *
6759  * Turns @icon_view into a drag source for automatic DND. Calling this
6760  * method sets #GtkIconView:reorderable to %FALSE.
6761  *
6762  * Since: 2.8
6763  **/
6764 void
6765 gtk_icon_view_enable_model_drag_source (GtkIconView              *icon_view,
6766                                         GdkModifierType           start_button_mask,
6767                                         const GtkTargetEntry     *targets,
6768                                         gint                      n_targets,
6769                                         GdkDragAction             actions)
6770 {
6771   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6772
6773   gtk_drag_source_set (GTK_WIDGET (icon_view), 0, targets, n_targets, actions);
6774
6775   icon_view->priv->start_button_mask = start_button_mask;
6776   icon_view->priv->source_actions = actions;
6777
6778   icon_view->priv->source_set = TRUE;
6779
6780   unset_reorderable (icon_view);
6781 }
6782
6783 /**
6784  * gtk_icon_view_enable_model_drag_dest:
6785  * @icon_view: a #GtkIconView
6786  * @targets: (array length=n_targets): the table of targets that the drag will
6787  *           support
6788  * @n_targets: the number of items in @targets
6789  * @actions: the bitmask of possible actions for a drag to this
6790  *    widget
6791  *
6792  * Turns @icon_view into a drop destination for automatic DND. Calling this
6793  * method sets #GtkIconView:reorderable to %FALSE.
6794  *
6795  * Since: 2.8
6796  **/
6797 void 
6798 gtk_icon_view_enable_model_drag_dest (GtkIconView          *icon_view,
6799                                       const GtkTargetEntry *targets,
6800                                       gint                  n_targets,
6801                                       GdkDragAction         actions)
6802 {
6803   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6804
6805   gtk_drag_dest_set (GTK_WIDGET (icon_view), 0, targets, n_targets, actions);
6806
6807   icon_view->priv->dest_actions = actions;
6808
6809   icon_view->priv->dest_set = TRUE;
6810
6811   unset_reorderable (icon_view);  
6812 }
6813
6814 /**
6815  * gtk_icon_view_unset_model_drag_source:
6816  * @icon_view: a #GtkIconView
6817  * 
6818  * Undoes the effect of gtk_icon_view_enable_model_drag_source(). Calling this
6819  * method sets #GtkIconView:reorderable to %FALSE.
6820  *
6821  * Since: 2.8
6822  **/
6823 void
6824 gtk_icon_view_unset_model_drag_source (GtkIconView *icon_view)
6825 {
6826   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6827
6828   if (icon_view->priv->source_set)
6829     {
6830       gtk_drag_source_unset (GTK_WIDGET (icon_view));
6831       icon_view->priv->source_set = FALSE;
6832     }
6833
6834   unset_reorderable (icon_view);
6835 }
6836
6837 /**
6838  * gtk_icon_view_unset_model_drag_dest:
6839  * @icon_view: a #GtkIconView
6840  * 
6841  * Undoes the effect of gtk_icon_view_enable_model_drag_dest(). Calling this
6842  * method sets #GtkIconView:reorderable to %FALSE.
6843  *
6844  * Since: 2.8
6845  **/
6846 void
6847 gtk_icon_view_unset_model_drag_dest (GtkIconView *icon_view)
6848 {
6849   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6850
6851   if (icon_view->priv->dest_set)
6852     {
6853       gtk_drag_dest_unset (GTK_WIDGET (icon_view));
6854       icon_view->priv->dest_set = FALSE;
6855     }
6856
6857   unset_reorderable (icon_view);
6858 }
6859
6860 /* These are useful to implement your own custom stuff. */
6861 /**
6862  * gtk_icon_view_set_drag_dest_item:
6863  * @icon_view: a #GtkIconView
6864  * @path: (allow-none): The path of the item to highlight, or %NULL.
6865  * @pos: Specifies where to drop, relative to the item
6866  *
6867  * Sets the item that is highlighted for feedback.
6868  *
6869  * Since: 2.8
6870  */
6871 void
6872 gtk_icon_view_set_drag_dest_item (GtkIconView              *icon_view,
6873                                   GtkTreePath              *path,
6874                                   GtkIconViewDropPosition   pos)
6875 {
6876   /* Note; this function is exported to allow a custom DND
6877    * implementation, so it can't touch TreeViewDragInfo
6878    */
6879
6880   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6881
6882   if (icon_view->priv->dest_item)
6883     {
6884       GtkTreePath *current_path;
6885       current_path = gtk_tree_row_reference_get_path (icon_view->priv->dest_item);
6886       gtk_tree_row_reference_free (icon_view->priv->dest_item);
6887       icon_view->priv->dest_item = NULL;      
6888
6889       gtk_icon_view_queue_draw_path (icon_view, current_path);
6890       gtk_tree_path_free (current_path);
6891     }
6892   
6893   /* special case a drop on an empty model */
6894   icon_view->priv->empty_view_drop = FALSE;
6895   if (pos == GTK_ICON_VIEW_DROP_ABOVE && path
6896       && gtk_tree_path_get_depth (path) == 1
6897       && gtk_tree_path_get_indices (path)[0] == 0)
6898     {
6899       gint n_children;
6900
6901       n_children = gtk_tree_model_iter_n_children (icon_view->priv->model,
6902                                                    NULL);
6903
6904       if (n_children == 0)
6905         icon_view->priv->empty_view_drop = TRUE;
6906     }
6907
6908   icon_view->priv->dest_pos = pos;
6909
6910   if (path)
6911     {
6912       icon_view->priv->dest_item =
6913         gtk_tree_row_reference_new_proxy (G_OBJECT (icon_view), 
6914                                           icon_view->priv->model, path);
6915       
6916       gtk_icon_view_queue_draw_path (icon_view, path);
6917     }
6918 }
6919
6920 /**
6921  * gtk_icon_view_get_drag_dest_item:
6922  * @icon_view: a #GtkIconView
6923  * @path: (out) (allow-none): Return location for the path of
6924  *        the highlighted item, or %NULL.
6925  * @pos: (out) (allow-none): Return location for the drop position, or %NULL
6926  * 
6927  * Gets information about the item that is highlighted for feedback.
6928  *
6929  * Since: 2.8
6930  **/
6931 void
6932 gtk_icon_view_get_drag_dest_item (GtkIconView              *icon_view,
6933                                   GtkTreePath             **path,
6934                                   GtkIconViewDropPosition  *pos)
6935 {
6936   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6937
6938   if (path)
6939     {
6940       if (icon_view->priv->dest_item)
6941         *path = gtk_tree_row_reference_get_path (icon_view->priv->dest_item);
6942       else
6943         *path = NULL;
6944     }
6945
6946   if (pos)
6947     *pos = icon_view->priv->dest_pos;
6948 }
6949
6950 /**
6951  * gtk_icon_view_get_dest_item_at_pos:
6952  * @icon_view: a #GtkIconView
6953  * @drag_x: the position to determine the destination item for
6954  * @drag_y: the position to determine the destination item for
6955  * @path: (out) (allow-none): Return location for the path of the item,
6956  *    or %NULL.
6957  * @pos: (out) (allow-none): Return location for the drop position, or %NULL
6958  * 
6959  * Determines the destination item for a given position.
6960  * 
6961  * Return value: whether there is an item at the given position.
6962  *
6963  * Since: 2.8
6964  **/
6965 gboolean
6966 gtk_icon_view_get_dest_item_at_pos (GtkIconView              *icon_view,
6967                                     gint                      drag_x,
6968                                     gint                      drag_y,
6969                                     GtkTreePath             **path,
6970                                     GtkIconViewDropPosition  *pos)
6971 {
6972   GtkIconViewItem *item;
6973
6974   /* Note; this function is exported to allow a custom DND
6975    * implementation, so it can't touch TreeViewDragInfo
6976    */
6977
6978   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
6979   g_return_val_if_fail (drag_x >= 0, FALSE);
6980   g_return_val_if_fail (drag_y >= 0, FALSE);
6981   g_return_val_if_fail (icon_view->priv->bin_window != NULL, FALSE);
6982
6983
6984   if (path)
6985     *path = NULL;
6986
6987   item = _gtk_icon_view_get_item_at_coords (icon_view, 
6988                                            drag_x + gtk_adjustment_get_value (icon_view->priv->hadjustment), 
6989                                            drag_y + gtk_adjustment_get_value (icon_view->priv->vadjustment),
6990                                            FALSE, NULL);
6991
6992   if (item == NULL)
6993     return FALSE;
6994
6995   if (path)
6996     *path = gtk_tree_path_new_from_indices (item->index, -1);
6997
6998   if (pos)
6999     {
7000       if (drag_x < item->cell_area.x + item->cell_area.width / 4)
7001         *pos = GTK_ICON_VIEW_DROP_LEFT;
7002       else if (drag_x > item->cell_area.x + item->cell_area.width * 3 / 4)
7003         *pos = GTK_ICON_VIEW_DROP_RIGHT;
7004       else if (drag_y < item->cell_area.y + item->cell_area.height / 4)
7005         *pos = GTK_ICON_VIEW_DROP_ABOVE;
7006       else if (drag_y > item->cell_area.y + item->cell_area.height * 3 / 4)
7007         *pos = GTK_ICON_VIEW_DROP_BELOW;
7008       else
7009         *pos = GTK_ICON_VIEW_DROP_INTO;
7010     }
7011
7012   return TRUE;
7013 }
7014
7015 /**
7016  * gtk_icon_view_create_drag_icon:
7017  * @icon_view: a #GtkIconView
7018  * @path: a #GtkTreePath in @icon_view
7019  *
7020  * Creates a #cairo_surface_t representation of the item at @path.  
7021  * This image is used for a drag icon.
7022  *
7023  * Return value: (transfer full): a newly-allocated surface of the drag icon.
7024  * 
7025  * Since: 2.8
7026  **/
7027 cairo_surface_t *
7028 gtk_icon_view_create_drag_icon (GtkIconView *icon_view,
7029                                 GtkTreePath *path)
7030 {
7031   GtkWidget *widget;
7032   GtkStyleContext *context;
7033   cairo_t *cr;
7034   cairo_surface_t *surface;
7035   GList *l;
7036   gint index;
7037
7038   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), NULL);
7039   g_return_val_if_fail (path != NULL, NULL);
7040
7041   widget = GTK_WIDGET (icon_view);
7042   context = gtk_widget_get_style_context (widget);
7043
7044   if (!gtk_widget_get_realized (widget))
7045     return NULL;
7046
7047   index = gtk_tree_path_get_indices (path)[0];
7048
7049   for (l = icon_view->priv->items; l; l = l->next) 
7050     {
7051       GtkIconViewItem *item = l->data;
7052       
7053       if (index == item->index)
7054         {
7055           GdkRectangle rect = { 
7056             item->cell_area.x - icon_view->priv->item_padding, 
7057             item->cell_area.y - icon_view->priv->item_padding, 
7058             item->cell_area.width  + icon_view->priv->item_padding * 2, 
7059             item->cell_area.height + icon_view->priv->item_padding * 2 
7060           };
7061
7062           surface = gdk_window_create_similar_surface (icon_view->priv->bin_window,
7063                                                        CAIRO_CONTENT_COLOR,
7064                                                        rect.width + 2,
7065                                                        rect.height + 2);
7066
7067           cr = cairo_create (surface);
7068           cairo_set_line_width (cr, 1.);
7069
7070           gtk_render_background (context, cr, 0, 0,
7071                                  rect.width + 2, rect.height + 2);
7072
7073           cairo_save (cr);
7074
7075           cairo_rectangle (cr, 1, 1, rect.width, rect.height);
7076           cairo_clip (cr);
7077
7078           gtk_icon_view_paint_item (icon_view, cr, item, 
7079                                     icon_view->priv->item_padding + 1, 
7080                                     icon_view->priv->item_padding + 1, FALSE);
7081
7082           cairo_restore (cr);
7083
7084           cairo_set_source_rgb (cr, 0.0, 0.0, 0.0); /* black */
7085           cairo_rectangle (cr, 0.5, 0.5, rect.width + 1, rect.height + 1);
7086           cairo_stroke (cr);
7087
7088           cairo_destroy (cr);
7089
7090           return surface;
7091         }
7092     }
7093   
7094   return NULL;
7095 }
7096
7097 /**
7098  * gtk_icon_view_get_reorderable:
7099  * @icon_view: a #GtkIconView
7100  *
7101  * Retrieves whether the user can reorder the list via drag-and-drop. 
7102  * See gtk_icon_view_set_reorderable().
7103  *
7104  * Return value: %TRUE if the list can be reordered.
7105  *
7106  * Since: 2.8
7107  **/
7108 gboolean
7109 gtk_icon_view_get_reorderable (GtkIconView *icon_view)
7110 {
7111   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
7112
7113   return icon_view->priv->reorderable;
7114 }
7115
7116 static const GtkTargetEntry item_targets[] = {
7117   { "GTK_TREE_MODEL_ROW", GTK_TARGET_SAME_WIDGET, 0 }
7118 };
7119
7120
7121 /**
7122  * gtk_icon_view_set_reorderable:
7123  * @icon_view: A #GtkIconView.
7124  * @reorderable: %TRUE, if the list of items can be reordered.
7125  *
7126  * This function is a convenience function to allow you to reorder models that
7127  * support the #GtkTreeDragSourceIface and the #GtkTreeDragDestIface.  Both
7128  * #GtkTreeStore and #GtkListStore support these.  If @reorderable is %TRUE, then
7129  * the user can reorder the model by dragging and dropping rows.  The
7130  * developer can listen to these changes by connecting to the model's
7131  * row_inserted and row_deleted signals. The reordering is implemented by setting up
7132  * the icon view as a drag source and destination. Therefore, drag and
7133  * drop can not be used in a reorderable view for any other purpose.
7134  *
7135  * This function does not give you any degree of control over the order -- any
7136  * reordering is allowed.  If more control is needed, you should probably
7137  * handle drag and drop manually.
7138  *
7139  * Since: 2.8
7140  **/
7141 void
7142 gtk_icon_view_set_reorderable (GtkIconView *icon_view,
7143                                gboolean     reorderable)
7144 {
7145   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
7146
7147   reorderable = reorderable != FALSE;
7148
7149   if (icon_view->priv->reorderable == reorderable)
7150     return;
7151
7152   if (reorderable)
7153     {
7154       gtk_icon_view_enable_model_drag_source (icon_view,
7155                                               GDK_BUTTON1_MASK,
7156                                               item_targets,
7157                                               G_N_ELEMENTS (item_targets),
7158                                               GDK_ACTION_MOVE);
7159       gtk_icon_view_enable_model_drag_dest (icon_view,
7160                                             item_targets,
7161                                             G_N_ELEMENTS (item_targets),
7162                                             GDK_ACTION_MOVE);
7163     }
7164   else
7165     {
7166       gtk_icon_view_unset_model_drag_source (icon_view);
7167       gtk_icon_view_unset_model_drag_dest (icon_view);
7168     }
7169
7170   icon_view->priv->reorderable = reorderable;
7171
7172   g_object_notify (G_OBJECT (icon_view), "reorderable");
7173 }
7174
7175 static gboolean
7176 gtk_icon_view_buildable_custom_tag_start (GtkBuildable  *buildable,
7177                                           GtkBuilder    *builder,
7178                                           GObject       *child,
7179                                           const gchar   *tagname,
7180                                           GMarkupParser *parser,
7181                                           gpointer      *data)
7182 {
7183   if (parent_buildable_iface->custom_tag_start (buildable, builder, child,
7184                                                 tagname, parser, data))
7185     return TRUE;
7186
7187   return _gtk_cell_layout_buildable_custom_tag_start (buildable, builder, child,
7188                                                       tagname, parser, data);
7189 }
7190
7191 static void
7192 gtk_icon_view_buildable_custom_tag_end (GtkBuildable *buildable,
7193                                         GtkBuilder   *builder,
7194                                         GObject      *child,
7195                                         const gchar  *tagname,
7196                                         gpointer     *data)
7197 {
7198   if (!_gtk_cell_layout_buildable_custom_tag_end (buildable, builder,
7199                                                   child, tagname, data))
7200     parent_buildable_iface->custom_tag_end (buildable, builder,
7201                                             child, tagname, data);
7202 }