gtk2 1.0.3-x86-mingw32 → 1.1.0-x86-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.
- data/Rakefile +66 -1
- data/ext/gtk2/extconf.rb +0 -96
- data/ext/gtk2/global.h +274 -13
- data/ext/gtk2/gtk2.def +5 -3
- data/ext/gtk2/init.c +263 -19
- data/ext/gtk2/rbgdk.c +245 -89
- data/ext/gtk2/rbgdk.h +32 -6
- data/ext/gtk2/rbgdkatom.c +38 -28
- data/ext/gtk2/rbgdkcairo.c +32 -42
- data/ext/gtk2/rbgdkcolor.c +52 -42
- data/ext/gtk2/rbgdkcolormap.c +42 -37
- data/ext/gtk2/rbgdkconst.c +23 -13
- data/ext/gtk2/rbgdkconversions.h +19 -6
- data/ext/gtk2/rbgdkcursor.c +37 -25
- data/ext/gtk2/rbgdkdevice.c +77 -67
- data/ext/gtk2/rbgdkdisplay.c +158 -150
- data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
- data/ext/gtk2/rbgdkdragcontext.c +121 -70
- data/ext/gtk2/rbgdkdraw.c +252 -160
- data/ext/gtk2/rbgdkevent.c +30 -20
- data/ext/gtk2/rbgdkgc.c +123 -116
- data/ext/gtk2/rbgdkgeometry.c +77 -68
- data/ext/gtk2/rbgdkimage.c +58 -47
- data/ext/gtk2/rbgdkinput.c +33 -26
- data/ext/gtk2/rbgdkkeymap.c +38 -27
- data/ext/gtk2/rbgdkkeyval.c +44 -32
- data/ext/gtk2/rbgdkpango.c +66 -39
- data/ext/gtk2/rbgdkpangorenderer.c +63 -35
- data/ext/gtk2/rbgdkpixbuf.c +36 -25
- data/ext/gtk2/rbgdkpixmap.c +65 -49
- data/ext/gtk2/rbgdkproperty.c +66 -60
- data/ext/gtk2/rbgdkrectangle.c +54 -46
- data/ext/gtk2/rbgdkregion.c +144 -79
- data/ext/gtk2/rbgdkrgb.c +74 -58
- data/ext/gtk2/rbgdkscreen.c +103 -97
- data/ext/gtk2/rbgdkselection.c +49 -39
- data/ext/gtk2/rbgdkthreads.c +32 -19
- data/ext/gtk2/rbgdktimecoord.c +60 -38
- data/ext/gtk2/rbgdkvisual.c +79 -71
- data/ext/gtk2/rbgdkwindow.c +284 -305
- data/ext/gtk2/rbgdkwindowattr.c +69 -58
- data/ext/gtk2/rbgdkx11.c +41 -28
- data/ext/gtk2/rbgtk.c +498 -19
- data/ext/gtk2/rbgtk.h +35 -20
- data/ext/gtk2/rbgtkaboutdialog.c +33 -80
- data/ext/gtk2/rbgtkaccelerator.c +36 -23
- data/ext/gtk2/rbgtkaccelgroup.c +50 -40
- data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
- data/ext/gtk2/rbgtkaccelkey.c +40 -28
- data/ext/gtk2/rbgtkaccellabel.c +30 -18
- data/ext/gtk2/rbgtkaccelmap.c +55 -42
- data/ext/gtk2/rbgtkaccessible.c +25 -14
- data/ext/gtk2/rbgtkaction.c +68 -68
- data/ext/gtk2/rbgtkactiongroup.c +317 -195
- data/ext/gtk2/rbgtkadjustment.c +33 -46
- data/ext/gtk2/rbgtkalignment.c +36 -24
- data/ext/gtk2/rbgtkallocation.c +53 -42
- data/ext/gtk2/rbgtkarrow.c +34 -22
- data/ext/gtk2/rbgtkaspectframe.c +32 -20
- data/ext/gtk2/rbgtkassistant.c +81 -61
- data/ext/gtk2/rbgtkbbox.c +32 -20
- data/ext/gtk2/rbgtkbin.c +28 -16
- data/ext/gtk2/rbgtkbindingset.c +42 -35
- data/ext/gtk2/rbgtkborder.c +34 -23
- data/ext/gtk2/rbgtkbox.c +40 -29
- data/ext/gtk2/rbgtkbuildable.c +57 -45
- data/ext/gtk2/rbgtkbuilder.c +53 -38
- data/ext/gtk2/rbgtkbutton.c +41 -55
- data/ext/gtk2/rbgtkcalendar.c +51 -40
- data/ext/gtk2/rbgtkcelleditable.c +28 -17
- data/ext/gtk2/rbgtkcelllayout.c +41 -30
- data/ext/gtk2/rbgtkcellrenderer.c +43 -32
- data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
- data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
- data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
- data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
- data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
- data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
- data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
- data/ext/gtk2/rbgtkcellview.c +34 -33
- data/ext/gtk2/rbgtkcheckbutton.c +28 -16
- data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
- data/ext/gtk2/rbgtkclipboard.c +123 -77
- data/ext/gtk2/rbgtkcolorbutton.c +26 -31
- data/ext/gtk2/rbgtkcolorsel.c +109 -55
- data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
- data/ext/gtk2/rbgtkcombo.c +43 -32
- data/ext/gtk2/rbgtkcombobox.c +44 -83
- data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
- data/ext/gtk2/rbgtkconst.c +23 -13
- data/ext/gtk2/rbgtkcontainer.c +153 -100
- data/ext/gtk2/rbgtkconversions.h +19 -6
- data/ext/gtk2/rbgtkcurve.c +46 -36
- data/ext/gtk2/rbgtkdialog.c +104 -70
- data/ext/gtk2/rbgtkdrag.c +173 -121
- data/ext/gtk2/rbgtkdrawingarea.c +28 -16
- data/ext/gtk2/rbgtkeditable.c +63 -51
- data/ext/gtk2/rbgtkentry.c +48 -85
- data/ext/gtk2/rbgtkentrycompletion.c +42 -55
- data/ext/gtk2/rbgtkeventbox.c +28 -16
- data/ext/gtk2/rbgtkexpander.c +26 -35
- data/ext/gtk2/rbgtkfilechooser.c +87 -143
- data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
- data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
- data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
- data/ext/gtk2/rbgtkfilefilter.c +45 -35
- data/ext/gtk2/rbgtkfilesel.c +54 -43
- data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
- data/ext/gtk2/rbgtkfixed.c +36 -25
- data/ext/gtk2/rbgtkfontbutton.c +26 -37
- data/ext/gtk2/rbgtkfontselection.c +27 -15
- data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
- data/ext/gtk2/rbgtkframe.c +39 -28
- data/ext/gtk2/rbgtkgamma.c +32 -20
- data/ext/gtk2/rbgtkhandlebox.c +31 -19
- data/ext/gtk2/rbgtkhbbox.c +28 -16
- data/ext/gtk2/rbgtkhbox.c +29 -17
- data/ext/gtk2/rbgtkhpaned.c +28 -16
- data/ext/gtk2/rbgtkhruler.c +28 -16
- data/ext/gtk2/rbgtkhscale.c +28 -16
- data/ext/gtk2/rbgtkhscrollbar.c +28 -16
- data/ext/gtk2/rbgtkhseparator.c +28 -16
- data/ext/gtk2/rbgtkiconfactory.c +35 -23
- data/ext/gtk2/rbgtkiconinfo.c +42 -30
- data/ext/gtk2/rbgtkiconset.c +31 -19
- data/ext/gtk2/rbgtkiconsize.c +38 -25
- data/ext/gtk2/rbgtkiconsource.c +62 -50
- data/ext/gtk2/rbgtkicontheme.c +95 -95
- data/ext/gtk2/rbgtkiconview.c +87 -121
- data/ext/gtk2/rbgtkimage.c +31 -40
- data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
- data/ext/gtk2/rbgtkimcontext.c +46 -34
- data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
- data/ext/gtk2/rbgtkimmulticontext.c +26 -14
- data/ext/gtk2/rbgtkinputdialog.c +28 -16
- data/ext/gtk2/rbgtkinvisible.c +24 -18
- data/ext/gtk2/rbgtkitem.c +32 -20
- data/ext/gtk2/rbgtkitemfactory.c +65 -57
- data/ext/gtk2/rbgtklabel.c +46 -57
- data/ext/gtk2/rbgtklayout.c +40 -29
- data/ext/gtk2/rbgtklinkbutton.c +26 -15
- data/ext/gtk2/rbgtkliststore.c +145 -102
- data/ext/gtk2/rbgtkmacros.h +19 -6
- data/ext/gtk2/rbgtkmenu.c +47 -59
- data/ext/gtk2/rbgtkmenubar.c +30 -30
- data/ext/gtk2/rbgtkmenuitem.c +34 -41
- data/ext/gtk2/rbgtkmenushell.c +43 -42
- data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
- data/ext/gtk2/rbgtkmessagedialog.c +31 -25
- data/ext/gtk2/rbgtkmisc.c +33 -22
- data/ext/gtk2/rbgtknotebook.c +98 -134
- data/ext/gtk2/rbgtkobject.c +46 -81
- data/ext/gtk2/rbgtkoptionmenu.c +35 -23
- data/ext/gtk2/rbgtkpagesetup.c +64 -54
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
- data/ext/gtk2/rbgtkpaned.c +46 -36
- data/ext/gtk2/rbgtkpapersize.c +60 -54
- data/ext/gtk2/rbgtkplug.c +32 -20
- data/ext/gtk2/rbgtkprintcontext.c +43 -35
- data/ext/gtk2/rbgtkprinter.c +36 -37
- data/ext/gtk2/rbgtkprintjob.c +36 -37
- data/ext/gtk2/rbgtkprintoperation.c +44 -33
- data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
- data/ext/gtk2/rbgtkprintsettings.c +248 -192
- data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
- data/ext/gtk2/rbgtkprogress.c +23 -13
- data/ext/gtk2/rbgtkprogressbar.c +47 -46
- data/ext/gtk2/rbgtkradioaction.c +84 -39
- data/ext/gtk2/rbgtkradiobutton.c +33 -21
- data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
- data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
- data/ext/gtk2/rbgtkrange.c +36 -56
- data/ext/gtk2/rbgtkrc.c +61 -49
- data/ext/gtk2/rbgtkrcstyle.c +59 -48
- data/ext/gtk2/rbgtkrecentaction.c +28 -16
- data/ext/gtk2/rbgtkrecentchooser.c +58 -92
- data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
- data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
- data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
- data/ext/gtk2/rbgtkrecentdata.c +47 -36
- data/ext/gtk2/rbgtkrecentfilter.c +55 -46
- data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
- data/ext/gtk2/rbgtkrecentinfo.c +66 -56
- data/ext/gtk2/rbgtkrecentmanager.c +47 -43
- data/ext/gtk2/rbgtkruler.c +35 -30
- data/ext/gtk2/rbgtkscale.c +29 -18
- data/ext/gtk2/rbgtkscalebutton.c +27 -27
- data/ext/gtk2/rbgtkscrollbar.c +23 -13
- data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
- data/ext/gtk2/rbgtkselection.c +87 -67
- data/ext/gtk2/rbgtkselectiondata.c +74 -65
- data/ext/gtk2/rbgtkseparator.c +23 -13
- data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
- data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
- data/ext/gtk2/rbgtksettings.c +123 -103
- data/ext/gtk2/rbgtksizegroup.c +33 -30
- data/ext/gtk2/rbgtksocket.c +32 -20
- data/ext/gtk2/rbgtkspinbutton.c +48 -38
- data/ext/gtk2/rbgtkspinner.c +27 -14
- data/ext/gtk2/rbgtkstatusbar.c +36 -31
- data/ext/gtk2/rbgtkstatusicon.c +31 -44
- data/ext/gtk2/rbgtkstock.c +137 -125
- data/ext/gtk2/rbgtkstyle.c +177 -161
- data/ext/gtk2/rbgtktable.c +58 -47
- data/ext/gtk2/rbgtktargetlist.c +56 -36
- data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
- data/ext/gtk2/rbgtktextappearance.c +44 -34
- data/ext/gtk2/rbgtktextattributes.c +54 -42
- data/ext/gtk2/rbgtktextbuffer.c +188 -191
- data/ext/gtk2/rbgtktextchild.c +29 -18
- data/ext/gtk2/rbgtktextiter.c +153 -145
- data/ext/gtk2/rbgtktextmark.c +33 -30
- data/ext/gtk2/rbgtktexttag.c +34 -22
- data/ext/gtk2/rbgtktexttagtable.c +36 -25
- data/ext/gtk2/rbgtktextview.c +85 -73
- data/ext/gtk2/rbgtktoggleaction.c +27 -22
- data/ext/gtk2/rbgtktogglebutton.c +37 -26
- data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
- data/ext/gtk2/rbgtktoolbar.c +66 -69
- data/ext/gtk2/rbgtktoolbutton.c +27 -40
- data/ext/gtk2/rbgtktoolitem.c +60 -62
- data/ext/gtk2/rbgtktooltip.c +36 -25
- data/ext/gtk2/rbgtktooltips.c +42 -34
- data/ext/gtk2/rbgtktreedragdest.c +20 -11
- data/ext/gtk2/rbgtktreedragsource.c +20 -11
- data/ext/gtk2/rbgtktreeiter.c +58 -47
- data/ext/gtk2/rbgtktreemodel.c +83 -65
- data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
- data/ext/gtk2/rbgtktreemodelsort.c +38 -27
- data/ext/gtk2/rbgtktreepath.c +55 -44
- data/ext/gtk2/rbgtktreerowreference.c +60 -42
- data/ext/gtk2/rbgtktreeselection.c +61 -52
- data/ext/gtk2/rbgtktreesortable.c +52 -42
- data/ext/gtk2/rbgtktreestore.c +88 -67
- data/ext/gtk2/rbgtktreeview.c +157 -185
- data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
- data/ext/gtk2/rbgtkuimanager.c +61 -61
- data/ext/gtk2/rbgtkvbbox.c +28 -16
- data/ext/gtk2/rbgtkvbox.c +29 -17
- data/ext/gtk2/rbgtkviewport.c +28 -16
- data/ext/gtk2/rbgtkvolumebutton.c +28 -16
- data/ext/gtk2/rbgtkvpaned.c +28 -16
- data/ext/gtk2/rbgtkvruler.c +28 -16
- data/ext/gtk2/rbgtkvscale.c +28 -16
- data/ext/gtk2/rbgtkvscrollbar.c +28 -16
- data/ext/gtk2/rbgtkvseparator.c +28 -16
- data/ext/gtk2/rbgtkwidget.c +284 -296
- data/ext/gtk2/rbgtkwindow.c +156 -214
- data/ext/gtk2/rbgtkwindowgroup.c +35 -24
- data/lib/1.8/gtk2.so +0 -0
- data/lib/1.9/gtk2.so +0 -0
- data/sample/testgtk/labels.rb +1 -0
- data/sample/testgtk/testgtk.rb +2 -0
- data/vendor/local/bin/gtk-builder-convert +29 -2
- 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/gtk.immodules +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
- data/vendor/local/lib/gailutil.lib +0 -0
- data/vendor/local/lib/gdk-win32-2.0.lib +0 -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/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gail.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
- data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
- data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
- data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
- data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
- data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
- data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
- data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
- data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
- data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
- data/vendor/local/share/icons/hicolor/index.theme +1662 -0
- data/vendor/local/share/locale/be/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/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/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.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/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/gl/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/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/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/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/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/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/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.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.mo +0 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
- data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
- metadata +29 -31
- data/ChangeLog +0 -6902
- data/ext/gtk2/rbgtkmain.c +0 -493
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
@@ -4,11 +4,11 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkIconView</title>
|
6
6
|
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
|
7
|
-
<link rel="home" href="index.html" title="GTK+ Reference Manual">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
|
8
8
|
<link rel="up" href="TreeWidgetObjects.html" title="Tree, List and Icon Grid Widgets">
|
9
9
|
<link rel="prev" href="GtkCellView.html" title="GtkCellView">
|
10
10
|
<link rel="next" href="GtkTreeSortable.html" title="GtkTreeSortable">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<td><a accesskey="p" href="GtkCellView.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="TreeWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
19
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
-
<th width="100%" align="center">GTK+ Reference Manual</th>
|
20
|
+
<th width="100%" align="center">GTK+ 2 Reference Manual</th>
|
21
21
|
<td><a accesskey="n" href="GtkTreeSortable.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
@@ -36,7 +36,7 @@
|
|
36
36
|
<a href="#GtkIconView.signals" class="shortcut">Signals</a>
|
37
37
|
</td></tr>
|
38
38
|
</table>
|
39
|
-
<div class="refentry"
|
39
|
+
<div class="refentry">
|
40
40
|
<a name="GtkIconView"></a><div class="titlepage"></div>
|
41
41
|
<div class="refnamediv"><table width="100%"><tr>
|
42
42
|
<td valign="top">
|
@@ -45,14 +45,14 @@
|
|
45
45
|
</td>
|
46
46
|
<td valign="top" align="right"><img src="icon-view.png"></td>
|
47
47
|
</tr></table></div>
|
48
|
-
<div class="refsynopsisdiv"
|
48
|
+
<div class="refsynopsisdiv">
|
49
49
|
<a name="GtkIconView.synopsis"></a><h2>Synopsis</h2>
|
50
50
|
<pre class="synopsis">
|
51
51
|
#include <gtk/gtk.h>
|
52
52
|
|
53
|
-
|
53
|
+
struct <a class="link" href="GtkIconView.html#GtkIconView-struct" title="struct GtkIconView">GtkIconView</a>;
|
54
54
|
<span class="returnvalue">void</span> (<a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()">*GtkIconViewForeachFunc</a>) (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
55
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
55
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
56
56
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
|
57
57
|
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkIconView.html#gtk-icon-view-new" title="gtk_icon_view_new ()">gtk_icon_view_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
58
58
|
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <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> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
|
@@ -68,13 +68,13 @@
|
|
68
68
|
<span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
69
69
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
70
70
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
|
71
|
-
<a class="link" href="GtkTreeModel.html#GtkTreePath"
|
71
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
72
72
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
73
73
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
|
74
74
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
75
75
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
76
76
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
|
77
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
77
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
78
78
|
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);
|
79
79
|
<span class="returnvalue">void</span> <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>
|
80
80
|
(<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
@@ -83,11 +83,11 @@
|
|
83
83
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *bx</code></em>,
|
84
84
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *by</code></em>);
|
85
85
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-set-cursor" title="gtk_icon_view_set_cursor ()">gtk_icon_view_set_cursor</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
86
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
86
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
87
87
|
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
|
88
88
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> start_editing</code></em>);
|
89
89
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkIconView.html#gtk-icon-view-get-cursor" title="gtk_icon_view_get_cursor ()">gtk_icon_view_get_cursor</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
90
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
90
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
91
91
|
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);
|
92
92
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-selected-foreach" title="gtk_icon_view_selected_foreach ()">gtk_icon_view_selected_foreach</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
93
93
|
<em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()"><span class="type">GtkIconViewForeachFunc</span></a> func</code></em>,
|
@@ -123,58 +123,58 @@
|
|
123
123
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item_padding</code></em>);
|
124
124
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
|
125
125
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-select-path" title="gtk_icon_view_select_path ()">gtk_icon_view_select_path</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
126
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
126
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
|
127
127
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-unselect-path" title="gtk_icon_view_unselect_path ()">gtk_icon_view_unselect_path</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
128
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
128
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
|
129
129
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
130
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
130
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
|
131
131
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
|
132
132
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-select-all" title="gtk_icon_view_select_all ()">gtk_icon_view_select_all</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
|
133
133
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-unselect-all" title="gtk_icon_view_unselect_all ()">gtk_icon_view_unselect_all</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
|
134
134
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconView.html#gtk-icon-view-item-activated" title="gtk_icon_view_item_activated ()">gtk_icon_view_item_activated</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
135
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
135
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
|
136
136
|
<span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
137
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
137
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
138
138
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_align</code></em>,
|
139
139
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> row_align</code></em>,
|
140
140
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> col_align</code></em>);
|
141
141
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
142
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
143
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
142
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
|
143
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);
|
144
144
|
<span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
145
145
|
<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
|
146
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
146
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
|
147
147
|
<span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
148
148
|
<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
|
149
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
149
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
150
150
|
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);
|
151
151
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
152
152
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
|
153
153
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
|
154
154
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> keyboard_tip</code></em>,
|
155
155
|
<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
|
156
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
157
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"
|
156
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
157
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
|
158
158
|
<span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
159
159
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
160
160
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
|
161
161
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
162
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
162
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
|
163
163
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
164
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
164
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
|
165
165
|
|
166
166
|
enum <a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition">GtkIconViewDropPosition</a>;
|
167
167
|
<span class="returnvalue">void</span> <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>
|
168
168
|
(<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
169
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
170
|
-
<em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
|
169
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
|
170
|
+
<em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
|
171
171
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
|
172
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
172
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
|
173
173
|
<span class="returnvalue">void</span> <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>
|
174
174
|
(<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
175
|
-
<em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
|
175
|
+
<em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
|
176
176
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
|
177
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
177
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
|
178
178
|
<span class="returnvalue">void</span> <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>
|
179
179
|
(<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
|
180
180
|
<span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
|
@@ -182,21 +182,21 @@ enum <a class="link" href="GtkIconView.html#GtkIconViewDropPositi
|
|
182
182
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> reorderable</code></em>);
|
183
183
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkIconView.html#gtk-icon-view-get-reorderable" title="gtk_icon_view_get_reorderable ()">gtk_icon_view_get_reorderable</a> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);
|
184
184
|
<span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
185
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
185
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
186
186
|
<em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> pos</code></em>);
|
187
187
|
<span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
188
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
188
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
189
189
|
<em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);
|
190
190
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
191
191
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_x</code></em>,
|
192
192
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_y</code></em>,
|
193
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
193
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
194
194
|
<em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);
|
195
|
-
<a href="http://library.gnome.org/devel/
|
196
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
195
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a> * <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> (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
196
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
|
197
197
|
</pre>
|
198
198
|
</div>
|
199
|
-
<div class="refsect1"
|
199
|
+
<div class="refsect1">
|
200
200
|
<a name="GtkIconView.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
201
201
|
<pre class="synopsis">
|
202
202
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
@@ -207,13 +207,13 @@ enum <a class="link" href="GtkIconView.html#GtkIconViewDropPositi
|
|
207
207
|
+----GtkIconView
|
208
208
|
</pre>
|
209
209
|
</div>
|
210
|
-
<div class="refsect1"
|
210
|
+
<div class="refsect1">
|
211
211
|
<a name="GtkIconView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
212
212
|
<p>
|
213
213
|
GtkIconView implements
|
214
214
|
AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="GtkCellLayout.html" title="GtkCellLayout">GtkCellLayout</a>.</p>
|
215
215
|
</div>
|
216
|
-
<div class="refsect1"
|
216
|
+
<div class="refsect1">
|
217
217
|
<a name="GtkIconView.properties"></a><h2>Properties</h2>
|
218
218
|
<pre class="synopsis">
|
219
219
|
"<a class="link" href="GtkIconView.html#GtkIconView--column-spacing" title='The "column-spacing" property'>column-spacing</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
|
@@ -234,28 +234,28 @@ GtkIconView implements
|
|
234
234
|
"<a class="link" href="GtkIconView.html#GtkIconView--tooltip-column" title='The "tooltip-column" property'>tooltip-column</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
|
235
235
|
</pre>
|
236
236
|
</div>
|
237
|
-
<div class="refsect1"
|
237
|
+
<div class="refsect1">
|
238
238
|
<a name="GtkIconView.style-properties"></a><h2>Style Properties</h2>
|
239
239
|
<pre class="synopsis">
|
240
240
|
"<a class="link" href="GtkIconView.html#GtkIconView--s-selection-box-alpha" title='The "selection-box-alpha" style property'>selection-box-alpha</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guchar"><span class="type">guchar</span></a> : Read
|
241
|
-
"<a class="link" href="GtkIconView.html#GtkIconView--s-selection-box-color" title='The "selection-box-color" style property'>selection-box-color</a>" <a href="http://library.gnome.org/devel/
|
241
|
+
"<a class="link" href="GtkIconView.html#GtkIconView--s-selection-box-color" title='The "selection-box-color" style property'>selection-box-color</a>" <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read
|
242
242
|
</pre>
|
243
243
|
</div>
|
244
|
-
<div class="refsect1"
|
244
|
+
<div class="refsect1">
|
245
245
|
<a name="GtkIconView.signals"></a><h2>Signals</h2>
|
246
246
|
<pre class="synopsis">
|
247
|
-
"<a class="link" href="GtkIconView.html#GtkIconView-activate-cursor-item" title='The "activate-cursor-item" signal'>activate-cursor-item</a>" :
|
248
|
-
"<a class="link" href="GtkIconView.html#GtkIconView-item-activated" title='The "item-activated" signal'>item-activated</a>" : Run Last
|
249
|
-
"<a class="link" href="GtkIconView.html#GtkIconView-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" :
|
250
|
-
"<a class="link" href="GtkIconView.html#GtkIconView-select-all" title='The "select-all" signal'>select-all</a>" :
|
251
|
-
"<a class="link" href="GtkIconView.html#GtkIconView-select-cursor-item" title='The "select-cursor-item" signal'>select-cursor-item</a>" :
|
252
|
-
"<a class="link" href="GtkIconView.html#GtkIconView-selection-changed" title='The "selection-changed" signal'>selection-changed</a>" : Run First
|
253
|
-
"<a class="link" href="GtkIconView.html#GtkIconView-set-scroll-adjustments" title='The "set-scroll-adjustments" signal'>set-scroll-adjustments</a>" : Run Last
|
254
|
-
"<a class="link" href="GtkIconView.html#GtkIconView-toggle-cursor-item" title='The "toggle-cursor-item" signal'>toggle-cursor-item</a>" :
|
255
|
-
"<a class="link" href="GtkIconView.html#GtkIconView-unselect-all" title='The "unselect-all" signal'>unselect-all</a>" :
|
247
|
+
"<a class="link" href="GtkIconView.html#GtkIconView-activate-cursor-item" title='The "activate-cursor-item" signal'>activate-cursor-item</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
248
|
+
"<a class="link" href="GtkIconView.html#GtkIconView-item-activated" title='The "item-activated" signal'>item-activated</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
249
|
+
"<a class="link" href="GtkIconView.html#GtkIconView-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
250
|
+
"<a class="link" href="GtkIconView.html#GtkIconView-select-all" title='The "select-all" signal'>select-all</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
251
|
+
"<a class="link" href="GtkIconView.html#GtkIconView-select-cursor-item" title='The "select-cursor-item" signal'>select-cursor-item</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
252
|
+
"<a class="link" href="GtkIconView.html#GtkIconView-selection-changed" title='The "selection-changed" signal'>selection-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
|
253
|
+
"<a class="link" href="GtkIconView.html#GtkIconView-set-scroll-adjustments" title='The "set-scroll-adjustments" signal'>set-scroll-adjustments</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
254
|
+
"<a class="link" href="GtkIconView.html#GtkIconView-toggle-cursor-item" title='The "toggle-cursor-item" signal'>toggle-cursor-item</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
255
|
+
"<a class="link" href="GtkIconView.html#GtkIconView-unselect-all" title='The "unselect-all" signal'>unselect-all</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
256
256
|
</pre>
|
257
257
|
</div>
|
258
|
-
<div class="refsect1"
|
258
|
+
<div class="refsect1">
|
259
259
|
<a name="GtkIconView.description"></a><h2>Description</h2>
|
260
260
|
<p>
|
261
261
|
<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> provides an alternative view on a list model.
|
@@ -266,21 +266,21 @@ In addition to selection with the arrow keys, <a class="link" href="GtkIconView.
|
|
266
266
|
rubberband selection, which is controlled by dragging the pointer.
|
267
267
|
</p>
|
268
268
|
</div>
|
269
|
-
<div class="refsect1"
|
269
|
+
<div class="refsect1">
|
270
270
|
<a name="GtkIconView.details"></a><h2>Details</h2>
|
271
|
-
<div class="refsect2"
|
272
|
-
<a name="GtkIconView-struct"></a><h3>GtkIconView</h3>
|
273
|
-
<pre class="programlisting">
|
271
|
+
<div class="refsect2">
|
272
|
+
<a name="GtkIconView-struct"></a><h3>struct GtkIconView</h3>
|
273
|
+
<pre class="programlisting">struct GtkIconView;</pre>
|
274
274
|
<p>
|
275
275
|
The <span class="structname">GtkIconView</span> struct contains only
|
276
276
|
private fields and should not be directly accessed.
|
277
277
|
</p>
|
278
278
|
</div>
|
279
279
|
<hr>
|
280
|
-
<div class="refsect2"
|
280
|
+
<div class="refsect2">
|
281
281
|
<a name="GtkIconViewForeachFunc"></a><h3>GtkIconViewForeachFunc ()</h3>
|
282
282
|
<pre class="programlisting"><span class="returnvalue">void</span> (*GtkIconViewForeachFunc) (<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
283
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
283
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
284
284
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
285
285
|
<p>
|
286
286
|
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
|
@@ -296,19 +296,17 @@ selected rows. It will be called on every selected row in the view.
|
|
296
296
|
</tr>
|
297
297
|
<tr>
|
298
298
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
299
|
-
<td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
300
|
-
</td>
|
299
|
+
<td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of a selected row</td>
|
301
300
|
</tr>
|
302
301
|
<tr>
|
303
302
|
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
304
|
-
<td>user data
|
305
|
-
</td>
|
303
|
+
<td>user data</td>
|
306
304
|
</tr>
|
307
305
|
</tbody>
|
308
306
|
</table></div>
|
309
307
|
</div>
|
310
308
|
<hr>
|
311
|
-
<div class="refsect2"
|
309
|
+
<div class="refsect2">
|
312
310
|
<a name="gtk-icon-view-new"></a><h3>gtk_icon_view_new ()</h3>
|
313
311
|
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_icon_view_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
314
312
|
<p>
|
@@ -318,15 +316,13 @@ Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span
|
|
318
316
|
<col align="left" valign="top">
|
319
317
|
<tbody><tr>
|
320
318
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
321
|
-
<td>
|
322
|
-
|
323
|
-
</td>
|
319
|
+
<td>A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget</td>
|
324
320
|
</tr></tbody>
|
325
321
|
</table></div>
|
326
322
|
<p class="since">Since 2.6</p>
|
327
323
|
</div>
|
328
324
|
<hr>
|
329
|
-
<div class="refsect2"
|
325
|
+
<div class="refsect2">
|
330
326
|
<a name="gtk-icon-view-new-with-model"></a><h3>gtk_icon_view_new_with_model ()</h3>
|
331
327
|
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * 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>
|
332
328
|
<p>
|
@@ -337,21 +333,18 @@ Creates a new <a class="link" href="GtkIconView.html" title="GtkIconView"><span
|
|
337
333
|
<tbody>
|
338
334
|
<tr>
|
339
335
|
<td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
|
340
|
-
<td>The model
|
341
|
-
</td>
|
336
|
+
<td>The model.</td>
|
342
337
|
</tr>
|
343
338
|
<tr>
|
344
339
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
345
|
-
<td>
|
346
|
-
|
347
|
-
</td>
|
340
|
+
<td>A newly created <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> widget.</td>
|
348
341
|
</tr>
|
349
342
|
</tbody>
|
350
343
|
</table></div>
|
351
344
|
<p class="since">Since 2.6</p>
|
352
345
|
</div>
|
353
346
|
<hr>
|
354
|
-
<div class="refsect2"
|
347
|
+
<div class="refsect2">
|
355
348
|
<a name="gtk-icon-view-set-model"></a><h3>gtk_icon_view_set_model ()</h3>
|
356
349
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
357
350
|
<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
|
@@ -366,12 +359,11 @@ it will unset the old model.
|
|
366
359
|
<tbody>
|
367
360
|
<tr>
|
368
361
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
369
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
370
|
-
</td>
|
362
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
371
363
|
</tr>
|
372
364
|
<tr>
|
373
365
|
<td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
|
374
|
-
<td>
|
366
|
+
<td>The model. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
375
367
|
</td>
|
376
368
|
</tr>
|
377
369
|
</tbody>
|
@@ -379,7 +371,7 @@ it will unset the old model.
|
|
379
371
|
<p class="since">Since 2.6</p>
|
380
372
|
</div>
|
381
373
|
<hr>
|
382
|
-
<div class="refsect2"
|
374
|
+
<div class="refsect2">
|
383
375
|
<a name="gtk-icon-view-get-model"></a><h3>gtk_icon_view_get_model ()</h3>
|
384
376
|
<pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * 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>
|
385
377
|
<p>
|
@@ -396,8 +388,8 @@ model is unset.
|
|
396
388
|
</tr>
|
397
389
|
<tr>
|
398
390
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
399
|
-
<td>
|
400
|
-
|
391
|
+
<td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none is
|
392
|
+
currently being used. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
401
393
|
</td>
|
402
394
|
</tr>
|
403
395
|
</tbody>
|
@@ -405,7 +397,7 @@ model is unset.
|
|
405
397
|
<p class="since">Since 2.6</p>
|
406
398
|
</div>
|
407
399
|
<hr>
|
408
|
-
<div class="refsect2"
|
400
|
+
<div class="refsect2">
|
409
401
|
<a name="gtk-icon-view-set-text-column"></a><h3>gtk_icon_view_set_text_column ()</h3>
|
410
402
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
411
403
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
@@ -418,20 +410,18 @@ column must be of type <a href="http://library.gnome.org/devel/gobject/unstable/
|
|
418
410
|
<tbody>
|
419
411
|
<tr>
|
420
412
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
421
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
422
|
-
</td>
|
413
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
423
414
|
</tr>
|
424
415
|
<tr>
|
425
416
|
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
426
|
-
<td>A column in the currently used model, or -1 to display no text
|
427
|
-
</td>
|
417
|
+
<td>A column in the currently used model, or -1 to display no text</td>
|
428
418
|
</tr>
|
429
419
|
</tbody>
|
430
420
|
</table></div>
|
431
421
|
<p class="since">Since 2.6</p>
|
432
422
|
</div>
|
433
423
|
<hr>
|
434
|
-
<div class="refsect2"
|
424
|
+
<div class="refsect2">
|
435
425
|
<a name="gtk-icon-view-get-text-column"></a><h3>gtk_icon_view_get_text_column ()</h3>
|
436
426
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
437
427
|
<p>
|
@@ -442,21 +432,18 @@ Returns the column with text for <em class="parameter"><code>icon_view</code></e
|
|
442
432
|
<tbody>
|
443
433
|
<tr>
|
444
434
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
445
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
446
|
-
</td>
|
435
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
447
436
|
</tr>
|
448
437
|
<tr>
|
449
438
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
450
|
-
<td>
|
451
|
-
|
452
|
-
</td>
|
439
|
+
<td>the text column, or -1 if it's unset.</td>
|
453
440
|
</tr>
|
454
441
|
</tbody>
|
455
442
|
</table></div>
|
456
443
|
<p class="since">Since 2.6</p>
|
457
444
|
</div>
|
458
445
|
<hr>
|
459
|
-
<div class="refsect2"
|
446
|
+
<div class="refsect2">
|
460
447
|
<a name="gtk-icon-view-set-markup-column"></a><h3>gtk_icon_view_set_markup_column ()</h3>
|
461
448
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
462
449
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
@@ -471,20 +458,18 @@ the text column set by <a class="link" href="GtkIconView.html#gtk-icon-view-set-
|
|
471
458
|
<tbody>
|
472
459
|
<tr>
|
473
460
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
474
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
475
|
-
</td>
|
461
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
476
462
|
</tr>
|
477
463
|
<tr>
|
478
464
|
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
479
|
-
<td>A column in the currently used model, or -1 to display no text
|
480
|
-
</td>
|
465
|
+
<td>A column in the currently used model, or -1 to display no text</td>
|
481
466
|
</tr>
|
482
467
|
</tbody>
|
483
468
|
</table></div>
|
484
469
|
<p class="since">Since 2.6</p>
|
485
470
|
</div>
|
486
471
|
<hr>
|
487
|
-
<div class="refsect2"
|
472
|
+
<div class="refsect2">
|
488
473
|
<a name="gtk-icon-view-get-markup-column"></a><h3>gtk_icon_view_get_markup_column ()</h3>
|
489
474
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
490
475
|
<p>
|
@@ -495,21 +480,18 @@ Returns the column with markup text for <em class="parameter"><code>icon_view</c
|
|
495
480
|
<tbody>
|
496
481
|
<tr>
|
497
482
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
498
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
499
|
-
</td>
|
483
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
500
484
|
</tr>
|
501
485
|
<tr>
|
502
486
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
503
|
-
<td>
|
504
|
-
|
505
|
-
</td>
|
487
|
+
<td>the markup column, or -1 if it's unset.</td>
|
506
488
|
</tr>
|
507
489
|
</tbody>
|
508
490
|
</table></div>
|
509
491
|
<p class="since">Since 2.6</p>
|
510
492
|
</div>
|
511
493
|
<hr>
|
512
|
-
<div class="refsect2"
|
494
|
+
<div class="refsect2">
|
513
495
|
<a name="gtk-icon-view-set-pixbuf-column"></a><h3>gtk_icon_view_set_pixbuf_column ()</h3>
|
514
496
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
515
497
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
@@ -522,20 +504,18 @@ column must be of type <span class="type">GDK_TYPE_PIXBUF</span>
|
|
522
504
|
<tbody>
|
523
505
|
<tr>
|
524
506
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
525
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
526
|
-
</td>
|
507
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
527
508
|
</tr>
|
528
509
|
<tr>
|
529
510
|
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
530
|
-
<td>A column in the currently used model, or -1 to disable
|
531
|
-
</td>
|
511
|
+
<td>A column in the currently used model, or -1 to disable</td>
|
532
512
|
</tr>
|
533
513
|
</tbody>
|
534
514
|
</table></div>
|
535
515
|
<p class="since">Since 2.6</p>
|
536
516
|
</div>
|
537
517
|
<hr>
|
538
|
-
<div class="refsect2"
|
518
|
+
<div class="refsect2">
|
539
519
|
<a name="gtk-icon-view-get-pixbuf-column"></a><h3>gtk_icon_view_get_pixbuf_column ()</h3>
|
540
520
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
541
521
|
<p>
|
@@ -546,23 +526,20 @@ Returns the column with pixbufs for <em class="parameter"><code>icon_view</code>
|
|
546
526
|
<tbody>
|
547
527
|
<tr>
|
548
528
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
549
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
550
|
-
</td>
|
529
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
551
530
|
</tr>
|
552
531
|
<tr>
|
553
532
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
554
|
-
<td>
|
555
|
-
|
556
|
-
</td>
|
533
|
+
<td>the pixbuf column, or -1 if it's unset.</td>
|
557
534
|
</tr>
|
558
535
|
</tbody>
|
559
536
|
</table></div>
|
560
537
|
<p class="since">Since 2.6</p>
|
561
538
|
</div>
|
562
539
|
<hr>
|
563
|
-
<div class="refsect2"
|
540
|
+
<div class="refsect2">
|
564
541
|
<a name="gtk-icon-view-get-path-at-pos"></a><h3>gtk_icon_view_get_path_at_pos ()</h3>
|
565
|
-
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
542
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * 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>,
|
566
543
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
567
544
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
|
568
545
|
<p>
|
@@ -577,37 +554,32 @@ widget coordinates to bin_window coordinates.
|
|
577
554
|
<tbody>
|
578
555
|
<tr>
|
579
556
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
580
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
581
|
-
</td>
|
557
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
582
558
|
</tr>
|
583
559
|
<tr>
|
584
560
|
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
585
|
-
<td>The x position to be identified
|
586
|
-
</td>
|
561
|
+
<td>The x position to be identified</td>
|
587
562
|
</tr>
|
588
563
|
<tr>
|
589
564
|
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
590
|
-
<td>The y position to be identified
|
591
|
-
</td>
|
565
|
+
<td>The y position to be identified</td>
|
592
566
|
</tr>
|
593
567
|
<tr>
|
594
568
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
595
|
-
<td>
|
596
|
-
if no icon exists at that position
|
597
|
-
|
598
|
-
</td>
|
569
|
+
<td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> corresponding to the icon or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
570
|
+
if no icon exists at that position.</td>
|
599
571
|
</tr>
|
600
572
|
</tbody>
|
601
573
|
</table></div>
|
602
574
|
<p class="since">Since 2.6</p>
|
603
575
|
</div>
|
604
576
|
<hr>
|
605
|
-
<div class="refsect2"
|
577
|
+
<div class="refsect2">
|
606
578
|
<a name="gtk-icon-view-get-item-at-pos"></a><h3>gtk_icon_view_get_item_at_pos ()</h3>
|
607
579
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
|
608
580
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
609
581
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
|
610
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
582
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
611
583
|
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
|
612
584
|
<p>
|
613
585
|
Finds the path at the point (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>), relative to bin_window coordinates.
|
@@ -622,42 +594,38 @@ widget coordinates to bin_window coordinates.
|
|
622
594
|
<tbody>
|
623
595
|
<tr>
|
624
596
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
625
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
626
|
-
</td>
|
597
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
627
598
|
</tr>
|
628
599
|
<tr>
|
629
600
|
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
630
|
-
<td>The x position to be identified
|
631
|
-
</td>
|
601
|
+
<td>The x position to be identified</td>
|
632
602
|
</tr>
|
633
603
|
<tr>
|
634
604
|
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
635
|
-
<td>The y position to be identified
|
636
|
-
</td>
|
605
|
+
<td>The y position to be identified</td>
|
637
606
|
</tr>
|
638
607
|
<tr>
|
639
608
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
640
|
-
<td>
|
609
|
+
<td>Return location for the path, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
641
610
|
</td>
|
642
611
|
</tr>
|
643
612
|
<tr>
|
644
613
|
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
|
645
614
|
<td>Return location for the renderer responsible for the cell
|
646
|
-
|
615
|
+
at (<em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em>), or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
647
616
|
</td>
|
648
617
|
</tr>
|
649
618
|
<tr>
|
650
619
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
651
|
-
<td>
|
652
|
-
|
653
|
-
</td>
|
620
|
+
<td>
|
621
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an item exists at the specified position</td>
|
654
622
|
</tr>
|
655
623
|
</tbody>
|
656
624
|
</table></div>
|
657
625
|
<p class="since">Since 2.8</p>
|
658
626
|
</div>
|
659
627
|
<hr>
|
660
|
-
<div class="refsect2"
|
628
|
+
<div class="refsect2">
|
661
629
|
<a name="gtk-icon-view-convert-widget-to-bin-window-coords"></a><h3>gtk_icon_view_convert_widget_to_bin_window_coords ()</h3>
|
662
630
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_convert_widget_to_bin_window_coords
|
663
631
|
(<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
@@ -674,27 +642,25 @@ as expected by e.g. <a class="link" href="GtkIconView.html#gtk-icon-view-get-pat
|
|
674
642
|
<tbody>
|
675
643
|
<tr>
|
676
644
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
677
|
-
<td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
|
645
|
+
<td>a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
|
678
646
|
</td>
|
679
647
|
</tr>
|
680
648
|
<tr>
|
681
649
|
<td><p><span class="term"><em class="parameter"><code>wx</code></em> :</span></p></td>
|
682
|
-
<td>X coordinate relative to the widget
|
683
|
-
</td>
|
650
|
+
<td>X coordinate relative to the widget</td>
|
684
651
|
</tr>
|
685
652
|
<tr>
|
686
653
|
<td><p><span class="term"><em class="parameter"><code>wy</code></em> :</span></p></td>
|
687
|
-
<td>Y coordinate relative to the widget
|
688
|
-
</td>
|
654
|
+
<td>Y coordinate relative to the widget</td>
|
689
655
|
</tr>
|
690
656
|
<tr>
|
691
657
|
<td><p><span class="term"><em class="parameter"><code>bx</code></em> :</span></p></td>
|
692
|
-
<td>return location for bin_window X coordinate
|
658
|
+
<td>return location for bin_window X coordinate. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
693
659
|
</td>
|
694
660
|
</tr>
|
695
661
|
<tr>
|
696
662
|
<td><p><span class="term"><em class="parameter"><code>by</code></em> :</span></p></td>
|
697
|
-
<td>return location for bin_window Y coordinate
|
663
|
+
<td>return location for bin_window Y coordinate. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
698
664
|
</td>
|
699
665
|
</tr>
|
700
666
|
</tbody>
|
@@ -702,10 +668,10 @@ as expected by e.g. <a class="link" href="GtkIconView.html#gtk-icon-view-get-pat
|
|
702
668
|
<p class="since">Since 2.12</p>
|
703
669
|
</div>
|
704
670
|
<hr>
|
705
|
-
<div class="refsect2"
|
671
|
+
<div class="refsect2">
|
706
672
|
<a name="gtk-icon-view-set-cursor"></a><h3>gtk_icon_view_set_cursor ()</h3>
|
707
673
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
708
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
674
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
709
675
|
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>,
|
710
676
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> start_editing</code></em>);</pre>
|
711
677
|
<p>
|
@@ -730,29 +696,28 @@ Please note that editing can only happen when the widget is realized.
|
|
730
696
|
</tr>
|
731
697
|
<tr>
|
732
698
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
733
|
-
<td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
699
|
+
<td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
|
734
700
|
</td>
|
735
701
|
</tr>
|
736
702
|
<tr>
|
737
703
|
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
|
738
|
-
<td>
|
704
|
+
<td>One of the cell renderers of <em class="parameter"><code>icon_view</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
739
705
|
</td>
|
740
706
|
</tr>
|
741
707
|
<tr>
|
742
708
|
<td><p><span class="term"><em class="parameter"><code>start_editing</code></em> :</span></p></td>
|
743
709
|
<td>
|
744
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the specified cell should start being edited
|
745
|
-
</td>
|
710
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the specified cell should start being edited.</td>
|
746
711
|
</tr>
|
747
712
|
</tbody>
|
748
713
|
</table></div>
|
749
714
|
<p class="since">Since 2.8</p>
|
750
715
|
</div>
|
751
716
|
<hr>
|
752
|
-
<div class="refsect2"
|
717
|
+
<div class="refsect2">
|
753
718
|
<a name="gtk-icon-view-get-cursor"></a><h3>gtk_icon_view_get_cursor ()</h3>
|
754
719
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
|
755
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
720
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
756
721
|
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> **cell</code></em>);</pre>
|
757
722
|
<p>
|
758
723
|
Fills in <em class="parameter"><code>path</code></em> and <em class="parameter"><code>cell</code></em> with the current cursor path and cell.
|
@@ -760,7 +725,7 @@ If the cursor isn't currently set, then *<em class="parameter"><code>path</code>
|
|
760
725
|
If no cell currently has focus, then *<em class="parameter"><code>cell</code></em> will be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
761
726
|
</p>
|
762
727
|
<p>
|
763
|
-
The returned <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
728
|
+
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>.
|
764
729
|
</p>
|
765
730
|
<div class="variablelist"><table border="0">
|
766
731
|
<col align="left" valign="top">
|
@@ -772,26 +737,25 @@ The returned <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTree
|
|
772
737
|
</tr>
|
773
738
|
<tr>
|
774
739
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
775
|
-
<td>
|
740
|
+
<td>Return location for the current cursor path, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
776
741
|
</td>
|
777
742
|
</tr>
|
778
743
|
<tr>
|
779
744
|
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
|
780
|
-
<td>
|
745
|
+
<td>Return location the current focus cell, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
781
746
|
</td>
|
782
747
|
</tr>
|
783
748
|
<tr>
|
784
749
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
785
|
-
<td>
|
786
|
-
|
787
|
-
</td>
|
750
|
+
<td>
|
751
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the cursor is set.</td>
|
788
752
|
</tr>
|
789
753
|
</tbody>
|
790
754
|
</table></div>
|
791
755
|
<p class="since">Since 2.8</p>
|
792
756
|
</div>
|
793
757
|
<hr>
|
794
|
-
<div class="refsect2"
|
758
|
+
<div class="refsect2">
|
795
759
|
<a name="gtk-icon-view-selected-foreach"></a><h3>gtk_icon_view_selected_foreach ()</h3>
|
796
760
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
797
761
|
<em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewForeachFunc" title="GtkIconViewForeachFunc ()"><span class="type">GtkIconViewForeachFunc</span></a> func</code></em>,
|
@@ -805,25 +769,23 @@ selection cannot be modified from within this function.
|
|
805
769
|
<tbody>
|
806
770
|
<tr>
|
807
771
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
808
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
809
|
-
</td>
|
772
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
810
773
|
</tr>
|
811
774
|
<tr>
|
812
775
|
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
813
|
-
<td>The
|
776
|
+
<td>The function to call for each selected icon. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
|
814
777
|
</td>
|
815
778
|
</tr>
|
816
779
|
<tr>
|
817
780
|
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
818
|
-
<td>User data to pass to the function
|
819
|
-
</td>
|
781
|
+
<td>User data to pass to the function.</td>
|
820
782
|
</tr>
|
821
783
|
</tbody>
|
822
784
|
</table></div>
|
823
785
|
<p class="since">Since 2.6</p>
|
824
786
|
</div>
|
825
787
|
<hr>
|
826
|
-
<div class="refsect2"
|
788
|
+
<div class="refsect2">
|
827
789
|
<a name="gtk-icon-view-set-selection-mode"></a><h3>gtk_icon_view_set_selection_mode ()</h3>
|
828
790
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
829
791
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> mode</code></em>);</pre>
|
@@ -835,20 +797,18 @@ Sets the selection mode of the <em class="parameter"><code>icon_view</code></em>
|
|
835
797
|
<tbody>
|
836
798
|
<tr>
|
837
799
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
838
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
839
|
-
</td>
|
800
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
840
801
|
</tr>
|
841
802
|
<tr>
|
842
803
|
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
843
|
-
<td>The selection mode
|
844
|
-
</td>
|
804
|
+
<td>The selection mode</td>
|
845
805
|
</tr>
|
846
806
|
</tbody>
|
847
807
|
</table></div>
|
848
808
|
<p class="since">Since 2.6</p>
|
849
809
|
</div>
|
850
810
|
<hr>
|
851
|
-
<div class="refsect2"
|
811
|
+
<div class="refsect2">
|
852
812
|
<a name="gtk-icon-view-get-selection-mode"></a><h3>gtk_icon_view_get_selection_mode ()</h3>
|
853
813
|
<pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="returnvalue">GtkSelectionMode</span></a> 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>
|
854
814
|
<p>
|
@@ -859,25 +819,22 @@ Gets the selection mode of the <em class="parameter"><code>icon_view</code></em>
|
|
859
819
|
<tbody>
|
860
820
|
<tr>
|
861
821
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
862
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
863
|
-
</td>
|
822
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
864
823
|
</tr>
|
865
824
|
<tr>
|
866
825
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
867
|
-
<td>
|
868
|
-
|
869
|
-
</td>
|
826
|
+
<td>the current selection mode</td>
|
870
827
|
</tr>
|
871
828
|
</tbody>
|
872
829
|
</table></div>
|
873
830
|
<p class="since">Since 2.6</p>
|
874
831
|
</div>
|
875
832
|
<hr>
|
876
|
-
<div class="refsect2"
|
833
|
+
<div class="refsect2">
|
877
834
|
<a name="gtk-icon-view-set-orientation"></a><h3>gtk_icon_view_set_orientation ()</h3>
|
878
835
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
879
836
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
|
880
|
-
<div class="warning"
|
837
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
881
838
|
<h3 class="title">Warning</h3>
|
882
839
|
<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. 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>
|
883
840
|
</div>
|
@@ -895,18 +852,17 @@ are drawn beside the icons instead of below.
|
|
895
852
|
</tr>
|
896
853
|
<tr>
|
897
854
|
<td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
|
898
|
-
<td>the relative position of texts and icons
|
899
|
-
</td>
|
855
|
+
<td>the relative position of texts and icons</td>
|
900
856
|
</tr>
|
901
857
|
</tbody>
|
902
858
|
</table></div>
|
903
859
|
<p class="since">Since 2.6</p>
|
904
860
|
</div>
|
905
861
|
<hr>
|
906
|
-
<div class="refsect2"
|
862
|
+
<div class="refsect2">
|
907
863
|
<a name="gtk-icon-view-get-orientation"></a><h3>gtk_icon_view_get_orientation ()</h3>
|
908
864
|
<pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> 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>
|
909
|
-
<div class="warning"
|
865
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
910
866
|
<h3 class="title">Warning</h3>
|
911
867
|
<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. 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>
|
912
868
|
</div>
|
@@ -924,16 +880,14 @@ whether the labels are drawn beside the icons instead of below.
|
|
924
880
|
</tr>
|
925
881
|
<tr>
|
926
882
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
927
|
-
<td>
|
928
|
-
|
929
|
-
</td>
|
883
|
+
<td>the relative position of texts and icons</td>
|
930
884
|
</tr>
|
931
885
|
</tbody>
|
932
886
|
</table></div>
|
933
887
|
<p class="since">Since 2.6</p>
|
934
888
|
</div>
|
935
889
|
<hr>
|
936
|
-
<div class="refsect2"
|
890
|
+
<div class="refsect2">
|
937
891
|
<a name="gtk-icon-view-set-item-orientation"></a><h3>gtk_icon_view_set_item_orientation ()</h3>
|
938
892
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
939
893
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
|
@@ -951,15 +905,14 @@ the labels are drawn beside the icons instead of below.
|
|
951
905
|
</tr>
|
952
906
|
<tr>
|
953
907
|
<td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
|
954
|
-
<td>the relative position of texts and icons
|
955
|
-
</td>
|
908
|
+
<td>the relative position of texts and icons</td>
|
956
909
|
</tr>
|
957
910
|
</tbody>
|
958
911
|
</table></div>
|
959
912
|
<p class="since">Since 2.22</p>
|
960
913
|
</div>
|
961
914
|
<hr>
|
962
|
-
<div class="refsect2"
|
915
|
+
<div class="refsect2">
|
963
916
|
<a name="gtk-icon-view-get-item-orientation"></a><h3>gtk_icon_view_get_item_orientation ()</h3>
|
964
917
|
<pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> 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>
|
965
918
|
<p>
|
@@ -976,16 +929,14 @@ whether the labels are drawn beside the icons instead of below.
|
|
976
929
|
</tr>
|
977
930
|
<tr>
|
978
931
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
979
|
-
<td>
|
980
|
-
|
981
|
-
</td>
|
932
|
+
<td>the relative position of texts and icons</td>
|
982
933
|
</tr>
|
983
934
|
</tbody>
|
984
935
|
</table></div>
|
985
936
|
<p class="since">Since 2.22</p>
|
986
937
|
</div>
|
987
938
|
<hr>
|
988
|
-
<div class="refsect2"
|
939
|
+
<div class="refsect2">
|
989
940
|
<a name="gtk-icon-view-set-columns"></a><h3>gtk_icon_view_set_columns ()</h3>
|
990
941
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
991
942
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>);</pre>
|
@@ -1005,15 +956,14 @@ to fill the available area.
|
|
1005
956
|
</tr>
|
1006
957
|
<tr>
|
1007
958
|
<td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
|
1008
|
-
<td>the number of columns
|
1009
|
-
</td>
|
959
|
+
<td>the number of columns</td>
|
1010
960
|
</tr>
|
1011
961
|
</tbody>
|
1012
962
|
</table></div>
|
1013
963
|
<p class="since">Since 2.6</p>
|
1014
964
|
</div>
|
1015
965
|
<hr>
|
1016
|
-
<div class="refsect2"
|
966
|
+
<div class="refsect2">
|
1017
967
|
<a name="gtk-icon-view-get-columns"></a><h3>gtk_icon_view_get_columns ()</h3>
|
1018
968
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
1019
969
|
<p>
|
@@ -1029,16 +979,14 @@ Returns the value of the ::columns property.
|
|
1029
979
|
</tr>
|
1030
980
|
<tr>
|
1031
981
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1032
|
-
<td>
|
1033
|
-
|
1034
|
-
</td>
|
982
|
+
<td>the number of columns, or -1</td>
|
1035
983
|
</tr>
|
1036
984
|
</tbody>
|
1037
985
|
</table></div>
|
1038
986
|
<p class="since">Since 2.6</p>
|
1039
987
|
</div>
|
1040
988
|
<hr>
|
1041
|
-
<div class="refsect2"
|
989
|
+
<div class="refsect2">
|
1042
990
|
<a name="gtk-icon-view-set-item-width"></a><h3>gtk_icon_view_set_item_width ()</h3>
|
1043
991
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1044
992
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item_width</code></em>);</pre>
|
@@ -1057,15 +1005,14 @@ automatically determine a suitable item size.
|
|
1057
1005
|
</tr>
|
1058
1006
|
<tr>
|
1059
1007
|
<td><p><span class="term"><em class="parameter"><code>item_width</code></em> :</span></p></td>
|
1060
|
-
<td>the width for each item
|
1061
|
-
</td>
|
1008
|
+
<td>the width for each item</td>
|
1062
1009
|
</tr>
|
1063
1010
|
</tbody>
|
1064
1011
|
</table></div>
|
1065
1012
|
<p class="since">Since 2.6</p>
|
1066
1013
|
</div>
|
1067
1014
|
<hr>
|
1068
|
-
<div class="refsect2"
|
1015
|
+
<div class="refsect2">
|
1069
1016
|
<a name="gtk-icon-view-get-item-width"></a><h3>gtk_icon_view_get_item_width ()</h3>
|
1070
1017
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
1071
1018
|
<p>
|
@@ -1081,16 +1028,14 @@ Returns the value of the ::item-width property.
|
|
1081
1028
|
</tr>
|
1082
1029
|
<tr>
|
1083
1030
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1084
|
-
<td>
|
1085
|
-
|
1086
|
-
</td>
|
1031
|
+
<td>the width of a single item, or -1</td>
|
1087
1032
|
</tr>
|
1088
1033
|
</tbody>
|
1089
1034
|
</table></div>
|
1090
1035
|
<p class="since">Since 2.6</p>
|
1091
1036
|
</div>
|
1092
1037
|
<hr>
|
1093
|
-
<div class="refsect2"
|
1038
|
+
<div class="refsect2">
|
1094
1039
|
<a name="gtk-icon-view-set-spacing"></a><h3>gtk_icon_view_set_spacing ()</h3>
|
1095
1040
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1096
1041
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> spacing</code></em>);</pre>
|
@@ -1109,15 +1054,14 @@ the text) of an item.
|
|
1109
1054
|
</tr>
|
1110
1055
|
<tr>
|
1111
1056
|
<td><p><span class="term"><em class="parameter"><code>spacing</code></em> :</span></p></td>
|
1112
|
-
<td>the spacing
|
1113
|
-
</td>
|
1057
|
+
<td>the spacing</td>
|
1114
1058
|
</tr>
|
1115
1059
|
</tbody>
|
1116
1060
|
</table></div>
|
1117
1061
|
<p class="since">Since 2.6</p>
|
1118
1062
|
</div>
|
1119
1063
|
<hr>
|
1120
|
-
<div class="refsect2"
|
1064
|
+
<div class="refsect2">
|
1121
1065
|
<a name="gtk-icon-view-get-spacing"></a><h3>gtk_icon_view_get_spacing ()</h3>
|
1122
1066
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
1123
1067
|
<p>
|
@@ -1133,16 +1077,14 @@ Returns the value of the ::spacing property.
|
|
1133
1077
|
</tr>
|
1134
1078
|
<tr>
|
1135
1079
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1136
|
-
<td>
|
1137
|
-
|
1138
|
-
</td>
|
1080
|
+
<td>the space between cells</td>
|
1139
1081
|
</tr>
|
1140
1082
|
</tbody>
|
1141
1083
|
</table></div>
|
1142
1084
|
<p class="since">Since 2.6</p>
|
1143
1085
|
</div>
|
1144
1086
|
<hr>
|
1145
|
-
<div class="refsect2"
|
1087
|
+
<div class="refsect2">
|
1146
1088
|
<a name="gtk-icon-view-set-row-spacing"></a><h3>gtk_icon_view_set_row_spacing ()</h3>
|
1147
1089
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1148
1090
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row_spacing</code></em>);</pre>
|
@@ -1160,15 +1102,14 @@ which is inserted between the rows of the icon view.
|
|
1160
1102
|
</tr>
|
1161
1103
|
<tr>
|
1162
1104
|
<td><p><span class="term"><em class="parameter"><code>row_spacing</code></em> :</span></p></td>
|
1163
|
-
<td>the row spacing
|
1164
|
-
</td>
|
1105
|
+
<td>the row spacing</td>
|
1165
1106
|
</tr>
|
1166
1107
|
</tbody>
|
1167
1108
|
</table></div>
|
1168
1109
|
<p class="since">Since 2.6</p>
|
1169
1110
|
</div>
|
1170
1111
|
<hr>
|
1171
|
-
<div class="refsect2"
|
1112
|
+
<div class="refsect2">
|
1172
1113
|
<a name="gtk-icon-view-get-row-spacing"></a><h3>gtk_icon_view_get_row_spacing ()</h3>
|
1173
1114
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
1174
1115
|
<p>
|
@@ -1184,16 +1125,14 @@ Returns the value of the ::row-spacing property.
|
|
1184
1125
|
</tr>
|
1185
1126
|
<tr>
|
1186
1127
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1187
|
-
<td>
|
1188
|
-
|
1189
|
-
</td>
|
1128
|
+
<td>the space between rows</td>
|
1190
1129
|
</tr>
|
1191
1130
|
</tbody>
|
1192
1131
|
</table></div>
|
1193
1132
|
<p class="since">Since 2.6</p>
|
1194
1133
|
</div>
|
1195
1134
|
<hr>
|
1196
|
-
<div class="refsect2"
|
1135
|
+
<div class="refsect2">
|
1197
1136
|
<a name="gtk-icon-view-set-column-spacing"></a><h3>gtk_icon_view_set_column_spacing ()</h3>
|
1198
1137
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1199
1138
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column_spacing</code></em>);</pre>
|
@@ -1211,15 +1150,14 @@ which is inserted between the columns of the icon view.
|
|
1211
1150
|
</tr>
|
1212
1151
|
<tr>
|
1213
1152
|
<td><p><span class="term"><em class="parameter"><code>column_spacing</code></em> :</span></p></td>
|
1214
|
-
<td>the column spacing
|
1215
|
-
</td>
|
1153
|
+
<td>the column spacing</td>
|
1216
1154
|
</tr>
|
1217
1155
|
</tbody>
|
1218
1156
|
</table></div>
|
1219
1157
|
<p class="since">Since 2.6</p>
|
1220
1158
|
</div>
|
1221
1159
|
<hr>
|
1222
|
-
<div class="refsect2"
|
1160
|
+
<div class="refsect2">
|
1223
1161
|
<a name="gtk-icon-view-get-column-spacing"></a><h3>gtk_icon_view_get_column_spacing ()</h3>
|
1224
1162
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
1225
1163
|
<p>
|
@@ -1235,16 +1173,14 @@ Returns the value of the ::column-spacing property.
|
|
1235
1173
|
</tr>
|
1236
1174
|
<tr>
|
1237
1175
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1238
|
-
<td>
|
1239
|
-
|
1240
|
-
</td>
|
1176
|
+
<td>the space between columns</td>
|
1241
1177
|
</tr>
|
1242
1178
|
</tbody>
|
1243
1179
|
</table></div>
|
1244
1180
|
<p class="since">Since 2.6</p>
|
1245
1181
|
</div>
|
1246
1182
|
<hr>
|
1247
|
-
<div class="refsect2"
|
1183
|
+
<div class="refsect2">
|
1248
1184
|
<a name="gtk-icon-view-set-margin"></a><h3>gtk_icon_view_set_margin ()</h3>
|
1249
1185
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1250
1186
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> margin</code></em>);</pre>
|
@@ -1263,15 +1199,14 @@ of the icon view.
|
|
1263
1199
|
</tr>
|
1264
1200
|
<tr>
|
1265
1201
|
<td><p><span class="term"><em class="parameter"><code>margin</code></em> :</span></p></td>
|
1266
|
-
<td>the margin
|
1267
|
-
</td>
|
1202
|
+
<td>the margin</td>
|
1268
1203
|
</tr>
|
1269
1204
|
</tbody>
|
1270
1205
|
</table></div>
|
1271
1206
|
<p class="since">Since 2.6</p>
|
1272
1207
|
</div>
|
1273
1208
|
<hr>
|
1274
|
-
<div class="refsect2"
|
1209
|
+
<div class="refsect2">
|
1275
1210
|
<a name="gtk-icon-view-get-margin"></a><h3>gtk_icon_view_get_margin ()</h3>
|
1276
1211
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
1277
1212
|
<p>
|
@@ -1287,16 +1222,14 @@ Returns the value of the ::margin property.
|
|
1287
1222
|
</tr>
|
1288
1223
|
<tr>
|
1289
1224
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1290
|
-
<td>
|
1291
|
-
|
1292
|
-
</td>
|
1225
|
+
<td>the space at the borders</td>
|
1293
1226
|
</tr>
|
1294
1227
|
</tbody>
|
1295
1228
|
</table></div>
|
1296
1229
|
<p class="since">Since 2.6</p>
|
1297
1230
|
</div>
|
1298
1231
|
<hr>
|
1299
|
-
<div class="refsect2"
|
1232
|
+
<div class="refsect2">
|
1300
1233
|
<a name="gtk-icon-view-set-item-padding"></a><h3>gtk_icon_view_set_item_padding ()</h3>
|
1301
1234
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1302
1235
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> item_padding</code></em>);</pre>
|
@@ -1314,15 +1247,14 @@ around each of the icon view's items.
|
|
1314
1247
|
</tr>
|
1315
1248
|
<tr>
|
1316
1249
|
<td><p><span class="term"><em class="parameter"><code>item_padding</code></em> :</span></p></td>
|
1317
|
-
<td>the item padding
|
1318
|
-
</td>
|
1250
|
+
<td>the item padding</td>
|
1319
1251
|
</tr>
|
1320
1252
|
</tbody>
|
1321
1253
|
</table></div>
|
1322
1254
|
<p class="since">Since 2.18</p>
|
1323
1255
|
</div>
|
1324
1256
|
<hr>
|
1325
|
-
<div class="refsect2"
|
1257
|
+
<div class="refsect2">
|
1326
1258
|
<a name="gtk-icon-view-get-item-padding"></a><h3>gtk_icon_view_get_item_padding ()</h3>
|
1327
1259
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
1328
1260
|
<p>
|
@@ -1338,19 +1270,17 @@ Returns the value of the ::item-padding property.
|
|
1338
1270
|
</tr>
|
1339
1271
|
<tr>
|
1340
1272
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1341
|
-
<td>
|
1342
|
-
|
1343
|
-
</td>
|
1273
|
+
<td>the padding around items</td>
|
1344
1274
|
</tr>
|
1345
1275
|
</tbody>
|
1346
1276
|
</table></div>
|
1347
1277
|
<p class="since">Since 2.18</p>
|
1348
1278
|
</div>
|
1349
1279
|
<hr>
|
1350
|
-
<div class="refsect2"
|
1280
|
+
<div class="refsect2">
|
1351
1281
|
<a name="gtk-icon-view-select-path"></a><h3>gtk_icon_view_select_path ()</h3>
|
1352
1282
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1353
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1283
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1354
1284
|
<p>
|
1355
1285
|
Selects the row at <em class="parameter"><code>path</code></em>.
|
1356
1286
|
</p>
|
@@ -1359,23 +1289,21 @@ Selects the row at <em class="parameter"><code>path</code></em>.
|
|
1359
1289
|
<tbody>
|
1360
1290
|
<tr>
|
1361
1291
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
1362
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
1363
|
-
</td>
|
1292
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
1364
1293
|
</tr>
|
1365
1294
|
<tr>
|
1366
1295
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1367
|
-
<td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1368
|
-
</td>
|
1296
|
+
<td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be selected.</td>
|
1369
1297
|
</tr>
|
1370
1298
|
</tbody>
|
1371
1299
|
</table></div>
|
1372
1300
|
<p class="since">Since 2.6</p>
|
1373
1301
|
</div>
|
1374
1302
|
<hr>
|
1375
|
-
<div class="refsect2"
|
1303
|
+
<div class="refsect2">
|
1376
1304
|
<a name="gtk-icon-view-unselect-path"></a><h3>gtk_icon_view_unselect_path ()</h3>
|
1377
1305
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1378
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1306
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1379
1307
|
<p>
|
1380
1308
|
Unselects the row at <em class="parameter"><code>path</code></em>.
|
1381
1309
|
</p>
|
@@ -1384,23 +1312,21 @@ Unselects the row at <em class="parameter"><code>path</code></em>.
|
|
1384
1312
|
<tbody>
|
1385
1313
|
<tr>
|
1386
1314
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
1387
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
1388
|
-
</td>
|
1315
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
1389
1316
|
</tr>
|
1390
1317
|
<tr>
|
1391
1318
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1392
|
-
<td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1393
|
-
</td>
|
1319
|
+
<td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be unselected.</td>
|
1394
1320
|
</tr>
|
1395
1321
|
</tbody>
|
1396
1322
|
</table></div>
|
1397
1323
|
<p class="since">Since 2.6</p>
|
1398
1324
|
</div>
|
1399
1325
|
<hr>
|
1400
|
-
<div class="refsect2"
|
1326
|
+
<div class="refsect2">
|
1401
1327
|
<a name="gtk-icon-view-path-is-selected"></a><h3>gtk_icon_view_path_is_selected ()</h3>
|
1402
1328
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
|
1403
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1329
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1404
1330
|
<p>
|
1405
1331
|
Returns <a href="http://library.gnome.org/devel/glib/unstable/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> is currently
|
1406
1332
|
selected. If <em class="parameter"><code>path</code></em> does not point to a valid location, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned.
|
@@ -1410,26 +1336,23 @@ selected. If <em class="parameter"><code>path</code></em> does not point to a va
|
|
1410
1336
|
<tbody>
|
1411
1337
|
<tr>
|
1412
1338
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
1413
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
1414
|
-
</td>
|
1339
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
1415
1340
|
</tr>
|
1416
1341
|
<tr>
|
1417
1342
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1418
|
-
<td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1419
|
-
</td>
|
1343
|
+
<td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to check selection on.</td>
|
1420
1344
|
</tr>
|
1421
1345
|
<tr>
|
1422
1346
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1423
|
-
<td>
|
1424
|
-
|
1425
|
-
</td>
|
1347
|
+
<td>
|
1348
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>path</code></em> is selected.</td>
|
1426
1349
|
</tr>
|
1427
1350
|
</tbody>
|
1428
1351
|
</table></div>
|
1429
1352
|
<p class="since">Since 2.6</p>
|
1430
1353
|
</div>
|
1431
1354
|
<hr>
|
1432
|
-
<div class="refsect2"
|
1355
|
+
<div class="refsect2">
|
1433
1356
|
<a name="gtk-icon-view-get-selected-items"></a><h3>gtk_icon_view_get_selected_items ()</h3>
|
1434
1357
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * 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>
|
1435
1358
|
<p>
|
@@ -1461,12 +1384,11 @@ To free the return value, use:
|
|
1461
1384
|
<tbody>
|
1462
1385
|
<tr>
|
1463
1386
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
1464
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
1465
|
-
</td>
|
1387
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
1466
1388
|
</tr>
|
1467
1389
|
<tr>
|
1468
1390
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1469
|
-
<td>
|
1391
|
+
<td>A <a href="http://library.gnome.org/devel/glib/unstable/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. <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>
|
1470
1392
|
</td>
|
1471
1393
|
</tr>
|
1472
1394
|
</tbody>
|
@@ -1474,7 +1396,7 @@ To free the return value, use:
|
|
1474
1396
|
<p class="since">Since 2.6</p>
|
1475
1397
|
</div>
|
1476
1398
|
<hr>
|
1477
|
-
<div class="refsect2"
|
1399
|
+
<div class="refsect2">
|
1478
1400
|
<a name="gtk-icon-view-select-all"></a><h3>gtk_icon_view_select_all ()</h3>
|
1479
1401
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>
|
1480
1402
|
<p>
|
@@ -1485,14 +1407,13 @@ to <a class="link" href="gtk-Standard-Enumerations.html#GTK-SELECTION-MULTIPLE:C
|
|
1485
1407
|
<col align="left" valign="top">
|
1486
1408
|
<tbody><tr>
|
1487
1409
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
1488
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
1489
|
-
</td>
|
1410
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
1490
1411
|
</tr></tbody>
|
1491
1412
|
</table></div>
|
1492
1413
|
<p class="since">Since 2.6</p>
|
1493
1414
|
</div>
|
1494
1415
|
<hr>
|
1495
|
-
<div class="refsect2"
|
1416
|
+
<div class="refsect2">
|
1496
1417
|
<a name="gtk-icon-view-unselect-all"></a><h3>gtk_icon_view_unselect_all ()</h3>
|
1497
1418
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>
|
1498
1419
|
<p>
|
@@ -1502,17 +1423,16 @@ Unselects all the icons.
|
|
1502
1423
|
<col align="left" valign="top">
|
1503
1424
|
<tbody><tr>
|
1504
1425
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
1505
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
1506
|
-
</td>
|
1426
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
1507
1427
|
</tr></tbody>
|
1508
1428
|
</table></div>
|
1509
1429
|
<p class="since">Since 2.6</p>
|
1510
1430
|
</div>
|
1511
1431
|
<hr>
|
1512
|
-
<div class="refsect2"
|
1432
|
+
<div class="refsect2">
|
1513
1433
|
<a name="gtk-icon-view-item-activated"></a><h3>gtk_icon_view_item_activated ()</h3>
|
1514
1434
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1515
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1435
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1516
1436
|
<p>
|
1517
1437
|
Activates the item determined by <em class="parameter"><code>path</code></em>.
|
1518
1438
|
</p>
|
@@ -1526,18 +1446,17 @@ Activates the item determined by <em class="parameter"><code>path</code></em>.
|
|
1526
1446
|
</tr>
|
1527
1447
|
<tr>
|
1528
1448
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1529
|
-
<td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1530
|
-
</td>
|
1449
|
+
<td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be activated</td>
|
1531
1450
|
</tr>
|
1532
1451
|
</tbody>
|
1533
1452
|
</table></div>
|
1534
1453
|
<p class="since">Since 2.6</p>
|
1535
1454
|
</div>
|
1536
1455
|
<hr>
|
1537
|
-
<div class="refsect2"
|
1456
|
+
<div class="refsect2">
|
1538
1457
|
<a name="gtk-icon-view-scroll-to-path"></a><h3>gtk_icon_view_scroll_to_path ()</h3>
|
1539
1458
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1540
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1459
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
1541
1460
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_align</code></em>,
|
1542
1461
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> row_align</code></em>,
|
1543
1462
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> col_align</code></em>);</pre>
|
@@ -1564,39 +1483,34 @@ centered path will be modified to reflect this change.
|
|
1564
1483
|
<tbody>
|
1565
1484
|
<tr>
|
1566
1485
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
1567
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
1568
|
-
</td>
|
1486
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
1569
1487
|
</tr>
|
1570
1488
|
<tr>
|
1571
1489
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1572
|
-
<td>The path of the item to move to
|
1573
|
-
</td>
|
1490
|
+
<td>The path of the item to move to.</td>
|
1574
1491
|
</tr>
|
1575
1492
|
<tr>
|
1576
1493
|
<td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
|
1577
|
-
<td>whether to use alignment arguments, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a
|
1578
|
-
</td>
|
1494
|
+
<td>whether to use alignment arguments, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
|
1579
1495
|
</tr>
|
1580
1496
|
<tr>
|
1581
1497
|
<td><p><span class="term"><em class="parameter"><code>row_align</code></em> :</span></p></td>
|
1582
|
-
<td>The vertical alignment of the item specified by <em class="parameter"><code>path</code></em
|
1583
|
-
</td>
|
1498
|
+
<td>The vertical alignment of the item specified by <em class="parameter"><code>path</code></em>.</td>
|
1584
1499
|
</tr>
|
1585
1500
|
<tr>
|
1586
1501
|
<td><p><span class="term"><em class="parameter"><code>col_align</code></em> :</span></p></td>
|
1587
|
-
<td>The horizontal alignment of the item specified by <em class="parameter"><code>path</code></em
|
1588
|
-
</td>
|
1502
|
+
<td>The horizontal alignment of the item specified by <em class="parameter"><code>path</code></em>.</td>
|
1589
1503
|
</tr>
|
1590
1504
|
</tbody>
|
1591
1505
|
</table></div>
|
1592
1506
|
<p class="since">Since 2.8</p>
|
1593
1507
|
</div>
|
1594
1508
|
<hr>
|
1595
|
-
<div class="refsect2"
|
1509
|
+
<div class="refsect2">
|
1596
1510
|
<a name="gtk-icon-view-get-visible-range"></a><h3>gtk_icon_view_get_visible_range ()</h3>
|
1597
1511
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
|
1598
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1599
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1512
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **start_path</code></em>,
|
1513
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **end_path</code></em>);</pre>
|
1600
1514
|
<p>
|
1601
1515
|
Sets <em class="parameter"><code>start_path</code></em> and <em class="parameter"><code>end_path</code></em> to be the first and last visible path.
|
1602
1516
|
Note that there may be invisible paths in between.
|
@@ -1614,18 +1528,18 @@ Both paths should be freed with <a class="link" href="GtkTreeModel.html#gtk-tree
|
|
1614
1528
|
</tr>
|
1615
1529
|
<tr>
|
1616
1530
|
<td><p><span class="term"><em class="parameter"><code>start_path</code></em> :</span></p></td>
|
1617
|
-
<td>
|
1531
|
+
<td>Return location for start of region, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1618
1532
|
</td>
|
1619
1533
|
</tr>
|
1620
1534
|
<tr>
|
1621
1535
|
<td><p><span class="term"><em class="parameter"><code>end_path</code></em> :</span></p></td>
|
1622
|
-
<td>
|
1536
|
+
<td>Return location for end of region, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1623
1537
|
</td>
|
1624
1538
|
</tr>
|
1625
1539
|
<tr>
|
1626
1540
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1627
|
-
<td>
|
1628
|
-
|
1541
|
+
<td>
|
1542
|
+
<a href="http://library.gnome.org/devel/glib/unstable/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> and <em class="parameter"><code>end_path</code></em>
|
1629
1543
|
</td>
|
1630
1544
|
</tr>
|
1631
1545
|
</tbody>
|
@@ -1633,11 +1547,11 @@ Both paths should be freed with <a class="link" href="GtkTreeModel.html#gtk-tree
|
|
1633
1547
|
<p class="since">Since 2.8</p>
|
1634
1548
|
</div>
|
1635
1549
|
<hr>
|
1636
|
-
<div class="refsect2"
|
1550
|
+
<div class="refsect2">
|
1637
1551
|
<a name="gtk-icon-view-set-tooltip-item"></a><h3>gtk_icon_view_set_tooltip_item ()</h3>
|
1638
1552
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1639
1553
|
<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
|
1640
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1554
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1641
1555
|
<p>
|
1642
1556
|
Sets the tip area of <em class="parameter"><code>tooltip</code></em> to be the area covered by the item at <em class="parameter"><code>path</code></em>.
|
1643
1557
|
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.
|
@@ -1658,7 +1572,7 @@ See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="
|
|
1658
1572
|
</tr>
|
1659
1573
|
<tr>
|
1660
1574
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1661
|
-
<td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1575
|
+
<td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
|
1662
1576
|
</td>
|
1663
1577
|
</tr>
|
1664
1578
|
</tbody>
|
@@ -1666,11 +1580,11 @@ See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="
|
|
1666
1580
|
<p class="since">Since 2.12</p>
|
1667
1581
|
</div>
|
1668
1582
|
<hr>
|
1669
|
-
<div class="refsect2"
|
1583
|
+
<div class="refsect2">
|
1670
1584
|
<a name="gtk-icon-view-set-tooltip-cell"></a><h3>gtk_icon_view_set_tooltip_cell ()</h3>
|
1671
1585
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1672
1586
|
<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
|
1673
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1587
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
1674
1588
|
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *cell</code></em>);</pre>
|
1675
1589
|
<p>
|
1676
1590
|
Sets the tip area of <em class="parameter"><code>tooltip</code></em> to the area which <em class="parameter"><code>cell</code></em> occupies in
|
@@ -1694,12 +1608,12 @@ See also <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column
|
|
1694
1608
|
</tr>
|
1695
1609
|
<tr>
|
1696
1610
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1697
|
-
<td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1611
|
+
<td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
|
1698
1612
|
</td>
|
1699
1613
|
</tr>
|
1700
1614
|
<tr>
|
1701
1615
|
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
|
1702
|
-
<td>
|
1616
|
+
<td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1703
1617
|
</td>
|
1704
1618
|
</tr>
|
1705
1619
|
</tbody>
|
@@ -1707,15 +1621,15 @@ See also <a class="link" href="GtkIconView.html#gtk-icon-view-set-tooltip-column
|
|
1707
1621
|
<p class="since">Since 2.12</p>
|
1708
1622
|
</div>
|
1709
1623
|
<hr>
|
1710
|
-
<div class="refsect2"
|
1624
|
+
<div class="refsect2">
|
1711
1625
|
<a name="gtk-icon-view-get-tooltip-context"></a><h3>gtk_icon_view_get_tooltip_context ()</h3>
|
1712
1626
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
|
1713
1627
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
|
1714
1628
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
|
1715
1629
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> keyboard_tip</code></em>,
|
1716
1630
|
<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
|
1717
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1718
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"
|
1631
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
1632
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
1719
1633
|
<p>
|
1720
1634
|
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>
|
1721
1635
|
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>, <em class="parameter"><code>y</code></em> and <em class="parameter"><code>keyboard_tip</code></em> values
|
@@ -1740,46 +1654,43 @@ to be relative to <em class="parameter"><code>icon_view</code></em>'s bin_window
|
|
1740
1654
|
</tr>
|
1741
1655
|
<tr>
|
1742
1656
|
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1743
|
-
<td>the x coordinate (relative to widget coordinates)
|
1657
|
+
<td>the x coordinate (relative to widget coordinates). <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
|
1744
1658
|
</td>
|
1745
1659
|
</tr>
|
1746
1660
|
<tr>
|
1747
1661
|
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1748
|
-
<td>the y coordinate (relative to widget coordinates)
|
1662
|
+
<td>the y coordinate (relative to widget coordinates). <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
|
1749
1663
|
</td>
|
1750
1664
|
</tr>
|
1751
1665
|
<tr>
|
1752
1666
|
<td><p><span class="term"><em class="parameter"><code>keyboard_tip</code></em> :</span></p></td>
|
1753
|
-
<td>whether this is a keyboard tooltip or not
|
1754
|
-
</td>
|
1667
|
+
<td>whether this is a keyboard tooltip or not</td>
|
1755
1668
|
</tr>
|
1756
1669
|
<tr>
|
1757
1670
|
<td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
|
1758
|
-
<td>
|
1671
|
+
<td>a pointer to receive a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <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>
|
1759
1672
|
</td>
|
1760
1673
|
</tr>
|
1761
1674
|
<tr>
|
1762
1675
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1763
|
-
<td>
|
1676
|
+
<td>a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <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>
|
1764
1677
|
</td>
|
1765
1678
|
</tr>
|
1766
1679
|
<tr>
|
1767
1680
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1768
|
-
<td>
|
1681
|
+
<td>a pointer to receive a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <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>
|
1769
1682
|
</td>
|
1770
1683
|
</tr>
|
1771
1684
|
<tr>
|
1772
1685
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1773
|
-
<td>
|
1774
|
-
|
1775
|
-
</td>
|
1686
|
+
<td>whether or not the given tooltip context points to a item</td>
|
1776
1687
|
</tr>
|
1777
1688
|
</tbody>
|
1778
1689
|
</table></div>
|
1779
1690
|
<p class="since">Since 2.12</p>
|
1780
1691
|
</div>
|
1781
1692
|
<hr>
|
1782
|
-
<div class="refsect2"
|
1693
|
+
<div class="refsect2">
|
1783
1694
|
<a name="gtk-icon-view-set-tooltip-column"></a><h3>gtk_icon_view_set_tooltip_column ()</h3>
|
1784
1695
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
1785
1696
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
@@ -1803,15 +1714,14 @@ When enabled, <span class="type">"has-tooltip"</span> will be set to <a href="ht
|
|
1803
1714
|
</tr>
|
1804
1715
|
<tr>
|
1805
1716
|
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1806
|
-
<td>an integer, which is a valid column number for <em class="parameter"><code>icon_view</code></em>'s model
|
1807
|
-
</td>
|
1717
|
+
<td>an integer, which is a valid column number for <em class="parameter"><code>icon_view</code></em>'s model</td>
|
1808
1718
|
</tr>
|
1809
1719
|
</tbody>
|
1810
1720
|
</table></div>
|
1811
1721
|
<p class="since">Since 2.12</p>
|
1812
1722
|
</div>
|
1813
1723
|
<hr>
|
1814
|
-
<div class="refsect2"
|
1724
|
+
<div class="refsect2">
|
1815
1725
|
<a name="gtk-icon-view-get-tooltip-column"></a><h3>gtk_icon_view_get_tooltip_column ()</h3>
|
1816
1726
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
1817
1727
|
<p>
|
@@ -1828,20 +1738,18 @@ displaying tooltips on <em class="parameter"><code>icon_view</code></em>'s rows.
|
|
1828
1738
|
</tr>
|
1829
1739
|
<tr>
|
1830
1740
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1831
|
-
<td>
|
1832
|
-
used, or -1 if this is disabled
|
1833
|
-
|
1834
|
-
</td>
|
1741
|
+
<td>the index of the tooltip column that is currently being
|
1742
|
+
used, or -1 if this is disabled.</td>
|
1835
1743
|
</tr>
|
1836
1744
|
</tbody>
|
1837
1745
|
</table></div>
|
1838
1746
|
<p class="since">Since 2.12</p>
|
1839
1747
|
</div>
|
1840
1748
|
<hr>
|
1841
|
-
<div class="refsect2"
|
1749
|
+
<div class="refsect2">
|
1842
1750
|
<a name="gtk-icon-view-get-item-row"></a><h3>gtk_icon_view_get_item_row ()</h3>
|
1843
1751
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>,
|
1844
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1752
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1845
1753
|
<p>
|
1846
1754
|
Gets the row in which the item <em class="parameter"><code>path</code></em> is currently
|
1847
1755
|
displayed. Row numbers start at 0.
|
@@ -1856,24 +1764,21 @@ displayed. Row numbers start at 0.
|
|
1856
1764
|
</tr>
|
1857
1765
|
<tr>
|
1858
1766
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1859
|
-
<td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1860
|
-
</td>
|
1767
|
+
<td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</td>
|
1861
1768
|
</tr>
|
1862
1769
|
<tr>
|
1863
1770
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1864
|
-
<td>
|
1865
|
-
|
1866
|
-
</td>
|
1771
|
+
<td>The row in which the item is displayed</td>
|
1867
1772
|
</tr>
|
1868
1773
|
</tbody>
|
1869
1774
|
</table></div>
|
1870
1775
|
<p class="since">Since 2.22</p>
|
1871
1776
|
</div>
|
1872
1777
|
<hr>
|
1873
|
-
<div class="refsect2"
|
1778
|
+
<div class="refsect2">
|
1874
1779
|
<a name="gtk-icon-view-get-item-column"></a><h3>gtk_icon_view_get_item_column ()</h3>
|
1875
1780
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>,
|
1876
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1781
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1877
1782
|
<p>
|
1878
1783
|
Gets the column in which the item <em class="parameter"><code>path</code></em> is currently
|
1879
1784
|
displayed. Column numbers start at 0.
|
@@ -1888,21 +1793,18 @@ displayed. Column numbers start at 0.
|
|
1888
1793
|
</tr>
|
1889
1794
|
<tr>
|
1890
1795
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
1891
|
-
<td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
1892
|
-
</td>
|
1796
|
+
<td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the item</td>
|
1893
1797
|
</tr>
|
1894
1798
|
<tr>
|
1895
1799
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1896
|
-
<td>
|
1897
|
-
|
1898
|
-
</td>
|
1800
|
+
<td>The column in which the item is displayed</td>
|
1899
1801
|
</tr>
|
1900
1802
|
</tbody>
|
1901
1803
|
</table></div>
|
1902
1804
|
<p class="since">Since 2.22</p>
|
1903
1805
|
</div>
|
1904
1806
|
<hr>
|
1905
|
-
<div class="refsect2"
|
1807
|
+
<div class="refsect2">
|
1906
1808
|
<a name="GtkIconViewDropPosition"></a><h3>enum GtkIconViewDropPosition</h3>
|
1907
1809
|
<pre class="programlisting">typedef enum
|
1908
1810
|
{
|
@@ -1954,14 +1856,14 @@ An enum for determining where a dropped item goes.
|
|
1954
1856
|
</table></div>
|
1955
1857
|
</div>
|
1956
1858
|
<hr>
|
1957
|
-
<div class="refsect2"
|
1859
|
+
<div class="refsect2">
|
1958
1860
|
<a name="gtk-icon-view-enable-model-drag-source"></a><h3>gtk_icon_view_enable_model_drag_source ()</h3>
|
1959
1861
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_enable_model_drag_source
|
1960
1862
|
(<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
1961
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
1962
|
-
<em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
|
1863
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
|
1864
|
+
<em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
|
1963
1865
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
|
1964
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
1866
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
|
1965
1867
|
<p>
|
1966
1868
|
Turns <em class="parameter"><code>icon_view</code></em> into a drag source for automatic DND. Calling this
|
1967
1869
|
method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
|
@@ -1976,13 +1878,11 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
|
|
1976
1878
|
</tr>
|
1977
1879
|
<tr>
|
1978
1880
|
<td><p><span class="term"><em class="parameter"><code>start_button_mask</code></em> :</span></p></td>
|
1979
|
-
<td>Mask of allowed buttons to start drag
|
1980
|
-
</td>
|
1881
|
+
<td>Mask of allowed buttons to start drag</td>
|
1981
1882
|
</tr>
|
1982
1883
|
<tr>
|
1983
1884
|
<td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
|
1984
|
-
<td>the table of targets that the drag will support
|
1985
|
-
</td>
|
1885
|
+
<td>the table of targets that the drag will support</td>
|
1986
1886
|
</tr>
|
1987
1887
|
<tr>
|
1988
1888
|
<td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
|
@@ -1992,21 +1892,20 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
|
|
1992
1892
|
<tr>
|
1993
1893
|
<td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
|
1994
1894
|
<td>the bitmask of possible actions for a drag from this
|
1995
|
-
|
1996
|
-
</td>
|
1895
|
+
widget</td>
|
1997
1896
|
</tr>
|
1998
1897
|
</tbody>
|
1999
1898
|
</table></div>
|
2000
1899
|
<p class="since">Since 2.8</p>
|
2001
1900
|
</div>
|
2002
1901
|
<hr>
|
2003
|
-
<div class="refsect2"
|
1902
|
+
<div class="refsect2">
|
2004
1903
|
<a name="gtk-icon-view-enable-model-drag-dest"></a><h3>gtk_icon_view_enable_model_drag_dest ()</h3>
|
2005
1904
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_enable_model_drag_dest
|
2006
1905
|
(<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>,
|
2007
|
-
<em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
|
1906
|
+
<em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
|
2008
1907
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
|
2009
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
1908
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
|
2010
1909
|
<p>
|
2011
1910
|
Turns <em class="parameter"><code>icon_view</code></em> into a drop destination for automatic DND. Calling this
|
2012
1911
|
method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" title='The "reorderable" property'><span class="type">"reorderable"</span></a> to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
|
@@ -2021,8 +1920,7 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
|
|
2021
1920
|
</tr>
|
2022
1921
|
<tr>
|
2023
1922
|
<td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
|
2024
|
-
<td>the table of targets that the drag will support
|
2025
|
-
</td>
|
1923
|
+
<td>the table of targets that the drag will support</td>
|
2026
1924
|
</tr>
|
2027
1925
|
<tr>
|
2028
1926
|
<td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
|
@@ -2032,15 +1930,14 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
|
|
2032
1930
|
<tr>
|
2033
1931
|
<td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
|
2034
1932
|
<td>the bitmask of possible actions for a drag to this
|
2035
|
-
|
2036
|
-
</td>
|
1933
|
+
widget</td>
|
2037
1934
|
</tr>
|
2038
1935
|
</tbody>
|
2039
1936
|
</table></div>
|
2040
1937
|
<p class="since">Since 2.8</p>
|
2041
1938
|
</div>
|
2042
1939
|
<hr>
|
2043
|
-
<div class="refsect2"
|
1940
|
+
<div class="refsect2">
|
2044
1941
|
<a name="gtk-icon-view-unset-model-drag-source"></a><h3>gtk_icon_view_unset_model_drag_source ()</h3>
|
2045
1942
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_view_unset_model_drag_source
|
2046
1943
|
(<em class="parameter"><code><a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *icon_view</code></em>);</pre>
|
@@ -2059,7 +1956,7 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
|
|
2059
1956
|
<p class="since">Since 2.8</p>
|
2060
1957
|
</div>
|
2061
1958
|
<hr>
|
2062
|
-
<div class="refsect2"
|
1959
|
+
<div class="refsect2">
|
2063
1960
|
<a name="gtk-icon-view-unset-model-drag-dest"></a><h3>gtk_icon_view_unset_model_drag_dest ()</h3>
|
2064
1961
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>
|
2065
1962
|
<p>
|
@@ -2077,13 +1974,13 @@ method sets <a class="link" href="GtkIconView.html#GtkIconView--reorderable" tit
|
|
2077
1974
|
<p class="since">Since 2.8</p>
|
2078
1975
|
</div>
|
2079
1976
|
<hr>
|
2080
|
-
<div class="refsect2"
|
1977
|
+
<div class="refsect2">
|
2081
1978
|
<a name="gtk-icon-view-set-reorderable"></a><h3>gtk_icon_view_set_reorderable ()</h3>
|
2082
1979
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
2083
1980
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> reorderable</code></em>);</pre>
|
2084
1981
|
<p>
|
2085
1982
|
This function is a convenience function to allow you to reorder models that
|
2086
|
-
support the <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSourceIface" title="GtkTreeDragSourceIface"><span class="type">GtkTreeDragSourceIface</span></a> and the <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragDestIface" title="GtkTreeDragDestIface"><span class="type">GtkTreeDragDestIface</span></a>. Both
|
1983
|
+
support the <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSourceIface" title="struct GtkTreeDragSourceIface"><span class="type">GtkTreeDragSourceIface</span></a> and the <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragDestIface" title="struct GtkTreeDragDestIface"><span class="type">GtkTreeDragDestIface</span></a>. Both
|
2087
1984
|
<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> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then
|
2088
1985
|
the user can reorder the model by dragging and dropping rows. The
|
2089
1986
|
developer can listen to these changes by connecting to the model's
|
@@ -2101,21 +1998,19 @@ handle drag and drop manually.
|
|
2101
1998
|
<tbody>
|
2102
1999
|
<tr>
|
2103
2000
|
<td><p><span class="term"><em class="parameter"><code>icon_view</code></em> :</span></p></td>
|
2104
|
-
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a
|
2105
|
-
</td>
|
2001
|
+
<td>A <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>.</td>
|
2106
2002
|
</tr>
|
2107
2003
|
<tr>
|
2108
2004
|
<td><p><span class="term"><em class="parameter"><code>reorderable</code></em> :</span></p></td>
|
2109
2005
|
<td>
|
2110
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the list of items can be reordered
|
2111
|
-
</td>
|
2006
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the list of items can be reordered.</td>
|
2112
2007
|
</tr>
|
2113
2008
|
</tbody>
|
2114
2009
|
</table></div>
|
2115
2010
|
<p class="since">Since 2.8</p>
|
2116
2011
|
</div>
|
2117
2012
|
<hr>
|
2118
|
-
<div class="refsect2"
|
2013
|
+
<div class="refsect2">
|
2119
2014
|
<a name="gtk-icon-view-get-reorderable"></a><h3>gtk_icon_view_get_reorderable ()</h3>
|
2120
2015
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
|
2121
2016
|
<p>
|
@@ -2132,19 +2027,18 @@ See <a class="link" href="GtkIconView.html#gtk-icon-view-set-reorderable" title=
|
|
2132
2027
|
</tr>
|
2133
2028
|
<tr>
|
2134
2029
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2135
|
-
<td>
|
2136
|
-
|
2137
|
-
</td>
|
2030
|
+
<td>
|
2031
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the list can be reordered.</td>
|
2138
2032
|
</tr>
|
2139
2033
|
</tbody>
|
2140
2034
|
</table></div>
|
2141
2035
|
<p class="since">Since 2.8</p>
|
2142
2036
|
</div>
|
2143
2037
|
<hr>
|
2144
|
-
<div class="refsect2"
|
2038
|
+
<div class="refsect2">
|
2145
2039
|
<a name="gtk-icon-view-set-drag-dest-item"></a><h3>gtk_icon_view_set_drag_dest_item ()</h3>
|
2146
2040
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
2147
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
2041
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
2148
2042
|
<em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> pos</code></em>);</pre>
|
2149
2043
|
<p>
|
2150
2044
|
Sets the item that is highlighted for feedback.
|
@@ -2159,23 +2053,22 @@ Sets the item that is highlighted for feedback.
|
|
2159
2053
|
</tr>
|
2160
2054
|
<tr>
|
2161
2055
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
2162
|
-
<td>
|
2056
|
+
<td>The path of the item to highlight, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
2163
2057
|
</td>
|
2164
2058
|
</tr>
|
2165
2059
|
<tr>
|
2166
2060
|
<td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
|
2167
|
-
<td>Specifies where to drop, relative to the item
|
2168
|
-
</td>
|
2061
|
+
<td>Specifies where to drop, relative to the item</td>
|
2169
2062
|
</tr>
|
2170
2063
|
</tbody>
|
2171
2064
|
</table></div>
|
2172
2065
|
<p class="since">Since 2.8</p>
|
2173
2066
|
</div>
|
2174
2067
|
<hr>
|
2175
|
-
<div class="refsect2"
|
2068
|
+
<div class="refsect2">
|
2176
2069
|
<a name="gtk-icon-view-get-drag-dest-item"></a><h3>gtk_icon_view_get_drag_dest_item ()</h3>
|
2177
2070
|
<pre class="programlisting"><span class="returnvalue">void</span> 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>,
|
2178
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
2071
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
2179
2072
|
<em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
|
2180
2073
|
<p>
|
2181
2074
|
Gets information about the item that is highlighted for feedback.
|
@@ -2190,12 +2083,12 @@ Gets information about the item that is highlighted for feedback.
|
|
2190
2083
|
</tr>
|
2191
2084
|
<tr>
|
2192
2085
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
2193
|
-
<td>
|
2086
|
+
<td>Return location for the path of the highlighted item, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
2194
2087
|
</td>
|
2195
2088
|
</tr>
|
2196
2089
|
<tr>
|
2197
2090
|
<td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
|
2198
|
-
<td>
|
2091
|
+
<td>Return location for the drop position, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
2199
2092
|
</td>
|
2200
2093
|
</tr>
|
2201
2094
|
</tbody>
|
@@ -2203,12 +2096,12 @@ Gets information about the item that is highlighted for feedback.
|
|
2203
2096
|
<p class="since">Since 2.8</p>
|
2204
2097
|
</div>
|
2205
2098
|
<hr>
|
2206
|
-
<div class="refsect2"
|
2099
|
+
<div class="refsect2">
|
2207
2100
|
<a name="gtk-icon-view-get-dest-item-at-pos"></a><h3>gtk_icon_view_get_dest_item_at_pos ()</h3>
|
2208
2101
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
|
2209
2102
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_x</code></em>,
|
2210
2103
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> drag_y</code></em>,
|
2211
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
2104
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> **path</code></em>,
|
2212
2105
|
<em class="parameter"><code><a class="link" href="GtkIconView.html#GtkIconViewDropPosition" title="enum GtkIconViewDropPosition"><span class="type">GtkIconViewDropPosition</span></a> *pos</code></em>);</pre>
|
2213
2106
|
<p>
|
2214
2107
|
Determines the destination item for a given position.
|
@@ -2223,41 +2116,37 @@ Determines the destination item for a given position.
|
|
2223
2116
|
</tr>
|
2224
2117
|
<tr>
|
2225
2118
|
<td><p><span class="term"><em class="parameter"><code>drag_x</code></em> :</span></p></td>
|
2226
|
-
<td>the position to determine the destination item for
|
2227
|
-
</td>
|
2119
|
+
<td>the position to determine the destination item for</td>
|
2228
2120
|
</tr>
|
2229
2121
|
<tr>
|
2230
2122
|
<td><p><span class="term"><em class="parameter"><code>drag_y</code></em> :</span></p></td>
|
2231
|
-
<td>the position to determine the destination item for
|
2232
|
-
</td>
|
2123
|
+
<td>the position to determine the destination item for</td>
|
2233
2124
|
</tr>
|
2234
2125
|
<tr>
|
2235
2126
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
2236
|
-
<td>
|
2127
|
+
<td>Return location for the path of the item, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
2237
2128
|
</td>
|
2238
2129
|
</tr>
|
2239
2130
|
<tr>
|
2240
2131
|
<td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
|
2241
|
-
<td>
|
2132
|
+
<td>Return location for the drop position, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
2242
2133
|
</td>
|
2243
2134
|
</tr>
|
2244
2135
|
<tr>
|
2245
2136
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2246
|
-
<td>
|
2247
|
-
|
2248
|
-
</td>
|
2137
|
+
<td>whether there is an item at the given position.</td>
|
2249
2138
|
</tr>
|
2250
2139
|
</tbody>
|
2251
2140
|
</table></div>
|
2252
2141
|
<p class="since">Since 2.8</p>
|
2253
2142
|
</div>
|
2254
2143
|
<hr>
|
2255
|
-
<div class="refsect2"
|
2144
|
+
<div class="refsect2">
|
2256
2145
|
<a name="gtk-icon-view-create-drag-icon"></a><h3>gtk_icon_view_create_drag_icon ()</h3>
|
2257
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/
|
2258
|
-
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"
|
2146
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a> * 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>,
|
2147
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
2259
2148
|
<p>
|
2260
|
-
Creates a <a href="http://library.gnome.org/devel/
|
2149
|
+
Creates a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> representation of the item at <em class="parameter"><code>path</code></em>.
|
2261
2150
|
This image is used for a drag icon.
|
2262
2151
|
</p>
|
2263
2152
|
<div class="variablelist"><table border="0">
|
@@ -2270,13 +2159,12 @@ This image is used for a drag icon.
|
|
2270
2159
|
</tr>
|
2271
2160
|
<tr>
|
2272
2161
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
2273
|
-
<td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
2162
|
+
<td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> in <em class="parameter"><code>icon_view</code></em>
|
2274
2163
|
</td>
|
2275
2164
|
</tr>
|
2276
2165
|
<tr>
|
2277
2166
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2278
|
-
<td>
|
2279
|
-
|
2167
|
+
<td>a newly-allocated pixmap of the drag icon. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
2280
2168
|
</td>
|
2281
2169
|
</tr>
|
2282
2170
|
</tbody>
|
@@ -2284,9 +2172,9 @@ This image is used for a drag icon.
|
|
2284
2172
|
<p class="since">Since 2.8</p>
|
2285
2173
|
</div>
|
2286
2174
|
</div>
|
2287
|
-
<div class="refsect1"
|
2175
|
+
<div class="refsect1">
|
2288
2176
|
<a name="GtkIconView.property-details"></a><h2>Property Details</h2>
|
2289
|
-
<div class="refsect2"
|
2177
|
+
<div class="refsect2">
|
2290
2178
|
<a name="GtkIconView--column-spacing"></a><h3>The <code class="literal">"column-spacing"</code> property</h3>
|
2291
2179
|
<pre class="programlisting"> "column-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2292
2180
|
<p>
|
@@ -2298,7 +2186,7 @@ the columns of the icon view.
|
|
2298
2186
|
<p class="since">Since 2.6</p>
|
2299
2187
|
</div>
|
2300
2188
|
<hr>
|
2301
|
-
<div class="refsect2"
|
2189
|
+
<div class="refsect2">
|
2302
2190
|
<a name="GtkIconView--columns"></a><h3>The <code class="literal">"columns"</code> property</h3>
|
2303
2191
|
<pre class="programlisting"> "columns" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2304
2192
|
<p>
|
@@ -2311,7 +2199,7 @@ be chosen automatically to fill the available area.
|
|
2311
2199
|
<p class="since">Since 2.6</p>
|
2312
2200
|
</div>
|
2313
2201
|
<hr>
|
2314
|
-
<div class="refsect2"
|
2202
|
+
<div class="refsect2">
|
2315
2203
|
<a name="GtkIconView--item-orientation"></a><h3>The <code class="literal">"item-orientation"</code> property</h3>
|
2316
2204
|
<pre class="programlisting"> "item-orientation" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write</pre>
|
2317
2205
|
<p>
|
@@ -2322,7 +2210,7 @@ the text) of the item are positioned relative to each other.
|
|
2322
2210
|
<p class="since">Since 2.22</p>
|
2323
2211
|
</div>
|
2324
2212
|
<hr>
|
2325
|
-
<div class="refsect2"
|
2213
|
+
<div class="refsect2">
|
2326
2214
|
<a name="GtkIconView--item-padding"></a><h3>The <code class="literal">"item-padding"</code> property</h3>
|
2327
2215
|
<pre class="programlisting"> "item-padding" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2328
2216
|
<p>
|
@@ -2334,7 +2222,7 @@ of the icon view's item.
|
|
2334
2222
|
<p class="since">Since 2.18</p>
|
2335
2223
|
</div>
|
2336
2224
|
<hr>
|
2337
|
-
<div class="refsect2"
|
2225
|
+
<div class="refsect2">
|
2338
2226
|
<a name="GtkIconView--item-width"></a><h3>The <code class="literal">"item-width"</code> property</h3>
|
2339
2227
|
<pre class="programlisting"> "item-width" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2340
2228
|
<p>
|
@@ -2347,7 +2235,7 @@ suitable item size.
|
|
2347
2235
|
<p class="since">Since 2.6</p>
|
2348
2236
|
</div>
|
2349
2237
|
<hr>
|
2350
|
-
<div class="refsect2"
|
2238
|
+
<div class="refsect2">
|
2351
2239
|
<a name="GtkIconView--margin"></a><h3>The <code class="literal">"margin"</code> property</h3>
|
2352
2240
|
<pre class="programlisting"> "margin" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2353
2241
|
<p>
|
@@ -2359,7 +2247,7 @@ at the edges of the icon view.
|
|
2359
2247
|
<p class="since">Since 2.6</p>
|
2360
2248
|
</div>
|
2361
2249
|
<hr>
|
2362
|
-
<div class="refsect2"
|
2250
|
+
<div class="refsect2">
|
2363
2251
|
<a name="GtkIconView--markup-column"></a><h3>The <code class="literal">"markup-column"</code> property</h3>
|
2364
2252
|
<pre class="programlisting"> "markup-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2365
2253
|
<p>
|
@@ -2374,16 +2262,16 @@ If both are set to -1, no texts are displayed.
|
|
2374
2262
|
<p class="since">Since 2.6</p>
|
2375
2263
|
</div>
|
2376
2264
|
<hr>
|
2377
|
-
<div class="refsect2"
|
2265
|
+
<div class="refsect2">
|
2378
2266
|
<a name="GtkIconView--model"></a><h3>The <code class="literal">"model"</code> property</h3>
|
2379
2267
|
<pre class="programlisting"> "model" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write</pre>
|
2380
2268
|
<p>The model for the icon view.</p>
|
2381
2269
|
</div>
|
2382
2270
|
<hr>
|
2383
|
-
<div class="refsect2"
|
2271
|
+
<div class="refsect2">
|
2384
2272
|
<a name="GtkIconView--orientation"></a><h3>The <code class="literal">"orientation"</code> property</h3>
|
2385
2273
|
<pre class="programlisting"> "orientation" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write</pre>
|
2386
|
-
<div class="warning"
|
2274
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2387
2275
|
<h3 class="title">Warning</h3>
|
2388
2276
|
<p><code class="literal">GtkIconView:orientation</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use the <span class="type">"item-orientation"</span> property</p>
|
2389
2277
|
</div>
|
@@ -2395,7 +2283,7 @@ the text) of the item are positioned relative to each other.
|
|
2395
2283
|
<p class="since">Since 2.6</p>
|
2396
2284
|
</div>
|
2397
2285
|
<hr>
|
2398
|
-
<div class="refsect2"
|
2286
|
+
<div class="refsect2">
|
2399
2287
|
<a name="GtkIconView--pixbuf-column"></a><h3>The <code class="literal">"pixbuf-column"</code> property</h3>
|
2400
2288
|
<pre class="programlisting"> "pixbuf-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2401
2289
|
<p>
|
@@ -2409,7 +2297,7 @@ display of pixbufs.
|
|
2409
2297
|
<p class="since">Since 2.6</p>
|
2410
2298
|
</div>
|
2411
2299
|
<hr>
|
2412
|
-
<div class="refsect2"
|
2300
|
+
<div class="refsect2">
|
2413
2301
|
<a name="GtkIconView--reorderable"></a><h3>The <code class="literal">"reorderable"</code> property</h3>
|
2414
2302
|
<pre class="programlisting"> "reorderable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2415
2303
|
<p>
|
@@ -2420,7 +2308,7 @@ by DND.
|
|
2420
2308
|
<p class="since">Since 2.8</p>
|
2421
2309
|
</div>
|
2422
2310
|
<hr>
|
2423
|
-
<div class="refsect2"
|
2311
|
+
<div class="refsect2">
|
2424
2312
|
<a name="GtkIconView--row-spacing"></a><h3>The <code class="literal">"row-spacing"</code> property</h3>
|
2425
2313
|
<pre class="programlisting"> "row-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2426
2314
|
<p>
|
@@ -2432,7 +2320,7 @@ the rows of the icon view.
|
|
2432
2320
|
<p class="since">Since 2.6</p>
|
2433
2321
|
</div>
|
2434
2322
|
<hr>
|
2435
|
-
<div class="refsect2"
|
2323
|
+
<div class="refsect2">
|
2436
2324
|
<a name="GtkIconView--selection-mode"></a><h3>The <code class="literal">"selection-mode"</code> property</h3>
|
2437
2325
|
<pre class="programlisting"> "selection-mode" <a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> : Read / Write</pre>
|
2438
2326
|
<p>
|
@@ -2444,7 +2332,7 @@ is enabled, for the other modes, only keyboard selection is possible.
|
|
2444
2332
|
<p class="since">Since 2.6</p>
|
2445
2333
|
</div>
|
2446
2334
|
<hr>
|
2447
|
-
<div class="refsect2"
|
2335
|
+
<div class="refsect2">
|
2448
2336
|
<a name="GtkIconView--spacing"></a><h3>The <code class="literal">"spacing"</code> property</h3>
|
2449
2337
|
<pre class="programlisting"> "spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2450
2338
|
<p>
|
@@ -2456,7 +2344,7 @@ the cells (i.e. the icon and the text) of an item.
|
|
2456
2344
|
<p class="since">Since 2.6</p>
|
2457
2345
|
</div>
|
2458
2346
|
<hr>
|
2459
|
-
<div class="refsect2"
|
2347
|
+
<div class="refsect2">
|
2460
2348
|
<a name="GtkIconView--text-column"></a><h3>The <code class="literal">"text-column"</code> property</h3>
|
2461
2349
|
<pre class="programlisting"> "text-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2462
2350
|
<p>
|
@@ -2470,7 +2358,7 @@ property are both set to -1, no texts are displayed.
|
|
2470
2358
|
<p class="since">Since 2.6</p>
|
2471
2359
|
</div>
|
2472
2360
|
<hr>
|
2473
|
-
<div class="refsect2"
|
2361
|
+
<div class="refsect2">
|
2474
2362
|
<a name="GtkIconView--tooltip-column"></a><h3>The <code class="literal">"tooltip-column"</code> property</h3>
|
2475
2363
|
<pre class="programlisting"> "tooltip-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2476
2364
|
<p>The column in the model containing the tooltip texts for the items.</p>
|
@@ -2478,27 +2366,27 @@ property are both set to -1, no texts are displayed.
|
|
2478
2366
|
<p>Default value: -1</p>
|
2479
2367
|
</div>
|
2480
2368
|
</div>
|
2481
|
-
<div class="refsect1"
|
2369
|
+
<div class="refsect1">
|
2482
2370
|
<a name="GtkIconView.style-property-details"></a><h2>Style Property Details</h2>
|
2483
|
-
<div class="refsect2"
|
2371
|
+
<div class="refsect2">
|
2484
2372
|
<a name="GtkIconView--s-selection-box-alpha"></a><h3>The <code class="literal">"selection-box-alpha"</code> style property</h3>
|
2485
2373
|
<pre class="programlisting"> "selection-box-alpha" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guchar"><span class="type">guchar</span></a> : Read</pre>
|
2486
2374
|
<p>Opacity of the selection box.</p>
|
2487
2375
|
<p>Default value: 64</p>
|
2488
2376
|
</div>
|
2489
2377
|
<hr>
|
2490
|
-
<div class="refsect2"
|
2378
|
+
<div class="refsect2">
|
2491
2379
|
<a name="GtkIconView--s-selection-box-color"></a><h3>The <code class="literal">"selection-box-color"</code> style property</h3>
|
2492
|
-
<pre class="programlisting"> "selection-box-color" <a href="http://library.gnome.org/devel/
|
2380
|
+
<pre class="programlisting"> "selection-box-color" <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read</pre>
|
2493
2381
|
<p>Color of the selection box.</p>
|
2494
2382
|
</div>
|
2495
2383
|
</div>
|
2496
|
-
<div class="refsect1"
|
2384
|
+
<div class="refsect1">
|
2497
2385
|
<a name="GtkIconView.signal-details"></a><h2>Signal Details</h2>
|
2498
|
-
<div class="refsect2"
|
2386
|
+
<div class="refsect2">
|
2499
2387
|
<a name="GtkIconView-activate-cursor-item"></a><h3>The <code class="literal">"activate-cursor-item"</code> signal</h3>
|
2500
2388
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
|
2501
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
2389
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
2502
2390
|
<p>
|
2503
2391
|
A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
2504
2392
|
which gets emitted when the user activates the currently
|
@@ -2517,8 +2405,7 @@ The default bindings for this signal are Space, Return and Enter.
|
|
2517
2405
|
<tbody>
|
2518
2406
|
<tr>
|
2519
2407
|
<td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
|
2520
|
-
<td>the object on which the signal is emitted
|
2521
|
-
</td>
|
2408
|
+
<td>the object on which the signal is emitted</td>
|
2522
2409
|
</tr>
|
2523
2410
|
<tr>
|
2524
2411
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -2528,11 +2415,11 @@ The default bindings for this signal are Space, Return and Enter.
|
|
2528
2415
|
</table></div>
|
2529
2416
|
</div>
|
2530
2417
|
<hr>
|
2531
|
-
<div class="refsect2"
|
2418
|
+
<div class="refsect2">
|
2532
2419
|
<a name="GtkIconView-item-activated"></a><h3>The <code class="literal">"item-activated"</code> signal</h3>
|
2533
2420
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
|
2534
|
-
<a class="link" href="GtkTreeModel.html#GtkTreePath"
|
2535
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
|
2421
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
|
2422
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
2536
2423
|
<p>
|
2537
2424
|
The ::item-activated signal is emitted when the method
|
2538
2425
|
<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
|
@@ -2545,13 +2432,11 @@ pressed.
|
|
2545
2432
|
<tbody>
|
2546
2433
|
<tr>
|
2547
2434
|
<td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
|
2548
|
-
<td>the object on which the signal is emitted
|
2549
|
-
</td>
|
2435
|
+
<td>the object on which the signal is emitted</td>
|
2550
2436
|
</tr>
|
2551
2437
|
<tr>
|
2552
2438
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
2553
|
-
<td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"
|
2554
|
-
</td>
|
2439
|
+
<td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> for the activated item</td>
|
2555
2440
|
</tr>
|
2556
2441
|
<tr>
|
2557
2442
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -2561,12 +2446,12 @@ pressed.
|
|
2561
2446
|
</table></div>
|
2562
2447
|
</div>
|
2563
2448
|
<hr>
|
2564
|
-
<div class="refsect2"
|
2449
|
+
<div class="refsect2">
|
2565
2450
|
<a name="GtkIconView-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
|
2566
2451
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
|
2567
2452
|
<a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
|
2568
2453
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
|
2569
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
2454
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
2570
2455
|
<p>
|
2571
2456
|
The ::move-cursor signal is a
|
2572
2457
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -2596,8 +2481,7 @@ the Shift modifier.
|
|
2596
2481
|
<tbody>
|
2597
2482
|
<tr>
|
2598
2483
|
<td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
|
2599
|
-
<td>the object which received the signal
|
2600
|
-
</td>
|
2484
|
+
<td>the object which received the signal</td>
|
2601
2485
|
</tr>
|
2602
2486
|
<tr>
|
2603
2487
|
<td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
|
@@ -2606,8 +2490,7 @@ the Shift modifier.
|
|
2606
2490
|
</tr>
|
2607
2491
|
<tr>
|
2608
2492
|
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
2609
|
-
<td>the number of <em class="parameter"><code>step</code></em> units to move
|
2610
|
-
</td>
|
2493
|
+
<td>the number of <em class="parameter"><code>step</code></em> units to move</td>
|
2611
2494
|
</tr>
|
2612
2495
|
<tr>
|
2613
2496
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -2617,10 +2500,10 @@ the Shift modifier.
|
|
2617
2500
|
</table></div>
|
2618
2501
|
</div>
|
2619
2502
|
<hr>
|
2620
|
-
<div class="refsect2"
|
2503
|
+
<div class="refsect2">
|
2621
2504
|
<a name="GtkIconView-select-all"></a><h3>The <code class="literal">"select-all"</code> signal</h3>
|
2622
2505
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
|
2623
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
2506
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
2624
2507
|
<p>
|
2625
2508
|
A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
2626
2509
|
which gets emitted when the user selects all items.
|
@@ -2638,8 +2521,7 @@ The default binding for this signal is Ctrl-a.
|
|
2638
2521
|
<tbody>
|
2639
2522
|
<tr>
|
2640
2523
|
<td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
|
2641
|
-
<td>the object on which the signal is emitted
|
2642
|
-
</td>
|
2524
|
+
<td>the object on which the signal is emitted</td>
|
2643
2525
|
</tr>
|
2644
2526
|
<tr>
|
2645
2527
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -2649,10 +2531,10 @@ The default binding for this signal is Ctrl-a.
|
|
2649
2531
|
</table></div>
|
2650
2532
|
</div>
|
2651
2533
|
<hr>
|
2652
|
-
<div class="refsect2"
|
2534
|
+
<div class="refsect2">
|
2653
2535
|
<a name="GtkIconView-select-cursor-item"></a><h3>The <code class="literal">"select-cursor-item"</code> signal</h3>
|
2654
2536
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
|
2655
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
2537
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
2656
2538
|
<p>
|
2657
2539
|
A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
2658
2540
|
which gets emitted when the user selects the item that is currently
|
@@ -2671,8 +2553,7 @@ There is no default binding for this signal.
|
|
2671
2553
|
<tbody>
|
2672
2554
|
<tr>
|
2673
2555
|
<td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
|
2674
|
-
<td>the object on which the signal is emitted
|
2675
|
-
</td>
|
2556
|
+
<td>the object on which the signal is emitted</td>
|
2676
2557
|
</tr>
|
2677
2558
|
<tr>
|
2678
2559
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -2682,10 +2563,10 @@ There is no default binding for this signal.
|
|
2682
2563
|
</table></div>
|
2683
2564
|
</div>
|
2684
2565
|
<hr>
|
2685
|
-
<div class="refsect2"
|
2566
|
+
<div class="refsect2">
|
2686
2567
|
<a name="GtkIconView-selection-changed"></a><h3>The <code class="literal">"selection-changed"</code> signal</h3>
|
2687
2568
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
|
2688
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
|
2569
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
|
2689
2570
|
<p>
|
2690
2571
|
The ::selection-changed signal is emitted when the selection
|
2691
2572
|
(i.e. the set of selected items) changes.
|
@@ -2695,8 +2576,7 @@ The ::selection-changed signal is emitted when the selection
|
|
2695
2576
|
<tbody>
|
2696
2577
|
<tr>
|
2697
2578
|
<td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
|
2698
|
-
<td>the object on which the signal is emitted
|
2699
|
-
</td>
|
2579
|
+
<td>the object on which the signal is emitted</td>
|
2700
2580
|
</tr>
|
2701
2581
|
<tr>
|
2702
2582
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -2706,12 +2586,12 @@ The ::selection-changed signal is emitted when the selection
|
|
2706
2586
|
</table></div>
|
2707
2587
|
</div>
|
2708
2588
|
<hr>
|
2709
|
-
<div class="refsect2"
|
2589
|
+
<div class="refsect2">
|
2710
2590
|
<a name="GtkIconView-set-scroll-adjustments"></a><h3>The <code class="literal">"set-scroll-adjustments"</code> signal</h3>
|
2711
2591
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *horizontal,
|
2712
2592
|
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *vertical,
|
2713
2593
|
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *arg2,
|
2714
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
|
2594
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
2715
2595
|
<p>
|
2716
2596
|
Set the scroll adjustments for the icon view. Usually scrolled containers
|
2717
2597
|
like <a class="link" href="GtkScrolledWindow.html" title="GtkScrolledWindow"><span class="type">GtkScrolledWindow</span></a> will emit this signal to connect two instances
|
@@ -2738,10 +2618,10 @@ of <a class="link" href="GtkScrollbar.html" title="GtkScrollbar"><span class="ty
|
|
2738
2618
|
</table></div>
|
2739
2619
|
</div>
|
2740
2620
|
<hr>
|
2741
|
-
<div class="refsect2"
|
2621
|
+
<div class="refsect2">
|
2742
2622
|
<a name="GtkIconView-toggle-cursor-item"></a><h3>The <code class="literal">"toggle-cursor-item"</code> signal</h3>
|
2743
2623
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
|
2744
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
2624
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
2745
2625
|
<p>
|
2746
2626
|
A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
2747
2627
|
which gets emitted when the user toggles whether the currently
|
@@ -2761,8 +2641,7 @@ There is no default binding for this signal is Ctrl-Space.
|
|
2761
2641
|
<tbody>
|
2762
2642
|
<tr>
|
2763
2643
|
<td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
|
2764
|
-
<td>the object on which the signal is emitted
|
2765
|
-
</td>
|
2644
|
+
<td>the object on which the signal is emitted</td>
|
2766
2645
|
</tr>
|
2767
2646
|
<tr>
|
2768
2647
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -2772,10 +2651,10 @@ There is no default binding for this signal is Ctrl-Space.
|
|
2772
2651
|
</table></div>
|
2773
2652
|
</div>
|
2774
2653
|
<hr>
|
2775
|
-
<div class="refsect2"
|
2654
|
+
<div class="refsect2">
|
2776
2655
|
<a name="GtkIconView-unselect-all"></a><h3>The <code class="literal">"unselect-all"</code> signal</h3>
|
2777
2656
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> *iconview,
|
2778
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
2657
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
2779
2658
|
<p>
|
2780
2659
|
A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
2781
2660
|
which gets emitted when the user unselects all items.
|
@@ -2793,8 +2672,7 @@ The default binding for this signal is Ctrl-Shift-a.
|
|
2793
2672
|
<tbody>
|
2794
2673
|
<tr>
|
2795
2674
|
<td><p><span class="term"><em class="parameter"><code>iconview</code></em> :</span></p></td>
|
2796
|
-
<td>the object on which the signal is emitted
|
2797
|
-
</td>
|
2675
|
+
<td>the object on which the signal is emitted</td>
|
2798
2676
|
</tr>
|
2799
2677
|
<tr>
|
2800
2678
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -2807,6 +2685,6 @@ The default binding for this signal is Ctrl-Shift-a.
|
|
2807
2685
|
</div>
|
2808
2686
|
<div class="footer">
|
2809
2687
|
<hr>
|
2810
|
-
Generated by GTK-Doc V1.
|
2688
|
+
Generated by GTK-Doc V1.17</div>
|
2811
2689
|
</body>
|
2812
2690
|
</html>
|