gtk2 2.2.4-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README +33 -0
- data/Rakefile +62 -0
- data/ext/gtk2/depend +14 -0
- data/ext/gtk2/extconf.rb +129 -0
- data/ext/gtk2/global.h +295 -0
- data/ext/gtk2/gtk2.def +29 -0
- data/ext/gtk2/init.c +284 -0
- data/ext/gtk2/rbgdk.c +505 -0
- data/ext/gtk2/rbgdk.h +79 -0
- data/ext/gtk2/rbgdkatom.c +124 -0
- data/ext/gtk2/rbgdkcairo.c +89 -0
- data/ext/gtk2/rbgdkcolor.c +146 -0
- data/ext/gtk2/rbgdkcolormap.c +135 -0
- data/ext/gtk2/rbgdkconst.c +39 -0
- data/ext/gtk2/rbgdkconversions.h +31 -0
- data/ext/gtk2/rbgdkcursor.c +102 -0
- data/ext/gtk2/rbgdkdevice.c +229 -0
- data/ext/gtk2/rbgdkdisplay.c +553 -0
- data/ext/gtk2/rbgdkdisplaymanager.c +54 -0
- data/ext/gtk2/rbgdkdragcontext.c +291 -0
- data/ext/gtk2/rbgdkdraw.c +522 -0
- data/ext/gtk2/rbgdkevent.c +1291 -0
- data/ext/gtk2/rbgdkgc.c +423 -0
- data/ext/gtk2/rbgdkgeometry.c +256 -0
- data/ext/gtk2/rbgdkimage.c +152 -0
- data/ext/gtk2/rbgdkinput.c +72 -0
- data/ext/gtk2/rbgdkkeymap.c +155 -0
- data/ext/gtk2/rbgdkkeyval.c +108 -0
- data/ext/gtk2/rbgdkpango.c +183 -0
- data/ext/gtk2/rbgdkpangorenderer.c +143 -0
- data/ext/gtk2/rbgdkpixbuf.c +171 -0
- data/ext/gtk2/rbgdkpixmap.c +236 -0
- data/ext/gtk2/rbgdkproperty.c +288 -0
- data/ext/gtk2/rbgdkrectangle.c +142 -0
- data/ext/gtk2/rbgdkregion.c +289 -0
- data/ext/gtk2/rbgdkrgb.c +198 -0
- data/ext/gtk2/rbgdkscreen.c +422 -0
- data/ext/gtk2/rbgdkselection.c +147 -0
- data/ext/gtk2/rbgdkthreads.c +77 -0
- data/ext/gtk2/rbgdktimecoord.c +135 -0
- data/ext/gtk2/rbgdkvisual.c +252 -0
- data/ext/gtk2/rbgdkwindow.c +1113 -0
- data/ext/gtk2/rbgdkwindowattr.c +208 -0
- data/ext/gtk2/rbgdkx11.c +257 -0
- data/ext/gtk2/rbgtk.c +594 -0
- data/ext/gtk2/rbgtk.h +132 -0
- data/ext/gtk2/rbgtkaboutdialog.c +136 -0
- data/ext/gtk2/rbgtkaccelerator.c +81 -0
- data/ext/gtk2/rbgtkaccelgroup.c +200 -0
- data/ext/gtk2/rbgtkaccelgroupentry.c +94 -0
- data/ext/gtk2/rbgtkaccelkey.c +122 -0
- data/ext/gtk2/rbgtkaccellabel.c +55 -0
- data/ext/gtk2/rbgtkaccelmap.c +144 -0
- data/ext/gtk2/rbgtkaccessible.c +39 -0
- data/ext/gtk2/rbgtkaction.c +223 -0
- data/ext/gtk2/rbgtkactiongroup.c +468 -0
- data/ext/gtk2/rbgtkadjustment.c +72 -0
- data/ext/gtk2/rbgtkalignment.c +75 -0
- data/ext/gtk2/rbgtkallocation.c +168 -0
- data/ext/gtk2/rbgtkarrow.c +57 -0
- data/ext/gtk2/rbgtkaspectframe.c +56 -0
- data/ext/gtk2/rbgtkassistant.c +220 -0
- data/ext/gtk2/rbgtkbbox.c +53 -0
- data/ext/gtk2/rbgtkbin.c +42 -0
- data/ext/gtk2/rbgtkbindingset.c +189 -0
- data/ext/gtk2/rbgtkborder.c +87 -0
- data/ext/gtk2/rbgtkbox.c +138 -0
- data/ext/gtk2/rbgtkbuildable.c +127 -0
- data/ext/gtk2/rbgtkbuilder.c +170 -0
- data/ext/gtk2/rbgtkbutton.c +115 -0
- data/ext/gtk2/rbgtkcalendar.c +149 -0
- data/ext/gtk2/rbgtkcelleditable.c +57 -0
- data/ext/gtk2/rbgtkcelllayout.c +137 -0
- data/ext/gtk2/rbgtkcellrenderer.c +131 -0
- data/ext/gtk2/rbgtkcellrendereraccel.c +43 -0
- data/ext/gtk2/rbgtkcellrenderercombo.c +38 -0
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +39 -0
- data/ext/gtk2/rbgtkcellrendererprogress.c +38 -0
- data/ext/gtk2/rbgtkcellrendererspin.c +39 -0
- data/ext/gtk2/rbgtkcellrendererspinner.c +44 -0
- data/ext/gtk2/rbgtkcellrenderertext.c +49 -0
- data/ext/gtk2/rbgtkcellrenderertoggle.c +39 -0
- data/ext/gtk2/rbgtkcellview.c +117 -0
- data/ext/gtk2/rbgtkcheckbutton.c +64 -0
- data/ext/gtk2/rbgtkcheckmenuitem.c +64 -0
- data/ext/gtk2/rbgtkclipboard.c +425 -0
- data/ext/gtk2/rbgtkcolorbutton.c +49 -0
- data/ext/gtk2/rbgtkcolorsel.c +211 -0
- data/ext/gtk2/rbgtkcolorselectiondialog.c +50 -0
- data/ext/gtk2/rbgtkcombo.c +119 -0
- data/ext/gtk2/rbgtkcombobox.c +151 -0
- data/ext/gtk2/rbgtkcomboboxentry.c +56 -0
- data/ext/gtk2/rbgtkconst.c +179 -0
- data/ext/gtk2/rbgtkcontainer.c +783 -0
- data/ext/gtk2/rbgtkconversions.h +39 -0
- data/ext/gtk2/rbgtkcurve.c +111 -0
- data/ext/gtk2/rbgtkdialog.c +268 -0
- data/ext/gtk2/rbgtkdrag.c +427 -0
- data/ext/gtk2/rbgtkdrawingarea.c +42 -0
- data/ext/gtk2/rbgtkeditable.c +151 -0
- data/ext/gtk2/rbgtkentry.c +113 -0
- data/ext/gtk2/rbgtkentrycompletion.c +128 -0
- data/ext/gtk2/rbgtkeventbox.c +42 -0
- data/ext/gtk2/rbgtkexpander.c +49 -0
- data/ext/gtk2/rbgtkfilechooser.c +311 -0
- data/ext/gtk2/rbgtkfilechooserbutton.c +57 -0
- data/ext/gtk2/rbgtkfilechooserdialog.c +59 -0
- data/ext/gtk2/rbgtkfilechooserwidget.c +52 -0
- data/ext/gtk2/rbgtkfilefilter.c +131 -0
- data/ext/gtk2/rbgtkfilesel.c +150 -0
- data/ext/gtk2/rbgtkfilesystemerror.c +49 -0
- data/ext/gtk2/rbgtkfixed.c +78 -0
- data/ext/gtk2/rbgtkfontbutton.c +49 -0
- data/ext/gtk2/rbgtkfontselection.c +41 -0
- data/ext/gtk2/rbgtkfontselectiondialog.c +106 -0
- data/ext/gtk2/rbgtkframe.c +69 -0
- data/ext/gtk2/rbgtkgamma.c +56 -0
- data/ext/gtk2/rbgtkhandlebox.c +45 -0
- data/ext/gtk2/rbgtkhbbox.c +42 -0
- data/ext/gtk2/rbgtkhbox.c +47 -0
- data/ext/gtk2/rbgtkhpaned.c +42 -0
- data/ext/gtk2/rbgtkhruler.c +42 -0
- data/ext/gtk2/rbgtkhscale.c +54 -0
- data/ext/gtk2/rbgtkhscrollbar.c +47 -0
- data/ext/gtk2/rbgtkhseparator.c +41 -0
- data/ext/gtk2/rbgtkiconfactory.c +86 -0
- data/ext/gtk2/rbgtkiconinfo.c +117 -0
- data/ext/gtk2/rbgtkiconset.c +91 -0
- data/ext/gtk2/rbgtkiconsize.c +93 -0
- data/ext/gtk2/rbgtkiconsource.c +171 -0
- data/ext/gtk2/rbgtkicontheme.c +273 -0
- data/ext/gtk2/rbgtkiconview.c +270 -0
- data/ext/gtk2/rbgtkimage.c +128 -0
- data/ext/gtk2/rbgtkimagemenuitem.c +61 -0
- data/ext/gtk2/rbgtkimcontext.c +135 -0
- data/ext/gtk2/rbgtkimcontextsimple.c +69 -0
- data/ext/gtk2/rbgtkimmulticontext.c +48 -0
- data/ext/gtk2/rbgtkinfobar.c +127 -0
- data/ext/gtk2/rbgtkinputdialog.c +41 -0
- data/ext/gtk2/rbgtkinvisible.c +49 -0
- data/ext/gtk2/rbgtkitem.c +60 -0
- data/ext/gtk2/rbgtkitemfactory.c +299 -0
- data/ext/gtk2/rbgtklabel.c +139 -0
- data/ext/gtk2/rbgtklayout.c +94 -0
- data/ext/gtk2/rbgtklinkbutton.c +65 -0
- data/ext/gtk2/rbgtkliststore.c +411 -0
- data/ext/gtk2/rbgtkmacros.h +39 -0
- data/ext/gtk2/rbgtkmenu.c +171 -0
- data/ext/gtk2/rbgtkmenubar.c +45 -0
- data/ext/gtk2/rbgtkmenuitem.c +111 -0
- data/ext/gtk2/rbgtkmenushell.c +108 -0
- data/ext/gtk2/rbgtkmenutoolbutton.c +74 -0
- data/ext/gtk2/rbgtkmessagedialog.c +89 -0
- data/ext/gtk2/rbgtkmisc.c +70 -0
- data/ext/gtk2/rbgtknotebook.c +412 -0
- data/ext/gtk2/rbgtkobject.c +144 -0
- data/ext/gtk2/rbgtkoptionmenu.c +72 -0
- data/ext/gtk2/rbgtkpagesetup.c +201 -0
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +87 -0
- data/ext/gtk2/rbgtkpaned.c +114 -0
- data/ext/gtk2/rbgtkpapersize.c +186 -0
- data/ext/gtk2/rbgtkplug.c +91 -0
- data/ext/gtk2/rbgtkprintcontext.c +127 -0
- data/ext/gtk2/rbgtkprinter.c +154 -0
- data/ext/gtk2/rbgtkprintjob.c +149 -0
- data/ext/gtk2/rbgtkprintoperation.c +156 -0
- data/ext/gtk2/rbgtkprintoperationpreview.c +61 -0
- data/ext/gtk2/rbgtkprintsettings.c +842 -0
- data/ext/gtk2/rbgtkprintunixdialog.c +86 -0
- data/ext/gtk2/rbgtkprogress.c +31 -0
- data/ext/gtk2/rbgtkprogressbar.c +71 -0
- data/ext/gtk2/rbgtkradioaction.c +120 -0
- data/ext/gtk2/rbgtkradiobutton.c +90 -0
- data/ext/gtk2/rbgtkradiomenuitem.c +148 -0
- data/ext/gtk2/rbgtkradiotoolbutton.c +132 -0
- data/ext/gtk2/rbgtkrange.c +71 -0
- data/ext/gtk2/rbgtkrc.c +217 -0
- data/ext/gtk2/rbgtkrcstyle.c +182 -0
- data/ext/gtk2/rbgtkrecentaction.c +60 -0
- data/ext/gtk2/rbgtkrecentchooser.c +216 -0
- data/ext/gtk2/rbgtkrecentchooserdialog.c +62 -0
- data/ext/gtk2/rbgtkrecentchoosermenu.c +50 -0
- data/ext/gtk2/rbgtkrecentchooserwidget.c +48 -0
- data/ext/gtk2/rbgtkrecentdata.c +144 -0
- data/ext/gtk2/rbgtkrecentfilter.c +170 -0
- data/ext/gtk2/rbgtkrecentfilterinfo.c +181 -0
- data/ext/gtk2/rbgtkrecentinfo.c +216 -0
- data/ext/gtk2/rbgtkrecentmanager.c +149 -0
- data/ext/gtk2/rbgtkruler.c +71 -0
- data/ext/gtk2/rbgtkscale.c +50 -0
- data/ext/gtk2/rbgtkscalebutton.c +75 -0
- data/ext/gtk2/rbgtkscrollbar.c +31 -0
- data/ext/gtk2/rbgtkscrolledwindow.c +124 -0
- data/ext/gtk2/rbgtkselection.c +171 -0
- data/ext/gtk2/rbgtkselectiondata.c +284 -0
- data/ext/gtk2/rbgtkseparator.c +31 -0
- data/ext/gtk2/rbgtkseparatormenuitem.c +39 -0
- data/ext/gtk2/rbgtkseparatortoolitem.c +38 -0
- data/ext/gtk2/rbgtksettings.c +229 -0
- data/ext/gtk2/rbgtksizegroup.c +68 -0
- data/ext/gtk2/rbgtksocket.c +80 -0
- data/ext/gtk2/rbgtkspinbutton.c +137 -0
- data/ext/gtk2/rbgtkspinner.c +61 -0
- data/ext/gtk2/rbgtkstatusbar.c +77 -0
- data/ext/gtk2/rbgtkstatusicon.c +90 -0
- data/ext/gtk2/rbgtkstock.c +230 -0
- data/ext/gtk2/rbgtkstyle.c +642 -0
- data/ext/gtk2/rbgtktable.c +177 -0
- data/ext/gtk2/rbgtktargetlist.c +125 -0
- data/ext/gtk2/rbgtktearoffmenuitem.c +41 -0
- data/ext/gtk2/rbgtktextappearance.c +172 -0
- data/ext/gtk2/rbgtktextattributes.c +203 -0
- data/ext/gtk2/rbgtktextbuffer.c +886 -0
- data/ext/gtk2/rbgtktextchild.c +55 -0
- data/ext/gtk2/rbgtktextiter.c +506 -0
- data/ext/gtk2/rbgtktextmark.c +76 -0
- data/ext/gtk2/rbgtktexttag.c +71 -0
- data/ext/gtk2/rbgtktexttagtable.c +97 -0
- data/ext/gtk2/rbgtktextview.c +326 -0
- data/ext/gtk2/rbgtktoggleaction.c +59 -0
- data/ext/gtk2/rbgtktogglebutton.c +88 -0
- data/ext/gtk2/rbgtktoggletoolbutton.c +54 -0
- data/ext/gtk2/rbgtktoolbar.c +315 -0
- data/ext/gtk2/rbgtktoolbutton.c +53 -0
- data/ext/gtk2/rbgtktoolitem.c +157 -0
- data/ext/gtk2/rbgtktooltip.c +82 -0
- data/ext/gtk2/rbgtktooltips.c +104 -0
- data/ext/gtk2/rbgtktreedragdest.c +28 -0
- data/ext/gtk2/rbgtktreedragsource.c +28 -0
- data/ext/gtk2/rbgtktreeiter.c +251 -0
- data/ext/gtk2/rbgtktreemodel.c +282 -0
- data/ext/gtk2/rbgtktreemodelfilter.c +198 -0
- data/ext/gtk2/rbgtktreemodelsort.c +112 -0
- data/ext/gtk2/rbgtktreepath.c +191 -0
- data/ext/gtk2/rbgtktreerowreference.c +171 -0
- data/ext/gtk2/rbgtktreeselection.c +213 -0
- data/ext/gtk2/rbgtktreesortable.c +123 -0
- data/ext/gtk2/rbgtktreestore.c +362 -0
- data/ext/gtk2/rbgtktreeview.c +746 -0
- data/ext/gtk2/rbgtktreeviewcolumn.c +289 -0
- data/ext/gtk2/rbgtkuimanager.c +189 -0
- data/ext/gtk2/rbgtkvbbox.c +42 -0
- data/ext/gtk2/rbgtkvbox.c +47 -0
- data/ext/gtk2/rbgtkviewport.c +44 -0
- data/ext/gtk2/rbgtkvolumebutton.c +47 -0
- data/ext/gtk2/rbgtkvpaned.c +42 -0
- data/ext/gtk2/rbgtkvruler.c +41 -0
- data/ext/gtk2/rbgtkvscale.c +54 -0
- data/ext/gtk2/rbgtkvscrollbar.c +47 -0
- data/ext/gtk2/rbgtkvseparator.c +41 -0
- data/ext/gtk2/rbgtkwidget.c +1223 -0
- data/ext/gtk2/rbgtkwindow.c +588 -0
- data/ext/gtk2/rbgtkwindowgroup.c +56 -0
- data/extconf.rb +49 -0
- data/lib/2.0/gtk2.so +0 -0
- data/lib/2.1/gtk2.so +0 -0
- data/lib/2.2/gtk2.so +0 -0
- data/lib/gtk2.rb +13 -0
- data/lib/gtk2/base.rb +105 -0
- data/sample/gtk-demo/README +7 -0
- data/sample/gtk-demo/alphatest.png +0 -0
- data/sample/gtk-demo/apple-red.png +0 -0
- data/sample/gtk-demo/appwindow.rb +233 -0
- data/sample/gtk-demo/background.jpg +0 -0
- data/sample/gtk-demo/builder.rb +51 -0
- data/sample/gtk-demo/button_box.rb +84 -0
- data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
- data/sample/gtk-demo/cairo-arc.rb +41 -0
- data/sample/gtk-demo/cairo-clip-image.rb +51 -0
- data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
- data/sample/gtk-demo/cairo-clip.rb +35 -0
- data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
- data/sample/gtk-demo/cairo-curve-to.rb +43 -0
- data/sample/gtk-demo/cairo-dash.rb +39 -0
- data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
- data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
- data/sample/gtk-demo/cairo-gradient.rb +35 -0
- data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
- data/sample/gtk-demo/cairo-image.rb +49 -0
- data/sample/gtk-demo/cairo-line-cap.rb +53 -0
- data/sample/gtk-demo/cairo-line-join.rb +41 -0
- data/sample/gtk-demo/cairo-long-lines.rb +41 -0
- data/sample/gtk-demo/cairo-operator.rb +83 -0
- data/sample/gtk-demo/cairo-path.rb +28 -0
- data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
- data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
- data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
- data/sample/gtk-demo/cairo-text-extents.rb +46 -0
- data/sample/gtk-demo/cairo-text.rb +43 -0
- data/sample/gtk-demo/changedisplay.rb +408 -0
- data/sample/gtk-demo/clipboard.rb +72 -0
- data/sample/gtk-demo/colorsel.rb +84 -0
- data/sample/gtk-demo/common.rb +93 -0
- data/sample/gtk-demo/demo.ui +258 -0
- data/sample/gtk-demo/dialog.rb +137 -0
- data/sample/gtk-demo/drawingarea.rb +226 -0
- data/sample/gtk-demo/editable_cells.rb +172 -0
- data/sample/gtk-demo/entry_completion.rb +63 -0
- data/sample/gtk-demo/expander.rb +40 -0
- data/sample/gtk-demo/floppybuddy.gif +0 -0
- data/sample/gtk-demo/gnome-applets.png +0 -0
- data/sample/gtk-demo/gnome-calendar.png +0 -0
- data/sample/gtk-demo/gnome-foot.png +0 -0
- data/sample/gtk-demo/gnome-fs-directory.png +0 -0
- data/sample/gtk-demo/gnome-fs-regular.png +0 -0
- data/sample/gtk-demo/gnome-gimp.png +0 -0
- data/sample/gtk-demo/gnome-gmush.png +0 -0
- data/sample/gtk-demo/gnome-gsame.png +0 -0
- data/sample/gtk-demo/gnu-keys.png +0 -0
- data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
- data/sample/gtk-demo/hypertext.rb +211 -0
- data/sample/gtk-demo/iconview.rb +109 -0
- data/sample/gtk-demo/images.rb +197 -0
- data/sample/gtk-demo/item_factory.rb +94 -0
- data/sample/gtk-demo/list_store.rb +138 -0
- data/sample/gtk-demo/main.rb +386 -0
- data/sample/gtk-demo/menus.rb +172 -0
- data/sample/gtk-demo/panes.rb +156 -0
- data/sample/gtk-demo/pixbufs.rb +176 -0
- data/sample/gtk-demo/printing.rb +128 -0
- data/sample/gtk-demo/rotated_text.rb +84 -0
- data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
- data/sample/gtk-demo/sizegroup.rb +118 -0
- data/sample/gtk-demo/stock_browser.rb +235 -0
- data/sample/gtk-demo/textview.rb +436 -0
- data/sample/gtk-demo/tree_store.rb +270 -0
- data/sample/misc/aboutdialog.rb +42 -0
- data/sample/misc/aboutdialog2.rb +42 -0
- data/sample/misc/alpha-demo.rb +70 -0
- data/sample/misc/assistant.rb +347 -0
- data/sample/misc/bindings.rb +107 -0
- data/sample/misc/button.rb +69 -0
- data/sample/misc/button2.rb +28 -0
- data/sample/misc/buttonbox.rb +93 -0
- data/sample/misc/cairo-pong.rb +215 -0
- data/sample/misc/calendar.rb +62 -0
- data/sample/misc/checkbutton.rb +46 -0
- data/sample/misc/colorselection.rb +25 -0
- data/sample/misc/combo_check.rb +71 -0
- data/sample/misc/combobox.rb +86 -0
- data/sample/misc/composited-windows.rb +113 -0
- data/sample/misc/cursor.rb +32 -0
- data/sample/misc/dialog.rb +44 -0
- data/sample/misc/dialog2.rb +39 -0
- data/sample/misc/dnd.rb +65 -0
- data/sample/misc/dndtreeview.rb +56 -0
- data/sample/misc/drag-move.rb +131 -0
- data/sample/misc/drawing.rb +90 -0
- data/sample/misc/entry.rb +34 -0
- data/sample/misc/entrycompletion.rb +39 -0
- data/sample/misc/expander.rb +27 -0
- data/sample/misc/filechooser.rb +49 -0
- data/sample/misc/fileselection.rb +26 -0
- data/sample/misc/frame.rb +69 -0
- data/sample/misc/gc.rb +59 -0
- data/sample/misc/gdkscreen.rb +32 -0
- data/sample/misc/gnome-logo-icon.png +0 -0
- data/sample/misc/helloworld.rb +35 -0
- data/sample/misc/iconview.rb +38 -0
- data/sample/misc/image.rb +42 -0
- data/sample/misc/infobar.rb +24 -0
- data/sample/misc/itemfactory.rb +73 -0
- data/sample/misc/itemfactory2.rb +74 -0
- data/sample/misc/keyboard_grab.rb +29 -0
- data/sample/misc/label.rb +33 -0
- data/sample/misc/linkbutton.rb +42 -0
- data/sample/misc/listview.rb +92 -0
- data/sample/misc/menu.rb +81 -0
- data/sample/misc/misc_button.rb +59 -0
- data/sample/misc/mouse-gesture.rb +465 -0
- data/sample/misc/pangorenderer.rb +66 -0
- data/sample/misc/pointer_grab.rb +34 -0
- data/sample/misc/print.rb +247 -0
- data/sample/misc/properties.rb +85 -0
- data/sample/misc/radiobutton.rb +47 -0
- data/sample/misc/recentchooserdialog.rb +59 -0
- data/sample/misc/rgtk+cairo.rb +44 -0
- data/sample/misc/scalebutton.rb +25 -0
- data/sample/misc/settings.rb +41 -0
- data/sample/misc/statusicon.rb +123 -0
- data/sample/misc/stock.rb +36 -0
- data/sample/misc/style_property.rb +67 -0
- data/sample/misc/style_property.rc +19 -0
- data/sample/misc/t-gtkplug.rb +58 -0
- data/sample/misc/t-gtksocket.rb +65 -0
- data/sample/misc/test.xpm +92 -0
- data/sample/misc/textbuffer_serialize.rb +130 -0
- data/sample/misc/threads.rb +72 -0
- data/sample/misc/to_drawable.rb +42 -0
- data/sample/misc/togglebutton.rb +34 -0
- data/sample/misc/toolbar.rb +55 -0
- data/sample/misc/tooltips.rb +204 -0
- data/sample/misc/tree_combo.rb +85 -0
- data/sample/misc/tree_progress.rb +69 -0
- data/sample/misc/treemodelfilter.rb +55 -0
- data/sample/misc/treeview.rb +71 -0
- data/sample/misc/uimanager.rb +148 -0
- data/sample/misc/uimanager2.rb +91 -0
- data/sample/misc/uimanager2.xml +36 -0
- data/sample/misc/window.rb +24 -0
- data/sample/misc/xbm_cursor.rb +43 -0
- data/sample/testgtk/3DRings.xpm +116 -0
- data/sample/testgtk/FilesQueue.xpm +98 -0
- data/sample/testgtk/Modeller.xpm +117 -0
- data/sample/testgtk/README +14 -0
- data/sample/testgtk/button.rb +133 -0
- data/sample/testgtk/buttonbox.rb +108 -0
- data/sample/testgtk/check-n.xpm +21 -0
- data/sample/testgtk/check-y.xpm +21 -0
- data/sample/testgtk/checkbutton.rb +67 -0
- data/sample/testgtk/circles.xbm +46 -0
- data/sample/testgtk/colorselect.rb +33 -0
- data/sample/testgtk/dialog.rb +47 -0
- data/sample/testgtk/entry.rb +73 -0
- data/sample/testgtk/filesel.rb +67 -0
- data/sample/testgtk/fontselection.rb +56 -0
- data/sample/testgtk/gammacurve.rb +70 -0
- data/sample/testgtk/labels.rb +74 -0
- data/sample/testgtk/layout.rb +108 -0
- data/sample/testgtk/marble.xpm +408 -0
- data/sample/testgtk/menu.rb +79 -0
- data/sample/testgtk/notebook.rb +281 -0
- data/sample/testgtk/pixmap.rb +58 -0
- data/sample/testgtk/progressbar.rb +181 -0
- data/sample/testgtk/radiobutton.rb +61 -0
- data/sample/testgtk/range.rb +65 -0
- data/sample/testgtk/reparent.rb +91 -0
- data/sample/testgtk/rulers.rb +46 -0
- data/sample/testgtk/sample.rb +80 -0
- data/sample/testgtk/savedposition.rb +87 -0
- data/sample/testgtk/scrolledwindow.rb +67 -0
- data/sample/testgtk/shapedwindow.rb +99 -0
- data/sample/testgtk/spinbutton.rb +181 -0
- data/sample/testgtk/statusbar.rb +89 -0
- data/sample/testgtk/test.xpm +92 -0
- data/sample/testgtk/testgtk.rb +181 -0
- data/sample/testgtk/testgtkrc +146 -0
- data/sample/testgtk/testgtkrc2 +21 -0
- data/sample/testgtk/togglebutton.rb +53 -0
- data/sample/testgtk/toolbar.rb +82 -0
- data/sample/testgtk/tooltips.rb +41 -0
- data/sample/testgtk/wmhints.rb +40 -0
- data/test/gtk-test-utils.rb +15 -0
- data/test/run-test.rb +32 -0
- data/test/test_gc.rb +25 -0
- data/test/test_gdk.rb +18 -0
- data/test/test_gdk_color.rb +10 -0
- data/test/test_gdk_display.rb +37 -0
- data/test/test_gdk_event.rb +23 -0
- data/test/test_gdk_gc.rb +7 -0
- data/test/test_gdk_geometry.rb +24 -0
- data/test/test_gdk_keymap.rb +8 -0
- data/test/test_gdk_pango.rb +9 -0
- data/test/test_gdk_pixbuf.rb +34 -0
- data/test/test_gdk_rectangle.rb +24 -0
- data/test/test_gdk_selection_data.rb +17 -0
- data/test/test_gdk_window.rb +37 -0
- data/test/test_gdk_window_attribute.rb +9 -0
- data/test/test_gtk_about_dialog.rb +14 -0
- data/test/test_gtk_accel_group_entry.rb +24 -0
- data/test/test_gtk_accel_key.rb +24 -0
- data/test/test_gtk_allocation.rb +24 -0
- data/test/test_gtk_border.rb +24 -0
- data/test/test_gtk_buildable.rb +66 -0
- data/test/test_gtk_builder.rb +188 -0
- data/test/test_gtk_entry.rb +18 -0
- data/test/test_gtk_icon_theme.rb +35 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_infobar.rb +29 -0
- data/test/test_gtk_list_store.rb +92 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_rc_style.rb +14 -0
- data/test/test_gtk_recent_data.rb +24 -0
- data/test/test_gtk_recent_filter_info.rb +26 -0
- data/test/test_gtk_tree_path.rb +20 -0
- data/test/test_gtk_unix_print.rb +14 -0
- data/test/test_gtk_widget.rb +32 -0
- data/vendor/local/bin/gtk-builder-convert +799 -0
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtkrc +1 -0
- data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
- data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
- data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
- data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +151 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
- data/vendor/local/lib/gailutil.def +15 -0
- data/vendor/local/lib/gdk-win32-2.0.def +744 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.la +41 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.la +41 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/immodules.cache +7 -0
- data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +34 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.la +41 -0
- data/vendor/local/lib/gtk-win32-2.0.def +3833 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgailutil.la +41 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.la +41 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.la +41 -0
- data/vendor/local/lib/pkgconfig/gail.pc +11 -0
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
- data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
- data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
- data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
- data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
- data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
- data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
- data/vendor/local/share/gtk-2.0/demo/changedisplay.c +646 -0
- data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
- data/vendor/local/share/gtk-2.0/demo/colorsel.c +145 -0
- data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
- data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
- data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
- data/vendor/local/share/gtk-2.0/demo/drawingarea.c +314 -0
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
- data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
- data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
- data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
- data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
- data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
- data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
- data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
- data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
- data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
- data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
- data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +587 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +510 -0
- data/vendor/local/share/gtk-2.0/demo/panes.c +197 -0
- data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
- data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
- data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
- data/vendor/local/share/gtk-2.0/demo/rotated_text.c +241 -0
- data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
- data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
- data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
- data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
- data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
- data/vendor/local/share/gtk-2.0/demo/toolpalette.c +799 -0
- data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
- data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +574 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +361 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +27 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplay.html +1796 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplayManager.html +355 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkScreen.html +2067 -0
- data/vendor/local/share/gtk-doc/html/gdk2/X_cursor.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/annotation-glossary.html +62 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-10.html +118 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-12.html +119 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-14.html +119 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-16.html +39 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-18.html +104 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-2.html +510 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-20.html +46 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-22.html +219 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-4.html +118 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-6.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-8.html +110 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-deprecated.html +1047 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-full.html +3665 -0
- data/vendor/local/share/gtk-doc/html/gdk2/arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/boat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bogosity.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/box_spiral.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/center_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/circle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/clock.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/coffee_mug.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/cross_reverse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/crosshair.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/diamond_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/dot.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/dotbox.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draft_large.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draft_small.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draped_box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/exchange.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/fleur.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Application-launching.html +412 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Bitmaps-and-Pixmaps.html +753 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cairo-Interaction.html +541 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Colormaps-and-Colors.html +1295 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cursors.html +1290 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drag-and-Drop.html +1217 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drawing-Primitives.html +2611 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Event-Structures.html +2095 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Events.html +1650 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Fonts.html +1781 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-GdkRGB.html +1435 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-General.html +1169 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Graphics-Contexts.html +2201 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Images.html +1090 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input-Devices.html +1288 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input.html +401 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Keyboard-Handling.html +1362 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pango-Interaction.html +1074 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pixbufs.html +744 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Points-Rectangles-and-Regions.html +1367 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Properties-and-Atoms.html +1314 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Selections.html +845 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Testing.html +276 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Threads.html +1053 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Visuals.html +1085 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Windows.html +8583 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-X-Window-System-Interaction.html +3528 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2.devhelp2 +949 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gobbler.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gumby.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/hand1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/hand2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/heart.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/icon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/index.html +143 -0
- data/vendor/local/share/gtk-doc/html/gdk2/index.sgml +1151 -0
- data/vendor/local/share/gtk-doc/html/gdk2/iron_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/leftbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ll_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/lr_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/man.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/middlebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/mouse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/multihead.html +204 -0
- data/vendor/local/share/gtk-doc/html/gdk2/pencil.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/pirate.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/plus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/question_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/reference.html +131 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rightbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rtl_logo.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sailboat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_down_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_h_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_right_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_up_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_v_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/shuttle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sizing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/spider.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/spraycan.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/star.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gdk2/target.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/tcross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/trek.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ul_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/umbrella.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ur_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/watch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/xterm.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/AbstractObjects.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Actions.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Builder.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ButtonWidgets.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/DeprecatedObjects.html +83 -0
- data/vendor/local/share/gtk-doc/html/gtk2/DisplayWidgets.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAboutDialog.html +1891 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAccelLabel.html +437 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAccessible.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAction.html +2264 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkActionGroup.html +1631 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkActivatable.html +924 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAdjustment.html +1102 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAlignment.html +491 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkArrow.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAspectFrame.html +308 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAssistant.html +1575 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBin.html +152 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBox.html +1043 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBuildable.html +801 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBuilder.html +1339 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkButton.html +1634 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkButtonBox.html +776 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCList.html +5399 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCTree.html +3279 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCalendar.html +1463 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellEditable.html +362 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellLayout.html +702 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRenderer.html +1492 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererAccel.html +350 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererCombo.html +282 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererPixbuf.html +278 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererProgress.html +243 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpin.html +196 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpinner.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererText.html +868 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererToggle.html +493 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellView.html +612 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCheckButton.html +283 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorButton.html +615 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelection.html +1120 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelectionDialog.html +302 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCombo.html +678 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBox.html +2138 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxEntry.html +374 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxText.html +414 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkContainer.html +2054 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCurve.html +591 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkDialog.html +1627 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkDrawingArea.html +287 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEditable.html +896 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntry.html +4578 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryBuffer.html +792 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryCompletion.html +1574 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEventBox.html +362 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkExpander.html +1024 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooser.html +4065 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserButton.html +666 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserDialog.html +353 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserWidget.html +211 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileSelection.html +740 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFixed.html +419 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontButton.html +804 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelection.html +728 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelectionDialog.html +546 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFrame.html +610 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkGammaCurve.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHBox.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHButtonBox.html +287 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHPaned.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHRuler.html +143 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHSV.html +605 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHScale.html +210 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHScrollbar.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHSeparator.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHandleBox.html +665 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContext.html +1204 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContextSimple.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMMulticontext.html +231 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIconTheme.html +1796 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIconView.html +3740 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkImage.html +1961 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkImageMenuItem.html +613 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInfoBar.html +908 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInputDialog.html +255 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInvisible.html +267 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkItem.html +350 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkItemFactory.html +1537 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLabel.html +2825 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLayout.html +797 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLinkButton.html +520 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkList.html +1370 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkListItem.html +652 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkListStore.html +1361 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenu.html +1887 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuBar.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuItem.html +1279 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuShell.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuToolButton.html +561 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMessageDialog.html +945 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMisc.html +411 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkNotebook.html +3748 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkObject.html +1672 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOffscreenWindow.html +221 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOldEditable.html +756 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOptionMenu.html +477 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetup.html +1278 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetupUnixDialog.html +312 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPaned.html +1032 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPaperSize.html +1172 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPixmap.html +306 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPlug.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPreview.html +822 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintContext.html +655 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintJob.html +725 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintSettings.html +3872 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintUnixDialog.html +1143 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrinter.html +1321 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkProgress.html +766 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkProgressBar.html +1179 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioAction.html +480 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioButton.html +681 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioMenuItem.html +609 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioToolButton.html +432 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRange.html +1913 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentAction.html +338 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooser.html +1919 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserDialog.html +260 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserMenu.html +313 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserWidget.html +182 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentFilter.html +823 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentManager.html +2084 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRuler.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScale.html +724 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScaleButton.html +783 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScrollbar.html +232 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScrolledWindow.html +1035 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparator.html +96 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorMenuItem.html +130 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorToolItem.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSettings.html +1679 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSizeGroup.html +579 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSocket.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinButton.html +1793 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinner.html +265 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusIcon.html +2339 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusbar.html +662 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStyle.html +5004 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTable.html +1081 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTearoffMenuItem.html +158 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkText.html +900 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextBuffer.html +4895 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextIter.html +4244 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextMark.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTag.html +1680 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTagTable.html +516 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextView.html +4124 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTipsQuery.html +625 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleAction.html +440 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleButton.html +698 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleToolButton.html +359 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolButton.html +929 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItem.html +1599 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItemGroup.html +1025 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolPalette.html +1314 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolShell.html +532 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolbar.html +2507 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltip.html +554 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltips.html +548 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTree.html +1060 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeItem.html +361 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModel.html +3330 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelFilter.html +885 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelSort.html +697 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSelection.html +1144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSortable.html +595 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeStore.html +1384 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeView.html +6534 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeViewColumn.html +2679 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkUIManager.html +1631 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVBox.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVButtonBox.html +259 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVPaned.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVRuler.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVScale.html +202 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVScrollbar.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVSeparator.html +125 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkViewport.html +564 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVolumeButton.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWidget.html +13779 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWindow.html +5354 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWindowGroup.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk2/LayoutContainers.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk2/MenusAndCombos.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk2/MiscObjects.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk2/NumericEntry.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Ornaments.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/PlugSocket.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Printing.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk2/RecentDocuments.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ScrollingWidgets.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/SelectorWidgets.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk2/SpecialObjects.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TextWidget.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TextWidgetObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TreeWidget.html +556 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TreeWidgetObjects.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk2/WindowWidgets.html +57 -0
- data/vendor/local/share/gtk-doc/html/gtk2/aboutdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/accel-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/annotation-glossary.html +69 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-10.html +2090 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-12.html +785 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-14.html +781 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-16.html +597 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-18.html +513 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-2.html +286 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-20.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-22.html +176 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-24.html +131 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-4.html +1853 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-6.html +1085 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-8.html +381 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-deprecated.html +3531 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-full.html +22945 -0
- data/vendor/local/share/gtk-doc/html/gtk2/application-exit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/assistant.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ch01.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ch02.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk2/chap-drawing-model.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk2/check-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-gdkeventexpose-region.html +84 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-modifiers.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-named-icons.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/color-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/colorsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/combo-box-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/combo-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/decorating-the-assistant-pages.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-information.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-password.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-question.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-new.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-open.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-print-preview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-print.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-properties.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-revert-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-revert-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-save-as.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-save.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/drive-harddisk.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-clear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-copy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-cut.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-delete.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-find-replace.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-find.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-paste.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-select-all.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/figure-hierarchical-drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/figure-windowed-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/file-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/filechooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/folder.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/font-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/fontsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-fill.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-bold.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-italic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-strikethrough.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-underline.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/frame.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/glossary.html +335 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-bottom.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-first-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-first-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-jump-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-jump-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-last-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-last-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-next-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-next-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-previous-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-previous-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-top.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-apply.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-builder-convert.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-building.html +441 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-cancel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-caps-lock-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-1-2.html +568 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-2-0.html +1175 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-color-picker.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-compiling.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-connect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-convert.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-directfb.html +60 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-disconnect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd-multiple.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-edit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-font.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-index.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-ClientSideWindows.html +85 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAboutDialog.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAction.html +91 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAssistant.html +102 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkBuilder.html +118 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkColorButton.html +107 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkComboBox.html +256 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkFileChooser.html +80 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkIconView.html +264 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkLinkButton.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkRecentChooser.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-checklist.html +157 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-entry-icons.html +293 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-label-links.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-tooltips.html +124 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-no.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-ok.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-osx.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-page-setup.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-preferences.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-query-immodules-2.0.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-question-index.html +1427 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-resources.html +146 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-running.html +348 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-select-color.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-update-icon-cache.html +114 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-windows.html +87 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-x11.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-yes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk.html +162 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Accelerator-Maps.html +744 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Bindings.html +1146 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Clipboards.html +2018 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Drag-and-Drop.html +1962 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Feature-Test-Macros.html +358 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Filesystem-utilities.html +454 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-General.html +2349 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Graphics-Contexts.html +165 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-GtkTreeView-drag-and-drop.html +566 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-High-level-Printing-API.html +3267 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Keyboard-Accelerators.html +1329 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Orientable.html +219 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Resource-Files.html +2234 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Selections.html +2236 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Signals.html +1991 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Standard-Enumerations.html +2183 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Stock-Items.html +1724 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Testing.html +833 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Themeable-Stock-Images.html +1998 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Types.html +2138 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkcheckmenuitem.html +693 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkfilefilter.html +671 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2.devhelp2 +6133 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkbase.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-extra-widgets.html +40 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-preview.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-new-features.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-selection-modes.html +51 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkobjects.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-advanced.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-chooser.html +97 -0
- data/vendor/local/share/gtk-doc/html/gtk2/help-about.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/help-contents.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/icon-view.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/image-missing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/image.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/index.html +875 -0
- data/vendor/local/share/gtk-doc/html/gtk2/index.sgml +8276 -0
- data/vendor/local/share/gtk-doc/html/gtk2/label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-btlr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-btrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-lrbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-lrtb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-rlbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-rltb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-tblr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-tbrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/link-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-add.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-and-tree.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-remove.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-floppy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-optical.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-pause.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-record.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/menubar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/messagedialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating-GtkCombo.html +94 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating-gnomeuiinfo.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk2/multiline-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/network-idle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/new-features-GtkComboBox.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk2/notebook.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/pagesetupdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/panes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-info.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-paused.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/process-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/progressbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/pt05.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk2/radio-group.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/recentchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/scales.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/scrolledwindow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/separator.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/setting-the-page-flow.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk2/spinbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/spinner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/statusbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gtk2/system-run.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/text-x-generic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toggle-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toolbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toolpalette.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/tools-check-spelling.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/tree-view-coordinates.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ui-manager.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk2/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-fullscreen.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-refresh.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-restore.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-sort-ascending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-sort-descending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/volumebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/window-close.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/window.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-fit-best.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-original.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-out.png +0 -0
- data/vendor/local/share/icons/hicolor/index.theme +1830 -0
- data/vendor/local/share/license/gtk+/AUTHORS +65 -0
- data/vendor/local/share/license/gtk+/COPYING +482 -0
- data/vendor/local/share/license/hicolor-icon-theme/COPYING +345 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
- data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
- data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
- data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
- metadata +1750 -0
| @@ -0,0 +1,3740 @@ | |
| 1 | 
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
            <head>
         | 
| 4 | 
            +
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 | 
            +
            <title>GTK+ 2 Reference Manual: GtkIconView</title>
         | 
| 6 | 
            +
            <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
         | 
| 7 | 
            +
            <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
         | 
| 8 | 
            +
            <link rel="up" href="TreeWidgetObjects.html" title="Tree, List and Icon Grid Widgets">
         | 
| 9 | 
            +
            <link rel="prev" href="GtkCellView.html" title="GtkCellView">
         | 
| 10 | 
            +
            <link rel="next" href="GtkTreeSortable.html" title="GtkTreeSortable">
         | 
| 11 | 
            +
            <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
         | 
| 12 | 
            +
            <link rel="stylesheet" href="style.css" type="text/css">
         | 
| 13 | 
            +
            </head>
         | 
| 14 | 
            +
            <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
         | 
| 15 | 
            +
            <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
         | 
| 16 | 
            +
            <td width="100%" align="left" class="shortcuts">
         | 
| 17 | 
            +
            <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
         | 
| 18 | 
            +
                              <a href="#GtkIconView.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
         | 
| 19 | 
            +
                              <a href="#GtkIconView.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
         | 
| 20 | 
            +
                              <a href="#GtkIconView.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
         | 
| 21 | 
            +
                              <a href="#GtkIconView.properties" class="shortcut">Properties</a></span><span id="nav_style_properties">  <span class="dim">|</span> 
         | 
| 22 | 
            +
                              <a href="#GtkIconView.style-properties" class="shortcut">Style Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
         | 
| 23 | 
            +
                              <a href="#GtkIconView.signals" class="shortcut">Signals</a></span>
         | 
| 24 | 
            +
            </td>
         | 
| 25 | 
            +
            <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
         | 
| 26 | 
            +
            <td><a accesskey="u" href="TreeWidgetObjects.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
         | 
| 27 | 
            +
            <td><a accesskey="p" href="GtkCellView.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
         | 
| 28 | 
            +
            <td><a accesskey="n" href="GtkTreeSortable.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
         | 
| 29 | 
            +
            </tr></table>
         | 
| 30 | 
            +
            <div class="refentry">
         | 
| 31 | 
            +
            <a name="GtkIconView"></a><div class="titlepage"></div>
         | 
| 32 | 
            +
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 33 | 
            +
            <td valign="top">
         | 
| 34 | 
            +
            <h2><span class="refentrytitle"><a name="GtkIconView.top_of_page"></a>GtkIconView</span></h2>
         | 
| 35 | 
            +
            <p>GtkIconView — A widget which displays a list of icons in a grid</p>
         | 
| 36 | 
            +
            </td>
         | 
| 37 | 
            +
            <td class="gallery_image" valign="top" align="right"><img src="icon-view.png"></td>
         | 
| 38 | 
            +
            </tr></table></div>
         | 
| 39 | 
            +
            <div class="refsect1">
         | 
| 40 | 
            +
            <a name="GtkIconView.functions"></a><h2>Functions</h2>
         | 
| 41 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 42 | 
            +
            <colgroup>
         | 
| 43 | 
            +
            <col width="150px" class="functions_return">
         | 
| 44 | 
            +
            <col class="functions_name">
         | 
| 45 | 
            +
            </colgroup>
         | 
| 46 | 
            +
            <tbody>
         | 
| 47 | 
            +
            <tr>
         | 
| 48 | 
            +
            <td class="function_type">
         | 
| 49 | 
            +
            <span class="returnvalue">void</span>
         | 
| 50 | 
            +
            </td>
         | 
| 51 | 
            +
            <td class="function_name">
         | 
| 52 | 
            +
            <span class="c_punctuation">(</span><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()">*GtkIconViewForeachFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
         | 
| 53 | 
            +
            </td>
         | 
| 54 | 
            +
            </tr>
         | 
| 55 | 
            +
            <tr>
         | 
| 56 | 
            +
            <td class="function_type">
         | 
| 57 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
         | 
| 58 | 
            +
            </td>
         | 
| 59 | 
            +
            <td class="function_name">
         | 
| 60 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-new" title="gtk_icon_view_new ()">gtk_icon_view_new</a> <span class="c_punctuation">()</span>
         | 
| 61 | 
            +
            </td>
         | 
| 62 | 
            +
            </tr>
         | 
| 63 | 
            +
            <tr>
         | 
| 64 | 
            +
            <td class="function_type">
         | 
| 65 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
         | 
| 66 | 
            +
            </td>
         | 
| 67 | 
            +
            <td class="function_name">
         | 
| 68 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-new-with-model" title="gtk_icon_view_new_with_model ()">gtk_icon_view_new_with_model</a> <span class="c_punctuation">()</span>
         | 
| 69 | 
            +
            </td>
         | 
| 70 | 
            +
            </tr>
         | 
| 71 | 
            +
            <tr>
         | 
| 72 | 
            +
            <td class="function_type">
         | 
| 73 | 
            +
            <span class="returnvalue">void</span>
         | 
| 74 | 
            +
            </td>
         | 
| 75 | 
            +
            <td class="function_name">
         | 
| 76 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-model" title="gtk_icon_view_set_model ()">gtk_icon_view_set_model</a> <span class="c_punctuation">()</span>
         | 
| 77 | 
            +
            </td>
         | 
| 78 | 
            +
            </tr>
         | 
| 79 | 
            +
            <tr>
         | 
| 80 | 
            +
            <td class="function_type">
         | 
| 81 | 
            +
            <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *
         | 
| 82 | 
            +
            </td>
         | 
| 83 | 
            +
            <td class="function_name">
         | 
| 84 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-model" title="gtk_icon_view_get_model ()">gtk_icon_view_get_model</a> <span class="c_punctuation">()</span>
         | 
| 85 | 
            +
            </td>
         | 
| 86 | 
            +
            </tr>
         | 
| 87 | 
            +
            <tr>
         | 
| 88 | 
            +
            <td class="function_type">
         | 
| 89 | 
            +
            <span class="returnvalue">void</span>
         | 
| 90 | 
            +
            </td>
         | 
| 91 | 
            +
            <td class="function_name">
         | 
| 92 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-text-column" title="gtk_icon_view_set_text_column ()">gtk_icon_view_set_text_column</a> <span class="c_punctuation">()</span>
         | 
| 93 | 
            +
            </td>
         | 
| 94 | 
            +
            </tr>
         | 
| 95 | 
            +
            <tr>
         | 
| 96 | 
            +
            <td class="function_type">
         | 
| 97 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 98 | 
            +
            </td>
         | 
| 99 | 
            +
            <td class="function_name">
         | 
| 100 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-text-column" title="gtk_icon_view_get_text_column ()">gtk_icon_view_get_text_column</a> <span class="c_punctuation">()</span>
         | 
| 101 | 
            +
            </td>
         | 
| 102 | 
            +
            </tr>
         | 
| 103 | 
            +
            <tr>
         | 
| 104 | 
            +
            <td class="function_type">
         | 
| 105 | 
            +
            <span class="returnvalue">void</span>
         | 
| 106 | 
            +
            </td>
         | 
| 107 | 
            +
            <td class="function_name">
         | 
| 108 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-markup-column" title="gtk_icon_view_set_markup_column ()">gtk_icon_view_set_markup_column</a> <span class="c_punctuation">()</span>
         | 
| 109 | 
            +
            </td>
         | 
| 110 | 
            +
            </tr>
         | 
| 111 | 
            +
            <tr>
         | 
| 112 | 
            +
            <td class="function_type">
         | 
| 113 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 114 | 
            +
            </td>
         | 
| 115 | 
            +
            <td class="function_name">
         | 
| 116 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-markup-column" title="gtk_icon_view_get_markup_column ()">gtk_icon_view_get_markup_column</a> <span class="c_punctuation">()</span>
         | 
| 117 | 
            +
            </td>
         | 
| 118 | 
            +
            </tr>
         | 
| 119 | 
            +
            <tr>
         | 
| 120 | 
            +
            <td class="function_type">
         | 
| 121 | 
            +
            <span class="returnvalue">void</span>
         | 
| 122 | 
            +
            </td>
         | 
| 123 | 
            +
            <td class="function_name">
         | 
| 124 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-pixbuf-column" title="gtk_icon_view_set_pixbuf_column ()">gtk_icon_view_set_pixbuf_column</a> <span class="c_punctuation">()</span>
         | 
| 125 | 
            +
            </td>
         | 
| 126 | 
            +
            </tr>
         | 
| 127 | 
            +
            <tr>
         | 
| 128 | 
            +
            <td class="function_type">
         | 
| 129 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 130 | 
            +
            </td>
         | 
| 131 | 
            +
            <td class="function_name">
         | 
| 132 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-pixbuf-column" title="gtk_icon_view_get_pixbuf_column ()">gtk_icon_view_get_pixbuf_column</a> <span class="c_punctuation">()</span>
         | 
| 133 | 
            +
            </td>
         | 
| 134 | 
            +
            </tr>
         | 
| 135 | 
            +
            <tr>
         | 
| 136 | 
            +
            <td class="function_type">
         | 
| 137 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
         | 
| 138 | 
            +
            </td>
         | 
| 139 | 
            +
            <td class="function_name">
         | 
| 140 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-path-at-pos" title="gtk_icon_view_get_path_at_pos ()">gtk_icon_view_get_path_at_pos</a> <span class="c_punctuation">()</span>
         | 
| 141 | 
            +
            </td>
         | 
| 142 | 
            +
            </tr>
         | 
| 143 | 
            +
            <tr>
         | 
| 144 | 
            +
            <td class="function_type">
         | 
| 145 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 146 | 
            +
            </td>
         | 
| 147 | 
            +
            <td class="function_name">
         | 
| 148 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-at-pos" title="gtk_icon_view_get_item_at_pos ()">gtk_icon_view_get_item_at_pos</a> <span class="c_punctuation">()</span>
         | 
| 149 | 
            +
            </td>
         | 
| 150 | 
            +
            </tr>
         | 
| 151 | 
            +
            <tr>
         | 
| 152 | 
            +
            <td class="function_type">
         | 
| 153 | 
            +
            <span class="returnvalue">void</span>
         | 
| 154 | 
            +
            </td>
         | 
| 155 | 
            +
            <td class="function_name">
         | 
| 156 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-convert-widget-to-bin-window-coords" title="gtk_icon_view_convert_widget_to_bin_window_coords ()">gtk_icon_view_convert_widget_to_bin_window_coords</a> <span class="c_punctuation">()</span>
         | 
| 157 | 
            +
            </td>
         | 
| 158 | 
            +
            </tr>
         | 
| 159 | 
            +
            <tr>
         | 
| 160 | 
            +
            <td class="function_type">
         | 
| 161 | 
            +
            <span class="returnvalue">void</span>
         | 
| 162 | 
            +
            </td>
         | 
| 163 | 
            +
            <td class="function_name">
         | 
| 164 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-cursor" title="gtk_icon_view_set_cursor ()">gtk_icon_view_set_cursor</a> <span class="c_punctuation">()</span>
         | 
| 165 | 
            +
            </td>
         | 
| 166 | 
            +
            </tr>
         | 
| 167 | 
            +
            <tr>
         | 
| 168 | 
            +
            <td class="function_type">
         | 
| 169 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 170 | 
            +
            </td>
         | 
| 171 | 
            +
            <td class="function_name">
         | 
| 172 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-cursor" title="gtk_icon_view_get_cursor ()">gtk_icon_view_get_cursor</a> <span class="c_punctuation">()</span>
         | 
| 173 | 
            +
            </td>
         | 
| 174 | 
            +
            </tr>
         | 
| 175 | 
            +
            <tr>
         | 
| 176 | 
            +
            <td class="function_type">
         | 
| 177 | 
            +
            <span class="returnvalue">void</span>
         | 
| 178 | 
            +
            </td>
         | 
| 179 | 
            +
            <td class="function_name">
         | 
| 180 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-selected-foreach" title="gtk_icon_view_selected_foreach ()">gtk_icon_view_selected_foreach</a> <span class="c_punctuation">()</span>
         | 
| 181 | 
            +
            </td>
         | 
| 182 | 
            +
            </tr>
         | 
| 183 | 
            +
            <tr>
         | 
| 184 | 
            +
            <td class="function_type">
         | 
| 185 | 
            +
            <span class="returnvalue">void</span>
         | 
| 186 | 
            +
            </td>
         | 
| 187 | 
            +
            <td class="function_name">
         | 
| 188 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-selection-mode" title="gtk_icon_view_set_selection_mode ()">gtk_icon_view_set_selection_mode</a> <span class="c_punctuation">()</span>
         | 
| 189 | 
            +
            </td>
         | 
| 190 | 
            +
            </tr>
         | 
| 191 | 
            +
            <tr>
         | 
| 192 | 
            +
            <td class="function_type">
         | 
| 193 | 
            +
            <a class="link" href="gtk2-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="returnvalue">GtkSelectionMode</span></a>
         | 
| 194 | 
            +
            </td>
         | 
| 195 | 
            +
            <td class="function_name">
         | 
| 196 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-selection-mode" title="gtk_icon_view_get_selection_mode ()">gtk_icon_view_get_selection_mode</a> <span class="c_punctuation">()</span>
         | 
| 197 | 
            +
            </td>
         | 
| 198 | 
            +
            </tr>
         | 
| 199 | 
            +
            <tr>
         | 
| 200 | 
            +
            <td class="function_type">
         | 
| 201 | 
            +
            <span class="returnvalue">void</span>
         | 
| 202 | 
            +
            </td>
         | 
| 203 | 
            +
            <td class="function_name">
         | 
| 204 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-orientation" title="gtk_icon_view_set_orientation ()">gtk_icon_view_set_orientation</a> <span class="c_punctuation">()</span>
         | 
| 205 | 
            +
            </td>
         | 
| 206 | 
            +
            </tr>
         | 
| 207 | 
            +
            <tr>
         | 
| 208 | 
            +
            <td class="function_type">
         | 
| 209 | 
            +
            <a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
         | 
| 210 | 
            +
            </td>
         | 
| 211 | 
            +
            <td class="function_name">
         | 
| 212 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-orientation" title="gtk_icon_view_get_orientation ()">gtk_icon_view_get_orientation</a> <span class="c_punctuation">()</span>
         | 
| 213 | 
            +
            </td>
         | 
| 214 | 
            +
            </tr>
         | 
| 215 | 
            +
            <tr>
         | 
| 216 | 
            +
            <td class="function_type">
         | 
| 217 | 
            +
            <span class="returnvalue">void</span>
         | 
| 218 | 
            +
            </td>
         | 
| 219 | 
            +
            <td class="function_name">
         | 
| 220 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-item-orientation" title="gtk_icon_view_set_item_orientation ()">gtk_icon_view_set_item_orientation</a> <span class="c_punctuation">()</span>
         | 
| 221 | 
            +
            </td>
         | 
| 222 | 
            +
            </tr>
         | 
| 223 | 
            +
            <tr>
         | 
| 224 | 
            +
            <td class="function_type">
         | 
| 225 | 
            +
            <a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
         | 
| 226 | 
            +
            </td>
         | 
| 227 | 
            +
            <td class="function_name">
         | 
| 228 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-orientation" title="gtk_icon_view_get_item_orientation ()">gtk_icon_view_get_item_orientation</a> <span class="c_punctuation">()</span>
         | 
| 229 | 
            +
            </td>
         | 
| 230 | 
            +
            </tr>
         | 
| 231 | 
            +
            <tr>
         | 
| 232 | 
            +
            <td class="function_type">
         | 
| 233 | 
            +
            <span class="returnvalue">void</span>
         | 
| 234 | 
            +
            </td>
         | 
| 235 | 
            +
            <td class="function_name">
         | 
| 236 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-columns" title="gtk_icon_view_set_columns ()">gtk_icon_view_set_columns</a> <span class="c_punctuation">()</span>
         | 
| 237 | 
            +
            </td>
         | 
| 238 | 
            +
            </tr>
         | 
| 239 | 
            +
            <tr>
         | 
| 240 | 
            +
            <td class="function_type">
         | 
| 241 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 242 | 
            +
            </td>
         | 
| 243 | 
            +
            <td class="function_name">
         | 
| 244 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-columns" title="gtk_icon_view_get_columns ()">gtk_icon_view_get_columns</a> <span class="c_punctuation">()</span>
         | 
| 245 | 
            +
            </td>
         | 
| 246 | 
            +
            </tr>
         | 
| 247 | 
            +
            <tr>
         | 
| 248 | 
            +
            <td class="function_type">
         | 
| 249 | 
            +
            <span class="returnvalue">void</span>
         | 
| 250 | 
            +
            </td>
         | 
| 251 | 
            +
            <td class="function_name">
         | 
| 252 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-item-width" title="gtk_icon_view_set_item_width ()">gtk_icon_view_set_item_width</a> <span class="c_punctuation">()</span>
         | 
| 253 | 
            +
            </td>
         | 
| 254 | 
            +
            </tr>
         | 
| 255 | 
            +
            <tr>
         | 
| 256 | 
            +
            <td class="function_type">
         | 
| 257 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 258 | 
            +
            </td>
         | 
| 259 | 
            +
            <td class="function_name">
         | 
| 260 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-width" title="gtk_icon_view_get_item_width ()">gtk_icon_view_get_item_width</a> <span class="c_punctuation">()</span>
         | 
| 261 | 
            +
            </td>
         | 
| 262 | 
            +
            </tr>
         | 
| 263 | 
            +
            <tr>
         | 
| 264 | 
            +
            <td class="function_type">
         | 
| 265 | 
            +
            <span class="returnvalue">void</span>
         | 
| 266 | 
            +
            </td>
         | 
| 267 | 
            +
            <td class="function_name">
         | 
| 268 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-spacing" title="gtk_icon_view_set_spacing ()">gtk_icon_view_set_spacing</a> <span class="c_punctuation">()</span>
         | 
| 269 | 
            +
            </td>
         | 
| 270 | 
            +
            </tr>
         | 
| 271 | 
            +
            <tr>
         | 
| 272 | 
            +
            <td class="function_type">
         | 
| 273 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 274 | 
            +
            </td>
         | 
| 275 | 
            +
            <td class="function_name">
         | 
| 276 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-spacing" title="gtk_icon_view_get_spacing ()">gtk_icon_view_get_spacing</a> <span class="c_punctuation">()</span>
         | 
| 277 | 
            +
            </td>
         | 
| 278 | 
            +
            </tr>
         | 
| 279 | 
            +
            <tr>
         | 
| 280 | 
            +
            <td class="function_type">
         | 
| 281 | 
            +
            <span class="returnvalue">void</span>
         | 
| 282 | 
            +
            </td>
         | 
| 283 | 
            +
            <td class="function_name">
         | 
| 284 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-row-spacing" title="gtk_icon_view_set_row_spacing ()">gtk_icon_view_set_row_spacing</a> <span class="c_punctuation">()</span>
         | 
| 285 | 
            +
            </td>
         | 
| 286 | 
            +
            </tr>
         | 
| 287 | 
            +
            <tr>
         | 
| 288 | 
            +
            <td class="function_type">
         | 
| 289 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 290 | 
            +
            </td>
         | 
| 291 | 
            +
            <td class="function_name">
         | 
| 292 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-row-spacing" title="gtk_icon_view_get_row_spacing ()">gtk_icon_view_get_row_spacing</a> <span class="c_punctuation">()</span>
         | 
| 293 | 
            +
            </td>
         | 
| 294 | 
            +
            </tr>
         | 
| 295 | 
            +
            <tr>
         | 
| 296 | 
            +
            <td class="function_type">
         | 
| 297 | 
            +
            <span class="returnvalue">void</span>
         | 
| 298 | 
            +
            </td>
         | 
| 299 | 
            +
            <td class="function_name">
         | 
| 300 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-column-spacing" title="gtk_icon_view_set_column_spacing ()">gtk_icon_view_set_column_spacing</a> <span class="c_punctuation">()</span>
         | 
| 301 | 
            +
            </td>
         | 
| 302 | 
            +
            </tr>
         | 
| 303 | 
            +
            <tr>
         | 
| 304 | 
            +
            <td class="function_type">
         | 
| 305 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 306 | 
            +
            </td>
         | 
| 307 | 
            +
            <td class="function_name">
         | 
| 308 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-column-spacing" title="gtk_icon_view_get_column_spacing ()">gtk_icon_view_get_column_spacing</a> <span class="c_punctuation">()</span>
         | 
| 309 | 
            +
            </td>
         | 
| 310 | 
            +
            </tr>
         | 
| 311 | 
            +
            <tr>
         | 
| 312 | 
            +
            <td class="function_type">
         | 
| 313 | 
            +
            <span class="returnvalue">void</span>
         | 
| 314 | 
            +
            </td>
         | 
| 315 | 
            +
            <td class="function_name">
         | 
| 316 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-margin" title="gtk_icon_view_set_margin ()">gtk_icon_view_set_margin</a> <span class="c_punctuation">()</span>
         | 
| 317 | 
            +
            </td>
         | 
| 318 | 
            +
            </tr>
         | 
| 319 | 
            +
            <tr>
         | 
| 320 | 
            +
            <td class="function_type">
         | 
| 321 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 322 | 
            +
            </td>
         | 
| 323 | 
            +
            <td class="function_name">
         | 
| 324 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-margin" title="gtk_icon_view_get_margin ()">gtk_icon_view_get_margin</a> <span class="c_punctuation">()</span>
         | 
| 325 | 
            +
            </td>
         | 
| 326 | 
            +
            </tr>
         | 
| 327 | 
            +
            <tr>
         | 
| 328 | 
            +
            <td class="function_type">
         | 
| 329 | 
            +
            <span class="returnvalue">void</span>
         | 
| 330 | 
            +
            </td>
         | 
| 331 | 
            +
            <td class="function_name">
         | 
| 332 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-item-padding" title="gtk_icon_view_set_item_padding ()">gtk_icon_view_set_item_padding</a> <span class="c_punctuation">()</span>
         | 
| 333 | 
            +
            </td>
         | 
| 334 | 
            +
            </tr>
         | 
| 335 | 
            +
            <tr>
         | 
| 336 | 
            +
            <td class="function_type">
         | 
| 337 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 338 | 
            +
            </td>
         | 
| 339 | 
            +
            <td class="function_name">
         | 
| 340 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-padding" title="gtk_icon_view_get_item_padding ()">gtk_icon_view_get_item_padding</a> <span class="c_punctuation">()</span>
         | 
| 341 | 
            +
            </td>
         | 
| 342 | 
            +
            </tr>
         | 
| 343 | 
            +
            <tr>
         | 
| 344 | 
            +
            <td class="function_type">
         | 
| 345 | 
            +
            <span class="returnvalue">void</span>
         | 
| 346 | 
            +
            </td>
         | 
| 347 | 
            +
            <td class="function_name">
         | 
| 348 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-select-path" title="gtk_icon_view_select_path ()">gtk_icon_view_select_path</a> <span class="c_punctuation">()</span>
         | 
| 349 | 
            +
            </td>
         | 
| 350 | 
            +
            </tr>
         | 
| 351 | 
            +
            <tr>
         | 
| 352 | 
            +
            <td class="function_type">
         | 
| 353 | 
            +
            <span class="returnvalue">void</span>
         | 
| 354 | 
            +
            </td>
         | 
| 355 | 
            +
            <td class="function_name">
         | 
| 356 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-unselect-path" title="gtk_icon_view_unselect_path ()">gtk_icon_view_unselect_path</a> <span class="c_punctuation">()</span>
         | 
| 357 | 
            +
            </td>
         | 
| 358 | 
            +
            </tr>
         | 
| 359 | 
            +
            <tr>
         | 
| 360 | 
            +
            <td class="function_type">
         | 
| 361 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 362 | 
            +
            </td>
         | 
| 363 | 
            +
            <td class="function_name">
         | 
| 364 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-path-is-selected" title="gtk_icon_view_path_is_selected ()">gtk_icon_view_path_is_selected</a> <span class="c_punctuation">()</span>
         | 
| 365 | 
            +
            </td>
         | 
| 366 | 
            +
            </tr>
         | 
| 367 | 
            +
            <tr>
         | 
| 368 | 
            +
            <td class="function_type">
         | 
| 369 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
         | 
| 370 | 
            +
            </td>
         | 
| 371 | 
            +
            <td class="function_name">
         | 
| 372 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-selected-items" title="gtk_icon_view_get_selected_items ()">gtk_icon_view_get_selected_items</a> <span class="c_punctuation">()</span>
         | 
| 373 | 
            +
            </td>
         | 
| 374 | 
            +
            </tr>
         | 
| 375 | 
            +
            <tr>
         | 
| 376 | 
            +
            <td class="function_type">
         | 
| 377 | 
            +
            <span class="returnvalue">void</span>
         | 
| 378 | 
            +
            </td>
         | 
| 379 | 
            +
            <td class="function_name">
         | 
| 380 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-select-all" title="gtk_icon_view_select_all ()">gtk_icon_view_select_all</a> <span class="c_punctuation">()</span>
         | 
| 381 | 
            +
            </td>
         | 
| 382 | 
            +
            </tr>
         | 
| 383 | 
            +
            <tr>
         | 
| 384 | 
            +
            <td class="function_type">
         | 
| 385 | 
            +
            <span class="returnvalue">void</span>
         | 
| 386 | 
            +
            </td>
         | 
| 387 | 
            +
            <td class="function_name">
         | 
| 388 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-unselect-all" title="gtk_icon_view_unselect_all ()">gtk_icon_view_unselect_all</a> <span class="c_punctuation">()</span>
         | 
| 389 | 
            +
            </td>
         | 
| 390 | 
            +
            </tr>
         | 
| 391 | 
            +
            <tr>
         | 
| 392 | 
            +
            <td class="function_type">
         | 
| 393 | 
            +
            <span class="returnvalue">void</span>
         | 
| 394 | 
            +
            </td>
         | 
| 395 | 
            +
            <td class="function_name">
         | 
| 396 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-item-activated" title="gtk_icon_view_item_activated ()">gtk_icon_view_item_activated</a> <span class="c_punctuation">()</span>
         | 
| 397 | 
            +
            </td>
         | 
| 398 | 
            +
            </tr>
         | 
| 399 | 
            +
            <tr>
         | 
| 400 | 
            +
            <td class="function_type">
         | 
| 401 | 
            +
            <span class="returnvalue">void</span>
         | 
| 402 | 
            +
            </td>
         | 
| 403 | 
            +
            <td class="function_name">
         | 
| 404 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-scroll-to-path" title="gtk_icon_view_scroll_to_path ()">gtk_icon_view_scroll_to_path</a> <span class="c_punctuation">()</span>
         | 
| 405 | 
            +
            </td>
         | 
| 406 | 
            +
            </tr>
         | 
| 407 | 
            +
            <tr>
         | 
| 408 | 
            +
            <td class="function_type">
         | 
| 409 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 410 | 
            +
            </td>
         | 
| 411 | 
            +
            <td class="function_name">
         | 
| 412 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-visible-range" title="gtk_icon_view_get_visible_range ()">gtk_icon_view_get_visible_range</a> <span class="c_punctuation">()</span>
         | 
| 413 | 
            +
            </td>
         | 
| 414 | 
            +
            </tr>
         | 
| 415 | 
            +
            <tr>
         | 
| 416 | 
            +
            <td class="function_type">
         | 
| 417 | 
            +
            <span class="returnvalue">void</span>
         | 
| 418 | 
            +
            </td>
         | 
| 419 | 
            +
            <td class="function_name">
         | 
| 420 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-item" title="gtk_icon_view_set_tooltip_item ()">gtk_icon_view_set_tooltip_item</a> <span class="c_punctuation">()</span>
         | 
| 421 | 
            +
            </td>
         | 
| 422 | 
            +
            </tr>
         | 
| 423 | 
            +
            <tr>
         | 
| 424 | 
            +
            <td class="function_type">
         | 
| 425 | 
            +
            <span class="returnvalue">void</span>
         | 
| 426 | 
            +
            </td>
         | 
| 427 | 
            +
            <td class="function_name">
         | 
| 428 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-cell" title="gtk_icon_view_set_tooltip_cell ()">gtk_icon_view_set_tooltip_cell</a> <span class="c_punctuation">()</span>
         | 
| 429 | 
            +
            </td>
         | 
| 430 | 
            +
            </tr>
         | 
| 431 | 
            +
            <tr>
         | 
| 432 | 
            +
            <td class="function_type">
         | 
| 433 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 434 | 
            +
            </td>
         | 
| 435 | 
            +
            <td class="function_name">
         | 
| 436 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-tooltip-context" title="gtk_icon_view_get_tooltip_context ()">gtk_icon_view_get_tooltip_context</a> <span class="c_punctuation">()</span>
         | 
| 437 | 
            +
            </td>
         | 
| 438 | 
            +
            </tr>
         | 
| 439 | 
            +
            <tr>
         | 
| 440 | 
            +
            <td class="function_type">
         | 
| 441 | 
            +
            <span class="returnvalue">void</span>
         | 
| 442 | 
            +
            </td>
         | 
| 443 | 
            +
            <td class="function_name">
         | 
| 444 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column" title="gtk_icon_view_set_tooltip_column ()">gtk_icon_view_set_tooltip_column</a> <span class="c_punctuation">()</span>
         | 
| 445 | 
            +
            </td>
         | 
| 446 | 
            +
            </tr>
         | 
| 447 | 
            +
            <tr>
         | 
| 448 | 
            +
            <td class="function_type">
         | 
| 449 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 450 | 
            +
            </td>
         | 
| 451 | 
            +
            <td class="function_name">
         | 
| 452 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-tooltip-column" title="gtk_icon_view_get_tooltip_column ()">gtk_icon_view_get_tooltip_column</a> <span class="c_punctuation">()</span>
         | 
| 453 | 
            +
            </td>
         | 
| 454 | 
            +
            </tr>
         | 
| 455 | 
            +
            <tr>
         | 
| 456 | 
            +
            <td class="function_type">
         | 
| 457 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 458 | 
            +
            </td>
         | 
| 459 | 
            +
            <td class="function_name">
         | 
| 460 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-row" title="gtk_icon_view_get_item_row ()">gtk_icon_view_get_item_row</a> <span class="c_punctuation">()</span>
         | 
| 461 | 
            +
            </td>
         | 
| 462 | 
            +
            </tr>
         | 
| 463 | 
            +
            <tr>
         | 
| 464 | 
            +
            <td class="function_type">
         | 
| 465 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 466 | 
            +
            </td>
         | 
| 467 | 
            +
            <td class="function_name">
         | 
| 468 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-column" title="gtk_icon_view_get_item_column ()">gtk_icon_view_get_item_column</a> <span class="c_punctuation">()</span>
         | 
| 469 | 
            +
            </td>
         | 
| 470 | 
            +
            </tr>
         | 
| 471 | 
            +
            <tr>
         | 
| 472 | 
            +
            <td class="function_type">
         | 
| 473 | 
            +
            <span class="returnvalue">void</span>
         | 
| 474 | 
            +
            </td>
         | 
| 475 | 
            +
            <td class="function_name">
         | 
| 476 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-enable-model-drag-source" title="gtk_icon_view_enable_model_drag_source ()">gtk_icon_view_enable_model_drag_source</a> <span class="c_punctuation">()</span>
         | 
| 477 | 
            +
            </td>
         | 
| 478 | 
            +
            </tr>
         | 
| 479 | 
            +
            <tr>
         | 
| 480 | 
            +
            <td class="function_type">
         | 
| 481 | 
            +
            <span class="returnvalue">void</span>
         | 
| 482 | 
            +
            </td>
         | 
| 483 | 
            +
            <td class="function_name">
         | 
| 484 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-enable-model-drag-dest" title="gtk_icon_view_enable_model_drag_dest ()">gtk_icon_view_enable_model_drag_dest</a> <span class="c_punctuation">()</span>
         | 
| 485 | 
            +
            </td>
         | 
| 486 | 
            +
            </tr>
         | 
| 487 | 
            +
            <tr>
         | 
| 488 | 
            +
            <td class="function_type">
         | 
| 489 | 
            +
            <span class="returnvalue">void</span>
         | 
| 490 | 
            +
            </td>
         | 
| 491 | 
            +
            <td class="function_name">
         | 
| 492 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-unset-model-drag-source" title="gtk_icon_view_unset_model_drag_source ()">gtk_icon_view_unset_model_drag_source</a> <span class="c_punctuation">()</span>
         | 
| 493 | 
            +
            </td>
         | 
| 494 | 
            +
            </tr>
         | 
| 495 | 
            +
            <tr>
         | 
| 496 | 
            +
            <td class="function_type">
         | 
| 497 | 
            +
            <span class="returnvalue">void</span>
         | 
| 498 | 
            +
            </td>
         | 
| 499 | 
            +
            <td class="function_name">
         | 
| 500 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-unset-model-drag-dest" title="gtk_icon_view_unset_model_drag_dest ()">gtk_icon_view_unset_model_drag_dest</a> <span class="c_punctuation">()</span>
         | 
| 501 | 
            +
            </td>
         | 
| 502 | 
            +
            </tr>
         | 
| 503 | 
            +
            <tr>
         | 
| 504 | 
            +
            <td class="function_type">
         | 
| 505 | 
            +
            <span class="returnvalue">void</span>
         | 
| 506 | 
            +
            </td>
         | 
| 507 | 
            +
            <td class="function_name">
         | 
| 508 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-reorderable" title="gtk_icon_view_set_reorderable ()">gtk_icon_view_set_reorderable</a> <span class="c_punctuation">()</span>
         | 
| 509 | 
            +
            </td>
         | 
| 510 | 
            +
            </tr>
         | 
| 511 | 
            +
            <tr>
         | 
| 512 | 
            +
            <td class="function_type">
         | 
| 513 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 514 | 
            +
            </td>
         | 
| 515 | 
            +
            <td class="function_name">
         | 
| 516 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-reorderable" title="gtk_icon_view_get_reorderable ()">gtk_icon_view_get_reorderable</a> <span class="c_punctuation">()</span>
         | 
| 517 | 
            +
            </td>
         | 
| 518 | 
            +
            </tr>
         | 
| 519 | 
            +
            <tr>
         | 
| 520 | 
            +
            <td class="function_type">
         | 
| 521 | 
            +
            <span class="returnvalue">void</span>
         | 
| 522 | 
            +
            </td>
         | 
| 523 | 
            +
            <td class="function_name">
         | 
| 524 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-set-drag-dest-item" title="gtk_icon_view_set_drag_dest_item ()">gtk_icon_view_set_drag_dest_item</a> <span class="c_punctuation">()</span>
         | 
| 525 | 
            +
            </td>
         | 
| 526 | 
            +
            </tr>
         | 
| 527 | 
            +
            <tr>
         | 
| 528 | 
            +
            <td class="function_type">
         | 
| 529 | 
            +
            <span class="returnvalue">void</span>
         | 
| 530 | 
            +
            </td>
         | 
| 531 | 
            +
            <td class="function_name">
         | 
| 532 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-drag-dest-item" title="gtk_icon_view_get_drag_dest_item ()">gtk_icon_view_get_drag_dest_item</a> <span class="c_punctuation">()</span>
         | 
| 533 | 
            +
            </td>
         | 
| 534 | 
            +
            </tr>
         | 
| 535 | 
            +
            <tr>
         | 
| 536 | 
            +
            <td class="function_type">
         | 
| 537 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 538 | 
            +
            </td>
         | 
| 539 | 
            +
            <td class="function_name">
         | 
| 540 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-get-dest-item-at-pos" title="gtk_icon_view_get_dest_item_at_pos ()">gtk_icon_view_get_dest_item_at_pos</a> <span class="c_punctuation">()</span>
         | 
| 541 | 
            +
            </td>
         | 
| 542 | 
            +
            </tr>
         | 
| 543 | 
            +
            <tr>
         | 
| 544 | 
            +
            <td class="function_type">
         | 
| 545 | 
            +
            <a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a> *
         | 
| 546 | 
            +
            </td>
         | 
| 547 | 
            +
            <td class="function_name">
         | 
| 548 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-create-drag-icon" title="gtk_icon_view_create_drag_icon ()">gtk_icon_view_create_drag_icon</a> <span class="c_punctuation">()</span>
         | 
| 549 | 
            +
            </td>
         | 
| 550 | 
            +
            </tr>
         | 
| 551 | 
            +
            </tbody>
         | 
| 552 | 
            +
            </table></div>
         | 
| 553 | 
            +
            </div>
         | 
| 554 | 
            +
            <div class="refsect1">
         | 
| 555 | 
            +
            <a name="GtkIconView.properties"></a><h2>Properties</h2>
         | 
| 556 | 
            +
            <div class="informaltable"><table border="0">
         | 
| 557 | 
            +
            <colgroup>
         | 
| 558 | 
            +
            <col width="150px" class="properties_type">
         | 
| 559 | 
            +
            <col width="300px" class="properties_name">
         | 
| 560 | 
            +
            <col width="200px" class="properties_flags">
         | 
| 561 | 
            +
            </colgroup>
         | 
| 562 | 
            +
            <tbody>
         | 
| 563 | 
            +
            <tr>
         | 
| 564 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 565 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--column-spacing" title="The “column-spacing” property">column-spacing</a></td>
         | 
| 566 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 567 | 
            +
            </tr>
         | 
| 568 | 
            +
            <tr>
         | 
| 569 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 570 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--columns" title="The “columns” property">columns</a></td>
         | 
| 571 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 572 | 
            +
            </tr>
         | 
| 573 | 
            +
            <tr>
         | 
| 574 | 
            +
            <td class="property_type"><a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a></td>
         | 
| 575 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--item-orientation" title="The “item-orientation” property">item-orientation</a></td>
         | 
| 576 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 577 | 
            +
            </tr>
         | 
| 578 | 
            +
            <tr>
         | 
| 579 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 580 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--item-padding" title="The “item-padding” property">item-padding</a></td>
         | 
| 581 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 582 | 
            +
            </tr>
         | 
| 583 | 
            +
            <tr>
         | 
| 584 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 585 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--item-width" title="The “item-width” property">item-width</a></td>
         | 
| 586 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 587 | 
            +
            </tr>
         | 
| 588 | 
            +
            <tr>
         | 
| 589 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 590 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--margin" title="The “margin” property">margin</a></td>
         | 
| 591 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 592 | 
            +
            </tr>
         | 
| 593 | 
            +
            <tr>
         | 
| 594 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 595 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--markup-column" title="The “markup-column” property">markup-column</a></td>
         | 
| 596 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 597 | 
            +
            </tr>
         | 
| 598 | 
            +
            <tr>
         | 
| 599 | 
            +
            <td class="property_type">
         | 
| 600 | 
            +
            <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *</td>
         | 
| 601 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--model" title="The “model” property">model</a></td>
         | 
| 602 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 603 | 
            +
            </tr>
         | 
| 604 | 
            +
            <tr>
         | 
| 605 | 
            +
            <td class="property_type"><a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a></td>
         | 
| 606 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--orientation" title="The “orientation” property">orientation</a></td>
         | 
| 607 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 608 | 
            +
            </tr>
         | 
| 609 | 
            +
            <tr>
         | 
| 610 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 611 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--pixbuf-column" title="The “pixbuf-column” property">pixbuf-column</a></td>
         | 
| 612 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 613 | 
            +
            </tr>
         | 
| 614 | 
            +
            <tr>
         | 
| 615 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
         | 
| 616 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--reorderable" title="The “reorderable” property">reorderable</a></td>
         | 
| 617 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 618 | 
            +
            </tr>
         | 
| 619 | 
            +
            <tr>
         | 
| 620 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 621 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--row-spacing" title="The “row-spacing” property">row-spacing</a></td>
         | 
| 622 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 623 | 
            +
            </tr>
         | 
| 624 | 
            +
            <tr>
         | 
| 625 | 
            +
            <td class="property_type"><a class="link" href="gtk2-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a></td>
         | 
| 626 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--selection-mode" title="The “selection-mode” property">selection-mode</a></td>
         | 
| 627 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 628 | 
            +
            </tr>
         | 
| 629 | 
            +
            <tr>
         | 
| 630 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 631 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--spacing" title="The “spacing” property">spacing</a></td>
         | 
| 632 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 633 | 
            +
            </tr>
         | 
| 634 | 
            +
            <tr>
         | 
| 635 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 636 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--text-column" title="The “text-column” property">text-column</a></td>
         | 
| 637 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 638 | 
            +
            </tr>
         | 
| 639 | 
            +
            <tr>
         | 
| 640 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
         | 
| 641 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--tooltip-column" title="The “tooltip-column” property">tooltip-column</a></td>
         | 
| 642 | 
            +
            <td class="property_flags">Read / Write</td>
         | 
| 643 | 
            +
            </tr>
         | 
| 644 | 
            +
            </tbody>
         | 
| 645 | 
            +
            </table></div>
         | 
| 646 | 
            +
            </div>
         | 
| 647 | 
            +
            <div class="refsect1">
         | 
| 648 | 
            +
            <a name="GtkIconView.style-properties"></a><h2>Style Properties</h2>
         | 
| 649 | 
            +
            <div class="informaltable"><table border="0">
         | 
| 650 | 
            +
            <colgroup>
         | 
| 651 | 
            +
            <col width="150px" class="style_properties_type">
         | 
| 652 | 
            +
            <col width="300px" class="style_properties_name">
         | 
| 653 | 
            +
            <col width="200px" class="style_properties_flags">
         | 
| 654 | 
            +
            </colgroup>
         | 
| 655 | 
            +
            <tbody>
         | 
| 656 | 
            +
            <tr>
         | 
| 657 | 
            +
            <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guchar"><span class="type">guchar</span></a></td>
         | 
| 658 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--s-selection-box-alpha" title="The “selection-box-alpha” style property">selection-box-alpha</a></td>
         | 
| 659 | 
            +
            <td class="property_flags">Read</td>
         | 
| 660 | 
            +
            </tr>
         | 
| 661 | 
            +
            <tr>
         | 
| 662 | 
            +
            <td class="property_type">
         | 
| 663 | 
            +
            <a href="http://library.gnome.org/devel/gdk3/gdk2-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *</td>
         | 
| 664 | 
            +
            <td class="property_name"><a class="link" href="GtkIconView.html#GtkIconView--s-selection-box-color" title="The “selection-box-color” style property">selection-box-color</a></td>
         | 
| 665 | 
            +
            <td class="property_flags">Read</td>
         | 
| 666 | 
            +
            </tr>
         | 
| 667 | 
            +
            </tbody>
         | 
| 668 | 
            +
            </table></div>
         | 
| 669 | 
            +
            </div>
         | 
| 670 | 
            +
            <div class="refsect1">
         | 
| 671 | 
            +
            <a name="GtkIconView.signals"></a><h2>Signals</h2>
         | 
| 672 | 
            +
            <div class="informaltable"><table border="0">
         | 
| 673 | 
            +
            <colgroup>
         | 
| 674 | 
            +
            <col width="150px" class="signals_return">
         | 
| 675 | 
            +
            <col width="300px" class="signals_name">
         | 
| 676 | 
            +
            <col width="200px" class="signals_flags">
         | 
| 677 | 
            +
            </colgroup>
         | 
| 678 | 
            +
            <tbody>
         | 
| 679 | 
            +
            <tr>
         | 
| 680 | 
            +
            <td class="signal_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td>
         | 
| 681 | 
            +
            <td class="signal_name"><a class="link" href="GtkIconView.html#GtkIconView-activate-cursor-item" title="The “activate-cursor-item” signal">activate-cursor-item</a></td>
         | 
| 682 | 
            +
            <td class="signal_flags">Action</td>
         | 
| 683 | 
            +
            </tr>
         | 
| 684 | 
            +
            <tr>
         | 
| 685 | 
            +
            <td class="signal_type"><span class="returnvalue">void</span></td>
         | 
| 686 | 
            +
            <td class="signal_name"><a class="link" href="GtkIconView.html#GtkIconView-item-activated" title="The “item-activated” signal">item-activated</a></td>
         | 
| 687 | 
            +
            <td class="signal_flags">Run Last</td>
         | 
| 688 | 
            +
            </tr>
         | 
| 689 | 
            +
            <tr>
         | 
| 690 | 
            +
            <td class="signal_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td>
         | 
| 691 | 
            +
            <td class="signal_name"><a class="link" href="GtkIconView.html#GtkIconView-move-cursor" title="The “move-cursor” signal">move-cursor</a></td>
         | 
| 692 | 
            +
            <td class="signal_flags">Action</td>
         | 
| 693 | 
            +
            </tr>
         | 
| 694 | 
            +
            <tr>
         | 
| 695 | 
            +
            <td class="signal_type"><span class="returnvalue">void</span></td>
         | 
| 696 | 
            +
            <td class="signal_name"><a class="link" href="GtkIconView.html#GtkIconView-select-all" title="The “select-all” signal">select-all</a></td>
         | 
| 697 | 
            +
            <td class="signal_flags">Action</td>
         | 
| 698 | 
            +
            </tr>
         | 
| 699 | 
            +
            <tr>
         | 
| 700 | 
            +
            <td class="signal_type"><span class="returnvalue">void</span></td>
         | 
| 701 | 
            +
            <td class="signal_name"><a class="link" href="GtkIconView.html#GtkIconView-select-cursor-item" title="The “select-cursor-item” signal">select-cursor-item</a></td>
         | 
| 702 | 
            +
            <td class="signal_flags">Action</td>
         | 
| 703 | 
            +
            </tr>
         | 
| 704 | 
            +
            <tr>
         | 
| 705 | 
            +
            <td class="signal_type"><span class="returnvalue">void</span></td>
         | 
| 706 | 
            +
            <td class="signal_name"><a class="link" href="GtkIconView.html#GtkIconView-selection-changed" title="The “selection-changed” signal">selection-changed</a></td>
         | 
| 707 | 
            +
            <td class="signal_flags">Run First</td>
         | 
| 708 | 
            +
            </tr>
         | 
| 709 | 
            +
            <tr>
         | 
| 710 | 
            +
            <td class="signal_type"><span class="returnvalue">void</span></td>
         | 
| 711 | 
            +
            <td class="signal_name"><a class="link" href="GtkIconView.html#GtkIconView-set-scroll-adjustments" title="The “set-scroll-adjustments” signal">set-scroll-adjustments</a></td>
         | 
| 712 | 
            +
            <td class="signal_flags">Run Last</td>
         | 
| 713 | 
            +
            </tr>
         | 
| 714 | 
            +
            <tr>
         | 
| 715 | 
            +
            <td class="signal_type"><span class="returnvalue">void</span></td>
         | 
| 716 | 
            +
            <td class="signal_name"><a class="link" href="GtkIconView.html#GtkIconView-toggle-cursor-item" title="The “toggle-cursor-item” signal">toggle-cursor-item</a></td>
         | 
| 717 | 
            +
            <td class="signal_flags">Action</td>
         | 
| 718 | 
            +
            </tr>
         | 
| 719 | 
            +
            <tr>
         | 
| 720 | 
            +
            <td class="signal_type"><span class="returnvalue">void</span></td>
         | 
| 721 | 
            +
            <td class="signal_name"><a class="link" href="GtkIconView.html#GtkIconView-unselect-all" title="The “unselect-all” signal">unselect-all</a></td>
         | 
| 722 | 
            +
            <td class="signal_flags">Action</td>
         | 
| 723 | 
            +
            </tr>
         | 
| 724 | 
            +
            </tbody>
         | 
| 725 | 
            +
            </table></div>
         | 
| 726 | 
            +
            </div>
         | 
| 727 | 
            +
            <div class="refsect1">
         | 
| 728 | 
            +
            <a name="GtkIconView.other"></a><h2>Types and Values</h2>
         | 
| 729 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 730 | 
            +
            <colgroup>
         | 
| 731 | 
            +
            <col width="150px" class="name">
         | 
| 732 | 
            +
            <col class="description">
         | 
| 733 | 
            +
            </colgroup>
         | 
| 734 | 
            +
            <tbody>
         | 
| 735 | 
            +
            <tr>
         | 
| 736 | 
            +
            <td class="datatype_keyword">struct</td>
         | 
| 737 | 
            +
            <td class="function_name"><a class="link" href="GtkIconView.html#GtkIconView-struct" title="struct GtkIconView">GtkIconView</a></td>
         | 
| 738 | 
            +
            </tr>
         | 
| 739 | 
            +
            <tr>
         | 
| 740 | 
            +
            <td class="datatype_keyword">enum</td>
         | 
| 741 | 
            +
            <td class="function_name"><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition">GtkIconViewDropPosition</a></td>
         | 
| 742 | 
            +
            </tr>
         | 
| 743 | 
            +
            </tbody>
         | 
| 744 | 
            +
            </table></div>
         | 
| 745 | 
            +
            </div>
         | 
| 746 | 
            +
            <div class="refsect1">
         | 
| 747 | 
            +
            <a name="GtkIconView.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 748 | 
            +
            <pre class="screen">    <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| 749 | 
            +
                <span class="lineart">╰──</span> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
         | 
| 750 | 
            +
                    <span class="lineart">╰──</span> <a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
         | 
| 751 | 
            +
                        <span class="lineart">╰──</span> <a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
         | 
| 752 | 
            +
                            <span class="lineart">╰──</span> <a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
         | 
| 753 | 
            +
                                <span class="lineart">╰──</span> GtkIconView
         | 
| 754 | 
            +
            </pre>
         | 
| 755 | 
            +
            </div>
         | 
| 756 | 
            +
            <div class="refsect1">
         | 
| 757 | 
            +
            <a name="GtkIconView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
         | 
| 758 | 
            +
            <p>
         | 
| 759 | 
            +
            GtkIconView implements
         | 
| 760 | 
            +
             AtkImplementorIface,  <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and  <a class="link" href="GtkCellLayout.html" title="GtkCellLayout">GtkCellLayout</a>.</p>
         | 
| 761 | 
            +
            </div>
         | 
| 762 | 
            +
            <div class="refsect1">
         | 
| 763 | 
            +
            <a name="GtkIconView.includes"></a><h2>Includes</h2>
         | 
| 764 | 
            +
            <pre class="synopsis">#include <gtk/gtk.h>
         | 
| 765 | 
            +
            </pre>
         | 
| 766 | 
            +
            </div>
         | 
| 767 | 
            +
            <div class="refsect1">
         | 
| 768 | 
            +
            <a name="GtkIconView.description"></a><h2>Description</h2>
         | 
| 769 | 
            +
            <p>
         | 
| 770 | 
            +
            <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> provides an alternative view on a list model.
         | 
| 771 | 
            +
            It displays the model as a grid of icons with labels. Like
         | 
| 772 | 
            +
            <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>, it allows to select one or multiple items
         | 
| 773 | 
            +
            (depending on the selection mode, see <a class="link" href="GtkIconView.html#gtk-icon-view-set-selection-mode" title="gtk_icon_view_set_selection_mode ()"><code class="function">gtk_icon_view_set_selection_mode()</code></a>).
         | 
| 774 | 
            +
            In addition to selection with the arrow keys, <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> supports
         | 
| 775 | 
            +
            rubberband selection, which is controlled by dragging the pointer.
         | 
| 776 | 
            +
            </p>
         | 
| 777 | 
            +
            </div>
         | 
| 778 | 
            +
            <div class="refsect1">
         | 
| 779 | 
            +
            <a name="GtkIconView.functions_details"></a><h2>Functions</h2>
         | 
| 780 | 
            +
            <div class="refsect2">
         | 
| 781 | 
            +
            <a name="GtkIconViewForeachFunc"></a><h3>GtkIconViewForeachFunc ()</h3>
         | 
| 782 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 783 | 
            +
            <span class="c_punctuation">(</span>*GtkIconViewForeachFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 784 | 
            +
                                       <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 785 | 
            +
                                       <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
         | 
| 786 | 
            +
            <p>
         | 
| 787 | 
            +
            A function used by <a class="link" href="GtkIconView.html#gtk-icon-view-selected-foreach" title="gtk_icon_view_selected_foreach ()"><code class="function">gtk_icon_view_selected_foreach()</code></a> to map all
         | 
| 788 | 
            +
            selected rows.  It will be called on every selected row in the view.
         | 
| 789 | 
            +
            </p>
         | 
| 790 | 
            +
            <div class="refsect3">
         | 
| 791 | 
            +
            <a name="id-1.4.9.9.12.2.5"></a><h4>Parameters</h4>
         | 
| 792 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 793 | 
            +
            <colgroup>
         | 
| 794 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 795 | 
            +
            <col class="parameters_description">
         | 
| 796 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 797 | 
            +
            </colgroup>
         | 
| 798 | 
            +
            <tbody>
         | 
| 799 | 
            +
            <tr>
         | 
| 800 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 801 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 802 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 803 | 
            +
            </tr>
         | 
| 804 | 
            +
            <tr>
         | 
| 805 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 806 | 
            +
            <td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of a selected row</p></td>
         | 
| 807 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 808 | 
            +
            </tr>
         | 
| 809 | 
            +
            <tr>
         | 
| 810 | 
            +
            <td class="parameter_name"><p>data</p></td>
         | 
| 811 | 
            +
            <td class="parameter_description"><p>user data</p></td>
         | 
| 812 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 813 | 
            +
            </tr>
         | 
| 814 | 
            +
            </tbody>
         | 
| 815 | 
            +
            </table></div>
         | 
| 816 | 
            +
            </div>
         | 
| 817 | 
            +
            </div>
         | 
| 818 | 
            +
            <hr>
         | 
| 819 | 
            +
            <div class="refsect2">
         | 
| 820 | 
            +
            <a name="gtk-icon-view-new"></a><h3>gtk_icon_view_new ()</h3>
         | 
| 821 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
         | 
| 822 | 
            +
            gtk_icon_view_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 823 | 
            +
            <p>Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget</p>
         | 
| 824 | 
            +
            <div class="refsect3">
         | 
| 825 | 
            +
            <a name="id-1.4.9.9.12.3.5"></a><h4>Returns</h4>
         | 
| 826 | 
            +
            <p> A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget</p>
         | 
| 827 | 
            +
            <p></p>
         | 
| 828 | 
            +
            </div>
         | 
| 829 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 830 | 
            +
            </div>
         | 
| 831 | 
            +
            <hr>
         | 
| 832 | 
            +
            <div class="refsect2">
         | 
| 833 | 
            +
            <a name="gtk-icon-view-new-with-model"></a><h3>gtk_icon_view_new_with_model ()</h3>
         | 
| 834 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
         | 
| 835 | 
            +
            gtk_icon_view_new_with_model (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
         | 
| 836 | 
            +
            <p>Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget with the model <em class="parameter"><code>model</code></em>
         | 
| 837 | 
            +
            .</p>
         | 
| 838 | 
            +
            <div class="refsect3">
         | 
| 839 | 
            +
            <a name="id-1.4.9.9.12.4.5"></a><h4>Parameters</h4>
         | 
| 840 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 841 | 
            +
            <colgroup>
         | 
| 842 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 843 | 
            +
            <col class="parameters_description">
         | 
| 844 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 845 | 
            +
            </colgroup>
         | 
| 846 | 
            +
            <tbody><tr>
         | 
| 847 | 
            +
            <td class="parameter_name"><p>model</p></td>
         | 
| 848 | 
            +
            <td class="parameter_description"><p>The model.</p></td>
         | 
| 849 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 850 | 
            +
            </tr></tbody>
         | 
| 851 | 
            +
            </table></div>
         | 
| 852 | 
            +
            </div>
         | 
| 853 | 
            +
            <div class="refsect3">
         | 
| 854 | 
            +
            <a name="id-1.4.9.9.12.4.6"></a><h4>Returns</h4>
         | 
| 855 | 
            +
            <p> A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget.</p>
         | 
| 856 | 
            +
            <p></p>
         | 
| 857 | 
            +
            </div>
         | 
| 858 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 859 | 
            +
            </div>
         | 
| 860 | 
            +
            <hr>
         | 
| 861 | 
            +
            <div class="refsect2">
         | 
| 862 | 
            +
            <a name="gtk-icon-view-set-model"></a><h3>gtk_icon_view_set_model ()</h3>
         | 
| 863 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 864 | 
            +
            gtk_icon_view_set_model (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 865 | 
            +
                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
         | 
| 866 | 
            +
            <p>Sets the model for a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.
         | 
| 867 | 
            +
            If the <em class="parameter"><code>icon_view</code></em>
         | 
| 868 | 
            +
             already has a model set, it will remove
         | 
| 869 | 
            +
            it before setting the new model.  If <em class="parameter"><code>model</code></em>
         | 
| 870 | 
            +
             is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then
         | 
| 871 | 
            +
            it will unset the old model.</p>
         | 
| 872 | 
            +
            <div class="refsect3">
         | 
| 873 | 
            +
            <a name="id-1.4.9.9.12.5.5"></a><h4>Parameters</h4>
         | 
| 874 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 875 | 
            +
            <colgroup>
         | 
| 876 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 877 | 
            +
            <col class="parameters_description">
         | 
| 878 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 879 | 
            +
            </colgroup>
         | 
| 880 | 
            +
            <tbody>
         | 
| 881 | 
            +
            <tr>
         | 
| 882 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 883 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 884 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 885 | 
            +
            </tr>
         | 
| 886 | 
            +
            <tr>
         | 
| 887 | 
            +
            <td class="parameter_name"><p>model</p></td>
         | 
| 888 | 
            +
            <td class="parameter_description"><p> The model. </p></td>
         | 
| 889 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 890 | 
            +
            </tr>
         | 
| 891 | 
            +
            </tbody>
         | 
| 892 | 
            +
            </table></div>
         | 
| 893 | 
            +
            </div>
         | 
| 894 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 895 | 
            +
            </div>
         | 
| 896 | 
            +
            <hr>
         | 
| 897 | 
            +
            <div class="refsect2">
         | 
| 898 | 
            +
            <a name="gtk-icon-view-get-model"></a><h3>gtk_icon_view_get_model ()</h3>
         | 
| 899 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *
         | 
| 900 | 
            +
            gtk_icon_view_get_model (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 901 | 
            +
            <p>Returns the model the <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> is based on.  Returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
         | 
| 902 | 
            +
            model is unset.</p>
         | 
| 903 | 
            +
            <div class="refsect3">
         | 
| 904 | 
            +
            <a name="id-1.4.9.9.12.6.5"></a><h4>Parameters</h4>
         | 
| 905 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 906 | 
            +
            <colgroup>
         | 
| 907 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 908 | 
            +
            <col class="parameters_description">
         | 
| 909 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 910 | 
            +
            </colgroup>
         | 
| 911 | 
            +
            <tbody><tr>
         | 
| 912 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 913 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 914 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 915 | 
            +
            </tr></tbody>
         | 
| 916 | 
            +
            </table></div>
         | 
| 917 | 
            +
            </div>
         | 
| 918 | 
            +
            <div class="refsect3">
         | 
| 919 | 
            +
            <a name="id-1.4.9.9.12.6.6"></a><h4>Returns</h4>
         | 
| 920 | 
            +
            <p> A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none is
         | 
| 921 | 
            +
            currently being used. </p>
         | 
| 922 | 
            +
            <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
         | 
| 923 | 
            +
            </div>
         | 
| 924 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 925 | 
            +
            </div>
         | 
| 926 | 
            +
            <hr>
         | 
| 927 | 
            +
            <div class="refsect2">
         | 
| 928 | 
            +
            <a name="gtk-icon-view-set-text-column"></a><h3>gtk_icon_view_set_text_column ()</h3>
         | 
| 929 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 930 | 
            +
            gtk_icon_view_set_text_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 931 | 
            +
                                           <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
         | 
| 932 | 
            +
            <p>Sets the column with text for <em class="parameter"><code>icon_view</code></em>
         | 
| 933 | 
            +
             to be <em class="parameter"><code>column</code></em>
         | 
| 934 | 
            +
            . The text
         | 
| 935 | 
            +
            column must be of type <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><span class="type">G_TYPE_STRING</span></a>.</p>
         | 
| 936 | 
            +
            <div class="refsect3">
         | 
| 937 | 
            +
            <a name="id-1.4.9.9.12.7.5"></a><h4>Parameters</h4>
         | 
| 938 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 939 | 
            +
            <colgroup>
         | 
| 940 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 941 | 
            +
            <col class="parameters_description">
         | 
| 942 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 943 | 
            +
            </colgroup>
         | 
| 944 | 
            +
            <tbody>
         | 
| 945 | 
            +
            <tr>
         | 
| 946 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 947 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 948 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 949 | 
            +
            </tr>
         | 
| 950 | 
            +
            <tr>
         | 
| 951 | 
            +
            <td class="parameter_name"><p>column</p></td>
         | 
| 952 | 
            +
            <td class="parameter_description"><p>A column in the currently used model, or -1 to display no text</p></td>
         | 
| 953 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 954 | 
            +
            </tr>
         | 
| 955 | 
            +
            </tbody>
         | 
| 956 | 
            +
            </table></div>
         | 
| 957 | 
            +
            </div>
         | 
| 958 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 959 | 
            +
            </div>
         | 
| 960 | 
            +
            <hr>
         | 
| 961 | 
            +
            <div class="refsect2">
         | 
| 962 | 
            +
            <a name="gtk-icon-view-get-text-column"></a><h3>gtk_icon_view_get_text_column ()</h3>
         | 
| 963 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 964 | 
            +
            gtk_icon_view_get_text_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 965 | 
            +
            <p>Returns the column with text for <em class="parameter"><code>icon_view</code></em>
         | 
| 966 | 
            +
            .</p>
         | 
| 967 | 
            +
            <div class="refsect3">
         | 
| 968 | 
            +
            <a name="id-1.4.9.9.12.8.5"></a><h4>Parameters</h4>
         | 
| 969 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 970 | 
            +
            <colgroup>
         | 
| 971 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 972 | 
            +
            <col class="parameters_description">
         | 
| 973 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 974 | 
            +
            </colgroup>
         | 
| 975 | 
            +
            <tbody><tr>
         | 
| 976 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 977 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 978 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 979 | 
            +
            </tr></tbody>
         | 
| 980 | 
            +
            </table></div>
         | 
| 981 | 
            +
            </div>
         | 
| 982 | 
            +
            <div class="refsect3">
         | 
| 983 | 
            +
            <a name="id-1.4.9.9.12.8.6"></a><h4>Returns</h4>
         | 
| 984 | 
            +
            <p> the text column, or -1 if it's unset.</p>
         | 
| 985 | 
            +
            <p></p>
         | 
| 986 | 
            +
            </div>
         | 
| 987 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 988 | 
            +
            </div>
         | 
| 989 | 
            +
            <hr>
         | 
| 990 | 
            +
            <div class="refsect2">
         | 
| 991 | 
            +
            <a name="gtk-icon-view-set-markup-column"></a><h3>gtk_icon_view_set_markup_column ()</h3>
         | 
| 992 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 993 | 
            +
            gtk_icon_view_set_markup_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 994 | 
            +
                                             <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
         | 
| 995 | 
            +
            <p>Sets the column with markup information for <em class="parameter"><code>icon_view</code></em>
         | 
| 996 | 
            +
             to be
         | 
| 997 | 
            +
            <em class="parameter"><code>column</code></em>
         | 
| 998 | 
            +
            . The markup column must be of type <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><span class="type">G_TYPE_STRING</span></a>.
         | 
| 999 | 
            +
            If the markup column is set to something, it overrides
         | 
| 1000 | 
            +
            the text column set by <a class="link" href="GtkIconView.html#gtk-icon-view-set-text-column" title="gtk_icon_view_set_text_column ()"><code class="function">gtk_icon_view_set_text_column()</code></a>.</p>
         | 
| 1001 | 
            +
            <div class="refsect3">
         | 
| 1002 | 
            +
            <a name="id-1.4.9.9.12.9.5"></a><h4>Parameters</h4>
         | 
| 1003 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1004 | 
            +
            <colgroup>
         | 
| 1005 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1006 | 
            +
            <col class="parameters_description">
         | 
| 1007 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1008 | 
            +
            </colgroup>
         | 
| 1009 | 
            +
            <tbody>
         | 
| 1010 | 
            +
            <tr>
         | 
| 1011 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1012 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 1013 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1014 | 
            +
            </tr>
         | 
| 1015 | 
            +
            <tr>
         | 
| 1016 | 
            +
            <td class="parameter_name"><p>column</p></td>
         | 
| 1017 | 
            +
            <td class="parameter_description"><p>A column in the currently used model, or -1 to display no text</p></td>
         | 
| 1018 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1019 | 
            +
            </tr>
         | 
| 1020 | 
            +
            </tbody>
         | 
| 1021 | 
            +
            </table></div>
         | 
| 1022 | 
            +
            </div>
         | 
| 1023 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1024 | 
            +
            </div>
         | 
| 1025 | 
            +
            <hr>
         | 
| 1026 | 
            +
            <div class="refsect2">
         | 
| 1027 | 
            +
            <a name="gtk-icon-view-get-markup-column"></a><h3>gtk_icon_view_get_markup_column ()</h3>
         | 
| 1028 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 1029 | 
            +
            gtk_icon_view_get_markup_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1030 | 
            +
            <p>Returns the column with markup text for <em class="parameter"><code>icon_view</code></em>
         | 
| 1031 | 
            +
            .</p>
         | 
| 1032 | 
            +
            <div class="refsect3">
         | 
| 1033 | 
            +
            <a name="id-1.4.9.9.12.10.5"></a><h4>Parameters</h4>
         | 
| 1034 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1035 | 
            +
            <colgroup>
         | 
| 1036 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1037 | 
            +
            <col class="parameters_description">
         | 
| 1038 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1039 | 
            +
            </colgroup>
         | 
| 1040 | 
            +
            <tbody><tr>
         | 
| 1041 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1042 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 1043 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1044 | 
            +
            </tr></tbody>
         | 
| 1045 | 
            +
            </table></div>
         | 
| 1046 | 
            +
            </div>
         | 
| 1047 | 
            +
            <div class="refsect3">
         | 
| 1048 | 
            +
            <a name="id-1.4.9.9.12.10.6"></a><h4>Returns</h4>
         | 
| 1049 | 
            +
            <p> the markup column, or -1 if it's unset.</p>
         | 
| 1050 | 
            +
            <p></p>
         | 
| 1051 | 
            +
            </div>
         | 
| 1052 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1053 | 
            +
            </div>
         | 
| 1054 | 
            +
            <hr>
         | 
| 1055 | 
            +
            <div class="refsect2">
         | 
| 1056 | 
            +
            <a name="gtk-icon-view-set-pixbuf-column"></a><h3>gtk_icon_view_set_pixbuf_column ()</h3>
         | 
| 1057 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1058 | 
            +
            gtk_icon_view_set_pixbuf_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1059 | 
            +
                                             <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
         | 
| 1060 | 
            +
            <p>Sets the column with pixbufs for <em class="parameter"><code>icon_view</code></em>
         | 
| 1061 | 
            +
             to be <em class="parameter"><code>column</code></em>
         | 
| 1062 | 
            +
            . The pixbuf
         | 
| 1063 | 
            +
            column must be of type <span class="type">GDK_TYPE_PIXBUF</span></p>
         | 
| 1064 | 
            +
            <div class="refsect3">
         | 
| 1065 | 
            +
            <a name="id-1.4.9.9.12.11.5"></a><h4>Parameters</h4>
         | 
| 1066 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1067 | 
            +
            <colgroup>
         | 
| 1068 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1069 | 
            +
            <col class="parameters_description">
         | 
| 1070 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1071 | 
            +
            </colgroup>
         | 
| 1072 | 
            +
            <tbody>
         | 
| 1073 | 
            +
            <tr>
         | 
| 1074 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1075 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 1076 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1077 | 
            +
            </tr>
         | 
| 1078 | 
            +
            <tr>
         | 
| 1079 | 
            +
            <td class="parameter_name"><p>column</p></td>
         | 
| 1080 | 
            +
            <td class="parameter_description"><p>A column in the currently used model, or -1 to disable</p></td>
         | 
| 1081 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1082 | 
            +
            </tr>
         | 
| 1083 | 
            +
            </tbody>
         | 
| 1084 | 
            +
            </table></div>
         | 
| 1085 | 
            +
            </div>
         | 
| 1086 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1087 | 
            +
            </div>
         | 
| 1088 | 
            +
            <hr>
         | 
| 1089 | 
            +
            <div class="refsect2">
         | 
| 1090 | 
            +
            <a name="gtk-icon-view-get-pixbuf-column"></a><h3>gtk_icon_view_get_pixbuf_column ()</h3>
         | 
| 1091 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 1092 | 
            +
            gtk_icon_view_get_pixbuf_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1093 | 
            +
            <p>Returns the column with pixbufs for <em class="parameter"><code>icon_view</code></em>
         | 
| 1094 | 
            +
            .</p>
         | 
| 1095 | 
            +
            <div class="refsect3">
         | 
| 1096 | 
            +
            <a name="id-1.4.9.9.12.12.5"></a><h4>Parameters</h4>
         | 
| 1097 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1098 | 
            +
            <colgroup>
         | 
| 1099 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1100 | 
            +
            <col class="parameters_description">
         | 
| 1101 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1102 | 
            +
            </colgroup>
         | 
| 1103 | 
            +
            <tbody><tr>
         | 
| 1104 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1105 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 1106 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1107 | 
            +
            </tr></tbody>
         | 
| 1108 | 
            +
            </table></div>
         | 
| 1109 | 
            +
            </div>
         | 
| 1110 | 
            +
            <div class="refsect3">
         | 
| 1111 | 
            +
            <a name="id-1.4.9.9.12.12.6"></a><h4>Returns</h4>
         | 
| 1112 | 
            +
            <p> the pixbuf column, or -1 if it's unset.</p>
         | 
| 1113 | 
            +
            <p></p>
         | 
| 1114 | 
            +
            </div>
         | 
| 1115 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1116 | 
            +
            </div>
         | 
| 1117 | 
            +
            <hr>
         | 
| 1118 | 
            +
            <div class="refsect2">
         | 
| 1119 | 
            +
            <a name="gtk-icon-view-get-path-at-pos"></a><h3>gtk_icon_view_get_path_at_pos ()</h3>
         | 
| 1120 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
         | 
| 1121 | 
            +
            gtk_icon_view_get_path_at_pos (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1122 | 
            +
                                           <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
         | 
| 1123 | 
            +
                                           <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
         | 
| 1124 | 
            +
            <p>Finds the path at the point (<em class="parameter"><code>x</code></em>
         | 
| 1125 | 
            +
            , <em class="parameter"><code>y</code></em>
         | 
| 1126 | 
            +
            ), relative to bin_window coordinates.
         | 
| 1127 | 
            +
            See <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-at-pos" title="gtk_icon_view_get_item_at_pos ()"><code class="function">gtk_icon_view_get_item_at_pos()</code></a>, if you are also interested in
         | 
| 1128 | 
            +
            the cell at the specified position. 
         | 
| 1129 | 
            +
            See <a class="link" href="GtkIconView.html#gtk-icon-view-convert-widget-to-bin-window-coords" title="gtk_icon_view_convert_widget_to_bin_window_coords ()"><code class="function">gtk_icon_view_convert_widget_to_bin_window_coords()</code></a> for converting
         | 
| 1130 | 
            +
            widget coordinates to bin_window coordinates.</p>
         | 
| 1131 | 
            +
            <div class="refsect3">
         | 
| 1132 | 
            +
            <a name="id-1.4.9.9.12.13.5"></a><h4>Parameters</h4>
         | 
| 1133 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1134 | 
            +
            <colgroup>
         | 
| 1135 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1136 | 
            +
            <col class="parameters_description">
         | 
| 1137 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1138 | 
            +
            </colgroup>
         | 
| 1139 | 
            +
            <tbody>
         | 
| 1140 | 
            +
            <tr>
         | 
| 1141 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1142 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 1143 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1144 | 
            +
            </tr>
         | 
| 1145 | 
            +
            <tr>
         | 
| 1146 | 
            +
            <td class="parameter_name"><p>x</p></td>
         | 
| 1147 | 
            +
            <td class="parameter_description"><p>The x position to be identified</p></td>
         | 
| 1148 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1149 | 
            +
            </tr>
         | 
| 1150 | 
            +
            <tr>
         | 
| 1151 | 
            +
            <td class="parameter_name"><p>y</p></td>
         | 
| 1152 | 
            +
            <td class="parameter_description"><p>The y position to be identified</p></td>
         | 
| 1153 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1154 | 
            +
            </tr>
         | 
| 1155 | 
            +
            </tbody>
         | 
| 1156 | 
            +
            </table></div>
         | 
| 1157 | 
            +
            </div>
         | 
| 1158 | 
            +
            <div class="refsect3">
         | 
| 1159 | 
            +
            <a name="id-1.4.9.9.12.13.6"></a><h4>Returns</h4>
         | 
| 1160 | 
            +
            <p> The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> corresponding to the icon or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
         | 
| 1161 | 
            +
            if no icon exists at that position.</p>
         | 
| 1162 | 
            +
            <p></p>
         | 
| 1163 | 
            +
            </div>
         | 
| 1164 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1165 | 
            +
            </div>
         | 
| 1166 | 
            +
            <hr>
         | 
| 1167 | 
            +
            <div class="refsect2">
         | 
| 1168 | 
            +
            <a name="gtk-icon-view-get-item-at-pos"></a><h3>gtk_icon_view_get_item_at_pos ()</h3>
         | 
| 1169 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 1170 | 
            +
            gtk_icon_view_get_item_at_pos (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1171 | 
            +
                                           <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
         | 
| 1172 | 
            +
                                           <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
         | 
| 1173 | 
            +
                                           <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
         | 
| 1174 | 
            +
                                           <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
         | 
| 1175 | 
            +
            <p>Finds the path at the point (<em class="parameter"><code>x</code></em>
         | 
| 1176 | 
            +
            , <em class="parameter"><code>y</code></em>
         | 
| 1177 | 
            +
            ), relative to bin_window coordinates.
         | 
| 1178 | 
            +
            In contrast to <a class="link" href="GtkIconView.html#gtk-icon-view-get-path-at-pos" title="gtk_icon_view_get_path_at_pos ()"><code class="function">gtk_icon_view_get_path_at_pos()</code></a>, this function also 
         | 
| 1179 | 
            +
            obtains the cell at the specified position. The returned path should
         | 
| 1180 | 
            +
            be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a>.
         | 
| 1181 | 
            +
            See <a class="link" href="GtkIconView.html#gtk-icon-view-convert-widget-to-bin-window-coords" title="gtk_icon_view_convert_widget_to_bin_window_coords ()"><code class="function">gtk_icon_view_convert_widget_to_bin_window_coords()</code></a> for converting
         | 
| 1182 | 
            +
            widget coordinates to bin_window coordinates.</p>
         | 
| 1183 | 
            +
            <div class="refsect3">
         | 
| 1184 | 
            +
            <a name="id-1.4.9.9.12.14.5"></a><h4>Parameters</h4>
         | 
| 1185 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1186 | 
            +
            <colgroup>
         | 
| 1187 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1188 | 
            +
            <col class="parameters_description">
         | 
| 1189 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1190 | 
            +
            </colgroup>
         | 
| 1191 | 
            +
            <tbody>
         | 
| 1192 | 
            +
            <tr>
         | 
| 1193 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1194 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 1195 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1196 | 
            +
            </tr>
         | 
| 1197 | 
            +
            <tr>
         | 
| 1198 | 
            +
            <td class="parameter_name"><p>x</p></td>
         | 
| 1199 | 
            +
            <td class="parameter_description"><p>The x position to be identified</p></td>
         | 
| 1200 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1201 | 
            +
            </tr>
         | 
| 1202 | 
            +
            <tr>
         | 
| 1203 | 
            +
            <td class="parameter_name"><p>y</p></td>
         | 
| 1204 | 
            +
            <td class="parameter_description"><p>The y position to be identified</p></td>
         | 
| 1205 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1206 | 
            +
            </tr>
         | 
| 1207 | 
            +
            <tr>
         | 
| 1208 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 1209 | 
            +
            <td class="parameter_description"><p> Return location for the path, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 1210 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 1211 | 
            +
            </tr>
         | 
| 1212 | 
            +
            <tr>
         | 
| 1213 | 
            +
            <td class="parameter_name"><p>cell</p></td>
         | 
| 1214 | 
            +
            <td class="parameter_description"><p>Return location for the renderer responsible for the cell
         | 
| 1215 | 
            +
            at (<em class="parameter"><code>x</code></em>
         | 
| 1216 | 
            +
            , <em class="parameter"><code>y</code></em>
         | 
| 1217 | 
            +
            ), or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
         | 
| 1218 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1219 | 
            +
            </tr>
         | 
| 1220 | 
            +
            </tbody>
         | 
| 1221 | 
            +
            </table></div>
         | 
| 1222 | 
            +
            </div>
         | 
| 1223 | 
            +
            <div class="refsect3">
         | 
| 1224 | 
            +
            <a name="id-1.4.9.9.12.14.6"></a><h4>Returns</h4>
         | 
| 1225 | 
            +
            <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an item exists at the specified position</p>
         | 
| 1226 | 
            +
            <p></p>
         | 
| 1227 | 
            +
            </div>
         | 
| 1228 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 1229 | 
            +
            </div>
         | 
| 1230 | 
            +
            <hr>
         | 
| 1231 | 
            +
            <div class="refsect2">
         | 
| 1232 | 
            +
            <a name="gtk-icon-view-convert-widget-to-bin-window-coords"></a><h3>gtk_icon_view_convert_widget_to_bin_window_coords ()</h3>
         | 
| 1233 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1234 | 
            +
            gtk_icon_view_convert_widget_to_bin_window_coords
         | 
| 1235 | 
            +
                                           (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1236 | 
            +
                                            <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> wx</code></em>,
         | 
| 1237 | 
            +
                                            <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> wy</code></em>,
         | 
| 1238 | 
            +
                                            <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *bx</code></em>,
         | 
| 1239 | 
            +
                                            <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *by</code></em>);</pre>
         | 
| 1240 | 
            +
            <p>Converts widget coordinates to coordinates for the bin_window,
         | 
| 1241 | 
            +
            as expected by e.g. <a class="link" href="GtkIconView.html#gtk-icon-view-get-path-at-pos" title="gtk_icon_view_get_path_at_pos ()"><code class="function">gtk_icon_view_get_path_at_pos()</code></a>.</p>
         | 
| 1242 | 
            +
            <div class="refsect3">
         | 
| 1243 | 
            +
            <a name="id-1.4.9.9.12.15.5"></a><h4>Parameters</h4>
         | 
| 1244 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1245 | 
            +
            <colgroup>
         | 
| 1246 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1247 | 
            +
            <col class="parameters_description">
         | 
| 1248 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1249 | 
            +
            </colgroup>
         | 
| 1250 | 
            +
            <tbody>
         | 
| 1251 | 
            +
            <tr>
         | 
| 1252 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1253 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> </p></td>
         | 
| 1254 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1255 | 
            +
            </tr>
         | 
| 1256 | 
            +
            <tr>
         | 
| 1257 | 
            +
            <td class="parameter_name"><p>wx</p></td>
         | 
| 1258 | 
            +
            <td class="parameter_description"><p>X coordinate relative to the widget</p></td>
         | 
| 1259 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1260 | 
            +
            </tr>
         | 
| 1261 | 
            +
            <tr>
         | 
| 1262 | 
            +
            <td class="parameter_name"><p>wy</p></td>
         | 
| 1263 | 
            +
            <td class="parameter_description"><p>Y coordinate relative to the widget</p></td>
         | 
| 1264 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1265 | 
            +
            </tr>
         | 
| 1266 | 
            +
            <tr>
         | 
| 1267 | 
            +
            <td class="parameter_name"><p>bx</p></td>
         | 
| 1268 | 
            +
            <td class="parameter_description"><p> return location for bin_window X coordinate. </p></td>
         | 
| 1269 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
         | 
| 1270 | 
            +
            </tr>
         | 
| 1271 | 
            +
            <tr>
         | 
| 1272 | 
            +
            <td class="parameter_name"><p>by</p></td>
         | 
| 1273 | 
            +
            <td class="parameter_description"><p> return location for bin_window Y coordinate. </p></td>
         | 
| 1274 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
         | 
| 1275 | 
            +
            </tr>
         | 
| 1276 | 
            +
            </tbody>
         | 
| 1277 | 
            +
            </table></div>
         | 
| 1278 | 
            +
            </div>
         | 
| 1279 | 
            +
            <p class="since">Since 2.12</p>
         | 
| 1280 | 
            +
            </div>
         | 
| 1281 | 
            +
            <hr>
         | 
| 1282 | 
            +
            <div class="refsect2">
         | 
| 1283 | 
            +
            <a name="gtk-icon-view-set-cursor"></a><h3>gtk_icon_view_set_cursor ()</h3>
         | 
| 1284 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1285 | 
            +
            gtk_icon_view_set_cursor (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1286 | 
            +
                                      <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 1287 | 
            +
                                      <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
         | 
| 1288 | 
            +
                                      <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> start_editing</code></em>);</pre>
         | 
| 1289 | 
            +
            <p>Sets the current keyboard focus to be at <em class="parameter"><code>path</code></em>
         | 
| 1290 | 
            +
            , and selects it.  This is
         | 
| 1291 | 
            +
            useful when you want to focus the user's attention on a particular item.
         | 
| 1292 | 
            +
            If <em class="parameter"><code>cell</code></em>
         | 
| 1293 | 
            +
             is not <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then focus is given to the cell specified by 
         | 
| 1294 | 
            +
            it. Additionally, if <em class="parameter"><code>start_editing</code></em>
         | 
| 1295 | 
            +
             is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then editing should be 
         | 
| 1296 | 
            +
            started in the specified cell.  </p>
         | 
| 1297 | 
            +
            <p>This function is often followed by <code class="literal">gtk_widget_grab_focus 
         | 
| 1298 | 
            +
            (icon_view)</code> in order to give keyboard focus to the widget.  
         | 
| 1299 | 
            +
            Please note that editing can only happen when the widget is realized.</p>
         | 
| 1300 | 
            +
            <div class="refsect3">
         | 
| 1301 | 
            +
            <a name="id-1.4.9.9.12.16.6"></a><h4>Parameters</h4>
         | 
| 1302 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1303 | 
            +
            <colgroup>
         | 
| 1304 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1305 | 
            +
            <col class="parameters_description">
         | 
| 1306 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1307 | 
            +
            </colgroup>
         | 
| 1308 | 
            +
            <tbody>
         | 
| 1309 | 
            +
            <tr>
         | 
| 1310 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1311 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1312 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1313 | 
            +
            </tr>
         | 
| 1314 | 
            +
            <tr>
         | 
| 1315 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 1316 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a></p></td>
         | 
| 1317 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1318 | 
            +
            </tr>
         | 
| 1319 | 
            +
            <tr>
         | 
| 1320 | 
            +
            <td class="parameter_name"><p>cell</p></td>
         | 
| 1321 | 
            +
            <td class="parameter_description"><p> One of the cell renderers of <em class="parameter"><code>icon_view</code></em>
         | 
| 1322 | 
            +
            , or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 1323 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 1324 | 
            +
            </tr>
         | 
| 1325 | 
            +
            <tr>
         | 
| 1326 | 
            +
            <td class="parameter_name"><p>start_editing</p></td>
         | 
| 1327 | 
            +
            <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the specified cell should start being edited.</p></td>
         | 
| 1328 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1329 | 
            +
            </tr>
         | 
| 1330 | 
            +
            </tbody>
         | 
| 1331 | 
            +
            </table></div>
         | 
| 1332 | 
            +
            </div>
         | 
| 1333 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 1334 | 
            +
            </div>
         | 
| 1335 | 
            +
            <hr>
         | 
| 1336 | 
            +
            <div class="refsect2">
         | 
| 1337 | 
            +
            <a name="gtk-icon-view-get-cursor"></a><h3>gtk_icon_view_get_cursor ()</h3>
         | 
| 1338 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 1339 | 
            +
            gtk_icon_view_get_cursor (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1340 | 
            +
                                      <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
         | 
| 1341 | 
            +
                                      <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
         | 
| 1342 | 
            +
            <p>Fills in <em class="parameter"><code>path</code></em>
         | 
| 1343 | 
            +
             and <em class="parameter"><code>cell</code></em>
         | 
| 1344 | 
            +
             with the current cursor path and cell. 
         | 
| 1345 | 
            +
            If the cursor isn't currently set, then *<em class="parameter"><code>path</code></em>
         | 
| 1346 | 
            +
             will be <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.  
         | 
| 1347 | 
            +
            If no cell currently has focus, then *<em class="parameter"><code>cell</code></em>
         | 
| 1348 | 
            +
             will be <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
         | 
| 1349 | 
            +
            <p>The returned <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> must be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a>.</p>
         | 
| 1350 | 
            +
            <div class="refsect3">
         | 
| 1351 | 
            +
            <a name="id-1.4.9.9.12.17.6"></a><h4>Parameters</h4>
         | 
| 1352 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1353 | 
            +
            <colgroup>
         | 
| 1354 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1355 | 
            +
            <col class="parameters_description">
         | 
| 1356 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1357 | 
            +
            </colgroup>
         | 
| 1358 | 
            +
            <tbody>
         | 
| 1359 | 
            +
            <tr>
         | 
| 1360 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1361 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1362 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1363 | 
            +
            </tr>
         | 
| 1364 | 
            +
            <tr>
         | 
| 1365 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 1366 | 
            +
            <td class="parameter_description"><p> Return location for the current cursor path, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 1367 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 1368 | 
            +
            </tr>
         | 
| 1369 | 
            +
            <tr>
         | 
| 1370 | 
            +
            <td class="parameter_name"><p>cell</p></td>
         | 
| 1371 | 
            +
            <td class="parameter_description"><p> Return location the current focus cell, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 1372 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 1373 | 
            +
            </tr>
         | 
| 1374 | 
            +
            </tbody>
         | 
| 1375 | 
            +
            </table></div>
         | 
| 1376 | 
            +
            </div>
         | 
| 1377 | 
            +
            <div class="refsect3">
         | 
| 1378 | 
            +
            <a name="id-1.4.9.9.12.17.7"></a><h4>Returns</h4>
         | 
| 1379 | 
            +
            <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the cursor is set.</p>
         | 
| 1380 | 
            +
            <p></p>
         | 
| 1381 | 
            +
            </div>
         | 
| 1382 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 1383 | 
            +
            </div>
         | 
| 1384 | 
            +
            <hr>
         | 
| 1385 | 
            +
            <div class="refsect2">
         | 
| 1386 | 
            +
            <a name="gtk-icon-view-selected-foreach"></a><h3>gtk_icon_view_selected_foreach ()</h3>
         | 
| 1387 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1388 | 
            +
            gtk_icon_view_selected_foreach (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1389 | 
            +
                                            <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()"><span class="type">GtkIconViewForeachFunc</span></a> func</code></em>,
         | 
| 1390 | 
            +
                                            <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
         | 
| 1391 | 
            +
            <p>Calls a function for each selected icon. Note that the model or
         | 
| 1392 | 
            +
            selection cannot be modified from within this function.</p>
         | 
| 1393 | 
            +
            <div class="refsect3">
         | 
| 1394 | 
            +
            <a name="id-1.4.9.9.12.18.5"></a><h4>Parameters</h4>
         | 
| 1395 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1396 | 
            +
            <colgroup>
         | 
| 1397 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1398 | 
            +
            <col class="parameters_description">
         | 
| 1399 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1400 | 
            +
            </colgroup>
         | 
| 1401 | 
            +
            <tbody>
         | 
| 1402 | 
            +
            <tr>
         | 
| 1403 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1404 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 1405 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1406 | 
            +
            </tr>
         | 
| 1407 | 
            +
            <tr>
         | 
| 1408 | 
            +
            <td class="parameter_name"><p>func</p></td>
         | 
| 1409 | 
            +
            <td class="parameter_description"><p> The function to call for each selected icon. </p></td>
         | 
| 1410 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span></td>
         | 
| 1411 | 
            +
            </tr>
         | 
| 1412 | 
            +
            <tr>
         | 
| 1413 | 
            +
            <td class="parameter_name"><p>data</p></td>
         | 
| 1414 | 
            +
            <td class="parameter_description"><p>User data to pass to the function.</p></td>
         | 
| 1415 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1416 | 
            +
            </tr>
         | 
| 1417 | 
            +
            </tbody>
         | 
| 1418 | 
            +
            </table></div>
         | 
| 1419 | 
            +
            </div>
         | 
| 1420 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1421 | 
            +
            </div>
         | 
| 1422 | 
            +
            <hr>
         | 
| 1423 | 
            +
            <div class="refsect2">
         | 
| 1424 | 
            +
            <a name="gtk-icon-view-set-selection-mode"></a><h3>gtk_icon_view_set_selection_mode ()</h3>
         | 
| 1425 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1426 | 
            +
            gtk_icon_view_set_selection_mode (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1427 | 
            +
                                              <em class="parameter"><code><a class="link" href="gtk2-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> mode</code></em>);</pre>
         | 
| 1428 | 
            +
            <p>Sets the selection mode of the <em class="parameter"><code>icon_view</code></em>
         | 
| 1429 | 
            +
            .</p>
         | 
| 1430 | 
            +
            <div class="refsect3">
         | 
| 1431 | 
            +
            <a name="id-1.4.9.9.12.19.5"></a><h4>Parameters</h4>
         | 
| 1432 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1433 | 
            +
            <colgroup>
         | 
| 1434 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1435 | 
            +
            <col class="parameters_description">
         | 
| 1436 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1437 | 
            +
            </colgroup>
         | 
| 1438 | 
            +
            <tbody>
         | 
| 1439 | 
            +
            <tr>
         | 
| 1440 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1441 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 1442 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1443 | 
            +
            </tr>
         | 
| 1444 | 
            +
            <tr>
         | 
| 1445 | 
            +
            <td class="parameter_name"><p>mode</p></td>
         | 
| 1446 | 
            +
            <td class="parameter_description"><p>The selection mode</p></td>
         | 
| 1447 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1448 | 
            +
            </tr>
         | 
| 1449 | 
            +
            </tbody>
         | 
| 1450 | 
            +
            </table></div>
         | 
| 1451 | 
            +
            </div>
         | 
| 1452 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1453 | 
            +
            </div>
         | 
| 1454 | 
            +
            <hr>
         | 
| 1455 | 
            +
            <div class="refsect2">
         | 
| 1456 | 
            +
            <a name="gtk-icon-view-get-selection-mode"></a><h3>gtk_icon_view_get_selection_mode ()</h3>
         | 
| 1457 | 
            +
            <pre class="programlisting"><a class="link" href="gtk2-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="returnvalue">GtkSelectionMode</span></a>
         | 
| 1458 | 
            +
            gtk_icon_view_get_selection_mode (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1459 | 
            +
            <p>Gets the selection mode of the <em class="parameter"><code>icon_view</code></em>
         | 
| 1460 | 
            +
            .</p>
         | 
| 1461 | 
            +
            <div class="refsect3">
         | 
| 1462 | 
            +
            <a name="id-1.4.9.9.12.20.5"></a><h4>Parameters</h4>
         | 
| 1463 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1464 | 
            +
            <colgroup>
         | 
| 1465 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1466 | 
            +
            <col class="parameters_description">
         | 
| 1467 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1468 | 
            +
            </colgroup>
         | 
| 1469 | 
            +
            <tbody><tr>
         | 
| 1470 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1471 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 1472 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1473 | 
            +
            </tr></tbody>
         | 
| 1474 | 
            +
            </table></div>
         | 
| 1475 | 
            +
            </div>
         | 
| 1476 | 
            +
            <div class="refsect3">
         | 
| 1477 | 
            +
            <a name="id-1.4.9.9.12.20.6"></a><h4>Returns</h4>
         | 
| 1478 | 
            +
            <p> the current selection mode</p>
         | 
| 1479 | 
            +
            <p></p>
         | 
| 1480 | 
            +
            </div>
         | 
| 1481 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1482 | 
            +
            </div>
         | 
| 1483 | 
            +
            <hr>
         | 
| 1484 | 
            +
            <div class="refsect2">
         | 
| 1485 | 
            +
            <a name="gtk-icon-view-set-orientation"></a><h3>gtk_icon_view_set_orientation ()</h3>
         | 
| 1486 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1487 | 
            +
            gtk_icon_view_set_orientation (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1488 | 
            +
                                           <em class="parameter"><code><a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
         | 
| 1489 | 
            +
            <div class="warning">
         | 
| 1490 | 
            +
            <p><code class="literal">gtk_icon_view_set_orientation</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
         | 
| 1491 | 
            +
            <p>Use <a class="link" href="GtkIconView.html#gtk-icon-view-set-item-orientation" title="gtk_icon_view_set_item_orientation ()"><code class="function">gtk_icon_view_set_item_orientation()</code></a></p>
         | 
| 1492 | 
            +
            </div>
         | 
| 1493 | 
            +
            <p>Sets the ::orientation property which determines whether the labels 
         | 
| 1494 | 
            +
            are drawn beside the icons instead of below.</p>
         | 
| 1495 | 
            +
            <div class="refsect3">
         | 
| 1496 | 
            +
            <a name="id-1.4.9.9.12.21.7"></a><h4>Parameters</h4>
         | 
| 1497 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1498 | 
            +
            <colgroup>
         | 
| 1499 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1500 | 
            +
            <col class="parameters_description">
         | 
| 1501 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1502 | 
            +
            </colgroup>
         | 
| 1503 | 
            +
            <tbody>
         | 
| 1504 | 
            +
            <tr>
         | 
| 1505 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1506 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1507 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1508 | 
            +
            </tr>
         | 
| 1509 | 
            +
            <tr>
         | 
| 1510 | 
            +
            <td class="parameter_name"><p>orientation</p></td>
         | 
| 1511 | 
            +
            <td class="parameter_description"><p>the relative position of texts and icons </p></td>
         | 
| 1512 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1513 | 
            +
            </tr>
         | 
| 1514 | 
            +
            </tbody>
         | 
| 1515 | 
            +
            </table></div>
         | 
| 1516 | 
            +
            </div>
         | 
| 1517 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1518 | 
            +
            </div>
         | 
| 1519 | 
            +
            <hr>
         | 
| 1520 | 
            +
            <div class="refsect2">
         | 
| 1521 | 
            +
            <a name="gtk-icon-view-get-orientation"></a><h3>gtk_icon_view_get_orientation ()</h3>
         | 
| 1522 | 
            +
            <pre class="programlisting"><a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
         | 
| 1523 | 
            +
            gtk_icon_view_get_orientation (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1524 | 
            +
            <div class="warning">
         | 
| 1525 | 
            +
            <p><code class="literal">gtk_icon_view_get_orientation</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
         | 
| 1526 | 
            +
            <p>Use <a class="link" href="GtkIconView.html#gtk-icon-view-get-item-orientation" title="gtk_icon_view_get_item_orientation ()"><code class="function">gtk_icon_view_get_item_orientation()</code></a></p>
         | 
| 1527 | 
            +
            </div>
         | 
| 1528 | 
            +
            <p>Returns the value of the ::orientation property which determines 
         | 
| 1529 | 
            +
            whether the labels are drawn beside the icons instead of below.</p>
         | 
| 1530 | 
            +
            <div class="refsect3">
         | 
| 1531 | 
            +
            <a name="id-1.4.9.9.12.22.7"></a><h4>Parameters</h4>
         | 
| 1532 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1533 | 
            +
            <colgroup>
         | 
| 1534 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1535 | 
            +
            <col class="parameters_description">
         | 
| 1536 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1537 | 
            +
            </colgroup>
         | 
| 1538 | 
            +
            <tbody><tr>
         | 
| 1539 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1540 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1541 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1542 | 
            +
            </tr></tbody>
         | 
| 1543 | 
            +
            </table></div>
         | 
| 1544 | 
            +
            </div>
         | 
| 1545 | 
            +
            <div class="refsect3">
         | 
| 1546 | 
            +
            <a name="id-1.4.9.9.12.22.8"></a><h4>Returns</h4>
         | 
| 1547 | 
            +
            <p> the relative position of texts and icons </p>
         | 
| 1548 | 
            +
            <p></p>
         | 
| 1549 | 
            +
            </div>
         | 
| 1550 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1551 | 
            +
            </div>
         | 
| 1552 | 
            +
            <hr>
         | 
| 1553 | 
            +
            <div class="refsect2">
         | 
| 1554 | 
            +
            <a name="gtk-icon-view-set-item-orientation"></a><h3>gtk_icon_view_set_item_orientation ()</h3>
         | 
| 1555 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1556 | 
            +
            gtk_icon_view_set_item_orientation (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1557 | 
            +
                                                <em class="parameter"><code><a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
         | 
| 1558 | 
            +
            <p>Sets the ::item-orientation property which determines whether
         | 
| 1559 | 
            +
            the labels are drawn beside the icons instead of below.</p>
         | 
| 1560 | 
            +
            <div class="refsect3">
         | 
| 1561 | 
            +
            <a name="id-1.4.9.9.12.23.5"></a><h4>Parameters</h4>
         | 
| 1562 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1563 | 
            +
            <colgroup>
         | 
| 1564 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1565 | 
            +
            <col class="parameters_description">
         | 
| 1566 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1567 | 
            +
            </colgroup>
         | 
| 1568 | 
            +
            <tbody>
         | 
| 1569 | 
            +
            <tr>
         | 
| 1570 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1571 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1572 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1573 | 
            +
            </tr>
         | 
| 1574 | 
            +
            <tr>
         | 
| 1575 | 
            +
            <td class="parameter_name"><p>orientation</p></td>
         | 
| 1576 | 
            +
            <td class="parameter_description"><p>the relative position of texts and icons </p></td>
         | 
| 1577 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1578 | 
            +
            </tr>
         | 
| 1579 | 
            +
            </tbody>
         | 
| 1580 | 
            +
            </table></div>
         | 
| 1581 | 
            +
            </div>
         | 
| 1582 | 
            +
            <p class="since">Since 2.22</p>
         | 
| 1583 | 
            +
            </div>
         | 
| 1584 | 
            +
            <hr>
         | 
| 1585 | 
            +
            <div class="refsect2">
         | 
| 1586 | 
            +
            <a name="gtk-icon-view-get-item-orientation"></a><h3>gtk_icon_view_get_item_orientation ()</h3>
         | 
| 1587 | 
            +
            <pre class="programlisting"><a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
         | 
| 1588 | 
            +
            gtk_icon_view_get_item_orientation (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1589 | 
            +
            <p>Returns the value of the ::item-orientation property which determines
         | 
| 1590 | 
            +
            whether the labels are drawn beside the icons instead of below.</p>
         | 
| 1591 | 
            +
            <div class="refsect3">
         | 
| 1592 | 
            +
            <a name="id-1.4.9.9.12.24.5"></a><h4>Parameters</h4>
         | 
| 1593 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1594 | 
            +
            <colgroup>
         | 
| 1595 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1596 | 
            +
            <col class="parameters_description">
         | 
| 1597 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1598 | 
            +
            </colgroup>
         | 
| 1599 | 
            +
            <tbody><tr>
         | 
| 1600 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1601 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1602 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1603 | 
            +
            </tr></tbody>
         | 
| 1604 | 
            +
            </table></div>
         | 
| 1605 | 
            +
            </div>
         | 
| 1606 | 
            +
            <div class="refsect3">
         | 
| 1607 | 
            +
            <a name="id-1.4.9.9.12.24.6"></a><h4>Returns</h4>
         | 
| 1608 | 
            +
            <p> the relative position of texts and icons</p>
         | 
| 1609 | 
            +
            <p></p>
         | 
| 1610 | 
            +
            </div>
         | 
| 1611 | 
            +
            <p class="since">Since 2.22</p>
         | 
| 1612 | 
            +
            </div>
         | 
| 1613 | 
            +
            <hr>
         | 
| 1614 | 
            +
            <div class="refsect2">
         | 
| 1615 | 
            +
            <a name="gtk-icon-view-set-columns"></a><h3>gtk_icon_view_set_columns ()</h3>
         | 
| 1616 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1617 | 
            +
            gtk_icon_view_set_columns (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1618 | 
            +
                                       <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>);</pre>
         | 
| 1619 | 
            +
            <p>Sets the ::columns property which determines in how
         | 
| 1620 | 
            +
            many columns the icons are arranged. If <em class="parameter"><code>columns</code></em>
         | 
| 1621 | 
            +
             is
         | 
| 1622 | 
            +
            -1, the number of columns will be chosen automatically 
         | 
| 1623 | 
            +
            to fill the available area.</p>
         | 
| 1624 | 
            +
            <div class="refsect3">
         | 
| 1625 | 
            +
            <a name="id-1.4.9.9.12.25.5"></a><h4>Parameters</h4>
         | 
| 1626 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1627 | 
            +
            <colgroup>
         | 
| 1628 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1629 | 
            +
            <col class="parameters_description">
         | 
| 1630 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1631 | 
            +
            </colgroup>
         | 
| 1632 | 
            +
            <tbody>
         | 
| 1633 | 
            +
            <tr>
         | 
| 1634 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1635 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1636 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1637 | 
            +
            </tr>
         | 
| 1638 | 
            +
            <tr>
         | 
| 1639 | 
            +
            <td class="parameter_name"><p>columns</p></td>
         | 
| 1640 | 
            +
            <td class="parameter_description"><p>the number of columns</p></td>
         | 
| 1641 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1642 | 
            +
            </tr>
         | 
| 1643 | 
            +
            </tbody>
         | 
| 1644 | 
            +
            </table></div>
         | 
| 1645 | 
            +
            </div>
         | 
| 1646 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1647 | 
            +
            </div>
         | 
| 1648 | 
            +
            <hr>
         | 
| 1649 | 
            +
            <div class="refsect2">
         | 
| 1650 | 
            +
            <a name="gtk-icon-view-get-columns"></a><h3>gtk_icon_view_get_columns ()</h3>
         | 
| 1651 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 1652 | 
            +
            gtk_icon_view_get_columns (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1653 | 
            +
            <p>Returns the value of the ::columns property.</p>
         | 
| 1654 | 
            +
            <div class="refsect3">
         | 
| 1655 | 
            +
            <a name="id-1.4.9.9.12.26.5"></a><h4>Parameters</h4>
         | 
| 1656 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1657 | 
            +
            <colgroup>
         | 
| 1658 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1659 | 
            +
            <col class="parameters_description">
         | 
| 1660 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1661 | 
            +
            </colgroup>
         | 
| 1662 | 
            +
            <tbody><tr>
         | 
| 1663 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1664 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1665 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1666 | 
            +
            </tr></tbody>
         | 
| 1667 | 
            +
            </table></div>
         | 
| 1668 | 
            +
            </div>
         | 
| 1669 | 
            +
            <div class="refsect3">
         | 
| 1670 | 
            +
            <a name="id-1.4.9.9.12.26.6"></a><h4>Returns</h4>
         | 
| 1671 | 
            +
            <p> the number of columns, or -1</p>
         | 
| 1672 | 
            +
            <p></p>
         | 
| 1673 | 
            +
            </div>
         | 
| 1674 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1675 | 
            +
            </div>
         | 
| 1676 | 
            +
            <hr>
         | 
| 1677 | 
            +
            <div class="refsect2">
         | 
| 1678 | 
            +
            <a name="gtk-icon-view-set-item-width"></a><h3>gtk_icon_view_set_item_width ()</h3>
         | 
| 1679 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1680 | 
            +
            gtk_icon_view_set_item_width (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1681 | 
            +
                                          <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item_width</code></em>);</pre>
         | 
| 1682 | 
            +
            <p>Sets the ::item-width property which specifies the width 
         | 
| 1683 | 
            +
            to use for each item. If it is set to -1, the icon view will 
         | 
| 1684 | 
            +
            automatically determine a suitable item size.</p>
         | 
| 1685 | 
            +
            <div class="refsect3">
         | 
| 1686 | 
            +
            <a name="id-1.4.9.9.12.27.5"></a><h4>Parameters</h4>
         | 
| 1687 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1688 | 
            +
            <colgroup>
         | 
| 1689 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1690 | 
            +
            <col class="parameters_description">
         | 
| 1691 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1692 | 
            +
            </colgroup>
         | 
| 1693 | 
            +
            <tbody>
         | 
| 1694 | 
            +
            <tr>
         | 
| 1695 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1696 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1697 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1698 | 
            +
            </tr>
         | 
| 1699 | 
            +
            <tr>
         | 
| 1700 | 
            +
            <td class="parameter_name"><p>item_width</p></td>
         | 
| 1701 | 
            +
            <td class="parameter_description"><p>the width for each item</p></td>
         | 
| 1702 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1703 | 
            +
            </tr>
         | 
| 1704 | 
            +
            </tbody>
         | 
| 1705 | 
            +
            </table></div>
         | 
| 1706 | 
            +
            </div>
         | 
| 1707 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1708 | 
            +
            </div>
         | 
| 1709 | 
            +
            <hr>
         | 
| 1710 | 
            +
            <div class="refsect2">
         | 
| 1711 | 
            +
            <a name="gtk-icon-view-get-item-width"></a><h3>gtk_icon_view_get_item_width ()</h3>
         | 
| 1712 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 1713 | 
            +
            gtk_icon_view_get_item_width (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1714 | 
            +
            <p>Returns the value of the ::item-width property.</p>
         | 
| 1715 | 
            +
            <div class="refsect3">
         | 
| 1716 | 
            +
            <a name="id-1.4.9.9.12.28.5"></a><h4>Parameters</h4>
         | 
| 1717 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1718 | 
            +
            <colgroup>
         | 
| 1719 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1720 | 
            +
            <col class="parameters_description">
         | 
| 1721 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1722 | 
            +
            </colgroup>
         | 
| 1723 | 
            +
            <tbody><tr>
         | 
| 1724 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1725 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1726 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1727 | 
            +
            </tr></tbody>
         | 
| 1728 | 
            +
            </table></div>
         | 
| 1729 | 
            +
            </div>
         | 
| 1730 | 
            +
            <div class="refsect3">
         | 
| 1731 | 
            +
            <a name="id-1.4.9.9.12.28.6"></a><h4>Returns</h4>
         | 
| 1732 | 
            +
            <p> the width of a single item, or -1</p>
         | 
| 1733 | 
            +
            <p></p>
         | 
| 1734 | 
            +
            </div>
         | 
| 1735 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1736 | 
            +
            </div>
         | 
| 1737 | 
            +
            <hr>
         | 
| 1738 | 
            +
            <div class="refsect2">
         | 
| 1739 | 
            +
            <a name="gtk-icon-view-set-spacing"></a><h3>gtk_icon_view_set_spacing ()</h3>
         | 
| 1740 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1741 | 
            +
            gtk_icon_view_set_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1742 | 
            +
                                       <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> spacing</code></em>);</pre>
         | 
| 1743 | 
            +
            <p>Sets the ::spacing property which specifies the space 
         | 
| 1744 | 
            +
            which is inserted between the cells (i.e. the icon and 
         | 
| 1745 | 
            +
            the text) of an item.</p>
         | 
| 1746 | 
            +
            <div class="refsect3">
         | 
| 1747 | 
            +
            <a name="id-1.4.9.9.12.29.5"></a><h4>Parameters</h4>
         | 
| 1748 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1749 | 
            +
            <colgroup>
         | 
| 1750 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1751 | 
            +
            <col class="parameters_description">
         | 
| 1752 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1753 | 
            +
            </colgroup>
         | 
| 1754 | 
            +
            <tbody>
         | 
| 1755 | 
            +
            <tr>
         | 
| 1756 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1757 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1758 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1759 | 
            +
            </tr>
         | 
| 1760 | 
            +
            <tr>
         | 
| 1761 | 
            +
            <td class="parameter_name"><p>spacing</p></td>
         | 
| 1762 | 
            +
            <td class="parameter_description"><p>the spacing</p></td>
         | 
| 1763 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1764 | 
            +
            </tr>
         | 
| 1765 | 
            +
            </tbody>
         | 
| 1766 | 
            +
            </table></div>
         | 
| 1767 | 
            +
            </div>
         | 
| 1768 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1769 | 
            +
            </div>
         | 
| 1770 | 
            +
            <hr>
         | 
| 1771 | 
            +
            <div class="refsect2">
         | 
| 1772 | 
            +
            <a name="gtk-icon-view-get-spacing"></a><h3>gtk_icon_view_get_spacing ()</h3>
         | 
| 1773 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 1774 | 
            +
            gtk_icon_view_get_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1775 | 
            +
            <p>Returns the value of the ::spacing property.</p>
         | 
| 1776 | 
            +
            <div class="refsect3">
         | 
| 1777 | 
            +
            <a name="id-1.4.9.9.12.30.5"></a><h4>Parameters</h4>
         | 
| 1778 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1779 | 
            +
            <colgroup>
         | 
| 1780 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1781 | 
            +
            <col class="parameters_description">
         | 
| 1782 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1783 | 
            +
            </colgroup>
         | 
| 1784 | 
            +
            <tbody><tr>
         | 
| 1785 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1786 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1787 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1788 | 
            +
            </tr></tbody>
         | 
| 1789 | 
            +
            </table></div>
         | 
| 1790 | 
            +
            </div>
         | 
| 1791 | 
            +
            <div class="refsect3">
         | 
| 1792 | 
            +
            <a name="id-1.4.9.9.12.30.6"></a><h4>Returns</h4>
         | 
| 1793 | 
            +
            <p> the space between cells </p>
         | 
| 1794 | 
            +
            <p></p>
         | 
| 1795 | 
            +
            </div>
         | 
| 1796 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1797 | 
            +
            </div>
         | 
| 1798 | 
            +
            <hr>
         | 
| 1799 | 
            +
            <div class="refsect2">
         | 
| 1800 | 
            +
            <a name="gtk-icon-view-set-row-spacing"></a><h3>gtk_icon_view_set_row_spacing ()</h3>
         | 
| 1801 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1802 | 
            +
            gtk_icon_view_set_row_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1803 | 
            +
                                           <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row_spacing</code></em>);</pre>
         | 
| 1804 | 
            +
            <p>Sets the ::row-spacing property which specifies the space 
         | 
| 1805 | 
            +
            which is inserted between the rows of the icon view.</p>
         | 
| 1806 | 
            +
            <div class="refsect3">
         | 
| 1807 | 
            +
            <a name="id-1.4.9.9.12.31.5"></a><h4>Parameters</h4>
         | 
| 1808 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1809 | 
            +
            <colgroup>
         | 
| 1810 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1811 | 
            +
            <col class="parameters_description">
         | 
| 1812 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1813 | 
            +
            </colgroup>
         | 
| 1814 | 
            +
            <tbody>
         | 
| 1815 | 
            +
            <tr>
         | 
| 1816 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1817 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1818 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1819 | 
            +
            </tr>
         | 
| 1820 | 
            +
            <tr>
         | 
| 1821 | 
            +
            <td class="parameter_name"><p>row_spacing</p></td>
         | 
| 1822 | 
            +
            <td class="parameter_description"><p>the row spacing</p></td>
         | 
| 1823 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1824 | 
            +
            </tr>
         | 
| 1825 | 
            +
            </tbody>
         | 
| 1826 | 
            +
            </table></div>
         | 
| 1827 | 
            +
            </div>
         | 
| 1828 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1829 | 
            +
            </div>
         | 
| 1830 | 
            +
            <hr>
         | 
| 1831 | 
            +
            <div class="refsect2">
         | 
| 1832 | 
            +
            <a name="gtk-icon-view-get-row-spacing"></a><h3>gtk_icon_view_get_row_spacing ()</h3>
         | 
| 1833 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 1834 | 
            +
            gtk_icon_view_get_row_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1835 | 
            +
            <p>Returns the value of the ::row-spacing property.</p>
         | 
| 1836 | 
            +
            <div class="refsect3">
         | 
| 1837 | 
            +
            <a name="id-1.4.9.9.12.32.5"></a><h4>Parameters</h4>
         | 
| 1838 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1839 | 
            +
            <colgroup>
         | 
| 1840 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1841 | 
            +
            <col class="parameters_description">
         | 
| 1842 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1843 | 
            +
            </colgroup>
         | 
| 1844 | 
            +
            <tbody><tr>
         | 
| 1845 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1846 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1847 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1848 | 
            +
            </tr></tbody>
         | 
| 1849 | 
            +
            </table></div>
         | 
| 1850 | 
            +
            </div>
         | 
| 1851 | 
            +
            <div class="refsect3">
         | 
| 1852 | 
            +
            <a name="id-1.4.9.9.12.32.6"></a><h4>Returns</h4>
         | 
| 1853 | 
            +
            <p> the space between rows</p>
         | 
| 1854 | 
            +
            <p></p>
         | 
| 1855 | 
            +
            </div>
         | 
| 1856 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1857 | 
            +
            </div>
         | 
| 1858 | 
            +
            <hr>
         | 
| 1859 | 
            +
            <div class="refsect2">
         | 
| 1860 | 
            +
            <a name="gtk-icon-view-set-column-spacing"></a><h3>gtk_icon_view_set_column_spacing ()</h3>
         | 
| 1861 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1862 | 
            +
            gtk_icon_view_set_column_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1863 | 
            +
                                              <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column_spacing</code></em>);</pre>
         | 
| 1864 | 
            +
            <p>Sets the ::column-spacing property which specifies the space 
         | 
| 1865 | 
            +
            which is inserted between the columns of the icon view.</p>
         | 
| 1866 | 
            +
            <div class="refsect3">
         | 
| 1867 | 
            +
            <a name="id-1.4.9.9.12.33.5"></a><h4>Parameters</h4>
         | 
| 1868 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1869 | 
            +
            <colgroup>
         | 
| 1870 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1871 | 
            +
            <col class="parameters_description">
         | 
| 1872 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1873 | 
            +
            </colgroup>
         | 
| 1874 | 
            +
            <tbody>
         | 
| 1875 | 
            +
            <tr>
         | 
| 1876 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1877 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1878 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1879 | 
            +
            </tr>
         | 
| 1880 | 
            +
            <tr>
         | 
| 1881 | 
            +
            <td class="parameter_name"><p>column_spacing</p></td>
         | 
| 1882 | 
            +
            <td class="parameter_description"><p>the column spacing</p></td>
         | 
| 1883 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1884 | 
            +
            </tr>
         | 
| 1885 | 
            +
            </tbody>
         | 
| 1886 | 
            +
            </table></div>
         | 
| 1887 | 
            +
            </div>
         | 
| 1888 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1889 | 
            +
            </div>
         | 
| 1890 | 
            +
            <hr>
         | 
| 1891 | 
            +
            <div class="refsect2">
         | 
| 1892 | 
            +
            <a name="gtk-icon-view-get-column-spacing"></a><h3>gtk_icon_view_get_column_spacing ()</h3>
         | 
| 1893 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 1894 | 
            +
            gtk_icon_view_get_column_spacing (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1895 | 
            +
            <p>Returns the value of the ::column-spacing property.</p>
         | 
| 1896 | 
            +
            <div class="refsect3">
         | 
| 1897 | 
            +
            <a name="id-1.4.9.9.12.34.5"></a><h4>Parameters</h4>
         | 
| 1898 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1899 | 
            +
            <colgroup>
         | 
| 1900 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1901 | 
            +
            <col class="parameters_description">
         | 
| 1902 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1903 | 
            +
            </colgroup>
         | 
| 1904 | 
            +
            <tbody><tr>
         | 
| 1905 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1906 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1907 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1908 | 
            +
            </tr></tbody>
         | 
| 1909 | 
            +
            </table></div>
         | 
| 1910 | 
            +
            </div>
         | 
| 1911 | 
            +
            <div class="refsect3">
         | 
| 1912 | 
            +
            <a name="id-1.4.9.9.12.34.6"></a><h4>Returns</h4>
         | 
| 1913 | 
            +
            <p> the space between columns</p>
         | 
| 1914 | 
            +
            <p></p>
         | 
| 1915 | 
            +
            </div>
         | 
| 1916 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1917 | 
            +
            </div>
         | 
| 1918 | 
            +
            <hr>
         | 
| 1919 | 
            +
            <div class="refsect2">
         | 
| 1920 | 
            +
            <a name="gtk-icon-view-set-margin"></a><h3>gtk_icon_view_set_margin ()</h3>
         | 
| 1921 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1922 | 
            +
            gtk_icon_view_set_margin (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1923 | 
            +
                                      <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> margin</code></em>);</pre>
         | 
| 1924 | 
            +
            <p>Sets the ::margin property which specifies the space 
         | 
| 1925 | 
            +
            which is inserted at the top, bottom, left and right 
         | 
| 1926 | 
            +
            of the icon view.</p>
         | 
| 1927 | 
            +
            <div class="refsect3">
         | 
| 1928 | 
            +
            <a name="id-1.4.9.9.12.35.5"></a><h4>Parameters</h4>
         | 
| 1929 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1930 | 
            +
            <colgroup>
         | 
| 1931 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1932 | 
            +
            <col class="parameters_description">
         | 
| 1933 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1934 | 
            +
            </colgroup>
         | 
| 1935 | 
            +
            <tbody>
         | 
| 1936 | 
            +
            <tr>
         | 
| 1937 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1938 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1939 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1940 | 
            +
            </tr>
         | 
| 1941 | 
            +
            <tr>
         | 
| 1942 | 
            +
            <td class="parameter_name"><p>margin</p></td>
         | 
| 1943 | 
            +
            <td class="parameter_description"><p>the margin</p></td>
         | 
| 1944 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1945 | 
            +
            </tr>
         | 
| 1946 | 
            +
            </tbody>
         | 
| 1947 | 
            +
            </table></div>
         | 
| 1948 | 
            +
            </div>
         | 
| 1949 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1950 | 
            +
            </div>
         | 
| 1951 | 
            +
            <hr>
         | 
| 1952 | 
            +
            <div class="refsect2">
         | 
| 1953 | 
            +
            <a name="gtk-icon-view-get-margin"></a><h3>gtk_icon_view_get_margin ()</h3>
         | 
| 1954 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 1955 | 
            +
            gtk_icon_view_get_margin (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 1956 | 
            +
            <p>Returns the value of the ::margin property.</p>
         | 
| 1957 | 
            +
            <div class="refsect3">
         | 
| 1958 | 
            +
            <a name="id-1.4.9.9.12.36.5"></a><h4>Parameters</h4>
         | 
| 1959 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1960 | 
            +
            <colgroup>
         | 
| 1961 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1962 | 
            +
            <col class="parameters_description">
         | 
| 1963 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1964 | 
            +
            </colgroup>
         | 
| 1965 | 
            +
            <tbody><tr>
         | 
| 1966 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1967 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1968 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 1969 | 
            +
            </tr></tbody>
         | 
| 1970 | 
            +
            </table></div>
         | 
| 1971 | 
            +
            </div>
         | 
| 1972 | 
            +
            <div class="refsect3">
         | 
| 1973 | 
            +
            <a name="id-1.4.9.9.12.36.6"></a><h4>Returns</h4>
         | 
| 1974 | 
            +
            <p> the space at the borders </p>
         | 
| 1975 | 
            +
            <p></p>
         | 
| 1976 | 
            +
            </div>
         | 
| 1977 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 1978 | 
            +
            </div>
         | 
| 1979 | 
            +
            <hr>
         | 
| 1980 | 
            +
            <div class="refsect2">
         | 
| 1981 | 
            +
            <a name="gtk-icon-view-set-item-padding"></a><h3>gtk_icon_view_set_item_padding ()</h3>
         | 
| 1982 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 1983 | 
            +
            gtk_icon_view_set_item_padding (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 1984 | 
            +
                                            <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item_padding</code></em>);</pre>
         | 
| 1985 | 
            +
            <p>Sets the <a class="link" href="GtkIconView.html#GtkIconView--item-padding" title="The “item-padding” property"><span class="type">“item-padding”</span></a> property which specifies the padding
         | 
| 1986 | 
            +
            around each of the icon view's items.</p>
         | 
| 1987 | 
            +
            <div class="refsect3">
         | 
| 1988 | 
            +
            <a name="id-1.4.9.9.12.37.5"></a><h4>Parameters</h4>
         | 
| 1989 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 1990 | 
            +
            <colgroup>
         | 
| 1991 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 1992 | 
            +
            <col class="parameters_description">
         | 
| 1993 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 1994 | 
            +
            </colgroup>
         | 
| 1995 | 
            +
            <tbody>
         | 
| 1996 | 
            +
            <tr>
         | 
| 1997 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 1998 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 1999 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2000 | 
            +
            </tr>
         | 
| 2001 | 
            +
            <tr>
         | 
| 2002 | 
            +
            <td class="parameter_name"><p>item_padding</p></td>
         | 
| 2003 | 
            +
            <td class="parameter_description"><p>the item padding</p></td>
         | 
| 2004 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2005 | 
            +
            </tr>
         | 
| 2006 | 
            +
            </tbody>
         | 
| 2007 | 
            +
            </table></div>
         | 
| 2008 | 
            +
            </div>
         | 
| 2009 | 
            +
            <p class="since">Since 2.18</p>
         | 
| 2010 | 
            +
            </div>
         | 
| 2011 | 
            +
            <hr>
         | 
| 2012 | 
            +
            <div class="refsect2">
         | 
| 2013 | 
            +
            <a name="gtk-icon-view-get-item-padding"></a><h3>gtk_icon_view_get_item_padding ()</h3>
         | 
| 2014 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 2015 | 
            +
            gtk_icon_view_get_item_padding (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 2016 | 
            +
            <p>Returns the value of the ::item-padding property.</p>
         | 
| 2017 | 
            +
            <div class="refsect3">
         | 
| 2018 | 
            +
            <a name="id-1.4.9.9.12.38.5"></a><h4>Parameters</h4>
         | 
| 2019 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2020 | 
            +
            <colgroup>
         | 
| 2021 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2022 | 
            +
            <col class="parameters_description">
         | 
| 2023 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2024 | 
            +
            </colgroup>
         | 
| 2025 | 
            +
            <tbody><tr>
         | 
| 2026 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2027 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2028 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2029 | 
            +
            </tr></tbody>
         | 
| 2030 | 
            +
            </table></div>
         | 
| 2031 | 
            +
            </div>
         | 
| 2032 | 
            +
            <div class="refsect3">
         | 
| 2033 | 
            +
            <a name="id-1.4.9.9.12.38.6"></a><h4>Returns</h4>
         | 
| 2034 | 
            +
            <p> the padding around items</p>
         | 
| 2035 | 
            +
            <p></p>
         | 
| 2036 | 
            +
            </div>
         | 
| 2037 | 
            +
            <p class="since">Since 2.18</p>
         | 
| 2038 | 
            +
            </div>
         | 
| 2039 | 
            +
            <hr>
         | 
| 2040 | 
            +
            <div class="refsect2">
         | 
| 2041 | 
            +
            <a name="gtk-icon-view-select-path"></a><h3>gtk_icon_view_select_path ()</h3>
         | 
| 2042 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2043 | 
            +
            gtk_icon_view_select_path (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2044 | 
            +
                                       <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 2045 | 
            +
            <p>Selects the row at <em class="parameter"><code>path</code></em>
         | 
| 2046 | 
            +
            .</p>
         | 
| 2047 | 
            +
            <div class="refsect3">
         | 
| 2048 | 
            +
            <a name="id-1.4.9.9.12.39.5"></a><h4>Parameters</h4>
         | 
| 2049 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2050 | 
            +
            <colgroup>
         | 
| 2051 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2052 | 
            +
            <col class="parameters_description">
         | 
| 2053 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2054 | 
            +
            </colgroup>
         | 
| 2055 | 
            +
            <tbody>
         | 
| 2056 | 
            +
            <tr>
         | 
| 2057 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2058 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 2059 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2060 | 
            +
            </tr>
         | 
| 2061 | 
            +
            <tr>
         | 
| 2062 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2063 | 
            +
            <td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be selected.</p></td>
         | 
| 2064 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2065 | 
            +
            </tr>
         | 
| 2066 | 
            +
            </tbody>
         | 
| 2067 | 
            +
            </table></div>
         | 
| 2068 | 
            +
            </div>
         | 
| 2069 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 2070 | 
            +
            </div>
         | 
| 2071 | 
            +
            <hr>
         | 
| 2072 | 
            +
            <div class="refsect2">
         | 
| 2073 | 
            +
            <a name="gtk-icon-view-unselect-path"></a><h3>gtk_icon_view_unselect_path ()</h3>
         | 
| 2074 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2075 | 
            +
            gtk_icon_view_unselect_path (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2076 | 
            +
                                         <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 2077 | 
            +
            <p>Unselects the row at <em class="parameter"><code>path</code></em>
         | 
| 2078 | 
            +
            .</p>
         | 
| 2079 | 
            +
            <div class="refsect3">
         | 
| 2080 | 
            +
            <a name="id-1.4.9.9.12.40.5"></a><h4>Parameters</h4>
         | 
| 2081 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2082 | 
            +
            <colgroup>
         | 
| 2083 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2084 | 
            +
            <col class="parameters_description">
         | 
| 2085 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2086 | 
            +
            </colgroup>
         | 
| 2087 | 
            +
            <tbody>
         | 
| 2088 | 
            +
            <tr>
         | 
| 2089 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2090 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 2091 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2092 | 
            +
            </tr>
         | 
| 2093 | 
            +
            <tr>
         | 
| 2094 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2095 | 
            +
            <td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be unselected.</p></td>
         | 
| 2096 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2097 | 
            +
            </tr>
         | 
| 2098 | 
            +
            </tbody>
         | 
| 2099 | 
            +
            </table></div>
         | 
| 2100 | 
            +
            </div>
         | 
| 2101 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 2102 | 
            +
            </div>
         | 
| 2103 | 
            +
            <hr>
         | 
| 2104 | 
            +
            <div class="refsect2">
         | 
| 2105 | 
            +
            <a name="gtk-icon-view-path-is-selected"></a><h3>gtk_icon_view_path_is_selected ()</h3>
         | 
| 2106 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 2107 | 
            +
            gtk_icon_view_path_is_selected (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2108 | 
            +
                                            <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 2109 | 
            +
            <p>Returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon pointed to by <em class="parameter"><code>path</code></em>
         | 
| 2110 | 
            +
             is currently
         | 
| 2111 | 
            +
            selected. If <em class="parameter"><code>path</code></em>
         | 
| 2112 | 
            +
             does not point to a valid location, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned.</p>
         | 
| 2113 | 
            +
            <div class="refsect3">
         | 
| 2114 | 
            +
            <a name="id-1.4.9.9.12.41.5"></a><h4>Parameters</h4>
         | 
| 2115 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2116 | 
            +
            <colgroup>
         | 
| 2117 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2118 | 
            +
            <col class="parameters_description">
         | 
| 2119 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2120 | 
            +
            </colgroup>
         | 
| 2121 | 
            +
            <tbody>
         | 
| 2122 | 
            +
            <tr>
         | 
| 2123 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2124 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 2125 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2126 | 
            +
            </tr>
         | 
| 2127 | 
            +
            <tr>
         | 
| 2128 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2129 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to check selection on.</p></td>
         | 
| 2130 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2131 | 
            +
            </tr>
         | 
| 2132 | 
            +
            </tbody>
         | 
| 2133 | 
            +
            </table></div>
         | 
| 2134 | 
            +
            </div>
         | 
| 2135 | 
            +
            <div class="refsect3">
         | 
| 2136 | 
            +
            <a name="id-1.4.9.9.12.41.6"></a><h4>Returns</h4>
         | 
| 2137 | 
            +
            <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>path</code></em>
         | 
| 2138 | 
            +
            is selected.</p>
         | 
| 2139 | 
            +
            <p></p>
         | 
| 2140 | 
            +
            </div>
         | 
| 2141 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 2142 | 
            +
            </div>
         | 
| 2143 | 
            +
            <hr>
         | 
| 2144 | 
            +
            <div class="refsect2">
         | 
| 2145 | 
            +
            <a name="gtk-icon-view-get-selected-items"></a><h3>gtk_icon_view_get_selected_items ()</h3>
         | 
| 2146 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
         | 
| 2147 | 
            +
            gtk_icon_view_get_selected_items (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 2148 | 
            +
            <p>Creates a list of paths of all selected items. Additionally, if you are
         | 
| 2149 | 
            +
            planning on modifying the model after calling this function, you may
         | 
| 2150 | 
            +
            want to convert the returned list into a list of <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>s.
         | 
| 2151 | 
            +
            To do this, you can use <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new" title="gtk_tree_row_reference_new ()"><code class="function">gtk_tree_row_reference_new()</code></a>.</p>
         | 
| 2152 | 
            +
            <p>To free the return value, use:</p>
         | 
| 2153 | 
            +
            <div class="informalexample">
         | 
| 2154 | 
            +
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| 2155 | 
            +
                <tbody>
         | 
| 2156 | 
            +
                  <tr>
         | 
| 2157 | 
            +
                    <td class="listing_lines" align="right"><pre>1
         | 
| 2158 | 
            +
            2</pre></td>
         | 
| 2159 | 
            +
                    <td class="listing_code"><pre class="programlisting"><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-foreach">g_list_foreach</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">(</span><span class="normal"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GFunc">GFunc</a></span><span class="symbol">)</span><span class="normal"><a href="GtkTreeModel.html#gtk-tree-path-free">gtk_tree_path_free</a></span><span class="symbol">,</span><span class="normal"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">);</span>
         | 
| 2160 | 
            +
            <span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free">g_list_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list</span><span class="symbol">);</span></pre></td>
         | 
| 2161 | 
            +
                  </tr>
         | 
| 2162 | 
            +
                </tbody>
         | 
| 2163 | 
            +
              </table>
         | 
| 2164 | 
            +
            </div>
         | 
| 2165 | 
            +
             | 
| 2166 | 
            +
            <p></p>
         | 
| 2167 | 
            +
            <div class="refsect3">
         | 
| 2168 | 
            +
            <a name="id-1.4.9.9.12.42.8"></a><h4>Parameters</h4>
         | 
| 2169 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2170 | 
            +
            <colgroup>
         | 
| 2171 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2172 | 
            +
            <col class="parameters_description">
         | 
| 2173 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2174 | 
            +
            </colgroup>
         | 
| 2175 | 
            +
            <tbody><tr>
         | 
| 2176 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2177 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 2178 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2179 | 
            +
            </tr></tbody>
         | 
| 2180 | 
            +
            </table></div>
         | 
| 2181 | 
            +
            </div>
         | 
| 2182 | 
            +
            <div class="refsect3">
         | 
| 2183 | 
            +
            <a name="id-1.4.9.9.12.42.9"></a><h4>Returns</h4>
         | 
| 2184 | 
            +
            <p> A <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> containing a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for each selected row. </p>
         | 
| 2185 | 
            +
            <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkTreePath][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
         | 
| 2186 | 
            +
            </div>
         | 
| 2187 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 2188 | 
            +
            </div>
         | 
| 2189 | 
            +
            <hr>
         | 
| 2190 | 
            +
            <div class="refsect2">
         | 
| 2191 | 
            +
            <a name="gtk-icon-view-select-all"></a><h3>gtk_icon_view_select_all ()</h3>
         | 
| 2192 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2193 | 
            +
            gtk_icon_view_select_all (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 2194 | 
            +
            <p>Selects all the icons. <em class="parameter"><code>icon_view</code></em>
         | 
| 2195 | 
            +
             must has its selection mode set
         | 
| 2196 | 
            +
            to <a class="link" href="gtk2-Standard-Enumerations.html#GTK-SELECTION-MULTIPLE:CAPS"><span class="type">GTK_SELECTION_MULTIPLE</span></a>.</p>
         | 
| 2197 | 
            +
            <div class="refsect3">
         | 
| 2198 | 
            +
            <a name="id-1.4.9.9.12.43.5"></a><h4>Parameters</h4>
         | 
| 2199 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2200 | 
            +
            <colgroup>
         | 
| 2201 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2202 | 
            +
            <col class="parameters_description">
         | 
| 2203 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2204 | 
            +
            </colgroup>
         | 
| 2205 | 
            +
            <tbody><tr>
         | 
| 2206 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2207 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 2208 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2209 | 
            +
            </tr></tbody>
         | 
| 2210 | 
            +
            </table></div>
         | 
| 2211 | 
            +
            </div>
         | 
| 2212 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 2213 | 
            +
            </div>
         | 
| 2214 | 
            +
            <hr>
         | 
| 2215 | 
            +
            <div class="refsect2">
         | 
| 2216 | 
            +
            <a name="gtk-icon-view-unselect-all"></a><h3>gtk_icon_view_unselect_all ()</h3>
         | 
| 2217 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2218 | 
            +
            gtk_icon_view_unselect_all (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 2219 | 
            +
            <p>Unselects all the icons.</p>
         | 
| 2220 | 
            +
            <div class="refsect3">
         | 
| 2221 | 
            +
            <a name="id-1.4.9.9.12.44.5"></a><h4>Parameters</h4>
         | 
| 2222 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2223 | 
            +
            <colgroup>
         | 
| 2224 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2225 | 
            +
            <col class="parameters_description">
         | 
| 2226 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2227 | 
            +
            </colgroup>
         | 
| 2228 | 
            +
            <tbody><tr>
         | 
| 2229 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2230 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 2231 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2232 | 
            +
            </tr></tbody>
         | 
| 2233 | 
            +
            </table></div>
         | 
| 2234 | 
            +
            </div>
         | 
| 2235 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 2236 | 
            +
            </div>
         | 
| 2237 | 
            +
            <hr>
         | 
| 2238 | 
            +
            <div class="refsect2">
         | 
| 2239 | 
            +
            <a name="gtk-icon-view-item-activated"></a><h3>gtk_icon_view_item_activated ()</h3>
         | 
| 2240 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2241 | 
            +
            gtk_icon_view_item_activated (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2242 | 
            +
                                          <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 2243 | 
            +
            <p>Activates the item determined by <em class="parameter"><code>path</code></em>
         | 
| 2244 | 
            +
            .</p>
         | 
| 2245 | 
            +
            <div class="refsect3">
         | 
| 2246 | 
            +
            <a name="id-1.4.9.9.12.45.5"></a><h4>Parameters</h4>
         | 
| 2247 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2248 | 
            +
            <colgroup>
         | 
| 2249 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2250 | 
            +
            <col class="parameters_description">
         | 
| 2251 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2252 | 
            +
            </colgroup>
         | 
| 2253 | 
            +
            <tbody>
         | 
| 2254 | 
            +
            <tr>
         | 
| 2255 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2256 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2257 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2258 | 
            +
            </tr>
         | 
| 2259 | 
            +
            <tr>
         | 
| 2260 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2261 | 
            +
            <td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be activated</p></td>
         | 
| 2262 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2263 | 
            +
            </tr>
         | 
| 2264 | 
            +
            </tbody>
         | 
| 2265 | 
            +
            </table></div>
         | 
| 2266 | 
            +
            </div>
         | 
| 2267 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 2268 | 
            +
            </div>
         | 
| 2269 | 
            +
            <hr>
         | 
| 2270 | 
            +
            <div class="refsect2">
         | 
| 2271 | 
            +
            <a name="gtk-icon-view-scroll-to-path"></a><h3>gtk_icon_view_scroll_to_path ()</h3>
         | 
| 2272 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2273 | 
            +
            gtk_icon_view_scroll_to_path (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2274 | 
            +
                                          <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 2275 | 
            +
                                          <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_align</code></em>,
         | 
| 2276 | 
            +
                                          <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> row_align</code></em>,
         | 
| 2277 | 
            +
                                          <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> col_align</code></em>);</pre>
         | 
| 2278 | 
            +
            <p>Moves the alignments of <em class="parameter"><code>icon_view</code></em>
         | 
| 2279 | 
            +
             to the position specified by <em class="parameter"><code>path</code></em>
         | 
| 2280 | 
            +
            .  
         | 
| 2281 | 
            +
            <em class="parameter"><code>row_align</code></em>
         | 
| 2282 | 
            +
             determines where the row is placed, and <em class="parameter"><code>col_align</code></em>
         | 
| 2283 | 
            +
             determines 
         | 
| 2284 | 
            +
            where <em class="parameter"><code>column</code></em>
         | 
| 2285 | 
            +
             is placed.  Both are expected to be between 0.0 and 1.0. 
         | 
| 2286 | 
            +
            0.0 means left/top alignment, 1.0 means right/bottom alignment, 0.5 means 
         | 
| 2287 | 
            +
            center.</p>
         | 
| 2288 | 
            +
            <p>If <em class="parameter"><code>use_align</code></em>
         | 
| 2289 | 
            +
             is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, then the alignment arguments are ignored, and the
         | 
| 2290 | 
            +
            tree does the minimum amount of work to scroll the item onto the screen.
         | 
| 2291 | 
            +
            This means that the item will be scrolled to the edge closest to its current
         | 
| 2292 | 
            +
            position.  If the item is currently visible on the screen, nothing is done.</p>
         | 
| 2293 | 
            +
            <p>This function only works if the model is set, and <em class="parameter"><code>path</code></em>
         | 
| 2294 | 
            +
             is a valid row on 
         | 
| 2295 | 
            +
            the model. If the model changes before the <em class="parameter"><code>icon_view</code></em>
         | 
| 2296 | 
            +
             is realized, the 
         | 
| 2297 | 
            +
            centered path will be modified to reflect this change.</p>
         | 
| 2298 | 
            +
            <div class="refsect3">
         | 
| 2299 | 
            +
            <a name="id-1.4.9.9.12.46.7"></a><h4>Parameters</h4>
         | 
| 2300 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2301 | 
            +
            <colgroup>
         | 
| 2302 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2303 | 
            +
            <col class="parameters_description">
         | 
| 2304 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2305 | 
            +
            </colgroup>
         | 
| 2306 | 
            +
            <tbody>
         | 
| 2307 | 
            +
            <tr>
         | 
| 2308 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2309 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 2310 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2311 | 
            +
            </tr>
         | 
| 2312 | 
            +
            <tr>
         | 
| 2313 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2314 | 
            +
            <td class="parameter_description"><p>The path of the item to move to.</p></td>
         | 
| 2315 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2316 | 
            +
            </tr>
         | 
| 2317 | 
            +
            <tr>
         | 
| 2318 | 
            +
            <td class="parameter_name"><p>use_align</p></td>
         | 
| 2319 | 
            +
            <td class="parameter_description"><p>whether to use alignment arguments, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p></td>
         | 
| 2320 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2321 | 
            +
            </tr>
         | 
| 2322 | 
            +
            <tr>
         | 
| 2323 | 
            +
            <td class="parameter_name"><p>row_align</p></td>
         | 
| 2324 | 
            +
            <td class="parameter_description"><p>The vertical alignment of the item specified by <em class="parameter"><code>path</code></em>
         | 
| 2325 | 
            +
            .</p></td>
         | 
| 2326 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2327 | 
            +
            </tr>
         | 
| 2328 | 
            +
            <tr>
         | 
| 2329 | 
            +
            <td class="parameter_name"><p>col_align</p></td>
         | 
| 2330 | 
            +
            <td class="parameter_description"><p>The horizontal alignment of the item specified by <em class="parameter"><code>path</code></em>
         | 
| 2331 | 
            +
            .</p></td>
         | 
| 2332 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2333 | 
            +
            </tr>
         | 
| 2334 | 
            +
            </tbody>
         | 
| 2335 | 
            +
            </table></div>
         | 
| 2336 | 
            +
            </div>
         | 
| 2337 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 2338 | 
            +
            </div>
         | 
| 2339 | 
            +
            <hr>
         | 
| 2340 | 
            +
            <div class="refsect2">
         | 
| 2341 | 
            +
            <a name="gtk-icon-view-get-visible-range"></a><h3>gtk_icon_view_get_visible_range ()</h3>
         | 
| 2342 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 2343 | 
            +
            gtk_icon_view_get_visible_range (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2344 | 
            +
                                             <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
         | 
| 2345 | 
            +
                                             <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);</pre>
         | 
| 2346 | 
            +
            <p>Sets <em class="parameter"><code>start_path</code></em>
         | 
| 2347 | 
            +
             and <em class="parameter"><code>end_path</code></em>
         | 
| 2348 | 
            +
             to be the first and last visible path. 
         | 
| 2349 | 
            +
            Note that there may be invisible paths in between.</p>
         | 
| 2350 | 
            +
            <p>Both paths should be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a> after use.</p>
         | 
| 2351 | 
            +
            <div class="refsect3">
         | 
| 2352 | 
            +
            <a name="id-1.4.9.9.12.47.6"></a><h4>Parameters</h4>
         | 
| 2353 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2354 | 
            +
            <colgroup>
         | 
| 2355 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2356 | 
            +
            <col class="parameters_description">
         | 
| 2357 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2358 | 
            +
            </colgroup>
         | 
| 2359 | 
            +
            <tbody>
         | 
| 2360 | 
            +
            <tr>
         | 
| 2361 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2362 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2363 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2364 | 
            +
            </tr>
         | 
| 2365 | 
            +
            <tr>
         | 
| 2366 | 
            +
            <td class="parameter_name"><p>start_path</p></td>
         | 
| 2367 | 
            +
            <td class="parameter_description"><p> Return location for start of region, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 2368 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 2369 | 
            +
            </tr>
         | 
| 2370 | 
            +
            <tr>
         | 
| 2371 | 
            +
            <td class="parameter_name"><p>end_path</p></td>
         | 
| 2372 | 
            +
            <td class="parameter_description"><p> Return location for end of region, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 2373 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 2374 | 
            +
            </tr>
         | 
| 2375 | 
            +
            </tbody>
         | 
| 2376 | 
            +
            </table></div>
         | 
| 2377 | 
            +
            </div>
         | 
| 2378 | 
            +
            <div class="refsect3">
         | 
| 2379 | 
            +
            <a name="id-1.4.9.9.12.47.7"></a><h4>Returns</h4>
         | 
| 2380 | 
            +
            <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if valid paths were placed in <em class="parameter"><code>start_path</code></em>
         | 
| 2381 | 
            +
            and <em class="parameter"><code>end_path</code></em>
         | 
| 2382 | 
            +
            </p>
         | 
| 2383 | 
            +
            <p></p>
         | 
| 2384 | 
            +
            </div>
         | 
| 2385 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 2386 | 
            +
            </div>
         | 
| 2387 | 
            +
            <hr>
         | 
| 2388 | 
            +
            <div class="refsect2">
         | 
| 2389 | 
            +
            <a name="gtk-icon-view-set-tooltip-item"></a><h3>gtk_icon_view_set_tooltip_item ()</h3>
         | 
| 2390 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2391 | 
            +
            gtk_icon_view_set_tooltip_item (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2392 | 
            +
                                            <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
         | 
| 2393 | 
            +
                                            <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 2394 | 
            +
            <p>Sets the tip area of <em class="parameter"><code>tooltip</code></em>
         | 
| 2395 | 
            +
             to be the area covered by the item at <em class="parameter"><code>path</code></em>
         | 
| 2396 | 
            +
            .
         | 
| 2397 | 
            +
            See also <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column" title="gtk_icon_view_set_tooltip_column ()"><code class="function">gtk_icon_view_set_tooltip_column()</code></a> for a simpler alternative.
         | 
| 2398 | 
            +
            See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="gtk_tooltip_set_tip_area ()"><code class="function">gtk_tooltip_set_tip_area()</code></a>.</p>
         | 
| 2399 | 
            +
            <div class="refsect3">
         | 
| 2400 | 
            +
            <a name="id-1.4.9.9.12.48.5"></a><h4>Parameters</h4>
         | 
| 2401 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2402 | 
            +
            <colgroup>
         | 
| 2403 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2404 | 
            +
            <col class="parameters_description">
         | 
| 2405 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2406 | 
            +
            </colgroup>
         | 
| 2407 | 
            +
            <tbody>
         | 
| 2408 | 
            +
            <tr>
         | 
| 2409 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2410 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2411 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2412 | 
            +
            </tr>
         | 
| 2413 | 
            +
            <tr>
         | 
| 2414 | 
            +
            <td class="parameter_name"><p>tooltip</p></td>
         | 
| 2415 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a></p></td>
         | 
| 2416 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2417 | 
            +
            </tr>
         | 
| 2418 | 
            +
            <tr>
         | 
| 2419 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2420 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a></p></td>
         | 
| 2421 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2422 | 
            +
            </tr>
         | 
| 2423 | 
            +
            </tbody>
         | 
| 2424 | 
            +
            </table></div>
         | 
| 2425 | 
            +
            </div>
         | 
| 2426 | 
            +
            <p class="since">Since 2.12</p>
         | 
| 2427 | 
            +
            </div>
         | 
| 2428 | 
            +
            <hr>
         | 
| 2429 | 
            +
            <div class="refsect2">
         | 
| 2430 | 
            +
            <a name="gtk-icon-view-set-tooltip-cell"></a><h3>gtk_icon_view_set_tooltip_cell ()</h3>
         | 
| 2431 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2432 | 
            +
            gtk_icon_view_set_tooltip_cell (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2433 | 
            +
                                            <em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
         | 
| 2434 | 
            +
                                            <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 2435 | 
            +
                                            <em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);</pre>
         | 
| 2436 | 
            +
            <p>Sets the tip area of <em class="parameter"><code>tooltip</code></em>
         | 
| 2437 | 
            +
             to the area which <em class="parameter"><code>cell</code></em>
         | 
| 2438 | 
            +
             occupies in
         | 
| 2439 | 
            +
            the item pointed to by <em class="parameter"><code>path</code></em>
         | 
| 2440 | 
            +
            . See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="gtk_tooltip_set_tip_area ()"><code class="function">gtk_tooltip_set_tip_area()</code></a>.</p>
         | 
| 2441 | 
            +
            <p>See also <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column" title="gtk_icon_view_set_tooltip_column ()"><code class="function">gtk_icon_view_set_tooltip_column()</code></a> for a simpler alternative.</p>
         | 
| 2442 | 
            +
            <div class="refsect3">
         | 
| 2443 | 
            +
            <a name="id-1.4.9.9.12.49.6"></a><h4>Parameters</h4>
         | 
| 2444 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2445 | 
            +
            <colgroup>
         | 
| 2446 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2447 | 
            +
            <col class="parameters_description">
         | 
| 2448 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2449 | 
            +
            </colgroup>
         | 
| 2450 | 
            +
            <tbody>
         | 
| 2451 | 
            +
            <tr>
         | 
| 2452 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2453 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2454 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2455 | 
            +
            </tr>
         | 
| 2456 | 
            +
            <tr>
         | 
| 2457 | 
            +
            <td class="parameter_name"><p>tooltip</p></td>
         | 
| 2458 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a></p></td>
         | 
| 2459 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2460 | 
            +
            </tr>
         | 
| 2461 | 
            +
            <tr>
         | 
| 2462 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2463 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a></p></td>
         | 
| 2464 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2465 | 
            +
            </tr>
         | 
| 2466 | 
            +
            <tr>
         | 
| 2467 | 
            +
            <td class="parameter_name"><p>cell</p></td>
         | 
| 2468 | 
            +
            <td class="parameter_description"><p> a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 2469 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 2470 | 
            +
            </tr>
         | 
| 2471 | 
            +
            </tbody>
         | 
| 2472 | 
            +
            </table></div>
         | 
| 2473 | 
            +
            </div>
         | 
| 2474 | 
            +
            <p class="since">Since 2.12</p>
         | 
| 2475 | 
            +
            </div>
         | 
| 2476 | 
            +
            <hr>
         | 
| 2477 | 
            +
            <div class="refsect2">
         | 
| 2478 | 
            +
            <a name="gtk-icon-view-get-tooltip-context"></a><h3>gtk_icon_view_get_tooltip_context ()</h3>
         | 
| 2479 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 2480 | 
            +
            gtk_icon_view_get_tooltip_context (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2481 | 
            +
                                               <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
         | 
| 2482 | 
            +
                                               <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
         | 
| 2483 | 
            +
                                               <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> keyboard_tip</code></em>,
         | 
| 2484 | 
            +
                                               <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
         | 
| 2485 | 
            +
                                               <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
         | 
| 2486 | 
            +
                                               <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 2487 | 
            +
            <p>This function is supposed to be used in a <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title="The “query-tooltip” signal"><span class="type">“query-tooltip”</span></a>
         | 
| 2488 | 
            +
            signal handler for <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.  The <em class="parameter"><code>x</code></em>
         | 
| 2489 | 
            +
            , <em class="parameter"><code>y</code></em>
         | 
| 2490 | 
            +
             and <em class="parameter"><code>keyboard_tip</code></em>
         | 
| 2491 | 
            +
             values
         | 
| 2492 | 
            +
            which are received in the signal handler, should be passed to this
         | 
| 2493 | 
            +
            function without modification.</p>
         | 
| 2494 | 
            +
            <p>The return value indicates whether there is an icon view item at the given
         | 
| 2495 | 
            +
            coordinates (<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>) or not (<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>) for mouse tooltips. For keyboard
         | 
| 2496 | 
            +
            tooltips the item returned will be the cursor item. When <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then any of
         | 
| 2497 | 
            +
            <em class="parameter"><code>model</code></em>
         | 
| 2498 | 
            +
            , <em class="parameter"><code>path</code></em>
         | 
| 2499 | 
            +
             and <em class="parameter"><code>iter</code></em>
         | 
| 2500 | 
            +
             which have been provided will be set to point to
         | 
| 2501 | 
            +
            that row and the corresponding model. <em class="parameter"><code>x</code></em>
         | 
| 2502 | 
            +
             and <em class="parameter"><code>y</code></em>
         | 
| 2503 | 
            +
             will always be converted
         | 
| 2504 | 
            +
            to be relative to <em class="parameter"><code>icon_view</code></em>
         | 
| 2505 | 
            +
            's bin_window if <em class="parameter"><code>keyboard_tooltip</code></em>
         | 
| 2506 | 
            +
             is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
         | 
| 2507 | 
            +
            <div class="refsect3">
         | 
| 2508 | 
            +
            <a name="id-1.4.9.9.12.50.6"></a><h4>Parameters</h4>
         | 
| 2509 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2510 | 
            +
            <colgroup>
         | 
| 2511 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2512 | 
            +
            <col class="parameters_description">
         | 
| 2513 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2514 | 
            +
            </colgroup>
         | 
| 2515 | 
            +
            <tbody>
         | 
| 2516 | 
            +
            <tr>
         | 
| 2517 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2518 | 
            +
            <td class="parameter_description"><p>an <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2519 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2520 | 
            +
            </tr>
         | 
| 2521 | 
            +
            <tr>
         | 
| 2522 | 
            +
            <td class="parameter_name"><p>x</p></td>
         | 
| 2523 | 
            +
            <td class="parameter_description"><p> the x coordinate (relative to widget coordinates). </p></td>
         | 
| 2524 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
         | 
| 2525 | 
            +
            </tr>
         | 
| 2526 | 
            +
            <tr>
         | 
| 2527 | 
            +
            <td class="parameter_name"><p>y</p></td>
         | 
| 2528 | 
            +
            <td class="parameter_description"><p> the y coordinate (relative to widget coordinates). </p></td>
         | 
| 2529 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
         | 
| 2530 | 
            +
            </tr>
         | 
| 2531 | 
            +
            <tr>
         | 
| 2532 | 
            +
            <td class="parameter_name"><p>keyboard_tip</p></td>
         | 
| 2533 | 
            +
            <td class="parameter_description"><p>whether this is a keyboard tooltip or not</p></td>
         | 
| 2534 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2535 | 
            +
            </tr>
         | 
| 2536 | 
            +
            <tr>
         | 
| 2537 | 
            +
            <td class="parameter_name"><p>model</p></td>
         | 
| 2538 | 
            +
            <td class="parameter_description"><p> a pointer to receive a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 2539 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 2540 | 
            +
            </tr>
         | 
| 2541 | 
            +
            <tr>
         | 
| 2542 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2543 | 
            +
            <td class="parameter_description"><p> a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 2544 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 2545 | 
            +
            </tr>
         | 
| 2546 | 
            +
            <tr>
         | 
| 2547 | 
            +
            <td class="parameter_name"><p>iter</p></td>
         | 
| 2548 | 
            +
            <td class="parameter_description"><p> a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 2549 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 2550 | 
            +
            </tr>
         | 
| 2551 | 
            +
            </tbody>
         | 
| 2552 | 
            +
            </table></div>
         | 
| 2553 | 
            +
            </div>
         | 
| 2554 | 
            +
            <div class="refsect3">
         | 
| 2555 | 
            +
            <a name="id-1.4.9.9.12.50.7"></a><h4>Returns</h4>
         | 
| 2556 | 
            +
            <p> whether or not the given tooltip context points to a item</p>
         | 
| 2557 | 
            +
            <p></p>
         | 
| 2558 | 
            +
            </div>
         | 
| 2559 | 
            +
            <p class="since">Since 2.12</p>
         | 
| 2560 | 
            +
            </div>
         | 
| 2561 | 
            +
            <hr>
         | 
| 2562 | 
            +
            <div class="refsect2">
         | 
| 2563 | 
            +
            <a name="gtk-icon-view-set-tooltip-column"></a><h3>gtk_icon_view_set_tooltip_column ()</h3>
         | 
| 2564 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2565 | 
            +
            gtk_icon_view_set_tooltip_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2566 | 
            +
                                              <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
         | 
| 2567 | 
            +
            <p>If you only plan to have simple (text-only) tooltips on full items, you
         | 
| 2568 | 
            +
            can use this function to have <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> handle these automatically
         | 
| 2569 | 
            +
            for you. <em class="parameter"><code>column</code></em>
         | 
| 2570 | 
            +
             should be set to the column in <em class="parameter"><code>icon_view</code></em>
         | 
| 2571 | 
            +
            's model
         | 
| 2572 | 
            +
            containing the tooltip texts, or -1 to disable this feature.</p>
         | 
| 2573 | 
            +
            <p>When enabled, <span class="type">“has-tooltip”</span> will be set to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and
         | 
| 2574 | 
            +
            <em class="parameter"><code>icon_view</code></em>
         | 
| 2575 | 
            +
             will connect a <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title="The “query-tooltip” signal"><span class="type">“query-tooltip”</span></a> signal handler.</p>
         | 
| 2576 | 
            +
            <div class="refsect3">
         | 
| 2577 | 
            +
            <a name="id-1.4.9.9.12.51.6"></a><h4>Parameters</h4>
         | 
| 2578 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2579 | 
            +
            <colgroup>
         | 
| 2580 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2581 | 
            +
            <col class="parameters_description">
         | 
| 2582 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2583 | 
            +
            </colgroup>
         | 
| 2584 | 
            +
            <tbody>
         | 
| 2585 | 
            +
            <tr>
         | 
| 2586 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2587 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2588 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2589 | 
            +
            </tr>
         | 
| 2590 | 
            +
            <tr>
         | 
| 2591 | 
            +
            <td class="parameter_name"><p>column</p></td>
         | 
| 2592 | 
            +
            <td class="parameter_description"><p>an integer, which is a valid column number for <em class="parameter"><code>icon_view</code></em>
         | 
| 2593 | 
            +
            's model</p></td>
         | 
| 2594 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2595 | 
            +
            </tr>
         | 
| 2596 | 
            +
            </tbody>
         | 
| 2597 | 
            +
            </table></div>
         | 
| 2598 | 
            +
            </div>
         | 
| 2599 | 
            +
            <p class="since">Since 2.12</p>
         | 
| 2600 | 
            +
            </div>
         | 
| 2601 | 
            +
            <hr>
         | 
| 2602 | 
            +
            <div class="refsect2">
         | 
| 2603 | 
            +
            <a name="gtk-icon-view-get-tooltip-column"></a><h3>gtk_icon_view_get_tooltip_column ()</h3>
         | 
| 2604 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 2605 | 
            +
            gtk_icon_view_get_tooltip_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 2606 | 
            +
            <p>Returns the column of <em class="parameter"><code>icon_view</code></em>
         | 
| 2607 | 
            +
            's model which is being used for
         | 
| 2608 | 
            +
            displaying tooltips on <em class="parameter"><code>icon_view</code></em>
         | 
| 2609 | 
            +
            's rows.</p>
         | 
| 2610 | 
            +
            <div class="refsect3">
         | 
| 2611 | 
            +
            <a name="id-1.4.9.9.12.52.5"></a><h4>Parameters</h4>
         | 
| 2612 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2613 | 
            +
            <colgroup>
         | 
| 2614 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2615 | 
            +
            <col class="parameters_description">
         | 
| 2616 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2617 | 
            +
            </colgroup>
         | 
| 2618 | 
            +
            <tbody><tr>
         | 
| 2619 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2620 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2621 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2622 | 
            +
            </tr></tbody>
         | 
| 2623 | 
            +
            </table></div>
         | 
| 2624 | 
            +
            </div>
         | 
| 2625 | 
            +
            <div class="refsect3">
         | 
| 2626 | 
            +
            <a name="id-1.4.9.9.12.52.6"></a><h4>Returns</h4>
         | 
| 2627 | 
            +
            <p> the index of the tooltip column that is currently being
         | 
| 2628 | 
            +
            used, or -1 if this is disabled.</p>
         | 
| 2629 | 
            +
            <p></p>
         | 
| 2630 | 
            +
            </div>
         | 
| 2631 | 
            +
            <p class="since">Since 2.12</p>
         | 
| 2632 | 
            +
            </div>
         | 
| 2633 | 
            +
            <hr>
         | 
| 2634 | 
            +
            <div class="refsect2">
         | 
| 2635 | 
            +
            <a name="gtk-icon-view-get-item-row"></a><h3>gtk_icon_view_get_item_row ()</h3>
         | 
| 2636 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 2637 | 
            +
            gtk_icon_view_get_item_row (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2638 | 
            +
                                        <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 2639 | 
            +
            <p>Gets the row in which the item <em class="parameter"><code>path</code></em>
         | 
| 2640 | 
            +
             is currently
         | 
| 2641 | 
            +
            displayed. Row numbers start at 0.</p>
         | 
| 2642 | 
            +
            <div class="refsect3">
         | 
| 2643 | 
            +
            <a name="id-1.4.9.9.12.53.5"></a><h4>Parameters</h4>
         | 
| 2644 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2645 | 
            +
            <colgroup>
         | 
| 2646 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2647 | 
            +
            <col class="parameters_description">
         | 
| 2648 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2649 | 
            +
            </colgroup>
         | 
| 2650 | 
            +
            <tbody>
         | 
| 2651 | 
            +
            <tr>
         | 
| 2652 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2653 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2654 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2655 | 
            +
            </tr>
         | 
| 2656 | 
            +
            <tr>
         | 
| 2657 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2658 | 
            +
            <td class="parameter_description"><p>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</p></td>
         | 
| 2659 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2660 | 
            +
            </tr>
         | 
| 2661 | 
            +
            </tbody>
         | 
| 2662 | 
            +
            </table></div>
         | 
| 2663 | 
            +
            </div>
         | 
| 2664 | 
            +
            <div class="refsect3">
         | 
| 2665 | 
            +
            <a name="id-1.4.9.9.12.53.6"></a><h4>Returns</h4>
         | 
| 2666 | 
            +
            <p> The row in which the item is displayed</p>
         | 
| 2667 | 
            +
            <p></p>
         | 
| 2668 | 
            +
            </div>
         | 
| 2669 | 
            +
            <p class="since">Since 2.22</p>
         | 
| 2670 | 
            +
            </div>
         | 
| 2671 | 
            +
            <hr>
         | 
| 2672 | 
            +
            <div class="refsect2">
         | 
| 2673 | 
            +
            <a name="gtk-icon-view-get-item-column"></a><h3>gtk_icon_view_get_item_column ()</h3>
         | 
| 2674 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
         | 
| 2675 | 
            +
            gtk_icon_view_get_item_column (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2676 | 
            +
                                           <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 2677 | 
            +
            <p>Gets the column in which the item <em class="parameter"><code>path</code></em>
         | 
| 2678 | 
            +
             is currently
         | 
| 2679 | 
            +
            displayed. Column numbers start at 0.</p>
         | 
| 2680 | 
            +
            <div class="refsect3">
         | 
| 2681 | 
            +
            <a name="id-1.4.9.9.12.54.5"></a><h4>Parameters</h4>
         | 
| 2682 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2683 | 
            +
            <colgroup>
         | 
| 2684 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2685 | 
            +
            <col class="parameters_description">
         | 
| 2686 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2687 | 
            +
            </colgroup>
         | 
| 2688 | 
            +
            <tbody>
         | 
| 2689 | 
            +
            <tr>
         | 
| 2690 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2691 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2692 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2693 | 
            +
            </tr>
         | 
| 2694 | 
            +
            <tr>
         | 
| 2695 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2696 | 
            +
            <td class="parameter_description"><p>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</p></td>
         | 
| 2697 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2698 | 
            +
            </tr>
         | 
| 2699 | 
            +
            </tbody>
         | 
| 2700 | 
            +
            </table></div>
         | 
| 2701 | 
            +
            </div>
         | 
| 2702 | 
            +
            <div class="refsect3">
         | 
| 2703 | 
            +
            <a name="id-1.4.9.9.12.54.6"></a><h4>Returns</h4>
         | 
| 2704 | 
            +
            <p> The column in which the item is displayed</p>
         | 
| 2705 | 
            +
            <p></p>
         | 
| 2706 | 
            +
            </div>
         | 
| 2707 | 
            +
            <p class="since">Since 2.22</p>
         | 
| 2708 | 
            +
            </div>
         | 
| 2709 | 
            +
            <hr>
         | 
| 2710 | 
            +
            <div class="refsect2">
         | 
| 2711 | 
            +
            <a name="gtk-icon-view-enable-model-drag-source"></a><h3>gtk_icon_view_enable_model_drag_source ()</h3>
         | 
| 2712 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2713 | 
            +
            gtk_icon_view_enable_model_drag_source
         | 
| 2714 | 
            +
                                           (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2715 | 
            +
                                            <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
         | 
| 2716 | 
            +
                                            <em class="parameter"><code>const <a class="link" href="gtk2-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
         | 
| 2717 | 
            +
                                            <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
         | 
| 2718 | 
            +
                                            <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
         | 
| 2719 | 
            +
            <p>Turns <em class="parameter"><code>icon_view</code></em>
         | 
| 2720 | 
            +
             into a drag source for automatic DND. Calling this
         | 
| 2721 | 
            +
            method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title="The “reorderable” property"><span class="type">“reorderable”</span></a> to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
         | 
| 2722 | 
            +
            <div class="refsect3">
         | 
| 2723 | 
            +
            <a name="id-1.4.9.9.12.55.5"></a><h4>Parameters</h4>
         | 
| 2724 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2725 | 
            +
            <colgroup>
         | 
| 2726 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2727 | 
            +
            <col class="parameters_description">
         | 
| 2728 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2729 | 
            +
            </colgroup>
         | 
| 2730 | 
            +
            <tbody>
         | 
| 2731 | 
            +
            <tr>
         | 
| 2732 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2733 | 
            +
            <td class="parameter_description"><p>a <span class="type">GtkIconTreeView</span></p></td>
         | 
| 2734 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2735 | 
            +
            </tr>
         | 
| 2736 | 
            +
            <tr>
         | 
| 2737 | 
            +
            <td class="parameter_name"><p>start_button_mask</p></td>
         | 
| 2738 | 
            +
            <td class="parameter_description"><p>Mask of allowed buttons to start drag</p></td>
         | 
| 2739 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2740 | 
            +
            </tr>
         | 
| 2741 | 
            +
            <tr>
         | 
| 2742 | 
            +
            <td class="parameter_name"><p>targets</p></td>
         | 
| 2743 | 
            +
            <td class="parameter_description"><p>the table of targets that the drag will support</p></td>
         | 
| 2744 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2745 | 
            +
            </tr>
         | 
| 2746 | 
            +
            <tr>
         | 
| 2747 | 
            +
            <td class="parameter_name"><p>n_targets</p></td>
         | 
| 2748 | 
            +
            <td class="parameter_description"><p>the number of items in <em class="parameter"><code>targets</code></em>
         | 
| 2749 | 
            +
            </p></td>
         | 
| 2750 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2751 | 
            +
            </tr>
         | 
| 2752 | 
            +
            <tr>
         | 
| 2753 | 
            +
            <td class="parameter_name"><p>actions</p></td>
         | 
| 2754 | 
            +
            <td class="parameter_description"><p>the bitmask of possible actions for a drag from this
         | 
| 2755 | 
            +
            widget</p></td>
         | 
| 2756 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2757 | 
            +
            </tr>
         | 
| 2758 | 
            +
            </tbody>
         | 
| 2759 | 
            +
            </table></div>
         | 
| 2760 | 
            +
            </div>
         | 
| 2761 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 2762 | 
            +
            </div>
         | 
| 2763 | 
            +
            <hr>
         | 
| 2764 | 
            +
            <div class="refsect2">
         | 
| 2765 | 
            +
            <a name="gtk-icon-view-enable-model-drag-dest"></a><h3>gtk_icon_view_enable_model_drag_dest ()</h3>
         | 
| 2766 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2767 | 
            +
            gtk_icon_view_enable_model_drag_dest (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2768 | 
            +
                                                  <em class="parameter"><code>const <a class="link" href="gtk2-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
         | 
| 2769 | 
            +
                                                  <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
         | 
| 2770 | 
            +
                                                  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
         | 
| 2771 | 
            +
            <p>Turns <em class="parameter"><code>icon_view</code></em>
         | 
| 2772 | 
            +
             into a drop destination for automatic DND. Calling this
         | 
| 2773 | 
            +
            method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title="The “reorderable” property"><span class="type">“reorderable”</span></a> to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
         | 
| 2774 | 
            +
            <div class="refsect3">
         | 
| 2775 | 
            +
            <a name="id-1.4.9.9.12.56.5"></a><h4>Parameters</h4>
         | 
| 2776 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2777 | 
            +
            <colgroup>
         | 
| 2778 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2779 | 
            +
            <col class="parameters_description">
         | 
| 2780 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2781 | 
            +
            </colgroup>
         | 
| 2782 | 
            +
            <tbody>
         | 
| 2783 | 
            +
            <tr>
         | 
| 2784 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2785 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2786 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2787 | 
            +
            </tr>
         | 
| 2788 | 
            +
            <tr>
         | 
| 2789 | 
            +
            <td class="parameter_name"><p>targets</p></td>
         | 
| 2790 | 
            +
            <td class="parameter_description"><p>the table of targets that the drag will support</p></td>
         | 
| 2791 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2792 | 
            +
            </tr>
         | 
| 2793 | 
            +
            <tr>
         | 
| 2794 | 
            +
            <td class="parameter_name"><p>n_targets</p></td>
         | 
| 2795 | 
            +
            <td class="parameter_description"><p>the number of items in <em class="parameter"><code>targets</code></em>
         | 
| 2796 | 
            +
            </p></td>
         | 
| 2797 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2798 | 
            +
            </tr>
         | 
| 2799 | 
            +
            <tr>
         | 
| 2800 | 
            +
            <td class="parameter_name"><p>actions</p></td>
         | 
| 2801 | 
            +
            <td class="parameter_description"><p>the bitmask of possible actions for a drag to this
         | 
| 2802 | 
            +
            widget</p></td>
         | 
| 2803 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2804 | 
            +
            </tr>
         | 
| 2805 | 
            +
            </tbody>
         | 
| 2806 | 
            +
            </table></div>
         | 
| 2807 | 
            +
            </div>
         | 
| 2808 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 2809 | 
            +
            </div>
         | 
| 2810 | 
            +
            <hr>
         | 
| 2811 | 
            +
            <div class="refsect2">
         | 
| 2812 | 
            +
            <a name="gtk-icon-view-unset-model-drag-source"></a><h3>gtk_icon_view_unset_model_drag_source ()</h3>
         | 
| 2813 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2814 | 
            +
            gtk_icon_view_unset_model_drag_source (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 2815 | 
            +
            <p>Undoes the effect of <a class="link" href="GtkIconView.html#gtk-icon-view-enable-model-drag-source" title="gtk_icon_view_enable_model_drag_source ()"><code class="function">gtk_icon_view_enable_model_drag_source()</code></a>. Calling this
         | 
| 2816 | 
            +
            method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title="The “reorderable” property"><span class="type">“reorderable”</span></a> to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
         | 
| 2817 | 
            +
            <div class="refsect3">
         | 
| 2818 | 
            +
            <a name="id-1.4.9.9.12.57.5"></a><h4>Parameters</h4>
         | 
| 2819 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2820 | 
            +
            <colgroup>
         | 
| 2821 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2822 | 
            +
            <col class="parameters_description">
         | 
| 2823 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2824 | 
            +
            </colgroup>
         | 
| 2825 | 
            +
            <tbody><tr>
         | 
| 2826 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2827 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2828 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2829 | 
            +
            </tr></tbody>
         | 
| 2830 | 
            +
            </table></div>
         | 
| 2831 | 
            +
            </div>
         | 
| 2832 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 2833 | 
            +
            </div>
         | 
| 2834 | 
            +
            <hr>
         | 
| 2835 | 
            +
            <div class="refsect2">
         | 
| 2836 | 
            +
            <a name="gtk-icon-view-unset-model-drag-dest"></a><h3>gtk_icon_view_unset_model_drag_dest ()</h3>
         | 
| 2837 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2838 | 
            +
            gtk_icon_view_unset_model_drag_dest (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 2839 | 
            +
            <p>Undoes the effect of <a class="link" href="GtkIconView.html#gtk-icon-view-enable-model-drag-dest" title="gtk_icon_view_enable_model_drag_dest ()"><code class="function">gtk_icon_view_enable_model_drag_dest()</code></a>. Calling this
         | 
| 2840 | 
            +
            method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title="The “reorderable” property"><span class="type">“reorderable”</span></a> to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
         | 
| 2841 | 
            +
            <div class="refsect3">
         | 
| 2842 | 
            +
            <a name="id-1.4.9.9.12.58.5"></a><h4>Parameters</h4>
         | 
| 2843 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2844 | 
            +
            <colgroup>
         | 
| 2845 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2846 | 
            +
            <col class="parameters_description">
         | 
| 2847 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2848 | 
            +
            </colgroup>
         | 
| 2849 | 
            +
            <tbody><tr>
         | 
| 2850 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2851 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2852 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2853 | 
            +
            </tr></tbody>
         | 
| 2854 | 
            +
            </table></div>
         | 
| 2855 | 
            +
            </div>
         | 
| 2856 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 2857 | 
            +
            </div>
         | 
| 2858 | 
            +
            <hr>
         | 
| 2859 | 
            +
            <div class="refsect2">
         | 
| 2860 | 
            +
            <a name="gtk-icon-view-set-reorderable"></a><h3>gtk_icon_view_set_reorderable ()</h3>
         | 
| 2861 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2862 | 
            +
            gtk_icon_view_set_reorderable (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2863 | 
            +
                                           <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> reorderable</code></em>);</pre>
         | 
| 2864 | 
            +
            <p>This function is a convenience function to allow you to reorder models that
         | 
| 2865 | 
            +
            support the <a class="link" href="gtk2-GtkTreeView-drag-and-drop.html#GtkTreeDragSourceIface" title="struct GtkTreeDragSourceIface"><span class="type">GtkTreeDragSourceIface</span></a> and the <a class="link" href="gtk2-GtkTreeView-drag-and-drop.html#GtkTreeDragDestIface" title="struct GtkTreeDragDestIface"><span class="type">GtkTreeDragDestIface</span></a>.  Both
         | 
| 2866 | 
            +
            <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> and <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a> support these.  If <em class="parameter"><code>reorderable</code></em>
         | 
| 2867 | 
            +
             is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then
         | 
| 2868 | 
            +
            the user can reorder the model by dragging and dropping rows.  The
         | 
| 2869 | 
            +
            developer can listen to these changes by connecting to the model's
         | 
| 2870 | 
            +
            row_inserted and row_deleted signals. The reordering is implemented by setting up
         | 
| 2871 | 
            +
            the icon view as a drag source and destination. Therefore, drag and
         | 
| 2872 | 
            +
            drop can not be used in a reorderable view for any other purpose.</p>
         | 
| 2873 | 
            +
            <p>This function does not give you any degree of control over the order -- any
         | 
| 2874 | 
            +
            reordering is allowed.  If more control is needed, you should probably
         | 
| 2875 | 
            +
            handle drag and drop manually.</p>
         | 
| 2876 | 
            +
            <div class="refsect3">
         | 
| 2877 | 
            +
            <a name="id-1.4.9.9.12.59.6"></a><h4>Parameters</h4>
         | 
| 2878 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2879 | 
            +
            <colgroup>
         | 
| 2880 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2881 | 
            +
            <col class="parameters_description">
         | 
| 2882 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2883 | 
            +
            </colgroup>
         | 
| 2884 | 
            +
            <tbody>
         | 
| 2885 | 
            +
            <tr>
         | 
| 2886 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2887 | 
            +
            <td class="parameter_description"><p>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p></td>
         | 
| 2888 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2889 | 
            +
            </tr>
         | 
| 2890 | 
            +
            <tr>
         | 
| 2891 | 
            +
            <td class="parameter_name"><p>reorderable</p></td>
         | 
| 2892 | 
            +
            <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the list of items can be reordered.</p></td>
         | 
| 2893 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2894 | 
            +
            </tr>
         | 
| 2895 | 
            +
            </tbody>
         | 
| 2896 | 
            +
            </table></div>
         | 
| 2897 | 
            +
            </div>
         | 
| 2898 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 2899 | 
            +
            </div>
         | 
| 2900 | 
            +
            <hr>
         | 
| 2901 | 
            +
            <div class="refsect2">
         | 
| 2902 | 
            +
            <a name="gtk-icon-view-get-reorderable"></a><h3>gtk_icon_view_get_reorderable ()</h3>
         | 
| 2903 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 2904 | 
            +
            gtk_icon_view_get_reorderable (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
         | 
| 2905 | 
            +
            <p>Retrieves whether the user can reorder the list via drag-and-drop. 
         | 
| 2906 | 
            +
            See <a class="link" href="GtkIconView.html#gtk-icon-view-set-reorderable" title="gtk_icon_view_set_reorderable ()"><code class="function">gtk_icon_view_set_reorderable()</code></a>.</p>
         | 
| 2907 | 
            +
            <div class="refsect3">
         | 
| 2908 | 
            +
            <a name="id-1.4.9.9.12.60.5"></a><h4>Parameters</h4>
         | 
| 2909 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2910 | 
            +
            <colgroup>
         | 
| 2911 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2912 | 
            +
            <col class="parameters_description">
         | 
| 2913 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2914 | 
            +
            </colgroup>
         | 
| 2915 | 
            +
            <tbody><tr>
         | 
| 2916 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2917 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2918 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2919 | 
            +
            </tr></tbody>
         | 
| 2920 | 
            +
            </table></div>
         | 
| 2921 | 
            +
            </div>
         | 
| 2922 | 
            +
            <div class="refsect3">
         | 
| 2923 | 
            +
            <a name="id-1.4.9.9.12.60.6"></a><h4>Returns</h4>
         | 
| 2924 | 
            +
            <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the list can be reordered.</p>
         | 
| 2925 | 
            +
            <p></p>
         | 
| 2926 | 
            +
            </div>
         | 
| 2927 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 2928 | 
            +
            </div>
         | 
| 2929 | 
            +
            <hr>
         | 
| 2930 | 
            +
            <div class="refsect2">
         | 
| 2931 | 
            +
            <a name="gtk-icon-view-set-drag-dest-item"></a><h3>gtk_icon_view_set_drag_dest_item ()</h3>
         | 
| 2932 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2933 | 
            +
            gtk_icon_view_set_drag_dest_item (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2934 | 
            +
                                              <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 2935 | 
            +
                                              <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> pos</code></em>);</pre>
         | 
| 2936 | 
            +
            <p>Sets the item that is highlighted for feedback.</p>
         | 
| 2937 | 
            +
            <div class="refsect3">
         | 
| 2938 | 
            +
            <a name="id-1.4.9.9.12.61.5"></a><h4>Parameters</h4>
         | 
| 2939 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2940 | 
            +
            <colgroup>
         | 
| 2941 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2942 | 
            +
            <col class="parameters_description">
         | 
| 2943 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2944 | 
            +
            </colgroup>
         | 
| 2945 | 
            +
            <tbody>
         | 
| 2946 | 
            +
            <tr>
         | 
| 2947 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2948 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2949 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2950 | 
            +
            </tr>
         | 
| 2951 | 
            +
            <tr>
         | 
| 2952 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2953 | 
            +
            <td class="parameter_description"><p> The path of the item to highlight, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 2954 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 2955 | 
            +
            </tr>
         | 
| 2956 | 
            +
            <tr>
         | 
| 2957 | 
            +
            <td class="parameter_name"><p>pos</p></td>
         | 
| 2958 | 
            +
            <td class="parameter_description"><p>Specifies where to drop, relative to the item</p></td>
         | 
| 2959 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2960 | 
            +
            </tr>
         | 
| 2961 | 
            +
            </tbody>
         | 
| 2962 | 
            +
            </table></div>
         | 
| 2963 | 
            +
            </div>
         | 
| 2964 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 2965 | 
            +
            </div>
         | 
| 2966 | 
            +
            <hr>
         | 
| 2967 | 
            +
            <div class="refsect2">
         | 
| 2968 | 
            +
            <a name="gtk-icon-view-get-drag-dest-item"></a><h3>gtk_icon_view_get_drag_dest_item ()</h3>
         | 
| 2969 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 2970 | 
            +
            gtk_icon_view_get_drag_dest_item (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 2971 | 
            +
                                              <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
         | 
| 2972 | 
            +
                                              <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
         | 
| 2973 | 
            +
            <p>Gets information about the item that is highlighted for feedback.</p>
         | 
| 2974 | 
            +
            <div class="refsect3">
         | 
| 2975 | 
            +
            <a name="id-1.4.9.9.12.62.5"></a><h4>Parameters</h4>
         | 
| 2976 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 2977 | 
            +
            <colgroup>
         | 
| 2978 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 2979 | 
            +
            <col class="parameters_description">
         | 
| 2980 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 2981 | 
            +
            </colgroup>
         | 
| 2982 | 
            +
            <tbody>
         | 
| 2983 | 
            +
            <tr>
         | 
| 2984 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 2985 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 2986 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 2987 | 
            +
            </tr>
         | 
| 2988 | 
            +
            <tr>
         | 
| 2989 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 2990 | 
            +
            <td class="parameter_description"><p> Return location for the path of the highlighted item, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 2991 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 2992 | 
            +
            </tr>
         | 
| 2993 | 
            +
            <tr>
         | 
| 2994 | 
            +
            <td class="parameter_name"><p>pos</p></td>
         | 
| 2995 | 
            +
            <td class="parameter_description"><p> Return location for the drop position, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 2996 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 2997 | 
            +
            </tr>
         | 
| 2998 | 
            +
            </tbody>
         | 
| 2999 | 
            +
            </table></div>
         | 
| 3000 | 
            +
            </div>
         | 
| 3001 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 3002 | 
            +
            </div>
         | 
| 3003 | 
            +
            <hr>
         | 
| 3004 | 
            +
            <div class="refsect2">
         | 
| 3005 | 
            +
            <a name="gtk-icon-view-get-dest-item-at-pos"></a><h3>gtk_icon_view_get_dest_item_at_pos ()</h3>
         | 
| 3006 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 3007 | 
            +
            gtk_icon_view_get_dest_item_at_pos (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 3008 | 
            +
                                                <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_x</code></em>,
         | 
| 3009 | 
            +
                                                <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_y</code></em>,
         | 
| 3010 | 
            +
                                                <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
         | 
| 3011 | 
            +
                                                <em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
         | 
| 3012 | 
            +
            <p>Determines the destination item for a given position.</p>
         | 
| 3013 | 
            +
            <div class="refsect3">
         | 
| 3014 | 
            +
            <a name="id-1.4.9.9.12.63.5"></a><h4>Parameters</h4>
         | 
| 3015 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3016 | 
            +
            <colgroup>
         | 
| 3017 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3018 | 
            +
            <col class="parameters_description">
         | 
| 3019 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3020 | 
            +
            </colgroup>
         | 
| 3021 | 
            +
            <tbody>
         | 
| 3022 | 
            +
            <tr>
         | 
| 3023 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 3024 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 3025 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3026 | 
            +
            </tr>
         | 
| 3027 | 
            +
            <tr>
         | 
| 3028 | 
            +
            <td class="parameter_name"><p>drag_x</p></td>
         | 
| 3029 | 
            +
            <td class="parameter_description"><p>the position to determine the destination item for</p></td>
         | 
| 3030 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3031 | 
            +
            </tr>
         | 
| 3032 | 
            +
            <tr>
         | 
| 3033 | 
            +
            <td class="parameter_name"><p>drag_y</p></td>
         | 
| 3034 | 
            +
            <td class="parameter_description"><p>the position to determine the destination item for</p></td>
         | 
| 3035 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3036 | 
            +
            </tr>
         | 
| 3037 | 
            +
            <tr>
         | 
| 3038 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 3039 | 
            +
            <td class="parameter_description"><p> Return location for the path of the item, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 3040 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 3041 | 
            +
            </tr>
         | 
| 3042 | 
            +
            <tr>
         | 
| 3043 | 
            +
            <td class="parameter_name"><p>pos</p></td>
         | 
| 3044 | 
            +
            <td class="parameter_description"><p> Return location for the drop position, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
         | 
| 3045 | 
            +
            <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
         | 
| 3046 | 
            +
            </tr>
         | 
| 3047 | 
            +
            </tbody>
         | 
| 3048 | 
            +
            </table></div>
         | 
| 3049 | 
            +
            </div>
         | 
| 3050 | 
            +
            <div class="refsect3">
         | 
| 3051 | 
            +
            <a name="id-1.4.9.9.12.63.6"></a><h4>Returns</h4>
         | 
| 3052 | 
            +
            <p> whether there is an item at the given position.</p>
         | 
| 3053 | 
            +
            <p></p>
         | 
| 3054 | 
            +
            </div>
         | 
| 3055 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 3056 | 
            +
            </div>
         | 
| 3057 | 
            +
            <hr>
         | 
| 3058 | 
            +
            <div class="refsect2">
         | 
| 3059 | 
            +
            <a name="gtk-icon-view-create-drag-icon"></a><h3>gtk_icon_view_create_drag_icon ()</h3>
         | 
| 3060 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a> *
         | 
| 3061 | 
            +
            gtk_icon_view_create_drag_icon (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
         | 
| 3062 | 
            +
                                            <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 3063 | 
            +
            <p>Creates a <a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> representation of the item at <em class="parameter"><code>path</code></em>
         | 
| 3064 | 
            +
            .
         | 
| 3065 | 
            +
            This image is used for a drag icon.</p>
         | 
| 3066 | 
            +
            <div class="refsect3">
         | 
| 3067 | 
            +
            <a name="id-1.4.9.9.12.64.5"></a><h4>Parameters</h4>
         | 
| 3068 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3069 | 
            +
            <colgroup>
         | 
| 3070 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3071 | 
            +
            <col class="parameters_description">
         | 
| 3072 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3073 | 
            +
            </colgroup>
         | 
| 3074 | 
            +
            <tbody>
         | 
| 3075 | 
            +
            <tr>
         | 
| 3076 | 
            +
            <td class="parameter_name"><p>icon_view</p></td>
         | 
| 3077 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a></p></td>
         | 
| 3078 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3079 | 
            +
            </tr>
         | 
| 3080 | 
            +
            <tr>
         | 
| 3081 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 3082 | 
            +
            <td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> in <em class="parameter"><code>icon_view</code></em>
         | 
| 3083 | 
            +
            </p></td>
         | 
| 3084 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3085 | 
            +
            </tr>
         | 
| 3086 | 
            +
            </tbody>
         | 
| 3087 | 
            +
            </table></div>
         | 
| 3088 | 
            +
            </div>
         | 
| 3089 | 
            +
            <div class="refsect3">
         | 
| 3090 | 
            +
            <a name="id-1.4.9.9.12.64.6"></a><h4>Returns</h4>
         | 
| 3091 | 
            +
            <p> a newly-allocated pixmap of the drag icon. </p>
         | 
| 3092 | 
            +
            <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
         | 
| 3093 | 
            +
            </div>
         | 
| 3094 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 3095 | 
            +
            </div>
         | 
| 3096 | 
            +
            </div>
         | 
| 3097 | 
            +
            <div class="refsect1">
         | 
| 3098 | 
            +
            <a name="GtkIconView.other_details"></a><h2>Types and Values</h2>
         | 
| 3099 | 
            +
            <div class="refsect2">
         | 
| 3100 | 
            +
            <a name="GtkIconView-struct"></a><h3>struct GtkIconView</h3>
         | 
| 3101 | 
            +
            <pre class="programlisting">struct GtkIconView;</pre>
         | 
| 3102 | 
            +
            <p>
         | 
| 3103 | 
            +
            The <span class="structname">GtkIconView</span> struct contains only
         | 
| 3104 | 
            +
            private fields and should not be directly accessed.
         | 
| 3105 | 
            +
            </p>
         | 
| 3106 | 
            +
            </div>
         | 
| 3107 | 
            +
            <hr>
         | 
| 3108 | 
            +
            <div class="refsect2">
         | 
| 3109 | 
            +
            <a name="GtkIconViewDropPosition"></a><h3>enum GtkIconViewDropPosition</h3>
         | 
| 3110 | 
            +
            <p>
         | 
| 3111 | 
            +
            An enum for determining where a dropped item goes.
         | 
| 3112 | 
            +
            </p>
         | 
| 3113 | 
            +
            <div class="refsect3">
         | 
| 3114 | 
            +
            <a name="id-1.4.9.9.13.3.4"></a><h4>Members</h4>
         | 
| 3115 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3116 | 
            +
            <colgroup>
         | 
| 3117 | 
            +
            <col width="300px" class="enum_members_name">
         | 
| 3118 | 
            +
            <col class="enum_members_description">
         | 
| 3119 | 
            +
            <col width="200px" class="enum_members_annotations">
         | 
| 3120 | 
            +
            </colgroup>
         | 
| 3121 | 
            +
            <tbody>
         | 
| 3122 | 
            +
            <tr>
         | 
| 3123 | 
            +
            <td class="enum_member_name"><p><a name="GTK-ICON-VIEW-NO-DROP:CAPS"></a>GTK_ICON_VIEW_NO_DROP</p></td>
         | 
| 3124 | 
            +
            <td class="enum_member_description">
         | 
| 3125 | 
            +
            <p>no drop possible</p>
         | 
| 3126 | 
            +
            </td>
         | 
| 3127 | 
            +
            <td class="enum_member_annotations"> </td>
         | 
| 3128 | 
            +
            </tr>
         | 
| 3129 | 
            +
            <tr>
         | 
| 3130 | 
            +
            <td class="enum_member_name"><p><a name="GTK-ICON-VIEW-DROP-INTO:CAPS"></a>GTK_ICON_VIEW_DROP_INTO</p></td>
         | 
| 3131 | 
            +
            <td class="enum_member_description">
         | 
| 3132 | 
            +
            <p>dropped item replaces the item</p>
         | 
| 3133 | 
            +
            </td>
         | 
| 3134 | 
            +
            <td class="enum_member_annotations"> </td>
         | 
| 3135 | 
            +
            </tr>
         | 
| 3136 | 
            +
            <tr>
         | 
| 3137 | 
            +
            <td class="enum_member_name"><p><a name="GTK-ICON-VIEW-DROP-LEFT:CAPS"></a>GTK_ICON_VIEW_DROP_LEFT</p></td>
         | 
| 3138 | 
            +
            <td class="enum_member_description">
         | 
| 3139 | 
            +
            <p>droppped item is inserted to the left</p>
         | 
| 3140 | 
            +
            </td>
         | 
| 3141 | 
            +
            <td class="enum_member_annotations"> </td>
         | 
| 3142 | 
            +
            </tr>
         | 
| 3143 | 
            +
            <tr>
         | 
| 3144 | 
            +
            <td class="enum_member_name"><p><a name="GTK-ICON-VIEW-DROP-RIGHT:CAPS"></a>GTK_ICON_VIEW_DROP_RIGHT</p></td>
         | 
| 3145 | 
            +
            <td class="enum_member_description">
         | 
| 3146 | 
            +
            <p>dropped item is inserted to the right</p>
         | 
| 3147 | 
            +
            </td>
         | 
| 3148 | 
            +
            <td class="enum_member_annotations"> </td>
         | 
| 3149 | 
            +
            </tr>
         | 
| 3150 | 
            +
            <tr>
         | 
| 3151 | 
            +
            <td class="enum_member_name"><p><a name="GTK-ICON-VIEW-DROP-ABOVE:CAPS"></a>GTK_ICON_VIEW_DROP_ABOVE</p></td>
         | 
| 3152 | 
            +
            <td class="enum_member_description">
         | 
| 3153 | 
            +
            <p>dropped item is inserted above</p>
         | 
| 3154 | 
            +
            </td>
         | 
| 3155 | 
            +
            <td class="enum_member_annotations"> </td>
         | 
| 3156 | 
            +
            </tr>
         | 
| 3157 | 
            +
            <tr>
         | 
| 3158 | 
            +
            <td class="enum_member_name"><p><a name="GTK-ICON-VIEW-DROP-BELOW:CAPS"></a>GTK_ICON_VIEW_DROP_BELOW</p></td>
         | 
| 3159 | 
            +
            <td class="enum_member_description">
         | 
| 3160 | 
            +
            <p>dropped item is inserted below</p>
         | 
| 3161 | 
            +
            </td>
         | 
| 3162 | 
            +
            <td class="enum_member_annotations"> </td>
         | 
| 3163 | 
            +
            </tr>
         | 
| 3164 | 
            +
            </tbody>
         | 
| 3165 | 
            +
            </table></div>
         | 
| 3166 | 
            +
            </div>
         | 
| 3167 | 
            +
            </div>
         | 
| 3168 | 
            +
            </div>
         | 
| 3169 | 
            +
            <div class="refsect1">
         | 
| 3170 | 
            +
            <a name="GtkIconView.property-details"></a><h2>Property Details</h2>
         | 
| 3171 | 
            +
            <div class="refsect2">
         | 
| 3172 | 
            +
            <a name="GtkIconView--column-spacing"></a><h3>The <code class="literal">“column-spacing”</code> property</h3>
         | 
| 3173 | 
            +
            <pre class="programlisting">  “column-spacing”           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3174 | 
            +
            <p>The column-spacing property specifies the space which is inserted between
         | 
| 3175 | 
            +
            the columns of the icon view.</p>
         | 
| 3176 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3177 | 
            +
            <p>Allowed values: >= 0</p>
         | 
| 3178 | 
            +
            <p>Default value: 6</p>
         | 
| 3179 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3180 | 
            +
            </div>
         | 
| 3181 | 
            +
            <hr>
         | 
| 3182 | 
            +
            <div class="refsect2">
         | 
| 3183 | 
            +
            <a name="GtkIconView--columns"></a><h3>The <code class="literal">“columns”</code> property</h3>
         | 
| 3184 | 
            +
            <pre class="programlisting">  “columns”                  <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3185 | 
            +
            <p>The columns property contains the number of the columns in which the
         | 
| 3186 | 
            +
            items should be displayed. If it is -1, the number of columns will
         | 
| 3187 | 
            +
            be chosen automatically to fill the available area.</p>
         | 
| 3188 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3189 | 
            +
            <p>Allowed values: >= -1</p>
         | 
| 3190 | 
            +
            <p>Default value: -1</p>
         | 
| 3191 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3192 | 
            +
            </div>
         | 
| 3193 | 
            +
            <hr>
         | 
| 3194 | 
            +
            <div class="refsect2">
         | 
| 3195 | 
            +
            <a name="GtkIconView--item-orientation"></a><h3>The <code class="literal">“item-orientation”</code> property</h3>
         | 
| 3196 | 
            +
            <pre class="programlisting">  “item-orientation”         <a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a></pre>
         | 
| 3197 | 
            +
            <p>The item-orientation property specifies how the cells (i.e. the icon and
         | 
| 3198 | 
            +
            the text) of the item are positioned relative to each other.</p>
         | 
| 3199 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3200 | 
            +
            <p>Default value: GTK_ORIENTATION_VERTICAL</p>
         | 
| 3201 | 
            +
            <p class="since">Since 2.22</p>
         | 
| 3202 | 
            +
            </div>
         | 
| 3203 | 
            +
            <hr>
         | 
| 3204 | 
            +
            <div class="refsect2">
         | 
| 3205 | 
            +
            <a name="GtkIconView--item-padding"></a><h3>The <code class="literal">“item-padding”</code> property</h3>
         | 
| 3206 | 
            +
            <pre class="programlisting">  “item-padding”             <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3207 | 
            +
            <p>The item-padding property specifies the padding around each
         | 
| 3208 | 
            +
            of the icon view's item.</p>
         | 
| 3209 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3210 | 
            +
            <p>Allowed values: >= 0</p>
         | 
| 3211 | 
            +
            <p>Default value: 6</p>
         | 
| 3212 | 
            +
            <p class="since">Since 2.18</p>
         | 
| 3213 | 
            +
            </div>
         | 
| 3214 | 
            +
            <hr>
         | 
| 3215 | 
            +
            <div class="refsect2">
         | 
| 3216 | 
            +
            <a name="GtkIconView--item-width"></a><h3>The <code class="literal">“item-width”</code> property</h3>
         | 
| 3217 | 
            +
            <pre class="programlisting">  “item-width”               <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3218 | 
            +
            <p>The item-width property specifies the width to use for each item.
         | 
| 3219 | 
            +
             | 
| 3220 | 
            +
            If it is set to -1, the icon view will automatically determine a
         | 
| 3221 | 
            +
             | 
| 3222 | 
            +
            suitable item size.</p>
         | 
| 3223 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3224 | 
            +
            <p>Allowed values: >= -1</p>
         | 
| 3225 | 
            +
            <p>Default value: -1</p>
         | 
| 3226 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3227 | 
            +
            </div>
         | 
| 3228 | 
            +
            <hr>
         | 
| 3229 | 
            +
            <div class="refsect2">
         | 
| 3230 | 
            +
            <a name="GtkIconView--margin"></a><h3>The <code class="literal">“margin”</code> property</h3>
         | 
| 3231 | 
            +
            <pre class="programlisting">  “margin”                   <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3232 | 
            +
            <p>The margin property specifies the space which is inserted
         | 
| 3233 | 
            +
             | 
| 3234 | 
            +
            at the edges of the icon view.</p>
         | 
| 3235 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3236 | 
            +
            <p>Allowed values: >= 0</p>
         | 
| 3237 | 
            +
            <p>Default value: 6</p>
         | 
| 3238 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3239 | 
            +
            </div>
         | 
| 3240 | 
            +
            <hr>
         | 
| 3241 | 
            +
            <div class="refsect2">
         | 
| 3242 | 
            +
            <a name="GtkIconView--markup-column"></a><h3>The <code class="literal">“markup-column”</code> property</h3>
         | 
| 3243 | 
            +
            <pre class="programlisting">  “markup-column”            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3244 | 
            +
            <p>The ::markup-column property contains the number of the model column
         | 
| 3245 | 
            +
            containing markup information to be displayed. The markup column must be
         | 
| 3246 | 
            +
             | 
| 3247 | 
            +
            of type <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><span class="type">G_TYPE_STRING</span></a>. If this property and the :text-column property
         | 
| 3248 | 
            +
             | 
| 3249 | 
            +
            are both set to column numbers, it overrides the text column.
         | 
| 3250 | 
            +
            If both are set to -1, no texts are displayed.</p>
         | 
| 3251 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3252 | 
            +
            <p>Allowed values: >= -1</p>
         | 
| 3253 | 
            +
            <p>Default value: -1</p>
         | 
| 3254 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3255 | 
            +
            </div>
         | 
| 3256 | 
            +
            <hr>
         | 
| 3257 | 
            +
            <div class="refsect2">
         | 
| 3258 | 
            +
            <a name="GtkIconView--model"></a><h3>The <code class="literal">“model”</code> property</h3>
         | 
| 3259 | 
            +
            <pre class="programlisting">  “model”                    <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *</pre>
         | 
| 3260 | 
            +
            <p>The model for the icon view.</p>
         | 
| 3261 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3262 | 
            +
            </div>
         | 
| 3263 | 
            +
            <hr>
         | 
| 3264 | 
            +
            <div class="refsect2">
         | 
| 3265 | 
            +
            <a name="GtkIconView--orientation"></a><h3>The <code class="literal">“orientation”</code> property</h3>
         | 
| 3266 | 
            +
            <pre class="programlisting">  “orientation”              <a class="link" href="gtk2-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a></pre>
         | 
| 3267 | 
            +
            <p>The orientation property specifies how the cells (i.e. the icon and
         | 
| 3268 | 
            +
             | 
| 3269 | 
            +
            the text) of the item are positioned relative to each other.</p>
         | 
| 3270 | 
            +
            <div class="warning">
         | 
| 3271 | 
            +
            <p><code class="literal">GtkIconView:orientation</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
         | 
| 3272 | 
            +
            <p>Use the <span class="type">“item-orientation”</span> property</p>
         | 
| 3273 | 
            +
            </div>
         | 
| 3274 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3275 | 
            +
            <p>Default value: GTK_ORIENTATION_VERTICAL</p>
         | 
| 3276 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3277 | 
            +
            </div>
         | 
| 3278 | 
            +
            <hr>
         | 
| 3279 | 
            +
            <div class="refsect2">
         | 
| 3280 | 
            +
            <a name="GtkIconView--pixbuf-column"></a><h3>The <code class="literal">“pixbuf-column”</code> property</h3>
         | 
| 3281 | 
            +
            <pre class="programlisting">  “pixbuf-column”            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3282 | 
            +
            <p>The ::pixbuf-column property contains the number of the model column
         | 
| 3283 | 
            +
            containing the pixbufs which are displayed. The pixbuf column must be
         | 
| 3284 | 
            +
             | 
| 3285 | 
            +
            of type <span class="type">GDK_TYPE_PIXBUF</span>. Setting this property to -1 turns off the
         | 
| 3286 | 
            +
            display of pixbufs.</p>
         | 
| 3287 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3288 | 
            +
            <p>Allowed values: >= -1</p>
         | 
| 3289 | 
            +
            <p>Default value: -1</p>
         | 
| 3290 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3291 | 
            +
            </div>
         | 
| 3292 | 
            +
            <hr>
         | 
| 3293 | 
            +
            <div class="refsect2">
         | 
| 3294 | 
            +
            <a name="GtkIconView--reorderable"></a><h3>The <code class="literal">“reorderable”</code> property</h3>
         | 
| 3295 | 
            +
            <pre class="programlisting">  “reorderable”              <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
         | 
| 3296 | 
            +
            <p>The reorderable property specifies if the items can be reordered
         | 
| 3297 | 
            +
            by DND.</p>
         | 
| 3298 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3299 | 
            +
            <p>Default value: FALSE</p>
         | 
| 3300 | 
            +
            <p class="since">Since 2.8</p>
         | 
| 3301 | 
            +
            </div>
         | 
| 3302 | 
            +
            <hr>
         | 
| 3303 | 
            +
            <div class="refsect2">
         | 
| 3304 | 
            +
            <a name="GtkIconView--row-spacing"></a><h3>The <code class="literal">“row-spacing”</code> property</h3>
         | 
| 3305 | 
            +
            <pre class="programlisting">  “row-spacing”              <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3306 | 
            +
            <p>The row-spacing property specifies the space which is inserted between
         | 
| 3307 | 
            +
            the rows of the icon view.</p>
         | 
| 3308 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3309 | 
            +
            <p>Allowed values: >= 0</p>
         | 
| 3310 | 
            +
            <p>Default value: 6</p>
         | 
| 3311 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3312 | 
            +
            </div>
         | 
| 3313 | 
            +
            <hr>
         | 
| 3314 | 
            +
            <div class="refsect2">
         | 
| 3315 | 
            +
            <a name="GtkIconView--selection-mode"></a><h3>The <code class="literal">“selection-mode”</code> property</h3>
         | 
| 3316 | 
            +
            <pre class="programlisting">  “selection-mode”           <a class="link" href="gtk2-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a></pre>
         | 
| 3317 | 
            +
            <p>The ::selection-mode property specifies the selection mode of
         | 
| 3318 | 
            +
            icon view. If the mode is <a class="link" href="gtk2-Standard-Enumerations.html#GTK-SELECTION-MULTIPLE:CAPS"><span class="type">GTK_SELECTION_MULTIPLE</span></a>, rubberband selection
         | 
| 3319 | 
            +
            is enabled, for the other modes, only keyboard selection is possible.</p>
         | 
| 3320 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3321 | 
            +
            <p>Default value: GTK_SELECTION_SINGLE</p>
         | 
| 3322 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3323 | 
            +
            </div>
         | 
| 3324 | 
            +
            <hr>
         | 
| 3325 | 
            +
            <div class="refsect2">
         | 
| 3326 | 
            +
            <a name="GtkIconView--spacing"></a><h3>The <code class="literal">“spacing”</code> property</h3>
         | 
| 3327 | 
            +
            <pre class="programlisting">  “spacing”                  <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3328 | 
            +
            <p>The spacing property specifies the space which is inserted between
         | 
| 3329 | 
            +
            the cells (i.e. the icon and the text) of an item.</p>
         | 
| 3330 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3331 | 
            +
            <p>Allowed values: >= 0</p>
         | 
| 3332 | 
            +
            <p>Default value: 0</p>
         | 
| 3333 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3334 | 
            +
            </div>
         | 
| 3335 | 
            +
            <hr>
         | 
| 3336 | 
            +
            <div class="refsect2">
         | 
| 3337 | 
            +
            <a name="GtkIconView--text-column"></a><h3>The <code class="literal">“text-column”</code> property</h3>
         | 
| 3338 | 
            +
            <pre class="programlisting">  “text-column”              <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3339 | 
            +
            <p>The ::text-column property contains the number of the model column
         | 
| 3340 | 
            +
            containing the texts which are displayed. The text column must be
         | 
| 3341 | 
            +
             | 
| 3342 | 
            +
            of type <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><span class="type">G_TYPE_STRING</span></a>. If this property and the :markup-column
         | 
| 3343 | 
            +
             | 
| 3344 | 
            +
            property are both set to -1, no texts are displayed.</p>
         | 
| 3345 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3346 | 
            +
            <p>Allowed values: >= -1</p>
         | 
| 3347 | 
            +
            <p>Default value: -1</p>
         | 
| 3348 | 
            +
            <p class="since">Since 2.6</p>
         | 
| 3349 | 
            +
            </div>
         | 
| 3350 | 
            +
            <hr>
         | 
| 3351 | 
            +
            <div class="refsect2">
         | 
| 3352 | 
            +
            <a name="GtkIconView--tooltip-column"></a><h3>The <code class="literal">“tooltip-column”</code> property</h3>
         | 
| 3353 | 
            +
            <pre class="programlisting">  “tooltip-column”           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
         | 
| 3354 | 
            +
            <p>The column in the model containing the tooltip texts for the items.</p>
         | 
| 3355 | 
            +
            <p>Flags: Read / Write</p>
         | 
| 3356 | 
            +
            <p>Allowed values: >= -1</p>
         | 
| 3357 | 
            +
            <p>Default value: -1</p>
         | 
| 3358 | 
            +
            </div>
         | 
| 3359 | 
            +
            </div>
         | 
| 3360 | 
            +
            <div class="refsect1">
         | 
| 3361 | 
            +
            <a name="GtkIconView.style-property-details"></a><h2>Style Property Details</h2>
         | 
| 3362 | 
            +
            <div class="refsect2">
         | 
| 3363 | 
            +
            <a name="GtkIconView--s-selection-box-alpha"></a><h3>The <code class="literal">“selection-box-alpha”</code> style property</h3>
         | 
| 3364 | 
            +
            <pre class="programlisting">  “selection-box-alpha”      <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guchar"><span class="type">guchar</span></a></pre>
         | 
| 3365 | 
            +
            <p>Opacity of the selection box.</p>
         | 
| 3366 | 
            +
            <p>Flags: Read</p>
         | 
| 3367 | 
            +
            <p>Default value: 64</p>
         | 
| 3368 | 
            +
            </div>
         | 
| 3369 | 
            +
            <hr>
         | 
| 3370 | 
            +
            <div class="refsect2">
         | 
| 3371 | 
            +
            <a name="GtkIconView--s-selection-box-color"></a><h3>The <code class="literal">“selection-box-color”</code> style property</h3>
         | 
| 3372 | 
            +
            <pre class="programlisting">  “selection-box-color”      <a href="http://library.gnome.org/devel/gdk3/gdk2-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *</pre>
         | 
| 3373 | 
            +
            <p>Color of the selection box.</p>
         | 
| 3374 | 
            +
            <p>Flags: Read</p>
         | 
| 3375 | 
            +
            </div>
         | 
| 3376 | 
            +
            </div>
         | 
| 3377 | 
            +
            <div class="refsect1">
         | 
| 3378 | 
            +
            <a name="GtkIconView.signal-details"></a><h2>Signal Details</h2>
         | 
| 3379 | 
            +
            <div class="refsect2">
         | 
| 3380 | 
            +
            <a name="GtkIconView-activate-cursor-item"></a><h3>The <code class="literal">“activate-cursor-item”</code> signal</h3>
         | 
| 3381 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 3382 | 
            +
            user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
         | 
| 3383 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
         | 
| 3384 | 
            +
            <p>A <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a>
         | 
| 3385 | 
            +
            which gets emitted when the user activates the currently
         | 
| 3386 | 
            +
             | 
| 3387 | 
            +
            focused item. </p>
         | 
| 3388 | 
            +
            <p>Applications should not connect to it, but may emit it with
         | 
| 3389 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control activation
         | 
| 3390 | 
            +
            programmatically.</p>
         | 
| 3391 | 
            +
            <p>The default bindings for this signal are Space, Return and Enter.</p>
         | 
| 3392 | 
            +
            <div class="refsect3">
         | 
| 3393 | 
            +
            <a name="id-1.4.9.9.16.2.7"></a><h4>Parameters</h4>
         | 
| 3394 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3395 | 
            +
            <colgroup>
         | 
| 3396 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3397 | 
            +
            <col class="parameters_description">
         | 
| 3398 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3399 | 
            +
            </colgroup>
         | 
| 3400 | 
            +
            <tbody>
         | 
| 3401 | 
            +
            <tr>
         | 
| 3402 | 
            +
            <td class="parameter_name"><p>iconview</p></td>
         | 
| 3403 | 
            +
            <td class="parameter_description"><p>the object on which the signal is emitted</p></td>
         | 
| 3404 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3405 | 
            +
            </tr>
         | 
| 3406 | 
            +
            <tr>
         | 
| 3407 | 
            +
            <td class="parameter_name"><p>user_data</p></td>
         | 
| 3408 | 
            +
            <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
         | 
| 3409 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3410 | 
            +
            </tr>
         | 
| 3411 | 
            +
            </tbody>
         | 
| 3412 | 
            +
            </table></div>
         | 
| 3413 | 
            +
            </div>
         | 
| 3414 | 
            +
            <p>Flags: Action</p>
         | 
| 3415 | 
            +
            </div>
         | 
| 3416 | 
            +
            <hr>
         | 
| 3417 | 
            +
            <div class="refsect2">
         | 
| 3418 | 
            +
            <a name="GtkIconView-item-activated"></a><h3>The <code class="literal">“item-activated”</code> signal</h3>
         | 
| 3419 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 3420 | 
            +
            user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
         | 
| 3421 | 
            +
                           <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
         | 
| 3422 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
         | 
| 3423 | 
            +
            <p>The ::item-activated signal is emitted when the method
         | 
| 3424 | 
            +
            <a class="link" href="GtkIconView.html#gtk-icon-view-item-activated" title="gtk_icon_view_item_activated ()"><code class="function">gtk_icon_view_item_activated()</code></a> is called or the user double
         | 
| 3425 | 
            +
             | 
| 3426 | 
            +
            clicks an item. It is also emitted when a non-editable item
         | 
| 3427 | 
            +
            is selected and one of the keys: Space, Return or Enter is
         | 
| 3428 | 
            +
            pressed.</p>
         | 
| 3429 | 
            +
            <div class="refsect3">
         | 
| 3430 | 
            +
            <a name="id-1.4.9.9.16.3.5"></a><h4>Parameters</h4>
         | 
| 3431 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3432 | 
            +
            <colgroup>
         | 
| 3433 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3434 | 
            +
            <col class="parameters_description">
         | 
| 3435 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3436 | 
            +
            </colgroup>
         | 
| 3437 | 
            +
            <tbody>
         | 
| 3438 | 
            +
            <tr>
         | 
| 3439 | 
            +
            <td class="parameter_name"><p>iconview</p></td>
         | 
| 3440 | 
            +
            <td class="parameter_description"><p>the object on which the signal is emitted</p></td>
         | 
| 3441 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3442 | 
            +
            </tr>
         | 
| 3443 | 
            +
            <tr>
         | 
| 3444 | 
            +
            <td class="parameter_name"><p>path</p></td>
         | 
| 3445 | 
            +
            <td class="parameter_description"><p>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for the activated item</p></td>
         | 
| 3446 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3447 | 
            +
            </tr>
         | 
| 3448 | 
            +
            <tr>
         | 
| 3449 | 
            +
            <td class="parameter_name"><p>user_data</p></td>
         | 
| 3450 | 
            +
            <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
         | 
| 3451 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3452 | 
            +
            </tr>
         | 
| 3453 | 
            +
            </tbody>
         | 
| 3454 | 
            +
            </table></div>
         | 
| 3455 | 
            +
            </div>
         | 
| 3456 | 
            +
            <p>Flags: Run Last</p>
         | 
| 3457 | 
            +
            </div>
         | 
| 3458 | 
            +
            <hr>
         | 
| 3459 | 
            +
            <div class="refsect2">
         | 
| 3460 | 
            +
            <a name="GtkIconView-move-cursor"></a><h3>The <code class="literal">“move-cursor”</code> signal</h3>
         | 
| 3461 | 
            +
            <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
         | 
| 3462 | 
            +
            user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>    *iconview,
         | 
| 3463 | 
            +
                           <a class="link" href="gtk2-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
         | 
| 3464 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a>            count,
         | 
| 3465 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>        user_data)</pre>
         | 
| 3466 | 
            +
            <p>The ::move-cursor signal is a</p>
         | 
| 3467 | 
            +
            <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted when the user initiates a cursor movement.</p>
         | 
| 3468 | 
            +
            <p>Applications should not connect to it, but may emit it with
         | 
| 3469 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control the cursor
         | 
| 3470 | 
            +
            programmatically.</p>
         | 
| 3471 | 
            +
            <p>The default bindings for this signal include</p>
         | 
| 3472 | 
            +
            <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
         | 
| 3473 | 
            +
            <li class="listitem">Arrow keys which move by individual steps</li>
         | 
| 3474 | 
            +
            <li class="listitem">Home/End keys which move to the first/last item</li>
         | 
| 3475 | 
            +
            <li class="listitem">PageUp/PageDown which move by "pages"</li>
         | 
| 3476 | 
            +
            </ul></div>
         | 
| 3477 | 
            +
            <p>All of these will extend the selection when combined with
         | 
| 3478 | 
            +
            the Shift modifier.</p>
         | 
| 3479 | 
            +
            <div class="refsect3">
         | 
| 3480 | 
            +
            <a name="id-1.4.9.9.16.4.11"></a><h4>Parameters</h4>
         | 
| 3481 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3482 | 
            +
            <colgroup>
         | 
| 3483 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3484 | 
            +
            <col class="parameters_description">
         | 
| 3485 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3486 | 
            +
            </colgroup>
         | 
| 3487 | 
            +
            <tbody>
         | 
| 3488 | 
            +
            <tr>
         | 
| 3489 | 
            +
            <td class="parameter_name"><p>iconview</p></td>
         | 
| 3490 | 
            +
            <td class="parameter_description"><p>the object which received the signal</p></td>
         | 
| 3491 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3492 | 
            +
            </tr>
         | 
| 3493 | 
            +
            <tr>
         | 
| 3494 | 
            +
            <td class="parameter_name"><p>step</p></td>
         | 
| 3495 | 
            +
            <td class="parameter_description"><p>the granularity of the move, as a <a class="link" href="gtk2-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a></p></td>
         | 
| 3496 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3497 | 
            +
            </tr>
         | 
| 3498 | 
            +
            <tr>
         | 
| 3499 | 
            +
            <td class="parameter_name"><p>count</p></td>
         | 
| 3500 | 
            +
            <td class="parameter_description"><p>the number of <em class="parameter"><code>step</code></em>
         | 
| 3501 | 
            +
            units to move</p></td>
         | 
| 3502 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3503 | 
            +
            </tr>
         | 
| 3504 | 
            +
            <tr>
         | 
| 3505 | 
            +
            <td class="parameter_name"><p>user_data</p></td>
         | 
| 3506 | 
            +
            <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
         | 
| 3507 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3508 | 
            +
            </tr>
         | 
| 3509 | 
            +
            </tbody>
         | 
| 3510 | 
            +
            </table></div>
         | 
| 3511 | 
            +
            </div>
         | 
| 3512 | 
            +
            <p>Flags: Action</p>
         | 
| 3513 | 
            +
            </div>
         | 
| 3514 | 
            +
            <hr>
         | 
| 3515 | 
            +
            <div class="refsect2">
         | 
| 3516 | 
            +
            <a name="GtkIconView-select-all"></a><h3>The <code class="literal">“select-all”</code> signal</h3>
         | 
| 3517 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 3518 | 
            +
            user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
         | 
| 3519 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
         | 
| 3520 | 
            +
            <p>A <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a>
         | 
| 3521 | 
            +
            which gets emitted when the user selects all items.</p>
         | 
| 3522 | 
            +
            <p>Applications should not connect to it, but may emit it with
         | 
| 3523 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control selection
         | 
| 3524 | 
            +
            programmatically.</p>
         | 
| 3525 | 
            +
            <p>The default binding for this signal is Ctrl-a.</p>
         | 
| 3526 | 
            +
            <div class="refsect3">
         | 
| 3527 | 
            +
            <a name="id-1.4.9.9.16.5.7"></a><h4>Parameters</h4>
         | 
| 3528 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3529 | 
            +
            <colgroup>
         | 
| 3530 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3531 | 
            +
            <col class="parameters_description">
         | 
| 3532 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3533 | 
            +
            </colgroup>
         | 
| 3534 | 
            +
            <tbody>
         | 
| 3535 | 
            +
            <tr>
         | 
| 3536 | 
            +
            <td class="parameter_name"><p>iconview</p></td>
         | 
| 3537 | 
            +
            <td class="parameter_description"><p>the object on which the signal is emitted</p></td>
         | 
| 3538 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3539 | 
            +
            </tr>
         | 
| 3540 | 
            +
            <tr>
         | 
| 3541 | 
            +
            <td class="parameter_name"><p>user_data</p></td>
         | 
| 3542 | 
            +
            <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
         | 
| 3543 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3544 | 
            +
            </tr>
         | 
| 3545 | 
            +
            </tbody>
         | 
| 3546 | 
            +
            </table></div>
         | 
| 3547 | 
            +
            </div>
         | 
| 3548 | 
            +
            <p>Flags: Action</p>
         | 
| 3549 | 
            +
            </div>
         | 
| 3550 | 
            +
            <hr>
         | 
| 3551 | 
            +
            <div class="refsect2">
         | 
| 3552 | 
            +
            <a name="GtkIconView-select-cursor-item"></a><h3>The <code class="literal">“select-cursor-item”</code> signal</h3>
         | 
| 3553 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 3554 | 
            +
            user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
         | 
| 3555 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
         | 
| 3556 | 
            +
            <p>A <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a>
         | 
| 3557 | 
            +
            which gets emitted when the user selects the item that is currently
         | 
| 3558 | 
            +
            focused.</p>
         | 
| 3559 | 
            +
            <p>Applications should not connect to it, but may emit it with
         | 
| 3560 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control selection
         | 
| 3561 | 
            +
            programmatically.</p>
         | 
| 3562 | 
            +
            <p>There is no default binding for this signal.</p>
         | 
| 3563 | 
            +
            <div class="refsect3">
         | 
| 3564 | 
            +
            <a name="id-1.4.9.9.16.6.7"></a><h4>Parameters</h4>
         | 
| 3565 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3566 | 
            +
            <colgroup>
         | 
| 3567 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3568 | 
            +
            <col class="parameters_description">
         | 
| 3569 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3570 | 
            +
            </colgroup>
         | 
| 3571 | 
            +
            <tbody>
         | 
| 3572 | 
            +
            <tr>
         | 
| 3573 | 
            +
            <td class="parameter_name"><p>iconview</p></td>
         | 
| 3574 | 
            +
            <td class="parameter_description"><p>the object on which the signal is emitted</p></td>
         | 
| 3575 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3576 | 
            +
            </tr>
         | 
| 3577 | 
            +
            <tr>
         | 
| 3578 | 
            +
            <td class="parameter_name"><p>user_data</p></td>
         | 
| 3579 | 
            +
            <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
         | 
| 3580 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3581 | 
            +
            </tr>
         | 
| 3582 | 
            +
            </tbody>
         | 
| 3583 | 
            +
            </table></div>
         | 
| 3584 | 
            +
            </div>
         | 
| 3585 | 
            +
            <p>Flags: Action</p>
         | 
| 3586 | 
            +
            </div>
         | 
| 3587 | 
            +
            <hr>
         | 
| 3588 | 
            +
            <div class="refsect2">
         | 
| 3589 | 
            +
            <a name="GtkIconView-selection-changed"></a><h3>The <code class="literal">“selection-changed”</code> signal</h3>
         | 
| 3590 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 3591 | 
            +
            user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
         | 
| 3592 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
         | 
| 3593 | 
            +
            <p>The ::selection-changed signal is emitted when the selection
         | 
| 3594 | 
            +
            (i.e. the set of selected items) changes.</p>
         | 
| 3595 | 
            +
            <div class="refsect3">
         | 
| 3596 | 
            +
            <a name="id-1.4.9.9.16.7.5"></a><h4>Parameters</h4>
         | 
| 3597 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3598 | 
            +
            <colgroup>
         | 
| 3599 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3600 | 
            +
            <col class="parameters_description">
         | 
| 3601 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3602 | 
            +
            </colgroup>
         | 
| 3603 | 
            +
            <tbody>
         | 
| 3604 | 
            +
            <tr>
         | 
| 3605 | 
            +
            <td class="parameter_name"><p>iconview</p></td>
         | 
| 3606 | 
            +
            <td class="parameter_description"><p>the object on which the signal is emitted</p></td>
         | 
| 3607 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3608 | 
            +
            </tr>
         | 
| 3609 | 
            +
            <tr>
         | 
| 3610 | 
            +
            <td class="parameter_name"><p>user_data</p></td>
         | 
| 3611 | 
            +
            <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
         | 
| 3612 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3613 | 
            +
            </tr>
         | 
| 3614 | 
            +
            </tbody>
         | 
| 3615 | 
            +
            </table></div>
         | 
| 3616 | 
            +
            </div>
         | 
| 3617 | 
            +
            <p>Flags: Run First</p>
         | 
| 3618 | 
            +
            </div>
         | 
| 3619 | 
            +
            <hr>
         | 
| 3620 | 
            +
            <div class="refsect2">
         | 
| 3621 | 
            +
            <a name="GtkIconView-set-scroll-adjustments"></a><h3>The <code class="literal">“set-scroll-adjustments”</code> signal</h3>
         | 
| 3622 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 3623 | 
            +
            user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>   *horizontal,
         | 
| 3624 | 
            +
                           <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *vertical,
         | 
| 3625 | 
            +
                           <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *arg2,
         | 
| 3626 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>       user_data)</pre>
         | 
| 3627 | 
            +
            <p>Set the scroll adjustments for the icon view. Usually scrolled containers
         | 
| 3628 | 
            +
            like <a class="link" href="GtkScrolledWindow.html" title="GtkScrolledWindow"><span class="type">GtkScrolledWindow</span></a> will emit this signal to connect two instances
         | 
| 3629 | 
            +
            of <a class="link" href="GtkScrollbar.html" title="GtkScrollbar"><span class="type">GtkScrollbar</span></a> to the scroll directions of the <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</p>
         | 
| 3630 | 
            +
            <div class="refsect3">
         | 
| 3631 | 
            +
            <a name="id-1.4.9.9.16.8.5"></a><h4>Parameters</h4>
         | 
| 3632 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3633 | 
            +
            <colgroup>
         | 
| 3634 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3635 | 
            +
            <col class="parameters_description">
         | 
| 3636 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3637 | 
            +
            </colgroup>
         | 
| 3638 | 
            +
            <tbody>
         | 
| 3639 | 
            +
            <tr>
         | 
| 3640 | 
            +
            <td class="parameter_name"><p>horizontal</p></td>
         | 
| 3641 | 
            +
            <td class="parameter_description"><p>the horizontal <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a></p></td>
         | 
| 3642 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3643 | 
            +
            </tr>
         | 
| 3644 | 
            +
            <tr>
         | 
| 3645 | 
            +
            <td class="parameter_name"><p>vertical</p></td>
         | 
| 3646 | 
            +
            <td class="parameter_description"><p>the vertical <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a></p></td>
         | 
| 3647 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3648 | 
            +
            </tr>
         | 
| 3649 | 
            +
            <tr>
         | 
| 3650 | 
            +
            <td class="parameter_name"><p>user_data</p></td>
         | 
| 3651 | 
            +
            <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
         | 
| 3652 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3653 | 
            +
            </tr>
         | 
| 3654 | 
            +
            </tbody>
         | 
| 3655 | 
            +
            </table></div>
         | 
| 3656 | 
            +
            </div>
         | 
| 3657 | 
            +
            <p>Flags: Run Last</p>
         | 
| 3658 | 
            +
            </div>
         | 
| 3659 | 
            +
            <hr>
         | 
| 3660 | 
            +
            <div class="refsect2">
         | 
| 3661 | 
            +
            <a name="GtkIconView-toggle-cursor-item"></a><h3>The <code class="literal">“toggle-cursor-item”</code> signal</h3>
         | 
| 3662 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 3663 | 
            +
            user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
         | 
| 3664 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
         | 
| 3665 | 
            +
            <p>A <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a>
         | 
| 3666 | 
            +
            which gets emitted when the user toggles whether the currently
         | 
| 3667 | 
            +
            focused item is selected or not. The exact effect of this
         | 
| 3668 | 
            +
             | 
| 3669 | 
            +
            depend on the selection mode.</p>
         | 
| 3670 | 
            +
            <p>Applications should not connect to it, but may emit it with
         | 
| 3671 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control selection
         | 
| 3672 | 
            +
            programmatically.</p>
         | 
| 3673 | 
            +
            <p>There is no default binding for this signal is Ctrl-Space.</p>
         | 
| 3674 | 
            +
            <div class="refsect3">
         | 
| 3675 | 
            +
            <a name="id-1.4.9.9.16.9.7"></a><h4>Parameters</h4>
         | 
| 3676 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3677 | 
            +
            <colgroup>
         | 
| 3678 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3679 | 
            +
            <col class="parameters_description">
         | 
| 3680 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3681 | 
            +
            </colgroup>
         | 
| 3682 | 
            +
            <tbody>
         | 
| 3683 | 
            +
            <tr>
         | 
| 3684 | 
            +
            <td class="parameter_name"><p>iconview</p></td>
         | 
| 3685 | 
            +
            <td class="parameter_description"><p>the object on which the signal is emitted</p></td>
         | 
| 3686 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3687 | 
            +
            </tr>
         | 
| 3688 | 
            +
            <tr>
         | 
| 3689 | 
            +
            <td class="parameter_name"><p>user_data</p></td>
         | 
| 3690 | 
            +
            <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
         | 
| 3691 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3692 | 
            +
            </tr>
         | 
| 3693 | 
            +
            </tbody>
         | 
| 3694 | 
            +
            </table></div>
         | 
| 3695 | 
            +
            </div>
         | 
| 3696 | 
            +
            <p>Flags: Action</p>
         | 
| 3697 | 
            +
            </div>
         | 
| 3698 | 
            +
            <hr>
         | 
| 3699 | 
            +
            <div class="refsect2">
         | 
| 3700 | 
            +
            <a name="GtkIconView-unselect-all"></a><h3>The <code class="literal">“unselect-all”</code> signal</h3>
         | 
| 3701 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>
         | 
| 3702 | 
            +
            user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
         | 
| 3703 | 
            +
                           <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>     user_data)</pre>
         | 
| 3704 | 
            +
            <p>A <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a>
         | 
| 3705 | 
            +
            which gets emitted when the user unselects all items.</p>
         | 
| 3706 | 
            +
            <p>Applications should not connect to it, but may emit it with
         | 
| 3707 | 
            +
            <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control selection
         | 
| 3708 | 
            +
            programmatically.</p>
         | 
| 3709 | 
            +
            <p>The default binding for this signal is Ctrl-Shift-a.</p>
         | 
| 3710 | 
            +
            <div class="refsect3">
         | 
| 3711 | 
            +
            <a name="id-1.4.9.9.16.10.7"></a><h4>Parameters</h4>
         | 
| 3712 | 
            +
            <div class="informaltable"><table width="100%" border="0">
         | 
| 3713 | 
            +
            <colgroup>
         | 
| 3714 | 
            +
            <col width="150px" class="parameters_name">
         | 
| 3715 | 
            +
            <col class="parameters_description">
         | 
| 3716 | 
            +
            <col width="200px" class="parameters_annotations">
         | 
| 3717 | 
            +
            </colgroup>
         | 
| 3718 | 
            +
            <tbody>
         | 
| 3719 | 
            +
            <tr>
         | 
| 3720 | 
            +
            <td class="parameter_name"><p>iconview</p></td>
         | 
| 3721 | 
            +
            <td class="parameter_description"><p>the object on which the signal is emitted</p></td>
         | 
| 3722 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3723 | 
            +
            </tr>
         | 
| 3724 | 
            +
            <tr>
         | 
| 3725 | 
            +
            <td class="parameter_name"><p>user_data</p></td>
         | 
| 3726 | 
            +
            <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
         | 
| 3727 | 
            +
            <td class="parameter_annotations"> </td>
         | 
| 3728 | 
            +
            </tr>
         | 
| 3729 | 
            +
            </tbody>
         | 
| 3730 | 
            +
            </table></div>
         | 
| 3731 | 
            +
            </div>
         | 
| 3732 | 
            +
            <p>Flags: Action</p>
         | 
| 3733 | 
            +
            </div>
         | 
| 3734 | 
            +
            </div>
         | 
| 3735 | 
            +
            </div>
         | 
| 3736 | 
            +
            <div class="footer">
         | 
| 3737 | 
            +
            <hr>
         | 
| 3738 | 
            +
                      Generated by GTK-Doc V1.21.1</div>
         | 
| 3739 | 
            +
            </body>
         | 
| 3740 | 
            +
            </html>
         |