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>GtkTreeModelSort</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="GtkTreeSortable.html" title="GtkTreeSortable">
         | 
| 10 10 | 
             
            <link rel="next" href="GtkTreeModelFilter.html" title="GtkTreeModelFilter">
         | 
| 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="GtkTreeSortable.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="GtkTreeModelFilter.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">
         | 
| @@ -32,7 +32,7 @@ | |
| 32 32 | 
             
                              <a href="#GtkTreeModelSort.properties" class="shortcut">Properties</a>
         | 
| 33 33 | 
             
            </td></tr>
         | 
| 34 34 | 
             
            </table>
         | 
| 35 | 
            -
            <div class="refentry" | 
| 35 | 
            +
            <div class="refentry">
         | 
| 36 36 | 
             
            <a name="GtkTreeModelSort"></a><div class="titlepage"></div>
         | 
| 37 37 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 38 38 | 
             
            <td valign="top">
         | 
| @@ -41,55 +41,55 @@ | |
| 41 41 | 
             
            </td>
         | 
| 42 42 | 
             
            <td valign="top" align="right"></td>
         | 
| 43 43 | 
             
            </tr></table></div>
         | 
| 44 | 
            -
            <div class="refsynopsisdiv" | 
| 44 | 
            +
            <div class="refsynopsisdiv">
         | 
| 45 45 | 
             
            <a name="GtkTreeModelSort.synopsis"></a><h2>Synopsis</h2>
         | 
| 46 46 | 
             
            <pre class="synopsis">
         | 
| 47 47 | 
             
            #include <gtk/gtk.h>
         | 
| 48 48 |  | 
| 49 | 
            -
             | 
| 49 | 
            +
            struct              <a class="link" href="GtkTreeModelSort.html#GtkTreeModelSort-struct" title="struct GtkTreeModelSort">GtkTreeModelSort</a>;
         | 
| 50 50 | 
             
            <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *      <a class="link" href="GtkTreeModelSort.html#gtk-tree-model-sort-new-with-model" title="gtk_tree_model_sort_new_with_model ()">gtk_tree_model_sort_new_with_model</a>  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *child_model</code></em>);
         | 
| 51 51 | 
             
            <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *      <a class="link" href="GtkTreeModelSort.html#gtk-tree-model-sort-get-model" title="gtk_tree_model_sort_get_model ()">gtk_tree_model_sort_get_model</a>       (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model</code></em>);
         | 
| 52 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 52 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       <a class="link" href="GtkTreeModelSort.html#gtk-tree-model-sort-convert-child-path-to-path" title="gtk_tree_model_sort_convert_child_path_to_path ()">gtk_tree_model_sort_convert_child_path_to_path</a>
         | 
| 53 53 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 54 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 54 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *child_path</code></em>);
         | 
| 55 55 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModelSort.html#gtk-tree-model-sort-convert-child-iter-to-iter" title="gtk_tree_model_sort_convert_child_iter_to_iter ()">gtk_tree_model_sort_convert_child_iter_to_iter</a>
         | 
| 56 56 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 57 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 58 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 59 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 57 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sort_iter</code></em>,
         | 
| 58 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *child_iter</code></em>);
         | 
| 59 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       <a class="link" href="GtkTreeModelSort.html#gtk-tree-model-sort-convert-path-to-child-path" title="gtk_tree_model_sort_convert_path_to_child_path ()">gtk_tree_model_sort_convert_path_to_child_path</a>
         | 
| 60 60 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 61 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 61 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *sorted_path</code></em>);
         | 
| 62 62 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModelSort.html#gtk-tree-model-sort-convert-iter-to-child-iter" title="gtk_tree_model_sort_convert_iter_to_child_iter ()">gtk_tree_model_sort_convert_iter_to_child_iter</a>
         | 
| 63 63 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 64 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 65 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 64 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *child_iter</code></em>,
         | 
| 65 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sorted_iter</code></em>);
         | 
| 66 66 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModelSort.html#gtk-tree-model-sort-reset-default-sort-func" title="gtk_tree_model_sort_reset_default_sort_func ()">gtk_tree_model_sort_reset_default_sort_func</a>
         | 
| 67 67 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>);
         | 
| 68 68 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModelSort.html#gtk-tree-model-sort-clear-cache" title="gtk_tree_model_sort_clear_cache ()">gtk_tree_model_sort_clear_cache</a>     (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>);
         | 
| 69 69 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModelSort.html#gtk-tree-model-sort-iter-is-valid" title="gtk_tree_model_sort_iter_is_valid ()">gtk_tree_model_sort_iter_is_valid</a>   (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 70 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 70 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 71 71 | 
             
            </pre>
         | 
| 72 72 | 
             
            </div>
         | 
| 73 | 
            -
            <div class="refsect1" | 
| 73 | 
            +
            <div class="refsect1">
         | 
| 74 74 | 
             
            <a name="GtkTreeModelSort.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 75 75 | 
             
            <pre class="synopsis">
         | 
| 76 76 | 
             
              <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| 77 77 | 
             
               +----GtkTreeModelSort
         | 
| 78 78 | 
             
            </pre>
         | 
| 79 79 | 
             
            </div>
         | 
| 80 | 
            -
            <div class="refsect1" | 
| 80 | 
            +
            <div class="refsect1">
         | 
| 81 81 | 
             
            <a name="GtkTreeModelSort.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
         | 
| 82 82 | 
             
            <p>
         | 
| 83 83 | 
             
            GtkTreeModelSort implements
         | 
| 84 84 | 
             
             <a class="link" href="GtkTreeModel.html" title="GtkTreeModel">GtkTreeModel</a>,  <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable">GtkTreeSortable</a> and  <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSource">GtkTreeDragSource</a>.</p>
         | 
| 85 85 | 
             
            </div>
         | 
| 86 | 
            -
            <div class="refsect1" | 
| 86 | 
            +
            <div class="refsect1">
         | 
| 87 87 | 
             
            <a name="GtkTreeModelSort.properties"></a><h2>Properties</h2>
         | 
| 88 88 | 
             
            <pre class="synopsis">
         | 
| 89 89 | 
             
              "<a class="link" href="GtkTreeModelSort.html#GtkTreeModelSort--model" title='The "model" property'>model</a>"                    <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>*         : Read / Write / Construct Only
         | 
| 90 90 | 
             
            </pre>
         | 
| 91 91 | 
             
            </div>
         | 
| 92 | 
            -
            <div class="refsect1" | 
| 92 | 
            +
            <div class="refsect1">
         | 
| 93 93 | 
             
            <a name="GtkTreeModelSort.description"></a><h2>Description</h2>
         | 
| 94 94 | 
             
            <p>
         | 
| 95 95 | 
             
            The <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> is a model which implements the <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a>
         | 
| @@ -112,7 +112,7 @@ sort the second. | |
| 112 112 | 
             
            <p>
         | 
| 113 113 | 
             
            </p>
         | 
| 114 114 | 
             
            <div class="example">
         | 
| 115 | 
            -
            <a name=" | 
| 115 | 
            +
            <a name="id848470"></a><p class="title"><b>Example 24. Using a <span class="structname">GtkTreeModelSort</span></b></p>
         | 
| 116 116 | 
             
            <div class="example-contents">
         | 
| 117 117 | 
             
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| 118 118 | 
             
                <tbody>
         | 
| @@ -175,7 +175,7 @@ child model, and change the row there. | |
| 175 175 | 
             
            <p>
         | 
| 176 176 | 
             
            </p>
         | 
| 177 177 | 
             
            <div class="example">
         | 
| 178 | 
            -
            <a name=" | 
| 178 | 
            +
            <a name="id1039070"></a><p class="title"><b>Example 25. Accessing the child model of in a selection changed callback</b></p>
         | 
| 179 179 | 
             
            <div class="example-contents">
         | 
| 180 180 | 
             
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| 181 181 | 
             
                <tbody>
         | 
| @@ -261,17 +261,17 @@ child model, and change the row there. | |
| 261 261 | 
             
            <p><br class="example-break">
         | 
| 262 262 | 
             
            </p>
         | 
| 263 263 | 
             
            </div>
         | 
| 264 | 
            -
            <div class="refsect1" | 
| 264 | 
            +
            <div class="refsect1">
         | 
| 265 265 | 
             
            <a name="GtkTreeModelSort.details"></a><h2>Details</h2>
         | 
| 266 | 
            -
            <div class="refsect2" | 
| 267 | 
            -
            <a name="GtkTreeModelSort-struct"></a><h3>GtkTreeModelSort</h3>
         | 
| 268 | 
            -
            <pre class="programlisting"> | 
| 266 | 
            +
            <div class="refsect2">
         | 
| 267 | 
            +
            <a name="GtkTreeModelSort-struct"></a><h3>struct GtkTreeModelSort</h3>
         | 
| 268 | 
            +
            <pre class="programlisting">struct GtkTreeModelSort;</pre>
         | 
| 269 269 | 
             
            <p>
         | 
| 270 270 | 
             
            This should not be accessed directly.  Use the accessor functions below.
         | 
| 271 271 | 
             
            </p>
         | 
| 272 272 | 
             
            </div>
         | 
| 273 273 | 
             
            <hr>
         | 
| 274 | 
            -
            <div class="refsect2" | 
| 274 | 
            +
            <div class="refsect2">
         | 
| 275 275 | 
             
            <a name="gtk-tree-model-sort-new-with-model"></a><h3>gtk_tree_model_sort_new_with_model ()</h3>
         | 
| 276 276 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *      gtk_tree_model_sort_new_with_model  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *child_model</code></em>);</pre>
         | 
| 277 277 | 
             
            <p>
         | 
| @@ -287,14 +287,14 @@ Creates a new <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><spa | |
| 287 287 | 
             
            </tr>
         | 
| 288 288 | 
             
            <tr>
         | 
| 289 289 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 290 | 
            -
            <td> | 
| 290 | 
            +
            <td>A new <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
         | 
| 291 291 | 
             
            </td>
         | 
| 292 292 | 
             
            </tr>
         | 
| 293 293 | 
             
            </tbody>
         | 
| 294 294 | 
             
            </table></div>
         | 
| 295 295 | 
             
            </div>
         | 
| 296 296 | 
             
            <hr>
         | 
| 297 | 
            -
            <div class="refsect2" | 
| 297 | 
            +
            <div class="refsect2">
         | 
| 298 298 | 
             
            <a name="gtk-tree-model-sort-get-model"></a><h3>gtk_tree_model_sort_get_model ()</h3>
         | 
| 299 299 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *      gtk_tree_model_sort_get_model       (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model</code></em>);</pre>
         | 
| 300 300 | 
             
            <p>
         | 
| @@ -310,18 +310,18 @@ Returns the model the <a class="link" href="GtkTreeModelSort.html" title="GtkTre | |
| 310 310 | 
             
            </tr>
         | 
| 311 311 | 
             
            <tr>
         | 
| 312 312 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 313 | 
            -
            <td> | 
| 313 | 
            +
            <td>the "child model" being sorted. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 314 314 | 
             
            </td>
         | 
| 315 315 | 
             
            </tr>
         | 
| 316 316 | 
             
            </tbody>
         | 
| 317 317 | 
             
            </table></div>
         | 
| 318 318 | 
             
            </div>
         | 
| 319 319 | 
             
            <hr>
         | 
| 320 | 
            -
            <div class="refsect2" | 
| 320 | 
            +
            <div class="refsect2">
         | 
| 321 321 | 
             
            <a name="gtk-tree-model-sort-convert-child-path-to-path"></a><h3>gtk_tree_model_sort_convert_child_path_to_path ()</h3>
         | 
| 322 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 322 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       gtk_tree_model_sort_convert_child_path_to_path
         | 
| 323 323 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 324 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 324 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *child_path</code></em>);</pre>
         | 
| 325 325 | 
             
            <p>
         | 
| 326 326 | 
             
            Converts <em class="parameter"><code>child_path</code></em> to a path relative to <em class="parameter"><code>tree_model_sort</code></em>.  That is,
         | 
| 327 327 | 
             
            <em class="parameter"><code>child_path</code></em> points to a path in the child model.  The returned path will
         | 
| @@ -338,24 +338,23 @@ path on the child model, then <a href="http://library.gnome.org/devel/glib/unsta | |
| 338 338 | 
             
            </tr>
         | 
| 339 339 | 
             
            <tr>
         | 
| 340 340 | 
             
            <td><p><span class="term"><em class="parameter"><code>child_path</code></em> :</span></p></td>
         | 
| 341 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 342 | 
            -
            </td>
         | 
| 341 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to convert</td>
         | 
| 343 342 | 
             
            </tr>
         | 
| 344 343 | 
             
            <tr>
         | 
| 345 344 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 346 | 
            -
            <td> | 
| 345 | 
            +
            <td>A newly allocated <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>
         | 
| 347 346 | 
             
            </td>
         | 
| 348 347 | 
             
            </tr>
         | 
| 349 348 | 
             
            </tbody>
         | 
| 350 349 | 
             
            </table></div>
         | 
| 351 350 | 
             
            </div>
         | 
| 352 351 | 
             
            <hr>
         | 
| 353 | 
            -
            <div class="refsect2" | 
| 352 | 
            +
            <div class="refsect2">
         | 
| 354 353 | 
             
            <a name="gtk-tree-model-sort-convert-child-iter-to-iter"></a><h3>gtk_tree_model_sort_convert_child_iter_to_iter ()</h3>
         | 
| 355 354 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_tree_model_sort_convert_child_iter_to_iter
         | 
| 356 355 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 357 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 358 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 356 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sort_iter</code></em>,
         | 
| 357 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *child_iter</code></em>);</pre>
         | 
| 359 358 | 
             
            <p>
         | 
| 360 359 | 
             
            Sets <em class="parameter"><code>sort_iter</code></em> to point to the row in <em class="parameter"><code>tree_model_sort</code></em> that corresponds to
         | 
| 361 360 | 
             
            the row pointed at by <em class="parameter"><code>child_iter</code></em>.  If <em class="parameter"><code>sort_iter</code></em> was not set, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
         | 
| @@ -371,29 +370,28 @@ is returned.  Note: a boolean is only returned since 2.14. | |
| 371 370 | 
             
            </tr>
         | 
| 372 371 | 
             
            <tr>
         | 
| 373 372 | 
             
            <td><p><span class="term"><em class="parameter"><code>sort_iter</code></em> :</span></p></td>
         | 
| 374 | 
            -
            <td> | 
| 373 | 
            +
            <td>An uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 375 374 | 
             
            </td>
         | 
| 376 375 | 
             
            </tr>
         | 
| 377 376 | 
             
            <tr>
         | 
| 378 377 | 
             
            <td><p><span class="term"><em class="parameter"><code>child_iter</code></em> :</span></p></td>
         | 
| 379 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 380 | 
            -
            </td>
         | 
| 378 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to a row on the child model</td>
         | 
| 381 379 | 
             
            </tr>
         | 
| 382 380 | 
             
            <tr>
         | 
| 383 381 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 384 | 
            -
            <td> | 
| 385 | 
            -
             | 
| 386 | 
            -
             | 
| 382 | 
            +
            <td>
         | 
| 383 | 
            +
            <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>sort_iter</code></em> was set, i.e. if <em class="parameter"><code>sort_iter</code></em> is a
         | 
| 384 | 
            +
            valid iterator pointer to a visible row in the child model.</td>
         | 
| 387 385 | 
             
            </tr>
         | 
| 388 386 | 
             
            </tbody>
         | 
| 389 387 | 
             
            </table></div>
         | 
| 390 388 | 
             
            </div>
         | 
| 391 389 | 
             
            <hr>
         | 
| 392 | 
            -
            <div class="refsect2" | 
| 390 | 
            +
            <div class="refsect2">
         | 
| 393 391 | 
             
            <a name="gtk-tree-model-sort-convert-path-to-child-path"></a><h3>gtk_tree_model_sort_convert_path_to_child_path ()</h3>
         | 
| 394 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 392 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       gtk_tree_model_sort_convert_path_to_child_path
         | 
| 395 393 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 396 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 394 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *sorted_path</code></em>);</pre>
         | 
| 397 395 | 
             
            <p>
         | 
| 398 396 | 
             
            Converts <em class="parameter"><code>sorted_path</code></em> to a path on the child model of <em class="parameter"><code>tree_model_sort</code></em>.  
         | 
| 399 397 | 
             
            That is, <em class="parameter"><code>sorted_path</code></em> points to a location in <em class="parameter"><code>tree_model_sort</code></em>.  The 
         | 
| @@ -411,24 +409,23 @@ sorted.  If <em class="parameter"><code>sorted_path</code></em> does not point t | |
| 411 409 | 
             
            </tr>
         | 
| 412 410 | 
             
            <tr>
         | 
| 413 411 | 
             
            <td><p><span class="term"><em class="parameter"><code>sorted_path</code></em> :</span></p></td>
         | 
| 414 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 415 | 
            -
            </td>
         | 
| 412 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to convert</td>
         | 
| 416 413 | 
             
            </tr>
         | 
| 417 414 | 
             
            <tr>
         | 
| 418 415 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 419 | 
            -
            <td> | 
| 416 | 
            +
            <td>A newly allocated <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>
         | 
| 420 417 | 
             
            </td>
         | 
| 421 418 | 
             
            </tr>
         | 
| 422 419 | 
             
            </tbody>
         | 
| 423 420 | 
             
            </table></div>
         | 
| 424 421 | 
             
            </div>
         | 
| 425 422 | 
             
            <hr>
         | 
| 426 | 
            -
            <div class="refsect2" | 
| 423 | 
            +
            <div class="refsect2">
         | 
| 427 424 | 
             
            <a name="gtk-tree-model-sort-convert-iter-to-child-iter"></a><h3>gtk_tree_model_sort_convert_iter_to_child_iter ()</h3>
         | 
| 428 425 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_sort_convert_iter_to_child_iter
         | 
| 429 426 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 430 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 431 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 427 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *child_iter</code></em>,
         | 
| 428 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sorted_iter</code></em>);</pre>
         | 
| 432 429 | 
             
            <p>
         | 
| 433 430 | 
             
            Sets <em class="parameter"><code>child_iter</code></em> to point to the row pointed to by <em class="parameter"><code>sorted_iter</code></em>.
         | 
| 434 431 | 
             
            </p>
         | 
| @@ -442,19 +439,18 @@ Sets <em class="parameter"><code>child_iter</code></em> to point to the row poin | |
| 442 439 | 
             
            </tr>
         | 
| 443 440 | 
             
            <tr>
         | 
| 444 441 | 
             
            <td><p><span class="term"><em class="parameter"><code>child_iter</code></em> :</span></p></td>
         | 
| 445 | 
            -
            <td> | 
| 442 | 
            +
            <td>An uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 446 443 | 
             
            </td>
         | 
| 447 444 | 
             
            </tr>
         | 
| 448 445 | 
             
            <tr>
         | 
| 449 446 | 
             
            <td><p><span class="term"><em class="parameter"><code>sorted_iter</code></em> :</span></p></td>
         | 
| 450 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 451 | 
            -
            </td>
         | 
| 447 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to a row on <em class="parameter"><code>tree_model_sort</code></em>.</td>
         | 
| 452 448 | 
             
            </tr>
         | 
| 453 449 | 
             
            </tbody>
         | 
| 454 450 | 
             
            </table></div>
         | 
| 455 451 | 
             
            </div>
         | 
| 456 452 | 
             
            <hr>
         | 
| 457 | 
            -
            <div class="refsect2" | 
| 453 | 
            +
            <div class="refsect2">
         | 
| 458 454 | 
             
            <a name="gtk-tree-model-sort-reset-default-sort-func"></a><h3>gtk_tree_model_sort_reset_default_sort_func ()</h3>
         | 
| 459 455 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_sort_reset_default_sort_func
         | 
| 460 456 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>);</pre>
         | 
| @@ -474,7 +470,7 @@ is in 'unsorted' state. | |
| 474 470 | 
             
            </table></div>
         | 
| 475 471 | 
             
            </div>
         | 
| 476 472 | 
             
            <hr>
         | 
| 477 | 
            -
            <div class="refsect2" | 
| 473 | 
            +
            <div class="refsect2">
         | 
| 478 474 | 
             
            <a name="gtk-tree-model-sort-clear-cache"></a><h3>gtk_tree_model_sort_clear_cache ()</h3>
         | 
| 479 475 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_sort_clear_cache     (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>);</pre>
         | 
| 480 476 | 
             
            <p>
         | 
| @@ -495,13 +491,13 @@ iters will be invalid. | |
| 495 491 | 
             
            </table></div>
         | 
| 496 492 | 
             
            </div>
         | 
| 497 493 | 
             
            <hr>
         | 
| 498 | 
            -
            <div class="refsect2" | 
| 494 | 
            +
            <div class="refsect2">
         | 
| 499 495 | 
             
            <a name="gtk-tree-model-sort-iter-is-valid"></a><h3>gtk_tree_model_sort_iter_is_valid ()</h3>
         | 
| 500 496 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_tree_model_sort_iter_is_valid   (<em class="parameter"><code><a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> *tree_model_sort</code></em>,
         | 
| 501 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 497 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 502 498 | 
             
            <p>
         | 
| 503 499 | 
             
            </p>
         | 
| 504 | 
            -
            <div class="warning"  | 
| 500 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 505 501 | 
             
            <h3 class="title">Warning</h3>
         | 
| 506 502 | 
             
            <p>
         | 
| 507 503 | 
             
            This function is slow. Only use it for debugging and/or testing purposes.
         | 
| @@ -517,34 +513,31 @@ Checks if the given iter is a valid iter for this <a class="link" href="GtkTreeM | |
| 517 513 | 
             
            <tbody>
         | 
| 518 514 | 
             
            <tr>
         | 
| 519 515 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model_sort</code></em> :</span></p></td>
         | 
| 520 | 
            -
            <td>A <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a | 
| 521 | 
            -
            </td>
         | 
| 516 | 
            +
            <td>A <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a>.</td>
         | 
| 522 517 | 
             
            </tr>
         | 
| 523 518 | 
             
            <tr>
         | 
| 524 519 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 525 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 526 | 
            -
            </td>
         | 
| 520 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 527 521 | 
             
            </tr>
         | 
| 528 522 | 
             
            <tr>
         | 
| 529 523 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 530 | 
            -
            <td> | 
| 531 | 
            -
             | 
| 532 | 
            -
            </td>
         | 
| 524 | 
            +
            <td>
         | 
| 525 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the iter is valid, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the iter is invalid.</td>
         | 
| 533 526 | 
             
            </tr>
         | 
| 534 527 | 
             
            </tbody>
         | 
| 535 528 | 
             
            </table></div>
         | 
| 536 529 | 
             
            <p class="since">Since 2.2</p>
         | 
| 537 530 | 
             
            </div>
         | 
| 538 531 | 
             
            </div>
         | 
| 539 | 
            -
            <div class="refsect1" | 
| 532 | 
            +
            <div class="refsect1">
         | 
| 540 533 | 
             
            <a name="GtkTreeModelSort.property-details"></a><h2>Property Details</h2>
         | 
| 541 | 
            -
            <div class="refsect2" | 
| 534 | 
            +
            <div class="refsect2">
         | 
| 542 535 | 
             
            <a name="GtkTreeModelSort--model"></a><h3>The <code class="literal">"model"</code> property</h3>
         | 
| 543 536 | 
             
            <pre class="programlisting">  "model"                    <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>*         : Read / Write / Construct Only</pre>
         | 
| 544 537 | 
             
            <p>The model for the TreeModelSort to sort.</p>
         | 
| 545 538 | 
             
            </div>
         | 
| 546 539 | 
             
            </div>
         | 
| 547 | 
            -
            <div class="refsect1" | 
| 540 | 
            +
            <div class="refsect1">
         | 
| 548 541 | 
             
            <a name="GtkTreeModelSort.see-also"></a><h2>See Also</h2>
         | 
| 549 542 | 
             
            <p>
         | 
| 550 543 | 
             
            <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>, <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>, <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a>, <a class="link" href="GtkTreeModelFilter.html" title="GtkTreeModelFilter"><span class="type">GtkTreeModelFilter</span></a>
         | 
| @@ -553,6 +546,6 @@ Checks if the given iter is a valid iter for this <a class="link" href="GtkTreeM | |
| 553 546 | 
             
            </div>
         | 
| 554 547 | 
             
            <div class="footer">
         | 
| 555 548 | 
             
            <hr>
         | 
| 556 | 
            -
                      Generated by GTK-Doc V1. | 
| 549 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 557 550 | 
             
            </body>
         | 
| 558 551 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>GtkTreeSelection</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="GtkTreeModel.html" title="GtkTreeModel">
         | 
| 10 10 | 
             
            <link rel="next" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn">
         | 
| 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="GtkTreeModel.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="GtkTreeViewColumn.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">
         | 
| @@ -30,7 +30,7 @@ | |
| 30 30 | 
             
                              <a href="#GtkTreeSelection.signals" class="shortcut">Signals</a>
         | 
| 31 31 | 
             
            </td></tr>
         | 
| 32 32 | 
             
            </table>
         | 
| 33 | 
            -
            <div class="refentry" | 
| 33 | 
            +
            <div class="refentry">
         | 
| 34 34 | 
             
            <a name="GtkTreeSelection"></a><div class="titlepage"></div>
         | 
| 35 35 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 36 36 | 
             
            <td valign="top">
         | 
| @@ -39,7 +39,7 @@ | |
| 39 39 | 
             
            </td>
         | 
| 40 40 | 
             
            <td valign="top" align="right"></td>
         | 
| 41 41 | 
             
            </tr></table></div>
         | 
| 42 | 
            -
            <div class="refsynopsisdiv" | 
| 42 | 
            +
            <div class="refsynopsisdiv">
         | 
| 43 43 | 
             
            <a name="GtkTreeSelection.synopsis"></a><h2>Synopsis</h2>
         | 
| 44 44 | 
             
            <pre class="synopsis">
         | 
| 45 45 | 
             
            #include <gtk/gtk.h>
         | 
| @@ -47,12 +47,12 @@ | |
| 47 47 | 
             
                                <a class="link" href="GtkTreeSelection.html#GtkTreeSelection-struct" title="GtkTreeSelection">GtkTreeSelection</a>;
         | 
| 48 48 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (<a class="link" href="GtkTreeSelection.html#GtkTreeSelectionFunc" title="GtkTreeSelectionFunc ()">*GtkTreeSelectionFunc</a>)             (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 49 49 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 50 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 50 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 51 51 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> path_currently_selected</code></em>,
         | 
| 52 52 | 
             
                                                                     <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>);
         | 
| 53 53 | 
             
            <span class="returnvalue">void</span>                (<a class="link" href="GtkTreeSelection.html#GtkTreeSelectionForeachFunc" title="GtkTreeSelectionForeachFunc ()">*GtkTreeSelectionForeachFunc</a>)      (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 54 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 55 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 54 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 55 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</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 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-set-mode" title="gtk_tree_selection_set_mode ()">gtk_tree_selection_set_mode</a>         (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 58 58 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> type</code></em>);
         | 
| @@ -65,10 +65,10 @@ | |
| 65 65 | 
             
            <a class="link" href="GtkTreeSelection.html#GtkTreeSelectionFunc" title="GtkTreeSelectionFunc ()"><span class="returnvalue">GtkTreeSelectionFunc</span></a>  <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-get-select-function" title="gtk_tree_selection_get_select_function ()">gtk_tree_selection_get_select_function</a>
         | 
| 66 66 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);
         | 
| 67 67 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>            <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-get-user-data" title="gtk_tree_selection_get_user_data ()">gtk_tree_selection_get_user_data</a>    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);
         | 
| 68 | 
            -
            <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="returnvalue">GtkTreeView</span></a | 
| 68 | 
            +
            <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="returnvalue">GtkTreeView</span></a> *       <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-get-tree-view" title="gtk_tree_selection_get_tree_view ()">gtk_tree_selection_get_tree_view</a>    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);
         | 
| 69 69 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-get-selected" title="gtk_tree_selection_get_selected ()">gtk_tree_selection_get_selected</a>     (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 70 70 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
         | 
| 71 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 71 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 72 72 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-selected-foreach" title="gtk_tree_selection_selected_foreach ()">gtk_tree_selection_selected_foreach</a> (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 73 73 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeSelection.html#GtkTreeSelectionForeachFunc" title="GtkTreeSelectionForeachFunc ()"><span class="type">GtkTreeSelectionForeachFunc</span></a> func</code></em>,
         | 
| 74 74 | 
             
                                                                     <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>);
         | 
| @@ -78,41 +78,41 @@ | |
| 78 78 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-count-selected-rows" title="gtk_tree_selection_count_selected_rows ()">gtk_tree_selection_count_selected_rows</a>
         | 
| 79 79 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);
         | 
| 80 80 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-select-path" title="gtk_tree_selection_select_path ()">gtk_tree_selection_select_path</a>      (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 81 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 81 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 82 82 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-unselect-path" title="gtk_tree_selection_unselect_path ()">gtk_tree_selection_unselect_path</a>    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 83 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 83 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 84 84 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-path-is-selected" title="gtk_tree_selection_path_is_selected ()">gtk_tree_selection_path_is_selected</a> (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 85 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 85 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 86 86 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-select-iter" title="gtk_tree_selection_select_iter ()">gtk_tree_selection_select_iter</a>      (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 87 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 87 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 88 88 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-unselect-iter" title="gtk_tree_selection_unselect_iter ()">gtk_tree_selection_unselect_iter</a>    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 89 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 89 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 90 90 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-iter-is-selected" title="gtk_tree_selection_iter_is_selected ()">gtk_tree_selection_iter_is_selected</a> (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 91 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 91 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 92 92 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-select-all" title="gtk_tree_selection_select_all ()">gtk_tree_selection_select_all</a>       (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);
         | 
| 93 93 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-unselect-all" title="gtk_tree_selection_unselect_all ()">gtk_tree_selection_unselect_all</a>     (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);
         | 
| 94 94 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-select-range" title="gtk_tree_selection_select_range ()">gtk_tree_selection_select_range</a>     (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 95 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 96 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 95 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *start_path</code></em>,
         | 
| 96 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *end_path</code></em>);
         | 
| 97 97 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-unselect-range" title="gtk_tree_selection_unselect_range ()">gtk_tree_selection_unselect_range</a>   (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 98 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 99 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 98 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *start_path</code></em>,
         | 
| 99 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *end_path</code></em>);
         | 
| 100 100 | 
             
            </pre>
         | 
| 101 101 | 
             
            </div>
         | 
| 102 | 
            -
            <div class="refsect1" | 
| 102 | 
            +
            <div class="refsect1">
         | 
| 103 103 | 
             
            <a name="GtkTreeSelection.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 104 104 | 
             
            <pre class="synopsis">
         | 
| 105 105 | 
             
              <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| 106 106 | 
             
               +----GtkTreeSelection
         | 
| 107 107 | 
             
            </pre>
         | 
| 108 108 | 
             
            </div>
         | 
| 109 | 
            -
            <div class="refsect1" | 
| 109 | 
            +
            <div class="refsect1">
         | 
| 110 110 | 
             
            <a name="GtkTreeSelection.signals"></a><h2>Signals</h2>
         | 
| 111 111 | 
             
            <pre class="synopsis">
         | 
| 112 | 
            -
              "<a class="link" href="GtkTreeSelection.html#GtkTreeSelection-changed" title='The "changed" signal'>changed</a>"                                        : Run First
         | 
| 112 | 
            +
              "<a class="link" href="GtkTreeSelection.html#GtkTreeSelection-changed" title='The "changed" signal'>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>
         | 
| 113 113 | 
             
            </pre>
         | 
| 114 114 | 
             
            </div>
         | 
| 115 | 
            -
            <div class="refsect1" | 
| 115 | 
            +
            <div class="refsect1">
         | 
| 116 116 | 
             
            <a name="GtkTreeSelection.description"></a><h2>Description</h2>
         | 
| 117 117 | 
             
            <p>
         | 
| 118 118 | 
             
            The <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> object is a helper object to manage the selection
         | 
| @@ -142,20 +142,20 @@ may on occasion emit a ::changed signal when nothing has happened | |
| 142 142 | 
             
            selected row).
         | 
| 143 143 | 
             
            </p>
         | 
| 144 144 | 
             
            </div>
         | 
| 145 | 
            -
            <div class="refsect1" | 
| 145 | 
            +
            <div class="refsect1">
         | 
| 146 146 | 
             
            <a name="GtkTreeSelection.details"></a><h2>Details</h2>
         | 
| 147 | 
            -
            <div class="refsect2" | 
| 147 | 
            +
            <div class="refsect2">
         | 
| 148 148 | 
             
            <a name="GtkTreeSelection-struct"></a><h3>GtkTreeSelection</h3>
         | 
| 149 149 | 
             
            <pre class="programlisting">typedef struct _GtkTreeSelection GtkTreeSelection;</pre>
         | 
| 150 150 | 
             
            <p>
         | 
| 151 151 | 
             
            </p>
         | 
| 152 152 | 
             
            </div>
         | 
| 153 153 | 
             
            <hr>
         | 
| 154 | 
            -
            <div class="refsect2" | 
| 154 | 
            +
            <div class="refsect2">
         | 
| 155 155 | 
             
            <a name="GtkTreeSelectionFunc"></a><h3>GtkTreeSelectionFunc ()</h3>
         | 
| 156 156 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (*GtkTreeSelectionFunc)             (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 157 157 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 158 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 158 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 159 159 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> path_currently_selected</code></em>,
         | 
| 160 160 | 
             
                                                                     <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>
         | 
| 161 161 | 
             
            <p>
         | 
| @@ -174,40 +174,35 @@ that it is okay to change the selection. | |
| 174 174 | 
             
            </tr>
         | 
| 175 175 | 
             
            <tr>
         | 
| 176 176 | 
             
            <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
         | 
| 177 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> being viewed
         | 
| 178 | 
            -
            </td>
         | 
| 177 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> being viewed</td>
         | 
| 179 178 | 
             
            </tr>
         | 
| 180 179 | 
             
            <tr>
         | 
| 181 180 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 182 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 183 | 
            -
            </td>
         | 
| 181 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the row in question</td>
         | 
| 184 182 | 
             
            </tr>
         | 
| 185 183 | 
             
            <tr>
         | 
| 186 184 | 
             
            <td><p><span class="term"><em class="parameter"><code>path_currently_selected</code></em> :</span></p></td>
         | 
| 187 185 | 
             
            <td>
         | 
| 188 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the path is currently selected
         | 
| 189 | 
            -
            </td>
         | 
| 186 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the path is currently selected</td>
         | 
| 190 187 | 
             
            </tr>
         | 
| 191 188 | 
             
            <tr>
         | 
| 192 189 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 193 | 
            -
            <td>user data
         | 
| 194 | 
            -
            </td>
         | 
| 190 | 
            +
            <td>user data</td>
         | 
| 195 191 | 
             
            </tr>
         | 
| 196 192 | 
             
            <tr>
         | 
| 197 193 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 198 194 | 
             
            <td>
         | 
| 199 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the selection state of the row can be toggled
         | 
| 200 | 
            -
            </td>
         | 
| 195 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the selection state of the row can be toggled</td>
         | 
| 201 196 | 
             
            </tr>
         | 
| 202 197 | 
             
            </tbody>
         | 
| 203 198 | 
             
            </table></div>
         | 
| 204 199 | 
             
            </div>
         | 
| 205 200 | 
             
            <hr>
         | 
| 206 | 
            -
            <div class="refsect2" | 
| 201 | 
            +
            <div class="refsect2">
         | 
| 207 202 | 
             
            <a name="GtkTreeSelectionForeachFunc"></a><h3>GtkTreeSelectionForeachFunc ()</h3>
         | 
| 208 203 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                (*GtkTreeSelectionForeachFunc)      (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 209 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 210 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 204 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 205 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 211 206 | 
             
                                                                     <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>
         | 
| 212 207 | 
             
            <p>
         | 
| 213 208 | 
             
            A function used by <a class="link" href="GtkTreeSelection.html#gtk-tree-selection-selected-foreach" title="gtk_tree_selection_selected_foreach ()"><code class="function">gtk_tree_selection_selected_foreach()</code></a> to map all
         | 
| @@ -218,29 +213,25 @@ selected rows.  It will be called on every selected row in the view. | |
| 218 213 | 
             
            <tbody>
         | 
| 219 214 | 
             
            <tr>
         | 
| 220 215 | 
             
            <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
         | 
| 221 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> being viewed
         | 
| 222 | 
            -
            </td>
         | 
| 216 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> being viewed</td>
         | 
| 223 217 | 
             
            </tr>
         | 
| 224 218 | 
             
            <tr>
         | 
| 225 219 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 226 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 227 | 
            -
            </td>
         | 
| 220 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of a selected row</td>
         | 
| 228 221 | 
             
            </tr>
         | 
| 229 222 | 
             
            <tr>
         | 
| 230 223 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 231 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 232 | 
            -
            </td>
         | 
| 224 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to a selected row</td>
         | 
| 233 225 | 
             
            </tr>
         | 
| 234 226 | 
             
            <tr>
         | 
| 235 227 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 236 | 
            -
            <td>user data
         | 
| 237 | 
            -
            </td>
         | 
| 228 | 
            +
            <td>user data</td>
         | 
| 238 229 | 
             
            </tr>
         | 
| 239 230 | 
             
            </tbody>
         | 
| 240 231 | 
             
            </table></div>
         | 
| 241 232 | 
             
            </div>
         | 
| 242 233 | 
             
            <hr>
         | 
| 243 | 
            -
            <div class="refsect2" | 
| 234 | 
            +
            <div class="refsect2">
         | 
| 244 235 | 
             
            <a name="gtk-tree-selection-set-mode"></a><h3>gtk_tree_selection_set_mode ()</h3>
         | 
| 245 236 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_set_mode         (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 246 237 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> type</code></em>);</pre>
         | 
| @@ -254,19 +245,17 @@ previously selected. | |
| 254 245 | 
             
            <tbody>
         | 
| 255 246 | 
             
            <tr>
         | 
| 256 247 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 257 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 258 | 
            -
            </td>
         | 
| 248 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 259 249 | 
             
            </tr>
         | 
| 260 250 | 
             
            <tr>
         | 
| 261 251 | 
             
            <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
         | 
| 262 | 
            -
            <td>The selection mode
         | 
| 263 | 
            -
            </td>
         | 
| 252 | 
            +
            <td>The selection mode</td>
         | 
| 264 253 | 
             
            </tr>
         | 
| 265 254 | 
             
            </tbody>
         | 
| 266 255 | 
             
            </table></div>
         | 
| 267 256 | 
             
            </div>
         | 
| 268 257 | 
             
            <hr>
         | 
| 269 | 
            -
            <div class="refsect2" | 
| 258 | 
            +
            <div class="refsect2">
         | 
| 270 259 | 
             
            <a name="gtk-tree-selection-get-mode"></a><h3>gtk_tree_selection_get_mode ()</h3>
         | 
| 271 260 | 
             
            <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="returnvalue">GtkSelectionMode</span></a>    gtk_tree_selection_get_mode         (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);</pre>
         | 
| 272 261 | 
             
            <p>
         | 
| @@ -283,14 +272,13 @@ Gets the selection mode for <em class="parameter"><code>selection</code></em>. S | |
| 283 272 | 
             
            </tr>
         | 
| 284 273 | 
             
            <tr>
         | 
| 285 274 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 286 | 
            -
            <td> | 
| 287 | 
            -
            </td>
         | 
| 275 | 
            +
            <td>the current selection mode</td>
         | 
| 288 276 | 
             
            </tr>
         | 
| 289 277 | 
             
            </tbody>
         | 
| 290 278 | 
             
            </table></div>
         | 
| 291 279 | 
             
            </div>
         | 
| 292 280 | 
             
            <hr>
         | 
| 293 | 
            -
            <div class="refsect2" | 
| 281 | 
            +
            <div class="refsect2">
         | 
| 294 282 | 
             
            <a name="gtk-tree-selection-set-select-function"></a><h3>gtk_tree_selection_set_select_function ()</h3>
         | 
| 295 283 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_set_select_function
         | 
| 296 284 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| @@ -308,29 +296,25 @@ and <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.h | |
| 308 296 | 
             
            <tbody>
         | 
| 309 297 | 
             
            <tr>
         | 
| 310 298 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 311 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 312 | 
            -
            </td>
         | 
| 299 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 313 300 | 
             
            </tr>
         | 
| 314 301 | 
             
            <tr>
         | 
| 315 302 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 316 | 
            -
            <td>The selection function | 
| 317 | 
            -
            </td>
         | 
| 303 | 
            +
            <td>The selection function.</td>
         | 
| 318 304 | 
             
            </tr>
         | 
| 319 305 | 
             
            <tr>
         | 
| 320 306 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 321 | 
            -
            <td>The selection function's data | 
| 322 | 
            -
            </td>
         | 
| 307 | 
            +
            <td>The selection function's data.</td>
         | 
| 323 308 | 
             
            </tr>
         | 
| 324 309 | 
             
            <tr>
         | 
| 325 310 | 
             
            <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
         | 
| 326 | 
            -
            <td>The destroy function for user data.  May be NULL | 
| 327 | 
            -
            </td>
         | 
| 311 | 
            +
            <td>The destroy function for user data.  May be NULL.</td>
         | 
| 328 312 | 
             
            </tr>
         | 
| 329 313 | 
             
            </tbody>
         | 
| 330 314 | 
             
            </table></div>
         | 
| 331 315 | 
             
            </div>
         | 
| 332 316 | 
             
            <hr>
         | 
| 333 | 
            -
            <div class="refsect2" | 
| 317 | 
            +
            <div class="refsect2">
         | 
| 334 318 | 
             
            <a name="gtk-tree-selection-get-select-function"></a><h3>gtk_tree_selection_get_select_function ()</h3>
         | 
| 335 319 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeSelection.html#GtkTreeSelectionFunc" title="GtkTreeSelectionFunc ()"><span class="returnvalue">GtkTreeSelectionFunc</span></a>  gtk_tree_selection_get_select_function
         | 
| 336 320 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);</pre>
         | 
| @@ -342,21 +326,18 @@ Returns the current selection function. | |
| 342 326 | 
             
            <tbody>
         | 
| 343 327 | 
             
            <tr>
         | 
| 344 328 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 345 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 346 | 
            -
            </td>
         | 
| 329 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 347 330 | 
             
            </tr>
         | 
| 348 331 | 
             
            <tr>
         | 
| 349 332 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 350 | 
            -
            <td> | 
| 351 | 
            -
             | 
| 352 | 
            -
            </td>
         | 
| 333 | 
            +
            <td>The function.</td>
         | 
| 353 334 | 
             
            </tr>
         | 
| 354 335 | 
             
            </tbody>
         | 
| 355 336 | 
             
            </table></div>
         | 
| 356 337 | 
             
            <p class="since">Since 2.14</p>
         | 
| 357 338 | 
             
            </div>
         | 
| 358 339 | 
             
            <hr>
         | 
| 359 | 
            -
            <div class="refsect2" | 
| 340 | 
            +
            <div class="refsect2">
         | 
| 360 341 | 
             
            <a name="gtk-tree-selection-get-user-data"></a><h3>gtk_tree_selection_get_user_data ()</h3>
         | 
| 361 342 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>            gtk_tree_selection_get_user_data    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);</pre>
         | 
| 362 343 | 
             
            <p>
         | 
| @@ -367,21 +348,19 @@ Returns the user data for the selection function. | |
| 367 348 | 
             
            <tbody>
         | 
| 368 349 | 
             
            <tr>
         | 
| 369 350 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 370 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 371 | 
            -
            </td>
         | 
| 351 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 372 352 | 
             
            </tr>
         | 
| 373 353 | 
             
            <tr>
         | 
| 374 354 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 375 | 
            -
            <td> | 
| 376 | 
            -
            </td>
         | 
| 355 | 
            +
            <td>The user data.</td>
         | 
| 377 356 | 
             
            </tr>
         | 
| 378 357 | 
             
            </tbody>
         | 
| 379 358 | 
             
            </table></div>
         | 
| 380 359 | 
             
            </div>
         | 
| 381 360 | 
             
            <hr>
         | 
| 382 | 
            -
            <div class="refsect2" | 
| 361 | 
            +
            <div class="refsect2">
         | 
| 383 362 | 
             
            <a name="gtk-tree-selection-get-tree-view"></a><h3>gtk_tree_selection_get_tree_view ()</h3>
         | 
| 384 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="returnvalue">GtkTreeView</span></a | 
| 363 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="returnvalue">GtkTreeView</span></a> *       gtk_tree_selection_get_tree_view    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);</pre>
         | 
| 385 364 | 
             
            <p>
         | 
| 386 365 | 
             
            Returns the tree view associated with <em class="parameter"><code>selection</code></em>.
         | 
| 387 366 | 
             
            </p>
         | 
| @@ -395,18 +374,18 @@ Returns the tree view associated with <em class="parameter"><code>selection</cod | |
| 395 374 | 
             
            </tr>
         | 
| 396 375 | 
             
            <tr>
         | 
| 397 376 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 398 | 
            -
            <td> | 
| 377 | 
            +
            <td>A <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 399 378 | 
             
            </td>
         | 
| 400 379 | 
             
            </tr>
         | 
| 401 380 | 
             
            </tbody>
         | 
| 402 381 | 
             
            </table></div>
         | 
| 403 382 | 
             
            </div>
         | 
| 404 383 | 
             
            <hr>
         | 
| 405 | 
            -
            <div class="refsect2" | 
| 384 | 
            +
            <div class="refsect2">
         | 
| 406 385 | 
             
            <a name="gtk-tree-selection-get-selected"></a><h3>gtk_tree_selection_get_selected ()</h3>
         | 
| 407 386 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_tree_selection_get_selected     (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 408 387 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> **model</code></em>,
         | 
| 409 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 388 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 410 389 | 
             
            <p>
         | 
| 411 390 | 
             
            Sets <em class="parameter"><code>iter</code></em> to the currently selected node if <em class="parameter"><code>selection</code></em> is set to
         | 
| 412 391 | 
             
            <a class="link" href="gtk-Standard-Enumerations.html#GTK-SELECTION-SINGLE:CAPS"><span class="type">GTK_SELECTION_SINGLE</span></a> or <a class="link" href="gtk-Standard-Enumerations.html#GTK-SELECTION-BROWSE:CAPS"><span class="type">GTK_SELECTION_BROWSE</span></a>.  <em class="parameter"><code>iter</code></em> may be NULL if you
         | 
| @@ -419,29 +398,27 @@ use <em class="parameter"><code>selection</code></em> is <a class="link" href="g | |
| 419 398 | 
             
            <tbody>
         | 
| 420 399 | 
             
            <tr>
         | 
| 421 400 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 422 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 423 | 
            -
            </td>
         | 
| 401 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 424 402 | 
             
            </tr>
         | 
| 425 403 | 
             
            <tr>
         | 
| 426 404 | 
             
            <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
         | 
| 427 | 
            -
            <td> | 
| 405 | 
            +
            <td>A pointer to set to the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, or NULL. <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>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 428 406 | 
             
            </td>
         | 
| 429 407 | 
             
            </tr>
         | 
| 430 408 | 
             
            <tr>
         | 
| 431 409 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 432 | 
            -
            <td> | 
| 410 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or NULL. <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>
         | 
| 433 411 | 
             
            </td>
         | 
| 434 412 | 
             
            </tr>
         | 
| 435 413 | 
             
            <tr>
         | 
| 436 414 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 437 | 
            -
            <td> | 
| 438 | 
            -
            </td>
         | 
| 415 | 
            +
            <td>TRUE, if there is a selected node.</td>
         | 
| 439 416 | 
             
            </tr>
         | 
| 440 417 | 
             
            </tbody>
         | 
| 441 418 | 
             
            </table></div>
         | 
| 442 419 | 
             
            </div>
         | 
| 443 420 | 
             
            <hr>
         | 
| 444 | 
            -
            <div class="refsect2" | 
| 421 | 
            +
            <div class="refsect2">
         | 
| 445 422 | 
             
            <a name="gtk-tree-selection-selected-foreach"></a><h3>gtk_tree_selection_selected_foreach ()</h3>
         | 
| 446 423 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_selected_foreach (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 447 424 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeSelection.html#GtkTreeSelectionForeachFunc" title="GtkTreeSelectionForeachFunc ()"><span class="type">GtkTreeSelectionForeachFunc</span></a> func</code></em>,
         | 
| @@ -456,24 +433,22 @@ the tree or selection from within this function. As a result, | |
| 456 433 | 
             
            <tbody>
         | 
| 457 434 | 
             
            <tr>
         | 
| 458 435 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 459 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 460 | 
            -
            </td>
         | 
| 436 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 461 437 | 
             
            </tr>
         | 
| 462 438 | 
             
            <tr>
         | 
| 463 439 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 464 | 
            -
            <td>The function to call for each selected node.
         | 
| 440 | 
            +
            <td>The function to call for each selected node. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
         | 
| 465 441 | 
             
            </td>
         | 
| 466 442 | 
             
            </tr>
         | 
| 467 443 | 
             
            <tr>
         | 
| 468 444 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 469 | 
            -
            <td>user data to pass to the function | 
| 470 | 
            -
            </td>
         | 
| 445 | 
            +
            <td>user data to pass to the function.</td>
         | 
| 471 446 | 
             
            </tr>
         | 
| 472 447 | 
             
            </tbody>
         | 
| 473 448 | 
             
            </table></div>
         | 
| 474 449 | 
             
            </div>
         | 
| 475 450 | 
             
            <hr>
         | 
| 476 | 
            -
            <div class="refsect2" | 
| 451 | 
            +
            <div class="refsect2">
         | 
| 477 452 | 
             
            <a name="gtk-tree-selection-get-selected-rows"></a><h3>gtk_tree_selection_get_selected_rows ()</h3>
         | 
| 478 453 | 
             
            <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_tree_selection_get_selected_rows
         | 
| 479 454 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| @@ -507,17 +482,16 @@ To free the return value, use: | |
| 507 482 | 
             
            <tbody>
         | 
| 508 483 | 
             
            <tr>
         | 
| 509 484 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 510 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 511 | 
            -
            </td>
         | 
| 485 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 512 486 | 
             
            </tr>
         | 
| 513 487 | 
             
            <tr>
         | 
| 514 488 | 
             
            <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
         | 
| 515 | 
            -
            <td> | 
| 489 | 
            +
            <td>A pointer to set to the <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>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 516 490 | 
             
            </td>
         | 
| 517 491 | 
             
            </tr>
         | 
| 518 492 | 
             
            <tr>
         | 
| 519 493 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 520 | 
            -
            <td> | 
| 494 | 
            +
            <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>
         | 
| 521 495 | 
             
            </td>
         | 
| 522 496 | 
             
            </tr>
         | 
| 523 497 | 
             
            </tbody>
         | 
| @@ -525,7 +499,7 @@ To free the return value, use: | |
| 525 499 | 
             
            <p class="since">Since 2.2</p>
         | 
| 526 500 | 
             
            </div>
         | 
| 527 501 | 
             
            <hr>
         | 
| 528 | 
            -
            <div class="refsect2" | 
| 502 | 
            +
            <div class="refsect2">
         | 
| 529 503 | 
             
            <a name="gtk-tree-selection-count-selected-rows"></a><h3>gtk_tree_selection_count_selected_rows ()</h3>
         | 
| 530 504 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                gtk_tree_selection_count_selected_rows
         | 
| 531 505 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);</pre>
         | 
| @@ -537,24 +511,21 @@ Returns the number of rows that have been selected in <em class="parameter"><cod | |
| 537 511 | 
             
            <tbody>
         | 
| 538 512 | 
             
            <tr>
         | 
| 539 513 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 540 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 541 | 
            -
            </td>
         | 
| 514 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 542 515 | 
             
            </tr>
         | 
| 543 516 | 
             
            <tr>
         | 
| 544 517 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 545 | 
            -
            <td> | 
| 546 | 
            -
             | 
| 547 | 
            -
            </td>
         | 
| 518 | 
            +
            <td>The number of rows selected.</td>
         | 
| 548 519 | 
             
            </tr>
         | 
| 549 520 | 
             
            </tbody>
         | 
| 550 521 | 
             
            </table></div>
         | 
| 551 522 | 
             
            <p class="since">Since 2.2</p>
         | 
| 552 523 | 
             
            </div>
         | 
| 553 524 | 
             
            <hr>
         | 
| 554 | 
            -
            <div class="refsect2" | 
| 525 | 
            +
            <div class="refsect2">
         | 
| 555 526 | 
             
            <a name="gtk-tree-selection-select-path"></a><h3>gtk_tree_selection_select_path ()</h3>
         | 
| 556 527 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_select_path      (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 557 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 528 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 558 529 | 
             
            <p>
         | 
| 559 530 | 
             
            Select the row at <em class="parameter"><code>path</code></em>.
         | 
| 560 531 | 
             
            </p>
         | 
| @@ -563,22 +534,20 @@ Select the row at <em class="parameter"><code>path</code></em>. | |
| 563 534 | 
             
            <tbody>
         | 
| 564 535 | 
             
            <tr>
         | 
| 565 536 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 566 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 567 | 
            -
            </td>
         | 
| 537 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 568 538 | 
             
            </tr>
         | 
| 569 539 | 
             
            <tr>
         | 
| 570 540 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 571 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 572 | 
            -
            </td>
         | 
| 541 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be selected.</td>
         | 
| 573 542 | 
             
            </tr>
         | 
| 574 543 | 
             
            </tbody>
         | 
| 575 544 | 
             
            </table></div>
         | 
| 576 545 | 
             
            </div>
         | 
| 577 546 | 
             
            <hr>
         | 
| 578 | 
            -
            <div class="refsect2" | 
| 547 | 
            +
            <div class="refsect2">
         | 
| 579 548 | 
             
            <a name="gtk-tree-selection-unselect-path"></a><h3>gtk_tree_selection_unselect_path ()</h3>
         | 
| 580 549 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_unselect_path    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 581 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 550 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 582 551 | 
             
            <p>
         | 
| 583 552 | 
             
            Unselects the row at <em class="parameter"><code>path</code></em>.
         | 
| 584 553 | 
             
            </p>
         | 
| @@ -587,22 +556,20 @@ Unselects the row at <em class="parameter"><code>path</code></em>. | |
| 587 556 | 
             
            <tbody>
         | 
| 588 557 | 
             
            <tr>
         | 
| 589 558 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 590 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 591 | 
            -
            </td>
         | 
| 559 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 592 560 | 
             
            </tr>
         | 
| 593 561 | 
             
            <tr>
         | 
| 594 562 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 595 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 596 | 
            -
            </td>
         | 
| 563 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to be unselected.</td>
         | 
| 597 564 | 
             
            </tr>
         | 
| 598 565 | 
             
            </tbody>
         | 
| 599 566 | 
             
            </table></div>
         | 
| 600 567 | 
             
            </div>
         | 
| 601 568 | 
             
            <hr>
         | 
| 602 | 
            -
            <div class="refsect2" | 
| 569 | 
            +
            <div class="refsect2">
         | 
| 603 570 | 
             
            <a name="gtk-tree-selection-path-is-selected"></a><h3>gtk_tree_selection_path_is_selected ()</h3>
         | 
| 604 571 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_tree_selection_path_is_selected (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 605 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 572 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 606 573 | 
             
            <p>
         | 
| 607 574 | 
             
            Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the row pointed to by <em class="parameter"><code>path</code></em> is currently selected.  If <em class="parameter"><code>path</code></em>
         | 
| 608 575 | 
             
            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
         | 
| @@ -612,27 +579,25 @@ does not point to a valid location, <a href="http://library.gnome.org/devel/glib | |
| 612 579 | 
             
            <tbody>
         | 
| 613 580 | 
             
            <tr>
         | 
| 614 581 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 615 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 616 | 
            -
            </td>
         | 
| 582 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 617 583 | 
             
            </tr>
         | 
| 618 584 | 
             
            <tr>
         | 
| 619 585 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 620 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 621 | 
            -
            </td>
         | 
| 586 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to check selection on.</td>
         | 
| 622 587 | 
             
            </tr>
         | 
| 623 588 | 
             
            <tr>
         | 
| 624 589 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 625 | 
            -
            <td> | 
| 626 | 
            -
            </td>
         | 
| 590 | 
            +
            <td>
         | 
| 591 | 
            +
            <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>
         | 
| 627 592 | 
             
            </tr>
         | 
| 628 593 | 
             
            </tbody>
         | 
| 629 594 | 
             
            </table></div>
         | 
| 630 595 | 
             
            </div>
         | 
| 631 596 | 
             
            <hr>
         | 
| 632 | 
            -
            <div class="refsect2" | 
| 597 | 
            +
            <div class="refsect2">
         | 
| 633 598 | 
             
            <a name="gtk-tree-selection-select-iter"></a><h3>gtk_tree_selection_select_iter ()</h3>
         | 
| 634 599 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_select_iter      (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 635 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 600 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 636 601 | 
             
            <p>
         | 
| 637 602 | 
             
            Selects the specified iterator.
         | 
| 638 603 | 
             
            </p>
         | 
| @@ -641,22 +606,20 @@ Selects the specified iterator. | |
| 641 606 | 
             
            <tbody>
         | 
| 642 607 | 
             
            <tr>
         | 
| 643 608 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 644 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 645 | 
            -
            </td>
         | 
| 609 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 646 610 | 
             
            </tr>
         | 
| 647 611 | 
             
            <tr>
         | 
| 648 612 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 649 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 650 | 
            -
            </td>
         | 
| 613 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to be selected.</td>
         | 
| 651 614 | 
             
            </tr>
         | 
| 652 615 | 
             
            </tbody>
         | 
| 653 616 | 
             
            </table></div>
         | 
| 654 617 | 
             
            </div>
         | 
| 655 618 | 
             
            <hr>
         | 
| 656 | 
            -
            <div class="refsect2" | 
| 619 | 
            +
            <div class="refsect2">
         | 
| 657 620 | 
             
            <a name="gtk-tree-selection-unselect-iter"></a><h3>gtk_tree_selection_unselect_iter ()</h3>
         | 
| 658 621 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_unselect_iter    (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 659 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 622 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 660 623 | 
             
            <p>
         | 
| 661 624 | 
             
            Unselects the specified iterator.
         | 
| 662 625 | 
             
            </p>
         | 
| @@ -665,22 +628,20 @@ Unselects the specified iterator. | |
| 665 628 | 
             
            <tbody>
         | 
| 666 629 | 
             
            <tr>
         | 
| 667 630 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 668 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 669 | 
            -
            </td>
         | 
| 631 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 670 632 | 
             
            </tr>
         | 
| 671 633 | 
             
            <tr>
         | 
| 672 634 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 673 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 674 | 
            -
            </td>
         | 
| 635 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to be unselected.</td>
         | 
| 675 636 | 
             
            </tr>
         | 
| 676 637 | 
             
            </tbody>
         | 
| 677 638 | 
             
            </table></div>
         | 
| 678 639 | 
             
            </div>
         | 
| 679 640 | 
             
            <hr>
         | 
| 680 | 
            -
            <div class="refsect2" | 
| 641 | 
            +
            <div class="refsect2">
         | 
| 681 642 | 
             
            <a name="gtk-tree-selection-iter-is-selected"></a><h3>gtk_tree_selection_iter_is_selected ()</h3>
         | 
| 682 643 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_tree_selection_iter_is_selected (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 683 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 644 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 684 645 | 
             
            <p>
         | 
| 685 646 | 
             
            Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the row at <em class="parameter"><code>iter</code></em> is currently selected.
         | 
| 686 647 | 
             
            </p>
         | 
| @@ -694,19 +655,19 @@ Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macr | |
| 694 655 | 
             
            </tr>
         | 
| 695 656 | 
             
            <tr>
         | 
| 696 657 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 697 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 658 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
         | 
| 698 659 | 
             
            </td>
         | 
| 699 660 | 
             
            </tr>
         | 
| 700 661 | 
             
            <tr>
         | 
| 701 662 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 702 | 
            -
            <td> | 
| 703 | 
            -
            </td>
         | 
| 663 | 
            +
            <td>
         | 
| 664 | 
            +
            <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>iter</code></em> is selected</td>
         | 
| 704 665 | 
             
            </tr>
         | 
| 705 666 | 
             
            </tbody>
         | 
| 706 667 | 
             
            </table></div>
         | 
| 707 668 | 
             
            </div>
         | 
| 708 669 | 
             
            <hr>
         | 
| 709 | 
            -
            <div class="refsect2" | 
| 670 | 
            +
            <div class="refsect2">
         | 
| 710 671 | 
             
            <a name="gtk-tree-selection-select-all"></a><h3>gtk_tree_selection_select_all ()</h3>
         | 
| 711 672 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_select_all       (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);</pre>
         | 
| 712 673 | 
             
            <p>
         | 
| @@ -717,13 +678,12 @@ mode. | |
| 717 678 | 
             
            <col align="left" valign="top">
         | 
| 718 679 | 
             
            <tbody><tr>
         | 
| 719 680 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 720 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 721 | 
            -
            </td>
         | 
| 681 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 722 682 | 
             
            </tr></tbody>
         | 
| 723 683 | 
             
            </table></div>
         | 
| 724 684 | 
             
            </div>
         | 
| 725 685 | 
             
            <hr>
         | 
| 726 | 
            -
            <div class="refsect2" | 
| 686 | 
            +
            <div class="refsect2">
         | 
| 727 687 | 
             
            <a name="gtk-tree-selection-unselect-all"></a><h3>gtk_tree_selection_unselect_all ()</h3>
         | 
| 728 688 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_unselect_all     (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>);</pre>
         | 
| 729 689 | 
             
            <p>
         | 
| @@ -733,17 +693,16 @@ Unselects all the nodes. | |
| 733 693 | 
             
            <col align="left" valign="top">
         | 
| 734 694 | 
             
            <tbody><tr>
         | 
| 735 695 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 736 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 737 | 
            -
            </td>
         | 
| 696 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 738 697 | 
             
            </tr></tbody>
         | 
| 739 698 | 
             
            </table></div>
         | 
| 740 699 | 
             
            </div>
         | 
| 741 700 | 
             
            <hr>
         | 
| 742 | 
            -
            <div class="refsect2" | 
| 701 | 
            +
            <div class="refsect2">
         | 
| 743 702 | 
             
            <a name="gtk-tree-selection-select-range"></a><h3>gtk_tree_selection_select_range ()</h3>
         | 
| 744 703 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_select_range     (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 745 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 746 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 704 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *start_path</code></em>,
         | 
| 705 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *end_path</code></em>);</pre>
         | 
| 747 706 | 
             
            <p>
         | 
| 748 707 | 
             
            Selects a range of nodes, determined by <em class="parameter"><code>start_path</code></em> and <em class="parameter"><code>end_path</code></em> inclusive.
         | 
| 749 708 | 
             
            <em class="parameter"><code>selection</code></em> must be set to <a class="link" href="gtk-Standard-Enumerations.html#GTK-SELECTION-MULTIPLE:CAPS"><span class="type">GTK_SELECTION_MULTIPLE</span></a> mode.
         | 
| @@ -753,28 +712,25 @@ Selects a range of nodes, determined by <em class="parameter"><code>start_path</ | |
| 753 712 | 
             
            <tbody>
         | 
| 754 713 | 
             
            <tr>
         | 
| 755 714 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 756 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 757 | 
            -
            </td>
         | 
| 715 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 758 716 | 
             
            </tr>
         | 
| 759 717 | 
             
            <tr>
         | 
| 760 718 | 
             
            <td><p><span class="term"><em class="parameter"><code>start_path</code></em> :</span></p></td>
         | 
| 761 | 
            -
            <td>The initial node of the range | 
| 762 | 
            -
            </td>
         | 
| 719 | 
            +
            <td>The initial node of the range.</td>
         | 
| 763 720 | 
             
            </tr>
         | 
| 764 721 | 
             
            <tr>
         | 
| 765 722 | 
             
            <td><p><span class="term"><em class="parameter"><code>end_path</code></em> :</span></p></td>
         | 
| 766 | 
            -
            <td>The final node of the range | 
| 767 | 
            -
            </td>
         | 
| 723 | 
            +
            <td>The final node of the range.</td>
         | 
| 768 724 | 
             
            </tr>
         | 
| 769 725 | 
             
            </tbody>
         | 
| 770 726 | 
             
            </table></div>
         | 
| 771 727 | 
             
            </div>
         | 
| 772 728 | 
             
            <hr>
         | 
| 773 | 
            -
            <div class="refsect2" | 
| 729 | 
            +
            <div class="refsect2">
         | 
| 774 730 | 
             
            <a name="gtk-tree-selection-unselect-range"></a><h3>gtk_tree_selection_unselect_range ()</h3>
         | 
| 775 731 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_selection_unselect_range   (<em class="parameter"><code><a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *selection</code></em>,
         | 
| 776 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 777 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 732 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *start_path</code></em>,
         | 
| 733 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *end_path</code></em>);</pre>
         | 
| 778 734 | 
             
            <p>
         | 
| 779 735 | 
             
            Unselects a range of nodes, determined by <em class="parameter"><code>start_path</code></em> and <em class="parameter"><code>end_path</code></em>
         | 
| 780 736 | 
             
            inclusive.
         | 
| @@ -784,30 +740,27 @@ inclusive. | |
| 784 740 | 
             
            <tbody>
         | 
| 785 741 | 
             
            <tr>
         | 
| 786 742 | 
             
            <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
         | 
| 787 | 
            -
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a | 
| 788 | 
            -
            </td>
         | 
| 743 | 
            +
            <td>A <a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a>.</td>
         | 
| 789 744 | 
             
            </tr>
         | 
| 790 745 | 
             
            <tr>
         | 
| 791 746 | 
             
            <td><p><span class="term"><em class="parameter"><code>start_path</code></em> :</span></p></td>
         | 
| 792 | 
            -
            <td>The initial node of the range | 
| 793 | 
            -
            </td>
         | 
| 747 | 
            +
            <td>The initial node of the range.</td>
         | 
| 794 748 | 
             
            </tr>
         | 
| 795 749 | 
             
            <tr>
         | 
| 796 750 | 
             
            <td><p><span class="term"><em class="parameter"><code>end_path</code></em> :</span></p></td>
         | 
| 797 | 
            -
            <td>The initial node of the range | 
| 798 | 
            -
            </td>
         | 
| 751 | 
            +
            <td>The initial node of the range.</td>
         | 
| 799 752 | 
             
            </tr>
         | 
| 800 753 | 
             
            </tbody>
         | 
| 801 754 | 
             
            </table></div>
         | 
| 802 755 | 
             
            <p class="since">Since 2.2</p>
         | 
| 803 756 | 
             
            </div>
         | 
| 804 757 | 
             
            </div>
         | 
| 805 | 
            -
            <div class="refsect1" | 
| 758 | 
            +
            <div class="refsect1">
         | 
| 806 759 | 
             
            <a name="GtkTreeSelection.signal-details"></a><h2>Signal Details</h2>
         | 
| 807 | 
            -
            <div class="refsect2" | 
| 760 | 
            +
            <div class="refsect2">
         | 
| 808 761 | 
             
            <a name="GtkTreeSelection-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
         | 
| 809 762 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkTreeSelection.html" title="GtkTreeSelection"><span class="type">GtkTreeSelection</span></a> *treeselection,
         | 
| 810 | 
            -
                                                                    <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>
         | 
| 763 | 
            +
                                                                    <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>
         | 
| 811 764 | 
             
            <p>
         | 
| 812 765 | 
             
            Emitted whenever the selection has (possibly) changed.  Please note that
         | 
| 813 766 | 
             
            this signal is mostly a hint.  It may only be emitted once when a range
         | 
| @@ -819,8 +772,7 @@ has happened. | |
| 819 772 | 
             
            <tbody>
         | 
| 820 773 | 
             
            <tr>
         | 
| 821 774 | 
             
            <td><p><span class="term"><em class="parameter"><code>treeselection</code></em> :</span></p></td>
         | 
| 822 | 
            -
            <td>the object which received the signal | 
| 823 | 
            -
            </td>
         | 
| 775 | 
            +
            <td>the object which received the signal.</td>
         | 
| 824 776 | 
             
            </tr>
         | 
| 825 777 | 
             
            <tr>
         | 
| 826 778 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -830,7 +782,7 @@ has happened. | |
| 830 782 | 
             
            </table></div>
         | 
| 831 783 | 
             
            </div>
         | 
| 832 784 | 
             
            </div>
         | 
| 833 | 
            -
            <div class="refsect1" | 
| 785 | 
            +
            <div class="refsect1">
         | 
| 834 786 | 
             
            <a name="GtkTreeSelection.see-also"></a><h2>See Also</h2>
         | 
| 835 787 | 
             
            <p>
         | 
| 836 788 | 
             
            <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>, <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a>, <span class="type">GtkTreeDnd</span>, <span class="type">GtkTreeMode</span>, <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a>, <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a>, <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>, <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>, <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>, <a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a>, <a class="link" href="GtkCellRendererPixbuf.html" title="GtkCellRendererPixbuf"><span class="type">GtkCellRendererPixbuf</span></a>, <a class="link" href="GtkCellRendererText.html" title="GtkCellRendererText"><span class="type">GtkCellRendererText</span></a>, <a class="link" href="GtkCellRendererToggle.html" title="GtkCellRendererToggle"><span class="type">GtkCellRendererToggle</span></a>
         | 
| @@ -839,6 +791,6 @@ has happened. | |
| 839 791 | 
             
            </div>
         | 
| 840 792 | 
             
            <div class="footer">
         | 
| 841 793 | 
             
            <hr>
         | 
| 842 | 
            -
                      Generated by GTK-Doc V1. | 
| 794 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 843 795 | 
             
            </body>
         | 
| 844 796 | 
             
            </html>
         |