// -*- c++ -*- // Generated by gtkmmproc -- DO NOT MODIFY! #ifndef _GTKMM_ICONVIEW_H #define _GTKMM_ICONVIEW_H #include /* $Id$ */ /* iconview.h * * Copyright (C) 1998-2004 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GtkIconView GtkIconView; typedef struct _GtkIconViewClass GtkIconViewClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { class IconView_Class; } // namespace Gtk namespace Gtk { /** @addtogroup gtkmmEnums Enums and Flags */ /** * @ingroup gtkmmEnums */ enum IconViewDropPosition { ICON_VIEW_NO_DROP, ICON_VIEW_DROP_INTO, ICON_VIEW_DROP_LEFT, ICON_VIEW_DROP_RIGHT, ICON_VIEW_DROP_ABOVE, ICON_VIEW_DROP_BELOW }; } // namespace Gtk #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class Value : public Glib::Value_Enum { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { //TODO: This should derive+implement from CellLayout when we can break ABI. /** The IconView provides an alternative view of a list model. * It displays the model as a grid of icons with labels. * Like the TreeView, it allows the user to select one or multiple items * (depending on the selection mode - see set_selection_mode()). * In addition to selection with the arrow keys, the IconView supports * rubberband selection, by dragging the pointer. * * @ingroup Widgets * @ingroup Containers */ class IconView : public Container { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef IconView CppObjectType; typedef IconView_Class CppClassType; typedef GtkIconView BaseObjectType; typedef GtkIconViewClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ virtual ~IconView(); #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend class IconView_Class; static CppClassType iconview_class_; // noncopyable IconView(const IconView&); IconView& operator=(const IconView&); protected: explicit IconView(const Glib::ConstructParams& construct_params); explicit IconView(GtkIconView* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_type() G_GNUC_CONST; static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GtkObject. GtkIconView* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GtkObject. const GtkIconView* gobj() const { return reinterpret_cast(gobject_); } public: //C++ methods used to invoke GTK+ virtual functions: #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED protected: //GTK+ Virtual Functions (override these to change behaviour): #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED //Default Signal Handlers:: #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED virtual void on_set_scroll_adjustments(Adjustment* hadjustment, Adjustment* vadjustment); virtual void on_item_activated(const TreeModel::Path& path); virtual void on_selection_changed(); #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED private: public: IconView(); explicit IconView(const Glib::RefPtr& model); /** Sets the model for a Gtk::IconView. * If the @a icon_view already has a model set, it will remove * it before setting the new model. If @a model is 0, then * it will unset the old model. * * @newin2p6 * @param model The model. */ void set_model(const Glib::RefPtr& model); /** Returns the model the Gtk::IconView is based on. Returns 0 if the * model is unset. * @return A Gtk::TreeModel, or 0 if none is currently being used. * * @newin2p6. */ Glib::RefPtr get_model(); /** Returns the model the Gtk::IconView is based on. Returns 0 if the * model is unset. * @return A Gtk::TreeModel, or 0 if none is currently being used. * * @newin2p6. */ Glib::RefPtr get_model() const; /** Sets the column with text for @a icon_view to be @a column . The text * column must be of type G::TYPE_STRING. * * @newin2p6 * @param column A column in the currently used model. */ void set_text_column(int column); /** Sets the column with text for @a icon_view to be @a column . The text * column must be of type G::TYPE_STRING. * * @newin2p6 * @param column A column in the currently used model. */ void set_text_column(const TreeModelColumnBase& model_column); /** Returns the column with text for @a icon_view . * @return The text column, or -1 if it's unset. * * @newin2p6. */ int get_text_column() const; /** Sets the column with markup information for @a icon_view to be * @a column . The markup column must be of type G::TYPE_STRING. * If the markup column is set to something, it overrides * the text column set by set_text_column(). * * @newin2p6 * @param column A column in the currently used model. */ void set_markup_column(int column); /** Sets the column with markup information for @a icon_view to be * @a column . The markup column must be of type G::TYPE_STRING. * If the markup column is set to something, it overrides * the text column set by set_text_column(). * * @newin2p6 * @param column A column in the currently used model. */ void set_markup_column(const TreeModelColumnBase& column); /** Returns the column with markup text for @a icon_view . * @return The markup column, or -1 if it's unset. * * @newin2p6. */ int get_markup_column() const; /** Sets the column with pixbufs for @a icon_view to be @a column . The pixbuf * column must be of type Gdk::TYPE_PIXBUF * * @newin2p6 * @param column A column in the currently used model. */ void set_pixbuf_column(int column); /** Sets the column with pixbufs for @a icon_view to be @a column . The pixbuf * column must be of type Gdk::TYPE_PIXBUF * * @newin2p6 * @param column A column in the currently used model. */ void set_pixbuf_column(const TreeModelColumnBase& column); /** Returns the column with pixbufs for @a icon_view . * @return The pixbuf column, or -1 if it's unset. * * @newin2p6. */ int get_pixbuf_column() const; /** Sets the ::orientation property which determines whether the labels * are drawn beside the icons instead of below. * * @newin2p6 * @param orientation The relative position of texts and icons. */ void set_orientation(Orientation orientation); /** Returns the value of the ::orientation property which determines * whether the labels are drawn beside the icons instead of below. * @return The relative position of texts and icons * * @newin2p6. */ Orientation get_orientation() const; /** Sets the ::columns property which determines in how * many columns the icons are arranged. If @a columns is * -1, the number of columns will be chosen automatically * to fill the available area. * * @newin2p6 * @param columns The number of columns. */ void set_columns(int columns); /** Returns the value of the ::columns property. * @return The number of columns, or -1 * * @newin2p6. */ int get_columns() const; /** Sets the ::item-width property which specifies the width * to use for each item. If it is set to -1, the icon view will * automatically determine a suitable item size. * * @newin2p6 * @param item_width The width for each item. */ void set_item_width(int item_width); /** Returns the value of the ::item-width property. * @return The width of a single item, or -1 * * @newin2p6. */ int get_icon_width() const; /** Sets the ::spacing property which specifies the space * which is inserted between the cells (i.e.\ the icon and * the text) of an item. * * @newin2p6 * @param spacing The spacing. */ void set_spacing(int spacing); /** Returns the value of the ::spacing property. * @return The space between cells * * @newin2p6. */ int get_spacing() const; /** Sets the ::row-spacing property which specifies the space * which is inserted between the rows of the icon view. * * @newin2p6 * @param row_spacing The row spacing. */ void set_row_spacing(int row_spacing); /** Returns the value of the ::row-spacing property. * @return The space between rows * * @newin2p6. */ gint get_row_spacing() const; /** Sets the ::column-spacing property which specifies the space * which is inserted between the columns of the icon view. * * @newin2p6 * @param column_spacing The column spacing. */ void set_column_spacing(int column_spacing); /** Returns the value of the ::column-spacing property. * @return The space between columns * * @newin2p6. */ int get_column_spacing() const; /** Sets the ::margin property which specifies the space * which is inserted at the top, bottom, left and right * of the icon view. * * @newin2p6 * @param margin The margin. */ void set_margin(int margin); /** Returns the value of the ::margin property. * @return The space at the borders * * @newin2p6. */ int get_margin() const; /** Finds the path at the point ( @a x , @a y ), relative to widget coordinates. * See get_item_at_pos(), if you are also interested in * the cell at the specified position. * @param x The x position to be identified. * @param y The y position to be identified. * @return The Gtk::TreePath corresponding to the icon or 0 * if no icon exists at that position. * * @newin2p6. */ TreeModel::Path get_path_at_pos(int x, int y) const; /** Finds the path at the point (@a x, @a y), relative to widget coordinates. * * @param x The x position to be identified. * @param y The y position to be identified. * @param path The path. * @param cell The renderer responsible for the cell at (@a x, @a y). * * @result true if an item exists at the specified position. * * @newin2p6 */ bool get_item_at_pos(int x, int y, TreeModel::Path& path, CellRenderer*& cell) const; /** Finds the path at the point (@a x, @a y), relative to widget coordinates. * * @param x The x position to be identified. * @param y The y position to be identified. * @param path The path. * * @result true if an item exists at the specified position. * * @newin2p6 */ bool get_item_at_pos(int x, int y, TreeModel::Path& path) const; /** Finds the path at the point (@a x, @a y), relative to widget coordinates. * * @param x The x position to be identified. * @param y The y position to be identified. * @param path The path. * * @result true if an item exists at the specified position. * * @newin2p6 */ bool get_item_at_pos(int x, int y, CellRenderer*& cell) const; bool get_visible_range(TreeModel::Path& start_path, TreeModel::Path& end_path) const; /** For instance, * void on_foreach(const Gtk::TreeModel::Path& path); */ typedef sigc::slot SlotForeach; /** Calls a function for each selected icon. Note that the model or * selection cannot be modified from within this function. * * @param slot The callback to call for each selected icon. */ void selected_foreach(const SlotForeach& slot); //Default value?: /** Sets the selection mode of the @a icon_view . * * @newin2p6 * @param mode The selection mode. */ void set_selection_mode(SelectionMode mode); /** Gets the selection mode of the @a icon_view . * @return The current selection mode * * @newin2p6. */ SelectionMode get_selection_mode() const; /** Selects the row at @a path . * * @newin2p6 * @param path The Gtk::TreePath to be selected. */ void select_path(const TreeModel::Path& path); /** Unselects the row at @a path . * * @newin2p6 * @param path The Gtk::TreePath to be unselected. */ void unselect_path(const TreeModel::Path& path); /** Returns true if the icon pointed to by @a path is currently * selected. If @a icon does not point to a valid location, false is returned. * @param path A Gtk::TreePath to check selection on. * @return true if @a path is selected. * * @newin2p6. */ bool path_is_selected(const TreeModel::Path& path) const; #ifndef DOXYGEN_SHOULD_SKIP_THIS //TODO: I'm not sure about these to_*() functions. murrayc. struct TreePathTraits { typedef TreePath CppType; typedef const GtkTreePath* CType; typedef GtkTreePath* CTypeNonConst; static CType to_c_type (const CppType& obj) { return obj.gobj(); } static CType to_c_type (const CType& obj) { return obj; } static CppType to_cpp_type (const CType& obj) { return CppType(const_cast(obj), true); } static void release_c_type (const CType&) {} }; #endif //DOXYGEN_SHOULD_SKIP_THIS typedef Glib::ListHandle ArrayHandle_TreePaths; /** Creates a list of paths of all selected items. Additionally, if you are * planning on modifying the model after calling this function, you may * want to convert the returned list into a list of Gtk::TreeRowReference<!-- -->s. * To do this, you can use Gtk::Tree::row_reference_new(). * * To free the return value, use: * @code * g_list_foreach (list, gtk_tree_path_free, 0); * g_list_free (list); * @endcode * @return A G::List containing a Gtk::TreePath for each selected row. * * @newin2p6. */ ArrayHandle_TreePaths get_selected_items() const; /** Selects all the icons. @a icon_view must has its selection mode set * to Gtk::SELECTION_MULTIPLE. * * @newin2p6 */ void select_all(); /** Unselects all the icons. * * @newin2p6 */ void unselect_all(); /** Activates the item determined by @a path . * * @newin2p6 * @param path The Gtk::TreePath to be activated. */ void item_activated(const TreeModel::Path& path); void set_cursor(const TreeModel::Path& path, CellRenderer& cell, bool start_editing); /** Fills in @a path and @a cell with the current cursor path and cell. * If the cursor isn't currently set, then @a path will be empty. * If no cell currently has focus, then @a cell will be NULL. * * @param path The current cursor path. * @param cell The current focus cell. * @result true if the cursor is set. * * @newin2p8 */ bool get_cursor(TreeModel::Path& path, CellRenderer*& cell) const; /** Fills in @a path and @a cell with the current cursor path and cell. * If the cursor isn't currently set, then @a path will be empty. * If no cell currently has focus, then @a cell will be NULL. * * @param path The current cursor path. * @result true if the cursor is set. * * @newin2p8 */ bool get_cursor(TreeModel::Path& path) const; /** Fills in @a path and @a cell with the current cursor path and cell. * If the cursor isn't currently set, then @a path will be empty. * If no cell currently has focus, then @a cell will be NULL. * * @param cell The current focus cell. * @result true if the cursor is set. * * @newin2p8 */ bool get_cursor(CellRenderer*& cell) const; /** Moves the alignments of @a icon_view to the position specified by @a path . * @a row_align determines where the row is placed, and @a col_align determines where * @a column is placed. Both are expected to be between 0.0 and 1.0. * 0.0 means left/top alignment, 1.0 means right/bottom alignment, 0.5 means center. * * If @a use_align is false, then the alignment arguments are ignored, and the * tree does the minimum amount of work to scroll the item onto the screen. * This means that the item will be scrolled to the edge closest to its current * position. If the item is currently visible on the screen, nothing is done. * * This function only works if the model is set, and @a path is a valid row on the * model. If the model changes before the @a icon_view is realized, the centered * path will be modified to reflect this change. * * @newin2p8 * @param path The path of the item to move to. * @param use_align Whether to use alignment arguments, or false. * @param row_align The vertical alignment of the item specified by @a path . * @param col_align The horizontal alignment of the item specified by @a path . */ void scroll_to_path(const TreeModel::Path& path, bool use_align, gfloat row_align, gfloat col_align); /* Drag-and-Drop support */ /** * Turns the IconView into a drag source for automatic DND. * * @param targets Standard container of targets that the drag will support. * @param start_button_mask Mask of allowed buttons to start drag. * @param actions The bitmask of possible actions for a drag from this widget. */ void enable_model_drag_source(const ArrayHandle_TargetEntry& targets, Gdk::ModifierType start_button_mask = Gdk::MODIFIER_MASK, Gdk::DragAction actions = Gdk::ACTION_COPY | Gdk::ACTION_MOVE); /** Turns the IconView into a drop destination for automatic DND. * * @param targets The table of targets that the drag will support. * @param actions The bitmask of possible actions for a drag from this widget. */ void enable_model_drag_dest(const ArrayHandle_TargetEntry& targets, Gdk::DragAction actions = Gdk::ACTION_COPY | Gdk::ACTION_MOVE); /** Undoes the effect of enable_model_drag_source(). * * @newin2p8 */ void unset_model_drag_source(); /** Undoes the effect of enable_model_drag_dest(). * * @newin2p8 */ void unset_model_drag_dest(); /** This function is a convenience function to allow you to reorder models that * support the Gtk::TreeDragSourceIface and the Gtk::TreeDragDestIface. Both * Gtk::TreeStore and Gtk::ListStore support these. If @a reorderable is true, then * the user can reorder the model by dragging and dropping rows. The * developer can listen to these changes by connecting to the model's * row_inserted and row_deleted signals. * * This function does not give you any degree of control over the order -- any * reordering is allowed. If more control is needed, you should probably * handle drag and drop manually. * * @newin2p8 * @param reorderable true, if the list of items can be reordered. */ void set_reorderable(bool reorderable = true); /** Retrieves whether the user can reorder the list via drag-and-drop. * See set_reorderable(). * @return true if the list can be reordered. * * @newin2p8. */ bool get_reorderable() const; /* These are useful to implement your own custom stuff. */ //TODO: Discover what arguments are output arguments: /** Sets the item that is highlighted for feedback. * * @newin2p8 * @param path The path of the item to highlight, or 0. * @param pos Specifies where to drop, relative to the item. */ void set_drag_dest_item(const TreeModel::Path& path, IconViewDropPosition pos); /** Gets information about the item that is highlighted for feedback. * * @param path The highlighted item. * @pos The drop position. * * @newin2p10 */ void get_drag_dest_item(TreeModel::Path& path, IconViewDropPosition& pos) const; /** Gets information about the item that is highlighted for feedback. * * @param path The highlighted item. * * @newin2p10 */ void get_drag_dest_item(TreeModel::Path& path) const; /** Gets information about the item that is highlighted for feedback. * * @pos The drop position. * * @newin2p10 */ void get_drag_dest_item(IconViewDropPosition& pos) const; /** Determines the destination item for a given position. * * @param drag_x The position to determine the destination item for. * @param drag_y the position to determine the destination item for. * @param path The path of the item. * @param pos: The drop position. * @result whether there is an item at the given position. * * @newin2p10 */ bool get_dest_item_at_pos(int drag_x, int drag_y, TreeModel::Path& path, IconViewDropPosition& pos) const; /** Determines the destination item for a given position. * * @param drag_x The position to determine the destination item for. * @param drag_y the position to determine the destination item for. * @param path The path of the item. * @result whether there is an item at the given position. * * @newin2p10 */ bool get_dest_item_at_pos(int drag_x, int drag_y, TreeModel::Path& path) const; /** Determines the destination item for a given position. * * @param drag_x The position to determine the destination item for. * @param drag_y the position to determine the destination item for. * @param pos: The drop position. * @result whether there is an item at the given position. * * @newin2p10 */ bool get_dest_item_at_pos(int drag_x, int drag_y, IconViewDropPosition& pos) const; /** Creates a Gdk::Pixmap representation of the item at @a path . * This image is used for a drag icon. * @param path A Gtk::TreePath in @a icon_view . * @return A newly-allocated pixmap of the drag icon. * * @newin2p8. */ Glib::RefPtr create_drag_icon( const TreeModel::Path& path); /** * @par Prototype: * void %set_scroll_adjustments(Adjustment* hadjustment, Adjustment* vadjustment) */ Glib::SignalProxy2< void,Adjustment*,Adjustment* > signal_set_scroll_adjustments(); /** * @par Prototype: * void %item_activated(const TreeModel::Path& path) */ Glib::SignalProxy1< void,const TreeModel::Path& > signal_item_activated(); /** * @par Prototype: * void %selection_changed() */ Glib::SignalProxy0< void > signal_selection_changed(); /* Key binding signals */ #ifdef GLIBMM_PROPERTIES_ENABLED /** Model column used to retrieve the icon pixbuf from. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_pixbuf_column() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Model column used to retrieve the icon pixbuf from. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_pixbuf_column() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Model column used to retrieve the text from. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_text_column() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Model column used to retrieve the text from. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_text_column() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Model column used to retrieve the text if using Pango markup. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_markup_column() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Model column used to retrieve the text if using Pango markup. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_markup_column() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** The selection mode. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_selection_mode() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** The selection mode. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_selection_mode() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** How the text and icon of each item are positioned relative to each other. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_orientation() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** How the text and icon of each item are positioned relative to each other. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_orientation() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** The model for the icon view. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy< Glib::RefPtr > property_model() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** The model for the icon view. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly< Glib::RefPtr > property_model() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Number of columns to display. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_columns() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Number of columns to display. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_columns() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** The width used for each item. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_item_width() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** The width used for each item. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_item_width() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Space which is inserted between cells of an item. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_spacing() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Space which is inserted between cells of an item. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_spacing() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Space which is inserted between grid rows. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_row_spacing() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Space which is inserted between grid rows. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_row_spacing() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Space which is inserted between grid columns. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_column_spacing() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Space which is inserted between grid columns. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_column_spacing() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Space which is inserted at the edges of the icon view. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy property_margin() ; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Space which is inserted at the edges of the icon view. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_margin() const; #endif //#GLIBMM_PROPERTIES_ENABLED }; } // namespace Gtk namespace Glib { /** @relates Gtk::IconView * @param object The C instance * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. */ Gtk::IconView* wrap(GtkIconView* object, bool take_copy = false); } //namespace Glib #endif /* _GTKMM_ICONVIEW_H */