]> Pileus Git - ~andy/gtk/blob - gtk/gtkiconview.c
Rename buildable methods to not clash with widget methods. (#448928,
[~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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <config.h>
21 #include <string.h>
22
23 #include <atk/atk.h>
24
25 #include <gdk/gdkkeysyms.h>
26
27 #include "gtkiconview.h"
28 #include "gtkcelllayout.h"
29 #include "gtkcellrenderer.h"
30 #include "gtkcellrenderertext.h"
31 #include "gtkcellrendererpixbuf.h"
32 #include "gtkmarshalers.h"
33 #include "gtkbindings.h"
34 #include "gtkdnd.h"
35 #include "gtkmain.h"
36 #include "gtksignal.h"
37 #include "gtkintl.h"
38 #include "gtkaccessible.h"
39 #include "gtkwindow.h"
40 #include "gtkentry.h"
41 #include "gtkcombobox.h"
42 #include "gtktextbuffer.h"
43 #include "gtktreednd.h"
44 #include "gtkprivate.h"
45 #include "gtkalias.h"
46
47 #undef DEBUG_ICON_VIEW
48
49 #define SCROLL_EDGE_SIZE 15
50
51 #define GTK_ICON_VIEW_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_ICON_VIEW, GtkIconViewPrivate))
52
53 typedef struct _GtkIconViewItem GtkIconViewItem;
54 struct _GtkIconViewItem
55 {
56   GtkTreeIter iter;
57   gint index;
58   
59   gint row, col;
60
61   /* Bounding box */
62   gint x, y, width, height;
63
64   /* Individual cells.
65    * box[i] is the actual area occupied by cell i,
66    * before, after are used to calculate the cell 
67    * area relative to the box. 
68    * See gtk_icon_view_get_cell_area().
69    */
70   gint n_cells;
71   GdkRectangle *box;
72   gint *before;
73   gint *after;
74
75   guint selected : 1;
76   guint selected_before_rubberbanding : 1;
77
78 };
79
80 typedef struct _GtkIconViewCellInfo GtkIconViewCellInfo;
81 struct _GtkIconViewCellInfo
82 {
83   GtkCellRenderer *cell;
84
85   guint expand : 1;
86   guint pack : 1;
87   guint editing : 1;
88
89   gint position;
90
91   GSList *attributes;
92
93   GtkCellLayoutDataFunc func;
94   gpointer func_data;
95   GDestroyNotify destroy;
96 };
97
98 typedef struct _GtkIconViewChild GtkIconViewChild;
99 struct _GtkIconViewChild
100 {
101   GtkWidget *widget;
102   GtkIconViewItem *item;
103   gint cell;
104 };
105
106 struct _GtkIconViewPrivate
107 {
108   gint width, height;
109
110   GtkSelectionMode selection_mode;
111
112   GdkWindow *bin_window;
113
114   GList *children;
115
116   GtkTreeModel *model;
117   
118   GList *items;
119   
120   GtkAdjustment *hadjustment;
121   GtkAdjustment *vadjustment;
122
123   guint layout_idle_id;
124   
125   gboolean doing_rubberband;
126   gint rubberband_x1, rubberband_y1;
127   gint rubberband_x2, rubberband_y2;
128
129   guint scroll_timeout_id;
130   gint scroll_value_diff;
131   gint event_last_x, event_last_y;
132
133   GtkIconViewItem *anchor_item;
134   GtkIconViewItem *cursor_item;
135   GtkIconViewItem *edited_item;
136   GtkCellEditable *editable;
137
138   GtkIconViewItem *last_single_clicked;
139
140   GList *cell_list;
141   guint n_cells;
142
143   gint cursor_cell;
144
145   GtkOrientation orientation;
146
147   gint columns;
148   gint item_width;
149   gint spacing;
150   gint row_spacing;
151   gint column_spacing;
152   gint margin;
153
154   gint text_column;
155   gint markup_column;
156   gint pixbuf_column;
157
158   gint pixbuf_cell;
159   gint text_cell;
160
161   /* Drag-and-drop. */
162   GdkModifierType start_button_mask;
163   gint pressed_button;
164   gint press_start_x;
165   gint press_start_y;
166
167   GtkTargetList *source_targets;
168   GdkDragAction source_actions;
169
170   GtkTargetList *dest_targets;
171   GdkDragAction dest_actions;
172
173   GtkTreeRowReference *dest_item;
174   GtkIconViewDropPosition dest_pos;
175
176   /* scroll to */
177   GtkTreeRowReference *scroll_to_path;
178   gfloat scroll_to_row_align;
179   gfloat scroll_to_col_align;
180   guint scroll_to_use_align : 1;
181
182   guint source_set : 1;
183   guint dest_set : 1;
184   guint reorderable : 1;
185   guint empty_view_drop :1;
186
187   guint ctrl_pressed : 1;
188   guint shift_pressed : 1;  
189 };
190
191 /* Signals */
192 enum
193 {
194   ITEM_ACTIVATED,
195   SELECTION_CHANGED,
196   SELECT_ALL,
197   UNSELECT_ALL,
198   SELECT_CURSOR_ITEM,
199   TOGGLE_CURSOR_ITEM,
200   MOVE_CURSOR,
201   ACTIVATE_CURSOR_ITEM,
202   LAST_SIGNAL
203 };
204
205 /* Properties */
206 enum
207 {
208   PROP_0,
209   PROP_PIXBUF_COLUMN,
210   PROP_TEXT_COLUMN,
211   PROP_MARKUP_COLUMN,  
212   PROP_SELECTION_MODE,
213   PROP_ORIENTATION,
214   PROP_MODEL,
215   PROP_COLUMNS,
216   PROP_ITEM_WIDTH,
217   PROP_SPACING,
218   PROP_ROW_SPACING,
219   PROP_COLUMN_SPACING,
220   PROP_MARGIN,
221   PROP_REORDERABLE
222 };
223
224 /* GObject vfuncs */
225 static void             gtk_icon_view_cell_layout_init          (GtkCellLayoutIface *iface);
226 static void             gtk_icon_view_finalize                  (GObject            *object);
227 static void             gtk_icon_view_set_property              (GObject            *object,
228                                                                  guint               prop_id,
229                                                                  const GValue       *value,
230                                                                  GParamSpec         *pspec);
231 static void             gtk_icon_view_get_property              (GObject            *object,
232                                                                  guint               prop_id,
233                                                                  GValue             *value,
234                                                                  GParamSpec         *pspec);
235
236 /* GtkObject vfuncs */
237 static void             gtk_icon_view_destroy                   (GtkObject          *object);
238
239 /* GtkWidget vfuncs */
240 static void             gtk_icon_view_realize                   (GtkWidget          *widget);
241 static void             gtk_icon_view_unrealize                 (GtkWidget          *widget);
242 static void             gtk_icon_view_style_set                 (GtkWidget        *widget,
243                                                                  GtkStyle         *previous_style);
244 static void             gtk_icon_view_state_changed             (GtkWidget        *widget,
245                                                                  GtkStateType      previous_state);
246 static void             gtk_icon_view_size_request              (GtkWidget          *widget,
247                                                                  GtkRequisition     *requisition);
248 static void             gtk_icon_view_size_allocate             (GtkWidget          *widget,
249                                                                  GtkAllocation      *allocation);
250 static gboolean         gtk_icon_view_expose                    (GtkWidget          *widget,
251                                                                  GdkEventExpose     *expose);
252 static gboolean         gtk_icon_view_motion                    (GtkWidget          *widget,
253                                                                  GdkEventMotion     *event);
254 static gboolean         gtk_icon_view_button_press              (GtkWidget          *widget,
255                                                                  GdkEventButton     *event);
256 static gboolean         gtk_icon_view_button_release            (GtkWidget          *widget,
257                                                                  GdkEventButton     *event);
258 static gboolean         gtk_icon_view_key_press                 (GtkWidget          *widget,
259                                                                  GdkEventKey        *event);
260 static gboolean         gtk_icon_view_key_release               (GtkWidget          *widget,
261                                                                  GdkEventKey        *event);
262 static AtkObject       *gtk_icon_view_get_accessible            (GtkWidget          *widget);
263
264
265 /* GtkContainer vfuncs */
266 static void             gtk_icon_view_remove                    (GtkContainer       *container,
267                                                                  GtkWidget          *widget);
268 static void             gtk_icon_view_forall                    (GtkContainer       *container,
269                                                                  gboolean            include_internals,
270                                                                  GtkCallback         callback,
271                                                                  gpointer            callback_data);
272
273 /* GtkIconView vfuncs */
274 static void             gtk_icon_view_set_adjustments           (GtkIconView        *icon_view,
275                                                                  GtkAdjustment      *hadj,
276                                                                  GtkAdjustment      *vadj);
277 static void             gtk_icon_view_real_select_all           (GtkIconView        *icon_view);
278 static void             gtk_icon_view_real_unselect_all         (GtkIconView        *icon_view);
279 static void             gtk_icon_view_real_select_cursor_item   (GtkIconView        *icon_view);
280 static void             gtk_icon_view_real_toggle_cursor_item   (GtkIconView        *icon_view);
281 static gboolean         gtk_icon_view_real_activate_cursor_item (GtkIconView        *icon_view);
282
283  /* Internal functions */
284 static void                 gtk_icon_view_adjustment_changed             (GtkAdjustment          *adjustment,
285                                                                           GtkIconView            *icon_view);
286 static void                 gtk_icon_view_layout                         (GtkIconView            *icon_view);
287 static void                 gtk_icon_view_paint_item                     (GtkIconView            *icon_view,
288                                                                           cairo_t *cr,
289
290                                                                           GtkIconViewItem        *item,
291                                                                           GdkRectangle           *area,
292                                                                           GdkDrawable *drawable,
293                                                                           gint         x,
294                                                                           gint         y,
295                                                                           gboolean     draw_focus);
296 static void                 gtk_icon_view_paint_rubberband               (GtkIconView            *icon_view,
297                                                                           cairo_t *cr,
298                                                                           GdkRectangle           *area);
299 static void                 gtk_icon_view_queue_draw_path                (GtkIconView *icon_view,
300                                                                           GtkTreePath *path);
301 static void                 gtk_icon_view_queue_draw_item                (GtkIconView            *icon_view,
302                                                                           GtkIconViewItem        *item);
303 static void                 gtk_icon_view_queue_layout                   (GtkIconView            *icon_view);
304 static void                 gtk_icon_view_set_cursor_item                (GtkIconView            *icon_view,
305                                                                           GtkIconViewItem        *item,
306                                                                           gint                    cursor_cell);
307 static void                 gtk_icon_view_start_rubberbanding            (GtkIconView            *icon_view,
308                                                                           gint                    x,
309                                                                           gint                    y);
310 static void                 gtk_icon_view_stop_rubberbanding             (GtkIconView            *icon_view);
311 static void                 gtk_icon_view_update_rubberband_selection    (GtkIconView            *icon_view);
312 static gboolean             gtk_icon_view_item_hit_test                  (GtkIconView            *icon_view,
313                                                                           GtkIconViewItem        *item,
314                                                                           gint                    x,
315                                                                           gint                    y,
316                                                                           gint                    width,
317                                                                           gint                    height);
318 static gboolean             gtk_icon_view_unselect_all_internal          (GtkIconView            *icon_view);
319 static void                 gtk_icon_view_calculate_item_size            (GtkIconView            *icon_view,
320                                                                           GtkIconViewItem        *item);
321 static void                 gtk_icon_view_calculate_item_size2           (GtkIconView            *icon_view,
322                                                                           GtkIconViewItem        *item,
323                                                                           gint                   *max_height);
324 static void                 gtk_icon_view_update_rubberband              (gpointer                data);
325 static void                 gtk_icon_view_item_invalidate_size           (GtkIconViewItem        *item);
326 static void                 gtk_icon_view_invalidate_sizes               (GtkIconView            *icon_view);
327 static void                 gtk_icon_view_add_move_binding               (GtkBindingSet          *binding_set,
328                                                                           guint                   keyval,
329                                                                           guint                   modmask,
330                                                                           GtkMovementStep         step,
331                                                                           gint                    count);
332 static gboolean             gtk_icon_view_real_move_cursor               (GtkIconView            *icon_view,
333                                                                           GtkMovementStep         step,
334                                                                           gint                    count);
335 static void                 gtk_icon_view_move_cursor_up_down            (GtkIconView            *icon_view,
336                                                                           gint                    count);
337 static void                 gtk_icon_view_move_cursor_page_up_down       (GtkIconView            *icon_view,
338                                                                           gint                    count);
339 static void                 gtk_icon_view_move_cursor_left_right         (GtkIconView            *icon_view,
340                                                                           gint                    count);
341 static void                 gtk_icon_view_move_cursor_start_end          (GtkIconView            *icon_view,
342                                                                           gint                    count);
343 static void                 gtk_icon_view_scroll_to_item                 (GtkIconView            *icon_view,
344                                                                           GtkIconViewItem        *item);
345 static void                 gtk_icon_view_select_item                    (GtkIconView            *icon_view,
346                                                                           GtkIconViewItem        *item);
347 static void                 gtk_icon_view_unselect_item                  (GtkIconView            *icon_view,
348                                                                           GtkIconViewItem        *item);
349 static gboolean             gtk_icon_view_select_all_between             (GtkIconView            *icon_view,
350                                                                           GtkIconViewItem        *anchor,
351                                                                           GtkIconViewItem        *cursor);
352 static GtkIconViewItem *    gtk_icon_view_get_item_at_coords             (GtkIconView            *icon_view,
353                                                                           gint                    x,
354                                                                           gint                    y,
355                                                                           gboolean                only_in_cell,
356                                                                           GtkIconViewCellInfo   **cell_at_pos);
357 static void                 gtk_icon_view_get_cell_area                  (GtkIconView            *icon_view,
358                                                                           GtkIconViewItem        *item,
359                                                                           GtkIconViewCellInfo    *cell_info,
360                                                                           GdkRectangle           *cell_area);
361 static void                 gtk_icon_view_get_cell_box                   (GtkIconView            *icon_view,
362                                                                           GtkIconViewItem        *item,
363                                                                           GtkIconViewCellInfo    *info,
364                                                                           GdkRectangle           *box);
365 static GtkIconViewCellInfo *gtk_icon_view_get_cell_info                  (GtkIconView            *icon_view,
366                                                                           GtkCellRenderer        *renderer);
367 static void                 gtk_icon_view_set_cell_data                  (GtkIconView            *icon_view,
368                                                                           GtkIconViewItem        *item);
369 static void                 gtk_icon_view_cell_layout_pack_start         (GtkCellLayout          *layout,
370                                                                           GtkCellRenderer        *renderer,
371                                                                           gboolean                expand);
372 static void                 gtk_icon_view_cell_layout_pack_end           (GtkCellLayout          *layout,
373                                                                           GtkCellRenderer        *renderer,
374                                                                           gboolean                expand);
375 static void                 gtk_icon_view_cell_layout_add_attribute      (GtkCellLayout          *layout,
376                                                                           GtkCellRenderer        *renderer,
377                                                                           const gchar            *attribute,
378                                                                           gint                    column);
379 static void                 gtk_icon_view_cell_layout_clear              (GtkCellLayout          *layout);
380 static void                 gtk_icon_view_cell_layout_clear_attributes   (GtkCellLayout          *layout,
381                                                                           GtkCellRenderer        *renderer);
382 static void                 gtk_icon_view_cell_layout_set_cell_data_func (GtkCellLayout          *layout,
383                                                                           GtkCellRenderer        *cell,
384                                                                           GtkCellLayoutDataFunc   func,
385                                                                           gpointer                func_data,
386                                                                           GDestroyNotify          destroy);
387 static void                 gtk_icon_view_cell_layout_reorder            (GtkCellLayout          *layout,
388                                                                           GtkCellRenderer        *cell,
389                                                                           gint                    position);
390 static GList *              gtk_icon_view_cell_layout_get_cells          (GtkCellLayout          *layout);
391
392 static void                 gtk_icon_view_item_activate_cell             (GtkIconView            *icon_view,
393                                                                           GtkIconViewItem        *item,
394                                                                           GtkIconViewCellInfo    *cell_info,
395                                                                           GdkEvent               *event);
396 static void                 gtk_icon_view_put                            (GtkIconView            *icon_view,
397                                                                           GtkWidget              *widget,
398                                                                           GtkIconViewItem        *item,
399                                                                           gint                    cell);
400 static void                 gtk_icon_view_remove_widget                  (GtkCellEditable        *editable,
401                                                                           GtkIconView            *icon_view);
402 static void                 gtk_icon_view_start_editing                  (GtkIconView            *icon_view,
403                                                                           GtkIconViewItem        *item,
404                                                                           GtkIconViewCellInfo    *cell_info,
405                                                                           GdkEvent               *event);
406 static void                 gtk_icon_view_stop_editing                   (GtkIconView            *icon_view,
407                                                                           gboolean                cancel_editing);
408
409 /* Source side drag signals */
410 static void gtk_icon_view_drag_begin       (GtkWidget        *widget,
411                                             GdkDragContext   *context);
412 static void gtk_icon_view_drag_end         (GtkWidget        *widget,
413                                             GdkDragContext   *context);
414 static void gtk_icon_view_drag_data_get    (GtkWidget        *widget,
415                                             GdkDragContext   *context,
416                                             GtkSelectionData *selection_data,
417                                             guint             info,
418                                             guint             time);
419 static void gtk_icon_view_drag_data_delete (GtkWidget        *widget,
420                                             GdkDragContext   *context);
421
422 /* Target side drag signals */
423 static void     gtk_icon_view_drag_leave         (GtkWidget        *widget,
424                                                   GdkDragContext   *context,
425                                                   guint             time);
426 static gboolean gtk_icon_view_drag_motion        (GtkWidget        *widget,
427                                                   GdkDragContext   *context,
428                                                   gint              x,
429                                                   gint              y,
430                                                   guint             time);
431 static gboolean gtk_icon_view_drag_drop          (GtkWidget        *widget,
432                                                   GdkDragContext   *context,
433                                                   gint              x,
434                                                   gint              y,
435                                                   guint             time);
436 static void     gtk_icon_view_drag_data_received (GtkWidget        *widget,
437                                                   GdkDragContext   *context,
438                                                   gint              x,
439                                                   gint              y,
440                                                   GtkSelectionData *selection_data,
441                                                   guint             info,
442                                                   guint             time);
443 static gboolean gtk_icon_view_maybe_begin_drag   (GtkIconView             *icon_view,
444                                                   GdkEventMotion          *event);
445
446 static void     remove_scroll_timeout            (GtkIconView *icon_view);
447 static void     clear_dest_info                  (GtkIconView *icon_view);
448 static void     clear_source_info                (GtkIconView *icon_view);
449
450 static void     adjust_wrap_width                (GtkIconView     *icon_view,
451                                                   GtkIconViewItem *item);
452
453 /* GtkBuildable */
454 static GtkBuildableIface *parent_buildable_iface;
455 static void     gtk_icon_view_buildable_init             (GtkBuildableIface *iface);
456 static gboolean gtk_icon_view_buildable_custom_tag_start (GtkBuildable  *buildable,
457                                                           GtkBuilder    *builder,
458                                                           GObject       *child,
459                                                           const gchar   *tagname,
460                                                           GMarkupParser *parser,
461                                                           gpointer      *data);
462 static void     gtk_icon_view_buildable_custom_tag_end   (GtkBuildable  *buildable,
463                                                           GtkBuilder    *builder,
464                                                           GObject       *child,
465                                                           const gchar   *tagname,
466                                                           gpointer      *data);
467
468 static guint icon_view_signals[LAST_SIGNAL] = { 0 };
469
470 G_DEFINE_TYPE_WITH_CODE (GtkIconView, gtk_icon_view, GTK_TYPE_CONTAINER,
471                          G_IMPLEMENT_INTERFACE (GTK_TYPE_CELL_LAYOUT,
472                                                 gtk_icon_view_cell_layout_init)
473                          G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
474                                                 gtk_icon_view_buildable_init))
475
476 static void
477 gtk_icon_view_class_init (GtkIconViewClass *klass)
478 {
479   GObjectClass *gobject_class;
480   GtkObjectClass *object_class;
481   GtkWidgetClass *widget_class;
482   GtkContainerClass *container_class;
483   GtkBindingSet *binding_set;
484   
485   binding_set = gtk_binding_set_by_class (klass);
486
487   g_type_class_add_private (klass, sizeof (GtkIconViewPrivate));
488
489   gobject_class = (GObjectClass *) klass;
490   object_class = (GtkObjectClass *) klass;
491   widget_class = (GtkWidgetClass *) klass;
492   container_class = (GtkContainerClass *) klass;
493
494   gobject_class->finalize = gtk_icon_view_finalize;
495   gobject_class->set_property = gtk_icon_view_set_property;
496   gobject_class->get_property = gtk_icon_view_get_property;
497
498   object_class->destroy = gtk_icon_view_destroy;
499   
500   widget_class->realize = gtk_icon_view_realize;
501   widget_class->unrealize = gtk_icon_view_unrealize;
502   widget_class->style_set = gtk_icon_view_style_set;
503   widget_class->get_accessible = gtk_icon_view_get_accessible;
504   widget_class->size_request = gtk_icon_view_size_request;
505   widget_class->size_allocate = gtk_icon_view_size_allocate;
506   widget_class->expose_event = gtk_icon_view_expose;
507   widget_class->motion_notify_event = gtk_icon_view_motion;
508   widget_class->button_press_event = gtk_icon_view_button_press;
509   widget_class->button_release_event = gtk_icon_view_button_release;
510   widget_class->key_press_event = gtk_icon_view_key_press;
511   widget_class->key_release_event = gtk_icon_view_key_release;
512   widget_class->drag_begin = gtk_icon_view_drag_begin;
513   widget_class->drag_end = gtk_icon_view_drag_end;
514   widget_class->drag_data_get = gtk_icon_view_drag_data_get;
515   widget_class->drag_data_delete = gtk_icon_view_drag_data_delete;
516   widget_class->drag_leave = gtk_icon_view_drag_leave;
517   widget_class->drag_motion = gtk_icon_view_drag_motion;
518   widget_class->drag_drop = gtk_icon_view_drag_drop;
519   widget_class->drag_data_received = gtk_icon_view_drag_data_received;
520   widget_class->state_changed = gtk_icon_view_state_changed;
521
522   container_class->remove = gtk_icon_view_remove;
523   container_class->forall = gtk_icon_view_forall;
524
525   klass->set_scroll_adjustments = gtk_icon_view_set_adjustments;
526   klass->select_all = gtk_icon_view_real_select_all;
527   klass->unselect_all = gtk_icon_view_real_unselect_all;
528   klass->select_cursor_item = gtk_icon_view_real_select_cursor_item;
529   klass->toggle_cursor_item = gtk_icon_view_real_toggle_cursor_item;
530   klass->activate_cursor_item = gtk_icon_view_real_activate_cursor_item;  
531   klass->move_cursor = gtk_icon_view_real_move_cursor;
532   
533   /* Properties */
534   /**
535    * GtkIconView:selection-mode:
536    * 
537    * The ::selection-mode property specifies the selection mode of
538    * icon view. If the mode is #GTK_SELECTION_MULTIPLE, rubberband selection
539    * is enabled, for the other modes, only keyboard selection is possible.
540    *
541    * Since: 2.6
542    */
543   g_object_class_install_property (gobject_class,
544                                    PROP_SELECTION_MODE,
545                                    g_param_spec_enum ("selection-mode",
546                                                       P_("Selection mode"),
547                                                       P_("The selection mode"),
548                                                       GTK_TYPE_SELECTION_MODE,
549                                                       GTK_SELECTION_SINGLE,
550                                                       GTK_PARAM_READWRITE));
551
552   /**
553    * GtkIconView:pixbuf-column:
554    *
555    * The ::pixbuf-column property contains the number of the model column
556    * containing the pixbufs which are displayed. The pixbuf column must be 
557    * of type #GDK_TYPE_PIXBUF. Setting this property to -1 turns off the
558    * display of pixbufs.
559    *
560    * Since: 2.6
561    */
562   g_object_class_install_property (gobject_class,
563                                    PROP_PIXBUF_COLUMN,
564                                    g_param_spec_int ("pixbuf-column",
565                                                      P_("Pixbuf column"),
566                                                      P_("Model column used to retrieve the icon pixbuf from"),
567                                                      -1, G_MAXINT, -1,
568                                                      GTK_PARAM_READWRITE));
569
570   /**
571    * GtkIconView:text-column:
572    *
573    * The ::text-column property contains the number of the model column
574    * containing the texts which are displayed. The text column must be 
575    * of type #G_TYPE_STRING. If this property and the :markup-column 
576    * property are both set to -1, no texts are displayed.   
577    *
578    * Since: 2.6
579    */
580   g_object_class_install_property (gobject_class,
581                                    PROP_TEXT_COLUMN,
582                                    g_param_spec_int ("text-column",
583                                                      P_("Text column"),
584                                                      P_("Model column used to retrieve the text from"),
585                                                      -1, G_MAXINT, -1,
586                                                      GTK_PARAM_READWRITE));
587
588   
589   /**
590    * GtkIconView:markup-column:
591    *
592    * The ::markup-column property contains the number of the model column
593    * containing markup information to be displayed. The markup column must be 
594    * of type #G_TYPE_STRING. If this property and the :text-column property 
595    * are both set to column numbers, it overrides the text column.
596    * If both are set to -1, no texts are displayed.   
597    *
598    * Since: 2.6
599    */
600   g_object_class_install_property (gobject_class,
601                                    PROP_MARKUP_COLUMN,
602                                    g_param_spec_int ("markup-column",
603                                                      P_("Markup column"),
604                                                      P_("Model column used to retrieve the text if using Pango markup"),
605                                                      -1, G_MAXINT, -1,
606                                                      GTK_PARAM_READWRITE));
607   
608   g_object_class_install_property (gobject_class,
609                                    PROP_MODEL,
610                                    g_param_spec_object ("model",
611                                                         P_("Icon View Model"),
612                                                         P_("The model for the icon view"),
613                                                         GTK_TYPE_TREE_MODEL,
614                                                         GTK_PARAM_READWRITE));
615   
616   /**
617    * GtkIconView:columns:
618    *
619    * The columns property contains the number of the columns in which the
620    * items should be displayed. If it is -1, the number of columns will
621    * be chosen automatically to fill the available area.
622    *
623    * Since: 2.6
624    */
625   g_object_class_install_property (gobject_class,
626                                    PROP_COLUMNS,
627                                    g_param_spec_int ("columns",
628                                                      P_("Number of columns"),
629                                                      P_("Number of columns to display"),
630                                                      -1, G_MAXINT, -1,
631                                                      GTK_PARAM_READWRITE));
632   
633
634   /**
635    * GtkIconView:item-width:
636    *
637    * The item-width property specifies the width to use for each item. 
638    * If it is set to -1, the icon view will automatically determine a 
639    * suitable item size.
640    *
641    * Since: 2.6
642    */
643   g_object_class_install_property (gobject_class,
644                                    PROP_ITEM_WIDTH,
645                                    g_param_spec_int ("item-width",
646                                                      P_("Width for each item"),
647                                                      P_("The width used for each item"),
648                                                      -1, G_MAXINT, -1,
649                                                      GTK_PARAM_READWRITE));  
650
651   /**
652    * GtkIconView:spacing:
653    *
654    * The spacing property specifies the space which is inserted between
655    * the cells (i.e. the icon and the text) of an item.
656    *
657    * Since: 2.6
658    */
659   g_object_class_install_property (gobject_class,
660                                    PROP_SPACING,
661                                    g_param_spec_int ("spacing",
662                                                      P_("Spacing"),
663                                                      P_("Space which is inserted between cells of an item"),
664                                                      0, G_MAXINT, 0,
665                                                      GTK_PARAM_READWRITE));
666
667   /**
668    * GtkIconView:row-spacing:
669    *
670    * The row-spacing property specifies the space which is inserted between
671    * the rows of the icon view.
672    *
673    * Since: 2.6
674    */
675   g_object_class_install_property (gobject_class,
676                                    PROP_ROW_SPACING,
677                                    g_param_spec_int ("row-spacing",
678                                                      P_("Row Spacing"),
679                                                      P_("Space which is inserted between grid rows"),
680                                                      0, G_MAXINT, 6,
681                                                      GTK_PARAM_READWRITE));
682
683   /**
684    * GtkIconView:column-spacing:
685    *
686    * The column-spacing property specifies the space which is inserted between
687    * the columns of the icon view.
688    *
689    * Since: 2.6
690    */
691   g_object_class_install_property (gobject_class,
692                                    PROP_COLUMN_SPACING,
693                                    g_param_spec_int ("column-spacing",
694                                                      P_("Column Spacing"),
695                                                      P_("Space which is inserted between grid columns"),
696                                                      0, G_MAXINT, 6,
697                                                      GTK_PARAM_READWRITE));
698
699   /**
700    * GtkIconView:margin:
701    *
702    * The margin property specifies the space which is inserted 
703    * at the edges of the icon view.
704    *
705    * Since: 2.6
706    */
707   g_object_class_install_property (gobject_class,
708                                    PROP_MARGIN,
709                                    g_param_spec_int ("margin",
710                                                      P_("Margin"),
711                                                      P_("Space which is inserted at the edges of the icon view"),
712                                                      0, G_MAXINT, 6,
713                                                      GTK_PARAM_READWRITE));
714
715
716   /**
717    * GtkIconView:orientation:
718    *
719    * The orientation property specifies how the cells (i.e. the icon and 
720    * the text) of the item are positioned relative to each other.
721    *
722    * Since: 2.6
723    */
724   g_object_class_install_property (gobject_class,
725                                    PROP_ORIENTATION,
726                                    g_param_spec_enum ("orientation",
727                                                       P_("Orientation"),
728                                                       P_("How the text and icon of each item are positioned relative to each other"),
729                                                       GTK_TYPE_ORIENTATION,
730                                                       GTK_ORIENTATION_VERTICAL,
731                                                       GTK_PARAM_READWRITE));
732
733   /**
734    * GtkIconView:reorderable:
735    *
736    * The reorderable property specifies if the items can be reordered
737    * by DND.
738    *
739    * Since: 2.8
740    */
741   g_object_class_install_property (gobject_class,
742                                    PROP_REORDERABLE,
743                                    g_param_spec_boolean ("reorderable",
744                                                          P_("Reorderable"),
745                                                          P_("View is reorderable"),
746                                                          FALSE,
747                                                          G_PARAM_READWRITE));
748
749   /* Style properties */
750   gtk_widget_class_install_style_property (widget_class,
751                                            g_param_spec_boxed ("selection-box-color",
752                                                                P_("Selection Box Color"),
753                                                                P_("Color of the selection box"),
754                                                                GDK_TYPE_COLOR,
755                                                                GTK_PARAM_READABLE));
756
757   gtk_widget_class_install_style_property (widget_class,
758                                            g_param_spec_uchar ("selection-box-alpha",
759                                                                P_("Selection Box Alpha"),
760                                                                P_("Opacity of the selection box"),
761                                                                0, 0xff,
762                                                                0x40,
763                                                                GTK_PARAM_READABLE));
764
765   /* Signals */
766   widget_class->set_scroll_adjustments_signal =
767     g_signal_new (I_("set_scroll_adjustments"),
768                   G_TYPE_FROM_CLASS (gobject_class),
769                   G_SIGNAL_RUN_LAST,
770                   G_STRUCT_OFFSET (GtkIconViewClass, set_scroll_adjustments),
771                   NULL, NULL, 
772                   _gtk_marshal_VOID__OBJECT_OBJECT,
773                   G_TYPE_NONE, 2,
774                   GTK_TYPE_ADJUSTMENT, GTK_TYPE_ADJUSTMENT);
775
776   icon_view_signals[ITEM_ACTIVATED] =
777     g_signal_new (I_("item_activated"),
778                   G_TYPE_FROM_CLASS (gobject_class),
779                   G_SIGNAL_RUN_LAST,
780                   G_STRUCT_OFFSET (GtkIconViewClass, item_activated),
781                   NULL, NULL,
782                   g_cclosure_marshal_VOID__BOXED,
783                   G_TYPE_NONE, 1,
784                   GTK_TYPE_TREE_PATH);
785
786   icon_view_signals[SELECTION_CHANGED] =
787     g_signal_new (I_("selection-changed"),
788                   G_TYPE_FROM_CLASS (gobject_class),
789                   G_SIGNAL_RUN_FIRST,
790                   G_STRUCT_OFFSET (GtkIconViewClass, selection_changed),
791                   NULL, NULL,
792                   g_cclosure_marshal_VOID__VOID,
793                   G_TYPE_NONE, 0);
794   
795   icon_view_signals[SELECT_ALL] =
796     g_signal_new (I_("select_all"),
797                   G_TYPE_FROM_CLASS (gobject_class),
798                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
799                   G_STRUCT_OFFSET (GtkIconViewClass, select_all),
800                   NULL, NULL,
801                   g_cclosure_marshal_VOID__VOID,
802                   G_TYPE_NONE, 0);
803   
804   icon_view_signals[UNSELECT_ALL] =
805     g_signal_new (I_("unselect_all"),
806                   G_TYPE_FROM_CLASS (gobject_class),
807                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
808                   G_STRUCT_OFFSET (GtkIconViewClass, unselect_all),
809                   NULL, NULL,
810                   g_cclosure_marshal_VOID__VOID,
811                   G_TYPE_NONE, 0);
812
813   icon_view_signals[SELECT_CURSOR_ITEM] =
814     g_signal_new (I_("select_cursor_item"),
815                   G_TYPE_FROM_CLASS (gobject_class),
816                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
817                   G_STRUCT_OFFSET (GtkIconViewClass, select_cursor_item),
818                   NULL, NULL,
819                   g_cclosure_marshal_VOID__VOID,
820                   G_TYPE_NONE, 0);
821
822   icon_view_signals[TOGGLE_CURSOR_ITEM] =
823     g_signal_new (I_("toggle_cursor_item"),
824                   G_TYPE_FROM_CLASS (gobject_class),
825                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
826                   G_STRUCT_OFFSET (GtkIconViewClass, toggle_cursor_item),
827                   NULL, NULL,
828                   g_cclosure_marshal_VOID__VOID,
829                   G_TYPE_NONE, 0);
830
831   icon_view_signals[ACTIVATE_CURSOR_ITEM] =
832     g_signal_new (I_("activate_cursor_item"),
833                   G_TYPE_FROM_CLASS (gobject_class),
834                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
835                   G_STRUCT_OFFSET (GtkIconViewClass, activate_cursor_item),
836                   NULL, NULL,
837                   _gtk_marshal_BOOLEAN__VOID,
838                   G_TYPE_BOOLEAN, 0);
839   
840   icon_view_signals[MOVE_CURSOR] =
841     g_signal_new (I_("move_cursor"),
842                   G_TYPE_FROM_CLASS (gobject_class),
843                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
844                   G_STRUCT_OFFSET (GtkIconViewClass, move_cursor),
845                   NULL, NULL,
846                   _gtk_marshal_BOOLEAN__ENUM_INT,
847                   G_TYPE_BOOLEAN, 2,
848                   GTK_TYPE_MOVEMENT_STEP,
849                   G_TYPE_INT);
850
851   /* Key bindings */
852   gtk_binding_entry_add_signal (binding_set, GDK_a, GDK_CONTROL_MASK, 
853                                 "select_all", 0);
854   gtk_binding_entry_add_signal (binding_set, GDK_a, GDK_CONTROL_MASK | GDK_SHIFT_MASK, 
855                                 "unselect_all", 0);
856   gtk_binding_entry_add_signal (binding_set, GDK_space, GDK_CONTROL_MASK, 
857                                 "toggle_cursor_item", 0);
858
859   gtk_binding_entry_add_signal (binding_set, GDK_space, 0, 
860                                 "activate_cursor_item", 0);
861   gtk_binding_entry_add_signal (binding_set, GDK_Return, 0, 
862                                 "activate_cursor_item", 0);
863   gtk_binding_entry_add_signal (binding_set, GDK_ISO_Enter, 0, 
864                                 "activate_cursor_item", 0);
865   gtk_binding_entry_add_signal (binding_set, GDK_KP_Enter, 0, 
866                                 "activate_cursor_item", 0);
867
868   gtk_icon_view_add_move_binding (binding_set, GDK_Up, 0,
869                                   GTK_MOVEMENT_DISPLAY_LINES, -1);
870   gtk_icon_view_add_move_binding (binding_set, GDK_KP_Up, 0,
871                                   GTK_MOVEMENT_DISPLAY_LINES, -1);
872
873   gtk_icon_view_add_move_binding (binding_set, GDK_Down, 0,
874                                   GTK_MOVEMENT_DISPLAY_LINES, 1);
875   gtk_icon_view_add_move_binding (binding_set, GDK_KP_Down, 0,
876                                   GTK_MOVEMENT_DISPLAY_LINES, 1);
877
878   gtk_icon_view_add_move_binding (binding_set, GDK_p, GDK_CONTROL_MASK,
879                                   GTK_MOVEMENT_DISPLAY_LINES, -1);
880
881   gtk_icon_view_add_move_binding (binding_set, GDK_n, GDK_CONTROL_MASK,
882                                   GTK_MOVEMENT_DISPLAY_LINES, 1);
883
884   gtk_icon_view_add_move_binding (binding_set, GDK_Home, 0,
885                                   GTK_MOVEMENT_BUFFER_ENDS, -1);
886   gtk_icon_view_add_move_binding (binding_set, GDK_KP_Home, 0,
887                                   GTK_MOVEMENT_BUFFER_ENDS, -1);
888
889   gtk_icon_view_add_move_binding (binding_set, GDK_End, 0,
890                                   GTK_MOVEMENT_BUFFER_ENDS, 1);
891   gtk_icon_view_add_move_binding (binding_set, GDK_KP_End, 0,
892                                   GTK_MOVEMENT_BUFFER_ENDS, 1);
893
894   gtk_icon_view_add_move_binding (binding_set, GDK_Page_Up, 0,
895                                   GTK_MOVEMENT_PAGES, -1);
896   gtk_icon_view_add_move_binding (binding_set, GDK_KP_Page_Up, 0,
897                                   GTK_MOVEMENT_PAGES, -1);
898
899   gtk_icon_view_add_move_binding (binding_set, GDK_Page_Down, 0,
900                                   GTK_MOVEMENT_PAGES, 1);
901   gtk_icon_view_add_move_binding (binding_set, GDK_KP_Page_Down, 0,
902                                   GTK_MOVEMENT_PAGES, 1);
903
904   gtk_icon_view_add_move_binding (binding_set, GDK_Right, 0, 
905                                   GTK_MOVEMENT_VISUAL_POSITIONS, 1);
906   gtk_icon_view_add_move_binding (binding_set, GDK_Left, 0, 
907                                   GTK_MOVEMENT_VISUAL_POSITIONS, -1);
908
909   gtk_icon_view_add_move_binding (binding_set, GDK_KP_Right, 0, 
910                                   GTK_MOVEMENT_VISUAL_POSITIONS, 1);
911   gtk_icon_view_add_move_binding (binding_set, GDK_KP_Left, 0, 
912                                   GTK_MOVEMENT_VISUAL_POSITIONS, -1);
913 }
914
915 static void
916 gtk_icon_view_buildable_init (GtkBuildableIface *iface)
917 {
918   parent_buildable_iface = g_type_interface_peek_parent (iface);
919   iface->add_child = _gtk_cell_layout_buildable_add_child;
920   iface->custom_tag_start = gtk_icon_view_buildable_custom_tag_start;
921   iface->custom_tag_end = gtk_icon_view_buildable_custom_tag_end;
922 }
923
924 static void
925 gtk_icon_view_cell_layout_init (GtkCellLayoutIface *iface)
926 {
927   iface->pack_start = gtk_icon_view_cell_layout_pack_start;
928   iface->pack_end = gtk_icon_view_cell_layout_pack_end;
929   iface->clear = gtk_icon_view_cell_layout_clear;
930   iface->add_attribute = gtk_icon_view_cell_layout_add_attribute;
931   iface->set_cell_data_func = gtk_icon_view_cell_layout_set_cell_data_func;
932   iface->clear_attributes = gtk_icon_view_cell_layout_clear_attributes;
933   iface->reorder = gtk_icon_view_cell_layout_reorder;
934   iface->get_cells = gtk_icon_view_cell_layout_get_cells;
935 }
936
937 static void
938 gtk_icon_view_init (GtkIconView *icon_view)
939 {
940   icon_view->priv = GTK_ICON_VIEW_GET_PRIVATE (icon_view);
941   
942   icon_view->priv->width = 0;
943   icon_view->priv->height = 0;
944   icon_view->priv->selection_mode = GTK_SELECTION_SINGLE;
945   icon_view->priv->pressed_button = -1;
946   icon_view->priv->press_start_x = -1;
947   icon_view->priv->press_start_y = -1;
948   icon_view->priv->text_column = -1;
949   icon_view->priv->markup_column = -1;  
950   icon_view->priv->pixbuf_column = -1;
951   icon_view->priv->text_cell = -1;
952   icon_view->priv->pixbuf_cell = -1;  
953
954   GTK_WIDGET_SET_FLAGS (icon_view, GTK_CAN_FOCUS);
955   
956   gtk_icon_view_set_adjustments (icon_view, NULL, NULL);
957
958   icon_view->priv->cell_list = NULL;
959   icon_view->priv->n_cells = 0;
960   icon_view->priv->cursor_cell = -1;
961
962   icon_view->priv->orientation = GTK_ORIENTATION_VERTICAL;
963
964   icon_view->priv->columns = -1;
965   icon_view->priv->item_width = -1;
966   icon_view->priv->spacing = 0;
967   icon_view->priv->row_spacing = 6;
968   icon_view->priv->column_spacing = 6;
969   icon_view->priv->margin = 6;
970 }
971
972 static void
973 gtk_icon_view_destroy (GtkObject *object)
974 {
975   GtkIconView *icon_view;
976
977   icon_view = GTK_ICON_VIEW (object);
978   
979   gtk_icon_view_stop_editing (icon_view, TRUE);
980
981   gtk_icon_view_set_model (icon_view, NULL);
982   
983   if (icon_view->priv->layout_idle_id != 0)
984     {
985       g_source_remove (icon_view->priv->layout_idle_id);
986       icon_view->priv->layout_idle_id = 0;
987     }
988
989   if (icon_view->priv->scroll_to_path != NULL)
990     {
991       gtk_tree_row_reference_free (icon_view->priv->scroll_to_path);
992       icon_view->priv->scroll_to_path = NULL;
993     }
994
995   remove_scroll_timeout (icon_view);
996
997   if (icon_view->priv->hadjustment != NULL)
998     {
999       g_object_unref (icon_view->priv->hadjustment);
1000       icon_view->priv->hadjustment = NULL;
1001     }
1002
1003   if (icon_view->priv->vadjustment != NULL)
1004     {
1005       g_object_unref (icon_view->priv->vadjustment);
1006       icon_view->priv->vadjustment = NULL;
1007     }
1008   
1009   clear_dest_info (icon_view);
1010   clear_source_info (icon_view);
1011
1012   (* GTK_OBJECT_CLASS (gtk_icon_view_parent_class)->destroy) (object);
1013 }
1014
1015 /* GObject methods */
1016 static void
1017 gtk_icon_view_finalize (GObject *object)
1018 {
1019   gtk_icon_view_cell_layout_clear (GTK_CELL_LAYOUT (object));
1020
1021   (* G_OBJECT_CLASS (gtk_icon_view_parent_class)->finalize) (object);
1022 }
1023
1024
1025 static void
1026 gtk_icon_view_set_property (GObject      *object,
1027                             guint         prop_id,
1028                             const GValue *value,
1029                             GParamSpec   *pspec)
1030 {
1031   GtkIconView *icon_view;
1032
1033   icon_view = GTK_ICON_VIEW (object);
1034
1035   switch (prop_id)
1036     {
1037     case PROP_SELECTION_MODE:
1038       gtk_icon_view_set_selection_mode (icon_view, g_value_get_enum (value));
1039       break;
1040     case PROP_PIXBUF_COLUMN:
1041       gtk_icon_view_set_pixbuf_column (icon_view, g_value_get_int (value));
1042       break;
1043     case PROP_TEXT_COLUMN:
1044       gtk_icon_view_set_text_column (icon_view, g_value_get_int (value));
1045       break;
1046     case PROP_MARKUP_COLUMN:
1047       gtk_icon_view_set_markup_column (icon_view, g_value_get_int (value));
1048       break;
1049     case PROP_MODEL:
1050       gtk_icon_view_set_model (icon_view, g_value_get_object (value));
1051       break;
1052     case PROP_ORIENTATION:
1053       gtk_icon_view_set_orientation (icon_view, g_value_get_enum (value));
1054       break;
1055     case PROP_COLUMNS:
1056       gtk_icon_view_set_columns (icon_view, g_value_get_int (value));
1057       break;
1058     case PROP_ITEM_WIDTH:
1059       gtk_icon_view_set_item_width (icon_view, g_value_get_int (value));
1060       break;
1061     case PROP_SPACING:
1062       gtk_icon_view_set_spacing (icon_view, g_value_get_int (value));
1063       break;
1064     case PROP_ROW_SPACING:
1065       gtk_icon_view_set_row_spacing (icon_view, g_value_get_int (value));
1066       break;
1067     case PROP_COLUMN_SPACING:
1068       gtk_icon_view_set_column_spacing (icon_view, g_value_get_int (value));
1069       break;
1070     case PROP_MARGIN:
1071       gtk_icon_view_set_margin (icon_view, g_value_get_int (value));
1072       break;
1073     case PROP_REORDERABLE:
1074       gtk_icon_view_set_reorderable (icon_view, g_value_get_boolean (value));
1075       break;
1076       
1077     default:
1078       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1079       break;
1080     }
1081 }
1082
1083 static void
1084 gtk_icon_view_get_property (GObject      *object,
1085                             guint         prop_id,
1086                             GValue       *value,
1087                             GParamSpec   *pspec)
1088 {
1089   GtkIconView *icon_view;
1090
1091   icon_view = GTK_ICON_VIEW (object);
1092
1093   switch (prop_id)
1094     {
1095     case PROP_SELECTION_MODE:
1096       g_value_set_enum (value, icon_view->priv->selection_mode);
1097       break;
1098     case PROP_PIXBUF_COLUMN:
1099       g_value_set_int (value, icon_view->priv->pixbuf_column);
1100       break;
1101     case PROP_TEXT_COLUMN:
1102       g_value_set_int (value, icon_view->priv->text_column);
1103       break;
1104     case PROP_MARKUP_COLUMN:
1105       g_value_set_int (value, icon_view->priv->markup_column);
1106       break;
1107     case PROP_MODEL:
1108       g_value_set_object (value, icon_view->priv->model);
1109       break;
1110     case PROP_ORIENTATION:
1111       g_value_set_enum (value, icon_view->priv->orientation);
1112       break;
1113     case PROP_COLUMNS:
1114       g_value_set_int (value, icon_view->priv->columns);
1115       break;
1116     case PROP_ITEM_WIDTH:
1117       g_value_set_int (value, icon_view->priv->item_width);
1118       break;
1119     case PROP_SPACING:
1120       g_value_set_int (value, icon_view->priv->spacing);
1121       break;
1122     case PROP_ROW_SPACING:
1123       g_value_set_int (value, icon_view->priv->row_spacing);
1124       break;
1125     case PROP_COLUMN_SPACING:
1126       g_value_set_int (value, icon_view->priv->column_spacing);
1127       break;
1128     case PROP_MARGIN:
1129       g_value_set_int (value, icon_view->priv->margin);
1130       break;
1131     case PROP_REORDERABLE:
1132       g_value_set_boolean (value, icon_view->priv->reorderable);
1133       break;
1134
1135     default:
1136       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1137       break;
1138     }
1139 }
1140
1141 /* GtkWidget signals */
1142 static void
1143 gtk_icon_view_realize (GtkWidget *widget)
1144 {
1145   GtkIconView *icon_view;
1146   GdkWindowAttr attributes;
1147   gint attributes_mask;
1148   
1149   icon_view = GTK_ICON_VIEW (widget);
1150
1151   GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
1152
1153   /* Make the main, clipping window */
1154   attributes.window_type = GDK_WINDOW_CHILD;
1155   attributes.x = widget->allocation.x;
1156   attributes.y = widget->allocation.y;
1157   attributes.width = widget->allocation.width;
1158   attributes.height = widget->allocation.height;
1159   attributes.wclass = GDK_INPUT_OUTPUT;
1160   attributes.visual = gtk_widget_get_visual (widget);
1161   attributes.colormap = gtk_widget_get_colormap (widget);
1162   attributes.event_mask = GDK_VISIBILITY_NOTIFY_MASK;
1163
1164   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
1165
1166   widget->window = gdk_window_new (gtk_widget_get_parent_window (widget),
1167                                    &attributes, attributes_mask);
1168   gdk_window_set_back_pixmap (widget->window, NULL, FALSE);
1169   gdk_window_set_user_data (widget->window, widget);
1170
1171   /* Make the window for the icon view */
1172   attributes.x = 0;
1173   attributes.y = 0;
1174   attributes.width = MAX (icon_view->priv->width, widget->allocation.width);
1175   attributes.height = MAX (icon_view->priv->height, widget->allocation.height);
1176   attributes.event_mask = (GDK_EXPOSURE_MASK |
1177                            GDK_SCROLL_MASK |
1178                            GDK_POINTER_MOTION_MASK |
1179                            GDK_BUTTON_PRESS_MASK |
1180                            GDK_BUTTON_RELEASE_MASK |
1181                            GDK_KEY_PRESS_MASK |
1182                            GDK_KEY_RELEASE_MASK) |
1183     gtk_widget_get_events (widget);
1184   
1185   icon_view->priv->bin_window = gdk_window_new (widget->window,
1186                                                 &attributes, attributes_mask);
1187   gdk_window_set_user_data (icon_view->priv->bin_window, widget);
1188
1189   widget->style = gtk_style_attach (widget->style, widget->window);
1190   gdk_window_set_background (icon_view->priv->bin_window, &widget->style->base[widget->state]);
1191
1192   gdk_window_show (icon_view->priv->bin_window);
1193 }
1194
1195 static void
1196 gtk_icon_view_unrealize (GtkWidget *widget)
1197 {
1198   GtkIconView *icon_view;
1199
1200   icon_view = GTK_ICON_VIEW (widget);
1201
1202   gdk_window_set_user_data (icon_view->priv->bin_window, NULL);
1203   gdk_window_destroy (icon_view->priv->bin_window);
1204   icon_view->priv->bin_window = NULL;
1205
1206   /* GtkWidget::unrealize destroys children and widget->window */
1207   if (GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->unrealize)
1208     (* GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->unrealize) (widget);
1209 }
1210
1211 static void
1212 gtk_icon_view_state_changed (GtkWidget      *widget,
1213                              GtkStateType    previous_state)
1214 {
1215   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
1216
1217   if (GTK_WIDGET_REALIZED (widget))
1218     {
1219       gdk_window_set_background (widget->window, &widget->style->base[widget->state]);
1220       gdk_window_set_background (icon_view->priv->bin_window, &widget->style->base[widget->state]);
1221     }
1222
1223   gtk_widget_queue_draw (widget);
1224 }
1225
1226 static void
1227 gtk_icon_view_style_set (GtkWidget *widget,
1228                          GtkStyle *previous_style)
1229 {
1230   GtkIconView *icon_view;
1231
1232   g_return_if_fail (GTK_IS_ICON_VIEW (widget));
1233
1234   icon_view = GTK_ICON_VIEW (widget);
1235
1236   if (GTK_WIDGET_REALIZED (widget))
1237     {
1238       gdk_window_set_background (widget->window, &widget->style->base[widget->state]);
1239       gdk_window_set_background (icon_view->priv->bin_window, &widget->style->base[widget->state]);
1240     }
1241
1242   gtk_widget_queue_resize (widget);
1243 }
1244
1245 static void
1246 gtk_icon_view_size_request (GtkWidget      *widget,
1247                             GtkRequisition *requisition)
1248 {
1249   GtkIconView *icon_view;
1250   GList *tmp_list;
1251
1252   icon_view = GTK_ICON_VIEW (widget);
1253
1254   requisition->width = icon_view->priv->width;
1255   requisition->height = icon_view->priv->height;
1256
1257   tmp_list = icon_view->priv->children;
1258
1259   while (tmp_list)
1260     {
1261       GtkIconViewChild *child = tmp_list->data;
1262       GtkRequisition child_requisition;
1263
1264       tmp_list = tmp_list->next;
1265
1266       if (GTK_WIDGET_VISIBLE (child->widget))
1267         gtk_widget_size_request (child->widget, &child_requisition);
1268     }  
1269 }
1270
1271 static void
1272 gtk_icon_view_allocate_children (GtkIconView *icon_view)
1273 {
1274   GList *list;
1275
1276   for (list = icon_view->priv->children; list; list = list->next)
1277     {
1278       GtkIconViewChild *child = list->data;
1279       GtkAllocation allocation;
1280
1281       /* totally ignore our child's requisition */
1282       if (child->cell < 0)
1283         {
1284           allocation.x = child->item->x;
1285           allocation.y = child->item->y;
1286           allocation.width = child->item->width;
1287           allocation.height = child->item->height;
1288         }
1289       else
1290         {
1291           GdkRectangle *box = &child->item->box[child->cell];
1292
1293           allocation.x = box->x;
1294           allocation.y = box->y;
1295           allocation.width = box->width;
1296           allocation.height = box->height;
1297         }
1298
1299       gtk_widget_size_allocate (child->widget, &allocation);
1300     }
1301 }
1302
1303 static void
1304 gtk_icon_view_size_allocate (GtkWidget      *widget,
1305                              GtkAllocation  *allocation)
1306 {
1307   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
1308
1309   GtkAdjustment *hadjustment, *vadjustment;
1310
1311   widget->allocation = *allocation;
1312   
1313   if (GTK_WIDGET_REALIZED (widget))
1314     {
1315       gdk_window_move_resize (widget->window,
1316                               allocation->x, allocation->y,
1317                               allocation->width, allocation->height);
1318       gdk_window_resize (icon_view->priv->bin_window,
1319                          MAX (icon_view->priv->width, allocation->width),
1320                          MAX (icon_view->priv->height, allocation->height));
1321     }
1322
1323   gtk_icon_view_layout (icon_view);
1324   
1325   gtk_icon_view_allocate_children (icon_view);
1326
1327   hadjustment = icon_view->priv->hadjustment;
1328   vadjustment = icon_view->priv->vadjustment;
1329
1330   hadjustment->page_size = allocation->width;
1331   hadjustment->page_increment = allocation->width * 0.9;
1332   hadjustment->step_increment = allocation->width * 0.1;
1333   hadjustment->lower = 0;
1334   hadjustment->upper = MAX (allocation->width, icon_view->priv->width);
1335
1336   if (hadjustment->value > hadjustment->upper - hadjustment->page_size)
1337     gtk_adjustment_set_value (hadjustment, MAX (0, hadjustment->upper - hadjustment->page_size));
1338
1339   vadjustment->page_size = allocation->height;
1340   vadjustment->page_increment = allocation->height * 0.9;
1341   vadjustment->step_increment = allocation->height * 0.1;
1342   vadjustment->lower = 0;
1343   vadjustment->upper = MAX (allocation->height, icon_view->priv->height);
1344
1345   if (vadjustment->value > vadjustment->upper - vadjustment->page_size)
1346     gtk_adjustment_set_value (vadjustment, MAX (0, vadjustment->upper - vadjustment->page_size));
1347
1348   if (GTK_WIDGET_REALIZED (widget) &&
1349       icon_view->priv->scroll_to_path)
1350     {
1351       GtkTreePath *path;
1352       path = gtk_tree_row_reference_get_path (icon_view->priv->scroll_to_path);
1353       gtk_tree_row_reference_free (icon_view->priv->scroll_to_path);
1354       icon_view->priv->scroll_to_path = NULL;
1355
1356       gtk_icon_view_scroll_to_path (icon_view, path,
1357                                     icon_view->priv->scroll_to_use_align,
1358                                     icon_view->priv->scroll_to_row_align,
1359                                     icon_view->priv->scroll_to_col_align);
1360       gtk_tree_path_free (path);
1361     }
1362   else
1363     {
1364       gtk_adjustment_changed (hadjustment);
1365       gtk_adjustment_changed (vadjustment);
1366     }
1367 }
1368
1369 static gboolean
1370 gtk_icon_view_expose (GtkWidget *widget,
1371                       GdkEventExpose *expose)
1372 {
1373   GtkIconView *icon_view;
1374   GList *icons;
1375   cairo_t *cr;
1376   GtkTreePath *path;
1377   gint dest_index;
1378   GtkIconViewDropPosition dest_pos;
1379   GtkIconViewItem *dest_item = NULL;
1380
1381   icon_view = GTK_ICON_VIEW (widget);
1382
1383   if (expose->window != icon_view->priv->bin_window)
1384     return FALSE;
1385
1386   cr = gdk_cairo_create (icon_view->priv->bin_window);
1387   cairo_set_line_width (cr, 1.);
1388
1389   gtk_icon_view_get_drag_dest_item (icon_view, &path, &dest_pos);
1390
1391   if (path)
1392     {
1393       dest_index = gtk_tree_path_get_indices (path)[0];
1394       gtk_tree_path_free (path);
1395     }
1396   else
1397     dest_index = -1;
1398
1399   for (icons = icon_view->priv->items; icons; icons = icons->next) 
1400     {
1401       GtkIconViewItem *item = icons->data;
1402       GdkRectangle area;
1403       
1404       area.x = item->x;
1405       area.y = item->y;
1406       area.width = item->width;
1407       area.height = item->height;
1408         
1409       if (gdk_region_rect_in (expose->region, &area) == GDK_OVERLAP_RECTANGLE_OUT)
1410         continue;
1411       
1412       gtk_icon_view_paint_item (icon_view, cr, item, &expose->area, 
1413                                 icon_view->priv->bin_window,
1414                                 item->x, item->y, TRUE); 
1415  
1416       if (dest_index == item->index)
1417         dest_item = item;
1418     }
1419
1420   if (dest_item)
1421     {
1422       switch (dest_pos)
1423         {
1424         case GTK_ICON_VIEW_DROP_INTO:
1425           gtk_paint_focus (widget->style,
1426                            icon_view->priv->bin_window,
1427                            GTK_WIDGET_STATE (widget),
1428                            NULL,
1429                            widget,
1430                            "iconview-drop-indicator",
1431                            dest_item->x, dest_item->y,
1432                            dest_item->width, dest_item->height);
1433           break;
1434         case GTK_ICON_VIEW_DROP_ABOVE:
1435           gtk_paint_focus (widget->style,
1436                            icon_view->priv->bin_window,
1437                            GTK_WIDGET_STATE (widget),
1438                            NULL,
1439                            widget,
1440                            "iconview-drop-indicator",
1441                            dest_item->x, dest_item->y - 1,
1442                            dest_item->width, 2);
1443           break;
1444         case GTK_ICON_VIEW_DROP_LEFT:
1445           gtk_paint_focus (widget->style,
1446                            icon_view->priv->bin_window,
1447                            GTK_WIDGET_STATE (widget),
1448                            NULL,
1449                            widget,
1450                            "iconview-drop-indicator",
1451                            dest_item->x - 1, dest_item->y,
1452                            2, dest_item->height);
1453           break;
1454         case GTK_ICON_VIEW_DROP_BELOW:
1455           gtk_paint_focus (widget->style,
1456                            icon_view->priv->bin_window,
1457                            GTK_WIDGET_STATE (widget),
1458                            NULL,
1459                            widget,
1460                            "iconview-drop-indicator",
1461                            dest_item->x, dest_item->y + dest_item->height - 1,
1462                            dest_item->width, 2);
1463           break;
1464         case GTK_ICON_VIEW_DROP_RIGHT:
1465           gtk_paint_focus (widget->style,
1466                            icon_view->priv->bin_window,
1467                            GTK_WIDGET_STATE (widget),
1468                            NULL,
1469                            widget,
1470                            "iconview-drop-indicator",
1471                            dest_item->x + dest_item->width - 1, dest_item->y,
1472                            2, dest_item->height);
1473         case GTK_ICON_VIEW_NO_DROP: ;
1474           break;
1475         }
1476     }
1477   
1478   if (icon_view->priv->doing_rubberband)
1479     {
1480       GdkRectangle *rectangles;
1481       gint n_rectangles;
1482       
1483       gdk_region_get_rectangles (expose->region,
1484                                  &rectangles,
1485                                  &n_rectangles);
1486       
1487       while (n_rectangles--)
1488         gtk_icon_view_paint_rubberband (icon_view, cr, &rectangles[n_rectangles]);
1489
1490       g_free (rectangles);
1491     }
1492
1493   cairo_destroy (cr);
1494
1495   (* GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->expose_event) (widget, expose);
1496
1497   return TRUE;
1498 }
1499
1500 static gboolean
1501 rubberband_scroll_timeout (gpointer data)
1502 {
1503   GtkIconView *icon_view;
1504   gdouble value;
1505
1506   icon_view = data;
1507
1508   value = MIN (icon_view->priv->vadjustment->value +
1509                icon_view->priv->scroll_value_diff,
1510                icon_view->priv->vadjustment->upper -
1511                icon_view->priv->vadjustment->page_size);
1512
1513   gtk_adjustment_set_value (icon_view->priv->vadjustment, value);
1514
1515   gtk_icon_view_update_rubberband (icon_view);
1516   
1517   return TRUE;
1518 }
1519
1520 static gboolean
1521 gtk_icon_view_motion (GtkWidget      *widget,
1522                       GdkEventMotion *event)
1523 {
1524   GtkIconView *icon_view;
1525   gint abs_y;
1526   
1527   icon_view = GTK_ICON_VIEW (widget);
1528
1529   gtk_icon_view_maybe_begin_drag (icon_view, event);
1530
1531   if (icon_view->priv->doing_rubberband)
1532     {
1533       gtk_icon_view_update_rubberband (widget);
1534       
1535       abs_y = event->y - icon_view->priv->height *
1536         (icon_view->priv->vadjustment->value /
1537          (icon_view->priv->vadjustment->upper -
1538           icon_view->priv->vadjustment->lower));
1539
1540       if (abs_y < 0 || abs_y > widget->allocation.height)
1541         {
1542           if (abs_y < 0)
1543             icon_view->priv->scroll_value_diff = abs_y;
1544           else
1545             icon_view->priv->scroll_value_diff = abs_y - widget->allocation.height;
1546
1547           icon_view->priv->event_last_x = event->x;
1548           icon_view->priv->event_last_y = event->y;
1549
1550           if (icon_view->priv->scroll_timeout_id == 0)
1551             icon_view->priv->scroll_timeout_id = gdk_threads_add_timeout (30, rubberband_scroll_timeout, 
1552                                                                 icon_view);
1553         }
1554       else 
1555         remove_scroll_timeout (icon_view);
1556     }
1557   
1558   return TRUE;
1559 }
1560
1561 static void
1562 gtk_icon_view_remove (GtkContainer *container,
1563                       GtkWidget    *widget)
1564 {
1565   GtkIconView *icon_view;
1566   GtkIconViewChild *child = NULL;
1567   GList *tmp_list;
1568
1569   icon_view = GTK_ICON_VIEW (container);
1570   
1571   tmp_list = icon_view->priv->children;
1572   while (tmp_list)
1573     {
1574       child = tmp_list->data;
1575       if (child->widget == widget)
1576         {
1577           gtk_widget_unparent (widget);
1578
1579           icon_view->priv->children = g_list_remove_link (icon_view->priv->children, tmp_list);
1580           g_list_free_1 (tmp_list);
1581           g_free (child);
1582           return;
1583         }
1584
1585       tmp_list = tmp_list->next;
1586     }
1587 }
1588
1589 static void
1590 gtk_icon_view_forall (GtkContainer *container,
1591                       gboolean      include_internals,
1592                       GtkCallback   callback,
1593                       gpointer      callback_data)
1594 {
1595   GtkIconView *icon_view;
1596   GtkIconViewChild *child = NULL;
1597   GList *tmp_list;
1598
1599   icon_view = GTK_ICON_VIEW (container);
1600
1601   tmp_list = icon_view->priv->children;
1602   while (tmp_list)
1603     {
1604       child = tmp_list->data;
1605       tmp_list = tmp_list->next;
1606
1607       (* callback) (child->widget, callback_data);
1608     }
1609 }
1610
1611 static void
1612 gtk_icon_view_item_activate_cell (GtkIconView         *icon_view, 
1613                                   GtkIconViewItem     *item, 
1614                                   GtkIconViewCellInfo *info,
1615                                   GdkEvent            *event)
1616 {
1617   GtkTreePath *path;  
1618   gchar *path_string;
1619   GdkRectangle cell_area;
1620   gboolean visible, mode;
1621
1622   gtk_icon_view_set_cell_data (icon_view, item);
1623
1624   g_object_get (info->cell,
1625                 "visible", &visible,
1626                 "mode", &mode,
1627                 NULL);
1628
1629   if (visible && mode == GTK_CELL_RENDERER_MODE_ACTIVATABLE)
1630     {
1631       gtk_icon_view_get_cell_area (icon_view, item, info, &cell_area);
1632
1633       path = gtk_tree_path_new_from_indices (item->index, -1);
1634       path_string = gtk_tree_path_to_string (path);
1635       gtk_tree_path_free (path);
1636
1637       gtk_cell_renderer_activate (info->cell, 
1638                                   event, 
1639                                   GTK_WIDGET (icon_view),
1640                                   path_string, 
1641                                   &cell_area, 
1642                                   &cell_area, 
1643                                   0);
1644
1645       g_free (path_string);      
1646     }
1647 }
1648
1649 static void 
1650 gtk_icon_view_put (GtkIconView     *icon_view,
1651                    GtkWidget       *widget,
1652                    GtkIconViewItem *item,
1653                    gint             cell)
1654 {
1655   GtkIconViewChild *child;
1656   
1657   child = g_new (GtkIconViewChild, 1);
1658   
1659   child->widget = widget;
1660   child->item = item;
1661   child->cell = cell;
1662
1663   icon_view->priv->children = g_list_append (icon_view->priv->children, child);
1664
1665   if (GTK_WIDGET_REALIZED (icon_view))
1666     gtk_widget_set_parent_window (child->widget, icon_view->priv->bin_window);
1667   
1668   gtk_widget_set_parent (widget, GTK_WIDGET (icon_view));
1669 }
1670
1671 static void
1672 gtk_icon_view_remove_widget (GtkCellEditable *editable,
1673                              GtkIconView     *icon_view)
1674 {
1675   GList *l;
1676   GtkIconViewItem *item;
1677
1678   if (icon_view->priv->edited_item == NULL)
1679     return;
1680
1681   item = icon_view->priv->edited_item;
1682   icon_view->priv->edited_item = NULL;
1683   icon_view->priv->editable = NULL;
1684   for (l = icon_view->priv->cell_list; l; l = l->next)
1685     {
1686       GtkIconViewCellInfo *info = l->data;
1687
1688       info->editing = FALSE;
1689     }
1690
1691   if (GTK_WIDGET_HAS_FOCUS (editable))
1692     gtk_widget_grab_focus (GTK_WIDGET (icon_view));
1693   
1694   g_signal_handlers_disconnect_by_func (editable,
1695                                         gtk_icon_view_remove_widget,
1696                                         icon_view);
1697
1698   gtk_container_remove (GTK_CONTAINER (icon_view),
1699                         GTK_WIDGET (editable));  
1700
1701   gtk_icon_view_queue_draw_item (icon_view, item);
1702 }
1703
1704
1705 static void
1706 gtk_icon_view_start_editing (GtkIconView         *icon_view, 
1707                              GtkIconViewItem     *item, 
1708                              GtkIconViewCellInfo *info,
1709                              GdkEvent            *event)
1710 {
1711   GtkTreePath *path;  
1712   gchar *path_string;
1713   GdkRectangle cell_area;
1714   gboolean visible, mode;
1715   GtkCellEditable *editable;
1716
1717   gtk_icon_view_set_cell_data (icon_view, item);
1718
1719   g_object_get (info->cell,
1720                 "visible", &visible,
1721                 "mode", &mode,
1722                 NULL);
1723   if (visible && mode == GTK_CELL_RENDERER_MODE_EDITABLE)
1724     {
1725       gtk_icon_view_get_cell_area (icon_view, item, info, &cell_area);
1726
1727       path = gtk_tree_path_new_from_indices (item->index, -1);
1728       path_string = gtk_tree_path_to_string (path);
1729       gtk_tree_path_free (path);
1730
1731       editable = gtk_cell_renderer_start_editing (info->cell, 
1732                                                   event, 
1733                                                   GTK_WIDGET (icon_view),
1734                                                   path_string, 
1735                                                   &cell_area, 
1736                                                   &cell_area, 
1737                                                   0);
1738       g_free (path_string);      
1739
1740       /* FIXME ugly special case */ 
1741       if (GTK_IS_ENTRY (editable) || GTK_IS_COMBO_BOX (editable))
1742         g_object_set (editable, "has-frame", TRUE, NULL);
1743
1744       /* the rest corresponds to tree_view_real_start_editing... */
1745       icon_view->priv->edited_item = item;
1746       icon_view->priv->editable = editable;
1747       info->editing = TRUE;
1748
1749       gtk_icon_view_put (icon_view, GTK_WIDGET (editable), item, 
1750                          info->position);
1751       gtk_cell_editable_start_editing (GTK_CELL_EDITABLE (editable), 
1752                                        (GdkEvent *)event);
1753       gtk_widget_grab_focus (GTK_WIDGET (editable));
1754       g_signal_connect (editable, "remove_widget",
1755                         G_CALLBACK (gtk_icon_view_remove_widget), 
1756                         icon_view);
1757
1758     }
1759 }
1760
1761 static void
1762 gtk_icon_view_stop_editing (GtkIconView *icon_view,
1763                             gboolean     cancel_editing)
1764 {
1765   GtkCellRenderer *cell = NULL;
1766   GtkIconViewItem *item;
1767   GList *l;
1768
1769   if (icon_view->priv->edited_item == NULL)
1770     return;
1771
1772   /*
1773    * This is very evil. We need to do this, because
1774    * gtk_cell_editable_editing_done may trigger gtk_icon_view_row_changed
1775    * later on. If gtk_icon_view_row_changed notices
1776    * icon_view->priv->edited_item != NULL, it'll call
1777    * gtk_icon_view_stop_editing again. Bad things will happen then.
1778    *
1779    * Please read that again if you intend to modify anything here.
1780    */
1781
1782   item = icon_view->priv->edited_item;
1783   icon_view->priv->edited_item = NULL;
1784
1785   for (l = icon_view->priv->cell_list; l; l = l->next)
1786     {
1787       GtkIconViewCellInfo *info = l->data;
1788
1789       if (info->editing)
1790         {
1791           cell = info->cell;
1792           break;
1793         }
1794     }
1795
1796   if (cell == NULL)
1797     return;
1798
1799   gtk_cell_renderer_stop_editing (cell, cancel_editing);
1800   if (!cancel_editing)
1801     gtk_cell_editable_editing_done (icon_view->priv->editable);
1802
1803   icon_view->priv->edited_item = item;
1804
1805   gtk_cell_editable_remove_widget (icon_view->priv->editable);
1806 }
1807
1808 /**
1809  * gtk_icon_view_set_cursor:
1810  * @icon_view: A #GtkIconView
1811  * @path: A #GtkTreePath
1812  * @cell: One of the cell renderers of @icon_view, or %NULL
1813  * @start_editing: %TRUE if the specified cell should start being edited.
1814  *
1815  * Sets the current keyboard focus to be at @path, and selects it.  This is
1816  * useful when you want to focus the user's attention on a particular item.  
1817  * If @cell is not %NULL, then focus is given to the cell specified by 
1818  * it. Additionally, if @start_editing is %TRUE, then editing should be 
1819  * started in the specified cell.  
1820  *
1821  * This function is often followed by <literal>gtk_widget_grab_focus 
1822  * (icon_view)</literal> in order to give keyboard focus to the widget.  
1823  * Please note that editing can only happen when the widget is realized.
1824  *
1825  * Since: 2.8
1826  **/
1827 void
1828 gtk_icon_view_set_cursor (GtkIconView     *icon_view,
1829                           GtkTreePath     *path,
1830                           GtkCellRenderer *cell,
1831                           gboolean         start_editing)
1832 {
1833   GtkIconViewItem *item = NULL;
1834   GtkIconViewCellInfo *info =  NULL;
1835   GList *l;
1836   gint i, cell_pos;
1837
1838   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
1839   g_return_if_fail (path != NULL);
1840   g_return_if_fail (cell == NULL || GTK_IS_CELL_RENDERER (cell));
1841
1842   gtk_icon_view_stop_editing (icon_view, TRUE);
1843
1844   if (gtk_tree_path_get_depth (path) == 1)
1845     item = g_list_nth_data (icon_view->priv->items,
1846                             gtk_tree_path_get_indices(path)[0]);
1847   
1848   if (!item)
1849     return;
1850
1851   cell_pos = -1;
1852   for (l = icon_view->priv->cell_list, i = 0; l; l = l->next, i++)
1853     {
1854       info = l->data;
1855       
1856       if (info->cell == cell)
1857         {
1858           cell_pos = i;
1859           break;
1860         }
1861           
1862       info = NULL;
1863     }
1864   
1865   g_return_if_fail (cell == NULL || info != NULL);
1866
1867   gtk_icon_view_set_cursor_item (icon_view, item, cell_pos);
1868   gtk_icon_view_scroll_to_path (icon_view, path, FALSE, 0.0, 0.0);
1869   
1870   if (info && start_editing)
1871     gtk_icon_view_start_editing (icon_view, item, info, NULL);
1872 }
1873
1874 /**
1875  * gtk_icon_view_get_cursor:
1876  * @icon_view: A #GtkIconView
1877  * @path: Return location for the current cursor path, or %NULL
1878  * @cell: Return location the current focus cell, or %NULL
1879  *
1880  * Fills in @path and @cell with the current cursor path and cell. 
1881  * If the cursor isn't currently set, then *@path will be %NULL.  
1882  * If no cell currently has focus, then *@cell will be %NULL.
1883  *
1884  * The returned #GtkTreePath must be freed with gtk_tree_path_free().
1885  *
1886  * Return value: %TRUE if the cursor is set.
1887  *
1888  * Since: 2.8
1889  **/
1890 gboolean
1891 gtk_icon_view_get_cursor (GtkIconView      *icon_view,
1892                           GtkTreePath     **path,
1893                           GtkCellRenderer **cell)
1894 {
1895   GtkIconViewItem *item;
1896   GtkIconViewCellInfo *info;
1897
1898   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
1899
1900   item = icon_view->priv->cursor_item;
1901   if (icon_view->priv->cursor_cell < 0)
1902     info = NULL;
1903   else
1904     info = g_list_nth_data (icon_view->priv->cell_list, 
1905                             icon_view->priv->cursor_cell);
1906
1907   if (path != NULL)
1908     {
1909       if (item != NULL)
1910         *path = gtk_tree_path_new_from_indices (item->index, -1);
1911       else
1912         *path = NULL;
1913     }
1914
1915   if (cell != NULL)
1916     {
1917       if (info != NULL)
1918         *cell = info->cell;
1919       else 
1920         *cell = NULL;
1921     }
1922
1923   return (item != NULL);
1924 }
1925
1926 static gboolean
1927 gtk_icon_view_button_press (GtkWidget      *widget,
1928                             GdkEventButton *event)
1929 {
1930   GtkIconView *icon_view;
1931   GtkIconViewItem *item;
1932   GtkIconViewCellInfo *info = NULL;
1933   gboolean dirty = FALSE;
1934   GtkCellRendererMode mode;
1935   gint cursor_cell;
1936
1937   icon_view = GTK_ICON_VIEW (widget);
1938
1939   if (event->window != icon_view->priv->bin_window)
1940     return FALSE;
1941
1942   if (!GTK_WIDGET_HAS_FOCUS (widget))
1943     gtk_widget_grab_focus (widget);
1944
1945   if (event->button == 1 && event->type == GDK_BUTTON_PRESS)
1946     {
1947       item = gtk_icon_view_get_item_at_coords (icon_view, 
1948                                                event->x, event->y,
1949                                                TRUE,
1950                                                &info);      
1951       if (item != NULL)
1952         {
1953           g_object_get (info->cell, "mode", &mode, NULL);
1954           
1955           if (mode == GTK_CELL_RENDERER_MODE_ACTIVATABLE ||
1956               mode == GTK_CELL_RENDERER_MODE_EDITABLE)
1957             cursor_cell = g_list_index (icon_view->priv->cell_list, info);
1958           else
1959             cursor_cell = -1;
1960           
1961           gtk_icon_view_scroll_to_item (icon_view, item);
1962           
1963           if (icon_view->priv->selection_mode == GTK_SELECTION_NONE)
1964             {
1965               gtk_icon_view_set_cursor_item (icon_view, item, cursor_cell);
1966             }
1967           else if (icon_view->priv->selection_mode == GTK_SELECTION_MULTIPLE &&
1968                    (event->state & GDK_SHIFT_MASK))
1969             {
1970               gtk_icon_view_unselect_all_internal (icon_view);
1971
1972               gtk_icon_view_set_cursor_item (icon_view, item, cursor_cell);
1973               if (!icon_view->priv->anchor_item)
1974                 icon_view->priv->anchor_item = item;
1975               else 
1976                 gtk_icon_view_select_all_between (icon_view,
1977                                                   icon_view->priv->anchor_item,
1978                                                   item);
1979               dirty = TRUE;
1980             }
1981           else 
1982             {
1983               if ((icon_view->priv->selection_mode == GTK_SELECTION_MULTIPLE ||
1984                   ((icon_view->priv->selection_mode == GTK_SELECTION_SINGLE) && item->selected)) &&
1985                   (event->state & GDK_CONTROL_MASK))
1986                 {
1987                   item->selected = !item->selected;
1988                   gtk_icon_view_queue_draw_item (icon_view, item);
1989                   dirty = TRUE;
1990                 }
1991               else
1992                 {
1993                   if (!item->selected)
1994                     {
1995                       gtk_icon_view_unselect_all_internal (icon_view);
1996                       
1997                       item->selected = TRUE;
1998                       gtk_icon_view_queue_draw_item (icon_view, item);
1999                       dirty = TRUE;
2000                     }
2001                 }
2002               gtk_icon_view_set_cursor_item (icon_view, item, cursor_cell);
2003               icon_view->priv->anchor_item = item;
2004             }
2005
2006           /* Save press to possibly begin a drag */
2007           if (icon_view->priv->pressed_button < 0)
2008             {
2009               icon_view->priv->pressed_button = event->button;
2010               icon_view->priv->press_start_x = event->x;
2011               icon_view->priv->press_start_y = event->y;
2012             }
2013
2014           if (!icon_view->priv->last_single_clicked)
2015             icon_view->priv->last_single_clicked = item;
2016
2017           /* cancel the current editing, if it exists */
2018           gtk_icon_view_stop_editing (icon_view, TRUE);
2019           
2020           if (mode == GTK_CELL_RENDERER_MODE_ACTIVATABLE)
2021             gtk_icon_view_item_activate_cell (icon_view, item, info, 
2022                                               (GdkEvent *)event);
2023           else if (mode == GTK_CELL_RENDERER_MODE_EDITABLE)
2024             gtk_icon_view_start_editing (icon_view, item, info, 
2025                                          (GdkEvent *)event);      
2026         }
2027       else
2028         {
2029           if (icon_view->priv->selection_mode != GTK_SELECTION_BROWSE &&
2030               !(event->state & GDK_CONTROL_MASK))
2031             {
2032               dirty = gtk_icon_view_unselect_all_internal (icon_view);
2033             }
2034           
2035           if (icon_view->priv->selection_mode == GTK_SELECTION_MULTIPLE)
2036             gtk_icon_view_start_rubberbanding (icon_view, event->x, event->y);
2037         }
2038
2039     }
2040
2041   if (event->button == 1 && event->type == GDK_2BUTTON_PRESS)
2042     {
2043       item = gtk_icon_view_get_item_at_coords (icon_view,
2044                                                event->x, event->y,
2045                                                TRUE,
2046                                                NULL);
2047
2048       if (item && item == icon_view->priv->last_single_clicked)
2049         {
2050           GtkTreePath *path;
2051
2052           path = gtk_tree_path_new_from_indices (item->index, -1);
2053           gtk_icon_view_item_activated (icon_view, path);
2054           gtk_tree_path_free (path);
2055         }
2056
2057       icon_view->priv->last_single_clicked = NULL;
2058       icon_view->priv->pressed_button = -1;
2059     }
2060   
2061   if (dirty)
2062     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
2063
2064   return event->button == 1;
2065 }
2066
2067 static gboolean
2068 gtk_icon_view_button_release (GtkWidget      *widget,
2069                               GdkEventButton *event)
2070 {
2071   GtkIconView *icon_view;
2072
2073   icon_view = GTK_ICON_VIEW (widget);
2074   
2075   if (icon_view->priv->pressed_button == event->button)
2076     icon_view->priv->pressed_button = -1;
2077
2078   gtk_icon_view_stop_rubberbanding (icon_view);
2079
2080   remove_scroll_timeout (icon_view);
2081
2082   return TRUE;
2083 }
2084
2085 static gboolean
2086 gtk_icon_view_key_press (GtkWidget      *widget,
2087                          GdkEventKey    *event)
2088 {
2089   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
2090
2091   if (icon_view->priv->doing_rubberband)
2092     {
2093       if (event->keyval == GDK_Escape)
2094         gtk_icon_view_stop_rubberbanding (icon_view);
2095
2096       return TRUE;
2097     }
2098
2099   return (* GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->key_press_event) (widget, event);
2100 }
2101
2102 static gboolean
2103 gtk_icon_view_key_release (GtkWidget      *widget,
2104                            GdkEventKey    *event)
2105 {
2106   GtkIconView *icon_view = GTK_ICON_VIEW (widget);
2107
2108   if (icon_view->priv->doing_rubberband)
2109     return TRUE;
2110
2111   return (* GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->key_press_event) (widget, event);
2112 }
2113
2114 static void
2115 gtk_icon_view_update_rubberband (gpointer data)
2116 {
2117   GtkIconView *icon_view;
2118   gint x, y;
2119   GdkRectangle old_area;
2120   GdkRectangle new_area;
2121   GdkRectangle common;
2122   GdkRegion *invalid_region;
2123   
2124   icon_view = GTK_ICON_VIEW (data);
2125
2126   gdk_window_get_pointer (icon_view->priv->bin_window, &x, &y, NULL);
2127
2128   x = MAX (x, 0);
2129   y = MAX (y, 0);
2130
2131   old_area.x = MIN (icon_view->priv->rubberband_x1,
2132                     icon_view->priv->rubberband_x2);
2133   old_area.y = MIN (icon_view->priv->rubberband_y1,
2134                     icon_view->priv->rubberband_y2);
2135   old_area.width = ABS (icon_view->priv->rubberband_x2 -
2136                         icon_view->priv->rubberband_x1) + 1;
2137   old_area.height = ABS (icon_view->priv->rubberband_y2 -
2138                          icon_view->priv->rubberband_y1) + 1;
2139   
2140   new_area.x = MIN (icon_view->priv->rubberband_x1, x);
2141   new_area.y = MIN (icon_view->priv->rubberband_y1, y);
2142   new_area.width = ABS (x - icon_view->priv->rubberband_x1) + 1;
2143   new_area.height = ABS (y - icon_view->priv->rubberband_y1) + 1;
2144
2145   invalid_region = gdk_region_rectangle (&old_area);
2146   gdk_region_union_with_rect (invalid_region, &new_area);
2147
2148   gdk_rectangle_intersect (&old_area, &new_area, &common);
2149   if (common.width > 2 && common.height > 2)
2150     {
2151       GdkRegion *common_region;
2152
2153       /* make sure the border is invalidated */
2154       common.x += 1;
2155       common.y += 1;
2156       common.width -= 2;
2157       common.height -= 2;
2158       
2159       common_region = gdk_region_rectangle (&common);
2160
2161       gdk_region_subtract (invalid_region, common_region);
2162       gdk_region_destroy (common_region);
2163     }
2164   
2165   gdk_window_invalidate_region (icon_view->priv->bin_window, invalid_region, TRUE);
2166     
2167   gdk_region_destroy (invalid_region);
2168
2169   icon_view->priv->rubberband_x2 = x;
2170   icon_view->priv->rubberband_y2 = y;  
2171
2172   gtk_icon_view_update_rubberband_selection (icon_view);
2173 }
2174
2175 static void
2176 gtk_icon_view_start_rubberbanding (GtkIconView  *icon_view,
2177                                    gint          x,
2178                                    gint          y)
2179 {
2180   GList *items;
2181
2182   g_assert (!icon_view->priv->doing_rubberband);
2183
2184   for (items = icon_view->priv->items; items; items = items->next)
2185     {
2186       GtkIconViewItem *item = items->data;
2187
2188       item->selected_before_rubberbanding = item->selected;
2189     }
2190   
2191   icon_view->priv->rubberband_x1 = x;
2192   icon_view->priv->rubberband_y1 = y;
2193   icon_view->priv->rubberband_x2 = x;
2194   icon_view->priv->rubberband_y2 = y;
2195
2196   icon_view->priv->doing_rubberband = TRUE;
2197
2198   gtk_grab_add (GTK_WIDGET (icon_view));
2199 }
2200
2201 static void
2202 gtk_icon_view_stop_rubberbanding (GtkIconView *icon_view)
2203 {
2204   if (!icon_view->priv->doing_rubberband)
2205     return;
2206
2207   icon_view->priv->doing_rubberband = FALSE;
2208
2209   gtk_grab_remove (GTK_WIDGET (icon_view));
2210   
2211   gtk_widget_queue_draw (GTK_WIDGET (icon_view));
2212 }
2213
2214 static void
2215 gtk_icon_view_update_rubberband_selection (GtkIconView *icon_view)
2216 {
2217   GList *items;
2218   gint x, y, width, height;
2219   gboolean dirty = FALSE;
2220   
2221   x = MIN (icon_view->priv->rubberband_x1,
2222            icon_view->priv->rubberband_x2);
2223   y = MIN (icon_view->priv->rubberband_y1,
2224            icon_view->priv->rubberband_y2);
2225   width = ABS (icon_view->priv->rubberband_x1 - 
2226                icon_view->priv->rubberband_x2);
2227   height = ABS (icon_view->priv->rubberband_y1 - 
2228                 icon_view->priv->rubberband_y2);
2229   
2230   for (items = icon_view->priv->items; items; items = items->next)
2231     {
2232       GtkIconViewItem *item = items->data;
2233       gboolean is_in;
2234       gboolean selected;
2235       
2236       is_in = gtk_icon_view_item_hit_test (icon_view, item, 
2237                                            x, y, width, height);
2238
2239       selected = is_in ^ item->selected_before_rubberbanding;
2240
2241       if (item->selected != selected)
2242         {
2243           item->selected = selected;
2244           dirty = TRUE;
2245           gtk_icon_view_queue_draw_item (icon_view, item);
2246         }
2247     }
2248
2249   if (dirty)
2250     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
2251 }
2252
2253 static gboolean
2254 gtk_icon_view_item_hit_test (GtkIconView      *icon_view,
2255                              GtkIconViewItem  *item,
2256                              gint              x,
2257                              gint              y,
2258                              gint              width,
2259                              gint              height)
2260 {
2261   GList *l;
2262   GdkRectangle box;
2263  
2264   for (l = icon_view->priv->cell_list; l; l = l->next)
2265     {
2266       GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)l->data;
2267       
2268       if (!info->cell->visible)
2269         continue;
2270       
2271       gtk_icon_view_get_cell_box (icon_view, item, info, &box);
2272
2273       if (MIN (x + width, box.x + box.width) - MAX (x, box.x) > 0 &&
2274         MIN (y + height, box.y + box.height) - MAX (y, box.y) > 0)
2275         return TRUE;
2276     }
2277
2278   return FALSE;
2279 }
2280
2281 static gboolean
2282 gtk_icon_view_unselect_all_internal (GtkIconView  *icon_view)
2283 {
2284   gboolean dirty = FALSE;
2285   GList *items;
2286
2287   if (icon_view->priv->selection_mode == GTK_SELECTION_NONE)
2288     return FALSE;
2289
2290   for (items = icon_view->priv->items; items; items = items->next)
2291     {
2292       GtkIconViewItem *item = items->data;
2293
2294       if (item->selected)
2295         {
2296           item->selected = FALSE;
2297           dirty = TRUE;
2298           gtk_icon_view_queue_draw_item (icon_view, item);
2299         }
2300     }
2301
2302   return dirty;
2303 }
2304
2305
2306 /* GtkIconView signals */
2307 static void
2308 gtk_icon_view_set_adjustments (GtkIconView   *icon_view,
2309                                GtkAdjustment *hadj,
2310                                GtkAdjustment *vadj)
2311 {
2312   gboolean need_adjust = FALSE;
2313
2314   if (hadj)
2315     g_return_if_fail (GTK_IS_ADJUSTMENT (hadj));
2316   else
2317     hadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
2318   if (vadj)
2319     g_return_if_fail (GTK_IS_ADJUSTMENT (vadj));
2320   else
2321     vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
2322
2323   if (icon_view->priv->hadjustment && (icon_view->priv->hadjustment != hadj))
2324     {
2325       g_signal_handlers_disconnect_matched (icon_view->priv->hadjustment, G_SIGNAL_MATCH_DATA,
2326                                            0, 0, NULL, NULL, icon_view);
2327       g_object_unref (icon_view->priv->hadjustment);
2328     }
2329
2330   if (icon_view->priv->vadjustment && (icon_view->priv->vadjustment != vadj))
2331     {
2332       g_signal_handlers_disconnect_matched (icon_view->priv->vadjustment, G_SIGNAL_MATCH_DATA,
2333                                             0, 0, NULL, NULL, icon_view);
2334       g_object_unref (icon_view->priv->vadjustment);
2335     }
2336
2337   if (icon_view->priv->hadjustment != hadj)
2338     {
2339       icon_view->priv->hadjustment = hadj;
2340       g_object_ref_sink (icon_view->priv->hadjustment);
2341
2342       g_signal_connect (icon_view->priv->hadjustment, "value_changed",
2343                         G_CALLBACK (gtk_icon_view_adjustment_changed),
2344                         icon_view);
2345       need_adjust = TRUE;
2346     }
2347
2348   if (icon_view->priv->vadjustment != vadj)
2349     {
2350       icon_view->priv->vadjustment = vadj;
2351       g_object_ref_sink (icon_view->priv->vadjustment);
2352
2353       g_signal_connect (icon_view->priv->vadjustment, "value_changed",
2354                         G_CALLBACK (gtk_icon_view_adjustment_changed),
2355                         icon_view);
2356       need_adjust = TRUE;
2357     }
2358
2359   if (need_adjust)
2360     gtk_icon_view_adjustment_changed (NULL, icon_view);
2361 }
2362
2363 static void
2364 gtk_icon_view_real_select_all (GtkIconView *icon_view)
2365 {
2366   gtk_icon_view_select_all (icon_view);
2367 }
2368
2369 static void
2370 gtk_icon_view_real_unselect_all (GtkIconView *icon_view)
2371 {
2372   gtk_icon_view_unselect_all (icon_view);
2373 }
2374
2375 static void
2376 gtk_icon_view_real_select_cursor_item (GtkIconView *icon_view)
2377 {
2378   gtk_icon_view_unselect_all (icon_view);
2379   
2380   if (icon_view->priv->cursor_item != NULL)
2381     gtk_icon_view_select_item (icon_view, icon_view->priv->cursor_item);
2382 }
2383
2384 static gboolean
2385 gtk_icon_view_real_activate_cursor_item (GtkIconView *icon_view)
2386 {
2387   GtkTreePath *path;
2388   GtkCellRendererMode mode;
2389   GtkIconViewCellInfo *info = NULL;
2390   
2391   if (!icon_view->priv->cursor_item)
2392     return FALSE;
2393
2394   info = g_list_nth_data (icon_view->priv->cell_list, 
2395                           icon_view->priv->cursor_cell);
2396
2397   if (info) 
2398     {  
2399       g_object_get (info->cell, "mode", &mode, NULL);
2400
2401       if (mode == GTK_CELL_RENDERER_MODE_ACTIVATABLE)
2402         {
2403           gtk_icon_view_item_activate_cell (icon_view, 
2404                                             icon_view->priv->cursor_item, 
2405                                             info, NULL);
2406           return TRUE;
2407         }
2408       else if (mode == GTK_CELL_RENDERER_MODE_EDITABLE)
2409         {
2410           gtk_icon_view_start_editing (icon_view, 
2411                                        icon_view->priv->cursor_item, 
2412                                        info, NULL);
2413           return TRUE;
2414         }
2415     }
2416   
2417   path = gtk_tree_path_new_from_indices (icon_view->priv->cursor_item->index, -1);
2418   gtk_icon_view_item_activated (icon_view, path);
2419   gtk_tree_path_free (path);
2420
2421   return TRUE;
2422 }
2423
2424 static void
2425 gtk_icon_view_real_toggle_cursor_item (GtkIconView *icon_view)
2426 {
2427   if (!icon_view->priv->cursor_item)
2428     return;
2429
2430   switch (icon_view->priv->selection_mode)
2431     {
2432     case GTK_SELECTION_NONE:
2433       break;
2434     case GTK_SELECTION_BROWSE:
2435       gtk_icon_view_select_item (icon_view, icon_view->priv->cursor_item);
2436       break;
2437     case GTK_SELECTION_SINGLE:
2438       if (icon_view->priv->cursor_item->selected)
2439         gtk_icon_view_unselect_item (icon_view, icon_view->priv->cursor_item);
2440       else
2441         gtk_icon_view_select_item (icon_view, icon_view->priv->cursor_item);
2442       break;
2443     case GTK_SELECTION_MULTIPLE:
2444       icon_view->priv->cursor_item->selected = !icon_view->priv->cursor_item->selected;
2445       g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0); 
2446       
2447       gtk_icon_view_queue_draw_item (icon_view, icon_view->priv->cursor_item);
2448       break;
2449     }
2450 }
2451
2452 /* Internal functions */
2453 static void
2454 gtk_icon_view_adjustment_changed (GtkAdjustment *adjustment,
2455                                   GtkIconView   *icon_view)
2456 {
2457   if (GTK_WIDGET_REALIZED (icon_view))
2458     {
2459       gdk_window_move (icon_view->priv->bin_window,
2460                        - icon_view->priv->hadjustment->value,
2461                        - icon_view->priv->vadjustment->value);
2462
2463       if (icon_view->priv->doing_rubberband)
2464         gtk_icon_view_update_rubberband (GTK_WIDGET (icon_view));
2465
2466       gdk_window_process_updates (icon_view->priv->bin_window, TRUE);
2467     }
2468 }
2469
2470 static GList *
2471 gtk_icon_view_layout_single_row (GtkIconView *icon_view, 
2472                                  GList       *first_item, 
2473                                  gint         item_width,
2474                                  gint         row,
2475                                  gint        *y, 
2476                                  gint        *maximum_width)
2477 {
2478   gint focus_width;
2479   gint x, current_width;
2480   GList *items, *last_item;
2481   gint col;
2482   gint colspan;
2483   gint *max_height;
2484   gint i;
2485   gboolean rtl;
2486
2487   rtl = gtk_widget_get_direction (GTK_WIDGET (icon_view)) == GTK_TEXT_DIR_RTL;
2488   max_height = g_new0 (gint, icon_view->priv->n_cells);
2489
2490   x = 0;
2491   col = 0;
2492   items = first_item;
2493   current_width = 0;
2494
2495   gtk_widget_style_get (GTK_WIDGET (icon_view),
2496                         "focus-line-width", &focus_width,
2497                         NULL);
2498
2499   x += icon_view->priv->margin + focus_width;
2500   current_width += 2 * (icon_view->priv->margin + focus_width);
2501
2502   items = first_item;
2503   while (items)
2504     {
2505       GtkIconViewItem *item = items->data;
2506
2507       gtk_icon_view_calculate_item_size (icon_view, item);
2508       colspan = 1 + (item->width - 1) / (item_width + icon_view->priv->column_spacing);
2509
2510       item->width = colspan * item_width + (colspan - 1) * icon_view->priv->column_spacing;
2511
2512       current_width += item->width;
2513
2514       if (items != first_item)
2515         {
2516           if ((icon_view->priv->columns <= 0 && current_width > GTK_WIDGET (icon_view)->allocation.width) ||
2517               (icon_view->priv->columns > 0 && col >= icon_view->priv->columns))
2518             break;
2519         }
2520
2521       current_width += icon_view->priv->column_spacing + 2 * focus_width;
2522
2523       item->y = *y + focus_width;
2524       item->x = rtl ? GTK_WIDGET (icon_view)->allocation.width - item->width - x : x;
2525
2526       x = current_width - (icon_view->priv->margin + focus_width); 
2527
2528       for (i = 0; i < icon_view->priv->n_cells; i++)
2529         max_height[i] = MAX (max_height[i], item->box[i].height);
2530               
2531       if (current_width > *maximum_width)
2532         *maximum_width = current_width;
2533
2534       item->row = row;
2535       item->col = col;
2536
2537       col += colspan;
2538       items = items->next;
2539     }
2540
2541   last_item = items;
2542
2543   /* Now go through the row again and align the icons */
2544   for (items = first_item; items != last_item; items = items->next)
2545     {
2546       GtkIconViewItem *item = items->data;
2547
2548       gtk_icon_view_calculate_item_size2 (icon_view, item, max_height);
2549
2550       /* We may want to readjust the new y coordinate. */
2551       if (item->y + item->height + focus_width + icon_view->priv->row_spacing > *y)
2552         *y = item->y + item->height + focus_width + icon_view->priv->row_spacing;
2553
2554       if (rtl)
2555         item->col = col - 1 - item->col;
2556     }
2557
2558   g_free (max_height);
2559   
2560   return last_item;
2561 }
2562
2563 static void
2564 gtk_icon_view_set_adjustment_upper (GtkAdjustment *adj,
2565                                     gdouble        upper)
2566 {
2567   if (upper != adj->upper)
2568     {
2569       gdouble min = MAX (0.0, upper - adj->page_size);
2570       gboolean value_changed = FALSE;
2571       
2572       adj->upper = upper;
2573
2574       if (adj->value > min)
2575         {
2576           adj->value = min;
2577           value_changed = TRUE;
2578         }
2579       
2580       gtk_adjustment_changed (adj);
2581       
2582       if (value_changed)
2583         gtk_adjustment_value_changed (adj);
2584     }
2585 }
2586
2587 static void
2588 gtk_icon_view_layout (GtkIconView *icon_view)
2589 {
2590   gint y = 0, maximum_width = 0;
2591   GList *icons;
2592   GtkWidget *widget;
2593   gint row;
2594   gint item_width;
2595
2596   if (icon_view->priv->layout_idle_id != 0)
2597     {
2598       g_source_remove (icon_view->priv->layout_idle_id);
2599       icon_view->priv->layout_idle_id = 0;
2600     }
2601   
2602   if (icon_view->priv->model == NULL)
2603     return;
2604
2605   widget = GTK_WIDGET (icon_view);
2606
2607   item_width = icon_view->priv->item_width;
2608
2609   if (item_width < 0)
2610     {
2611       for (icons = icon_view->priv->items; icons; icons = icons->next)
2612         {
2613           GtkIconViewItem *item = icons->data;
2614           gtk_icon_view_calculate_item_size (icon_view, item);
2615           item_width = MAX (item_width, item->width);
2616         }
2617     }
2618
2619
2620   icons = icon_view->priv->items;
2621   y += icon_view->priv->margin;
2622   row = 0;
2623
2624   if (icons)
2625     {
2626       gtk_icon_view_set_cell_data (icon_view, icons->data);
2627       adjust_wrap_width (icon_view, icons->data);
2628     }
2629   
2630   do
2631     {
2632       icons = gtk_icon_view_layout_single_row (icon_view, icons, 
2633                                                item_width, row,
2634                                                &y, &maximum_width);
2635       row++;
2636     }
2637   while (icons != NULL);
2638
2639   if (maximum_width != icon_view->priv->width)
2640     icon_view->priv->width = maximum_width;
2641
2642   y += icon_view->priv->margin;
2643   
2644   if (y != icon_view->priv->height)
2645     icon_view->priv->height = y;
2646
2647   gtk_icon_view_set_adjustment_upper (icon_view->priv->hadjustment, 
2648                                       icon_view->priv->width);
2649   gtk_icon_view_set_adjustment_upper (icon_view->priv->vadjustment, 
2650                                       icon_view->priv->height);
2651
2652   if (icon_view->priv->width != widget->requisition.width ||
2653       icon_view->priv->height != widget->requisition.height)
2654     gtk_widget_queue_resize_no_redraw (widget);
2655
2656   if (GTK_WIDGET_REALIZED (icon_view))
2657     gdk_window_resize (icon_view->priv->bin_window,
2658                        MAX (icon_view->priv->width, widget->allocation.width),
2659                        MAX (icon_view->priv->height, widget->allocation.height));
2660
2661   if (icon_view->priv->scroll_to_path)
2662     {
2663       GtkTreePath *path;
2664
2665       path = gtk_tree_row_reference_get_path (icon_view->priv->scroll_to_path);
2666       gtk_tree_row_reference_free (icon_view->priv->scroll_to_path);
2667       icon_view->priv->scroll_to_path = NULL;
2668       
2669       gtk_icon_view_scroll_to_path (icon_view, path,
2670                                     icon_view->priv->scroll_to_use_align,
2671                                     icon_view->priv->scroll_to_row_align,
2672                                     icon_view->priv->scroll_to_col_align);
2673       gtk_tree_path_free (path);
2674     }
2675   
2676   gtk_widget_queue_draw (widget);
2677 }
2678
2679 static void 
2680 gtk_icon_view_get_cell_area (GtkIconView         *icon_view,
2681                              GtkIconViewItem     *item,
2682                              GtkIconViewCellInfo *info,
2683                              GdkRectangle        *cell_area)
2684 {
2685   if (icon_view->priv->orientation == GTK_ORIENTATION_HORIZONTAL)
2686     {
2687       cell_area->x = item->box[info->position].x - item->before[info->position];
2688       cell_area->y = item->y;
2689       cell_area->width = item->box[info->position].width + 
2690         item->before[info->position] + item->after[info->position];
2691       cell_area->height = item->height;
2692     }
2693   else
2694     {
2695       cell_area->x = item->x;
2696       cell_area->y = item->box[info->position].y - item->before[info->position];
2697       cell_area->width = item->width;
2698       cell_area->height = item->box[info->position].height + 
2699         item->before[info->position] + item->after[info->position];
2700     }
2701 }
2702
2703 static void 
2704 gtk_icon_view_get_cell_box (GtkIconView         *icon_view,
2705                             GtkIconViewItem     *item,
2706                             GtkIconViewCellInfo *info,
2707                             GdkRectangle        *box)
2708 {
2709   *box = item->box[info->position];
2710 }
2711
2712 /* try to guess a reasonable wrap width for an implicit text cell renderer
2713  */
2714 static void
2715 adjust_wrap_width (GtkIconView     *icon_view,
2716                    GtkIconViewItem *item)
2717 {
2718   GtkIconViewCellInfo *text_info;
2719   GtkIconViewCellInfo *pixbuf_info;
2720   gint pixbuf_width, wrap_width;
2721       
2722   if (icon_view->priv->text_cell != -1 &&
2723       icon_view->priv->pixbuf_cell != -1)
2724     {
2725       gint item_width;
2726
2727       text_info = g_list_nth_data (icon_view->priv->cell_list,
2728                                    icon_view->priv->text_cell);
2729       pixbuf_info = g_list_nth_data (icon_view->priv->cell_list,
2730                                      icon_view->priv->pixbuf_cell);
2731       
2732       gtk_cell_renderer_get_size (pixbuf_info->cell, 
2733                                   GTK_WIDGET (icon_view), 
2734                                   NULL, NULL, NULL,
2735                                   &pixbuf_width, 
2736                                   NULL);
2737           
2738
2739       if (icon_view->priv->item_width > 0)
2740         item_width = icon_view->priv->item_width;
2741       else
2742         item_width = item->width;
2743
2744       if (item->width == -1)
2745         {
2746           if (item_width > 0)
2747             wrap_width = item_width - pixbuf_width - icon_view->priv->spacing;
2748           else
2749             wrap_width = MAX (2 * pixbuf_width, 50);
2750         }
2751       else if (icon_view->priv->orientation == GTK_ORIENTATION_VERTICAL)
2752         wrap_width = item_width;
2753       else
2754         wrap_width = item_width - pixbuf_width - icon_view->priv->spacing;
2755
2756       g_object_set (text_info->cell, "wrap-width", wrap_width, NULL);
2757       g_object_set (text_info->cell, "width", wrap_width, NULL);
2758     }
2759 }
2760
2761 static void
2762 gtk_icon_view_calculate_item_size (GtkIconView     *icon_view,
2763                                    GtkIconViewItem *item)
2764 {
2765   gint spacing;
2766   GList *l;
2767
2768   if (item->width != -1 && item->height != -1) 
2769     return;
2770
2771   if (item->n_cells != icon_view->priv->n_cells)
2772     {
2773       g_free (item->before);
2774       g_free (item->after);
2775       g_free (item->box);
2776       
2777       item->before = g_new0 (gint, icon_view->priv->n_cells);
2778       item->after = g_new0 (gint, icon_view->priv->n_cells);
2779       item->box = g_new0 (GdkRectangle, icon_view->priv->n_cells);
2780
2781       item->n_cells = icon_view->priv->n_cells;
2782     }
2783
2784   gtk_icon_view_set_cell_data (icon_view, item);
2785
2786   spacing = icon_view->priv->spacing;
2787
2788   item->width = 0;
2789   item->height = 0;
2790   for (l = icon_view->priv->cell_list; l; l = l->next)
2791     {
2792       GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)l->data;
2793       
2794       if (!info->cell->visible)
2795         continue;
2796       
2797       gtk_cell_renderer_get_size (info->cell, GTK_WIDGET (icon_view), 
2798                                   NULL, NULL, NULL,
2799                                   &item->box[info->position].width, 
2800                                   &item->box[info->position].height);
2801
2802       if (icon_view->priv->orientation == GTK_ORIENTATION_HORIZONTAL)
2803         {
2804           item->width += item->box[info->position].width 
2805             + (info->position > 0 ? spacing : 0);
2806           item->height = MAX (item->height, item->box[info->position].height);
2807         }
2808       else
2809         {
2810           item->width = MAX (item->width, item->box[info->position].width);
2811           item->height += item->box[info->position].height + (info->position > 0 ? spacing : 0);
2812         }
2813     }
2814 }
2815
2816 static void
2817 gtk_icon_view_calculate_item_size2 (GtkIconView     *icon_view,
2818                                     GtkIconViewItem *item,
2819                                     gint            *max_height)
2820 {
2821   GdkRectangle cell_area;
2822   gint spacing;
2823   GList *l;
2824   gint i, k;
2825   gboolean rtl;
2826
2827   rtl = gtk_widget_get_direction (GTK_WIDGET (icon_view)) == GTK_TEXT_DIR_RTL;
2828
2829   gtk_icon_view_set_cell_data (icon_view, item);
2830
2831   spacing = icon_view->priv->spacing;
2832
2833   item->height = 0;
2834   for (i = 0; i < icon_view->priv->n_cells; i++)
2835     {
2836       if (icon_view->priv->orientation == GTK_ORIENTATION_HORIZONTAL)
2837         item->height = MAX (item->height, max_height[i]);
2838       else
2839         item->height += max_height[i] + (i > 0 ? spacing : 0);
2840     }
2841
2842   cell_area.x = item->x;
2843   cell_area.y = item->y;
2844       
2845   for (k = 0; k < 2; k++)
2846     for (l = icon_view->priv->cell_list, i = 0; l; l = l->next, i++)
2847       {
2848         GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)l->data;
2849         
2850         if (info->pack == (k ? GTK_PACK_START : GTK_PACK_END))
2851           continue;
2852
2853         if (!info->cell->visible)
2854           continue;
2855
2856         if (icon_view->priv->orientation == GTK_ORIENTATION_HORIZONTAL)
2857           {
2858             cell_area.width = item->box[info->position].width;
2859             cell_area.height = item->height;
2860           }
2861         else
2862           {
2863             cell_area.width = item->width;
2864             cell_area.height = max_height[i];
2865           }
2866         
2867         gtk_cell_renderer_get_size (info->cell, GTK_WIDGET (icon_view), 
2868                                     &cell_area,
2869                                     &item->box[info->position].x, &item->box[info->position].y,
2870                                     &item->box[info->position].width, &item->box[info->position].height);
2871         
2872         item->box[info->position].x += cell_area.x;
2873         item->box[info->position].y += cell_area.y;
2874         if (icon_view->priv->orientation == GTK_ORIENTATION_HORIZONTAL)
2875           {
2876             item->before[info->position] = item->box[info->position].x - cell_area.x;
2877             item->after[info->position] = cell_area.width - item->box[info->position].width - item->before[info->position];
2878             cell_area.x += cell_area.width + spacing;
2879           }
2880         else
2881           {
2882             if (item->box[info->position].width > item->width)
2883               {
2884                 item->width = item->box[info->position].width;
2885                 cell_area.width = item->width;
2886               }
2887             item->before[info->position] = item->box[info->position].y - cell_area.y;
2888             item->after[info->position] = cell_area.height - item->box[info->position].height - item->before[info->position];
2889             cell_area.y += cell_area.height + spacing;
2890           }
2891       }
2892   
2893   if (rtl && icon_view->priv->orientation == GTK_ORIENTATION_HORIZONTAL)
2894     {
2895       for (i = 0; i < icon_view->priv->n_cells; i++)
2896         {
2897           item->box[i].x = item->x + item->width - 
2898             (item->box[i].x + item->box[i].width - item->x);
2899         }      
2900     }   
2901 }
2902
2903 static void
2904 gtk_icon_view_invalidate_sizes (GtkIconView *icon_view)
2905 {
2906   g_list_foreach (icon_view->priv->items,
2907                   (GFunc)gtk_icon_view_item_invalidate_size, NULL);
2908 }
2909
2910 static void
2911 gtk_icon_view_item_invalidate_size (GtkIconViewItem *item)
2912 {
2913   item->width = -1;
2914   item->height = -1;
2915 }
2916
2917 static void
2918 gtk_icon_view_paint_item (GtkIconView     *icon_view,
2919                           cairo_t         *cr,
2920                           GtkIconViewItem *item,
2921                           GdkRectangle    *area,
2922                           GdkDrawable     *drawable,
2923                           gint             x,
2924                           gint             y,
2925                           gboolean         draw_focus)
2926 {
2927   gint focus_width, focus_pad;
2928   gint padding;
2929   GdkRectangle cell_area, box;
2930   GList *l;
2931   gint i;
2932   GtkStateType state;
2933   GtkCellRendererState flags;
2934       
2935   if (icon_view->priv->model == NULL)
2936     return;
2937   
2938   gtk_icon_view_set_cell_data (icon_view, item);
2939
2940   gtk_widget_style_get (GTK_WIDGET (icon_view),
2941                         "focus-line-width", &focus_width,
2942                         "focus-padding", &focus_pad,
2943                         NULL);
2944   
2945   padding = focus_width; 
2946   
2947   if (item->selected)
2948     {
2949       flags = GTK_CELL_RENDERER_SELECTED;
2950       if (GTK_WIDGET_HAS_FOCUS (icon_view))
2951         state = GTK_STATE_SELECTED;
2952       else
2953         state = GTK_STATE_ACTIVE;
2954     }
2955   else
2956     {
2957       flags = 0;
2958       state = GTK_STATE_NORMAL;
2959     }
2960   
2961 #ifdef DEBUG_ICON_VIEW
2962   gdk_draw_rectangle (drawable,
2963                       GTK_WIDGET (icon_view)->style->black_gc,
2964                       FALSE,
2965                       x, y, 
2966                       item->width, item->height);
2967 #endif
2968
2969   if (item->selected)
2970     for (l = icon_view->priv->cell_list; l; l = l->next)
2971       {
2972         GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)l->data;
2973         
2974         if (!info->cell->visible)
2975           continue;
2976         
2977         gtk_icon_view_get_cell_box (icon_view, item, info, &box);
2978
2979         /* FIXME we hardwire background drawing behind text
2980          * cell renderers here 
2981          */
2982         if (GTK_IS_CELL_RENDERER_TEXT (info->cell))
2983           {
2984             gdk_cairo_set_source_color (cr, &GTK_WIDGET (icon_view)->style->base[state]);
2985             cairo_rectangle (cr,
2986                              x - item->x + box.x, 
2987                              y - item->y + box.y,
2988                              box.width, box.height);
2989             cairo_fill (cr);
2990           }
2991       }
2992   
2993   for (l = icon_view->priv->cell_list; l; l = l->next)
2994     {
2995       GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)l->data;
2996       
2997       if (!info->cell->visible)
2998         continue;
2999       
3000       gtk_icon_view_get_cell_area (icon_view, item, info, &cell_area);
3001       
3002 #ifdef DEBUG_ICON_VIEW
3003       gdk_draw_rectangle (drawable,
3004                           GTK_WIDGET (icon_view)->style->black_gc,
3005                           FALSE,
3006                           x - item->x + cell_area.x, 
3007                           y - item->y + cell_area.y, 
3008                           cell_area.width, cell_area.height);
3009
3010       gtk_icon_view_get_cell_box (icon_view, item, info, &box);
3011           
3012       gdk_draw_rectangle (drawable,
3013                           GTK_WIDGET (icon_view)->style->black_gc,
3014                           FALSE,
3015                           x - item->x + box.x, 
3016                           y - item->y + box.y, 
3017                           box.width, box.height);
3018 #endif
3019
3020       cell_area.x = x - item->x + cell_area.x;
3021       cell_area.y = y - item->y + cell_area.y;
3022
3023       gtk_cell_renderer_render (info->cell,
3024                                 drawable,
3025                                 GTK_WIDGET (icon_view),
3026                                 &cell_area, &cell_area, area, flags);
3027       
3028     }
3029
3030   /* FIXME where to draw the focus with generic cell renderers ? */
3031   if (draw_focus && 
3032       GTK_WIDGET_HAS_FOCUS (icon_view) &&
3033       item == icon_view->priv->cursor_item)
3034     for (l = icon_view->priv->cell_list, i = 0; l; l = l->next, i++)
3035       {
3036         GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)l->data;
3037         
3038         if (!info->cell->visible)
3039           continue;
3040         
3041         if (icon_view->priv->cursor_cell < 0 &&
3042             (info->cell->mode != GTK_CELL_RENDERER_MODE_INERT ||
3043              GTK_IS_CELL_RENDERER_TEXT (info->cell)))
3044           icon_view->priv->cursor_cell = i;
3045         
3046         if (i == icon_view->priv->cursor_cell)
3047           {
3048             gtk_icon_view_get_cell_box (icon_view, item, info, &box);
3049
3050             gtk_paint_focus (GTK_WIDGET (icon_view)->style,
3051                              drawable,
3052                              GTK_STATE_NORMAL,
3053                              area,
3054                              GTK_WIDGET (icon_view),
3055                              "icon_view",
3056                              x - item->x + box.x - padding,
3057                              y - item->y + box.y - padding,
3058                              box.width + 2 * padding,
3059                              box.height + 2 * padding);
3060             break;
3061           }
3062       }
3063 }
3064
3065 static void
3066 gtk_icon_view_paint_rubberband (GtkIconView     *icon_view,
3067                                 cairo_t         *cr,
3068                                 GdkRectangle    *area)
3069 {
3070   GdkRectangle rect;
3071   GdkRectangle rubber_rect;
3072   GdkColor *fill_color_gdk;
3073   guchar fill_color_alpha;
3074
3075   rubber_rect.x = MIN (icon_view->priv->rubberband_x1, icon_view->priv->rubberband_x2);
3076   rubber_rect.y = MIN (icon_view->priv->rubberband_y1, icon_view->priv->rubberband_y2);
3077   rubber_rect.width = ABS (icon_view->priv->rubberband_x1 - icon_view->priv->rubberband_x2) + 1;
3078   rubber_rect.height = ABS (icon_view->priv->rubberband_y1 - icon_view->priv->rubberband_y2) + 1;
3079
3080   if (!gdk_rectangle_intersect (&rubber_rect, area, &rect))
3081     return;
3082
3083   gtk_widget_style_get (GTK_WIDGET (icon_view),
3084                         "selection-box-color", &fill_color_gdk,
3085                         "selection-box-alpha", &fill_color_alpha,
3086                         NULL);
3087
3088   if (!fill_color_gdk)
3089     fill_color_gdk = gdk_color_copy (&GTK_WIDGET (icon_view)->style->base[GTK_STATE_SELECTED]);
3090
3091   cairo_set_source_rgba (cr,
3092                          fill_color_gdk->red / 65535.,
3093                          fill_color_gdk->green / 65535.,
3094                          fill_color_gdk->blue / 65535.,
3095                          fill_color_alpha / 255.);
3096
3097   cairo_save (cr);
3098   gdk_cairo_rectangle (cr, &rect);
3099   cairo_clip (cr);
3100   cairo_paint (cr);
3101
3102   /* Draw the border without alpha */
3103   cairo_set_source_rgb (cr,
3104                         fill_color_gdk->red / 65535.,
3105                         fill_color_gdk->green / 65535.,
3106                         fill_color_gdk->blue / 65535.);
3107   cairo_rectangle (cr, 
3108                    rubber_rect.x + 0.5, rubber_rect.y + 0.5,
3109                    rubber_rect.width - 1, rubber_rect.height - 1);
3110   cairo_stroke (cr);
3111   cairo_restore (cr);
3112
3113   gdk_color_free (fill_color_gdk);
3114 }
3115
3116 static void
3117 gtk_icon_view_queue_draw_path (GtkIconView *icon_view,
3118                                GtkTreePath *path)
3119 {
3120   GList *l;
3121   gint index;
3122
3123   index = gtk_tree_path_get_indices (path)[0];
3124
3125   for (l = icon_view->priv->items; l; l = l->next) 
3126     {
3127       GtkIconViewItem *item = l->data;
3128
3129       if (item->index == index)
3130         {
3131           gtk_icon_view_queue_draw_item (icon_view, item);
3132           break;
3133         }
3134     }
3135 }
3136
3137 static void
3138 gtk_icon_view_queue_draw_item (GtkIconView     *icon_view,
3139                                GtkIconViewItem *item)
3140 {
3141   gint focus_width;
3142   GdkRectangle rect;
3143
3144   gtk_widget_style_get (GTK_WIDGET (icon_view),
3145                         "focus-line-width", &focus_width,
3146                         NULL);
3147
3148   rect.x = item->x - focus_width;
3149   rect.y = item->y - focus_width;
3150   rect.width = item->width + 2 * focus_width;
3151   rect.height = item->height + 2 * focus_width;
3152
3153   if (icon_view->priv->bin_window)
3154     gdk_window_invalidate_rect (icon_view->priv->bin_window, &rect, TRUE);
3155 }
3156
3157 static gboolean
3158 layout_callback (gpointer user_data)
3159 {
3160   GtkIconView *icon_view;
3161
3162   icon_view = GTK_ICON_VIEW (user_data);
3163   
3164   icon_view->priv->layout_idle_id = 0;
3165
3166   gtk_icon_view_layout (icon_view);
3167   
3168   return FALSE;
3169 }
3170
3171 static void
3172 gtk_icon_view_queue_layout (GtkIconView *icon_view)
3173 {
3174   if (icon_view->priv->layout_idle_id != 0)
3175     return;
3176
3177   icon_view->priv->layout_idle_id = gdk_threads_add_idle (layout_callback, icon_view);
3178 }
3179
3180 static void
3181 gtk_icon_view_set_cursor_item (GtkIconView     *icon_view,
3182                                GtkIconViewItem *item,
3183                                gint             cursor_cell)
3184 {
3185   AtkObject *obj;
3186   AtkObject *item_obj;
3187
3188   if (icon_view->priv->cursor_item == item &&
3189       (cursor_cell < 0 || cursor_cell == icon_view->priv->cursor_cell))
3190     return;
3191
3192   if (icon_view->priv->cursor_item != NULL)
3193     gtk_icon_view_queue_draw_item (icon_view, icon_view->priv->cursor_item);
3194   
3195   icon_view->priv->cursor_item = item;
3196   if (cursor_cell >= 0)
3197     icon_view->priv->cursor_cell = cursor_cell;
3198
3199   gtk_icon_view_queue_draw_item (icon_view, item);
3200   
3201   /* Notify that accessible focus object has changed */
3202   obj = gtk_widget_get_accessible (GTK_WIDGET (icon_view));
3203   item_obj = atk_object_ref_accessible_child (obj, item->index);
3204
3205   if (item_obj != NULL)
3206     {
3207       atk_focus_tracker_notify (item_obj);
3208       g_object_unref (item_obj); 
3209     }
3210 }
3211
3212
3213 static GtkIconViewItem *
3214 gtk_icon_view_item_new (void)
3215 {
3216   GtkIconViewItem *item;
3217
3218   item = g_new0 (GtkIconViewItem, 1);
3219
3220   item->width = -1;
3221   item->height = -1;
3222   
3223   return item;
3224 }
3225
3226 static void
3227 gtk_icon_view_item_free (GtkIconViewItem *item)
3228 {
3229   g_return_if_fail (item != NULL);
3230
3231   g_free (item->before);
3232   g_free (item->after);
3233   g_free (item->box);
3234
3235   g_free (item);
3236 }
3237
3238
3239 static GtkIconViewItem *
3240 gtk_icon_view_get_item_at_coords (GtkIconView          *icon_view,
3241                                   gint                  x,
3242                                   gint                  y,
3243                                   gboolean              only_in_cell,
3244                                   GtkIconViewCellInfo **cell_at_pos)
3245 {
3246   GList *items, *l;
3247   GdkRectangle box;
3248
3249   for (items = icon_view->priv->items; items; items = items->next)
3250     {
3251       GtkIconViewItem *item = items->data;
3252
3253       if (x >= item->x - icon_view->priv->column_spacing/2 && x <= item->x + item->width + icon_view->priv->column_spacing/2 &&
3254           y >= item->y - icon_view->priv->row_spacing/2 && y <= item->y + item->height + icon_view->priv->row_spacing/2)
3255         {
3256           if (only_in_cell || cell_at_pos)
3257             {
3258               gtk_icon_view_set_cell_data (icon_view, item);
3259
3260               for (l = icon_view->priv->cell_list; l; l = l->next)
3261                 {
3262                   GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)l->data;
3263                   
3264                   if (!info->cell->visible)
3265                     continue;
3266                   
3267                   gtk_icon_view_get_cell_box (icon_view, item, info, &box);
3268                   
3269                   if ((x >= box.x && x <= box.x + box.width &&
3270                        y >= box.y && y <= box.y + box.height) ||
3271                       (x >= box.x  &&
3272                        x <= box.x + box.width &&
3273                        y >= box.y &&
3274                        y <= box.y + box.height))
3275                     {
3276                       if (cell_at_pos)
3277                         *cell_at_pos = info;
3278                       
3279                       return item;
3280                     }
3281                 }
3282
3283               if (only_in_cell)
3284                 return NULL;
3285               
3286               if (cell_at_pos)
3287                 *cell_at_pos = NULL;
3288             }
3289
3290           return item;
3291         }
3292     }
3293
3294   return NULL;
3295 }
3296
3297 static void
3298 gtk_icon_view_select_item (GtkIconView      *icon_view,
3299                            GtkIconViewItem  *item)
3300 {
3301   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
3302   g_return_if_fail (item != NULL);
3303
3304   if (item->selected)
3305     return;
3306   
3307   if (icon_view->priv->selection_mode == GTK_SELECTION_NONE)
3308     return;
3309   else if (icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
3310     gtk_icon_view_unselect_all_internal (icon_view);
3311
3312   item->selected = TRUE;
3313
3314   gtk_icon_view_queue_draw_item (icon_view, item);
3315
3316   g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
3317 }
3318
3319
3320 static void
3321 gtk_icon_view_unselect_item (GtkIconView      *icon_view,
3322                              GtkIconViewItem  *item)
3323 {
3324   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
3325   g_return_if_fail (item != NULL);
3326
3327   if (!item->selected)
3328     return;
3329   
3330   if (icon_view->priv->selection_mode == GTK_SELECTION_NONE ||
3331       icon_view->priv->selection_mode == GTK_SELECTION_BROWSE)
3332     return;
3333   
3334   item->selected = FALSE;
3335
3336   g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
3337
3338   gtk_icon_view_queue_draw_item (icon_view, item);
3339 }
3340
3341 static void
3342 verify_items (GtkIconView *icon_view)
3343 {
3344   GList *items;
3345   int i = 0;
3346
3347   for (items = icon_view->priv->items; items; items = items->next)
3348     {
3349       GtkIconViewItem *item = items->data;
3350
3351       if (item->index != i)
3352         g_error ("List item does not match its index: "
3353                  "item index %d and list index %d\n", item->index, i);
3354
3355       i++;
3356     }
3357 }
3358
3359 static void
3360 gtk_icon_view_row_changed (GtkTreeModel *model,
3361                            GtkTreePath  *path,
3362                            GtkTreeIter  *iter,
3363                            gpointer      data)
3364 {
3365   GtkIconViewItem *item;
3366   gint index;
3367   GtkIconView *icon_view;
3368
3369   icon_view = GTK_ICON_VIEW (data);
3370
3371   gtk_icon_view_stop_editing (icon_view, TRUE);
3372   
3373   index = gtk_tree_path_get_indices(path)[0];
3374   item = g_list_nth_data (icon_view->priv->items, index);
3375
3376   gtk_icon_view_item_invalidate_size (item);
3377   gtk_icon_view_queue_layout (icon_view);
3378
3379   verify_items (icon_view);
3380 }
3381
3382 static void
3383 gtk_icon_view_row_inserted (GtkTreeModel *model,
3384                             GtkTreePath  *path,
3385                             GtkTreeIter  *iter,
3386                             gpointer      data)
3387 {
3388   gint index;
3389   GtkIconViewItem *item;
3390   gboolean iters_persist;
3391   GtkIconView *icon_view;
3392   GList *list;
3393   
3394   icon_view = GTK_ICON_VIEW (data);
3395
3396   iters_persist = gtk_tree_model_get_flags (icon_view->priv->model) & GTK_TREE_MODEL_ITERS_PERSIST;
3397   
3398   index = gtk_tree_path_get_indices(path)[0];
3399
3400   item = gtk_icon_view_item_new ();
3401
3402   if (iters_persist)
3403     item->iter = *iter;
3404
3405   item->index = index;
3406
3407   /* FIXME: We can be more efficient here,
3408      we can store a tail pointer and use that when
3409      appending (which is a rather common operation)
3410   */
3411   icon_view->priv->items = g_list_insert (icon_view->priv->items,
3412                                          item, index);
3413   
3414   list = g_list_nth (icon_view->priv->items, index + 1);
3415   for (; list; list = list->next)
3416     {
3417       item = list->data;
3418
3419       item->index++;
3420     }
3421     
3422   verify_items (icon_view);
3423
3424   gtk_icon_view_queue_layout (icon_view);
3425 }
3426
3427 static void
3428 gtk_icon_view_row_deleted (GtkTreeModel *model,
3429                            GtkTreePath  *path,
3430                            gpointer      data)
3431 {
3432   gint index;
3433   GtkIconView *icon_view;
3434   GtkIconViewItem *item;
3435   GList *list, *next;
3436   gboolean emit = FALSE;
3437   
3438   icon_view = GTK_ICON_VIEW (data);
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   gtk_icon_view_stop_editing (icon_view, TRUE);
3446
3447   if (item == icon_view->priv->anchor_item)
3448     icon_view->priv->anchor_item = NULL;
3449
3450   if (item == icon_view->priv->cursor_item)
3451     icon_view->priv->cursor_item = NULL;
3452
3453   if (item->selected)
3454     emit = TRUE;
3455   
3456   gtk_icon_view_item_free (item);
3457
3458   for (next = list->next; next; next = next->next)
3459     {
3460       item = next->data;
3461
3462       item->index--;
3463     }
3464   
3465   icon_view->priv->items = g_list_delete_link (icon_view->priv->items, list);
3466
3467   verify_items (icon_view);  
3468   
3469   gtk_icon_view_queue_layout (icon_view);
3470
3471   if (emit)
3472     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
3473 }
3474
3475 static void
3476 gtk_icon_view_rows_reordered (GtkTreeModel *model,
3477                               GtkTreePath  *parent,
3478                               GtkTreeIter  *iter,
3479                               gint         *new_order,
3480                               gpointer      data)
3481 {
3482   int i;
3483   int length;
3484   GtkIconView *icon_view;
3485   GList *items = NULL, *list;
3486   GtkIconViewItem **item_array;
3487   gint *order;
3488   
3489   icon_view = GTK_ICON_VIEW (data);
3490
3491   gtk_icon_view_stop_editing (icon_view, TRUE);
3492
3493   length = gtk_tree_model_iter_n_children (model, NULL);
3494
3495   order = g_new (gint, length);
3496   for (i = 0; i < length; i++)
3497     order [new_order[i]] = i;
3498
3499   item_array = g_new (GtkIconViewItem *, length);
3500   for (i = 0, list = icon_view->priv->items; list != NULL; list = list->next, i++)
3501     item_array[order[i]] = list->data;
3502   g_free (order);
3503
3504   for (i = length - 1; i >= 0; i--)
3505     {
3506       item_array[i]->index = i;
3507       items = g_list_prepend (items, item_array[i]);
3508     }
3509   
3510   g_free (item_array);
3511   g_list_free (icon_view->priv->items);
3512   icon_view->priv->items = items;
3513
3514   gtk_icon_view_queue_layout (icon_view);
3515
3516   verify_items (icon_view);  
3517 }
3518
3519 static void
3520 gtk_icon_view_build_items (GtkIconView *icon_view)
3521 {
3522   GtkTreeIter iter;
3523   int i;
3524   gboolean iters_persist;
3525   GList *items = NULL;
3526
3527   iters_persist = gtk_tree_model_get_flags (icon_view->priv->model) & GTK_TREE_MODEL_ITERS_PERSIST;
3528   
3529   if (!gtk_tree_model_get_iter_first (icon_view->priv->model,
3530                                       &iter))
3531     return;
3532
3533   i = 0;
3534   
3535   do
3536     {
3537       GtkIconViewItem *item = gtk_icon_view_item_new ();
3538
3539       if (iters_persist)
3540         item->iter = iter;
3541
3542       item->index = i;
3543       
3544       i++;
3545
3546       items = g_list_prepend (items, item);
3547       
3548     } while (gtk_tree_model_iter_next (icon_view->priv->model, &iter));
3549
3550   icon_view->priv->items = g_list_reverse (items);
3551 }
3552
3553 static void
3554 gtk_icon_view_add_move_binding (GtkBindingSet  *binding_set,
3555                                 guint           keyval,
3556                                 guint           modmask,
3557                                 GtkMovementStep step,
3558                                 gint            count)
3559 {
3560   
3561   gtk_binding_entry_add_signal (binding_set, keyval, modmask,
3562                                 I_("move_cursor"), 2,
3563                                 G_TYPE_ENUM, step,
3564                                 G_TYPE_INT, count);
3565
3566   gtk_binding_entry_add_signal (binding_set, keyval, GDK_SHIFT_MASK,
3567                                 "move_cursor", 2,
3568                                 G_TYPE_ENUM, step,
3569                                 G_TYPE_INT, count);
3570
3571   if ((modmask & GDK_CONTROL_MASK) == GDK_CONTROL_MASK)
3572    return;
3573
3574   gtk_binding_entry_add_signal (binding_set, keyval, GDK_CONTROL_MASK | GDK_SHIFT_MASK,
3575                                 "move_cursor", 2,
3576                                 G_TYPE_ENUM, step,
3577                                 G_TYPE_INT, count);
3578
3579   gtk_binding_entry_add_signal (binding_set, keyval, GDK_CONTROL_MASK,
3580                                 "move_cursor", 2,
3581                                 G_TYPE_ENUM, step,
3582                                 G_TYPE_INT, count);
3583 }
3584
3585 static gboolean
3586 gtk_icon_view_real_move_cursor (GtkIconView     *icon_view,
3587                                 GtkMovementStep  step,
3588                                 gint             count)
3589 {
3590   GdkModifierType state;
3591
3592   g_return_val_if_fail (GTK_ICON_VIEW (icon_view), FALSE);
3593   g_return_val_if_fail (step == GTK_MOVEMENT_LOGICAL_POSITIONS ||
3594                         step == GTK_MOVEMENT_VISUAL_POSITIONS ||
3595                         step == GTK_MOVEMENT_DISPLAY_LINES ||
3596                         step == GTK_MOVEMENT_PAGES ||
3597                         step == GTK_MOVEMENT_BUFFER_ENDS, FALSE);
3598
3599   if (!GTK_WIDGET_HAS_FOCUS (GTK_WIDGET (icon_view)))
3600     return FALSE;
3601
3602   gtk_icon_view_stop_editing (icon_view, FALSE);
3603   gtk_widget_grab_focus (GTK_WIDGET (icon_view));
3604
3605   if (gtk_get_current_event_state (&state))
3606     {
3607       if ((state & GDK_CONTROL_MASK) == GDK_CONTROL_MASK)
3608         icon_view->priv->ctrl_pressed = TRUE;
3609       if ((state & GDK_SHIFT_MASK) == GDK_SHIFT_MASK)
3610         icon_view->priv->shift_pressed = TRUE;
3611     }
3612   /* else we assume not pressed */
3613
3614   switch (step)
3615     {
3616     case GTK_MOVEMENT_LOGICAL_POSITIONS:
3617     case GTK_MOVEMENT_VISUAL_POSITIONS:
3618       gtk_icon_view_move_cursor_left_right (icon_view, count);
3619       break;
3620     case GTK_MOVEMENT_DISPLAY_LINES:
3621       gtk_icon_view_move_cursor_up_down (icon_view, count);
3622       break;
3623     case GTK_MOVEMENT_PAGES:
3624       gtk_icon_view_move_cursor_page_up_down (icon_view, count);
3625       break;
3626     case GTK_MOVEMENT_BUFFER_ENDS:
3627       gtk_icon_view_move_cursor_start_end (icon_view, count);
3628       break;
3629     default:
3630       g_assert_not_reached ();
3631     }
3632
3633   icon_view->priv->ctrl_pressed = FALSE;
3634   icon_view->priv->shift_pressed = FALSE;
3635
3636   return TRUE;
3637 }
3638
3639 static GtkIconViewItem *
3640 find_item (GtkIconView     *icon_view,
3641            GtkIconViewItem *current,
3642            gint             row_ofs,
3643            gint             col_ofs)
3644 {
3645   gint row, col;
3646   GList *items;
3647   GtkIconViewItem *item;
3648
3649   /* FIXME: this could be more efficient 
3650    */
3651   row = current->row + row_ofs;
3652   col = current->col + col_ofs;
3653
3654   for (items = icon_view->priv->items; items; items = items->next)
3655     {
3656       item = items->data;
3657       if (item->row == row && item->col == col)
3658         return item;
3659     }
3660   
3661   return NULL;
3662 }
3663
3664 static gint
3665 find_cell (GtkIconView     *icon_view,
3666            GtkIconViewItem *item,
3667            gint             cell,
3668            GtkOrientation   orientation,
3669            gint             step,
3670            gint            *count)
3671 {
3672   gint n_focusable;
3673   gint *focusable;
3674   gint first_text;
3675   gint current;
3676   gint i, k;
3677   GList *l;
3678
3679   if (icon_view->priv->orientation != orientation)
3680     return cell;
3681
3682   gtk_icon_view_set_cell_data (icon_view, item);
3683
3684   focusable = g_new0 (gint, icon_view->priv->n_cells);
3685   n_focusable = 0;
3686
3687   first_text = 0;
3688   current = 0;
3689   for (k = 0; k < 2; k++)
3690     for (l = icon_view->priv->cell_list, i = 0; l; l = l->next, i++)
3691       {
3692         GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)l->data;
3693         
3694         if (info->pack == (k ? GTK_PACK_START : GTK_PACK_END))
3695           continue;
3696         
3697         if (!info->cell->visible)
3698           continue;
3699         
3700         if (GTK_IS_CELL_RENDERER_TEXT (info->cell))
3701           first_text = i;
3702
3703         if (info->cell->mode != GTK_CELL_RENDERER_MODE_INERT)
3704           {
3705             if (cell == i)
3706               current = n_focusable;
3707
3708             focusable[n_focusable] = i;
3709
3710             n_focusable++;
3711           }
3712       }
3713   
3714   if (n_focusable == 0)
3715     focusable[n_focusable++] = first_text;
3716
3717   if (cell < 0)
3718     {
3719       current = step > 0 ? 0 : n_focusable - 1;
3720       cell = focusable[current];
3721     }
3722
3723   if (current + *count < 0)
3724     {
3725       cell = -1;
3726       *count = current + *count;
3727     }
3728   else if (current + *count > n_focusable - 1)
3729     {
3730       cell = -1;
3731       *count = current + *count - (n_focusable - 1);
3732     }
3733   else
3734     {
3735       cell = focusable[current + *count];
3736       *count = 0;
3737     }
3738   
3739   g_free (focusable);
3740   
3741   return cell;
3742 }
3743
3744 static GtkIconViewItem *
3745 find_item_page_up_down (GtkIconView     *icon_view,
3746                         GtkIconViewItem *current,
3747                         gint             count)
3748 {
3749   GList *item, *next;
3750   gint y, col;
3751   
3752   col = current->col;
3753   y = current->y + count * icon_view->priv->vadjustment->page_size;
3754
3755   item = g_list_find (icon_view->priv->items, current);
3756   if (count > 0)
3757     {
3758       while (item)
3759         {
3760           for (next = item->next; next; next = next->next)
3761             {
3762               if (((GtkIconViewItem *)next->data)->col == col)
3763                 break;
3764             }
3765           if (!next || ((GtkIconViewItem *)next->data)->y > y)
3766             break;
3767
3768           item = next;
3769         }
3770     }
3771   else 
3772     {
3773       while (item)
3774         {
3775           for (next = item->prev; next; next = next->prev)
3776             {
3777               if (((GtkIconViewItem *)next->data)->col == col)
3778                 break;
3779             }
3780           if (!next || ((GtkIconViewItem *)next->data)->y < y)
3781             break;
3782
3783           item = next;
3784         }
3785     }
3786
3787   if (item)
3788     return item->data;
3789
3790   return NULL;
3791 }
3792
3793 static gboolean
3794 gtk_icon_view_select_all_between (GtkIconView     *icon_view,
3795                                   GtkIconViewItem *anchor,
3796                                   GtkIconViewItem *cursor)
3797 {
3798   GList *items;
3799   GtkIconViewItem *item;
3800   gint row1, row2, col1, col2;
3801   gboolean dirty = FALSE;
3802   
3803   if (anchor->row < cursor->row)
3804     {
3805       row1 = anchor->row;
3806       row2 = cursor->row;
3807     }
3808   else
3809     {
3810       row1 = cursor->row;
3811       row2 = anchor->row;
3812     }
3813
3814   if (anchor->col < cursor->col)
3815     {
3816       col1 = anchor->col;
3817       col2 = cursor->col;
3818     }
3819   else
3820     {
3821       col1 = cursor->col;
3822       col2 = anchor->col;
3823     }
3824
3825   for (items = icon_view->priv->items; items; items = items->next)
3826     {
3827       item = items->data;
3828
3829       if (row1 <= item->row && item->row <= row2 &&
3830           col1 <= item->col && item->col <= col2)
3831         {
3832           if (!item->selected)
3833             dirty = TRUE;
3834
3835           item->selected = TRUE;
3836           
3837           gtk_icon_view_queue_draw_item (icon_view, item);
3838         }
3839     }
3840
3841   return dirty;
3842 }
3843
3844 static void 
3845 gtk_icon_view_move_cursor_up_down (GtkIconView *icon_view,
3846                                    gint         count)
3847 {
3848   GtkIconViewItem *item;
3849   gint cell;
3850   gboolean dirty = FALSE;
3851   gint step;
3852   
3853   if (!GTK_WIDGET_HAS_FOCUS (icon_view))
3854     return;
3855   
3856   if (!icon_view->priv->cursor_item)
3857     {
3858       GList *list;
3859
3860       if (count > 0)
3861         list = icon_view->priv->items;
3862       else
3863         list = g_list_last (icon_view->priv->items);
3864
3865       item = list ? list->data : NULL;
3866       cell = -1;
3867     }
3868   else
3869     {
3870       item = icon_view->priv->cursor_item;
3871       cell = icon_view->priv->cursor_cell;
3872       step = count > 0 ? 1 : -1;      
3873       while (item)
3874         {
3875           cell = find_cell (icon_view, item, cell,
3876                             GTK_ORIENTATION_VERTICAL, 
3877                             step, &count);
3878           if (count == 0)
3879             break;
3880
3881           item = find_item (icon_view, item, step, 0);
3882           count = count - step;
3883         }
3884     }
3885
3886   if (!item)
3887     {
3888       gtk_widget_error_bell (GTK_WIDGET (icon_view));
3889       return;
3890     }
3891
3892   if (icon_view->priv->ctrl_pressed ||
3893       !icon_view->priv->shift_pressed ||
3894       !icon_view->priv->anchor_item ||
3895       icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
3896     icon_view->priv->anchor_item = item;
3897
3898   gtk_icon_view_set_cursor_item (icon_view, item, cell);
3899
3900   if (!icon_view->priv->ctrl_pressed &&
3901       icon_view->priv->selection_mode != GTK_SELECTION_NONE)
3902     {
3903       dirty = gtk_icon_view_unselect_all_internal (icon_view);
3904       dirty = gtk_icon_view_select_all_between (icon_view, 
3905                                                 icon_view->priv->anchor_item,
3906                                                 item) || dirty;
3907     }
3908
3909   gtk_icon_view_scroll_to_item (icon_view, item);
3910
3911   if (dirty)
3912     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
3913 }
3914
3915 static void 
3916 gtk_icon_view_move_cursor_page_up_down (GtkIconView *icon_view,
3917                                         gint         count)
3918 {
3919   GtkIconViewItem *item;
3920   gboolean dirty = FALSE;
3921   
3922   if (!GTK_WIDGET_HAS_FOCUS (icon_view))
3923     return;
3924   
3925   if (!icon_view->priv->cursor_item)
3926     {
3927       GList *list;
3928
3929       if (count > 0)
3930         list = icon_view->priv->items;
3931       else
3932         list = g_list_last (icon_view->priv->items);
3933
3934       item = list ? list->data : NULL;
3935     }
3936   else
3937     item = find_item_page_up_down (icon_view, 
3938                                    icon_view->priv->cursor_item,
3939                                    count);
3940
3941   if (item == icon_view->priv->cursor_item)
3942     gtk_widget_error_bell (GTK_WIDGET (icon_view));
3943
3944   if (!item)
3945     return;
3946
3947   if (icon_view->priv->ctrl_pressed ||
3948       !icon_view->priv->shift_pressed ||
3949       !icon_view->priv->anchor_item ||
3950       icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
3951     icon_view->priv->anchor_item = item;
3952
3953   gtk_icon_view_set_cursor_item (icon_view, item, -1);
3954
3955   if (!icon_view->priv->ctrl_pressed &&
3956       icon_view->priv->selection_mode != GTK_SELECTION_NONE)
3957     {
3958       dirty = gtk_icon_view_unselect_all_internal (icon_view);
3959       dirty = gtk_icon_view_select_all_between (icon_view, 
3960                                                 icon_view->priv->anchor_item,
3961                                                 item) || dirty;
3962     }
3963
3964   gtk_icon_view_scroll_to_item (icon_view, item);
3965
3966   if (dirty)
3967     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);  
3968 }
3969
3970 static void 
3971 gtk_icon_view_move_cursor_left_right (GtkIconView *icon_view,
3972                                       gint         count)
3973 {
3974   GtkIconViewItem *item;
3975   gint cell = -1;
3976   gboolean dirty = FALSE;
3977   gint step;
3978   
3979   if (!GTK_WIDGET_HAS_FOCUS (icon_view))
3980     return;
3981   
3982   if (!icon_view->priv->cursor_item)
3983     {
3984       GList *list;
3985
3986       if (count > 0)
3987         list = icon_view->priv->items;
3988       else
3989         list = g_list_last (icon_view->priv->items);
3990
3991       item = list ? list->data : NULL;
3992     }
3993   else
3994     {
3995       item = icon_view->priv->cursor_item;
3996       cell = icon_view->priv->cursor_cell;
3997       step = count > 0 ? 1 : -1;
3998       while (item)
3999         {
4000           cell = find_cell (icon_view, item, cell,
4001                             GTK_ORIENTATION_HORIZONTAL, 
4002                             step, &count);
4003           if (count == 0)
4004             break;
4005           
4006           item = find_item (icon_view, item, 0, step);
4007           count = count - step;
4008         }
4009     }
4010
4011   if (!item)
4012     {
4013       gtk_widget_error_bell (GTK_WIDGET (icon_view));
4014       return;
4015     }
4016
4017   if (icon_view->priv->ctrl_pressed ||
4018       !icon_view->priv->shift_pressed ||
4019       !icon_view->priv->anchor_item ||
4020       icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
4021     icon_view->priv->anchor_item = item;
4022
4023   gtk_icon_view_set_cursor_item (icon_view, item, cell);
4024
4025   if (!icon_view->priv->ctrl_pressed &&
4026       icon_view->priv->selection_mode != GTK_SELECTION_NONE)
4027     {
4028       dirty = gtk_icon_view_unselect_all_internal (icon_view);
4029       dirty = gtk_icon_view_select_all_between (icon_view, 
4030                                                 icon_view->priv->anchor_item,
4031                                                 item) || dirty;
4032     }
4033
4034   gtk_icon_view_scroll_to_item (icon_view, item);
4035
4036   if (dirty)
4037     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
4038 }
4039
4040 static void 
4041 gtk_icon_view_move_cursor_start_end (GtkIconView *icon_view,
4042                                      gint         count)
4043 {
4044   GtkIconViewItem *item;
4045   GList *list;
4046   gboolean dirty = FALSE;
4047   
4048   if (!GTK_WIDGET_HAS_FOCUS (icon_view))
4049     return;
4050   
4051   if (count < 0)
4052     list = icon_view->priv->items;
4053   else
4054     list = g_list_last (icon_view->priv->items);
4055   
4056   item = list ? list->data : NULL;
4057
4058   if (item == icon_view->priv->cursor_item)
4059     gtk_widget_error_bell (GTK_WIDGET (icon_view));
4060
4061   if (!item)
4062     return;
4063
4064   if (icon_view->priv->ctrl_pressed ||
4065       !icon_view->priv->shift_pressed ||
4066       !icon_view->priv->anchor_item ||
4067       icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
4068     icon_view->priv->anchor_item = item;
4069
4070   gtk_icon_view_set_cursor_item (icon_view, item, -1);
4071
4072   if (!icon_view->priv->ctrl_pressed &&
4073       icon_view->priv->selection_mode != GTK_SELECTION_NONE)
4074     {
4075       dirty = gtk_icon_view_unselect_all_internal (icon_view);
4076       dirty = gtk_icon_view_select_all_between (icon_view, 
4077                                                 icon_view->priv->anchor_item,
4078                                                 item) || dirty;
4079     }
4080
4081   gtk_icon_view_scroll_to_item (icon_view, item);
4082
4083   if (dirty)
4084     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
4085 }
4086
4087 /**
4088  * gtk_icon_view_scroll_to_path:
4089  * @icon_view: A #GtkIconView.
4090  * @path: The path of the item to move to.
4091  * @use_align: whether to use alignment arguments, or %FALSE.
4092  * @row_align: The vertical alignment of the item specified by @path.
4093  * @col_align: The horizontal alignment of the item specified by @path.
4094  *
4095  * Moves the alignments of @icon_view to the position specified by @path.  
4096  * @row_align determines where the row is placed, and @col_align determines 
4097  * where @column is placed.  Both are expected to be between 0.0 and 1.0. 
4098  * 0.0 means left/top alignment, 1.0 means right/bottom alignment, 0.5 means 
4099  * center.
4100  *
4101  * If @use_align is %FALSE, then the alignment arguments are ignored, and the
4102  * tree does the minimum amount of work to scroll the item onto the screen.
4103  * This means that the item will be scrolled to the edge closest to its current
4104  * position.  If the item is currently visible on the screen, nothing is done.
4105  *
4106  * This function only works if the model is set, and @path is a valid row on 
4107  * the model. If the model changes before the @icon_view is realized, the 
4108  * centered path will be modified to reflect this change.
4109  *
4110  * Since: 2.8
4111  **/
4112 void
4113 gtk_icon_view_scroll_to_path (GtkIconView *icon_view,
4114                               GtkTreePath *path,
4115                               gboolean     use_align,
4116                               gfloat       row_align,
4117                               gfloat       col_align)
4118 {
4119   GtkIconViewItem *item = NULL;
4120
4121   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4122   g_return_if_fail (path != NULL);
4123   g_return_if_fail (row_align >= 0.0 && row_align <= 1.0);
4124   g_return_if_fail (col_align >= 0.0 && col_align <= 1.0);
4125
4126   if (gtk_tree_path_get_depth (path) > 0)
4127     item = g_list_nth_data (icon_view->priv->items,
4128                             gtk_tree_path_get_indices(path)[0]);
4129   
4130   if (!GTK_WIDGET_REALIZED (icon_view) || !item || item->width < 0)
4131     {
4132       if (icon_view->priv->scroll_to_path)
4133         gtk_tree_row_reference_free (icon_view->priv->scroll_to_path);
4134
4135       icon_view->priv->scroll_to_path = NULL;
4136
4137       if (path)
4138         icon_view->priv->scroll_to_path = gtk_tree_row_reference_new_proxy (G_OBJECT (icon_view), icon_view->priv->model, path);
4139
4140       icon_view->priv->scroll_to_use_align = use_align;
4141       icon_view->priv->scroll_to_row_align = row_align;
4142       icon_view->priv->scroll_to_col_align = col_align;
4143
4144       return;
4145     }
4146
4147   if (use_align)
4148     {
4149       gint x, y;
4150       gint focus_width;
4151       gfloat offset, value;
4152
4153       gtk_widget_style_get (GTK_WIDGET (icon_view),
4154                             "focus-line-width", &focus_width,
4155                             NULL);
4156       
4157       gdk_window_get_position (icon_view->priv->bin_window, &x, &y);
4158       
4159       offset =  y + item->y - focus_width - 
4160         row_align * (GTK_WIDGET (icon_view)->allocation.height - item->height);
4161       value = CLAMP (icon_view->priv->vadjustment->value + offset, 
4162                      icon_view->priv->vadjustment->lower,
4163                      icon_view->priv->vadjustment->upper - icon_view->priv->vadjustment->page_size);
4164       gtk_adjustment_set_value (icon_view->priv->vadjustment, value);
4165
4166       offset = x + item->x - focus_width - 
4167         col_align * (GTK_WIDGET (icon_view)->allocation.width - item->width);
4168       value = CLAMP (icon_view->priv->hadjustment->value + offset, 
4169                      icon_view->priv->hadjustment->lower,
4170                      icon_view->priv->hadjustment->upper - icon_view->priv->hadjustment->page_size);
4171       gtk_adjustment_set_value (icon_view->priv->hadjustment, value);
4172
4173       gtk_adjustment_changed (icon_view->priv->hadjustment);
4174       gtk_adjustment_changed (icon_view->priv->vadjustment);
4175     }
4176   else
4177     gtk_icon_view_scroll_to_item (icon_view, item);
4178 }
4179
4180
4181 static void     
4182 gtk_icon_view_scroll_to_item (GtkIconView     *icon_view, 
4183                               GtkIconViewItem *item)
4184 {
4185   gint x, y, width, height;
4186   gint focus_width;
4187
4188   gtk_widget_style_get (GTK_WIDGET (icon_view),
4189                         "focus-line-width", &focus_width,
4190                         NULL);
4191
4192   gdk_drawable_get_size (GDK_DRAWABLE (icon_view->priv->bin_window), 
4193                          &width, &height);
4194   gdk_window_get_position (icon_view->priv->bin_window, &x, &y);
4195   
4196   if (y + item->y - focus_width < 0)
4197     gtk_adjustment_set_value (icon_view->priv->vadjustment, 
4198                               icon_view->priv->vadjustment->value + y + item->y - focus_width);
4199   else if (y + item->y + item->height + focus_width > GTK_WIDGET (icon_view)->allocation.height)
4200     gtk_adjustment_set_value (icon_view->priv->vadjustment, 
4201                               icon_view->priv->vadjustment->value + y + item->y + item->height 
4202                               + focus_width - GTK_WIDGET (icon_view)->allocation.height);
4203
4204   if (x + item->x - focus_width < 0)
4205     gtk_adjustment_set_value (icon_view->priv->hadjustment, 
4206                               icon_view->priv->hadjustment->value + x + item->x - focus_width);
4207   else if (x + item->x + item->width + focus_width > GTK_WIDGET (icon_view)->allocation.width)
4208     gtk_adjustment_set_value (icon_view->priv->hadjustment, 
4209                               icon_view->priv->hadjustment->value + x + item->x + item->width 
4210                               + focus_width - GTK_WIDGET (icon_view)->allocation.width);
4211
4212   gtk_adjustment_changed (icon_view->priv->hadjustment);
4213   gtk_adjustment_changed (icon_view->priv->vadjustment);
4214 }
4215
4216 /* GtkCellLayout implementation */
4217 static GtkIconViewCellInfo *
4218 gtk_icon_view_get_cell_info (GtkIconView     *icon_view,
4219                              GtkCellRenderer *renderer)
4220 {
4221   GList *i;
4222
4223   for (i = icon_view->priv->cell_list; i; i = i->next)
4224     {
4225       GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)i->data;
4226
4227       if (info->cell == renderer)
4228         return info;
4229     }
4230
4231   return NULL;
4232 }
4233
4234 static void
4235 gtk_icon_view_set_cell_data (GtkIconView     *icon_view, 
4236                              GtkIconViewItem *item)
4237 {
4238   GList *i;
4239   gboolean iters_persist;
4240   GtkTreeIter iter;
4241   
4242   iters_persist = gtk_tree_model_get_flags (icon_view->priv->model) & GTK_TREE_MODEL_ITERS_PERSIST;
4243   
4244   if (!iters_persist)
4245     {
4246       GtkTreePath *path;
4247
4248       path = gtk_tree_path_new_from_indices (item->index, -1);
4249       if (!gtk_tree_model_get_iter (icon_view->priv->model, &iter, path))
4250         return;
4251       gtk_tree_path_free (path);
4252     }
4253   else
4254     iter = item->iter;
4255   
4256   for (i = icon_view->priv->cell_list; i; i = i->next)
4257     {
4258       GSList *j;
4259       GtkIconViewCellInfo *info = i->data;
4260
4261       g_object_freeze_notify (G_OBJECT (info->cell));
4262
4263       for (j = info->attributes; j && j->next; j = j->next->next)
4264         {
4265           gchar *property = j->data;
4266           gint column = GPOINTER_TO_INT (j->next->data);
4267           GValue value = {0, };
4268
4269           gtk_tree_model_get_value (icon_view->priv->model, &iter,
4270                                     column, &value);
4271           g_object_set_property (G_OBJECT (info->cell),
4272                                  property, &value);
4273           g_value_unset (&value);
4274         }
4275
4276       if (info->func)
4277         (* info->func) (GTK_CELL_LAYOUT (icon_view),
4278                         info->cell,
4279                         icon_view->priv->model,
4280                         &iter,
4281                         info->func_data);
4282       
4283       g_object_thaw_notify (G_OBJECT (info->cell));
4284     }  
4285 }
4286
4287 static void 
4288 free_cell_attributes (GtkIconViewCellInfo *info)
4289
4290   GSList *list;
4291
4292   list = info->attributes;
4293   while (list && list->next)
4294     {
4295       g_free (list->data);
4296       list = list->next->next;
4297     }
4298   
4299   g_slist_free (info->attributes);
4300   info->attributes = NULL;
4301 }
4302
4303 static void
4304 free_cell_info (GtkIconViewCellInfo *info)
4305 {
4306   free_cell_attributes (info);
4307
4308   g_object_unref (info->cell);
4309   
4310   if (info->destroy)
4311     (* info->destroy) (info->func_data);
4312
4313   g_free (info);
4314 }
4315
4316 static void
4317 gtk_icon_view_cell_layout_pack_start (GtkCellLayout   *layout,
4318                                       GtkCellRenderer *renderer,
4319                                       gboolean         expand)
4320 {
4321   GtkIconViewCellInfo *info;
4322   GtkIconView *icon_view = GTK_ICON_VIEW (layout);
4323
4324   g_return_if_fail (GTK_IS_CELL_RENDERER (renderer));
4325   g_return_if_fail (!gtk_icon_view_get_cell_info (icon_view, renderer));
4326
4327   g_object_ref_sink (renderer);
4328
4329   info = g_new0 (GtkIconViewCellInfo, 1);
4330   info->cell = renderer;
4331   info->expand = expand ? TRUE : FALSE;
4332   info->pack = GTK_PACK_START;
4333   info->position = icon_view->priv->n_cells;
4334   
4335   icon_view->priv->cell_list = g_list_append (icon_view->priv->cell_list, info);
4336   icon_view->priv->n_cells++;
4337 }
4338
4339 static void
4340 gtk_icon_view_cell_layout_pack_end (GtkCellLayout   *layout,
4341                                     GtkCellRenderer *renderer,
4342                                     gboolean         expand)
4343 {
4344   GtkIconViewCellInfo *info;
4345   GtkIconView *icon_view = GTK_ICON_VIEW (layout);
4346
4347   g_return_if_fail (GTK_IS_CELL_RENDERER (renderer));
4348   g_return_if_fail (!gtk_icon_view_get_cell_info (icon_view, renderer));
4349
4350   g_object_ref_sink (renderer);
4351
4352   info = g_new0 (GtkIconViewCellInfo, 1);
4353   info->cell = renderer;
4354   info->expand = expand ? TRUE : FALSE;
4355   info->pack = GTK_PACK_END;
4356   info->position = icon_view->priv->n_cells;
4357
4358   icon_view->priv->cell_list = g_list_append (icon_view->priv->cell_list, info);
4359   icon_view->priv->n_cells++;
4360 }
4361
4362 static void
4363 gtk_icon_view_cell_layout_add_attribute (GtkCellLayout   *layout,
4364                                          GtkCellRenderer *renderer,
4365                                          const gchar     *attribute,
4366                                          gint             column)
4367 {
4368   GtkIconViewCellInfo *info;
4369   GtkIconView *icon_view = GTK_ICON_VIEW (layout);
4370
4371   info = gtk_icon_view_get_cell_info (icon_view, renderer);
4372   g_return_if_fail (info != NULL);
4373
4374   info->attributes = g_slist_prepend (info->attributes,
4375                                       GINT_TO_POINTER (column));
4376   info->attributes = g_slist_prepend (info->attributes,
4377                                       g_strdup (attribute));
4378 }
4379
4380 static void
4381 gtk_icon_view_cell_layout_clear (GtkCellLayout *layout)
4382 {
4383   GtkIconView *icon_view = GTK_ICON_VIEW (layout);
4384
4385   while (icon_view->priv->cell_list)
4386     {
4387       GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)icon_view->priv->cell_list->data;
4388       free_cell_info (info);
4389       icon_view->priv->cell_list = g_list_delete_link (icon_view->priv->cell_list, 
4390                                                        icon_view->priv->cell_list);
4391     }
4392
4393   icon_view->priv->n_cells = 0;
4394 }
4395
4396 static void
4397 gtk_icon_view_cell_layout_set_cell_data_func (GtkCellLayout         *layout,
4398                                               GtkCellRenderer       *cell,
4399                                               GtkCellLayoutDataFunc  func,
4400                                               gpointer               func_data,
4401                                               GDestroyNotify         destroy)
4402 {
4403   GtkIconViewCellInfo *info;
4404   GtkIconView *icon_view = GTK_ICON_VIEW (layout);
4405
4406   info = gtk_icon_view_get_cell_info (icon_view, cell);
4407   g_return_if_fail (info != NULL);
4408
4409   if (info->destroy)
4410     {
4411       GDestroyNotify d = info->destroy;
4412
4413       info->destroy = NULL;
4414       d (info->func_data);
4415     }
4416
4417   info->func = func;
4418   info->func_data = func_data;
4419   info->destroy = destroy;
4420 }
4421
4422 static void
4423 gtk_icon_view_cell_layout_clear_attributes (GtkCellLayout   *layout,
4424                                             GtkCellRenderer *renderer)
4425 {
4426   GtkIconViewCellInfo *info;
4427
4428   info = gtk_icon_view_get_cell_info (GTK_ICON_VIEW (layout), renderer);
4429   if (info != NULL)
4430     free_cell_attributes (info);
4431 }
4432
4433 static void
4434 gtk_icon_view_cell_layout_reorder (GtkCellLayout   *layout,
4435                                    GtkCellRenderer *cell,
4436                                    gint             position)
4437 {
4438   GtkIconView *icon_view;
4439   GList *link, *l;
4440   GtkIconViewCellInfo *info;
4441   gint i;
4442
4443   icon_view = GTK_ICON_VIEW (layout);
4444
4445   g_return_if_fail (GTK_IS_CELL_RENDERER (cell));
4446
4447   info = gtk_icon_view_get_cell_info (icon_view, cell);
4448
4449   g_return_if_fail (info != NULL);
4450   g_return_if_fail (position >= 0);
4451
4452   link = g_list_find (icon_view->priv->cell_list, info);
4453
4454   g_return_if_fail (link != NULL);
4455
4456   icon_view->priv->cell_list = g_list_remove_link (icon_view->priv->cell_list,
4457                                                   link);
4458   icon_view->priv->cell_list = g_list_insert (icon_view->priv->cell_list,
4459                                              info, position);
4460
4461   for (l = icon_view->priv->cell_list, i = 0; l; l = l->next, i++)
4462     {
4463       info = l->data;
4464
4465       info->position = i;
4466     }
4467
4468   gtk_widget_queue_draw (GTK_WIDGET (icon_view));
4469 }
4470
4471 static GList *
4472 gtk_icon_view_cell_layout_get_cells (GtkCellLayout *layout)
4473 {
4474   GtkIconView *icon_view = (GtkIconView *)layout;
4475   GList *retval = NULL, *l;
4476
4477   for (l = icon_view->priv->cell_list; l; l = l->next)
4478     {
4479       GtkIconViewCellInfo *info = (GtkIconViewCellInfo *)l->data;
4480
4481       retval = g_list_prepend (retval, info->cell);
4482     }
4483
4484   return g_list_reverse (retval);
4485 }
4486
4487 /* Public API */
4488
4489
4490 /**
4491  * gtk_icon_view_new:
4492  * 
4493  * Creates a new #GtkIconView widget
4494  * 
4495  * Return value: A newly created #GtkIconView widget
4496  *
4497  * Since: 2.6
4498  **/
4499 GtkWidget *
4500 gtk_icon_view_new (void)
4501 {
4502   return g_object_new (GTK_TYPE_ICON_VIEW, NULL);
4503 }
4504
4505 /**
4506  * gtk_icon_view_new_with_model:
4507  * @model: The model.
4508  * 
4509  * Creates a new #GtkIconView widget with the model @model.
4510  * 
4511  * Return value: A newly created #GtkIconView widget.
4512  *
4513  * Since: 2.6 
4514  **/
4515 GtkWidget *
4516 gtk_icon_view_new_with_model (GtkTreeModel *model)
4517 {
4518   return g_object_new (GTK_TYPE_ICON_VIEW, "model", model, NULL);
4519 }
4520
4521
4522 /**
4523  * gtk_icon_view_get_path_at_pos:
4524  * @icon_view: A #GtkIconView.
4525  * @x: The x position to be identified
4526  * @y: The y position to be identified
4527  * 
4528  * Finds the path at the point (@x, @y), relative to widget coordinates.
4529  * See gtk_icon_view_get_item_at_pos(), if you are also interested in
4530  * the cell at the specified position.
4531  * 
4532  * Return value: The #GtkTreePath corresponding to the icon or %NULL
4533  * if no icon exists at that position.
4534  *
4535  * Since: 2.6 
4536  **/
4537 GtkTreePath *
4538 gtk_icon_view_get_path_at_pos (GtkIconView *icon_view,
4539                                gint         x,
4540                                gint         y)
4541 {
4542   GtkIconViewItem *item;
4543   GtkTreePath *path;
4544   
4545   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), NULL);
4546
4547   item = gtk_icon_view_get_item_at_coords (icon_view, x, y, TRUE, NULL);
4548
4549   if (!item)
4550     return NULL;
4551
4552   path = gtk_tree_path_new_from_indices (item->index, -1);
4553
4554   return path;
4555 }
4556
4557 /**
4558  * gtk_icon_view_get_item_at_pos:
4559  * @icon_view: A #GtkIconView.
4560  * @x: The x position to be identified
4561  * @y: The y position to be identified
4562  * @path: Return location for the path, or %NULL
4563  * @cell: Return location for the renderer responsible for the cell
4564  *   at (@x, @y), or %NULL
4565  * 
4566  * Finds the path at the point (@x, @y), relative to widget coordinates.
4567  * In contrast to gtk_icon_view_get_path_at_pos(), this function also 
4568  * obtains the cell at the specified position. The returned path should
4569  * be freed with gtk_tree_path_free().
4570  * 
4571  * Return value: %TRUE if an item exists at the specified position
4572  *
4573  * Since: 2.8
4574  **/
4575 gboolean 
4576 gtk_icon_view_get_item_at_pos (GtkIconView      *icon_view,
4577                                gint              x,
4578                                gint              y,
4579                                GtkTreePath     **path,
4580                                GtkCellRenderer **cell)
4581 {
4582   GtkIconViewItem *item;
4583   GtkIconViewCellInfo *info;
4584   
4585   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
4586
4587   item = gtk_icon_view_get_item_at_coords (icon_view, x, y, TRUE, &info);
4588
4589   if (path != NULL)
4590     {
4591       if (item != NULL)
4592         *path = gtk_tree_path_new_from_indices (item->index, -1);
4593       else
4594         *path = NULL;
4595     }
4596
4597   if (cell != NULL)
4598     {
4599       if (info != NULL)
4600         *cell = info->cell;
4601       else 
4602         *cell = NULL;
4603     }
4604
4605   return (item != NULL);
4606 }
4607
4608
4609 /**
4610  * gtk_icon_view_get_visible_range:
4611  * @icon_view: A #GtkIconView
4612  * @start_path: Return location for start of region, or %NULL
4613  * @end_path: Return location for end of region, or %NULL
4614  * 
4615  * Sets @start_path and @end_path to be the first and last visible path. 
4616  * Note that there may be invisible paths in between.
4617  * 
4618  * Both paths should be freed with gtk_tree_path_free() after use.
4619  * 
4620  * Return value: %TRUE, if valid paths were placed in @start_path and @end_path
4621  *
4622  * Since: 2.8
4623  **/
4624 gboolean
4625 gtk_icon_view_get_visible_range (GtkIconView  *icon_view,
4626                                  GtkTreePath **start_path,
4627                                  GtkTreePath **end_path)
4628 {
4629   gint start_index = -1;
4630   gint end_index = -1;
4631   GList *icons;
4632
4633   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
4634
4635   if (icon_view->priv->hadjustment == NULL ||
4636       icon_view->priv->vadjustment == NULL)
4637     return FALSE;
4638
4639   if (start_path == NULL && end_path == NULL)
4640     return FALSE;
4641   
4642   for (icons = icon_view->priv->items; icons; icons = icons->next) 
4643     {
4644       GtkIconViewItem *item = icons->data;
4645
4646       if ((item->x + item->width >= (int)icon_view->priv->hadjustment->value) &&
4647           (item->y + item->height >= (int)icon_view->priv->vadjustment->value) &&
4648           (item->x <= (int) (icon_view->priv->hadjustment->value + icon_view->priv->hadjustment->page_size)) &&
4649           (item->y <= (int) (icon_view->priv->vadjustment->value + icon_view->priv->vadjustment->page_size)))
4650         {
4651           if (start_index == -1)
4652             start_index = item->index;
4653           end_index = item->index;
4654         }
4655     }
4656
4657   if (start_path && start_index != -1)
4658     *start_path = gtk_tree_path_new_from_indices (start_index, -1);
4659   if (end_path && end_index != -1)
4660     *end_path = gtk_tree_path_new_from_indices (end_index, -1);
4661   
4662   return start_index != -1;
4663 }
4664
4665 /**
4666  * gtk_icon_view_selected_foreach:
4667  * @icon_view: A #GtkIconView.
4668  * @func: The funcion to call for each selected icon.
4669  * @data: User data to pass to the function.
4670  * 
4671  * Calls a function for each selected icon. Note that the model or
4672  * selection cannot be modified from within this function.
4673  *
4674  * Since: 2.6 
4675  **/
4676 void
4677 gtk_icon_view_selected_foreach (GtkIconView           *icon_view,
4678                                 GtkIconViewForeachFunc func,
4679                                 gpointer               data)
4680 {
4681   GList *list;
4682   
4683   for (list = icon_view->priv->items; list; list = list->next)
4684     {
4685       GtkIconViewItem *item = list->data;
4686       GtkTreePath *path = gtk_tree_path_new_from_indices (item->index, -1);
4687
4688       if (item->selected)
4689         (* func) (icon_view, path, data);
4690
4691       gtk_tree_path_free (path);
4692     }
4693 }
4694
4695 /**
4696  * gtk_icon_view_set_selection_mode:
4697  * @icon_view: A #GtkIconView.
4698  * @mode: The selection mode
4699  * 
4700  * Sets the selection mode of the @icon_view.
4701  *
4702  * Since: 2.6 
4703  **/
4704 void
4705 gtk_icon_view_set_selection_mode (GtkIconView      *icon_view,
4706                                   GtkSelectionMode  mode)
4707 {
4708   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4709
4710   if (mode == icon_view->priv->selection_mode)
4711     return;
4712   
4713   if (mode == GTK_SELECTION_NONE ||
4714       icon_view->priv->selection_mode == GTK_SELECTION_MULTIPLE)
4715     gtk_icon_view_unselect_all (icon_view);
4716   
4717   icon_view->priv->selection_mode = mode;
4718
4719   g_object_notify (G_OBJECT (icon_view), "selection-mode");
4720 }
4721
4722 /**
4723  * gtk_icon_view_get_selection_mode:
4724  * @icon_view: A #GtkIconView.
4725  * 
4726  * Gets the selection mode of the @icon_view.
4727  *
4728  * Return value: the current selection mode
4729  *
4730  * Since: 2.6 
4731  **/
4732 GtkSelectionMode
4733 gtk_icon_view_get_selection_mode (GtkIconView *icon_view)
4734 {
4735   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), GTK_SELECTION_SINGLE);
4736
4737   return icon_view->priv->selection_mode;
4738 }
4739
4740 /**
4741  * gtk_icon_view_set_model:
4742  * @icon_view: A #GtkIconView.
4743  * @model: The model.
4744  *
4745  * Sets the model for a #GtkIconView.  
4746  * If the @icon_view already has a model set, it will remove 
4747  * it before setting the new model.  If @model is %NULL, then
4748  * it will unset the old model.
4749  *
4750  * Since: 2.6 
4751  **/
4752 void
4753 gtk_icon_view_set_model (GtkIconView *icon_view,
4754                          GtkTreeModel *model)
4755 {
4756   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
4757   g_return_if_fail (model == NULL || GTK_IS_TREE_MODEL (model));
4758   
4759   if (icon_view->priv->model == model)
4760     return;
4761
4762   if (icon_view->priv->scroll_to_path)
4763     {
4764       gtk_tree_row_reference_free (icon_view->priv->scroll_to_path);
4765       icon_view->priv->scroll_to_path = NULL;
4766     }
4767
4768   gtk_icon_view_stop_editing (icon_view, TRUE);
4769
4770   if (model)
4771     {
4772       GType column_type;
4773       
4774       g_return_if_fail (gtk_tree_model_get_flags (model) & GTK_TREE_MODEL_LIST_ONLY);
4775
4776       if (icon_view->priv->pixbuf_column != -1)
4777         {
4778           column_type = gtk_tree_model_get_column_type (model,
4779                                                         icon_view->priv->pixbuf_column);          
4780
4781           g_return_if_fail (column_type == GDK_TYPE_PIXBUF);
4782         }
4783
4784       if (icon_view->priv->text_column != -1)
4785         {
4786           column_type = gtk_tree_model_get_column_type (model,
4787                                                         icon_view->priv->text_column);    
4788
4789           g_return_if_fail (column_type == G_TYPE_STRING);
4790         }
4791
4792       if (icon_view->priv->markup_column != -1)
4793         {
4794           column_type = gtk_tree_model_get_column_type (model,
4795                                                         icon_view->priv->markup_column);          
4796
4797           g_return_if_fail (column_type == G_TYPE_STRING);
4798         }
4799       
4800     }
4801   
4802   if (icon_view->priv->model)
4803     {
4804       g_signal_handlers_disconnect_by_func (icon_view->priv->model,
4805                                             gtk_icon_view_row_changed,
4806                                             icon_view);
4807       g_signal_handlers_disconnect_by_func (icon_view->priv->model,
4808                                             gtk_icon_view_row_inserted,
4809                                             icon_view);
4810       g_signal_handlers_disconnect_by_func (icon_view->priv->model,
4811                                             gtk_icon_view_row_deleted,
4812                                             icon_view);
4813       g_signal_handlers_disconnect_by_func (icon_view->priv->model,
4814                                             gtk_icon_view_rows_reordered,
4815                                             icon_view);
4816
4817       g_object_unref (icon_view->priv->model);
4818       
4819       g_list_foreach (icon_view->priv->items, (GFunc)gtk_icon_view_item_free, NULL);
4820       g_list_free (icon_view->priv->items);
4821       icon_view->priv->items = NULL;
4822       icon_view->priv->anchor_item = NULL;
4823       icon_view->priv->cursor_item = NULL;
4824       icon_view->priv->last_single_clicked = NULL;
4825       icon_view->priv->width = 0;
4826       icon_view->priv->height = 0;
4827     }
4828
4829   icon_view->priv->model = model;
4830
4831   if (icon_view->priv->model)
4832     {
4833       g_object_ref (icon_view->priv->model);
4834       g_signal_connect (icon_view->priv->model,
4835                         "row_changed",
4836                         G_CALLBACK (gtk_icon_view_row_changed),
4837                         icon_view);
4838       g_signal_connect (icon_view->priv->model,
4839                         "row_inserted",
4840                         G_CALLBACK (gtk_icon_view_row_inserted),
4841                         icon_view);
4842       g_signal_connect (icon_view->priv->model,
4843                         "row_deleted",
4844                         G_CALLBACK (gtk_icon_view_row_deleted),
4845                         icon_view);
4846       g_signal_connect (icon_view->priv->model,
4847                         "rows_reordered",
4848                         G_CALLBACK (gtk_icon_view_rows_reordered),
4849                         icon_view);
4850
4851       gtk_icon_view_build_items (icon_view);
4852
4853       gtk_icon_view_queue_layout (icon_view);
4854     }
4855
4856   g_object_notify (G_OBJECT (icon_view), "model");  
4857
4858   if (GTK_WIDGET_REALIZED (icon_view))
4859     gtk_widget_queue_resize (GTK_WIDGET (icon_view));
4860 }
4861
4862 /**
4863  * gtk_icon_view_get_model:
4864  * @icon_view: a #GtkIconView
4865  *
4866  * Returns the model the #GtkIconView is based on.  Returns %NULL if the
4867  * model is unset.
4868  *
4869  * Return value: A #GtkTreeModel, or %NULL if none is currently being used.
4870  *
4871  * Since: 2.6 
4872  **/
4873 GtkTreeModel *
4874 gtk_icon_view_get_model (GtkIconView *icon_view)
4875 {
4876   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), NULL);
4877
4878   return icon_view->priv->model;
4879 }
4880
4881 static void
4882 update_text_cell (GtkIconView *icon_view)
4883 {
4884   GtkIconViewCellInfo *info;
4885   GList *l;
4886   gint i;
4887           
4888   if (icon_view->priv->text_column == -1 &&
4889       icon_view->priv->markup_column == -1)
4890     {
4891       if (icon_view->priv->text_cell != -1)
4892         {
4893           if (icon_view->priv->pixbuf_cell > icon_view->priv->text_cell)
4894             icon_view->priv->pixbuf_cell--;
4895
4896           info = g_list_nth_data (icon_view->priv->cell_list, 
4897                                   icon_view->priv->text_cell);
4898           
4899           icon_view->priv->cell_list = g_list_remove (icon_view->priv->cell_list, info);
4900           
4901           free_cell_info (info);
4902           
4903           icon_view->priv->n_cells--;
4904           icon_view->priv->text_cell = -1;
4905         }
4906     }
4907   else 
4908     {
4909       if (icon_view->priv->text_cell == -1)
4910         {
4911           GtkCellRenderer *cell = gtk_cell_renderer_text_new ();
4912           gtk_cell_layout_pack_end (GTK_CELL_LAYOUT (icon_view), cell, FALSE);
4913           for (l = icon_view->priv->cell_list, i = 0; l; l = l->next, i++)
4914             {
4915               info = l->data;
4916               if (info->cell == cell)
4917                 {
4918                   icon_view->priv->text_cell = i;
4919                   break;
4920                 }
4921             }
4922         }
4923       
4924       info = g_list_nth_data (icon_view->priv->cell_list,
4925                               icon_view->priv->text_cell);
4926
4927       if (icon_view->priv->markup_column != -1)
4928         gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (icon_view),
4929                                         info->cell, 
4930                                         "markup", icon_view->priv->markup_column, 
4931                                         NULL);
4932       else
4933         gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (icon_view),
4934                                         info->cell, 
4935                                         "text", icon_view->priv->text_column, 
4936                                         NULL);
4937
4938       if (icon_view->priv->orientation == GTK_ORIENTATION_VERTICAL)
4939         g_object_set (info->cell,
4940                       "alignment", PANGO_ALIGN_CENTER,
4941                       "wrap-mode", PANGO_WRAP_WORD_CHAR,
4942                       "xalign", 0.0,
4943                       "yalign", 0.0,
4944                       NULL);
4945       else
4946         g_object_set (info->cell,
4947                       "alignment", PANGO_ALIGN_LEFT,
4948                       "wrap-mode", PANGO_WRAP_WORD_CHAR,
4949                       "xalign", 0.0,
4950                       "yalign", 0.0,
4951                       NULL);
4952     }
4953 }
4954
4955 static void
4956 update_pixbuf_cell (GtkIconView *icon_view)
4957 {
4958   GtkIconViewCellInfo *info;
4959   GList *l;
4960   gint i;
4961
4962   if (icon_view->priv->pixbuf_column == -1)
4963     {
4964       if (icon_view->priv->pixbuf_cell != -1)
4965         {
4966           if (icon_view->priv->text_cell > icon_view->priv->pixbuf_cell)
4967             icon_view->priv->text_cell--;
4968
4969           info = g_list_nth_data (icon_view->priv->cell_list, 
4970                                   icon_view->priv->pixbuf_cell);
4971           
4972           icon_view->priv->cell_list = g_list_remove (icon_view->priv->cell_list, info);
4973           
4974           free_cell_info (info);
4975           
4976           icon_view->priv->n_cells--;
4977           icon_view->priv->pixbuf_cell = -1;
4978         }
4979     }
4980   else 
4981     {
4982       if (icon_view->priv->pixbuf_cell == -1)
4983         {
4984           GtkCellRenderer *cell = gtk_cell_renderer_pixbuf_new ();
4985           
4986           gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (icon_view), cell, FALSE);
4987           for (l = icon_view->priv->cell_list, i = 0; l; l = l->next, i++)
4988             {
4989               info = l->data;
4990               if (info->cell == cell)
4991                 {
4992                   icon_view->priv->pixbuf_cell = i;
4993                   break;
4994                 }
4995             }
4996         }
4997       
4998         info = g_list_nth_data (icon_view->priv->cell_list, 
4999                                 icon_view->priv->pixbuf_cell);
5000         
5001         gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (icon_view),
5002                                         info->cell, 
5003                                         "pixbuf", icon_view->priv->pixbuf_column, 
5004                                         NULL);
5005
5006         if (icon_view->priv->orientation == GTK_ORIENTATION_VERTICAL)
5007           g_object_set (info->cell,
5008                         "follow-state", TRUE, 
5009                         "xalign", 0.5,
5010                         "yalign", 1.0,
5011                         NULL);
5012         else
5013           g_object_set (info->cell,
5014                         "follow-state", TRUE, 
5015                         "xalign", 0.0,
5016                         "yalign", 0.0,
5017                         NULL);
5018     }
5019 }
5020
5021 /**
5022  * gtk_icon_view_set_text_column:
5023  * @icon_view: A #GtkIconView.
5024  * @column: A column in the currently used model, or -1 to display no text
5025  * 
5026  * Sets the column with text for @icon_view to be @column. The text
5027  * column must be of type #G_TYPE_STRING.
5028  *
5029  * Since: 2.6 
5030  **/
5031 void
5032 gtk_icon_view_set_text_column (GtkIconView *icon_view,
5033                                gint          column)
5034 {
5035   if (column == icon_view->priv->text_column)
5036     return;
5037   
5038   if (column == -1)
5039     icon_view->priv->text_column = -1;
5040   else
5041     {
5042       if (icon_view->priv->model != NULL)
5043         {
5044           GType column_type;
5045           
5046           column_type = gtk_tree_model_get_column_type (icon_view->priv->model, column);
5047
5048           g_return_if_fail (column_type == G_TYPE_STRING);
5049         }
5050       
5051       icon_view->priv->text_column = column;
5052     }
5053
5054   gtk_icon_view_stop_editing (icon_view, TRUE);
5055
5056   update_text_cell (icon_view);
5057
5058   gtk_icon_view_invalidate_sizes (icon_view);
5059   gtk_icon_view_queue_layout (icon_view);
5060   
5061   g_object_notify (G_OBJECT (icon_view), "text-column");
5062 }
5063
5064 /**
5065  * gtk_icon_view_get_text_column:
5066  * @icon_view: A #GtkIconView.
5067  *
5068  * Returns the column with text for @icon_view.
5069  *
5070  * Returns: the text column, or -1 if it's unset.
5071  *
5072  * Since: 2.6
5073  */
5074 gint
5075 gtk_icon_view_get_text_column (GtkIconView  *icon_view)
5076 {
5077   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5078
5079   return icon_view->priv->text_column;
5080 }
5081
5082 /**
5083  * gtk_icon_view_set_markup_column:
5084  * @icon_view: A #GtkIconView.
5085  * @column: A column in the currently used model, or -1 to display no text
5086  * 
5087  * Sets the column with markup information for @icon_view to be
5088  * @column. The markup column must be of type #G_TYPE_STRING.
5089  * If the markup column is set to something, it overrides
5090  * the text column set by gtk_icon_view_set_text_column().
5091  *
5092  * Since: 2.6
5093  **/
5094 void
5095 gtk_icon_view_set_markup_column (GtkIconView *icon_view,
5096                                  gint         column)
5097 {
5098   if (column == icon_view->priv->markup_column)
5099     return;
5100   
5101   if (column == -1)
5102     icon_view->priv->markup_column = -1;
5103   else
5104     {
5105       if (icon_view->priv->model != NULL)
5106         {
5107           GType column_type;
5108           
5109           column_type = gtk_tree_model_get_column_type (icon_view->priv->model, column);
5110
5111           g_return_if_fail (column_type == G_TYPE_STRING);
5112         }
5113       
5114       icon_view->priv->markup_column = column;
5115     }
5116
5117   gtk_icon_view_stop_editing (icon_view, TRUE);
5118
5119   update_text_cell (icon_view);
5120
5121   gtk_icon_view_invalidate_sizes (icon_view);
5122   gtk_icon_view_queue_layout (icon_view);
5123   
5124   g_object_notify (G_OBJECT (icon_view), "markup-column");
5125 }
5126
5127 /**
5128  * gtk_icon_view_get_markup_column:
5129  * @icon_view: A #GtkIconView.
5130  *
5131  * Returns the column with markup text for @icon_view.
5132  *
5133  * Returns: the markup column, or -1 if it's unset.
5134  *
5135  * Since: 2.6
5136  */
5137 gint
5138 gtk_icon_view_get_markup_column (GtkIconView  *icon_view)
5139 {
5140   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5141
5142   return icon_view->priv->markup_column;
5143 }
5144
5145 /**
5146  * gtk_icon_view_set_pixbuf_column:
5147  * @icon_view: A #GtkIconView.
5148  * @column: A column in the currently used model, or -1 to disable
5149  * 
5150  * Sets the column with pixbufs for @icon_view to be @column. The pixbuf
5151  * column must be of type #GDK_TYPE_PIXBUF
5152  *
5153  * Since: 2.6 
5154  **/
5155 void
5156 gtk_icon_view_set_pixbuf_column (GtkIconView *icon_view,
5157                                  gint         column)
5158 {
5159   if (column == icon_view->priv->pixbuf_column)
5160     return;
5161   
5162   if (column == -1)
5163     icon_view->priv->pixbuf_column = -1;
5164   else
5165     {
5166       if (icon_view->priv->model != NULL)
5167         {
5168           GType column_type;
5169           
5170           column_type = gtk_tree_model_get_column_type (icon_view->priv->model, column);
5171
5172           g_return_if_fail (column_type == GDK_TYPE_PIXBUF);
5173         }
5174       
5175       icon_view->priv->pixbuf_column = column;
5176     }
5177
5178   gtk_icon_view_stop_editing (icon_view, TRUE);
5179
5180   update_pixbuf_cell (icon_view);
5181
5182   gtk_icon_view_invalidate_sizes (icon_view);
5183   gtk_icon_view_queue_layout (icon_view);
5184   
5185   g_object_notify (G_OBJECT (icon_view), "pixbuf-column");
5186   
5187 }
5188
5189 /**
5190  * gtk_icon_view_get_pixbuf_column:
5191  * @icon_view: A #GtkIconView.
5192  *
5193  * Returns the column with pixbufs for @icon_view.
5194  *
5195  * Returns: the pixbuf column, or -1 if it's unset.
5196  *
5197  * Since: 2.6
5198  */
5199 gint
5200 gtk_icon_view_get_pixbuf_column (GtkIconView  *icon_view)
5201 {
5202   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5203
5204   return icon_view->priv->pixbuf_column;
5205 }
5206
5207 /**
5208  * gtk_icon_view_select_path:
5209  * @icon_view: A #GtkIconView.
5210  * @path: The #GtkTreePath to be selected.
5211  * 
5212  * Selects the row at @path.
5213  *
5214  * Since: 2.6
5215  **/
5216 void
5217 gtk_icon_view_select_path (GtkIconView *icon_view,
5218                            GtkTreePath *path)
5219 {
5220   GtkIconViewItem *item = NULL;
5221
5222   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5223   g_return_if_fail (icon_view->priv->model != NULL);
5224   g_return_if_fail (path != NULL);
5225
5226   if (gtk_tree_path_get_depth (path) > 0)
5227     item = g_list_nth_data (icon_view->priv->items,
5228                             gtk_tree_path_get_indices(path)[0]);
5229
5230   if (item)
5231     gtk_icon_view_select_item (icon_view, item);
5232 }
5233
5234 /**
5235  * gtk_icon_view_unselect_path:
5236  * @icon_view: A #GtkIconView.
5237  * @path: The #GtkTreePath to be unselected.
5238  * 
5239  * Unselects the row at @path.
5240  *
5241  * Since: 2.6
5242  **/
5243 void
5244 gtk_icon_view_unselect_path (GtkIconView *icon_view,
5245                              GtkTreePath *path)
5246 {
5247   GtkIconViewItem *item;
5248   
5249   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5250   g_return_if_fail (icon_view->priv->model != NULL);
5251   g_return_if_fail (path != NULL);
5252
5253   item = g_list_nth_data (icon_view->priv->items,
5254                           gtk_tree_path_get_indices(path)[0]);
5255
5256   if (!item)
5257     return;
5258   
5259   gtk_icon_view_unselect_item (icon_view, item);
5260 }
5261
5262 /**
5263  * gtk_icon_view_get_selected_items:
5264  * @icon_view: A #GtkIconView.
5265  *
5266  * Creates a list of paths of all selected items. Additionally, if you are
5267  * planning on modifying the model after calling this function, you may
5268  * want to convert the returned list into a list of #GtkTreeRowReference<!-- -->s.
5269  * To do this, you can use gtk_tree_row_reference_new().
5270  *
5271  * To free the return value, use:
5272  * <informalexample><programlisting>
5273  * g_list_foreach (list, gtk_tree_path_free, NULL);
5274  * g_list_free (list);
5275  * </programlisting></informalexample>
5276  *
5277  * Return value: A #GList containing a #GtkTreePath for each selected row.
5278  *
5279  * Since: 2.6
5280  **/
5281 GList *
5282 gtk_icon_view_get_selected_items (GtkIconView *icon_view)
5283 {
5284   GList *list;
5285   GList *selected = NULL;
5286   
5287   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), NULL);
5288   
5289   for (list = icon_view->priv->items; list != NULL; list = list->next)
5290     {
5291       GtkIconViewItem *item = list->data;
5292
5293       if (item->selected)
5294         {
5295           GtkTreePath *path = gtk_tree_path_new_from_indices (item->index, -1);
5296
5297           selected = g_list_prepend (selected, path);
5298         }
5299     }
5300
5301   return selected;
5302 }
5303
5304 /**
5305  * gtk_icon_view_select_all:
5306  * @icon_view: A #GtkIconView.
5307  * 
5308  * Selects all the icons. @icon_view must has its selection mode set
5309  * to #GTK_SELECTION_MULTIPLE.
5310  *
5311  * Since: 2.6
5312  **/
5313 void
5314 gtk_icon_view_select_all (GtkIconView *icon_view)
5315 {
5316   GList *items;
5317   gboolean dirty = FALSE;
5318   
5319   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5320
5321   if (icon_view->priv->selection_mode != GTK_SELECTION_MULTIPLE)
5322     return;
5323
5324   for (items = icon_view->priv->items; items; items = items->next)
5325     {
5326       GtkIconViewItem *item = items->data;
5327       
5328       if (!item->selected)
5329         {
5330           dirty = TRUE;
5331           item->selected = TRUE;
5332           gtk_icon_view_queue_draw_item (icon_view, item);
5333         }
5334     }
5335
5336   if (dirty)
5337     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
5338 }
5339
5340 /**
5341  * gtk_icon_view_unselect_all:
5342  * @icon_view: A #GtkIconView.
5343  * 
5344  * Unselects all the icons.
5345  *
5346  * Since: 2.6
5347  **/
5348 void
5349 gtk_icon_view_unselect_all (GtkIconView *icon_view)
5350 {
5351   gboolean dirty = FALSE;
5352   
5353   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5354
5355   if (icon_view->priv->selection_mode == GTK_SELECTION_BROWSE)
5356     return;
5357
5358   dirty = gtk_icon_view_unselect_all_internal (icon_view);
5359
5360   if (dirty)
5361     g_signal_emit (icon_view, icon_view_signals[SELECTION_CHANGED], 0);
5362 }
5363
5364 /**
5365  * gtk_icon_view_path_is_selected:
5366  * @icon_view: A #GtkIconView.
5367  * @path: A #GtkTreePath to check selection on.
5368  * 
5369  * Returns %TRUE if the icon pointed to by @path is currently
5370  * selected. If @path does not point to a valid location, %FALSE is returned.
5371  * 
5372  * Return value: %TRUE if @path is selected.
5373  *
5374  * Since: 2.6
5375  **/
5376 gboolean
5377 gtk_icon_view_path_is_selected (GtkIconView *icon_view,
5378                                 GtkTreePath *path)
5379 {
5380   GtkIconViewItem *item;
5381   
5382   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
5383   g_return_val_if_fail (icon_view->priv->model != NULL, FALSE);
5384   g_return_val_if_fail (path != NULL, FALSE);
5385   
5386   item = g_list_nth_data (icon_view->priv->items,
5387                           gtk_tree_path_get_indices(path)[0]);
5388
5389   if (!item)
5390     return FALSE;
5391   
5392   return item->selected;
5393 }
5394
5395 /**
5396  * gtk_icon_view_item_activated:
5397  * @icon_view: A #GtkIconView
5398  * @path: The #GtkTreePath to be activated
5399  * 
5400  * Activates the item determined by @path.
5401  *
5402  * Since: 2.6
5403  **/
5404 void
5405 gtk_icon_view_item_activated (GtkIconView      *icon_view,
5406                               GtkTreePath      *path)
5407 {
5408   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5409   g_return_if_fail (path != NULL);
5410   
5411   g_signal_emit (icon_view, icon_view_signals[ITEM_ACTIVATED], 0, path);
5412 }
5413
5414 /**
5415  * gtk_icon_view_set_orientation:
5416  * @icon_view: a #GtkIconView
5417  * @orientation: the relative position of texts and icons 
5418  * 
5419  * Sets the ::orientation property which determines whether the labels 
5420  * are drawn beside the icons instead of below.
5421  *
5422  * Since: 2.6
5423  **/
5424 void 
5425 gtk_icon_view_set_orientation (GtkIconView    *icon_view,
5426                                GtkOrientation  orientation)
5427 {
5428   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5429
5430   if (icon_view->priv->orientation != orientation)
5431     {
5432       icon_view->priv->orientation = orientation;
5433
5434       gtk_icon_view_stop_editing (icon_view, TRUE);
5435       gtk_icon_view_invalidate_sizes (icon_view);
5436       gtk_icon_view_queue_layout (icon_view);
5437
5438       update_text_cell (icon_view);
5439       update_pixbuf_cell (icon_view);
5440       
5441       g_object_notify (G_OBJECT (icon_view), "orientation");
5442     }
5443 }
5444
5445 /**
5446  * gtk_icon_view_get_orientation:
5447  * @icon_view: a #GtkIconView
5448  * 
5449  * Returns the value of the ::orientation property which determines 
5450  * whether the labels are drawn beside the icons instead of below. 
5451  * 
5452  * Return value: the relative position of texts and icons 
5453  *
5454  * Since: 2.6
5455  **/
5456 GtkOrientation
5457 gtk_icon_view_get_orientation (GtkIconView *icon_view)
5458 {
5459   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), 
5460                         GTK_ORIENTATION_VERTICAL);
5461
5462   return icon_view->priv->orientation;
5463 }
5464
5465 /**
5466  * gtk_icon_view_set_columns:
5467  * @icon_view: a #GtkIconView
5468  * @columns: the number of columns
5469  * 
5470  * Sets the ::columns property which determines in how
5471  * many columns the icons are arranged. If @columns is
5472  * -1, the number of columns will be chosen automatically 
5473  * to fill the available area. 
5474  *
5475  * Since: 2.6
5476  */
5477 void 
5478 gtk_icon_view_set_columns (GtkIconView *icon_view,
5479                            gint         columns)
5480 {
5481   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5482   
5483   if (icon_view->priv->columns != columns)
5484     {
5485       icon_view->priv->columns = columns;
5486
5487       gtk_icon_view_stop_editing (icon_view, TRUE);
5488       gtk_icon_view_queue_layout (icon_view);
5489       
5490       g_object_notify (G_OBJECT (icon_view), "columns");
5491     }  
5492 }
5493
5494 /**
5495  * gtk_icon_view_get_columns:
5496  * @icon_view: a #GtkIconView
5497  * 
5498  * Returns the value of the ::columns property.
5499  * 
5500  * Return value: the number of columns, or -1
5501  *
5502  * Since: 2.6
5503  */
5504 gint
5505 gtk_icon_view_get_columns (GtkIconView *icon_view)
5506 {
5507   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5508
5509   return icon_view->priv->columns;
5510 }
5511
5512 /**
5513  * gtk_icon_view_set_item_width:
5514  * @icon_view: a #GtkIconView
5515  * @item_width: the width for each item
5516  * 
5517  * Sets the ::item-width property which specifies the width 
5518  * to use for each item. If it is set to -1, the icon view will 
5519  * automatically determine a suitable item size.
5520  *
5521  * Since: 2.6
5522  */
5523 void 
5524 gtk_icon_view_set_item_width (GtkIconView *icon_view,
5525                               gint         item_width)
5526 {
5527   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5528   
5529   if (icon_view->priv->item_width != item_width)
5530     {
5531       icon_view->priv->item_width = item_width;
5532       
5533       gtk_icon_view_stop_editing (icon_view, TRUE);
5534       gtk_icon_view_invalidate_sizes (icon_view);
5535       gtk_icon_view_queue_layout (icon_view);
5536       
5537       update_text_cell (icon_view);
5538
5539       g_object_notify (G_OBJECT (icon_view), "item-width");
5540     }  
5541 }
5542
5543 /**
5544  * gtk_icon_view_get_item_width:
5545  * @icon_view: a #GtkIconView
5546  * 
5547  * Returns the value of the ::item-width property.
5548  * 
5549  * Return value: the width of a single item, or -1
5550  *
5551  * Since: 2.6
5552  */
5553 gint
5554 gtk_icon_view_get_item_width (GtkIconView *icon_view)
5555 {
5556   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5557
5558   return icon_view->priv->item_width;
5559 }
5560
5561
5562 /**
5563  * gtk_icon_view_set_spacing:
5564  * @icon_view: a #GtkIconView
5565  * @spacing: the spacing
5566  * 
5567  * Sets the ::spacing property which specifies the space 
5568  * which is inserted between the cells (i.e. the icon and 
5569  * the text) of an item.
5570  *
5571  * Since: 2.6
5572  */
5573 void 
5574 gtk_icon_view_set_spacing (GtkIconView *icon_view,
5575                            gint         spacing)
5576 {
5577   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5578   
5579   if (icon_view->priv->spacing != spacing)
5580     {
5581       icon_view->priv->spacing = spacing;
5582
5583       gtk_icon_view_stop_editing (icon_view, TRUE);
5584       gtk_icon_view_invalidate_sizes (icon_view);
5585       gtk_icon_view_queue_layout (icon_view);
5586       
5587       g_object_notify (G_OBJECT (icon_view), "spacing");
5588     }  
5589 }
5590
5591 /**
5592  * gtk_icon_view_get_spacing:
5593  * @icon_view: a #GtkIconView
5594  * 
5595  * Returns the value of the ::spacing property.
5596  * 
5597  * Return value: the space between cells 
5598  *
5599  * Since: 2.6
5600  */
5601 gint
5602 gtk_icon_view_get_spacing (GtkIconView *icon_view)
5603 {
5604   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5605
5606   return icon_view->priv->spacing;
5607 }
5608
5609 /**
5610  * gtk_icon_view_set_row_spacing:
5611  * @icon_view: a #GtkIconView
5612  * @row_spacing: the row spacing
5613  * 
5614  * Sets the ::row-spacing property which specifies the space 
5615  * which is inserted between the rows of the icon view.
5616  *
5617  * Since: 2.6
5618  */
5619 void 
5620 gtk_icon_view_set_row_spacing (GtkIconView *icon_view,
5621                                gint         row_spacing)
5622 {
5623   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5624   
5625   if (icon_view->priv->row_spacing != row_spacing)
5626     {
5627       icon_view->priv->row_spacing = row_spacing;
5628
5629       gtk_icon_view_stop_editing (icon_view, TRUE);
5630       gtk_icon_view_invalidate_sizes (icon_view);
5631       gtk_icon_view_queue_layout (icon_view);
5632       
5633       g_object_notify (G_OBJECT (icon_view), "row-spacing");
5634     }  
5635 }
5636
5637 /**
5638  * gtk_icon_view_get_row_spacing:
5639  * @icon_view: a #GtkIconView
5640  * 
5641  * Returns the value of the ::row-spacing property.
5642  * 
5643  * Return value: the space between rows
5644  *
5645  * Since: 2.6
5646  */
5647 gint
5648 gtk_icon_view_get_row_spacing (GtkIconView *icon_view)
5649 {
5650   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5651
5652   return icon_view->priv->row_spacing;
5653 }
5654
5655 /**
5656  * gtk_icon_view_set_column_spacing:
5657  * @icon_view: a #GtkIconView
5658  * @column_spacing: the column spacing
5659  * 
5660  * Sets the ::column-spacing property which specifies the space 
5661  * which is inserted between the columns of the icon view.
5662  *
5663  * Since: 2.6
5664  */
5665 void 
5666 gtk_icon_view_set_column_spacing (GtkIconView *icon_view,
5667                                   gint         column_spacing)
5668 {
5669   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5670   
5671   if (icon_view->priv->column_spacing != column_spacing)
5672     {
5673       icon_view->priv->column_spacing = column_spacing;
5674
5675       gtk_icon_view_stop_editing (icon_view, TRUE);
5676       gtk_icon_view_invalidate_sizes (icon_view);
5677       gtk_icon_view_queue_layout (icon_view);
5678       
5679       g_object_notify (G_OBJECT (icon_view), "column-spacing");
5680     }  
5681 }
5682
5683 /**
5684  * gtk_icon_view_get_column_spacing:
5685  * @icon_view: a #GtkIconView
5686  * 
5687  * Returns the value of the ::column-spacing property.
5688  * 
5689  * Return value: the space between columns
5690  *
5691  * Since: 2.6
5692  */
5693 gint
5694 gtk_icon_view_get_column_spacing (GtkIconView *icon_view)
5695 {
5696   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5697
5698   return icon_view->priv->column_spacing;
5699 }
5700
5701 /**
5702  * gtk_icon_view_set_margin:
5703  * @icon_view: a #GtkIconView
5704  * @margin: the margin
5705  * 
5706  * Sets the ::margin property which specifies the space 
5707  * which is inserted at the top, bottom, left and right 
5708  * of the icon view.
5709  *
5710  * Since: 2.6
5711  */
5712 void 
5713 gtk_icon_view_set_margin (GtkIconView *icon_view,
5714                           gint         margin)
5715 {
5716   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
5717   
5718   if (icon_view->priv->margin != margin)
5719     {
5720       icon_view->priv->margin = margin;
5721
5722       gtk_icon_view_stop_editing (icon_view, TRUE);
5723       gtk_icon_view_invalidate_sizes (icon_view);
5724       gtk_icon_view_queue_layout (icon_view);
5725       
5726       g_object_notify (G_OBJECT (icon_view), "margin");
5727     }  
5728 }
5729
5730 /**
5731  * gtk_icon_view_get_margin:
5732  * @icon_view: a #GtkIconView
5733  * 
5734  * Returns the value of the ::margin property.
5735  * 
5736  * Return value: the space at the borders 
5737  *
5738  * Since: 2.6
5739  */
5740 gint
5741 gtk_icon_view_get_margin (GtkIconView *icon_view)
5742 {
5743   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), -1);
5744
5745   return icon_view->priv->margin;
5746 }
5747
5748
5749 /* Get/set whether drag_motion requested the drag data and
5750  * drag_data_received should thus not actually insert the data,
5751  * since the data doesn't result from a drop.
5752  */
5753 static void
5754 set_status_pending (GdkDragContext *context,
5755                     GdkDragAction   suggested_action)
5756 {
5757   g_object_set_data (G_OBJECT (context),
5758                      I_("gtk-icon-view-status-pending"),
5759                      GINT_TO_POINTER (suggested_action));
5760 }
5761
5762 static GdkDragAction
5763 get_status_pending (GdkDragContext *context)
5764 {
5765   return GPOINTER_TO_INT (g_object_get_data (G_OBJECT (context),
5766                                              "gtk-icon-view-status-pending"));
5767 }
5768
5769 static void
5770 unset_reorderable (GtkIconView *icon_view)
5771 {
5772   if (icon_view->priv->reorderable)
5773     {
5774       icon_view->priv->reorderable = FALSE;
5775       g_object_notify (G_OBJECT (icon_view), "reorderable");
5776     }
5777 }
5778
5779 static void
5780 clear_source_info (GtkIconView *icon_view)
5781 {
5782   if (icon_view->priv->source_targets)
5783     gtk_target_list_unref (icon_view->priv->source_targets);
5784   icon_view->priv->source_targets = NULL;
5785
5786   icon_view->priv->source_set = FALSE;
5787 }
5788
5789 static void
5790 clear_dest_info (GtkIconView *icon_view)
5791 {
5792   if (icon_view->priv->dest_targets)
5793     gtk_target_list_unref (icon_view->priv->dest_targets);
5794   icon_view->priv->dest_targets = NULL;
5795
5796   icon_view->priv->dest_set = FALSE;
5797 }
5798
5799 static void
5800 set_source_row (GdkDragContext *context,
5801                 GtkTreeModel   *model,
5802                 GtkTreePath    *source_row)
5803 {
5804   if (source_row)
5805     g_object_set_data_full (G_OBJECT (context),
5806                             I_("gtk-icon-view-source-row"),
5807                             gtk_tree_row_reference_new (model, source_row),
5808                             (GDestroyNotify) gtk_tree_row_reference_free);
5809   else
5810     g_object_set_data_full (G_OBJECT (context),
5811                             I_("gtk-icon-view-source-row"),
5812                             NULL, NULL);
5813 }
5814
5815 static GtkTreePath*
5816 get_source_row (GdkDragContext *context)
5817 {
5818   GtkTreeRowReference *ref;
5819
5820   ref = g_object_get_data (G_OBJECT (context), "gtk-icon-view-source-row");
5821
5822   if (ref)
5823     return gtk_tree_row_reference_get_path (ref);
5824   else
5825     return NULL;
5826 }
5827
5828 typedef struct
5829 {
5830   GtkTreeRowReference *dest_row;
5831   gboolean             empty_view_drop;
5832   gboolean             drop_append_mode;
5833 } DestRow;
5834
5835 static void
5836 dest_row_free (gpointer data)
5837 {
5838   DestRow *dr = (DestRow *)data;
5839
5840   gtk_tree_row_reference_free (dr->dest_row);
5841   g_free (dr);
5842 }
5843
5844 static void
5845 set_dest_row (GdkDragContext *context,
5846               GtkTreeModel   *model,
5847               GtkTreePath    *dest_row,
5848               gboolean        empty_view_drop,
5849               gboolean        drop_append_mode)
5850 {
5851   DestRow *dr;
5852
5853   if (!dest_row)
5854     {
5855       g_object_set_data_full (G_OBJECT (context),
5856                               I_("gtk-icon-view-dest-row"),
5857                               NULL, NULL);
5858       return;
5859     }
5860   
5861   dr = g_new0 (DestRow, 1);
5862      
5863   dr->dest_row = gtk_tree_row_reference_new (model, dest_row);
5864   dr->empty_view_drop = empty_view_drop;
5865   dr->drop_append_mode = drop_append_mode;
5866   g_object_set_data_full (G_OBJECT (context),
5867                           I_("gtk-icon-view-dest-row"),
5868                           dr, (GDestroyNotify) dest_row_free);
5869 }
5870
5871 static GtkTreePath*
5872 get_dest_row (GdkDragContext *context)
5873 {
5874   DestRow *dr;
5875
5876   dr = g_object_get_data (G_OBJECT (context), "gtk-icon-view-dest-row");
5877
5878   if (dr)
5879     {
5880       GtkTreePath *path = NULL;
5881       
5882       if (dr->dest_row)
5883         path = gtk_tree_row_reference_get_path (dr->dest_row);
5884       else if (dr->empty_view_drop)
5885         path = gtk_tree_path_new_from_indices (0, -1);
5886       else
5887         path = NULL;
5888
5889       if (path && dr->drop_append_mode)
5890         gtk_tree_path_next (path);
5891
5892       return path;
5893     }
5894   else
5895     return NULL;
5896 }
5897
5898 static gboolean
5899 check_model_dnd (GtkTreeModel *model,
5900                  GType         required_iface,
5901                  const gchar  *signal)
5902 {
5903   if (model == NULL || !G_TYPE_CHECK_INSTANCE_TYPE ((model), required_iface))
5904     {
5905       g_warning ("You must override the default '%s' handler "
5906                  "on GtkIconView when using models that don't support "
5907                  "the %s interface and enabling drag-and-drop. The simplest way to do this "
5908                  "is to connect to '%s' and call "
5909                  "g_signal_stop_emission_by_name() in your signal handler to prevent "
5910                  "the default handler from running. Look at the source code "
5911                  "for the default handler in gtkiconview.c to get an idea what "
5912                  "your handler should do. (gtkiconview.c is in the GTK+ source "
5913                  "code.) If you're using GTK+ from a language other than C, "
5914                  "there may be a more natural way to override default handlers, e.g. via derivation.",
5915                  signal, g_type_name (required_iface), signal);
5916       return FALSE;
5917     }
5918   else
5919     return TRUE;
5920 }
5921
5922 static void
5923 remove_scroll_timeout (GtkIconView *icon_view)
5924 {
5925   if (icon_view->priv->scroll_timeout_id != 0)
5926     {
5927       g_source_remove (icon_view->priv->scroll_timeout_id);
5928
5929       icon_view->priv->scroll_timeout_id = 0;
5930     }
5931 }
5932
5933 static void
5934 gtk_icon_view_autoscroll (GtkIconView *icon_view)
5935 {
5936   gint px, py, x, y, width, height;
5937   gint hoffset, voffset;
5938   gfloat value;
5939
5940   gdk_window_get_pointer (GTK_WIDGET (icon_view)->window, &px, &py, NULL);
5941   gdk_window_get_geometry (GTK_WIDGET (icon_view)->window, &x, &y, &width, &height, NULL);
5942
5943   /* see if we are near the edge. */
5944   voffset = py - (y + 2 * SCROLL_EDGE_SIZE);
5945   if (voffset > 0)
5946     voffset = MAX (py - (y + height - 2 * SCROLL_EDGE_SIZE), 0);
5947
5948   hoffset = px - (x + 2 * SCROLL_EDGE_SIZE);
5949   if (hoffset > 0)
5950     hoffset = MAX (px - (x + width - 2 * SCROLL_EDGE_SIZE), 0);
5951
5952   if (voffset != 0)
5953     {
5954       value = CLAMP (icon_view->priv->vadjustment->value + voffset, 
5955                      icon_view->priv->vadjustment->lower,
5956                      icon_view->priv->vadjustment->upper - icon_view->priv->vadjustment->page_size);
5957       gtk_adjustment_set_value (icon_view->priv->vadjustment, value);
5958     }
5959   if (hoffset != 0)
5960     {
5961       value = CLAMP (icon_view->priv->hadjustment->value + hoffset, 
5962                      icon_view->priv->hadjustment->lower,
5963                      icon_view->priv->hadjustment->upper - icon_view->priv->hadjustment->page_size);
5964       gtk_adjustment_set_value (icon_view->priv->hadjustment, value);
5965     }
5966 }
5967
5968
5969 static gboolean
5970 drag_scroll_timeout (gpointer data)
5971 {
5972   GtkIconView *icon_view = GTK_ICON_VIEW (data);
5973
5974   gtk_icon_view_autoscroll (icon_view);
5975
5976   return TRUE;
5977 }
5978
5979
5980 static gboolean
5981 set_destination (GtkIconView    *icon_view,
5982                  GdkDragContext *context,
5983                  gint            x,
5984                  gint            y,
5985                  GdkDragAction  *suggested_action,
5986                  GdkAtom        *target)
5987 {
5988   GtkWidget *widget;
5989   GtkTreePath *path = NULL;
5990   GtkIconViewDropPosition pos;
5991   GtkIconViewDropPosition old_pos;
5992   GtkTreePath *old_dest_path = NULL;
5993   gboolean can_drop = FALSE;
5994
5995   widget = GTK_WIDGET (icon_view);
5996
5997   *suggested_action = 0;
5998   *target = GDK_NONE;
5999
6000   if (!icon_view->priv->dest_set)
6001     {
6002       /* someone unset us as a drag dest, note that if
6003        * we return FALSE drag_leave isn't called
6004        */
6005
6006       gtk_icon_view_set_drag_dest_item (icon_view,
6007                                         NULL,
6008                                         GTK_ICON_VIEW_DROP_LEFT);
6009
6010       remove_scroll_timeout (GTK_ICON_VIEW (widget));
6011
6012       return FALSE; /* no longer a drop site */
6013     }
6014
6015   *target = gtk_drag_dest_find_target (widget, context, icon_view->priv->dest_targets);
6016   if (*target == GDK_NONE)
6017     return FALSE;
6018
6019   if (!gtk_icon_view_get_dest_item_at_pos (icon_view, x, y, &path, &pos)) 
6020     {
6021       gint n_children;
6022       GtkTreeModel *model;
6023       
6024       /* the row got dropped on empty space, let's setup a special case
6025        */
6026
6027       if (path)
6028         gtk_tree_path_free (path);
6029
6030       model = gtk_icon_view_get_model (icon_view);
6031
6032       n_children = gtk_tree_model_iter_n_children (model, NULL);
6033       if (n_children)
6034         {
6035           pos = GTK_ICON_VIEW_DROP_BELOW;
6036           path = gtk_tree_path_new_from_indices (n_children - 1, -1);
6037         }
6038       else
6039         {
6040           pos = GTK_ICON_VIEW_DROP_ABOVE;
6041           path = gtk_tree_path_new_from_indices (0, -1);
6042         }
6043
6044       can_drop = TRUE;
6045
6046       goto out;
6047     }
6048
6049   g_assert (path);
6050
6051   gtk_icon_view_get_drag_dest_item (icon_view,
6052                                     &old_dest_path,
6053                                     &old_pos);
6054   
6055   if (old_dest_path)
6056     gtk_tree_path_free (old_dest_path);
6057   
6058   if (TRUE /* FIXME if the location droppable predicate */)
6059     {
6060       can_drop = TRUE;
6061     }
6062
6063 out:
6064   if (can_drop)
6065     {
6066       GtkWidget *source_widget;
6067
6068       *suggested_action = context->suggested_action;
6069       source_widget = gtk_drag_get_source_widget (context);
6070
6071       if (source_widget == widget)
6072         {
6073           /* Default to MOVE, unless the user has
6074            * pressed ctrl or shift to affect available actions
6075            */
6076           if ((context->actions & GDK_ACTION_MOVE) != 0)
6077             *suggested_action = GDK_ACTION_MOVE;
6078         }
6079
6080       gtk_icon_view_set_drag_dest_item (GTK_ICON_VIEW (widget),
6081                                         path, pos);
6082     }
6083   else
6084     {
6085       /* can't drop here */
6086       gtk_icon_view_set_drag_dest_item (GTK_ICON_VIEW (widget),
6087                                         NULL,
6088                                         GTK_ICON_VIEW_DROP_LEFT);
6089     }
6090   
6091   if (path)
6092     gtk_tree_path_free (path);
6093   
6094   return TRUE;
6095 }
6096
6097 static GtkTreePath*
6098 get_logical_destination (GtkIconView *icon_view,
6099                          gboolean    *drop_append_mode)
6100 {
6101   /* adjust path to point to the row the drop goes in front of */
6102   GtkTreePath *path = NULL;
6103   GtkIconViewDropPosition pos;
6104   
6105   *drop_append_mode = FALSE;
6106
6107   gtk_icon_view_get_drag_dest_item (icon_view, &path, &pos);
6108
6109   if (path == NULL)
6110     return NULL;
6111
6112   if (pos == GTK_ICON_VIEW_DROP_RIGHT || 
6113       pos == GTK_ICON_VIEW_DROP_BELOW)
6114     {
6115       GtkTreeIter iter;
6116       GtkTreeModel *model = icon_view->priv->model;
6117
6118       if (!gtk_tree_model_get_iter (model, &iter, path) ||
6119           !gtk_tree_model_iter_next (model, &iter))
6120         *drop_append_mode = TRUE;
6121       else
6122         {
6123           *drop_append_mode = FALSE;
6124           gtk_tree_path_next (path);
6125         }      
6126     }
6127
6128   return path;
6129 }
6130
6131 static gboolean
6132 gtk_icon_view_maybe_begin_drag (GtkIconView    *icon_view,
6133                                 GdkEventMotion *event)
6134 {
6135   GdkDragContext *context;
6136   GtkTreePath *path = NULL;
6137   gint button;
6138   GtkTreeModel *model;
6139   gboolean retval = FALSE;
6140
6141   if (!icon_view->priv->source_set)
6142     goto out;
6143
6144   if (icon_view->priv->pressed_button < 0)
6145     goto out;
6146
6147   if (!gtk_drag_check_threshold (GTK_WIDGET (icon_view),
6148                                  icon_view->priv->press_start_x,
6149                                  icon_view->priv->press_start_y,
6150                                  event->x, event->y))
6151     goto out;
6152
6153   model = gtk_icon_view_get_model (icon_view);
6154
6155   if (model == NULL)
6156     goto out;
6157
6158   button = icon_view->priv->pressed_button;
6159   icon_view->priv->pressed_button = -1;
6160
6161   path = gtk_icon_view_get_path_at_pos (icon_view,
6162                                         icon_view->priv->press_start_x,
6163                                         icon_view->priv->press_start_y);
6164
6165   if (path == NULL)
6166     goto out;
6167
6168   if (!GTK_IS_TREE_DRAG_SOURCE (model) ||
6169       !gtk_tree_drag_source_row_draggable (GTK_TREE_DRAG_SOURCE (model),
6170                                            path))
6171     goto out;
6172
6173   /* FIXME Check whether we're a start button, if not return FALSE and
6174    * free path
6175    */
6176
6177   /* Now we can begin the drag */
6178   
6179   retval = TRUE;
6180
6181   context = gtk_drag_begin (GTK_WIDGET (icon_view),
6182                             icon_view->priv->source_targets,
6183                             icon_view->priv->source_actions,
6184                             button,
6185                             (GdkEvent*)event);
6186
6187   set_source_row (context, model, path);
6188   
6189  out:
6190   if (path)
6191     gtk_tree_path_free (path);
6192
6193   return retval;
6194 }
6195
6196 /* Source side drag signals */
6197 static void 
6198 gtk_icon_view_drag_begin (GtkWidget      *widget,
6199                           GdkDragContext *context)
6200 {
6201   GtkIconView *icon_view;
6202   GtkIconViewItem *item;
6203   GdkPixmap *icon;
6204   gint x, y;
6205   GtkTreePath *path;
6206
6207   icon_view = GTK_ICON_VIEW (widget);
6208
6209   /* if the user uses a custom DnD impl, we don't set the icon here */
6210   if (!icon_view->priv->dest_set && !icon_view->priv->source_set)
6211     return;
6212
6213   item = gtk_icon_view_get_item_at_coords (icon_view,
6214                                            icon_view->priv->press_start_x,
6215                                            icon_view->priv->press_start_y,
6216                                            TRUE,
6217                                            NULL);
6218
6219   g_return_if_fail (item != NULL);
6220
6221   x = icon_view->priv->press_start_x - item->x + 1;
6222   y = icon_view->priv->press_start_y - item->y + 1;
6223   
6224   path = gtk_tree_path_new_from_indices (item->index, -1);
6225   icon = gtk_icon_view_create_drag_icon (icon_view, path);
6226   gtk_tree_path_free (path);
6227
6228   gtk_drag_set_icon_pixmap (context, 
6229                             gdk_drawable_get_colormap (icon),
6230                             icon, 
6231                             NULL, 
6232                             x, y);
6233
6234   g_object_unref (icon);
6235 }
6236
6237 static void 
6238 gtk_icon_view_drag_end (GtkWidget      *widget,
6239                         GdkDragContext *context)
6240 {
6241   /* do nothing */
6242 }
6243
6244 static void 
6245 gtk_icon_view_drag_data_get (GtkWidget        *widget,
6246                              GdkDragContext   *context,
6247                              GtkSelectionData *selection_data,
6248                              guint             info,
6249                              guint             time)
6250 {
6251   GtkIconView *icon_view;
6252   GtkTreeModel *model;
6253   GtkTreePath *source_row;
6254
6255   icon_view = GTK_ICON_VIEW (widget);
6256   model = gtk_icon_view_get_model (icon_view);
6257
6258   if (model == NULL)
6259     return;
6260
6261   if (!icon_view->priv->dest_set)
6262     return;
6263
6264   source_row = get_source_row (context);
6265
6266   if (source_row == NULL)
6267     return;
6268
6269   /* We can implement the GTK_TREE_MODEL_ROW target generically for
6270    * any model; for DragSource models there are some other targets
6271    * we also support.
6272    */
6273
6274   if (GTK_IS_TREE_DRAG_SOURCE (model) &&
6275       gtk_tree_drag_source_drag_data_get (GTK_TREE_DRAG_SOURCE (model),
6276                                           source_row,
6277                                           selection_data))
6278     goto done;
6279
6280   /* If drag_data_get does nothing, try providing row data. */
6281   if (selection_data->target == gdk_atom_intern_static_string ("GTK_TREE_MODEL_ROW"))
6282     gtk_tree_set_row_drag_data (selection_data,
6283                                 model,
6284                                 source_row);
6285
6286  done:
6287   gtk_tree_path_free (source_row);
6288 }
6289
6290 static void 
6291 gtk_icon_view_drag_data_delete (GtkWidget      *widget,
6292                                 GdkDragContext *context)
6293 {
6294   GtkTreeModel *model;
6295   GtkIconView *icon_view;
6296   GtkTreePath *source_row;
6297
6298   icon_view = GTK_ICON_VIEW (widget);
6299   model = gtk_icon_view_get_model (icon_view);
6300
6301   if (!check_model_dnd (model, GTK_TYPE_TREE_DRAG_SOURCE, "drag_data_delete"))
6302     return;
6303
6304   if (!icon_view->priv->dest_set)
6305     return;
6306
6307   source_row = get_source_row (context);
6308
6309   if (source_row == NULL)
6310     return;
6311
6312   gtk_tree_drag_source_drag_data_delete (GTK_TREE_DRAG_SOURCE (model),
6313                                          source_row);
6314
6315   gtk_tree_path_free (source_row);
6316
6317   set_source_row (context, NULL, NULL);
6318 }
6319
6320 /* Target side drag signals */
6321 static void
6322 gtk_icon_view_drag_leave (GtkWidget      *widget,
6323                           GdkDragContext *context,
6324                           guint           time)
6325 {
6326   GtkIconView *icon_view;
6327
6328   icon_view = GTK_ICON_VIEW (widget);
6329
6330   /* unset any highlight row */
6331   gtk_icon_view_set_drag_dest_item (icon_view,
6332                                     NULL,
6333                                     GTK_ICON_VIEW_DROP_LEFT);
6334
6335   remove_scroll_timeout (icon_view);
6336 }
6337
6338 static gboolean 
6339 gtk_icon_view_drag_motion (GtkWidget      *widget,
6340                            GdkDragContext *context,
6341                            gint            x,
6342                            gint            y,
6343                            guint           time)
6344 {
6345   GtkTreePath *path = NULL;
6346   GtkIconViewDropPosition pos;
6347   GtkIconView *icon_view;
6348   GdkDragAction suggested_action = 0;
6349   GdkAtom target;
6350   gboolean empty;
6351
6352   icon_view = GTK_ICON_VIEW (widget);
6353
6354   if (!set_destination (icon_view, context, x, y, &suggested_action, &target))
6355     return FALSE;
6356
6357   gtk_icon_view_get_drag_dest_item (icon_view, &path, &pos);
6358
6359   /* we only know this *after* set_desination_row */
6360   empty = icon_view->priv->empty_view_drop;
6361
6362   if (path == NULL && !empty)
6363     {
6364       /* Can't drop here. */
6365       gdk_drag_status (context, 0, time);
6366     }
6367   else
6368     {
6369       if (icon_view->priv->scroll_timeout_id == 0)
6370         {
6371           icon_view->priv->scroll_timeout_id =
6372             gdk_threads_add_timeout (50, drag_scroll_timeout, icon_view);
6373         }
6374
6375       if (target == gdk_atom_intern_static_string ("GTK_TREE_MODEL_ROW"))
6376         {
6377           /* Request data so we can use the source row when
6378            * determining whether to accept the drop
6379            */
6380           set_status_pending (context, suggested_action);
6381           gtk_drag_get_data (widget, context, target, time);
6382         }
6383       else
6384         {
6385           set_status_pending (context, 0);
6386           gdk_drag_status (context, suggested_action, time);
6387         }
6388     }
6389
6390   if (path)
6391     gtk_tree_path_free (path);
6392
6393   return TRUE;
6394 }
6395
6396 static gboolean 
6397 gtk_icon_view_drag_drop (GtkWidget      *widget,
6398                          GdkDragContext *context,
6399                          gint            x,
6400                          gint            y,
6401                          guint           time)
6402 {
6403   GtkIconView *icon_view;
6404   GtkTreePath *path;
6405   GdkDragAction suggested_action = 0;
6406   GdkAtom target = GDK_NONE;
6407   GtkTreeModel *model;
6408   gboolean drop_append_mode;
6409
6410   icon_view = GTK_ICON_VIEW (widget);
6411   model = gtk_icon_view_get_model (icon_view);
6412
6413   remove_scroll_timeout (GTK_ICON_VIEW (widget));
6414
6415   if (!icon_view->priv->dest_set)
6416     return FALSE;
6417
6418   if (!check_model_dnd (model, GTK_TYPE_TREE_DRAG_DEST, "drag_drop"))
6419     return FALSE;
6420
6421   if (!set_destination (icon_view, context, x, y, &suggested_action, &target))
6422     return FALSE;
6423   
6424   path = get_logical_destination (icon_view, &drop_append_mode);
6425
6426   if (target != GDK_NONE && path != NULL)
6427     {
6428       /* in case a motion had requested drag data, change things so we
6429        * treat drag data receives as a drop.
6430        */
6431       set_status_pending (context, 0);
6432       set_dest_row (context, model, path, 
6433                     icon_view->priv->empty_view_drop, drop_append_mode);
6434     }
6435
6436   if (path)
6437     gtk_tree_path_free (path);
6438
6439   /* Unset this thing */
6440   gtk_icon_view_set_drag_dest_item (icon_view, NULL, GTK_ICON_VIEW_DROP_LEFT);
6441
6442   if (target != GDK_NONE)
6443     {
6444       gtk_drag_get_data (widget, context, target, time);
6445       return TRUE;
6446     }
6447   else
6448     return FALSE;
6449 }
6450
6451 static void
6452 gtk_icon_view_drag_data_received (GtkWidget        *widget,
6453                                   GdkDragContext   *context,
6454                                   gint              x,
6455                                   gint              y,
6456                                   GtkSelectionData *selection_data,
6457                                   guint             info,
6458                                   guint             time)
6459 {
6460   GtkTreePath *path;
6461   gboolean accepted = FALSE;
6462   GtkTreeModel *model;
6463   GtkIconView *icon_view;
6464   GtkTreePath *dest_row;
6465   GdkDragAction suggested_action;
6466   gboolean drop_append_mode;
6467   
6468   icon_view = GTK_ICON_VIEW (widget);  
6469   model = gtk_icon_view_get_model (icon_view);
6470
6471   if (!check_model_dnd (model, GTK_TYPE_TREE_DRAG_DEST, "drag_data_received"))
6472     return;
6473
6474   if (!icon_view->priv->dest_set)
6475     return;
6476
6477   suggested_action = get_status_pending (context);
6478
6479   if (suggested_action)
6480     {
6481       /* We are getting this data due to a request in drag_motion,
6482        * rather than due to a request in drag_drop, so we are just
6483        * supposed to call drag_status, not actually paste in the
6484        * data.
6485        */
6486       path = get_logical_destination (icon_view, &drop_append_mode);
6487
6488       if (path == NULL)
6489         suggested_action = 0;
6490
6491       if (suggested_action)
6492         {
6493           if (!gtk_tree_drag_dest_row_drop_possible (GTK_TREE_DRAG_DEST (model),
6494                                                      path,
6495                                                      selection_data))
6496             suggested_action = 0;
6497         }
6498
6499       gdk_drag_status (context, suggested_action, time);
6500
6501       if (path)
6502         gtk_tree_path_free (path);
6503
6504       /* If you can't drop, remove user drop indicator until the next motion */
6505       if (suggested_action == 0)
6506         gtk_icon_view_set_drag_dest_item (icon_view,
6507                                           NULL,
6508                                           GTK_ICON_VIEW_DROP_LEFT);
6509       return;
6510     }
6511   
6512
6513   dest_row = get_dest_row (context);
6514
6515   if (dest_row == NULL)
6516     return;
6517
6518   if (selection_data->length >= 0)
6519     {
6520       if (gtk_tree_drag_dest_drag_data_received (GTK_TREE_DRAG_DEST (model),
6521                                                  dest_row,
6522                                                  selection_data))
6523         accepted = TRUE;
6524     }
6525
6526   gtk_drag_finish (context,
6527                    accepted,
6528                    (context->action == GDK_ACTION_MOVE),
6529                    time);
6530
6531   gtk_tree_path_free (dest_row);
6532
6533   /* drop dest_row */
6534   set_dest_row (context, NULL, NULL, FALSE, FALSE);
6535 }
6536
6537 /* Drag-and-Drop support */
6538 /**
6539  * gtk_icon_view_enable_model_drag_source:
6540  * @icon_view: a #GtkIconTreeView
6541  * @start_button_mask: Mask of allowed buttons to start drag
6542  * @targets: the table of targets that the drag will support
6543  * @n_targets: the number of items in @targets
6544  * @actions: the bitmask of possible actions for a drag from this
6545  *    widget
6546  * 
6547  * Turns @icon_view into a drag source for automatic DND.
6548  *
6549  * Since: 2.8
6550  **/
6551 void
6552 gtk_icon_view_enable_model_drag_source (GtkIconView              *icon_view,
6553                                         GdkModifierType           start_button_mask,
6554                                         const GtkTargetEntry     *targets,
6555                                         gint                      n_targets,
6556                                         GdkDragAction             actions)
6557 {
6558   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6559
6560   gtk_drag_source_set (GTK_WIDGET (icon_view), 0, NULL, 0, actions);
6561
6562   clear_source_info (icon_view);
6563   icon_view->priv->start_button_mask = start_button_mask;
6564   icon_view->priv->source_targets = gtk_target_list_new (targets, n_targets);
6565   icon_view->priv->source_actions = actions;
6566
6567   icon_view->priv->source_set = TRUE;
6568
6569   unset_reorderable (icon_view);
6570 }
6571
6572 /**
6573  * gtk_icon_view_enable_model_drag_dest:
6574  * @icon_view: a #GtkIconView
6575  * @targets: the table of targets that the drag will support
6576  * @n_targets: the number of items in @targets
6577  * @actions: the bitmask of possible actions for a drag to this
6578  *    widget
6579  * 
6580  * Turns @icon_view into a drop destination for automatic DND.
6581  *
6582  * Since: 2.8
6583  **/
6584 void 
6585 gtk_icon_view_enable_model_drag_dest (GtkIconView          *icon_view,
6586                                       const GtkTargetEntry *targets,
6587                                       gint                  n_targets,
6588                                       GdkDragAction         actions)
6589 {
6590   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6591
6592   gtk_drag_dest_set (GTK_WIDGET (icon_view), 0, NULL, 0, actions);
6593
6594   clear_dest_info (icon_view);
6595
6596   icon_view->priv->dest_targets = gtk_target_list_new (targets, n_targets);
6597   icon_view->priv->dest_actions = actions;
6598
6599   icon_view->priv->dest_set = TRUE;
6600
6601   unset_reorderable (icon_view);  
6602 }
6603
6604 /**
6605  * gtk_icon_view_unset_model_drag_source:
6606  * @icon_view: a #GtkIconView
6607  * 
6608  * Undoes the effect of gtk_icon_view_enable_model_drag_source().
6609  *
6610  * Since: 2.8
6611  **/
6612 void
6613 gtk_icon_view_unset_model_drag_source (GtkIconView *icon_view)
6614 {
6615   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6616
6617   if (icon_view->priv->source_set)
6618     {
6619       gtk_drag_source_unset (GTK_WIDGET (icon_view));
6620       clear_source_info (icon_view);
6621     }
6622
6623   unset_reorderable (icon_view);
6624 }
6625
6626 /**
6627  * gtk_icon_view_unset_model_drag_dest:
6628  * @icon_view: a #GtkIconView
6629  * 
6630  * Undoes the effect of gtk_icon_view_enable_model_drag_dest().
6631  *
6632  * Since: 2.8
6633  **/
6634 void
6635 gtk_icon_view_unset_model_drag_dest (GtkIconView *icon_view)
6636 {
6637   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6638
6639   if (icon_view->priv->dest_set)
6640     {
6641       gtk_drag_dest_unset (GTK_WIDGET (icon_view));
6642       clear_dest_info (icon_view);
6643     }
6644
6645   unset_reorderable (icon_view);
6646 }
6647
6648 /* These are useful to implement your own custom stuff. */
6649 /**
6650  * gtk_icon_view_set_drag_dest_item:
6651  * @icon_view: a #GtkIconView
6652  * @path: The path of the item to highlight, or %NULL.
6653  * @pos: Specifies where to drop, relative to the item
6654  * 
6655  * Sets the item that is highlighted for feedback.
6656  *
6657  * Since: 2.8
6658  */
6659 void
6660 gtk_icon_view_set_drag_dest_item (GtkIconView              *icon_view,
6661                                   GtkTreePath              *path,
6662                                   GtkIconViewDropPosition   pos)
6663 {
6664   /* Note; this function is exported to allow a custom DND
6665    * implementation, so it can't touch TreeViewDragInfo
6666    */
6667
6668   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6669
6670   if (icon_view->priv->dest_item)
6671     {
6672       GtkTreePath *current_path;
6673       current_path = gtk_tree_row_reference_get_path (icon_view->priv->dest_item);
6674       gtk_tree_row_reference_free (icon_view->priv->dest_item);
6675       icon_view->priv->dest_item = NULL;      
6676
6677       gtk_icon_view_queue_draw_path (icon_view, current_path);
6678       gtk_tree_path_free (current_path);
6679     }
6680   
6681   /* special case a drop on an empty model */
6682   icon_view->priv->empty_view_drop = FALSE;
6683   if (pos == GTK_TREE_VIEW_DROP_BEFORE && path
6684       && gtk_tree_path_get_depth (path) == 1
6685       && gtk_tree_path_get_indices (path)[0] == 0)
6686     {
6687       gint n_children;
6688
6689       n_children = gtk_tree_model_iter_n_children (icon_view->priv->model,
6690                                                    NULL);
6691
6692       if (n_children == 0)
6693         icon_view->priv->empty_view_drop = TRUE;
6694     }
6695
6696   icon_view->priv->dest_pos = pos;
6697
6698   if (path)
6699     {
6700       icon_view->priv->dest_item =
6701         gtk_tree_row_reference_new_proxy (G_OBJECT (icon_view), 
6702                                           icon_view->priv->model, path);
6703       
6704       gtk_icon_view_queue_draw_path (icon_view, path);
6705     }
6706 }
6707
6708 /**
6709  * gtk_icon_view_get_drag_dest_item:
6710  * @icon_view: a #GtkIconView
6711  * @path: Return location for the path of the highlighted item, or %NULL.
6712  * @pos: Return location for the drop position, or %NULL
6713  * 
6714  * Gets information about the item that is highlighted for feedback.
6715  *
6716  * Since: 2.8
6717  **/
6718 void
6719 gtk_icon_view_get_drag_dest_item (GtkIconView              *icon_view,
6720                                   GtkTreePath             **path,
6721                                   GtkIconViewDropPosition  *pos)
6722 {
6723   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6724
6725   if (path)
6726     {
6727       if (icon_view->priv->dest_item)
6728         *path = gtk_tree_row_reference_get_path (icon_view->priv->dest_item);
6729       else
6730         *path = NULL;
6731     }
6732
6733   if (pos)
6734     *pos = icon_view->priv->dest_pos;
6735 }
6736
6737 /**
6738  * gtk_icon_view_get_dest_item_at_pos:
6739  * @icon_view: a #GtkIconView
6740  * @drag_x: the position to determine the destination item for
6741  * @drag_y: the position to determine the destination item for
6742  * @path: Return location for the path of the item, or %NULL.
6743  * @pos: Return location for the drop position, or %NULL
6744  * 
6745  * Determines the destination item for a given position.
6746  * 
6747  * Return value: whether there is an item at the given position.
6748  *
6749  * Since: 2.8
6750  **/
6751 gboolean
6752 gtk_icon_view_get_dest_item_at_pos (GtkIconView              *icon_view,
6753                                     gint                      drag_x,
6754                                     gint                      drag_y,
6755                                     GtkTreePath             **path,
6756                                     GtkIconViewDropPosition  *pos)
6757 {
6758   GtkIconViewItem *item;
6759
6760   /* Note; this function is exported to allow a custom DND
6761    * implementation, so it can't touch TreeViewDragInfo
6762    */
6763
6764   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
6765   g_return_val_if_fail (drag_x >= 0, FALSE);
6766   g_return_val_if_fail (drag_y >= 0, FALSE);
6767   g_return_val_if_fail (icon_view->priv->bin_window != NULL, FALSE);
6768
6769
6770   if (path)
6771     *path = NULL;
6772
6773   item = gtk_icon_view_get_item_at_coords (icon_view, 
6774                                            drag_x + icon_view->priv->hadjustment->value, 
6775                                            drag_y + icon_view->priv->vadjustment->value,
6776                                            FALSE, NULL);
6777
6778   if (item == NULL)
6779     return FALSE;
6780
6781   if (path)
6782     *path = gtk_tree_path_new_from_indices (item->index, -1);
6783
6784   if (pos)
6785     {
6786       if (drag_x < item->x + item->width / 4)
6787         *pos = GTK_ICON_VIEW_DROP_LEFT;
6788       else if (drag_x > item->x + item->width * 3 / 4)
6789         *pos = GTK_ICON_VIEW_DROP_RIGHT;
6790       else if (drag_y < item->y + item->height / 4)
6791         *pos = GTK_ICON_VIEW_DROP_ABOVE;
6792       else if (drag_y > item->y + item->height * 3 / 4)
6793         *pos = GTK_ICON_VIEW_DROP_BELOW;
6794       else
6795         *pos = GTK_ICON_VIEW_DROP_INTO;
6796     }
6797
6798   return TRUE;
6799 }
6800
6801 /**
6802  * gtk_icon_view_create_drag_icon:
6803  * @icon_view: a #GtkIconView
6804  * @path: a #GtkTreePath in @icon_view
6805  *
6806  * Creates a #GdkPixmap representation of the item at @path.  
6807  * This image is used for a drag icon.
6808  *
6809  * Return value: a newly-allocated pixmap of the drag icon.
6810  * 
6811  * Since: 2.8
6812  **/
6813 GdkPixmap *
6814 gtk_icon_view_create_drag_icon (GtkIconView *icon_view,
6815                                 GtkTreePath *path)
6816 {
6817   GtkWidget *widget;
6818   cairo_t *cr;
6819   GdkPixmap *drawable;
6820   GList *l;
6821   gint index;
6822   GdkRectangle area;
6823
6824   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), NULL);
6825   g_return_val_if_fail (path != NULL, NULL);
6826
6827   widget = GTK_WIDGET (icon_view);
6828
6829   if (!GTK_WIDGET_REALIZED (widget))
6830     return NULL;
6831
6832   index = gtk_tree_path_get_indices (path)[0];
6833
6834   for (l = icon_view->priv->items; l; l = l->next) 
6835     {
6836       GtkIconViewItem *item = l->data;
6837       
6838       if (index == item->index)
6839         {
6840           drawable = gdk_pixmap_new (icon_view->priv->bin_window,
6841                                      item->width + 2,
6842                                      item->height + 2,
6843                                      -1);
6844
6845           cr = gdk_cairo_create (drawable);
6846           cairo_set_line_width (cr, 1.);
6847
6848           gdk_cairo_set_source_color
6849             (cr, &widget->style->base[GTK_WIDGET_STATE (widget)]);
6850           cairo_rectangle (cr, 0, 0, item->width + 2, item->height + 2);
6851           cairo_fill (cr);
6852
6853           area.x = 0;
6854           area.y = 0;
6855           area.width = item->width;
6856           area.height = item->height;
6857
6858           gtk_icon_view_paint_item (icon_view, cr, item, &area, 
6859                                     drawable, 1, 1, FALSE); 
6860
6861           cairo_set_source_rgb (cr, 0.0, 0.0, 0.0); /* black */
6862           cairo_rectangle (cr, 0.5, 0.5, item->width + 1, item->height + 1);
6863           cairo_stroke (cr);
6864
6865           cairo_destroy (cr);
6866
6867           return drawable;
6868         }
6869     }
6870   
6871   return NULL;
6872 }
6873
6874 /**
6875  * gtk_icon_view_get_reorderable:
6876  * @icon_view: a #GtkIconView
6877  *
6878  * Retrieves whether the user can reorder the list via drag-and-drop. 
6879  * See gtk_icon_view_set_reorderable().
6880  *
6881  * Return value: %TRUE if the list can be reordered.
6882  *
6883  * Since: 2.8
6884  **/
6885 gboolean
6886 gtk_icon_view_get_reorderable (GtkIconView *icon_view)
6887 {
6888   g_return_val_if_fail (GTK_IS_ICON_VIEW (icon_view), FALSE);
6889
6890   return icon_view->priv->reorderable;
6891 }
6892
6893 static const GtkTargetEntry item_targets[] = {
6894   { "GTK_TREE_MODEL_ROW", GTK_TARGET_SAME_WIDGET, 0 }
6895 };
6896
6897
6898 /**
6899  * gtk_icon_view_set_reorderable:
6900  * @icon_view: A #GtkIconView.
6901  * @reorderable: %TRUE, if the list of items can be reordered.
6902  *
6903  * This function is a convenience function to allow you to reorder models that
6904  * support the #GtkTreeDragSourceIface and the #GtkTreeDragDestIface.  Both
6905  * #GtkTreeStore and #GtkListStore support these.  If @reorderable is %TRUE, then
6906  * the user can reorder the model by dragging and dropping rows.  The
6907  * developer can listen to these changes by connecting to the model's
6908  * row_inserted and row_deleted signals.
6909  *
6910  * This function does not give you any degree of control over the order -- any
6911  * reordering is allowed.  If more control is needed, you should probably
6912  * handle drag and drop manually.
6913  *
6914  * Since: 2.8
6915  **/
6916 void
6917 gtk_icon_view_set_reorderable (GtkIconView *icon_view,
6918                                gboolean     reorderable)
6919 {
6920   g_return_if_fail (GTK_IS_ICON_VIEW (icon_view));
6921
6922   reorderable = reorderable != FALSE;
6923
6924   if (icon_view->priv->reorderable == reorderable)
6925     return;
6926
6927   if (reorderable)
6928     {
6929       gtk_icon_view_enable_model_drag_source (icon_view,
6930                                               GDK_BUTTON1_MASK,
6931                                               item_targets,
6932                                               G_N_ELEMENTS (item_targets),
6933                                               GDK_ACTION_MOVE);
6934       gtk_icon_view_enable_model_drag_dest (icon_view,
6935                                             item_targets,
6936                                             G_N_ELEMENTS (item_targets),
6937                                             GDK_ACTION_MOVE);
6938     }
6939   else
6940     {
6941       gtk_icon_view_unset_model_drag_source (icon_view);
6942       gtk_icon_view_unset_model_drag_dest (icon_view);
6943     }
6944
6945   icon_view->priv->reorderable = reorderable;
6946
6947   g_object_notify (G_OBJECT (icon_view), "reorderable");
6948 }
6949
6950
6951 /* Accessibility Support */
6952
6953 static gpointer accessible_parent_class;
6954 static gpointer accessible_item_parent_class;
6955 static GQuark accessible_private_data_quark = 0;
6956
6957 #define GTK_TYPE_ICON_VIEW_ITEM_ACCESSIBLE      (gtk_icon_view_item_accessible_get_type ())
6958 #define GTK_ICON_VIEW_ITEM_ACCESSIBLE(obj)      (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ICON_VIEW_ITEM_ACCESSIBLE, GtkIconViewItemAccessible))
6959 #define GTK_IS_ICON_VIEW_ITEM_ACCESSIBLE(obj)   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ICON_VIEW_ITEM_ACCESSIBLE))
6960
6961 static GType gtk_icon_view_item_accessible_get_type (void);
6962
6963 enum {
6964     ACTION_ACTIVATE,
6965     LAST_ACTION
6966 };
6967
6968 typedef struct
6969 {
6970   AtkObject parent;
6971
6972   GtkIconViewItem *item;
6973
6974   GtkWidget *widget;
6975
6976   AtkStateSet *state_set;
6977
6978   gchar *text;
6979
6980   GtkTextBuffer *text_buffer;
6981
6982   gchar *action_descriptions[LAST_ACTION];
6983   gchar *image_description;
6984   guint action_idle_handler;
6985 } GtkIconViewItemAccessible;
6986
6987 static const gchar *const gtk_icon_view_item_accessible_action_names[] = 
6988 {
6989   "activate",
6990   NULL
6991 };
6992
6993 static const gchar *const gtk_icon_view_item_accessible_action_descriptions[] =
6994 {
6995   "Activate item",
6996   NULL
6997 };
6998 typedef struct _GtkIconViewItemAccessibleClass
6999 {
7000   AtkObjectClass parent_class;
7001
7002 } GtkIconViewItemAccessibleClass;
7003
7004 static gboolean gtk_icon_view_item_accessible_is_showing (GtkIconViewItemAccessible *item);
7005
7006 static gboolean
7007 gtk_icon_view_item_accessible_idle_do_action (gpointer data)
7008 {
7009   GtkIconViewItemAccessible *item;
7010   GtkIconView *icon_view;
7011   GtkTreePath *path;
7012
7013   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (data);
7014   item->action_idle_handler = 0;
7015
7016   if (item->widget != NULL)
7017     {
7018       icon_view = GTK_ICON_VIEW (item->widget);
7019       path = gtk_tree_path_new_from_indices (item->item->index, -1);
7020       gtk_icon_view_item_activated (icon_view, path);
7021       gtk_tree_path_free (path);
7022     }
7023
7024   return FALSE;
7025 }
7026
7027 static gboolean
7028 gtk_icon_view_item_accessible_action_do_action (AtkAction *action,
7029                                                 gint       i)
7030 {
7031   GtkIconViewItemAccessible *item;
7032
7033   if (i < 0 || i >= LAST_ACTION) 
7034     return FALSE;
7035
7036   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (action);
7037
7038   if (!GTK_IS_ICON_VIEW (item->widget))
7039     return FALSE;
7040
7041   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7042     return FALSE;
7043
7044   switch (i)
7045     {
7046     case ACTION_ACTIVATE:
7047       if (!item->action_idle_handler)
7048         item->action_idle_handler = gdk_threads_add_idle (gtk_icon_view_item_accessible_idle_do_action, item);
7049       break;
7050     default:
7051       g_assert_not_reached ();
7052       return FALSE;
7053
7054     }        
7055   return TRUE;
7056 }
7057
7058 static gint
7059 gtk_icon_view_item_accessible_action_get_n_actions (AtkAction *action)
7060 {
7061         return LAST_ACTION;
7062 }
7063
7064 static const gchar *
7065 gtk_icon_view_item_accessible_action_get_description (AtkAction *action,
7066                                                       gint       i)
7067 {
7068   GtkIconViewItemAccessible *item;
7069
7070   if (i < 0 || i >= LAST_ACTION) 
7071     return NULL;
7072
7073   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (action);
7074
7075   if (item->action_descriptions[i])
7076     return item->action_descriptions[i];
7077   else
7078     return gtk_icon_view_item_accessible_action_descriptions[i];
7079 }
7080
7081 static const gchar *
7082 gtk_icon_view_item_accessible_action_get_name (AtkAction *action,
7083                                                gint       i)
7084 {
7085   if (i < 0 || i >= LAST_ACTION) 
7086     return NULL;
7087
7088   return gtk_icon_view_item_accessible_action_names[i];
7089 }
7090
7091 static gboolean
7092 gtk_icon_view_item_accessible_action_set_description (AtkAction   *action,
7093                                                       gint         i,
7094                                                       const gchar *description)
7095 {
7096   GtkIconViewItemAccessible *item;
7097
7098   if (i < 0 || i >= LAST_ACTION) 
7099     return FALSE;
7100
7101   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (action);
7102
7103   g_free (item->action_descriptions[i]);
7104
7105   item->action_descriptions[i] = g_strdup (description);
7106
7107   return TRUE;
7108 }
7109
7110 static void
7111 atk_action_item_interface_init (AtkActionIface *iface)
7112 {
7113   iface->do_action = gtk_icon_view_item_accessible_action_do_action;
7114   iface->get_n_actions = gtk_icon_view_item_accessible_action_get_n_actions;
7115   iface->get_description = gtk_icon_view_item_accessible_action_get_description;
7116   iface->get_name = gtk_icon_view_item_accessible_action_get_name;
7117   iface->set_description = gtk_icon_view_item_accessible_action_set_description;
7118 }
7119
7120 static const gchar *
7121 gtk_icon_view_item_accessible_image_get_image_description (AtkImage *image)
7122 {
7123   GtkIconViewItemAccessible *item;
7124
7125   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (image);
7126
7127   return item->image_description;
7128 }
7129
7130 static gboolean
7131 gtk_icon_view_item_accessible_image_set_image_description (AtkImage    *image,
7132                                                            const gchar *description)
7133 {
7134   GtkIconViewItemAccessible *item;
7135
7136   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (image);
7137
7138   g_free (item->image_description);
7139   item->image_description = g_strdup (item->image_description);
7140
7141   return TRUE;
7142 }
7143
7144 static gboolean
7145 get_pixbuf_box (GtkIconView     *icon_view,
7146                 GtkIconViewItem *item,
7147                 GdkRectangle    *box)
7148 {
7149   GList *l;
7150
7151   for (l = icon_view->priv->cell_list; l; l = l->next)
7152     {
7153       GtkIconViewCellInfo *info = l->data;
7154       
7155       if (GTK_IS_CELL_RENDERER_PIXBUF (info->cell))
7156         {
7157           gtk_icon_view_get_cell_box (icon_view, item, info, box);
7158
7159           return TRUE;
7160         }
7161     }
7162
7163   return FALSE;
7164 }
7165
7166 static gchar *
7167 get_text (GtkIconView     *icon_view,
7168           GtkIconViewItem *item)
7169 {
7170   GList *l;
7171   gchar *text;
7172
7173   for (l = icon_view->priv->cell_list; l; l = l->next)
7174     {
7175       GtkIconViewCellInfo *info = l->data;
7176       
7177       if (GTK_IS_CELL_RENDERER_TEXT (info->cell))
7178         {
7179           g_object_get (info->cell, "text", &text, NULL);
7180           
7181           return text;
7182         }
7183     }
7184
7185   return NULL;
7186 }
7187
7188 static void
7189 gtk_icon_view_item_accessible_image_get_image_size (AtkImage *image,
7190                                                     gint     *width,
7191                                                     gint     *height)
7192 {
7193   GtkIconViewItemAccessible *item;
7194   GdkRectangle box;
7195
7196   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (image);
7197
7198   if (!GTK_IS_ICON_VIEW (item->widget))
7199     return;
7200
7201   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7202     return;
7203
7204   if (get_pixbuf_box (GTK_ICON_VIEW (item->widget), item->item, &box))
7205     {
7206       *width = box.width;
7207       *height = box.height;  
7208     }
7209 }
7210
7211 static void
7212 gtk_icon_view_item_accessible_image_get_image_position (AtkImage    *image,
7213                                                         gint        *x,
7214                                                         gint        *y,
7215                                                         AtkCoordType coord_type)
7216 {
7217   GtkIconViewItemAccessible *item;
7218   GdkRectangle box;
7219
7220   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (image);
7221
7222   if (!GTK_IS_ICON_VIEW (item->widget))
7223     return;
7224
7225   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7226     return;
7227
7228   atk_component_get_position (ATK_COMPONENT (image), x, y, coord_type);
7229
7230   if (get_pixbuf_box (GTK_ICON_VIEW (item->widget), item->item, &box))
7231     {
7232       *x+= box.x - item->item->x;
7233       *y+= box.y - item->item->y;
7234     }
7235
7236 }
7237
7238 static void
7239 atk_image_item_interface_init (AtkImageIface *iface)
7240 {
7241   iface->get_image_description = gtk_icon_view_item_accessible_image_get_image_description;
7242   iface->set_image_description = gtk_icon_view_item_accessible_image_set_image_description;
7243   iface->get_image_size = gtk_icon_view_item_accessible_image_get_image_size;
7244   iface->get_image_position = gtk_icon_view_item_accessible_image_get_image_position;
7245 }
7246
7247 static gchar *
7248 gtk_icon_view_item_accessible_text_get_text (AtkText *text,
7249                                              gint     start_pos,
7250                                              gint     end_pos)
7251 {
7252   GtkIconViewItemAccessible *item;
7253   GtkTextIter start, end;
7254   GtkTextBuffer *buffer;
7255
7256   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (text);
7257
7258   if (!GTK_IS_ICON_VIEW (item->widget))
7259     return NULL;
7260
7261   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7262     return NULL;
7263
7264   buffer = item->text_buffer;
7265   gtk_text_buffer_get_iter_at_offset (buffer, &start, start_pos);
7266   if (end_pos < 0)
7267     gtk_text_buffer_get_end_iter (buffer, &end);
7268   else
7269     gtk_text_buffer_get_iter_at_offset (buffer, &end, end_pos);
7270
7271   return gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
7272 }
7273
7274 static gunichar
7275 gtk_icon_view_item_accessible_text_get_character_at_offset (AtkText *text,
7276                                                             gint     offset)
7277 {
7278   GtkIconViewItemAccessible *item;
7279   GtkTextIter start, end;
7280   GtkTextBuffer *buffer;
7281   gchar *string;
7282   gunichar unichar;
7283
7284   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (text);
7285
7286   if (!GTK_IS_ICON_VIEW (item->widget))
7287     return '\0';
7288
7289   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7290     return '\0';
7291
7292   buffer = item->text_buffer;
7293   if (offset >= gtk_text_buffer_get_char_count (buffer))
7294     return '\0';
7295
7296   gtk_text_buffer_get_iter_at_offset (buffer, &start, offset);
7297   end = start;
7298   gtk_text_iter_forward_char (&end);
7299   string = gtk_text_buffer_get_slice (buffer, &start, &end, FALSE);
7300   unichar = g_utf8_get_char (string);
7301   g_free(string);
7302
7303   return unichar;
7304 }
7305
7306 #if 0
7307 static void
7308 get_pango_text_offsets (PangoLayout     *layout,
7309                         GtkTextBuffer   *buffer,
7310                         gint             function,
7311                         AtkTextBoundary  boundary_type,
7312                         gint             offset,
7313                         gint            *start_offset,
7314                         gint            *end_offset,
7315                         GtkTextIter     *start_iter,
7316                         GtkTextIter     *end_iter)
7317 {
7318   PangoLayoutIter *iter;
7319   PangoLayoutLine *line, *prev_line = NULL, *prev_prev_line = NULL;
7320   gint index, start_index, end_index;
7321   const gchar *text;
7322   gboolean found = FALSE;
7323
7324   text = pango_layout_get_text (layout);
7325   index = g_utf8_offset_to_pointer (text, offset) - text;
7326   iter = pango_layout_get_iter (layout);
7327   do
7328     {
7329       line = pango_layout_iter_get_line_readonly (iter);
7330       start_index = line->start_index;
7331       end_index = start_index + line->length;
7332
7333       if (index >= start_index && index <= end_index)
7334         {
7335           /*
7336            * Found line for offset
7337            */
7338           switch (function)
7339             {
7340             case 0:
7341                   /*
7342                    * We want the previous line
7343                    */
7344               if (prev_line)
7345                 {
7346                   switch (boundary_type)
7347                     {
7348                     case ATK_TEXT_BOUNDARY_LINE_START:
7349                       end_index = start_index;
7350                       start_index = prev_line->start_index;
7351                       break;
7352                     case ATK_TEXT_BOUNDARY_LINE_END:
7353                       if (prev_prev_line)
7354                         start_index = prev_prev_line->start_index + 
7355                                   prev_prev_line->length;
7356                       end_index = prev_line->start_index + prev_line->length;
7357                       break;
7358                     default:
7359                       g_assert_not_reached();
7360                     }
7361                 }
7362               else
7363                 start_index = end_index = 0;
7364               break;
7365             case 1:
7366               switch (boundary_type)
7367                 {
7368                 case ATK_TEXT_BOUNDARY_LINE_START:
7369                   if (pango_layout_iter_next_line (iter))
7370                     end_index = pango_layout_iter_get_line_readonly (iter)->start_index;
7371                   break;
7372                 case ATK_TEXT_BOUNDARY_LINE_END:
7373                   if (prev_line)
7374                     start_index = prev_line->start_index + 
7375                                   prev_line->length;
7376                   break;
7377                 default:
7378                   g_assert_not_reached();
7379                 }
7380               break;
7381             case 2:
7382                /*
7383                 * We want the next line
7384                 */
7385               if (pango_layout_iter_next_line (iter))
7386                 {
7387                   line = pango_layout_iter_get_line_readonly (iter);
7388                   switch (boundary_type)
7389                     {
7390                     case ATK_TEXT_BOUNDARY_LINE_START:
7391                       start_index = line->start_index;
7392                       if (pango_layout_iter_next_line (iter))
7393                         end_index = pango_layout_iter_get_line_readonly (iter)->start_index;
7394                       else
7395                         end_index = start_index + line->length;
7396                       break;
7397                     case ATK_TEXT_BOUNDARY_LINE_END:
7398                       start_index = end_index;
7399                       end_index = line->start_index + line->length;
7400                       break;
7401                     default:
7402                       g_assert_not_reached();
7403                     }
7404                 }
7405               else
7406                 start_index = end_index;
7407               break;
7408             }
7409           found = TRUE;
7410           break;
7411         }
7412       prev_prev_line = prev_line; 
7413       prev_line = line; 
7414     }
7415   while (pango_layout_iter_next_line (iter));
7416
7417   if (!found)
7418     {
7419       start_index = prev_line->start_index + prev_line->length;
7420       end_index = start_index;
7421     }
7422   pango_layout_iter_free (iter);
7423   *start_offset = g_utf8_pointer_to_offset (text, text + start_index);
7424   *end_offset = g_utf8_pointer_to_offset (text, text + end_index);
7425  
7426   gtk_text_buffer_get_iter_at_offset (buffer, start_iter, *start_offset);
7427   gtk_text_buffer_get_iter_at_offset (buffer, end_iter, *end_offset);
7428 }
7429 #endif
7430
7431 static gchar*
7432 gtk_icon_view_item_accessible_text_get_text_before_offset (AtkText         *text,
7433                                                            gint            offset,
7434                                                            AtkTextBoundary boundary_type,
7435                                                            gint            *start_offset,
7436                                                            gint            *end_offset)
7437 {
7438   GtkIconViewItemAccessible *item;
7439   GtkTextIter start, end;
7440   GtkTextBuffer *buffer;
7441 #if 0
7442   GtkIconView *icon_view;
7443 #endif
7444
7445   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (text);
7446
7447   if (!GTK_IS_ICON_VIEW (item->widget))
7448     return NULL;
7449
7450   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7451     return NULL;
7452
7453   buffer = item->text_buffer;
7454
7455   if (!gtk_text_buffer_get_char_count (buffer))
7456     {
7457       *start_offset = 0;
7458       *end_offset = 0;
7459       return g_strdup ("");
7460     }
7461   gtk_text_buffer_get_iter_at_offset (buffer, &start, offset);
7462    
7463   end = start;
7464
7465   switch (boundary_type)
7466     {
7467     case ATK_TEXT_BOUNDARY_CHAR:
7468       gtk_text_iter_backward_char(&start);
7469       break;
7470     case ATK_TEXT_BOUNDARY_WORD_START:
7471       if (!gtk_text_iter_starts_word (&start))
7472         gtk_text_iter_backward_word_start (&start);
7473       end = start;
7474       gtk_text_iter_backward_word_start(&start);
7475       break;
7476     case ATK_TEXT_BOUNDARY_WORD_END:
7477       if (gtk_text_iter_inside_word (&start) &&
7478           !gtk_text_iter_starts_word (&start))
7479         gtk_text_iter_backward_word_start (&start);
7480       while (!gtk_text_iter_ends_word (&start))
7481         {
7482           if (!gtk_text_iter_backward_char (&start))
7483             break;
7484         }
7485       end = start;
7486       gtk_text_iter_backward_word_start(&start);
7487       while (!gtk_text_iter_ends_word (&start))
7488         {
7489           if (!gtk_text_iter_backward_char (&start))
7490             break;
7491         }
7492       break;
7493     case ATK_TEXT_BOUNDARY_SENTENCE_START:
7494       if (!gtk_text_iter_starts_sentence (&start))
7495         gtk_text_iter_backward_sentence_start (&start);
7496       end = start;
7497       gtk_text_iter_backward_sentence_start (&start);
7498       break;
7499     case ATK_TEXT_BOUNDARY_SENTENCE_END:
7500       if (gtk_text_iter_inside_sentence (&start) &&
7501           !gtk_text_iter_starts_sentence (&start))
7502         gtk_text_iter_backward_sentence_start (&start);
7503       while (!gtk_text_iter_ends_sentence (&start))
7504         {
7505           if (!gtk_text_iter_backward_char (&start))
7506             break;
7507         }
7508       end = start;
7509       gtk_text_iter_backward_sentence_start (&start);
7510       while (!gtk_text_iter_ends_sentence (&start))
7511         {
7512           if (!gtk_text_iter_backward_char (&start))
7513             break;
7514         }
7515       break;
7516    case ATK_TEXT_BOUNDARY_LINE_START:
7517    case ATK_TEXT_BOUNDARY_LINE_END:
7518 #if 0
7519       icon_view = GTK_ICON_VIEW (item->widget);
7520       /* FIXME we probably have to use GailTextCell to salvage this */
7521       gtk_icon_view_update_item_text (icon_view, item->item);
7522       get_pango_text_offsets (icon_view->priv->layout,
7523                               buffer,
7524                               0,
7525                               boundary_type,
7526                               offset,
7527                               start_offset,
7528                               end_offset,
7529                               &start,
7530                               &end);
7531 #endif
7532       break;
7533     }
7534
7535   *start_offset = gtk_text_iter_get_offset (&start);
7536   *end_offset = gtk_text_iter_get_offset (&end);
7537
7538   return gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
7539 }
7540
7541 static gchar*
7542 gtk_icon_view_item_accessible_text_get_text_at_offset (AtkText         *text,
7543                                                        gint            offset,
7544                                                        AtkTextBoundary boundary_type,
7545                                                        gint            *start_offset,
7546                                                        gint            *end_offset)
7547 {
7548   GtkIconViewItemAccessible *item;
7549   GtkTextIter start, end;
7550   GtkTextBuffer *buffer;
7551 #if 0
7552   GtkIconView *icon_view;
7553 #endif
7554
7555   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (text);
7556
7557   if (!GTK_IS_ICON_VIEW (item->widget))
7558     return NULL;
7559
7560   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7561     return NULL;
7562
7563   buffer = item->text_buffer;
7564
7565   if (!gtk_text_buffer_get_char_count (buffer))
7566     {
7567       *start_offset = 0;
7568       *end_offset = 0;
7569       return g_strdup ("");
7570     }
7571   gtk_text_buffer_get_iter_at_offset (buffer, &start, offset);
7572    
7573   end = start;
7574
7575   switch (boundary_type)
7576     {
7577     case ATK_TEXT_BOUNDARY_CHAR:
7578       gtk_text_iter_forward_char (&end);
7579       break;
7580     case ATK_TEXT_BOUNDARY_WORD_START:
7581       if (!gtk_text_iter_starts_word (&start))
7582         gtk_text_iter_backward_word_start (&start);
7583       if (gtk_text_iter_inside_word (&end))
7584         gtk_text_iter_forward_word_end (&end);
7585       while (!gtk_text_iter_starts_word (&end))
7586         {
7587           if (!gtk_text_iter_forward_char (&end))
7588             break;
7589         }
7590       break;
7591     case ATK_TEXT_BOUNDARY_WORD_END:
7592       if (gtk_text_iter_inside_word (&start) &&
7593           !gtk_text_iter_starts_word (&start))
7594         gtk_text_iter_backward_word_start (&start);
7595       while (!gtk_text_iter_ends_word (&start))
7596         {
7597           if (!gtk_text_iter_backward_char (&start))
7598             break;
7599         }
7600       gtk_text_iter_forward_word_end (&end);
7601       break;
7602     case ATK_TEXT_BOUNDARY_SENTENCE_START:
7603       if (!gtk_text_iter_starts_sentence (&start))
7604         gtk_text_iter_backward_sentence_start (&start);
7605       if (gtk_text_iter_inside_sentence (&end))
7606         gtk_text_iter_forward_sentence_end (&end);
7607       while (!gtk_text_iter_starts_sentence (&end))
7608         {
7609           if (!gtk_text_iter_forward_char (&end))
7610             break;
7611         }
7612       break;
7613     case ATK_TEXT_BOUNDARY_SENTENCE_END:
7614       if (gtk_text_iter_inside_sentence (&start) &&
7615           !gtk_text_iter_starts_sentence (&start))
7616         gtk_text_iter_backward_sentence_start (&start);
7617       while (!gtk_text_iter_ends_sentence (&start))
7618         {
7619           if (!gtk_text_iter_backward_char (&start))
7620             break;
7621         }
7622       gtk_text_iter_forward_sentence_end (&end);
7623       break;
7624    case ATK_TEXT_BOUNDARY_LINE_START:
7625    case ATK_TEXT_BOUNDARY_LINE_END:
7626 #if 0
7627       icon_view = GTK_ICON_VIEW (item->widget);
7628       /* FIXME we probably have to use GailTextCell to salvage this */
7629       gtk_icon_view_update_item_text (icon_view, item->item);
7630       get_pango_text_offsets (icon_view->priv->layout,
7631                               buffer,
7632                               1,
7633                               boundary_type,
7634                               offset,
7635                               start_offset,
7636                               end_offset,
7637                               &start,
7638                               &end);
7639 #endif
7640       break;
7641     }
7642
7643
7644   *start_offset = gtk_text_iter_get_offset (&start);
7645   *end_offset = gtk_text_iter_get_offset (&end);
7646
7647   return gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
7648 }
7649
7650 static gchar*
7651 gtk_icon_view_item_accessible_text_get_text_after_offset (AtkText         *text,
7652                                                           gint            offset,
7653                                                           AtkTextBoundary boundary_type,
7654                                                           gint            *start_offset,
7655                                                           gint            *end_offset)
7656 {
7657   GtkIconViewItemAccessible *item;
7658   GtkTextIter start, end;
7659   GtkTextBuffer *buffer;
7660 #if 0
7661   GtkIconView *icon_view;
7662 #endif
7663
7664   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (text);
7665
7666   if (!GTK_IS_ICON_VIEW (item->widget))
7667     return NULL;
7668
7669   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7670     return NULL;
7671
7672   buffer = item->text_buffer;
7673
7674   if (!gtk_text_buffer_get_char_count (buffer))
7675     {
7676       *start_offset = 0;
7677       *end_offset = 0;
7678       return g_strdup ("");
7679     }
7680   gtk_text_buffer_get_iter_at_offset (buffer, &start, offset);
7681    
7682   end = start;
7683
7684   switch (boundary_type)
7685     {
7686     case ATK_TEXT_BOUNDARY_CHAR:
7687       gtk_text_iter_forward_char(&start);
7688       gtk_text_iter_forward_chars(&end, 2);
7689       break;
7690     case ATK_TEXT_BOUNDARY_WORD_START:
7691       if (gtk_text_iter_inside_word (&end))
7692         gtk_text_iter_forward_word_end (&end);
7693       while (!gtk_text_iter_starts_word (&end))
7694         {
7695           if (!gtk_text_iter_forward_char (&end))
7696             break;
7697         }
7698       start = end;
7699       if (!gtk_text_iter_is_end (&end))
7700         {
7701           gtk_text_iter_forward_word_end (&end);
7702           while (!gtk_text_iter_starts_word (&end))
7703             {
7704               if (!gtk_text_iter_forward_char (&end))
7705                 break;
7706             }
7707         }
7708       break;
7709     case ATK_TEXT_BOUNDARY_WORD_END:
7710       gtk_text_iter_forward_word_end (&end);
7711       start = end;
7712       if (!gtk_text_iter_is_end (&end))
7713         gtk_text_iter_forward_word_end (&end);
7714       break;
7715     case ATK_TEXT_BOUNDARY_SENTENCE_START:
7716       if (gtk_text_iter_inside_sentence (&end))
7717         gtk_text_iter_forward_sentence_end (&end);
7718       while (!gtk_text_iter_starts_sentence (&end))
7719         {
7720           if (!gtk_text_iter_forward_char (&end))
7721             break;
7722         }
7723       start = end;
7724       if (!gtk_text_iter_is_end (&end))
7725         {
7726           gtk_text_iter_forward_sentence_end (&end);
7727           while (!gtk_text_iter_starts_sentence (&end))
7728             {
7729               if (!gtk_text_iter_forward_char (&end))
7730                 break;
7731             }
7732         }
7733       break;
7734     case ATK_TEXT_BOUNDARY_SENTENCE_END:
7735       gtk_text_iter_forward_sentence_end (&end);
7736       start = end;
7737       if (!gtk_text_iter_is_end (&end))
7738         gtk_text_iter_forward_sentence_end (&end);
7739       break;
7740    case ATK_TEXT_BOUNDARY_LINE_START:
7741    case ATK_TEXT_BOUNDARY_LINE_END:
7742 #if 0
7743       icon_view = GTK_ICON_VIEW (item->widget);
7744       /* FIXME we probably have to use GailTextCell to salvage this */
7745       gtk_icon_view_update_item_text (icon_view, item->item);
7746       get_pango_text_offsets (icon_view->priv->layout,
7747                               buffer,
7748                               2,
7749                               boundary_type,
7750                               offset,
7751                               start_offset,
7752                               end_offset,
7753                               &start,
7754                               &end);
7755 #endif
7756       break;
7757     }
7758   *start_offset = gtk_text_iter_get_offset (&start);
7759   *end_offset = gtk_text_iter_get_offset (&end);
7760
7761   return gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
7762 }
7763
7764 static gint
7765 gtk_icon_view_item_accessible_text_get_character_count (AtkText *text)
7766 {
7767   GtkIconViewItemAccessible *item;
7768
7769   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (text);
7770
7771   if (!GTK_IS_ICON_VIEW (item->widget))
7772     return 0;
7773
7774   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7775     return 0;
7776
7777   return gtk_text_buffer_get_char_count (item->text_buffer);
7778 }
7779
7780 static void
7781 gtk_icon_view_item_accessible_text_get_character_extents (AtkText      *text,
7782                                                           gint         offset,
7783                                                           gint         *x,
7784                                                           gint         *y,
7785                                                           gint         *width,
7786                                                           gint         *height,
7787                                                           AtkCoordType coord_type)
7788 {
7789   GtkIconViewItemAccessible *item;
7790 #if 0
7791   GtkIconView *icon_view;
7792   PangoRectangle char_rect;
7793   const gchar *item_text;
7794   gint index;
7795 #endif
7796
7797   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (text);
7798
7799   if (!GTK_IS_ICON_VIEW (item->widget))
7800     return;
7801
7802   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7803     return;
7804
7805 #if 0
7806   icon_view = GTK_ICON_VIEW (item->widget);
7807       /* FIXME we probably have to use GailTextCell to salvage this */
7808   gtk_icon_view_update_item_text (icon_view, item->item);
7809   item_text = pango_layout_get_text (icon_view->priv->layout);
7810   index = g_utf8_offset_to_pointer (item_text, offset) - item_text;
7811   pango_layout_index_to_pos (icon_view->priv->layout, index, &char_rect);
7812
7813   atk_component_get_position (ATK_COMPONENT (text), x, y, coord_type);
7814   *x += item->item->layout_x - item->item->x + char_rect.x / PANGO_SCALE;
7815   /* Look at gtk_icon_view_paint_item() to see where the text is. */
7816   *x -=  ((item->item->width - item->item->layout_width) / 2) + (MAX (item->item->pixbuf_width, icon_view->priv->item_width) - item->item->width) / 2,
7817   *y += item->item->layout_y - item->item->y + char_rect.y / PANGO_SCALE;
7818   *width = char_rect.width / PANGO_SCALE;
7819   *height = char_rect.height / PANGO_SCALE;
7820 #endif
7821 }
7822
7823 static gint
7824 gtk_icon_view_item_accessible_text_get_offset_at_point (AtkText      *text,
7825                                                         gint          x,
7826                                                         gint          y,
7827                                                         AtkCoordType coord_type)
7828 {
7829   GtkIconViewItemAccessible *item;
7830   gint offset = 0;
7831 #if 0
7832   GtkIconView *icon_view;
7833   const gchar *item_text;
7834   gint index;
7835   gint l_x, l_y;
7836 #endif
7837
7838   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (text);
7839
7840   if (!GTK_IS_ICON_VIEW (item->widget))
7841     return -1;
7842
7843   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7844     return -1;
7845
7846 #if 0
7847   icon_view = GTK_ICON_VIEW (item->widget);
7848       /* FIXME we probably have to use GailTextCell to salvage this */
7849   gtk_icon_view_update_item_text (icon_view, item->item);
7850   atk_component_get_position (ATK_COMPONENT (text), &l_x, &l_y, coord_type);
7851   x -= l_x + item->item->layout_x - item->item->x;
7852   x +=  ((item->item->width - item->item->layout_width) / 2) + (MAX (item->item->pixbuf_width, icon_view->priv->item_width) - item->item->width) / 2,
7853   y -= l_y + item->item->layout_y - item->item->y;
7854   item_text = pango_layout_get_text (icon_view->priv->layout);
7855   if (!pango_layout_xy_to_index (icon_view->priv->layout, 
7856                                 x * PANGO_SCALE,
7857                                 y * PANGO_SCALE,
7858                                 &index, NULL))
7859     {
7860       if (x < 0 || y < 0)
7861         index = 0;
7862       else
7863         index = -1;
7864     } 
7865   if (index == -1)
7866     offset = g_utf8_strlen (item_text, -1);
7867   else
7868     offset = g_utf8_pointer_to_offset (item_text, item_text + index);
7869 #endif
7870   return offset;
7871 }
7872
7873 static void
7874 atk_text_item_interface_init (AtkTextIface *iface)
7875 {
7876   iface->get_text = gtk_icon_view_item_accessible_text_get_text;
7877   iface->get_character_at_offset = gtk_icon_view_item_accessible_text_get_character_at_offset;
7878   iface->get_text_before_offset = gtk_icon_view_item_accessible_text_get_text_before_offset;
7879   iface->get_text_at_offset = gtk_icon_view_item_accessible_text_get_text_at_offset;
7880   iface->get_text_after_offset = gtk_icon_view_item_accessible_text_get_text_after_offset;
7881   iface->get_character_count = gtk_icon_view_item_accessible_text_get_character_count;
7882   iface->get_character_extents = gtk_icon_view_item_accessible_text_get_character_extents;
7883   iface->get_offset_at_point = gtk_icon_view_item_accessible_text_get_offset_at_point;
7884 }
7885
7886 static void
7887 gtk_icon_view_item_accessible_get_extents (AtkComponent *component,
7888                                            gint         *x,
7889                                            gint         *y,
7890                                            gint         *width,
7891                                            gint         *height,
7892                                            AtkCoordType  coord_type)
7893 {
7894   GtkIconViewItemAccessible *item;
7895   AtkObject *parent_obj;
7896   gint l_x, l_y;
7897
7898   g_return_if_fail (GTK_IS_ICON_VIEW_ITEM_ACCESSIBLE (component));
7899
7900   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (component);
7901   if (!GTK_IS_WIDGET (item->widget))
7902     return;
7903
7904   if (atk_state_set_contains_state (item->state_set, ATK_STATE_DEFUNCT))
7905     return;
7906
7907   *width = item->item->width;
7908   *height = item->item->height;
7909   if (gtk_icon_view_item_accessible_is_showing (item))
7910     {
7911       parent_obj = gtk_widget_get_accessible (item->widget);
7912       atk_component_get_position (ATK_COMPONENT (parent_obj), &l_x, &l_y, coord_type);
7913       *x = l_x + item->item->x;
7914       *y = l_y + item->item->y;
7915     }
7916   else
7917     {
7918       *x = G_MININT;
7919       *y = G_MININT;
7920     }
7921 }
7922
7923 static gboolean
7924 gtk_icon_view_item_accessible_grab_focus (AtkComponent *component)
7925 {
7926   GtkIconViewItemAccessible *item;
7927   GtkWidget *toplevel;
7928
7929   g_return_val_if_fail (GTK_IS_ICON_VIEW_ITEM_ACCESSIBLE (component), FALSE);
7930
7931   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (component);
7932   if (!GTK_IS_WIDGET (item->widget))
7933     return FALSE;
7934
7935   gtk_widget_grab_focus (item->widget);
7936   gtk_icon_view_set_cursor_item (GTK_ICON_VIEW (item->widget), item->item, -1);
7937   toplevel = gtk_widget_get_toplevel (GTK_WIDGET (item->widget));
7938   if (GTK_WIDGET_TOPLEVEL (toplevel))
7939     gtk_window_present (GTK_WINDOW (toplevel));
7940
7941   return TRUE;
7942 }
7943
7944 static void
7945 atk_component_item_interface_init (AtkComponentIface *iface)
7946 {
7947   iface->get_extents = gtk_icon_view_item_accessible_get_extents;
7948   iface->grab_focus = gtk_icon_view_item_accessible_grab_focus;
7949 }
7950
7951 static gboolean
7952 gtk_icon_view_item_accessible_add_state (GtkIconViewItemAccessible *item,
7953                                          AtkStateType               state_type,
7954                                          gboolean                   emit_signal)
7955 {
7956   gboolean rc;
7957
7958   rc = atk_state_set_add_state (item->state_set, state_type);
7959   /*
7960    * The signal should only be generated if the value changed,
7961    * not when the item is set up.  So states that are set
7962    * initially should pass FALSE as the emit_signal argument.
7963    */
7964
7965   if (emit_signal)
7966     {
7967       atk_object_notify_state_change (ATK_OBJECT (item), state_type, TRUE);
7968       /* If state_type is ATK_STATE_VISIBLE, additional notification */
7969       if (state_type == ATK_STATE_VISIBLE)
7970         g_signal_emit_by_name (item, "visible_data_changed");
7971     }
7972
7973   return rc;
7974 }
7975
7976 static gboolean
7977 gtk_icon_view_item_accessible_remove_state (GtkIconViewItemAccessible *item,
7978                                             AtkStateType               state_type,
7979                                             gboolean                   emit_signal)
7980 {
7981   if (atk_state_set_contains_state (item->state_set, state_type))
7982     {
7983       gboolean rc;
7984
7985       rc = atk_state_set_remove_state (item->state_set, state_type);
7986       /*
7987        * The signal should only be generated if the value changed,
7988        * not when the item is set up.  So states that are set
7989        * initially should pass FALSE as the emit_signal argument.
7990        */
7991
7992       if (emit_signal)
7993         {
7994           atk_object_notify_state_change (ATK_OBJECT (item), state_type, FALSE);
7995           /* If state_type is ATK_STATE_VISIBLE, additional notification */
7996           if (state_type == ATK_STATE_VISIBLE)
7997             g_signal_emit_by_name (item, "visible_data_changed");
7998         }
7999
8000       return rc;
8001     }
8002   else
8003     return FALSE;
8004 }
8005
8006 static gboolean
8007 gtk_icon_view_item_accessible_is_showing (GtkIconViewItemAccessible *item)
8008 {
8009   GtkIconView *icon_view;
8010   GdkRectangle visible_rect;
8011   gboolean is_showing;
8012
8013   /*
8014    * An item is considered "SHOWING" if any part of the item is in the
8015    * visible rectangle.
8016    */
8017
8018   if (!GTK_IS_ICON_VIEW (item->widget))
8019     return FALSE;
8020
8021   if (item->item == NULL)
8022     return FALSE;
8023
8024   icon_view = GTK_ICON_VIEW (item->widget);
8025   visible_rect.x = 0;
8026   if (icon_view->priv->hadjustment)
8027     visible_rect.x += icon_view->priv->hadjustment->value;
8028   visible_rect.y = 0;
8029   if (icon_view->priv->hadjustment)
8030     visible_rect.y += icon_view->priv->vadjustment->value;
8031   visible_rect.width = item->widget->allocation.width;
8032   visible_rect.height = item->widget->allocation.height;
8033
8034   if (((item->item->x + item->item->width) < visible_rect.x) ||
8035      ((item->item->y + item->item->height) < (visible_rect.y)) ||
8036      (item->item->x > (visible_rect.x + visible_rect.width)) ||
8037      (item->item->y > (visible_rect.y + visible_rect.height)))
8038     is_showing =  FALSE;
8039   else
8040     is_showing = TRUE;
8041
8042   return is_showing;
8043 }
8044
8045 static gboolean
8046 gtk_icon_view_item_accessible_set_visibility (GtkIconViewItemAccessible *item,
8047                                               gboolean                   emit_signal)
8048 {
8049   if (gtk_icon_view_item_accessible_is_showing (item))
8050     return gtk_icon_view_item_accessible_add_state (item, ATK_STATE_SHOWING,
8051                                                     emit_signal);
8052   else
8053     return gtk_icon_view_item_accessible_remove_state (item, ATK_STATE_SHOWING,
8054                                                        emit_signal);
8055 }
8056
8057 static void
8058 gtk_icon_view_item_accessible_object_init (GtkIconViewItemAccessible *item)
8059 {
8060   gint i;
8061
8062   item->state_set = atk_state_set_new ();
8063
8064   atk_state_set_add_state (item->state_set, ATK_STATE_ENABLED);
8065   atk_state_set_add_state (item->state_set, ATK_STATE_FOCUSABLE);
8066   atk_state_set_add_state (item->state_set, ATK_STATE_SENSITIVE);
8067   atk_state_set_add_state (item->state_set, ATK_STATE_SELECTABLE);
8068   atk_state_set_add_state (item->state_set, ATK_STATE_VISIBLE);
8069
8070   for (i = 0; i < LAST_ACTION; i++)
8071     item->action_descriptions[i] = NULL;
8072
8073   item->image_description = NULL;
8074
8075   item->action_idle_handler = 0;
8076 }
8077
8078 static void
8079 gtk_icon_view_item_accessible_finalize (GObject *object)
8080 {
8081   GtkIconViewItemAccessible *item;
8082   gint i;
8083
8084   g_return_if_fail (GTK_IS_ICON_VIEW_ITEM_ACCESSIBLE (object));
8085
8086   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (object);
8087
8088   if (item->widget)
8089     g_object_remove_weak_pointer (G_OBJECT (item->widget), (gpointer) &item->widget);
8090
8091   if (item->state_set)
8092     g_object_unref (item->state_set);
8093
8094   if (item->text_buffer)
8095      g_object_unref (item->text_buffer);
8096
8097   for (i = 0; i < LAST_ACTION; i++)
8098     g_free (item->action_descriptions[i]);
8099
8100   g_free (item->image_description);
8101
8102   if (item->action_idle_handler)
8103     {
8104       g_source_remove (item->action_idle_handler);
8105       item->action_idle_handler = 0;
8106     }
8107
8108   G_OBJECT_CLASS (accessible_item_parent_class)->finalize (object);
8109 }
8110
8111 static G_CONST_RETURN gchar*
8112 gtk_icon_view_item_accessible_get_name (AtkObject *obj)
8113 {
8114   if (obj->name)
8115     return obj->name;
8116   else
8117     {
8118       GtkIconViewItemAccessible *item;
8119       GtkTextIter start_iter;
8120       GtkTextIter end_iter;
8121
8122       item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (obj);
8123  
8124       gtk_text_buffer_get_start_iter (item->text_buffer, &start_iter); 
8125       gtk_text_buffer_get_end_iter (item->text_buffer, &end_iter); 
8126
8127       return gtk_text_buffer_get_text (item->text_buffer, &start_iter, &end_iter, FALSE);
8128     }
8129 }
8130
8131 static AtkObject*
8132 gtk_icon_view_item_accessible_get_parent (AtkObject *obj)
8133 {
8134   GtkIconViewItemAccessible *item;
8135
8136   g_return_val_if_fail (GTK_IS_ICON_VIEW_ITEM_ACCESSIBLE (obj), NULL);
8137   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (obj);
8138
8139   if (item->widget)
8140     return gtk_widget_get_accessible (item->widget);
8141   else
8142     return NULL;
8143 }
8144
8145 static gint
8146 gtk_icon_view_item_accessible_get_index_in_parent (AtkObject *obj)
8147 {
8148   GtkIconViewItemAccessible *item;
8149
8150   g_return_val_if_fail (GTK_IS_ICON_VIEW_ITEM_ACCESSIBLE (obj), 0);
8151   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (obj);
8152
8153   return item->item->index; 
8154 }
8155
8156 static AtkStateSet *
8157 gtk_icon_view_item_accessible_ref_state_set (AtkObject *obj)
8158 {
8159   GtkIconViewItemAccessible *item;
8160   GtkIconView *icon_view;
8161
8162   item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (obj);
8163   g_return_val_if_fail (item->state_set, NULL);
8164
8165   if (!item->widget)
8166     return NULL;
8167
8168   icon_view = GTK_ICON_VIEW (item->widget);
8169   if (icon_view->priv->cursor_item == item->item)
8170     atk_state_set_add_state (item->state_set, ATK_STATE_FOCUSED);
8171   else
8172     atk_state_set_remove_state (item->state_set, ATK_STATE_FOCUSED);
8173
8174   return g_object_ref (item->state_set);
8175 }
8176
8177 static void
8178 gtk_icon_view_item_accessible_class_init (AtkObjectClass *klass)
8179 {
8180   GObjectClass *gobject_class;
8181
8182   accessible_item_parent_class = g_type_class_peek_parent (klass);
8183
8184   gobject_class = (GObjectClass *)klass;
8185
8186   gobject_class->finalize = gtk_icon_view_item_accessible_finalize;
8187
8188   klass->get_index_in_parent = gtk_icon_view_item_accessible_get_index_in_parent; 
8189   klass->get_name = gtk_icon_view_item_accessible_get_name; 
8190   klass->get_parent = gtk_icon_view_item_accessible_get_parent; 
8191   klass->ref_state_set = gtk_icon_view_item_accessible_ref_state_set; 
8192 }
8193
8194 static GType
8195 gtk_icon_view_item_accessible_get_type (void)
8196 {
8197   static GType type = 0;
8198
8199   if (!type)
8200     {
8201       const GTypeInfo tinfo =
8202       {
8203         sizeof (GtkIconViewItemAccessibleClass),
8204         (GBaseInitFunc) NULL, /* base init */
8205         (GBaseFinalizeFunc) NULL, /* base finalize */
8206         (GClassInitFunc) gtk_icon_view_item_accessible_class_init, /* class init */
8207         (GClassFinalizeFunc) NULL, /* class finalize */
8208         NULL, /* class data */
8209         sizeof (GtkIconViewItemAccessible), /* instance size */
8210         0, /* nb preallocs */
8211         (GInstanceInitFunc) gtk_icon_view_item_accessible_object_init, /* instance init */
8212         NULL /* value table */
8213       };
8214
8215       static const GInterfaceInfo atk_component_info =
8216       {
8217         (GInterfaceInitFunc) atk_component_item_interface_init,
8218         (GInterfaceFinalizeFunc) NULL,
8219         NULL
8220       };
8221       static const GInterfaceInfo atk_action_info =
8222       {
8223         (GInterfaceInitFunc) atk_action_item_interface_init,
8224         (GInterfaceFinalizeFunc) NULL,
8225         NULL
8226       };
8227       static const GInterfaceInfo atk_image_info =
8228       {
8229         (GInterfaceInitFunc) atk_image_item_interface_init,
8230         (GInterfaceFinalizeFunc) NULL,
8231         NULL
8232       };
8233       static const GInterfaceInfo atk_text_info =
8234       {
8235         (GInterfaceInitFunc) atk_text_item_interface_init,
8236         (GInterfaceFinalizeFunc) NULL,
8237         NULL
8238       };
8239
8240       type = g_type_register_static (ATK_TYPE_OBJECT,
8241                                      I_("GtkIconViewItemAccessible"), &tinfo, 0);
8242       g_type_add_interface_static (type, ATK_TYPE_COMPONENT,
8243                                    &atk_component_info);
8244       g_type_add_interface_static (type, ATK_TYPE_ACTION,
8245                                    &atk_action_info);
8246       g_type_add_interface_static (type, ATK_TYPE_IMAGE,
8247                                    &atk_image_info);
8248       g_type_add_interface_static (type, ATK_TYPE_TEXT,
8249                                    &atk_text_info);
8250     }
8251
8252   return type;
8253 }
8254
8255 #define GTK_TYPE_ICON_VIEW_ACCESSIBLE      (gtk_icon_view_accessible_get_type ())
8256 #define GTK_ICON_VIEW_ACCESSIBLE(obj)      (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ICON_VIEW_ACCESSIBLE, GtkIconViewAccessible))
8257 #define GTK_IS_ICON_VIEW_ACCESSIBLE(obj)   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ICON_VIEW_ACCESSIBLE))
8258
8259 static GType gtk_icon_view_accessible_get_type (void);
8260
8261 typedef struct
8262 {
8263    AtkObject parent;
8264 } GtkIconViewAccessible;
8265
8266 typedef struct
8267 {
8268   AtkObject *item;
8269   gint       index;
8270 } GtkIconViewItemAccessibleInfo;
8271
8272 typedef struct
8273 {
8274   GList *items;
8275
8276   GtkAdjustment *old_hadj;
8277   GtkAdjustment *old_vadj;
8278
8279   GtkTreeModel *model;
8280
8281 } GtkIconViewAccessiblePrivate;
8282
8283 static GtkIconViewAccessiblePrivate *
8284 gtk_icon_view_accessible_get_priv (AtkObject *accessible)
8285 {
8286   return g_object_get_qdata (G_OBJECT (accessible),
8287                              accessible_private_data_quark);
8288 }
8289
8290 static void
8291 gtk_icon_view_item_accessible_info_new (AtkObject *accessible,
8292                                         AtkObject *item,
8293                                         gint       index)
8294 {
8295   GtkIconViewItemAccessibleInfo *info;
8296   GtkIconViewItemAccessibleInfo *tmp_info;
8297   GtkIconViewAccessiblePrivate *priv;
8298   GList *items;
8299
8300   info = g_new (GtkIconViewItemAccessibleInfo, 1);
8301   info->item = item;
8302   info->index = index;
8303
8304   priv = gtk_icon_view_accessible_get_priv (accessible);
8305   items = priv->items;
8306   while (items)
8307     {
8308       tmp_info = items->data;
8309       if (tmp_info->index > index)
8310         break;
8311       items = items->next;
8312     }
8313   priv->items = g_list_insert_before (priv->items, items, info);
8314   priv->old_hadj = NULL;
8315   priv->old_vadj = NULL;
8316 }
8317
8318 static gint
8319 gtk_icon_view_accessible_get_n_children (AtkObject *accessible)
8320 {
8321   GtkIconView *icon_view;
8322   GtkWidget *widget;
8323
8324   widget = GTK_ACCESSIBLE (accessible)->widget;
8325   if (!widget)
8326       return 0;
8327
8328   icon_view = GTK_ICON_VIEW (widget);
8329
8330   return g_list_length (icon_view->priv->items);
8331 }
8332
8333 static AtkObject *
8334 gtk_icon_view_accessible_find_child (AtkObject *accessible,
8335                                      gint       index)
8336 {
8337   GtkIconViewAccessiblePrivate *priv;
8338   GtkIconViewItemAccessibleInfo *info;
8339   GList *items;
8340
8341   priv = gtk_icon_view_accessible_get_priv (accessible);
8342   items = priv->items;
8343
8344   while (items)
8345     {
8346       info = items->data;
8347       if (info->index == index)
8348         return info->item;
8349       items = items->next; 
8350     }
8351   return NULL;
8352 }
8353
8354 static AtkObject *
8355 gtk_icon_view_accessible_ref_child (AtkObject *accessible,
8356                                     gint       index)
8357 {
8358   GtkIconView *icon_view;
8359   GtkWidget *widget;
8360   GList *icons;
8361   AtkObject *obj;
8362   GtkIconViewItemAccessible *a11y_item;
8363
8364   widget = GTK_ACCESSIBLE (accessible)->widget;
8365   if (!widget)
8366     return NULL;
8367
8368   icon_view = GTK_ICON_VIEW (widget);
8369   icons = g_list_nth (icon_view->priv->items, index);
8370   obj = NULL;
8371   if (icons)
8372     {
8373       GtkIconViewItem *item = icons->data;
8374    
8375       g_return_val_if_fail (item->index == index, NULL);
8376       obj = gtk_icon_view_accessible_find_child (accessible, index);
8377       if (!obj)
8378         {
8379           gchar *text;
8380
8381           obj = g_object_new (gtk_icon_view_item_accessible_get_type (), NULL);
8382           gtk_icon_view_item_accessible_info_new (accessible,
8383                                                   obj,
8384                                                   index);
8385           obj->role = ATK_ROLE_ICON;
8386           a11y_item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (obj);
8387           a11y_item->item = item;
8388           a11y_item->widget = widget;
8389           a11y_item->text_buffer = gtk_text_buffer_new (NULL);
8390
8391           gtk_icon_view_set_cell_data (icon_view, item);
8392           text = get_text (icon_view, item);
8393           if (text)
8394             {
8395               gtk_text_buffer_set_text (a11y_item->text_buffer, text, -1);
8396               g_free (text);
8397             } 
8398
8399           gtk_icon_view_item_accessible_set_visibility (a11y_item, FALSE);
8400           g_object_add_weak_pointer (G_OBJECT (widget), (gpointer) &(a11y_item->widget));
8401        }
8402       g_object_ref (obj);
8403     }
8404   return obj;
8405 }
8406
8407 static void
8408 gtk_icon_view_accessible_traverse_items (GtkIconViewAccessible *view,
8409                                          GList                 *list)
8410 {
8411   GtkIconViewAccessiblePrivate *priv;
8412   GtkIconViewItemAccessibleInfo *info;
8413   GtkIconViewItemAccessible *item;
8414   GList *items;
8415   
8416   priv =  gtk_icon_view_accessible_get_priv (ATK_OBJECT (view));
8417   if (priv->items)
8418     {
8419       GtkWidget *widget;
8420       gboolean act_on_item;
8421
8422       widget = GTK_ACCESSIBLE (view)->widget;
8423       if (widget == NULL)
8424         return;
8425
8426       items = priv->items;
8427
8428       act_on_item = (list == NULL);
8429
8430       while (items)
8431         {
8432
8433           info = (GtkIconViewItemAccessibleInfo *)items->data;
8434           item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (info->item);
8435
8436           if (act_on_item == FALSE && list == items)
8437             act_on_item = TRUE;
8438
8439           if (act_on_item)
8440             gtk_icon_view_item_accessible_set_visibility (item, TRUE);
8441
8442           items = items->next;
8443        }
8444    }
8445 }
8446
8447 static void
8448 gtk_icon_view_accessible_adjustment_changed (GtkAdjustment *adjustment,
8449                                              GtkIconView   *icon_view)
8450 {
8451   AtkObject *obj;
8452   GtkIconViewAccessible *view;
8453
8454   /*
8455    * The scrollbars have changed
8456    */
8457   obj = gtk_widget_get_accessible (GTK_WIDGET (icon_view));
8458   view = GTK_ICON_VIEW_ACCESSIBLE (obj);
8459
8460   gtk_icon_view_accessible_traverse_items (view, NULL);
8461 }
8462
8463 static void
8464 gtk_icon_view_accessible_set_scroll_adjustments (GtkWidget      *widget,
8465                                                  GtkAdjustment *hadj,
8466                                                  GtkAdjustment *vadj)
8467 {
8468   AtkObject *atk_obj;
8469   GtkIconViewAccessiblePrivate *priv;
8470
8471   atk_obj = gtk_widget_get_accessible (widget);
8472   priv = gtk_icon_view_accessible_get_priv (atk_obj);
8473
8474   if (priv->old_hadj != hadj)
8475     {
8476       if (priv->old_hadj)
8477         {
8478           g_object_remove_weak_pointer (G_OBJECT (priv->old_hadj),
8479                                         (gpointer *)&priv->old_hadj);
8480           
8481           g_signal_handlers_disconnect_by_func (priv->old_hadj,
8482                                                 (gpointer) gtk_icon_view_accessible_adjustment_changed,
8483                                                 widget);
8484         }
8485       priv->old_hadj = hadj;
8486       if (priv->old_hadj)
8487         {
8488           g_object_add_weak_pointer (G_OBJECT (priv->old_hadj),
8489                                      (gpointer *)&priv->old_hadj);
8490           g_signal_connect (hadj,
8491                             "value-changed",
8492                             G_CALLBACK (gtk_icon_view_accessible_adjustment_changed),
8493                             widget);
8494         }
8495     }
8496   if (priv->old_vadj != vadj)
8497     {
8498       if (priv->old_vadj)
8499         {
8500           g_object_remove_weak_pointer (G_OBJECT (priv->old_vadj),
8501                                         (gpointer *)&priv->old_vadj);
8502           
8503           g_signal_handlers_disconnect_by_func (priv->old_vadj,
8504                                                 (gpointer) gtk_icon_view_accessible_adjustment_changed,
8505                                                 widget);
8506         }
8507       priv->old_vadj = vadj;
8508       if (priv->old_vadj)
8509         {
8510           g_object_add_weak_pointer (G_OBJECT (priv->old_vadj),
8511                                      (gpointer *)&priv->old_vadj);
8512           g_signal_connect (vadj,
8513                             "value-changed",
8514                             G_CALLBACK (gtk_icon_view_accessible_adjustment_changed),
8515                             widget);
8516         }
8517     }
8518 }
8519
8520 static void
8521 gtk_icon_view_accessible_model_row_changed (GtkTreeModel *tree_model,
8522                                             GtkTreePath  *path,
8523                                             GtkTreeIter  *iter,
8524                                             gpointer     user_data)
8525 {
8526   AtkObject *atk_obj;
8527
8528   atk_obj = gtk_widget_get_accessible (GTK_WIDGET (user_data));
8529   g_signal_emit_by_name (atk_obj, "visible_data_changed");
8530
8531   return;
8532 }
8533
8534 static void
8535 gtk_icon_view_accessible_model_row_inserted (GtkTreeModel *tree_model,
8536                                              GtkTreePath  *path,
8537                                              GtkTreeIter  *iter,
8538                                              gpointer     user_data)
8539 {
8540   GtkIconViewAccessiblePrivate *priv;
8541   GtkIconViewItemAccessibleInfo *info;
8542   GtkIconViewAccessible *view;
8543   GtkIconViewItemAccessible *item;
8544   GList *items;
8545   GList *tmp_list;
8546   AtkObject *atk_obj;
8547   gint index;
8548
8549   index = gtk_tree_path_get_indices(path)[0];
8550   atk_obj = gtk_widget_get_accessible (GTK_WIDGET (user_data));
8551   view = GTK_ICON_VIEW_ACCESSIBLE (atk_obj);
8552   priv = gtk_icon_view_accessible_get_priv (atk_obj);
8553
8554   items = priv->items;
8555   tmp_list = NULL;
8556   while (items)
8557     {
8558       info = items->data;
8559       item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (info->item);
8560       if (info->index != item->item->index)
8561         {
8562           if (info->index < index)
8563             g_warning ("Unexpected index value on insertion %d %d", index, info->index);
8564  
8565           if (tmp_list == NULL)
8566             tmp_list = items;
8567    
8568           info->index = item->item->index;
8569         }
8570
8571       items = items->next;
8572     }
8573   gtk_icon_view_accessible_traverse_items (view, tmp_list);
8574   g_signal_emit_by_name (atk_obj, "children_changed::add",
8575                          index, NULL, NULL);
8576   return;
8577 }
8578
8579 static void
8580 gtk_icon_view_accessible_model_row_deleted (GtkTreeModel *tree_model,
8581                                             GtkTreePath  *path,
8582                                             gpointer     user_data)
8583 {
8584   GtkIconViewAccessiblePrivate *priv;
8585   GtkIconViewItemAccessibleInfo *info;
8586   GtkIconViewAccessible *view;
8587   GtkIconViewItemAccessible *item;
8588   GList *items;
8589   GList *tmp_list;
8590   GList *deleted_item;
8591   AtkObject *atk_obj;
8592   gint index;
8593
8594   index = gtk_tree_path_get_indices(path)[0];
8595   atk_obj = gtk_widget_get_accessible (GTK_WIDGET (user_data));
8596   view = GTK_ICON_VIEW_ACCESSIBLE (atk_obj);
8597   priv = gtk_icon_view_accessible_get_priv (atk_obj);
8598
8599   items = priv->items;
8600   tmp_list = NULL;
8601   deleted_item = NULL;
8602   info = NULL;
8603   while (items)
8604     {
8605       info = items->data;
8606       item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (info->item);
8607       if (info->index == index)
8608         {
8609           deleted_item = items;
8610         }
8611       if (info->index != item->item->index)
8612         {
8613           if (tmp_list == NULL)
8614             tmp_list = items;
8615           else    
8616             info->index = item->item->index;
8617         }
8618
8619       items = items->next;
8620     }
8621   gtk_icon_view_accessible_traverse_items (view, tmp_list);
8622   if (deleted_item)
8623     {
8624       info = deleted_item->data;
8625       gtk_icon_view_item_accessible_add_state (GTK_ICON_VIEW_ITEM_ACCESSIBLE (info->item), ATK_STATE_DEFUNCT, TRUE);
8626     }
8627   g_signal_emit_by_name (atk_obj, "children_changed::remove",
8628                          index, NULL, NULL);
8629   if (deleted_item)
8630     {
8631       priv->items = g_list_remove_link (priv->items, deleted_item);
8632       g_free (info);
8633     }
8634
8635   return;
8636 }
8637
8638 static gint
8639 gtk_icon_view_accessible_item_compare (GtkIconViewItemAccessibleInfo *i1,
8640                                        GtkIconViewItemAccessibleInfo *i2)
8641 {
8642   return i1->index - i2->index;
8643 }
8644
8645 static void
8646 gtk_icon_view_accessible_model_rows_reordered (GtkTreeModel *tree_model,
8647                                                GtkTreePath  *path,
8648                                                GtkTreeIter  *iter,
8649                                                gint         *new_order,
8650                                                gpointer     user_data)
8651 {
8652   GtkIconViewAccessiblePrivate *priv;
8653   GtkIconViewItemAccessibleInfo *info;
8654   GtkIconView *icon_view;
8655   GtkIconViewItemAccessible *item;
8656   GList *items;
8657   AtkObject *atk_obj;
8658
8659   atk_obj = gtk_widget_get_accessible (GTK_WIDGET (user_data));
8660   icon_view = GTK_ICON_VIEW (user_data);
8661   priv = gtk_icon_view_accessible_get_priv (atk_obj);
8662
8663   items = priv->items;
8664   while (items)
8665     {
8666       info = items->data;
8667       item = GTK_ICON_VIEW_ITEM_ACCESSIBLE (info->item);
8668       info->index = new_order[info->index];
8669       item->item = g_list_nth_data (icon_view->priv->items, info->index);
8670       items = items->next;
8671     }
8672   priv->items = g_list_sort (priv->items, 
8673                              (GCompareFunc)gtk_icon_view_accessible_item_compare);
8674
8675   return;
8676 }
8677
8678 static void
8679 gtk_icon_view_accessible_disconnect_model_signals (GtkTreeModel *model,
8680                                                    GtkWidget *widget)
8681 {
8682   GObject *obj;
8683
8684   obj = G_OBJECT (model);
8685   g_signal_handlers_disconnect_by_func (obj, (gpointer) gtk_icon_view_accessible_model_row_changed, widget);
8686   g_signal_handlers_disconnect_by_func (obj, (gpointer) gtk_icon_view_accessible_model_row_inserted, widget);
8687   g_signal_handlers_disconnect_by_func (obj, (gpointer) gtk_icon_view_accessible_model_row_deleted, widget);
8688   g_signal_handlers_disconnect_by_func (obj, (gpointer) gtk_icon_view_accessible_model_rows_reordered, widget);
8689 }
8690
8691 static void
8692 gtk_icon_view_accessible_connect_model_signals (GtkIconView *icon_view)
8693 {
8694   GObject *obj;
8695
8696   obj = G_OBJECT (icon_view->priv->model);
8697   g_signal_connect_data (obj, "row_changed",
8698                          (GCallback) gtk_icon_view_accessible_model_row_changed,
8699                          icon_view, NULL, 0);
8700   g_signal_connect_data (obj, "row_inserted",
8701                          (GCallback) gtk_icon_view_accessible_model_row_inserted, 
8702                          icon_view, NULL, G_CONNECT_AFTER);
8703   g_signal_connect_data (obj, "row_deleted",
8704                          (GCallback) gtk_icon_view_accessible_model_row_deleted, 
8705                          icon_view, NULL, G_CONNECT_AFTER);
8706   g_signal_connect_data (obj, "rows_reordered",
8707                          (GCallback) gtk_icon_view_accessible_model_rows_reordered, 
8708                          icon_view, NULL, G_CONNECT_AFTER);
8709 }
8710
8711 static void
8712 gtk_icon_view_accessible_clear_cache (GtkIconViewAccessiblePrivate *priv)
8713 {
8714   GtkIconViewItemAccessibleInfo *info;
8715   GList *items;
8716
8717   items = priv->items;
8718   while (items)
8719     {
8720       info = (GtkIconViewItemAccessibleInfo *) items->data;
8721       g_object_unref (info->item);
8722       g_free (items->data);
8723       items = items->next;
8724     }
8725   g_list_free (priv->items);
8726   priv->items = NULL;
8727 }
8728
8729 static void
8730 gtk_icon_view_accessible_notify_gtk (GObject *obj,
8731                                      GParamSpec *pspec)
8732 {
8733   GtkIconView *icon_view;
8734   GtkWidget *widget;
8735   AtkObject *atk_obj;
8736   GtkIconViewAccessiblePrivate *priv;
8737
8738   if (strcmp (pspec->name, "model") == 0)
8739     {
8740       widget = GTK_WIDGET (obj); 
8741       atk_obj = gtk_widget_get_accessible (widget);
8742       priv = gtk_icon_view_accessible_get_priv (atk_obj);
8743       if (priv->model)
8744         {
8745           g_object_remove_weak_pointer (G_OBJECT (priv->model),
8746                                         (gpointer *)&priv->model);
8747           gtk_icon_view_accessible_disconnect_model_signals (priv->model, widget);
8748         }
8749       gtk_icon_view_accessible_clear_cache (priv);
8750
8751       icon_view = GTK_ICON_VIEW (obj);
8752       priv->model = icon_view->priv->model;
8753       /* If there is no model the GtkIconView is probably being destroyed */
8754       if (priv->model)
8755         {
8756           g_object_add_weak_pointer (G_OBJECT (priv->model), (gpointer *)&priv->model);
8757           gtk_icon_view_accessible_connect_model_signals (icon_view);
8758         }
8759     }
8760
8761   return;
8762 }
8763
8764 static void
8765 gtk_icon_view_accessible_initialize (AtkObject *accessible,
8766                                      gpointer   data)
8767 {
8768   GtkIconViewAccessiblePrivate *priv;
8769   GtkIconView *icon_view;
8770
8771   if (ATK_OBJECT_CLASS (accessible_parent_class)->initialize)
8772     ATK_OBJECT_CLASS (accessible_parent_class)->initialize (accessible, data);
8773
8774   priv = g_new0 (GtkIconViewAccessiblePrivate, 1);
8775   g_object_set_qdata (G_OBJECT (accessible),
8776                       accessible_private_data_quark,
8777                       priv);
8778
8779   icon_view = GTK_ICON_VIEW (data);
8780   if (icon_view->priv->hadjustment)
8781     {
8782       priv->old_hadj = icon_view->priv->hadjustment;
8783       g_object_add_weak_pointer (G_OBJECT (priv->old_hadj), (gpointer *)&priv->old_hadj);
8784       g_signal_connect (icon_view->priv->hadjustment,
8785                         "value-changed",
8786                         G_CALLBACK (gtk_icon_view_accessible_adjustment_changed),
8787                         icon_view);
8788     } 
8789   if (icon_view->priv->vadjustment)
8790     {
8791       priv->old_vadj = icon_view->priv->vadjustment;
8792       g_object_add_weak_pointer (G_OBJECT (priv->old_vadj), (gpointer *)&priv->old_vadj);
8793       g_signal_connect (icon_view->priv->vadjustment,
8794                         "value-changed",
8795                         G_CALLBACK (gtk_icon_view_accessible_adjustment_changed),
8796                         icon_view);
8797     }
8798   g_signal_connect_after (data,
8799                           "set_scroll_adjustments",
8800                           G_CALLBACK (gtk_icon_view_accessible_set_scroll_adjustments),
8801                           NULL);
8802   g_signal_connect (data,
8803                     "notify",
8804                     G_CALLBACK (gtk_icon_view_accessible_notify_gtk),
8805                     NULL);
8806
8807   priv->model = icon_view->priv->model;
8808   if (priv->model)
8809     {
8810       g_object_add_weak_pointer (G_OBJECT (priv->model), (gpointer *)&priv->model);
8811       gtk_icon_view_accessible_connect_model_signals (icon_view);
8812     }
8813                           
8814   accessible->role = ATK_ROLE_LAYERED_PANE;
8815 }
8816
8817 static void
8818 gtk_icon_view_accessible_finalize (GObject *object)
8819 {
8820   GtkIconViewAccessiblePrivate *priv;
8821
8822   priv = gtk_icon_view_accessible_get_priv (ATK_OBJECT (object));
8823   gtk_icon_view_accessible_clear_cache (priv);
8824
8825   g_free (priv);
8826
8827   G_OBJECT_CLASS (accessible_parent_class)->finalize (object);
8828 }
8829
8830 static void
8831 gtk_icon_view_accessible_destroyed (GtkWidget *widget,
8832                                     GtkAccessible *accessible)
8833 {
8834   AtkObject *atk_obj;
8835   GtkIconViewAccessiblePrivate *priv;
8836
8837   atk_obj = ATK_OBJECT (accessible);
8838   priv = gtk_icon_view_accessible_get_priv (atk_obj);
8839   if (priv->old_hadj)
8840     {
8841       g_object_remove_weak_pointer (G_OBJECT (priv->old_hadj),
8842                                     (gpointer *)&priv->old_hadj);
8843           
8844       g_signal_handlers_disconnect_by_func (priv->old_hadj,
8845                                             (gpointer) gtk_icon_view_accessible_adjustment_changed,
8846                                             widget);
8847       priv->old_hadj = NULL;
8848     }
8849   if (priv->old_vadj)
8850     {
8851       g_object_remove_weak_pointer (G_OBJECT (priv->old_vadj),
8852                                     (gpointer *)&priv->old_vadj);
8853           
8854       g_signal_handlers_disconnect_by_func (priv->old_vadj,
8855                                             (gpointer) gtk_icon_view_accessible_adjustment_changed,
8856                                             widget);
8857       priv->old_vadj = NULL;
8858     }
8859 }
8860
8861 static void
8862 gtk_icon_view_accessible_connect_widget_destroyed (GtkAccessible *accessible)
8863 {
8864   if (accessible->widget)
8865     {
8866       g_signal_connect_after (accessible->widget,
8867                               "destroy",
8868                               G_CALLBACK (gtk_icon_view_accessible_destroyed),
8869                               accessible);
8870     }
8871   GTK_ACCESSIBLE_CLASS (accessible_parent_class)->connect_widget_destroyed (accessible);
8872 }
8873
8874 static void
8875 gtk_icon_view_accessible_class_init (AtkObjectClass *klass)
8876 {
8877   GObjectClass *gobject_class;
8878   GtkAccessibleClass *accessible_class;
8879
8880   accessible_parent_class = g_type_class_peek_parent (klass);
8881
8882   gobject_class = (GObjectClass *)klass;
8883   accessible_class = (GtkAccessibleClass *)klass;
8884
8885   gobject_class->finalize = gtk_icon_view_accessible_finalize;
8886
8887   klass->get_n_children = gtk_icon_view_accessible_get_n_children;
8888   klass->ref_child = gtk_icon_view_accessible_ref_child;
8889   klass->initialize = gtk_icon_view_accessible_initialize;
8890
8891   accessible_class->connect_widget_destroyed = gtk_icon_view_accessible_connect_widget_destroyed;
8892
8893   accessible_private_data_quark = g_quark_from_static_string ("icon_view-accessible-private-data");
8894 }
8895
8896 static AtkObject*
8897 gtk_icon_view_accessible_ref_accessible_at_point (AtkComponent *component,
8898                                                   gint          x,
8899                                                   gint          y,
8900                                                   AtkCoordType  coord_type)
8901 {
8902   GtkWidget *widget;
8903   GtkIconView *icon_view;
8904   GtkIconViewItem *item;
8905   gint x_pos, y_pos;
8906
8907   widget = GTK_ACCESSIBLE (component)->widget;
8908   if (widget == NULL)
8909   /* State is defunct */
8910     return NULL;
8911
8912   icon_view = GTK_ICON_VIEW (widget);
8913   atk_component_get_extents (component, &x_pos, &y_pos, NULL, NULL, coord_type);
8914   item = gtk_icon_view_get_item_at_coords (icon_view, x - x_pos, y - y_pos, TRUE, NULL);
8915   if (item)
8916     return gtk_icon_view_accessible_ref_child (ATK_OBJECT (component), item->index);
8917
8918   return NULL;
8919 }
8920
8921 static void
8922 atk_component_interface_init (AtkComponentIface *iface)
8923 {
8924   iface->ref_accessible_at_point = gtk_icon_view_accessible_ref_accessible_at_point;
8925 }
8926
8927 static gboolean
8928 gtk_icon_view_accessible_add_selection (AtkSelection *selection,
8929                                         gint i)
8930 {
8931   GtkWidget *widget;
8932   GtkIconView *icon_view;
8933   GtkIconViewItem *item;
8934
8935   widget = GTK_ACCESSIBLE (selection)->widget;
8936   if (widget == NULL)
8937     return FALSE;
8938
8939   icon_view = GTK_ICON_VIEW (widget);
8940
8941   item = g_list_nth_data (icon_view->priv->items, i);
8942
8943   if (!item)
8944     return FALSE;
8945
8946   gtk_icon_view_select_item (icon_view, item);
8947
8948   return TRUE;
8949 }
8950
8951 static gboolean
8952 gtk_icon_view_accessible_clear_selection (AtkSelection *selection)
8953 {
8954   GtkWidget *widget;
8955   GtkIconView *icon_view;
8956
8957   widget = GTK_ACCESSIBLE (selection)->widget;
8958   if (widget == NULL)
8959     return FALSE;
8960
8961   icon_view = GTK_ICON_VIEW (widget);
8962   gtk_icon_view_unselect_all (icon_view);
8963
8964   return TRUE;
8965 }
8966
8967 static AtkObject*
8968 gtk_icon_view_accessible_ref_selection (AtkSelection *selection,
8969                                         gint          i)
8970 {
8971   GList *l;
8972   GtkWidget *widget;
8973   GtkIconView *icon_view;
8974   GtkIconViewItem *item;
8975
8976   widget = GTK_ACCESSIBLE (selection)->widget;
8977   if (widget == NULL)
8978     return NULL;
8979
8980   icon_view = GTK_ICON_VIEW (widget);
8981
8982   l = icon_view->priv->items;
8983   while (l)
8984     {
8985       item = l->data;
8986       if (item->selected)
8987         {
8988           if (i == 0)
8989             return atk_object_ref_accessible_child (gtk_widget_get_accessible (widget), item->index);
8990           else
8991             i--;
8992         }
8993       l = l->next;
8994     }
8995
8996   return NULL;
8997 }
8998
8999 static gint
9000 gtk_icon_view_accessible_get_selection_count (AtkSelection *selection)
9001 {
9002   GtkWidget *widget;
9003   GtkIconView *icon_view;
9004   GtkIconViewItem *item;
9005   GList *l;
9006   gint count;
9007
9008   widget = GTK_ACCESSIBLE (selection)->widget;
9009   if (widget == NULL)
9010     return 0;
9011
9012   icon_view = GTK_ICON_VIEW (widget);
9013
9014   l = icon_view->priv->items;
9015   count = 0;
9016   while (l)
9017     {
9018       item = l->data;
9019
9020       if (item->selected)
9021         count++;
9022
9023       l = l->next;
9024     }
9025
9026   return count;
9027 }
9028
9029 static gboolean
9030 gtk_icon_view_accessible_is_child_selected (AtkSelection *selection,
9031                                             gint          i)
9032 {
9033   GtkWidget *widget;
9034   GtkIconView *icon_view;
9035   GtkIconViewItem *item;
9036
9037   widget = GTK_ACCESSIBLE (selection)->widget;
9038   if (widget == NULL)
9039     return FALSE;
9040
9041   icon_view = GTK_ICON_VIEW (widget);
9042
9043   item = g_list_nth_data (icon_view->priv->items, i);
9044   if (!item)
9045     return FALSE;
9046
9047   return item->selected;
9048 }
9049
9050 static gboolean
9051 gtk_icon_view_accessible_remove_selection (AtkSelection *selection,
9052                                            gint          i)
9053 {
9054   GtkWidget *widget;
9055   GtkIconView *icon_view;
9056   GtkIconViewItem *item;
9057   GList *l;
9058   gint count;
9059
9060   widget = GTK_ACCESSIBLE (selection)->widget;
9061   if (widget == NULL)
9062     return FALSE;
9063
9064   icon_view = GTK_ICON_VIEW (widget);
9065   l = icon_view->priv->items;
9066   count = 0;
9067   while (l)
9068     {
9069       item = l->data;
9070       if (item->selected)
9071         {
9072           if (count == i)
9073             {
9074               gtk_icon_view_unselect_item (icon_view, item);
9075               return TRUE;
9076             }
9077           count++;
9078         }
9079       l = l->next;
9080     }
9081
9082   return FALSE;
9083 }
9084  
9085 static gboolean
9086 gtk_icon_view_accessible_select_all_selection (AtkSelection *selection)
9087 {
9088   GtkWidget *widget;
9089   GtkIconView *icon_view;
9090
9091   widget = GTK_ACCESSIBLE (selection)->widget;
9092   if (widget == NULL)
9093     return FALSE;
9094
9095   icon_view = GTK_ICON_VIEW (widget);
9096   gtk_icon_view_select_all (icon_view);
9097   return TRUE;
9098 }
9099
9100 static void
9101 gtk_icon_view_accessible_selection_interface_init (AtkSelectionIface *iface)
9102 {
9103   iface->add_selection = gtk_icon_view_accessible_add_selection;
9104   iface->clear_selection = gtk_icon_view_accessible_clear_selection;
9105   iface->ref_selection = gtk_icon_view_accessible_ref_selection;
9106   iface->get_selection_count = gtk_icon_view_accessible_get_selection_count;
9107   iface->is_child_selected = gtk_icon_view_accessible_is_child_selected;
9108   iface->remove_selection = gtk_icon_view_accessible_remove_selection;
9109   iface->select_all_selection = gtk_icon_view_accessible_select_all_selection;
9110 }
9111
9112 static GType
9113 gtk_icon_view_accessible_get_type (void)
9114 {
9115   static GType type = 0;
9116
9117   if (!type)
9118     {
9119       static GTypeInfo tinfo =
9120       {
9121         0, /* class size */
9122         (GBaseInitFunc) NULL, /* base init */
9123         (GBaseFinalizeFunc) NULL, /* base finalize */
9124         (GClassInitFunc) gtk_icon_view_accessible_class_init,
9125         (GClassFinalizeFunc) NULL, /* class finalize */
9126         NULL, /* class data */
9127         0, /* instance size */
9128         0, /* nb preallocs */
9129         (GInstanceInitFunc) NULL, /* instance init */
9130         NULL /* value table */
9131       };
9132       static const GInterfaceInfo atk_component_info =
9133       {
9134         (GInterfaceInitFunc) atk_component_interface_init,
9135         (GInterfaceFinalizeFunc) NULL,
9136         NULL
9137       };
9138       static const GInterfaceInfo atk_selection_info = 
9139       {
9140         (GInterfaceInitFunc) gtk_icon_view_accessible_selection_interface_init,
9141         (GInterfaceFinalizeFunc) NULL,
9142         NULL
9143       };
9144
9145       /*
9146        * Figure out the size of the class and instance
9147        * we are deriving from
9148        */
9149       AtkObjectFactory *factory;
9150       GType derived_type;
9151       GTypeQuery query;
9152       GType derived_atk_type;
9153
9154       derived_type = g_type_parent (GTK_TYPE_ICON_VIEW);
9155       factory = atk_registry_get_factory (atk_get_default_registry (), 
9156                                           derived_type);
9157       derived_atk_type = atk_object_factory_get_accessible_type (factory);
9158       g_type_query (derived_atk_type, &query);
9159       tinfo.class_size = query.class_size;
9160       tinfo.instance_size = query.instance_size;
9161  
9162       type = g_type_register_static (derived_atk_type, 
9163                                      I_("GtkIconViewAccessible"), 
9164                                      &tinfo, 0);
9165       g_type_add_interface_static (type, ATK_TYPE_COMPONENT,
9166                                    &atk_component_info);
9167       g_type_add_interface_static (type, ATK_TYPE_SELECTION,
9168                                    &atk_selection_info);
9169     }
9170   return type;
9171 }
9172
9173 static AtkObject *
9174 gtk_icon_view_accessible_new (GObject *obj)
9175 {
9176   AtkObject *accessible;
9177
9178   g_return_val_if_fail (GTK_IS_WIDGET (obj), NULL);
9179
9180   accessible = g_object_new (gtk_icon_view_accessible_get_type (), NULL);
9181   atk_object_initialize (accessible, obj);
9182
9183   return accessible;
9184 }
9185
9186 static GType
9187 gtk_icon_view_accessible_factory_get_accessible_type (void)
9188 {
9189   return gtk_icon_view_accessible_get_type ();
9190 }
9191
9192 static AtkObject*
9193 gtk_icon_view_accessible_factory_create_accessible (GObject *obj)
9194 {
9195   return gtk_icon_view_accessible_new (obj);
9196 }
9197
9198 static void
9199 gtk_icon_view_accessible_factory_class_init (AtkObjectFactoryClass *klass)
9200 {
9201   klass->create_accessible = gtk_icon_view_accessible_factory_create_accessible;
9202   klass->get_accessible_type = gtk_icon_view_accessible_factory_get_accessible_type;
9203 }
9204
9205 static GType
9206 gtk_icon_view_accessible_factory_get_type (void)
9207 {
9208   static GType type = 0;
9209
9210   if (!type)
9211     {
9212       const GTypeInfo tinfo =
9213       {
9214         sizeof (AtkObjectFactoryClass),
9215         NULL,           /* base_init */
9216         NULL,           /* base_finalize */
9217         (GClassInitFunc) gtk_icon_view_accessible_factory_class_init,
9218         NULL,           /* class_finalize */
9219         NULL,           /* class_data */
9220         sizeof (AtkObjectFactory),
9221         0,             /* n_preallocs */
9222         NULL, NULL
9223       };
9224
9225       type = g_type_register_static (ATK_TYPE_OBJECT_FACTORY, 
9226                                     I_("GtkIconViewAccessibleFactory"),
9227                                     &tinfo, 0);
9228     }
9229   return type;
9230 }
9231
9232
9233 static AtkObject *
9234 gtk_icon_view_get_accessible (GtkWidget *widget)
9235 {
9236   static gboolean first_time = TRUE;
9237
9238   if (first_time)
9239     {
9240       AtkObjectFactory *factory;
9241       AtkRegistry *registry;
9242       GType derived_type; 
9243       GType derived_atk_type; 
9244
9245       /*
9246        * Figure out whether accessibility is enabled by looking at the
9247        * type of the accessible object which would be created for
9248        * the parent type of GtkIconView.
9249        */
9250       derived_type = g_type_parent (GTK_TYPE_ICON_VIEW);
9251
9252       registry = atk_get_default_registry ();
9253       factory = atk_registry_get_factory (registry,
9254                                           derived_type);
9255       derived_atk_type = atk_object_factory_get_accessible_type (factory);
9256       if (g_type_is_a (derived_atk_type, GTK_TYPE_ACCESSIBLE)) 
9257         atk_registry_set_factory_type (registry, 
9258                                        GTK_TYPE_ICON_VIEW,
9259                                        gtk_icon_view_accessible_factory_get_type ());
9260       first_time = FALSE;
9261     } 
9262   return (* GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->get_accessible) (widget);
9263 }
9264
9265 static gboolean
9266 gtk_icon_view_buildable_custom_tag_start (GtkBuildable  *buildable,
9267                                           GtkBuilder    *builder,
9268                                           GObject       *child,
9269                                           const gchar   *tagname,
9270                                           GMarkupParser *parser,
9271                                           gpointer      *data)
9272 {
9273   if (parent_buildable_iface->custom_tag_start (buildable, builder, child,
9274                                                 tagname, parser, data))
9275     return TRUE;
9276
9277   return _gtk_cell_layout_buildable_custom_tag_start (buildable, builder, child,
9278                                                       tagname, parser, data);
9279 }
9280
9281 static void
9282 gtk_icon_view_buildable_custom_tag_end (GtkBuildable *buildable,
9283                                         GtkBuilder   *builder,
9284                                         GObject      *child,
9285                                         const gchar  *tagname,
9286                                         gpointer     *data)
9287 {
9288   if (strcmp (tagname, "attributes") == 0)
9289     _gtk_cell_layout_buildable_custom_tag_end (buildable, builder, child, tagname,
9290                                                data);
9291   else
9292     parent_buildable_iface->custom_tag_end (buildable, builder, child, tagname,
9293                                             data);
9294 }
9295
9296
9297
9298 #define __GTK_ICON_VIEW_C__
9299 #include "gtkaliasdef.c"