| 1 | /* gtkiconview.h |
| 2 | * Copyright (C) 2002, 2004 Anders Carlsson <andersca@gnome.org> |
| 3 | * |
| 4 | * This library is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU Library General Public |
| 6 | * License as published by the Free Software Foundation; either |
| 7 | * version 2 of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * This library is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * Library General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU Library General Public |
| 15 | * License along with this library. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ |
| 17 | |
| 18 | #ifndef __GTK_ICON_VIEW_H__ |
| 19 | #define __GTK_ICON_VIEW_H__ |
| 20 | |
| 21 | #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) |
| 22 | #error "Only <gtk/gtk.h> can be included directly." |
| 23 | #endif |
| 24 | |
| 25 | #include <gtk/gtkcontainer.h> |
| 26 | #include <gtk/gtktreemodel.h> |
| 27 | #include <gtk/gtkcellrenderer.h> |
| 28 | #include <gtk/gtkcellarea.h> |
| 29 | #include <gtk/gtkselection.h> |
| 30 | #include <gtk/gtktooltip.h> |
| 31 | |
| 32 | G_BEGIN_DECLS |
| 33 | |
| 34 | #define GTK_TYPE_ICON_VIEW (gtk_icon_view_get_type ()) |
| 35 | #define GTK_ICON_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ICON_VIEW, GtkIconView)) |
| 36 | #define GTK_ICON_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ICON_VIEW, GtkIconViewClass)) |
| 37 | #define GTK_IS_ICON_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ICON_VIEW)) |
| 38 | #define GTK_IS_ICON_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ICON_VIEW)) |
| 39 | #define GTK_ICON_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ICON_VIEW, GtkIconViewClass)) |
| 40 | |
| 41 | typedef struct _GtkIconView GtkIconView; |
| 42 | typedef struct _GtkIconViewClass GtkIconViewClass; |
| 43 | typedef struct _GtkIconViewPrivate GtkIconViewPrivate; |
| 44 | |
| 45 | /** |
| 46 | * GtkIconViewForeachFunc: |
| 47 | * @icon_view: a #GtkIconView |
| 48 | * @path: The #GtkTreePath of a selected row |
| 49 | * @data: (closure): user data |
| 50 | * |
| 51 | * A function used by gtk_icon_view_selected_foreach() to map all |
| 52 | * selected rows. It will be called on every selected row in the view. |
| 53 | */ |
| 54 | typedef void (* GtkIconViewForeachFunc) (GtkIconView *icon_view, |
| 55 | GtkTreePath *path, |
| 56 | gpointer data); |
| 57 | |
| 58 | /** |
| 59 | * GtkIconViewDropPosition: |
| 60 | * @GTK_ICON_VIEW_NO_DROP: no drop possible |
| 61 | * @GTK_ICON_VIEW_DROP_INTO: dropped item replaces the item |
| 62 | * @GTK_ICON_VIEW_DROP_LEFT: droppped item is inserted to the left |
| 63 | * @GTK_ICON_VIEW_DROP_RIGHT: dropped item is inserted to the right |
| 64 | * @GTK_ICON_VIEW_DROP_ABOVE: dropped item is inserted above |
| 65 | * @GTK_ICON_VIEW_DROP_BELOW: dropped item is inserted below |
| 66 | * |
| 67 | * An enum for determining where a dropped item goes. |
| 68 | */ |
| 69 | typedef enum |
| 70 | { |
| 71 | GTK_ICON_VIEW_NO_DROP, |
| 72 | GTK_ICON_VIEW_DROP_INTO, |
| 73 | GTK_ICON_VIEW_DROP_LEFT, |
| 74 | GTK_ICON_VIEW_DROP_RIGHT, |
| 75 | GTK_ICON_VIEW_DROP_ABOVE, |
| 76 | GTK_ICON_VIEW_DROP_BELOW |
| 77 | } GtkIconViewDropPosition; |
| 78 | |
| 79 | struct _GtkIconView |
| 80 | { |
| 81 | GtkContainer parent; |
| 82 | |
| 83 | /*< private >*/ |
| 84 | GtkIconViewPrivate *priv; |
| 85 | }; |
| 86 | |
| 87 | struct _GtkIconViewClass |
| 88 | { |
| 89 | GtkContainerClass parent_class; |
| 90 | |
| 91 | void (* item_activated) (GtkIconView *icon_view, |
| 92 | GtkTreePath *path); |
| 93 | void (* selection_changed) (GtkIconView *icon_view); |
| 94 | |
| 95 | /* Key binding signals */ |
| 96 | void (* select_all) (GtkIconView *icon_view); |
| 97 | void (* unselect_all) (GtkIconView *icon_view); |
| 98 | void (* select_cursor_item) (GtkIconView *icon_view); |
| 99 | void (* toggle_cursor_item) (GtkIconView *icon_view); |
| 100 | gboolean (* move_cursor) (GtkIconView *icon_view, |
| 101 | GtkMovementStep step, |
| 102 | gint count); |
| 103 | gboolean (* activate_cursor_item) (GtkIconView *icon_view); |
| 104 | |
| 105 | /* Padding for future expansion */ |
| 106 | void (*_gtk_reserved1) (void); |
| 107 | void (*_gtk_reserved2) (void); |
| 108 | void (*_gtk_reserved3) (void); |
| 109 | void (*_gtk_reserved4) (void); |
| 110 | }; |
| 111 | |
| 112 | GDK_AVAILABLE_IN_ALL |
| 113 | GType gtk_icon_view_get_type (void) G_GNUC_CONST; |
| 114 | GDK_AVAILABLE_IN_ALL |
| 115 | GtkWidget * gtk_icon_view_new (void); |
| 116 | GDK_AVAILABLE_IN_ALL |
| 117 | GtkWidget * gtk_icon_view_new_with_area (GtkCellArea *area); |
| 118 | GDK_AVAILABLE_IN_ALL |
| 119 | GtkWidget * gtk_icon_view_new_with_model (GtkTreeModel *model); |
| 120 | |
| 121 | GDK_AVAILABLE_IN_ALL |
| 122 | void gtk_icon_view_set_model (GtkIconView *icon_view, |
| 123 | GtkTreeModel *model); |
| 124 | GDK_AVAILABLE_IN_ALL |
| 125 | GtkTreeModel * gtk_icon_view_get_model (GtkIconView *icon_view); |
| 126 | GDK_AVAILABLE_IN_ALL |
| 127 | void gtk_icon_view_set_text_column (GtkIconView *icon_view, |
| 128 | gint column); |
| 129 | GDK_AVAILABLE_IN_ALL |
| 130 | gint gtk_icon_view_get_text_column (GtkIconView *icon_view); |
| 131 | GDK_AVAILABLE_IN_ALL |
| 132 | void gtk_icon_view_set_markup_column (GtkIconView *icon_view, |
| 133 | gint column); |
| 134 | GDK_AVAILABLE_IN_ALL |
| 135 | gint gtk_icon_view_get_markup_column (GtkIconView *icon_view); |
| 136 | GDK_AVAILABLE_IN_ALL |
| 137 | void gtk_icon_view_set_pixbuf_column (GtkIconView *icon_view, |
| 138 | gint column); |
| 139 | GDK_AVAILABLE_IN_ALL |
| 140 | gint gtk_icon_view_get_pixbuf_column (GtkIconView *icon_view); |
| 141 | |
| 142 | GDK_AVAILABLE_IN_ALL |
| 143 | void gtk_icon_view_set_item_orientation (GtkIconView *icon_view, |
| 144 | GtkOrientation orientation); |
| 145 | GDK_AVAILABLE_IN_ALL |
| 146 | GtkOrientation gtk_icon_view_get_item_orientation (GtkIconView *icon_view); |
| 147 | GDK_AVAILABLE_IN_ALL |
| 148 | void gtk_icon_view_set_columns (GtkIconView *icon_view, |
| 149 | gint columns); |
| 150 | GDK_AVAILABLE_IN_ALL |
| 151 | gint gtk_icon_view_get_columns (GtkIconView *icon_view); |
| 152 | GDK_AVAILABLE_IN_ALL |
| 153 | void gtk_icon_view_set_item_width (GtkIconView *icon_view, |
| 154 | gint item_width); |
| 155 | GDK_AVAILABLE_IN_ALL |
| 156 | gint gtk_icon_view_get_item_width (GtkIconView *icon_view); |
| 157 | GDK_AVAILABLE_IN_ALL |
| 158 | void gtk_icon_view_set_spacing (GtkIconView *icon_view, |
| 159 | gint spacing); |
| 160 | GDK_AVAILABLE_IN_ALL |
| 161 | gint gtk_icon_view_get_spacing (GtkIconView *icon_view); |
| 162 | GDK_AVAILABLE_IN_ALL |
| 163 | void gtk_icon_view_set_row_spacing (GtkIconView *icon_view, |
| 164 | gint row_spacing); |
| 165 | GDK_AVAILABLE_IN_ALL |
| 166 | gint gtk_icon_view_get_row_spacing (GtkIconView *icon_view); |
| 167 | GDK_AVAILABLE_IN_ALL |
| 168 | void gtk_icon_view_set_column_spacing (GtkIconView *icon_view, |
| 169 | gint column_spacing); |
| 170 | GDK_AVAILABLE_IN_ALL |
| 171 | gint gtk_icon_view_get_column_spacing (GtkIconView *icon_view); |
| 172 | GDK_AVAILABLE_IN_ALL |
| 173 | void gtk_icon_view_set_margin (GtkIconView *icon_view, |
| 174 | gint margin); |
| 175 | GDK_AVAILABLE_IN_ALL |
| 176 | gint gtk_icon_view_get_margin (GtkIconView *icon_view); |
| 177 | GDK_AVAILABLE_IN_ALL |
| 178 | void gtk_icon_view_set_item_padding (GtkIconView *icon_view, |
| 179 | gint item_padding); |
| 180 | GDK_AVAILABLE_IN_ALL |
| 181 | gint gtk_icon_view_get_item_padding (GtkIconView *icon_view); |
| 182 | |
| 183 | GDK_AVAILABLE_IN_ALL |
| 184 | GtkTreePath * gtk_icon_view_get_path_at_pos (GtkIconView *icon_view, |
| 185 | gint x, |
| 186 | gint y); |
| 187 | GDK_AVAILABLE_IN_ALL |
| 188 | gboolean gtk_icon_view_get_item_at_pos (GtkIconView *icon_view, |
| 189 | gint x, |
| 190 | gint y, |
| 191 | GtkTreePath **path, |
| 192 | GtkCellRenderer **cell); |
| 193 | GDK_AVAILABLE_IN_ALL |
| 194 | gboolean gtk_icon_view_get_visible_range (GtkIconView *icon_view, |
| 195 | GtkTreePath **start_path, |
| 196 | GtkTreePath **end_path); |
| 197 | GDK_AVAILABLE_IN_3_8 |
| 198 | void gtk_icon_view_set_activate_on_single_click (GtkIconView *icon_view, |
| 199 | gboolean single); |
| 200 | GDK_AVAILABLE_IN_3_8 |
| 201 | gboolean gtk_icon_view_get_activate_on_single_click (GtkIconView *icon_view); |
| 202 | |
| 203 | GDK_AVAILABLE_IN_ALL |
| 204 | void gtk_icon_view_selected_foreach (GtkIconView *icon_view, |
| 205 | GtkIconViewForeachFunc func, |
| 206 | gpointer data); |
| 207 | GDK_AVAILABLE_IN_ALL |
| 208 | void gtk_icon_view_set_selection_mode (GtkIconView *icon_view, |
| 209 | GtkSelectionMode mode); |
| 210 | GDK_AVAILABLE_IN_ALL |
| 211 | GtkSelectionMode gtk_icon_view_get_selection_mode (GtkIconView *icon_view); |
| 212 | GDK_AVAILABLE_IN_ALL |
| 213 | void gtk_icon_view_select_path (GtkIconView *icon_view, |
| 214 | GtkTreePath *path); |
| 215 | GDK_AVAILABLE_IN_ALL |
| 216 | void gtk_icon_view_unselect_path (GtkIconView *icon_view, |
| 217 | GtkTreePath *path); |
| 218 | GDK_AVAILABLE_IN_ALL |
| 219 | gboolean gtk_icon_view_path_is_selected (GtkIconView *icon_view, |
| 220 | GtkTreePath *path); |
| 221 | GDK_AVAILABLE_IN_ALL |
| 222 | gint gtk_icon_view_get_item_row (GtkIconView *icon_view, |
| 223 | GtkTreePath *path); |
| 224 | GDK_AVAILABLE_IN_ALL |
| 225 | gint gtk_icon_view_get_item_column (GtkIconView *icon_view, |
| 226 | GtkTreePath *path); |
| 227 | GDK_AVAILABLE_IN_ALL |
| 228 | GList *gtk_icon_view_get_selected_items (GtkIconView *icon_view); |
| 229 | GDK_AVAILABLE_IN_ALL |
| 230 | void gtk_icon_view_select_all (GtkIconView *icon_view); |
| 231 | GDK_AVAILABLE_IN_ALL |
| 232 | void gtk_icon_view_unselect_all (GtkIconView *icon_view); |
| 233 | GDK_AVAILABLE_IN_ALL |
| 234 | void gtk_icon_view_item_activated (GtkIconView *icon_view, |
| 235 | GtkTreePath *path); |
| 236 | GDK_AVAILABLE_IN_ALL |
| 237 | void gtk_icon_view_set_cursor (GtkIconView *icon_view, |
| 238 | GtkTreePath *path, |
| 239 | GtkCellRenderer *cell, |
| 240 | gboolean start_editing); |
| 241 | GDK_AVAILABLE_IN_ALL |
| 242 | gboolean gtk_icon_view_get_cursor (GtkIconView *icon_view, |
| 243 | GtkTreePath **path, |
| 244 | GtkCellRenderer **cell); |
| 245 | GDK_AVAILABLE_IN_ALL |
| 246 | void gtk_icon_view_scroll_to_path (GtkIconView *icon_view, |
| 247 | GtkTreePath *path, |
| 248 | gboolean use_align, |
| 249 | gfloat row_align, |
| 250 | gfloat col_align); |
| 251 | |
| 252 | /* Drag-and-Drop support */ |
| 253 | GDK_AVAILABLE_IN_ALL |
| 254 | void gtk_icon_view_enable_model_drag_source (GtkIconView *icon_view, |
| 255 | GdkModifierType start_button_mask, |
| 256 | const GtkTargetEntry *targets, |
| 257 | gint n_targets, |
| 258 | GdkDragAction actions); |
| 259 | GDK_AVAILABLE_IN_ALL |
| 260 | void gtk_icon_view_enable_model_drag_dest (GtkIconView *icon_view, |
| 261 | const GtkTargetEntry *targets, |
| 262 | gint n_targets, |
| 263 | GdkDragAction actions); |
| 264 | GDK_AVAILABLE_IN_ALL |
| 265 | void gtk_icon_view_unset_model_drag_source (GtkIconView *icon_view); |
| 266 | GDK_AVAILABLE_IN_ALL |
| 267 | void gtk_icon_view_unset_model_drag_dest (GtkIconView *icon_view); |
| 268 | GDK_AVAILABLE_IN_ALL |
| 269 | void gtk_icon_view_set_reorderable (GtkIconView *icon_view, |
| 270 | gboolean reorderable); |
| 271 | GDK_AVAILABLE_IN_ALL |
| 272 | gboolean gtk_icon_view_get_reorderable (GtkIconView *icon_view); |
| 273 | |
| 274 | |
| 275 | /* These are useful to implement your own custom stuff. */ |
| 276 | GDK_AVAILABLE_IN_ALL |
| 277 | void gtk_icon_view_set_drag_dest_item (GtkIconView *icon_view, |
| 278 | GtkTreePath *path, |
| 279 | GtkIconViewDropPosition pos); |
| 280 | GDK_AVAILABLE_IN_ALL |
| 281 | void gtk_icon_view_get_drag_dest_item (GtkIconView *icon_view, |
| 282 | GtkTreePath **path, |
| 283 | GtkIconViewDropPosition *pos); |
| 284 | GDK_AVAILABLE_IN_ALL |
| 285 | gboolean gtk_icon_view_get_dest_item_at_pos (GtkIconView *icon_view, |
| 286 | gint drag_x, |
| 287 | gint drag_y, |
| 288 | GtkTreePath **path, |
| 289 | GtkIconViewDropPosition *pos); |
| 290 | GDK_AVAILABLE_IN_ALL |
| 291 | cairo_surface_t *gtk_icon_view_create_drag_icon (GtkIconView *icon_view, |
| 292 | GtkTreePath *path); |
| 293 | |
| 294 | GDK_AVAILABLE_IN_ALL |
| 295 | void gtk_icon_view_convert_widget_to_bin_window_coords (GtkIconView *icon_view, |
| 296 | gint wx, |
| 297 | gint wy, |
| 298 | gint *bx, |
| 299 | gint *by); |
| 300 | GDK_AVAILABLE_IN_3_6 |
| 301 | gboolean gtk_icon_view_get_cell_rect (GtkIconView *icon_view, |
| 302 | GtkTreePath *path, |
| 303 | GtkCellRenderer *cell, |
| 304 | GdkRectangle *rect); |
| 305 | |
| 306 | |
| 307 | GDK_AVAILABLE_IN_ALL |
| 308 | void gtk_icon_view_set_tooltip_item (GtkIconView *icon_view, |
| 309 | GtkTooltip *tooltip, |
| 310 | GtkTreePath *path); |
| 311 | GDK_AVAILABLE_IN_ALL |
| 312 | void gtk_icon_view_set_tooltip_cell (GtkIconView *icon_view, |
| 313 | GtkTooltip *tooltip, |
| 314 | GtkTreePath *path, |
| 315 | GtkCellRenderer *cell); |
| 316 | GDK_AVAILABLE_IN_ALL |
| 317 | gboolean gtk_icon_view_get_tooltip_context (GtkIconView *icon_view, |
| 318 | gint *x, |
| 319 | gint *y, |
| 320 | gboolean keyboard_tip, |
| 321 | GtkTreeModel **model, |
| 322 | GtkTreePath **path, |
| 323 | GtkTreeIter *iter); |
| 324 | GDK_AVAILABLE_IN_ALL |
| 325 | void gtk_icon_view_set_tooltip_column (GtkIconView *icon_view, |
| 326 | gint column); |
| 327 | GDK_AVAILABLE_IN_ALL |
| 328 | gint gtk_icon_view_get_tooltip_column (GtkIconView *icon_view); |
| 329 | |
| 330 | |
| 331 | G_END_DECLS |
| 332 | |
| 333 | #endif /* __GTK_ICON_VIEW_H__ */ |
| 334 | |