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>GtkTreeItem</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="DeprecatedObjects.html" title="Deprecated">
         | 
| 9 9 | 
             
            <link rel="prev" href="GtkTree.html" title="GtkTree">
         | 
| 10 10 | 
             
            <link rel="next" href="migrating.html" title="Part IV. Migrating from Previous Versions of GTK+">
         | 
| 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="GtkTree.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="DeprecatedObjects.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="migrating.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="#GtkTreeItem.signals" class="shortcut">Signals</a>
         | 
| 33 33 | 
             
            </td></tr>
         | 
| 34 34 | 
             
            </table>
         | 
| 35 | 
            -
            <div class="refentry" | 
| 35 | 
            +
            <div class="refentry">
         | 
| 36 36 | 
             
            <a name="GtkTreeItem"></a><div class="titlepage"></div>
         | 
| 37 37 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 38 38 | 
             
            <td valign="top">
         | 
| @@ -41,15 +41,15 @@ | |
| 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="GtkTreeItem.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="GtkTreeItem.html#GtkTreeItem-struct" title="struct GtkTreeItem">GtkTreeItem</a>;
         | 
| 50 50 | 
             
            #define             <a class="link" href="GtkTreeItem.html#GTK-TREE-ITEM-SUBTREE:CAPS" title="GTK_TREE_ITEM_SUBTREE()">GTK_TREE_ITEM_SUBTREE</a>               (obj)
         | 
| 51 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 52 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 51 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkTreeItem.html#gtk-tree-item-new" title="gtk_tree_item_new ()">gtk_tree_item_new</a>                   (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 52 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkTreeItem.html#gtk-tree-item-new-with-label" title="gtk_tree_item_new_with_label ()">gtk_tree_item_new_with_label</a>        (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *label</code></em>);
         | 
| 53 53 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeItem.html#gtk-tree-item-set-subtree" title="gtk_tree_item_set_subtree ()">gtk_tree_item_set_subtree</a>           (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>,
         | 
| 54 54 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *subtree</code></em>);
         | 
| 55 55 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeItem.html#gtk-tree-item-remove-subtree" title="gtk_tree_item_remove_subtree ()">gtk_tree_item_remove_subtree</a>        (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);
         | 
| @@ -59,7 +59,7 @@ | |
| 59 59 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeItem.html#gtk-tree-item-collapse" title="gtk_tree_item_collapse ()">gtk_tree_item_collapse</a>              (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);
         | 
| 60 60 | 
             
            </pre>
         | 
| 61 61 | 
             
            </div>
         | 
| 62 | 
            -
            <div class="refsect1" | 
| 62 | 
            +
            <div class="refsect1">
         | 
| 63 63 | 
             
            <a name="GtkTreeItem.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 64 64 | 
             
            <pre class="synopsis">
         | 
| 65 65 | 
             
              <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| @@ -72,24 +72,24 @@ | |
| 72 72 | 
             
                                                   +----GtkTreeItem
         | 
| 73 73 | 
             
            </pre>
         | 
| 74 74 | 
             
            </div>
         | 
| 75 | 
            -
            <div class="refsect1" | 
| 75 | 
            +
            <div class="refsect1">
         | 
| 76 76 | 
             
            <a name="GtkTreeItem.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
         | 
| 77 77 | 
             
            <p>
         | 
| 78 78 | 
             
            GtkTreeItem implements
         | 
| 79 79 | 
             
             AtkImplementorIface and  <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
         | 
| 80 80 | 
             
            </div>
         | 
| 81 | 
            -
            <div class="refsect1" | 
| 81 | 
            +
            <div class="refsect1">
         | 
| 82 82 | 
             
            <a name="GtkTreeItem.signals"></a><h2>Signals</h2>
         | 
| 83 83 | 
             
            <pre class="synopsis">
         | 
| 84 | 
            -
              "<a class="link" href="GtkTreeItem.html#GtkTreeItem-collapse" title='The "collapse" signal'>collapse</a>"                                       : Run First
         | 
| 85 | 
            -
              "<a class="link" href="GtkTreeItem.html#GtkTreeItem-expand" title='The "expand" signal'>expand</a>"                                         : Run First
         | 
| 84 | 
            +
              "<a class="link" href="GtkTreeItem.html#GtkTreeItem-collapse" title='The "collapse" signal'>collapse</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>
         | 
| 85 | 
            +
              "<a class="link" href="GtkTreeItem.html#GtkTreeItem-expand" title='The "expand" signal'>expand</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>
         | 
| 86 86 | 
             
            </pre>
         | 
| 87 87 | 
             
            </div>
         | 
| 88 | 
            -
            <div class="refsect1" | 
| 88 | 
            +
            <div class="refsect1">
         | 
| 89 89 | 
             
            <a name="GtkTreeItem.description"></a><h2>Description</h2>
         | 
| 90 90 | 
             
            <p>
         | 
| 91 91 | 
             
            </p>
         | 
| 92 | 
            -
            <div class="warning"  | 
| 92 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 93 93 | 
             
            <h3 class="title">Warning</h3>
         | 
| 94 94 | 
             
            <p>
         | 
| 95 95 | 
             
            <a class="link" href="GtkTree.html" title="GtkTree"><span class="type">GtkTree</span></a> is deprecated and unsupported. It is known to be
         | 
| @@ -100,12 +100,12 @@ prior to including the GTK+ header files. Use <a class="link" href="GtkTreeView. | |
| 100 100 | 
             
            <p>
         | 
| 101 101 | 
             
            </p>
         | 
| 102 102 | 
             
            </div>
         | 
| 103 | 
            -
            <div class="refsect1" | 
| 103 | 
            +
            <div class="refsect1">
         | 
| 104 104 | 
             
            <a name="GtkTreeItem.details"></a><h2>Details</h2>
         | 
| 105 | 
            -
            <div class="refsect2" | 
| 106 | 
            -
            <a name="GtkTreeItem-struct"></a><h3>GtkTreeItem</h3>
         | 
| 107 | 
            -
            <pre class="programlisting"> | 
| 108 | 
            -
            <div class="warning"  | 
| 105 | 
            +
            <div class="refsect2">
         | 
| 106 | 
            +
            <a name="GtkTreeItem-struct"></a><h3>struct GtkTreeItem</h3>
         | 
| 107 | 
            +
            <pre class="programlisting">struct GtkTreeItem;</pre>
         | 
| 108 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 109 109 | 
             
            <h3 class="title">Warning</h3>
         | 
| 110 110 | 
             
            <p><code class="literal">GtkTreeItem</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 111 111 | 
             
            </div>
         | 
| @@ -113,199 +113,113 @@ prior to including the GTK+ header files. Use <a class="link" href="GtkTreeView. | |
| 113 113 | 
             
            </p>
         | 
| 114 114 | 
             
            </div>
         | 
| 115 115 | 
             
            <hr>
         | 
| 116 | 
            -
            <div class="refsect2" | 
| 116 | 
            +
            <div class="refsect2">
         | 
| 117 117 | 
             
            <a name="GTK-TREE-ITEM-SUBTREE:CAPS"></a><h3>GTK_TREE_ITEM_SUBTREE()</h3>
         | 
| 118 118 | 
             
            <pre class="programlisting">#define GTK_TREE_ITEM_SUBTREE(obj)      (GTK_TREE_ITEM(obj)->subtree)
         | 
| 119 119 | 
             
            </pre>
         | 
| 120 | 
            -
            <div class="warning"  | 
| 120 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 121 121 | 
             
            <h3 class="title">Warning</h3>
         | 
| 122 122 | 
             
            <p><code class="literal">GTK_TREE_ITEM_SUBTREE</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 123 123 | 
             
            </div>
         | 
| 124 124 | 
             
            <p>
         | 
| 125 125 | 
             
            </p>
         | 
| 126 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 127 | 
            -
            <col align="left" valign="top">
         | 
| 128 | 
            -
            <tbody><tr>
         | 
| 129 | 
            -
            <td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
         | 
| 130 | 
            -
            <td>
         | 
| 131 | 
            -
            </td>
         | 
| 132 | 
            -
            </tr></tbody>
         | 
| 133 | 
            -
            </table></div>
         | 
| 134 126 | 
             
            </div>
         | 
| 135 127 | 
             
            <hr>
         | 
| 136 | 
            -
            <div class="refsect2" | 
| 128 | 
            +
            <div class="refsect2">
         | 
| 137 129 | 
             
            <a name="gtk-tree-item-new"></a><h3>gtk_tree_item_new ()</h3>
         | 
| 138 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 139 | 
            -
            <div class="warning"  | 
| 130 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_tree_item_new                   (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 131 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 140 132 | 
             
            <h3 class="title">Warning</h3>
         | 
| 141 133 | 
             
            <p><code class="literal">gtk_tree_item_new</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 142 134 | 
             
            </div>
         | 
| 143 135 | 
             
            <p>
         | 
| 144 136 | 
             
            </p>
         | 
| 145 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 146 | 
            -
            <col align="left" valign="top">
         | 
| 147 | 
            -
            <tbody><tr>
         | 
| 148 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 149 | 
            -
            <td>
         | 
| 150 | 
            -
            </td>
         | 
| 151 | 
            -
            </tr></tbody>
         | 
| 152 | 
            -
            </table></div>
         | 
| 153 137 | 
             
            </div>
         | 
| 154 138 | 
             
            <hr>
         | 
| 155 | 
            -
            <div class="refsect2" | 
| 139 | 
            +
            <div class="refsect2">
         | 
| 156 140 | 
             
            <a name="gtk-tree-item-new-with-label"></a><h3>gtk_tree_item_new_with_label ()</h3>
         | 
| 157 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 158 | 
            -
            <div class="warning"  | 
| 141 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_tree_item_new_with_label        (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *label</code></em>);</pre>
         | 
| 142 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 159 143 | 
             
            <h3 class="title">Warning</h3>
         | 
| 160 144 | 
             
            <p><code class="literal">gtk_tree_item_new_with_label</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 161 145 | 
             
            </div>
         | 
| 162 146 | 
             
            <p>
         | 
| 163 147 | 
             
            </p>
         | 
| 164 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 165 | 
            -
            <col align="left" valign="top">
         | 
| 166 | 
            -
            <tbody>
         | 
| 167 | 
            -
            <tr>
         | 
| 168 | 
            -
            <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
         | 
| 169 | 
            -
            <td>
         | 
| 170 | 
            -
            </td>
         | 
| 171 | 
            -
            </tr>
         | 
| 172 | 
            -
            <tr>
         | 
| 173 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 174 | 
            -
            <td>
         | 
| 175 | 
            -
            </td>
         | 
| 176 | 
            -
            </tr>
         | 
| 177 | 
            -
            </tbody>
         | 
| 178 | 
            -
            </table></div>
         | 
| 179 148 | 
             
            </div>
         | 
| 180 149 | 
             
            <hr>
         | 
| 181 | 
            -
            <div class="refsect2" | 
| 150 | 
            +
            <div class="refsect2">
         | 
| 182 151 | 
             
            <a name="gtk-tree-item-set-subtree"></a><h3>gtk_tree_item_set_subtree ()</h3>
         | 
| 183 152 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_item_set_subtree           (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>,
         | 
| 184 153 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *subtree</code></em>);</pre>
         | 
| 185 | 
            -
            <div class="warning"  | 
| 154 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 186 155 | 
             
            <h3 class="title">Warning</h3>
         | 
| 187 156 | 
             
            <p><code class="literal">gtk_tree_item_set_subtree</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 188 157 | 
             
            </div>
         | 
| 189 158 | 
             
            <p>
         | 
| 190 159 | 
             
            </p>
         | 
| 191 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 192 | 
            -
            <col align="left" valign="top">
         | 
| 193 | 
            -
            <tbody>
         | 
| 194 | 
            -
            <tr>
         | 
| 195 | 
            -
            <td><p><span class="term"><em class="parameter"><code>tree_item</code></em> :</span></p></td>
         | 
| 196 | 
            -
            <td>
         | 
| 197 | 
            -
            </td>
         | 
| 198 | 
            -
            </tr>
         | 
| 199 | 
            -
            <tr>
         | 
| 200 | 
            -
            <td><p><span class="term"><em class="parameter"><code>subtree</code></em> :</span></p></td>
         | 
| 201 | 
            -
            <td>
         | 
| 202 | 
            -
            </td>
         | 
| 203 | 
            -
            </tr>
         | 
| 204 | 
            -
            </tbody>
         | 
| 205 | 
            -
            </table></div>
         | 
| 206 160 | 
             
            </div>
         | 
| 207 161 | 
             
            <hr>
         | 
| 208 | 
            -
            <div class="refsect2" | 
| 162 | 
            +
            <div class="refsect2">
         | 
| 209 163 | 
             
            <a name="gtk-tree-item-remove-subtree"></a><h3>gtk_tree_item_remove_subtree ()</h3>
         | 
| 210 164 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_item_remove_subtree        (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
         | 
| 211 | 
            -
            <div class="warning"  | 
| 165 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 212 166 | 
             
            <h3 class="title">Warning</h3>
         | 
| 213 167 | 
             
            <p><code class="literal">gtk_tree_item_remove_subtree</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 214 168 | 
             
            </div>
         | 
| 215 169 | 
             
            <p>
         | 
| 216 170 | 
             
            </p>
         | 
| 217 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 218 | 
            -
            <col align="left" valign="top">
         | 
| 219 | 
            -
            <tbody><tr>
         | 
| 220 | 
            -
            <td><p><span class="term"><em class="parameter"><code>tree_item</code></em> :</span></p></td>
         | 
| 221 | 
            -
            <td>
         | 
| 222 | 
            -
            </td>
         | 
| 223 | 
            -
            </tr></tbody>
         | 
| 224 | 
            -
            </table></div>
         | 
| 225 171 | 
             
            </div>
         | 
| 226 172 | 
             
            <hr>
         | 
| 227 | 
            -
            <div class="refsect2" | 
| 173 | 
            +
            <div class="refsect2">
         | 
| 228 174 | 
             
            <a name="gtk-tree-item-select"></a><h3>gtk_tree_item_select ()</h3>
         | 
| 229 175 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_item_select                (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
         | 
| 230 | 
            -
            <div class="warning"  | 
| 176 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 231 177 | 
             
            <h3 class="title">Warning</h3>
         | 
| 232 178 | 
             
            <p><code class="literal">gtk_tree_item_select</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 233 179 | 
             
            </div>
         | 
| 234 180 | 
             
            <p>
         | 
| 235 181 | 
             
            </p>
         | 
| 236 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 237 | 
            -
            <col align="left" valign="top">
         | 
| 238 | 
            -
            <tbody><tr>
         | 
| 239 | 
            -
            <td><p><span class="term"><em class="parameter"><code>tree_item</code></em> :</span></p></td>
         | 
| 240 | 
            -
            <td>
         | 
| 241 | 
            -
            </td>
         | 
| 242 | 
            -
            </tr></tbody>
         | 
| 243 | 
            -
            </table></div>
         | 
| 244 182 | 
             
            </div>
         | 
| 245 183 | 
             
            <hr>
         | 
| 246 | 
            -
            <div class="refsect2" | 
| 184 | 
            +
            <div class="refsect2">
         | 
| 247 185 | 
             
            <a name="gtk-tree-item-deselect"></a><h3>gtk_tree_item_deselect ()</h3>
         | 
| 248 186 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_item_deselect              (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
         | 
| 249 | 
            -
            <div class="warning"  | 
| 187 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 250 188 | 
             
            <h3 class="title">Warning</h3>
         | 
| 251 189 | 
             
            <p><code class="literal">gtk_tree_item_deselect</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 252 190 | 
             
            </div>
         | 
| 253 191 | 
             
            <p>
         | 
| 254 192 | 
             
            </p>
         | 
| 255 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 256 | 
            -
            <col align="left" valign="top">
         | 
| 257 | 
            -
            <tbody><tr>
         | 
| 258 | 
            -
            <td><p><span class="term"><em class="parameter"><code>tree_item</code></em> :</span></p></td>
         | 
| 259 | 
            -
            <td>
         | 
| 260 | 
            -
            </td>
         | 
| 261 | 
            -
            </tr></tbody>
         | 
| 262 | 
            -
            </table></div>
         | 
| 263 193 | 
             
            </div>
         | 
| 264 194 | 
             
            <hr>
         | 
| 265 | 
            -
            <div class="refsect2" | 
| 195 | 
            +
            <div class="refsect2">
         | 
| 266 196 | 
             
            <a name="gtk-tree-item-expand"></a><h3>gtk_tree_item_expand ()</h3>
         | 
| 267 197 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_item_expand                (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
         | 
| 268 | 
            -
            <div class="warning"  | 
| 198 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 269 199 | 
             
            <h3 class="title">Warning</h3>
         | 
| 270 200 | 
             
            <p><code class="literal">gtk_tree_item_expand</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 271 201 | 
             
            </div>
         | 
| 272 202 | 
             
            <p>
         | 
| 273 203 | 
             
            </p>
         | 
| 274 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 275 | 
            -
            <col align="left" valign="top">
         | 
| 276 | 
            -
            <tbody><tr>
         | 
| 277 | 
            -
            <td><p><span class="term"><em class="parameter"><code>tree_item</code></em> :</span></p></td>
         | 
| 278 | 
            -
            <td>
         | 
| 279 | 
            -
            </td>
         | 
| 280 | 
            -
            </tr></tbody>
         | 
| 281 | 
            -
            </table></div>
         | 
| 282 204 | 
             
            </div>
         | 
| 283 205 | 
             
            <hr>
         | 
| 284 | 
            -
            <div class="refsect2" | 
| 206 | 
            +
            <div class="refsect2">
         | 
| 285 207 | 
             
            <a name="gtk-tree-item-collapse"></a><h3>gtk_tree_item_collapse ()</h3>
         | 
| 286 208 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_item_collapse              (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
         | 
| 287 | 
            -
            <div class="warning"  | 
| 209 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 288 210 | 
             
            <h3 class="title">Warning</h3>
         | 
| 289 211 | 
             
            <p><code class="literal">gtk_tree_item_collapse</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 290 212 | 
             
            </div>
         | 
| 291 213 | 
             
            <p>
         | 
| 292 214 | 
             
            </p>
         | 
| 293 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 294 | 
            -
            <col align="left" valign="top">
         | 
| 295 | 
            -
            <tbody><tr>
         | 
| 296 | 
            -
            <td><p><span class="term"><em class="parameter"><code>tree_item</code></em> :</span></p></td>
         | 
| 297 | 
            -
            <td>
         | 
| 298 | 
            -
            </td>
         | 
| 299 | 
            -
            </tr></tbody>
         | 
| 300 | 
            -
            </table></div>
         | 
| 301 215 | 
             
            </div>
         | 
| 302 216 | 
             
            </div>
         | 
| 303 | 
            -
            <div class="refsect1" | 
| 217 | 
            +
            <div class="refsect1">
         | 
| 304 218 | 
             
            <a name="GtkTreeItem.signal-details"></a><h2>Signal Details</h2>
         | 
| 305 | 
            -
            <div class="refsect2" | 
| 219 | 
            +
            <div class="refsect2">
         | 
| 306 220 | 
             
            <a name="GtkTreeItem-collapse"></a><h3>The <code class="literal">"collapse"</code> signal</h3>
         | 
| 307 221 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *treeitem,
         | 
| 308 | 
            -
                                                                    <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>
         | 
| 222 | 
            +
                                                                    <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>
         | 
| 309 223 | 
             
            <p>
         | 
| 310 224 | 
             
            </p>
         | 
| 311 225 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -313,8 +227,7 @@ prior to including the GTK+ header files. Use <a class="link" href="GtkTreeView. | |
| 313 227 | 
             
            <tbody>
         | 
| 314 228 | 
             
            <tr>
         | 
| 315 229 | 
             
            <td><p><span class="term"><em class="parameter"><code>treeitem</code></em> :</span></p></td>
         | 
| 316 | 
            -
            <td>the object which received the signal | 
| 317 | 
            -
            </td>
         | 
| 230 | 
            +
            <td>the object which received the signal.</td>
         | 
| 318 231 | 
             
            </tr>
         | 
| 319 232 | 
             
            <tr>
         | 
| 320 233 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -324,10 +237,10 @@ prior to including the GTK+ header files. Use <a class="link" href="GtkTreeView. | |
| 324 237 | 
             
            </table></div>
         | 
| 325 238 | 
             
            </div>
         | 
| 326 239 | 
             
            <hr>
         | 
| 327 | 
            -
            <div class="refsect2" | 
| 240 | 
            +
            <div class="refsect2">
         | 
| 328 241 | 
             
            <a name="GtkTreeItem-expand"></a><h3>The <code class="literal">"expand"</code> signal</h3>
         | 
| 329 242 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *treeitem,
         | 
| 330 | 
            -
                                                                    <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>
         | 
| 243 | 
            +
                                                                    <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>
         | 
| 331 244 | 
             
            <p>
         | 
| 332 245 | 
             
            </p>
         | 
| 333 246 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -335,8 +248,7 @@ prior to including the GTK+ header files. Use <a class="link" href="GtkTreeView. | |
| 335 248 | 
             
            <tbody>
         | 
| 336 249 | 
             
            <tr>
         | 
| 337 250 | 
             
            <td><p><span class="term"><em class="parameter"><code>treeitem</code></em> :</span></p></td>
         | 
| 338 | 
            -
            <td>the object which received the signal | 
| 339 | 
            -
            </td>
         | 
| 251 | 
            +
            <td>the object which received the signal.</td>
         | 
| 340 252 | 
             
            </tr>
         | 
| 341 253 | 
             
            <tr>
         | 
| 342 254 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -349,6 +261,6 @@ prior to including the GTK+ header files. Use <a class="link" href="GtkTreeView. | |
| 349 261 | 
             
            </div>
         | 
| 350 262 | 
             
            <div class="footer">
         | 
| 351 263 | 
             
            <hr>
         | 
| 352 | 
            -
                      Generated by GTK-Doc V1. | 
| 264 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 353 265 | 
             
            </body>
         | 
| 354 266 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>GtkTreeModel</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="TreeWidget.html" title="Tree and List Widget Overview">
         | 
| 10 10 | 
             
            <link rel="next" href="GtkTreeSelection.html" title="GtkTreeSelection">
         | 
| 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="TreeWidget.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="GtkTreeSelection.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 22 22 | 
             
            </tr>
         | 
| 23 23 | 
             
            <tr><td colspan="5" class="shortcuts">
         | 
| @@ -36,7 +36,7 @@ | |
| 36 36 | 
             
                              <a href="#GtkTreeModel.signals" class="shortcut">Signals</a>
         | 
| 37 37 | 
             
            </td></tr>
         | 
| 38 38 | 
             
            </table>
         | 
| 39 | 
            -
            <div class="refentry" | 
| 39 | 
            +
            <div class="refentry">
         | 
| 40 40 | 
             
            <a name="GtkTreeModel"></a><div class="titlepage"></div>
         | 
| 41 41 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 42 42 | 
             
            <td valign="top">
         | 
| @@ -45,174 +45,182 @@ | |
| 45 45 | 
             
            </td>
         | 
| 46 46 | 
             
            <td valign="top" align="right"></td>
         | 
| 47 47 | 
             
            </tr></table></div>
         | 
| 48 | 
            -
            <div class="refsynopsisdiv" | 
| 48 | 
            +
            <div class="refsynopsisdiv">
         | 
| 49 49 | 
             
            <a name="GtkTreeModel.synopsis"></a><h2>Synopsis</h2>
         | 
| 50 | 
            -
            <pre class="synopsis">
         | 
| 50 | 
            +
            <a name="GtkTreeIter"></a><a name="GtkTreePath"></a><pre class="synopsis">
         | 
| 51 51 | 
             
            #include <gtk/gtk.h>
         | 
| 52 52 |  | 
| 53 53 | 
             
                                <a class="link" href="GtkTreeModel.html#GtkTreeModel-struct" title="GtkTreeModel">GtkTreeModel</a>;
         | 
| 54 | 
            -
             | 
| 55 | 
            -
                                <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath">GtkTreePath</a>;
         | 
| 54 | 
            +
            struct              <a class="link" href="GtkTreeModel.html#GtkTreeIter-struct" title="struct GtkTreeIter">GtkTreeIter</a>;
         | 
| 55 | 
            +
                                <a class="link" href="GtkTreeModel.html#GtkTreePath-struct" title="GtkTreePath">GtkTreePath</a>;
         | 
| 56 56 | 
             
                                <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference">GtkTreeRowReference</a>;
         | 
| 57 | 
            -
             | 
| 57 | 
            +
            struct              <a class="link" href="GtkTreeModel.html#GtkTreeModelIface" title="struct GtkTreeModelIface">GtkTreeModelIface</a>;
         | 
| 58 58 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (<a class="link" href="GtkTreeModel.html#GtkTreeModelForeachFunc" title="GtkTreeModelForeachFunc ()">*GtkTreeModelForeachFunc</a>)          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 59 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 60 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 59 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 60 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 61 61 | 
             
                                                                     <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>);
         | 
| 62 62 | 
             
            enum                <a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags">GtkTreeModelFlags</a>;
         | 
| 63 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 64 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 65 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 63 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       <a class="link" href="GtkTreeModel.html#gtk-tree-path-new" title="gtk_tree_path_new ()">gtk_tree_path_new</a>                   (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 64 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-from-string" title="gtk_tree_path_new_from_string ()">gtk_tree_path_new_from_string</a>       (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path</code></em>);
         | 
| 65 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-from-indices" title="gtk_tree_path_new_from_indices ()">gtk_tree_path_new_from_indices</a>      (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> first_index</code></em>,
         | 
| 66 66 | 
             
                                                                     <em class="parameter"><code>...</code></em>);
         | 
| 67 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             <a class="link" href="GtkTreeModel.html#gtk-tree-path-to-string" title="gtk_tree_path_to_string ()">gtk_tree_path_to_string</a>             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 68 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 67 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             <a class="link" href="GtkTreeModel.html#gtk-tree-path-to-string" title="gtk_tree_path_to_string ()">gtk_tree_path_to_string</a>             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 68 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-first" title="gtk_tree_path_new_first ()">gtk_tree_path_new_first</a>             (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 69 69 | 
             
            #define             <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-root" title="gtk_tree_path_new_root">gtk_tree_path_new_root</a>
         | 
| 70 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-append-index" title="gtk_tree_path_append_index ()">gtk_tree_path_append_index</a>          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 70 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-append-index" title="gtk_tree_path_append_index ()">gtk_tree_path_append_index</a>          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 71 71 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);
         | 
| 72 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-prepend-index" title="gtk_tree_path_prepend_index ()">gtk_tree_path_prepend_index</a>         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 72 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-prepend-index" title="gtk_tree_path_prepend_index ()">gtk_tree_path_prepend_index</a>         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 73 73 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);
         | 
| 74 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-get-depth" title="gtk_tree_path_get_depth ()">gtk_tree_path_get_depth</a>             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 75 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *              <a class="link" href="GtkTreeModel.html#gtk-tree-path-get-indices" title="gtk_tree_path_get_indices ()">gtk_tree_path_get_indices</a>           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 74 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-get-depth" title="gtk_tree_path_get_depth ()">gtk_tree_path_get_depth</a>             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 75 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *              <a class="link" href="GtkTreeModel.html#gtk-tree-path-get-indices" title="gtk_tree_path_get_indices ()">gtk_tree_path_get_indices</a>           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 76 76 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *              <a class="link" href="GtkTreeModel.html#gtk-tree-path-get-indices-with-depth" title="gtk_tree_path_get_indices_with_depth ()">gtk_tree_path_get_indices_with_depth</a>
         | 
| 77 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 77 | 
            +
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 78 78 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *depth</code></em>);
         | 
| 79 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()">gtk_tree_path_free</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 80 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 81 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-compare" title="gtk_tree_path_compare ()">gtk_tree_path_compare</a>               (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 82 | 
            -
                                                                     <em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 83 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-next" title="gtk_tree_path_next ()">gtk_tree_path_next</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 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="GtkTreeModel.html#gtk-tree-path-prev" title="gtk_tree_path_prev ()">gtk_tree_path_prev</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 85 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-path-up" title="gtk_tree_path_up ()">gtk_tree_path_up</a>                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 86 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-down" title="gtk_tree_path_down ()">gtk_tree_path_down</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 87 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-path-is-ancestor" title="gtk_tree_path_is_ancestor ()">gtk_tree_path_is_ancestor</a>           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 88 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 89 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-path-is-descendant" title="gtk_tree_path_is_descendant ()">gtk_tree_path_is_descendant</a>         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 90 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 79 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()">gtk_tree_path_free</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 80 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       <a class="link" href="GtkTreeModel.html#gtk-tree-path-copy" title="gtk_tree_path_copy ()">gtk_tree_path_copy</a>                  (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 81 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-compare" title="gtk_tree_path_compare ()">gtk_tree_path_compare</a>               (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *a</code></em>,
         | 
| 82 | 
            +
                                                                     <em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *b</code></em>);
         | 
| 83 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-next" title="gtk_tree_path_next ()">gtk_tree_path_next</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 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="GtkTreeModel.html#gtk-tree-path-prev" title="gtk_tree_path_prev ()">gtk_tree_path_prev</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 85 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-path-up" title="gtk_tree_path_up ()">gtk_tree_path_up</a>                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 86 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-path-down" title="gtk_tree_path_down ()">gtk_tree_path_down</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 87 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-path-is-ancestor" title="gtk_tree_path_is_ancestor ()">gtk_tree_path_is_ancestor</a>           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 88 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *descendant</code></em>);
         | 
| 89 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-path-is-descendant" title="gtk_tree_path_is_descendant ()">gtk_tree_path_is_descendant</a>         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 90 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *ancestor</code></em>);
         | 
| 91 91 | 
             
            <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new" title="gtk_tree_row_reference_new ()">gtk_tree_row_reference_new</a>        (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 92 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 92 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 93 93 | 
             
            <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()">gtk_tree_row_reference_new_proxy</a>  (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
         | 
| 94 94 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 95 | 
            -
                                                                     <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> *path</code></em>);
         | 
| 96 96 | 
             
            <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *      <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-get-model" title="gtk_tree_row_reference_get_model ()">gtk_tree_row_reference_get_model</a>    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
         | 
| 97 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 97 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-get-path" title="gtk_tree_row_reference_get_path ()">gtk_tree_row_reference_get_path</a>     (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
         | 
| 98 98 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-valid" title="gtk_tree_row_reference_valid ()">gtk_tree_row_reference_valid</a>        (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
         | 
| 99 99 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-free" title="gtk_tree_row_reference_free ()">gtk_tree_row_reference_free</a>         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
         | 
| 100 100 | 
             
            <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-copy" title="gtk_tree_row_reference_copy ()">gtk_tree_row_reference_copy</a>       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
         | 
| 101 101 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-inserted" title="gtk_tree_row_reference_inserted ()">gtk_tree_row_reference_inserted</a>     (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
         | 
| 102 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 102 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 103 103 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-deleted" title="gtk_tree_row_reference_deleted ()">gtk_tree_row_reference_deleted</a>      (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
         | 
| 104 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 104 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 105 105 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-reordered" title="gtk_tree_row_reference_reordered ()">gtk_tree_row_reference_reordered</a>    (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
         | 
| 106 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 107 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 106 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 107 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 108 108 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *new_order</code></em>);
         | 
| 109 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 110 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-iter-free" title="gtk_tree_iter_free ()">gtk_tree_iter_free</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 109 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="returnvalue">GtkTreeIter</span></a> *       <a class="link" href="GtkTreeModel.html#gtk-tree-iter-copy" title="gtk_tree_iter_copy ()">gtk_tree_iter_copy</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 110 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-iter-free" title="gtk_tree_iter_free ()">gtk_tree_iter_free</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 111 111 | 
             
            <a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags"><span class="returnvalue">GtkTreeModelFlags</span></a>   <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-flags" title="gtk_tree_model_get_flags ()">gtk_tree_model_get_flags</a>            (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);
         | 
| 112 112 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-n-columns" title="gtk_tree_model_get_n_columns ()">gtk_tree_model_get_n_columns</a>        (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);
         | 
| 113 113 | 
             
            <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a>               <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-column-type" title="gtk_tree_model_get_column_type ()">gtk_tree_model_get_column_type</a>      (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 114 114 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);
         | 
| 115 115 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter" title="gtk_tree_model_get_iter ()">gtk_tree_model_get_iter</a>             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 116 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 117 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 116 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 117 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 118 118 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter-from-string" title="gtk_tree_model_get_iter_from_string ()">gtk_tree_model_get_iter_from_string</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 119 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 119 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 120 120 | 
             
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path_string</code></em>);
         | 
| 121 121 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter-first" title="gtk_tree_model_get_iter_first ()">gtk_tree_model_get_iter_first</a>       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 122 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 122 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 123 123 | 
             
            #define             <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter-root" title="gtk_tree_model_get_iter_root()">gtk_tree_model_get_iter_root</a>        (tree_model,
         | 
| 124 124 | 
             
                                                                     iter)
         | 
| 125 | 
            -
            <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 126 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 125 | 
            +
            <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-path" title="gtk_tree_model_get_path ()">gtk_tree_model_get_path</a>             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 126 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 127 127 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-value" title="gtk_tree_model_get_value ()">gtk_tree_model_get_value</a>            (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 128 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 128 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 129 129 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
         | 
| 130 130 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);
         | 
| 131 131 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-next" title="gtk_tree_model_iter_next ()">gtk_tree_model_iter_next</a>            (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 132 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 132 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 133 133 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-children" title="gtk_tree_model_iter_children ()">gtk_tree_model_iter_children</a>        (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 134 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 135 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 134 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 135 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);
         | 
| 136 136 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-has-child" title="gtk_tree_model_iter_has_child ()">gtk_tree_model_iter_has_child</a>       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 137 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 137 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 138 138 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-n-children" title="gtk_tree_model_iter_n_children ()">gtk_tree_model_iter_n_children</a>      (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 139 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 139 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 140 140 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-nth-child" title="gtk_tree_model_iter_nth_child ()">gtk_tree_model_iter_nth_child</a>       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 141 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 142 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 141 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 142 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 143 143 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n</code></em>);
         | 
| 144 144 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-parent" title="gtk_tree_model_iter_parent ()">gtk_tree_model_iter_parent</a>          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 145 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 146 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 145 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 146 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *child</code></em>);
         | 
| 147 147 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-string-from-iter" title="gtk_tree_model_get_string_from_iter ()">gtk_tree_model_get_string_from_iter</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 148 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 148 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 149 149 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-ref-node" title="gtk_tree_model_ref_node ()">gtk_tree_model_ref_node</a>             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 150 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 150 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 151 151 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-unref-node" title="gtk_tree_model_unref_node ()">gtk_tree_model_unref_node</a>           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 152 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 152 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 153 153 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-get" title="gtk_tree_model_get ()">gtk_tree_model_get</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 154 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 154 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 155 155 | 
             
                                                                     <em class="parameter"><code>...</code></em>);
         | 
| 156 156 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-valist" title="gtk_tree_model_get_valist ()">gtk_tree_model_get_valist</a>           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 157 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 157 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 158 158 | 
             
                                                                     <em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
         | 
| 159 159 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-foreach" title="gtk_tree_model_foreach ()">gtk_tree_model_foreach</a>              (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 160 160 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeModelForeachFunc" title="GtkTreeModelForeachFunc ()"><span class="type">GtkTreeModelForeachFunc</span></a> func</code></em>,
         | 
| 161 161 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
         | 
| 162 162 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-row-changed" title="gtk_tree_model_row_changed ()">gtk_tree_model_row_changed</a>          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 163 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 164 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 163 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 164 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 165 165 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-row-inserted" title="gtk_tree_model_row_inserted ()">gtk_tree_model_row_inserted</a>         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 166 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 167 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 166 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 167 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 168 168 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-row-has-child-toggled" title="gtk_tree_model_row_has_child_toggled ()">gtk_tree_model_row_has_child_toggled</a>
         | 
| 169 169 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 170 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 171 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 170 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 171 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 172 172 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-row-deleted" title="gtk_tree_model_row_deleted ()">gtk_tree_model_row_deleted</a>          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 173 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 173 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
         | 
| 174 174 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeModel.html#gtk-tree-model-rows-reordered" title="gtk_tree_model_rows_reordered ()">gtk_tree_model_rows_reordered</a>       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 175 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 176 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 175 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 176 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 177 177 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *new_order</code></em>);
         | 
| 178 178 | 
             
            </pre>
         | 
| 179 179 | 
             
            </div>
         | 
| 180 | 
            -
            <div class="refsect1" | 
| 180 | 
            +
            <div class="refsect1">
         | 
| 181 181 | 
             
            <a name="GtkTreeModel.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 182 182 | 
             
            <pre class="synopsis">
         | 
| 183 183 | 
             
              GInterface
         | 
| 184 184 | 
             
               +----GtkTreeModel
         | 
| 185 185 | 
             
            </pre>
         | 
| 186 | 
            +
            <pre class="synopsis">
         | 
| 187 | 
            +
              GBoxed
         | 
| 188 | 
            +
               +----GtkTreeIter
         | 
| 189 | 
            +
            </pre>
         | 
| 190 | 
            +
            <pre class="synopsis">
         | 
| 191 | 
            +
              GBoxed
         | 
| 192 | 
            +
               +----GtkTreePath
         | 
| 193 | 
            +
            </pre>
         | 
| 186 194 | 
             
            </div>
         | 
| 187 | 
            -
            <div class="refsect1" | 
| 195 | 
            +
            <div class="refsect1">
         | 
| 188 196 | 
             
            <a name="GtkTreeModel.prerequisites"></a><h2>Prerequisites</h2>
         | 
| 189 197 | 
             
            <p>
         | 
| 190 198 | 
             
            GtkTreeModel requires
         | 
| 191 199 | 
             
             <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>.</p>
         | 
| 192 200 | 
             
            </div>
         | 
| 193 | 
            -
            <div class="refsect1" | 
| 201 | 
            +
            <div class="refsect1">
         | 
| 194 202 | 
             
            <a name="GtkTreeModel.derived-interfaces"></a><h2>Known Derived Interfaces</h2>
         | 
| 195 203 | 
             
            <p>
         | 
| 196 204 | 
             
            GtkTreeModel is required by
         | 
| 197 205 | 
             
             <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable">GtkTreeSortable</a>.</p>
         | 
| 198 206 | 
             
            </div>
         | 
| 199 | 
            -
            <div class="refsect1" | 
| 207 | 
            +
            <div class="refsect1">
         | 
| 200 208 | 
             
            <a name="GtkTreeModel.implementations"></a><h2>Known Implementations</h2>
         | 
| 201 209 | 
             
            <p>
         | 
| 202 210 | 
             
            GtkTreeModel is implemented by
         | 
| 203 211 | 
             
             <a class="link" href="GtkListStore.html" title="GtkListStore">GtkListStore</a>,  <a class="link" href="GtkTreeModelFilter.html" title="GtkTreeModelFilter">GtkTreeModelFilter</a>,  <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort">GtkTreeModelSort</a> and  <a class="link" href="GtkTreeStore.html" title="GtkTreeStore">GtkTreeStore</a>.</p>
         | 
| 204 212 | 
             
            </div>
         | 
| 205 | 
            -
            <div class="refsect1" | 
| 213 | 
            +
            <div class="refsect1">
         | 
| 206 214 | 
             
            <a name="GtkTreeModel.signals"></a><h2>Signals</h2>
         | 
| 207 215 | 
             
            <pre class="synopsis">
         | 
| 208 | 
            -
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-changed" title='The "row-changed" signal'>row-changed</a>"                                    : Run Last
         | 
| 209 | 
            -
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-deleted" title='The "row-deleted" signal'>row-deleted</a>"                                    : Run First
         | 
| 210 | 
            -
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-has-child-toggled" title='The "row-has-child-toggled" signal'>row-has-child-toggled</a>"                          : Run Last
         | 
| 211 | 
            -
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-inserted" title='The "row-inserted" signal'>row-inserted</a>"                                   : Run First
         | 
| 212 | 
            -
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-rows-reordered" title='The "rows-reordered" signal'>rows-reordered</a>"                                 : Run First
         | 
| 216 | 
            +
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-changed" title='The "row-changed" signal'>row-changed</a>"                                    : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
         | 
| 217 | 
            +
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-deleted" title='The "row-deleted" signal'>row-deleted</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>
         | 
| 218 | 
            +
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-has-child-toggled" title='The "row-has-child-toggled" signal'>row-has-child-toggled</a>"                          : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
         | 
| 219 | 
            +
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-inserted" title='The "row-inserted" signal'>row-inserted</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>
         | 
| 220 | 
            +
              "<a class="link" href="GtkTreeModel.html#GtkTreeModel-rows-reordered" title='The "rows-reordered" signal'>rows-reordered</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>
         | 
| 213 221 | 
             
            </pre>
         | 
| 214 222 | 
             
            </div>
         | 
| 215 | 
            -
            <div class="refsect1" | 
| 223 | 
            +
            <div class="refsect1">
         | 
| 216 224 | 
             
            <a name="GtkTreeModel.description"></a><h2>Description</h2>
         | 
| 217 225 | 
             
            <p>
         | 
| 218 226 | 
             
            The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> interface defines a generic tree interface for use by
         | 
| @@ -245,21 +253,21 @@ the vast majority of trees and lists, these two models are sufficient. | |
| 245 253 | 
             
            Models are accessed on a node/column level of granularity.  One can
         | 
| 246 254 | 
             
            query for the value of a model at a certain node and a certain column
         | 
| 247 255 | 
             
            on that node.  There are two structures used to reference a particular
         | 
| 248 | 
            -
            node in a model.  They are the <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 249 | 
            -
            <sup>[<a name=" | 
| 250 | 
            -
            Most of the interface consists of operations on a <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 256 | 
            +
            node in a model.  They are the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> and the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
         | 
| 257 | 
            +
            <sup>[<a name="id977843" href="#ftn.id977843" class="footnote">4</a>]</sup>
         | 
| 258 | 
            +
            Most of the interface consists of operations on a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.
         | 
| 251 259 | 
             
            </p>
         | 
| 252 260 | 
             
            <p>
         | 
| 253 261 | 
             
            A path is essentially a potential node.  It is a location on a model
         | 
| 254 262 | 
             
            that may or may not actually correspond to a node on a specific model.
         | 
| 255 | 
            -
            The <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 263 | 
            +
            The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> struct can be converted into either an array of
         | 
| 256 264 | 
             
            unsigned integers or a string.  The string form is a list of numbers
         | 
| 257 265 | 
             
            separated by a colon.  Each number refers to the offset at that level.
         | 
| 258 266 | 
             
            Thus, the path <span class="quote">“<span class="quote">0</span>”</span> refers to the root node and the path
         | 
| 259 267 | 
             
            <span class="quote">“<span class="quote">2:4</span>”</span> refers to the fifth child of the third node.
         | 
| 260 268 | 
             
            </p>
         | 
| 261 269 | 
             
            <p>
         | 
| 262 | 
            -
            By contrast, a <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 270 | 
            +
            By contrast, a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> is a reference to a specific node on a
         | 
| 263 271 | 
             
            specific model.  It is a generic struct with an integer and three
         | 
| 264 272 | 
             
            generic pointers.  These are filled in by the model in a model-specific
         | 
| 265 273 | 
             
            way.  One can convert a path to an iterator by calling
         | 
| @@ -300,7 +308,7 @@ the second is much more common, as you often get paths from callbacks. | |
| 300 308 | 
             
            <p>
         | 
| 301 309 | 
             
            </p>
         | 
| 302 310 | 
             
            <div class="example">
         | 
| 303 | 
            -
            <a name=" | 
| 311 | 
            +
            <a name="id977980"></a><p class="title"><b>Example 21. Acquiring a <span class="structname">GtkTreeIter</span></b></p>
         | 
| 304 312 | 
             
            <div class="example-contents">
         | 
| 305 313 | 
             
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| 306 314 | 
             
                <tbody>
         | 
| @@ -359,7 +367,7 @@ it is specific to the <a class="link" href="GtkListStore.html" title="GtkListSto | |
| 359 367 | 
             
            such a function, see the <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a> documentation.
         | 
| 360 368 | 
             
            </p>
         | 
| 361 369 | 
             
            <div class="example">
         | 
| 362 | 
            -
            <a name=" | 
| 370 | 
            +
            <a name="id978029"></a><p class="title"><b>Example 22. Reading data from a <span class="structname">GtkTreeModel</span></b></p>
         | 
| 363 371 | 
             
            <div class="example-contents">
         | 
| 364 372 | 
             
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| 365 373 | 
             
                <tbody>
         | 
| @@ -445,74 +453,43 @@ such a function, see the <a class="link" href="GtkListStore.html" title="GtkList | |
| 445 453 | 
             
            <p><br class="example-break">
         | 
| 446 454 | 
             
            </p>
         | 
| 447 455 | 
             
            </div>
         | 
| 448 | 
            -
            <div class="refsect1" | 
| 456 | 
            +
            <div class="refsect1">
         | 
| 449 457 | 
             
            <a name="GtkTreeModel.details"></a><h2>Details</h2>
         | 
| 450 | 
            -
            <div class="refsect2" | 
| 458 | 
            +
            <div class="refsect2">
         | 
| 451 459 | 
             
            <a name="GtkTreeModel-struct"></a><h3>GtkTreeModel</h3>
         | 
| 452 460 | 
             
            <pre class="programlisting">typedef struct _GtkTreeModel GtkTreeModel;</pre>
         | 
| 453 461 | 
             
            <p>
         | 
| 454 462 | 
             
            </p>
         | 
| 455 463 | 
             
            </div>
         | 
| 456 464 | 
             
            <hr>
         | 
| 457 | 
            -
            <div class="refsect2" | 
| 458 | 
            -
            <a name="GtkTreeIter"></a><h3>GtkTreeIter</h3>
         | 
| 459 | 
            -
            <pre class="programlisting"> | 
| 460 | 
            -
              gint stamp;
         | 
| 461 | 
            -
              gpointer user_data;
         | 
| 462 | 
            -
              gpointer user_data2;
         | 
| 463 | 
            -
              gpointer user_data3;
         | 
| 464 | 
            -
            } GtkTreeIter;
         | 
| 465 | 
            -
            </pre>
         | 
| 465 | 
            +
            <div class="refsect2">
         | 
| 466 | 
            +
            <a name="GtkTreeIter-struct"></a><h3>struct GtkTreeIter</h3>
         | 
| 467 | 
            +
            <pre class="programlisting">struct GtkTreeIter;</pre>
         | 
| 466 468 | 
             
            <p>
         | 
| 467 469 | 
             
            The <span class="structname">GtkTreeIter</span> is the primary structure for
         | 
| 468 470 | 
             
            accessing a structure.  Models are expected to put a unique integer in
         | 
| 469 471 | 
             
            the <em class="structfield"><code>stamp</code></em> member, and put model-specific
         | 
| 470 472 | 
             
            data in the three <em class="structfield"><code>user_data</code></em> members.
         | 
| 471 473 | 
             
            </p>
         | 
| 472 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 473 | 
            -
            <col align="left" valign="top">
         | 
| 474 | 
            -
            <tbody>
         | 
| 475 | 
            -
            <tr>
         | 
| 476 | 
            -
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GtkTreeIter.stamp"></a>stamp</code></em>;</span></p></td>
         | 
| 477 | 
            -
            <td>A unique stamp to catch invalid iterators
         | 
| 478 | 
            -
            </td>
         | 
| 479 | 
            -
            </tr>
         | 
| 480 | 
            -
            <tr>
         | 
| 481 | 
            -
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> <em class="structfield"><code><a name="GtkTreeIter.user-data"></a>user_data</code></em>;</span></p></td>
         | 
| 482 | 
            -
            <td>Model specific data
         | 
| 483 | 
            -
            </td>
         | 
| 484 | 
            -
            </tr>
         | 
| 485 | 
            -
            <tr>
         | 
| 486 | 
            -
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> <em class="structfield"><code><a name="GtkTreeIter.user-data2"></a>user_data2</code></em>;</span></p></td>
         | 
| 487 | 
            -
            <td>Model specific data
         | 
| 488 | 
            -
            </td>
         | 
| 489 | 
            -
            </tr>
         | 
| 490 | 
            -
            <tr>
         | 
| 491 | 
            -
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> <em class="structfield"><code><a name="GtkTreeIter.user-data3"></a>user_data3</code></em>;</span></p></td>
         | 
| 492 | 
            -
            <td>Model specific data
         | 
| 493 | 
            -
            </td>
         | 
| 494 | 
            -
            </tr>
         | 
| 495 | 
            -
            </tbody>
         | 
| 496 | 
            -
            </table></div>
         | 
| 497 474 | 
             
            </div>
         | 
| 498 475 | 
             
            <hr>
         | 
| 499 | 
            -
            <div class="refsect2" | 
| 500 | 
            -
            <a name="GtkTreePath"></a><h3>GtkTreePath</h3>
         | 
| 476 | 
            +
            <div class="refsect2">
         | 
| 477 | 
            +
            <a name="GtkTreePath-struct"></a><h3>GtkTreePath</h3>
         | 
| 501 478 | 
             
            <pre class="programlisting">typedef struct _GtkTreePath GtkTreePath;</pre>
         | 
| 502 479 | 
             
            <p>
         | 
| 503 480 | 
             
            </p>
         | 
| 504 481 | 
             
            </div>
         | 
| 505 482 | 
             
            <hr>
         | 
| 506 | 
            -
            <div class="refsect2" | 
| 483 | 
            +
            <div class="refsect2">
         | 
| 507 484 | 
             
            <a name="GtkTreeRowReference"></a><h3>GtkTreeRowReference</h3>
         | 
| 508 485 | 
             
            <pre class="programlisting">typedef struct _GtkTreeRowReference GtkTreeRowReference;</pre>
         | 
| 509 486 | 
             
            <p>
         | 
| 510 487 | 
             
            </p>
         | 
| 511 488 | 
             
            </div>
         | 
| 512 489 | 
             
            <hr>
         | 
| 513 | 
            -
            <div class="refsect2" | 
| 514 | 
            -
            <a name="GtkTreeModelIface"></a><h3>GtkTreeModelIface</h3>
         | 
| 515 | 
            -
            <pre class="programlisting"> | 
| 490 | 
            +
            <div class="refsect2">
         | 
| 491 | 
            +
            <a name="GtkTreeModelIface"></a><h3>struct GtkTreeModelIface</h3>
         | 
| 492 | 
            +
            <pre class="programlisting">struct GtkTreeModelIface {
         | 
| 516 493 | 
             
              GTypeInterface g_iface;
         | 
| 517 494 |  | 
| 518 495 | 
             
              /* Signals */
         | 
| @@ -567,17 +544,17 @@ data in the three <em class="structfield"><code>user_data</code></em> members. | |
| 567 544 | 
             
            				    GtkTreeIter  *iter);
         | 
| 568 545 | 
             
              void         (* unref_node)      (GtkTreeModel *tree_model,
         | 
| 569 546 | 
             
            				    GtkTreeIter  *iter);
         | 
| 570 | 
            -
            } | 
| 547 | 
            +
            };
         | 
| 571 548 | 
             
            </pre>
         | 
| 572 549 | 
             
            <p>
         | 
| 573 550 | 
             
            </p>
         | 
| 574 551 | 
             
            </div>
         | 
| 575 552 | 
             
            <hr>
         | 
| 576 | 
            -
            <div class="refsect2" | 
| 553 | 
            +
            <div class="refsect2">
         | 
| 577 554 | 
             
            <a name="GtkTreeModelForeachFunc"></a><h3>GtkTreeModelForeachFunc ()</h3>
         | 
| 578 555 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (*GtkTreeModelForeachFunc)          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 579 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 580 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 556 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 557 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 581 558 | 
             
                                                                     <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>
         | 
| 582 559 | 
             
            <p>
         | 
| 583 560 | 
             
            </p>
         | 
| @@ -586,17 +563,16 @@ data in the three <em class="structfield"><code>user_data</code></em> members. | |
| 586 563 | 
             
            <tbody>
         | 
| 587 564 | 
             
            <tr>
         | 
| 588 565 | 
             
            <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
         | 
| 589 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> currently being iterated
         | 
| 590 | 
            -
            </td>
         | 
| 566 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> currently being iterated</td>
         | 
| 591 567 | 
             
            </tr>
         | 
| 592 568 | 
             
            <tr>
         | 
| 593 569 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 594 | 
            -
            <td>The current <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 570 | 
            +
            <td>The current <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
         | 
| 595 571 | 
             
            </td>
         | 
| 596 572 | 
             
            </tr>
         | 
| 597 573 | 
             
            <tr>
         | 
| 598 574 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 599 | 
            -
            <td>The current <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 575 | 
            +
            <td>The current <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
         | 
| 600 576 | 
             
            </td>
         | 
| 601 577 | 
             
            </tr>
         | 
| 602 578 | 
             
            <tr>
         | 
| @@ -607,14 +583,13 @@ data in the three <em class="structfield"><code>user_data</code></em> members. | |
| 607 583 | 
             
            <tr>
         | 
| 608 584 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 609 585 | 
             
            <td>
         | 
| 610 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop iterating, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to continue | 
| 611 | 
            -
            </td>
         | 
| 586 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop iterating, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to continue.</td>
         | 
| 612 587 | 
             
            </tr>
         | 
| 613 588 | 
             
            </tbody>
         | 
| 614 589 | 
             
            </table></div>
         | 
| 615 590 | 
             
            </div>
         | 
| 616 591 | 
             
            <hr>
         | 
| 617 | 
            -
            <div class="refsect2" | 
| 592 | 
            +
            <div class="refsect2">
         | 
| 618 593 | 
             
            <a name="GtkTreeModelFlags"></a><h3>enum GtkTreeModelFlags</h3>
         | 
| 619 594 | 
             
            <pre class="programlisting">typedef enum
         | 
| 620 595 | 
             
            {
         | 
| @@ -646,27 +621,26 @@ section. | |
| 646 621 | 
             
            </table></div>
         | 
| 647 622 | 
             
            </div>
         | 
| 648 623 | 
             
            <hr>
         | 
| 649 | 
            -
            <div class="refsect2" | 
| 624 | 
            +
            <div class="refsect2">
         | 
| 650 625 | 
             
            <a name="gtk-tree-path-new"></a><h3>gtk_tree_path_new ()</h3>
         | 
| 651 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 626 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       gtk_tree_path_new                   (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 652 627 | 
             
            <p>
         | 
| 653 | 
            -
            Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 628 | 
            +
            Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.  This structure refers to a row.
         | 
| 654 629 | 
             
            </p>
         | 
| 655 630 | 
             
            <div class="variablelist"><table border="0">
         | 
| 656 631 | 
             
            <col align="left" valign="top">
         | 
| 657 632 | 
             
            <tbody><tr>
         | 
| 658 633 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 659 | 
            -
            <td> | 
| 660 | 
            -
            </td>
         | 
| 634 | 
            +
            <td>A newly created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 661 635 | 
             
            </tr></tbody>
         | 
| 662 636 | 
             
            </table></div>
         | 
| 663 637 | 
             
            </div>
         | 
| 664 638 | 
             
            <hr>
         | 
| 665 | 
            -
            <div class="refsect2" | 
| 639 | 
            +
            <div class="refsect2">
         | 
| 666 640 | 
             
            <a name="gtk-tree-path-new-from-string"></a><h3>gtk_tree_path_new_from_string ()</h3>
         | 
| 667 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 641 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       gtk_tree_path_new_from_string       (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path</code></em>);</pre>
         | 
| 668 642 | 
             
            <p>
         | 
| 669 | 
            -
            Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 643 | 
            +
            Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> initialized to <em class="parameter"><code>path</code></em>.  <em class="parameter"><code>path</code></em> is expected to be a
         | 
| 670 644 | 
             
            colon separated list of numbers.  For example, the string "10:4:0" would
         | 
| 671 645 | 
             
            create a path of depth 3 pointing to the 11th child of the root node, the 5th
         | 
| 672 646 | 
             
            child of that 11th child, and the 1st child of that 5th child.  If an invalid
         | 
| @@ -677,21 +651,20 @@ path string is passed in, <a href="http://library.gnome.org/devel/glib/unstable/ | |
| 677 651 | 
             
            <tbody>
         | 
| 678 652 | 
             
            <tr>
         | 
| 679 653 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 680 | 
            -
            <td>The string representation of a path | 
| 681 | 
            -
            </td>
         | 
| 654 | 
            +
            <td>The string representation of a path.</td>
         | 
| 682 655 | 
             
            </tr>
         | 
| 683 656 | 
             
            <tr>
         | 
| 684 657 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 685 | 
            -
            <td> | 
| 658 | 
            +
            <td>A newly-created <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>
         | 
| 686 659 | 
             
            </td>
         | 
| 687 660 | 
             
            </tr>
         | 
| 688 661 | 
             
            </tbody>
         | 
| 689 662 | 
             
            </table></div>
         | 
| 690 663 | 
             
            </div>
         | 
| 691 664 | 
             
            <hr>
         | 
| 692 | 
            -
            <div class="refsect2" | 
| 665 | 
            +
            <div class="refsect2">
         | 
| 693 666 | 
             
            <a name="gtk-tree-path-new-from-indices"></a><h3>gtk_tree_path_new_from_indices ()</h3>
         | 
| 694 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 667 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       gtk_tree_path_new_from_indices      (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> first_index</code></em>,
         | 
| 695 668 | 
             
                                                                     <em class="parameter"><code>...</code></em>);</pre>
         | 
| 696 669 | 
             
            <p>
         | 
| 697 670 | 
             
            Creates a new path with <em class="parameter"><code>first_index</code></em> and <em class="parameter"><code>varargs</code></em> as indices.
         | 
| @@ -701,28 +674,24 @@ Creates a new path with <em class="parameter"><code>first_index</code></em> and | |
| 701 674 | 
             
            <tbody>
         | 
| 702 675 | 
             
            <tr>
         | 
| 703 676 | 
             
            <td><p><span class="term"><em class="parameter"><code>first_index</code></em> :</span></p></td>
         | 
| 704 | 
            -
            <td>first integer
         | 
| 705 | 
            -
            </td>
         | 
| 677 | 
            +
            <td>first integer</td>
         | 
| 706 678 | 
             
            </tr>
         | 
| 707 679 | 
             
            <tr>
         | 
| 708 680 | 
             
            <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
         | 
| 709 | 
            -
            <td>list of integers terminated by -1
         | 
| 710 | 
            -
            </td>
         | 
| 681 | 
            +
            <td>list of integers terminated by -1</td>
         | 
| 711 682 | 
             
            </tr>
         | 
| 712 683 | 
             
            <tr>
         | 
| 713 684 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 714 | 
            -
            <td> | 
| 715 | 
            -
             | 
| 716 | 
            -
            </td>
         | 
| 685 | 
            +
            <td>A newly created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 717 686 | 
             
            </tr>
         | 
| 718 687 | 
             
            </tbody>
         | 
| 719 688 | 
             
            </table></div>
         | 
| 720 689 | 
             
            <p class="since">Since 2.2</p>
         | 
| 721 690 | 
             
            </div>
         | 
| 722 691 | 
             
            <hr>
         | 
| 723 | 
            -
            <div class="refsect2" | 
| 692 | 
            +
            <div class="refsect2">
         | 
| 724 693 | 
             
            <a name="gtk-tree-path-to-string"></a><h3>gtk_tree_path_to_string ()</h3>
         | 
| 725 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             gtk_tree_path_to_string             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 694 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             gtk_tree_path_to_string             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 726 695 | 
             
            <p>
         | 
| 727 696 | 
             
            Generates a string representation of the path.  This string is a ':'
         | 
| 728 697 | 
             
            separated list of numbers.  For example, "4:10:0:3" would be an acceptable return value for this string.
         | 
| @@ -732,39 +701,37 @@ separated list of numbers.  For example, "4:10:0:3" would be an acceptable retur | |
| 732 701 | 
             
            <tbody>
         | 
| 733 702 | 
             
            <tr>
         | 
| 734 703 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 735 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 704 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
         | 
| 736 705 | 
             
            </td>
         | 
| 737 706 | 
             
            </tr>
         | 
| 738 707 | 
             
            <tr>
         | 
| 739 708 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 740 | 
            -
            <td> | 
| 741 | 
            -
            </td>
         | 
| 709 | 
            +
            <td>A newly-allocated string.  Must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
         | 
| 742 710 | 
             
            </tr>
         | 
| 743 711 | 
             
            </tbody>
         | 
| 744 712 | 
             
            </table></div>
         | 
| 745 713 | 
             
            </div>
         | 
| 746 714 | 
             
            <hr>
         | 
| 747 | 
            -
            <div class="refsect2" | 
| 715 | 
            +
            <div class="refsect2">
         | 
| 748 716 | 
             
            <a name="gtk-tree-path-new-first"></a><h3>gtk_tree_path_new_first ()</h3>
         | 
| 749 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 717 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       gtk_tree_path_new_first             (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 750 718 | 
             
            <p>
         | 
| 751 | 
            -
            Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 719 | 
            +
            Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.  The string representation of this path is "0"
         | 
| 752 720 | 
             
            </p>
         | 
| 753 721 | 
             
            <div class="variablelist"><table border="0">
         | 
| 754 722 | 
             
            <col align="left" valign="top">
         | 
| 755 723 | 
             
            <tbody><tr>
         | 
| 756 724 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 757 | 
            -
            <td> | 
| 758 | 
            -
            </td>
         | 
| 725 | 
            +
            <td>A new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 759 726 | 
             
            </tr></tbody>
         | 
| 760 727 | 
             
            </table></div>
         | 
| 761 728 | 
             
            </div>
         | 
| 762 729 | 
             
            <hr>
         | 
| 763 | 
            -
            <div class="refsect2" | 
| 730 | 
            +
            <div class="refsect2">
         | 
| 764 731 | 
             
            <a name="gtk-tree-path-new-root"></a><h3>gtk_tree_path_new_root</h3>
         | 
| 765 732 | 
             
            <pre class="programlisting">#define gtk_tree_path_new_root() gtk_tree_path_new_first()
         | 
| 766 733 | 
             
            </pre>
         | 
| 767 | 
            -
            <div class="warning"  | 
| 734 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 768 735 | 
             
            <h3 class="title">Warning</h3>
         | 
| 769 736 | 
             
            <p><code class="literal">gtk_tree_path_new_root</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-first" title="gtk_tree_path_new_first ()"><code class="function">gtk_tree_path_new_first()</code></a> instead.</p>
         | 
| 770 737 | 
             
            </div>
         | 
| @@ -776,15 +743,14 @@ compatibility reasons. | |
| 776 743 | 
             
            <col align="left" valign="top">
         | 
| 777 744 | 
             
            <tbody><tr>
         | 
| 778 745 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 779 | 
            -
            <td>A new <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 780 | 
            -
            </td>
         | 
| 746 | 
            +
            <td>A new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 781 747 | 
             
            </tr></tbody>
         | 
| 782 748 | 
             
            </table></div>
         | 
| 783 749 | 
             
            </div>
         | 
| 784 750 | 
             
            <hr>
         | 
| 785 | 
            -
            <div class="refsect2" | 
| 751 | 
            +
            <div class="refsect2">
         | 
| 786 752 | 
             
            <a name="gtk-tree-path-append-index"></a><h3>gtk_tree_path_append_index ()</h3>
         | 
| 787 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_append_index          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 753 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_append_index          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 788 754 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);</pre>
         | 
| 789 755 | 
             
            <p>
         | 
| 790 756 | 
             
            Appends a new index to a path.  As a result, the depth of the path is
         | 
| @@ -795,21 +761,19 @@ increased. | |
| 795 761 | 
             
            <tbody>
         | 
| 796 762 | 
             
            <tr>
         | 
| 797 763 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 798 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 799 | 
            -
            </td>
         | 
| 764 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 800 765 | 
             
            </tr>
         | 
| 801 766 | 
             
            <tr>
         | 
| 802 767 | 
             
            <td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
         | 
| 803 | 
            -
            <td>The index | 
| 804 | 
            -
            </td>
         | 
| 768 | 
            +
            <td>The index.</td>
         | 
| 805 769 | 
             
            </tr>
         | 
| 806 770 | 
             
            </tbody>
         | 
| 807 771 | 
             
            </table></div>
         | 
| 808 772 | 
             
            </div>
         | 
| 809 773 | 
             
            <hr>
         | 
| 810 | 
            -
            <div class="refsect2" | 
| 774 | 
            +
            <div class="refsect2">
         | 
| 811 775 | 
             
            <a name="gtk-tree-path-prepend-index"></a><h3>gtk_tree_path_prepend_index ()</h3>
         | 
| 812 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_prepend_index         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 776 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_prepend_index         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 813 777 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);</pre>
         | 
| 814 778 | 
             
            <p>
         | 
| 815 779 | 
             
            Prepends a new index to a path.  As a result, the depth of the path is
         | 
| @@ -820,21 +784,19 @@ increased. | |
| 820 784 | 
             
            <tbody>
         | 
| 821 785 | 
             
            <tr>
         | 
| 822 786 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 823 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 824 | 
            -
            </td>
         | 
| 787 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 825 788 | 
             
            </tr>
         | 
| 826 789 | 
             
            <tr>
         | 
| 827 790 | 
             
            <td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
         | 
| 828 | 
            -
            <td>The index | 
| 829 | 
            -
            </td>
         | 
| 791 | 
            +
            <td>The index.</td>
         | 
| 830 792 | 
             
            </tr>
         | 
| 831 793 | 
             
            </tbody>
         | 
| 832 794 | 
             
            </table></div>
         | 
| 833 795 | 
             
            </div>
         | 
| 834 796 | 
             
            <hr>
         | 
| 835 | 
            -
            <div class="refsect2" | 
| 797 | 
            +
            <div class="refsect2">
         | 
| 836 798 | 
             
            <a name="gtk-tree-path-get-depth"></a><h3>gtk_tree_path_get_depth ()</h3>
         | 
| 837 | 
            -
            <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_path_get_depth             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 799 | 
            +
            <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_path_get_depth             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 838 800 | 
             
            <p>
         | 
| 839 801 | 
             
            Returns the current depth of <em class="parameter"><code>path</code></em>.
         | 
| 840 802 | 
             
            </p>
         | 
| @@ -843,21 +805,20 @@ Returns the current depth of <em class="parameter"><code>path</code></em>. | |
| 843 805 | 
             
            <tbody>
         | 
| 844 806 | 
             
            <tr>
         | 
| 845 807 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 846 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 847 | 
            -
            </td>
         | 
| 808 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 848 809 | 
             
            </tr>
         | 
| 849 810 | 
             
            <tr>
         | 
| 850 811 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 851 | 
            -
            <td> | 
| 812 | 
            +
            <td>The depth of <em class="parameter"><code>path</code></em>
         | 
| 852 813 | 
             
            </td>
         | 
| 853 814 | 
             
            </tr>
         | 
| 854 815 | 
             
            </tbody>
         | 
| 855 816 | 
             
            </table></div>
         | 
| 856 817 | 
             
            </div>
         | 
| 857 818 | 
             
            <hr>
         | 
| 858 | 
            -
            <div class="refsect2" | 
| 819 | 
            +
            <div class="refsect2">
         | 
| 859 820 | 
             
            <a name="gtk-tree-path-get-indices"></a><h3>gtk_tree_path_get_indices ()</h3>
         | 
| 860 | 
            -
            <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_path_get_indices           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 821 | 
            +
            <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_path_get_indices           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 861 822 | 
             
            <p>
         | 
| 862 823 | 
             
            Returns the current indices of <em class="parameter"><code>path</code></em>.  This is an array of integers, each
         | 
| 863 824 | 
             
            representing a node in a tree.  This value should not be freed.
         | 
| @@ -867,22 +828,20 @@ representing a node in a tree.  This value should not be freed. | |
| 867 828 | 
             
            <tbody>
         | 
| 868 829 | 
             
            <tr>
         | 
| 869 830 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 870 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 871 | 
            -
            </td>
         | 
| 831 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 872 832 | 
             
            </tr>
         | 
| 873 833 | 
             
            <tr>
         | 
| 874 834 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 875 | 
            -
            <td> | 
| 876 | 
            -
            </td>
         | 
| 835 | 
            +
            <td>The current indices, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
         | 
| 877 836 | 
             
            </tr>
         | 
| 878 837 | 
             
            </tbody>
         | 
| 879 838 | 
             
            </table></div>
         | 
| 880 839 | 
             
            </div>
         | 
| 881 840 | 
             
            <hr>
         | 
| 882 | 
            -
            <div class="refsect2" | 
| 841 | 
            +
            <div class="refsect2">
         | 
| 883 842 | 
             
            <a name="gtk-tree-path-get-indices-with-depth"></a><h3>gtk_tree_path_get_indices_with_depth ()</h3>
         | 
| 884 843 | 
             
            <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_path_get_indices_with_depth
         | 
| 885 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 844 | 
            +
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 886 845 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *depth</code></em>);</pre>
         | 
| 887 846 | 
             
            <p>
         | 
| 888 847 | 
             
            Returns the current indices of <em class="parameter"><code>path</code></em>.
         | 
| @@ -895,17 +854,15 @@ The array should not be freed. | |
| 895 854 | 
             
            <tbody>
         | 
| 896 855 | 
             
            <tr>
         | 
| 897 856 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 898 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 899 | 
            -
            </td>
         | 
| 857 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 900 858 | 
             
            </tr>
         | 
| 901 859 | 
             
            <tr>
         | 
| 902 860 | 
             
            <td><p><span class="term"><em class="parameter"><code>depth</code></em> :</span></p></td>
         | 
| 903 | 
            -
            <td>Number of elements returned in the integer array
         | 
| 904 | 
            -
            </td>
         | 
| 861 | 
            +
            <td>Number of elements returned in the integer array</td>
         | 
| 905 862 | 
             
            </tr>
         | 
| 906 863 | 
             
            <tr>
         | 
| 907 864 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 908 | 
            -
            <td> | 
| 865 | 
            +
            <td>The current indices, 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 points to an array of items."><span class="acronym">array</span></acronym> length=depth][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 909 866 | 
             
            </td>
         | 
| 910 867 | 
             
            </tr>
         | 
| 911 868 | 
             
            </tbody>
         | 
| @@ -913,9 +870,9 @@ The array should not be freed. | |
| 913 870 | 
             
            <p class="since">Since 2.22</p>
         | 
| 914 871 | 
             
            </div>
         | 
| 915 872 | 
             
            <hr>
         | 
| 916 | 
            -
            <div class="refsect2" | 
| 873 | 
            +
            <div class="refsect2">
         | 
| 917 874 | 
             
            <a name="gtk-tree-path-free"></a><h3>gtk_tree_path_free ()</h3>
         | 
| 918 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_free                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 875 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_free                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 919 876 | 
             
            <p>
         | 
| 920 877 | 
             
            Frees <em class="parameter"><code>path</code></em>.
         | 
| 921 878 | 
             
            </p>
         | 
| @@ -923,39 +880,36 @@ Frees <em class="parameter"><code>path</code></em>. | |
| 923 880 | 
             
            <col align="left" valign="top">
         | 
| 924 881 | 
             
            <tbody><tr>
         | 
| 925 882 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 926 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 927 | 
            -
            </td>
         | 
| 883 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 928 884 | 
             
            </tr></tbody>
         | 
| 929 885 | 
             
            </table></div>
         | 
| 930 886 | 
             
            </div>
         | 
| 931 887 | 
             
            <hr>
         | 
| 932 | 
            -
            <div class="refsect2" | 
| 888 | 
            +
            <div class="refsect2">
         | 
| 933 889 | 
             
            <a name="gtk-tree-path-copy"></a><h3>gtk_tree_path_copy ()</h3>
         | 
| 934 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 890 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       gtk_tree_path_copy                  (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 935 891 | 
             
            <p>
         | 
| 936 | 
            -
            Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 892 | 
            +
            Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> as a copy of <em class="parameter"><code>path</code></em>.
         | 
| 937 893 | 
             
            </p>
         | 
| 938 894 | 
             
            <div class="variablelist"><table border="0">
         | 
| 939 895 | 
             
            <col align="left" valign="top">
         | 
| 940 896 | 
             
            <tbody>
         | 
| 941 897 | 
             
            <tr>
         | 
| 942 898 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 943 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 944 | 
            -
            </td>
         | 
| 899 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 945 900 | 
             
            </tr>
         | 
| 946 901 | 
             
            <tr>
         | 
| 947 902 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 948 | 
            -
            <td> | 
| 949 | 
            -
            </td>
         | 
| 903 | 
            +
            <td>A new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 950 904 | 
             
            </tr>
         | 
| 951 905 | 
             
            </tbody>
         | 
| 952 906 | 
             
            </table></div>
         | 
| 953 907 | 
             
            </div>
         | 
| 954 908 | 
             
            <hr>
         | 
| 955 | 
            -
            <div class="refsect2" | 
| 909 | 
            +
            <div class="refsect2">
         | 
| 956 910 | 
             
            <a name="gtk-tree-path-compare"></a><h3>gtk_tree_path_compare ()</h3>
         | 
| 957 | 
            -
            <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_path_compare               (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 958 | 
            -
                                                                     <em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 911 | 
            +
            <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_path_compare               (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *a</code></em>,
         | 
| 912 | 
            +
                                                                     <em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *b</code></em>);</pre>
         | 
| 959 913 | 
             
            <p>
         | 
| 960 914 | 
             
            Compares two paths.  If <em class="parameter"><code>a</code></em> appears before <em class="parameter"><code>b</code></em> in a tree, then -1 is returned.
         | 
| 961 915 | 
             
            If <em class="parameter"><code>b</code></em> appears before <em class="parameter"><code>a</code></em>, then 1 is returned.  If the two nodes are equal,
         | 
| @@ -966,26 +920,24 @@ then 0 is returned. | |
| 966 920 | 
             
            <tbody>
         | 
| 967 921 | 
             
            <tr>
         | 
| 968 922 | 
             
            <td><p><span class="term"><em class="parameter"><code>a</code></em> :</span></p></td>
         | 
| 969 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 970 | 
            -
            </td>
         | 
| 923 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 971 924 | 
             
            </tr>
         | 
| 972 925 | 
             
            <tr>
         | 
| 973 926 | 
             
            <td><p><span class="term"><em class="parameter"><code>b</code></em> :</span></p></td>
         | 
| 974 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 975 | 
            -
            </td>
         | 
| 927 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to compare with.</td>
         | 
| 976 928 | 
             
            </tr>
         | 
| 977 929 | 
             
            <tr>
         | 
| 978 930 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 979 | 
            -
            <td> | 
| 931 | 
            +
            <td>The relative positions of <em class="parameter"><code>a</code></em> and <em class="parameter"><code>b</code></em>
         | 
| 980 932 | 
             
            </td>
         | 
| 981 933 | 
             
            </tr>
         | 
| 982 934 | 
             
            </tbody>
         | 
| 983 935 | 
             
            </table></div>
         | 
| 984 936 | 
             
            </div>
         | 
| 985 937 | 
             
            <hr>
         | 
| 986 | 
            -
            <div class="refsect2" | 
| 938 | 
            +
            <div class="refsect2">
         | 
| 987 939 | 
             
            <a name="gtk-tree-path-next"></a><h3>gtk_tree_path_next ()</h3>
         | 
| 988 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_next                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 940 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_next                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 989 941 | 
             
            <p>
         | 
| 990 942 | 
             
            Moves the <em class="parameter"><code>path</code></em> to point to the next node at the current depth.
         | 
| 991 943 | 
             
            </p>
         | 
| @@ -993,15 +945,14 @@ Moves the <em class="parameter"><code>path</code></em> to point to the next node | |
| 993 945 | 
             
            <col align="left" valign="top">
         | 
| 994 946 | 
             
            <tbody><tr>
         | 
| 995 947 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 996 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 997 | 
            -
            </td>
         | 
| 948 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 998 949 | 
             
            </tr></tbody>
         | 
| 999 950 | 
             
            </table></div>
         | 
| 1000 951 | 
             
            </div>
         | 
| 1001 952 | 
             
            <hr>
         | 
| 1002 | 
            -
            <div class="refsect2" | 
| 953 | 
            +
            <div class="refsect2">
         | 
| 1003 954 | 
             
            <a name="gtk-tree-path-prev"></a><h3>gtk_tree_path_prev ()</h3>
         | 
| 1004 | 
            -
            <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_path_prev                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 955 | 
            +
            <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_path_prev                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 1005 956 | 
             
            <p>
         | 
| 1006 957 | 
             
            Moves the <em class="parameter"><code>path</code></em> to point to the previous node at the current depth, 
         | 
| 1007 958 | 
             
            if it exists.
         | 
| @@ -1011,21 +962,20 @@ if it exists. | |
| 1011 962 | 
             
            <tbody>
         | 
| 1012 963 | 
             
            <tr>
         | 
| 1013 964 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1014 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1015 | 
            -
            </td>
         | 
| 965 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 1016 966 | 
             
            </tr>
         | 
| 1017 967 | 
             
            <tr>
         | 
| 1018 968 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1019 | 
            -
            <td> | 
| 1020 | 
            -
            </td>
         | 
| 969 | 
            +
            <td>
         | 
| 970 | 
            +
            <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> has a previous node, and the move was made.</td>
         | 
| 1021 971 | 
             
            </tr>
         | 
| 1022 972 | 
             
            </tbody>
         | 
| 1023 973 | 
             
            </table></div>
         | 
| 1024 974 | 
             
            </div>
         | 
| 1025 975 | 
             
            <hr>
         | 
| 1026 | 
            -
            <div class="refsect2" | 
| 976 | 
            +
            <div class="refsect2">
         | 
| 1027 977 | 
             
            <a name="gtk-tree-path-up"></a><h3>gtk_tree_path_up ()</h3>
         | 
| 1028 | 
            -
            <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_path_up                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 978 | 
            +
            <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_path_up                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 1029 979 | 
             
            <p>
         | 
| 1030 980 | 
             
            Moves the <em class="parameter"><code>path</code></em> to point to its parent node, if it has a parent.
         | 
| 1031 981 | 
             
            </p>
         | 
| @@ -1034,21 +984,20 @@ Moves the <em class="parameter"><code>path</code></em> to point to its parent no | |
| 1034 984 | 
             
            <tbody>
         | 
| 1035 985 | 
             
            <tr>
         | 
| 1036 986 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1037 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1038 | 
            -
            </td>
         | 
| 987 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 1039 988 | 
             
            </tr>
         | 
| 1040 989 | 
             
            <tr>
         | 
| 1041 990 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1042 | 
            -
            <td> | 
| 1043 | 
            -
            </td>
         | 
| 991 | 
            +
            <td>
         | 
| 992 | 
            +
            <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> has a parent, and the move was made.</td>
         | 
| 1044 993 | 
             
            </tr>
         | 
| 1045 994 | 
             
            </tbody>
         | 
| 1046 995 | 
             
            </table></div>
         | 
| 1047 996 | 
             
            </div>
         | 
| 1048 997 | 
             
            <hr>
         | 
| 1049 | 
            -
            <div class="refsect2" | 
| 998 | 
            +
            <div class="refsect2">
         | 
| 1050 999 | 
             
            <a name="gtk-tree-path-down"></a><h3>gtk_tree_path_down ()</h3>
         | 
| 1051 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_down                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1000 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_path_down                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 1052 1001 | 
             
            <p>
         | 
| 1053 1002 | 
             
            Moves <em class="parameter"><code>path</code></em> to point to the first child of the current path.
         | 
| 1054 1003 | 
             
            </p>
         | 
| @@ -1056,16 +1005,15 @@ Moves <em class="parameter"><code>path</code></em> to point to the first child o | |
| 1056 1005 | 
             
            <col align="left" valign="top">
         | 
| 1057 1006 | 
             
            <tbody><tr>
         | 
| 1058 1007 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1059 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1060 | 
            -
            </td>
         | 
| 1008 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 1061 1009 | 
             
            </tr></tbody>
         | 
| 1062 1010 | 
             
            </table></div>
         | 
| 1063 1011 | 
             
            </div>
         | 
| 1064 1012 | 
             
            <hr>
         | 
| 1065 | 
            -
            <div class="refsect2" | 
| 1013 | 
            +
            <div class="refsect2">
         | 
| 1066 1014 | 
             
            <a name="gtk-tree-path-is-ancestor"></a><h3>gtk_tree_path_is_ancestor ()</h3>
         | 
| 1067 | 
            -
            <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_path_is_ancestor           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1068 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1015 | 
            +
            <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_path_is_ancestor           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 1016 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *descendant</code></em>);</pre>
         | 
| 1069 1017 | 
             
            <p>
         | 
| 1070 1018 | 
             
            Returns <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>descendant</code></em> is a descendant of <em class="parameter"><code>path</code></em>.
         | 
| 1071 1019 | 
             
            </p>
         | 
| @@ -1074,27 +1022,28 @@ Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macr | |
| 1074 1022 | 
             
            <tbody>
         | 
| 1075 1023 | 
             
            <tr>
         | 
| 1076 1024 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1077 | 
            -
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1025 | 
            +
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
         | 
| 1078 1026 | 
             
            </td>
         | 
| 1079 1027 | 
             
            </tr>
         | 
| 1080 1028 | 
             
            <tr>
         | 
| 1081 1029 | 
             
            <td><p><span class="term"><em class="parameter"><code>descendant</code></em> :</span></p></td>
         | 
| 1082 | 
            -
            <td>another <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1030 | 
            +
            <td>another <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
         | 
| 1083 1031 | 
             
            </td>
         | 
| 1084 1032 | 
             
            </tr>
         | 
| 1085 1033 | 
             
            <tr>
         | 
| 1086 1034 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1087 | 
            -
            <td> | 
| 1035 | 
            +
            <td>
         | 
| 1036 | 
            +
            <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>descendant</code></em> is contained inside <em class="parameter"><code>path</code></em>
         | 
| 1088 1037 | 
             
            </td>
         | 
| 1089 1038 | 
             
            </tr>
         | 
| 1090 1039 | 
             
            </tbody>
         | 
| 1091 1040 | 
             
            </table></div>
         | 
| 1092 1041 | 
             
            </div>
         | 
| 1093 1042 | 
             
            <hr>
         | 
| 1094 | 
            -
            <div class="refsect2" | 
| 1043 | 
            +
            <div class="refsect2">
         | 
| 1095 1044 | 
             
            <a name="gtk-tree-path-is-descendant"></a><h3>gtk_tree_path_is_descendant ()</h3>
         | 
| 1096 | 
            -
            <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_path_is_descendant         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1097 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1045 | 
            +
            <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_path_is_descendant         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 1046 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *ancestor</code></em>);</pre>
         | 
| 1098 1047 | 
             
            <p>
         | 
| 1099 1048 | 
             
            Returns <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 a descendant of <em class="parameter"><code>ancestor</code></em>.
         | 
| 1100 1049 | 
             
            </p>
         | 
| @@ -1103,27 +1052,27 @@ Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macr | |
| 1103 1052 | 
             
            <tbody>
         | 
| 1104 1053 | 
             
            <tr>
         | 
| 1105 1054 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1106 | 
            -
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1055 | 
            +
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
         | 
| 1107 1056 | 
             
            </td>
         | 
| 1108 1057 | 
             
            </tr>
         | 
| 1109 1058 | 
             
            <tr>
         | 
| 1110 1059 | 
             
            <td><p><span class="term"><em class="parameter"><code>ancestor</code></em> :</span></p></td>
         | 
| 1111 | 
            -
            <td>another <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1060 | 
            +
            <td>another <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
         | 
| 1112 1061 | 
             
            </td>
         | 
| 1113 1062 | 
             
            </tr>
         | 
| 1114 1063 | 
             
            <tr>
         | 
| 1115 1064 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1116 | 
            -
            <td> | 
| 1117 | 
            -
            </td>
         | 
| 1065 | 
            +
            <td>
         | 
| 1066 | 
            +
            <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>ancestor</code></em> contains <em class="parameter"><code>path</code></em> somewhere below it</td>
         | 
| 1118 1067 | 
             
            </tr>
         | 
| 1119 1068 | 
             
            </tbody>
         | 
| 1120 1069 | 
             
            </table></div>
         | 
| 1121 1070 | 
             
            </div>
         | 
| 1122 1071 | 
             
            <hr>
         | 
| 1123 | 
            -
            <div class="refsect2" | 
| 1072 | 
            +
            <div class="refsect2">
         | 
| 1124 1073 | 
             
            <a name="gtk-tree-row-reference-new"></a><h3>gtk_tree_row_reference_new ()</h3>
         | 
| 1125 1074 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * gtk_tree_row_reference_new        (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 1126 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1075 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 1127 1076 | 
             
            <p>
         | 
| 1128 1077 | 
             
            Creates a row reference based on <em class="parameter"><code>path</code></em>.  This reference will keep pointing 
         | 
| 1129 1078 | 
             
            to the node pointed to by <em class="parameter"><code>path</code></em>, so long as it exists.  It listens to all
         | 
| @@ -1140,23 +1089,22 @@ isn't a valid path in <em class="parameter"><code>model</code></em>, then <a hre | |
| 1140 1089 | 
             
            </tr>
         | 
| 1141 1090 | 
             
            <tr>
         | 
| 1142 1091 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1143 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1144 | 
            -
            </td>
         | 
| 1092 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to monitor</td>
         | 
| 1145 1093 | 
             
            </tr>
         | 
| 1146 1094 | 
             
            <tr>
         | 
| 1147 1095 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1148 | 
            -
            <td> | 
| 1096 | 
            +
            <td>A newly allocated <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
         | 
| 1149 1097 | 
             
            </td>
         | 
| 1150 1098 | 
             
            </tr>
         | 
| 1151 1099 | 
             
            </tbody>
         | 
| 1152 1100 | 
             
            </table></div>
         | 
| 1153 1101 | 
             
            </div>
         | 
| 1154 1102 | 
             
            <hr>
         | 
| 1155 | 
            -
            <div class="refsect2" | 
| 1103 | 
            +
            <div class="refsect2">
         | 
| 1156 1104 | 
             
            <a name="gtk-tree-row-reference-new-proxy"></a><h3>gtk_tree_row_reference_new_proxy ()</h3>
         | 
| 1157 1105 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * gtk_tree_row_reference_new_proxy  (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
         | 
| 1158 1106 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 1159 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1107 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 1160 1108 | 
             
            <p>
         | 
| 1161 1109 | 
             
            You do not need to use this function.  Creates a row reference based on
         | 
| 1162 1110 | 
             
            <em class="parameter"><code>path</code></em>.  This reference will keep pointing to the node pointed to by <em class="parameter"><code>path</code></em>, 
         | 
| @@ -1196,19 +1144,18 @@ generally needed by most applications. | |
| 1196 1144 | 
             
            </tr>
         | 
| 1197 1145 | 
             
            <tr>
         | 
| 1198 1146 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1199 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1200 | 
            -
            </td>
         | 
| 1147 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to monitor</td>
         | 
| 1201 1148 | 
             
            </tr>
         | 
| 1202 1149 | 
             
            <tr>
         | 
| 1203 1150 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1204 | 
            -
            <td> | 
| 1151 | 
            +
            <td>A newly allocated <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
         | 
| 1205 1152 | 
             
            </td>
         | 
| 1206 1153 | 
             
            </tr>
         | 
| 1207 1154 | 
             
            </tbody>
         | 
| 1208 1155 | 
             
            </table></div>
         | 
| 1209 1156 | 
             
            </div>
         | 
| 1210 1157 | 
             
            <hr>
         | 
| 1211 | 
            -
            <div class="refsect2" | 
| 1158 | 
            +
            <div class="refsect2">
         | 
| 1212 1159 | 
             
            <a name="gtk-tree-row-reference-get-model"></a><h3>gtk_tree_row_reference_get_model ()</h3>
         | 
| 1213 1160 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *      gtk_tree_row_reference_get_model    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
         | 
| 1214 1161 | 
             
            <p>
         | 
| @@ -1224,8 +1171,7 @@ Returns the model that the row reference is monitoring. | |
| 1224 1171 | 
             
            </tr>
         | 
| 1225 1172 | 
             
            <tr>
         | 
| 1226 1173 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1227 | 
            -
            <td> the  | 
| 1228 | 
            -
             | 
| 1174 | 
            +
            <td>the model. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 1229 1175 | 
             
            </td>
         | 
| 1230 1176 | 
             
            </tr>
         | 
| 1231 1177 | 
             
            </tbody>
         | 
| @@ -1233,9 +1179,9 @@ Returns the model that the row reference is monitoring. | |
| 1233 1179 | 
             
            <p class="since">Since 2.8</p>
         | 
| 1234 1180 | 
             
            </div>
         | 
| 1235 1181 | 
             
            <hr>
         | 
| 1236 | 
            -
            <div class="refsect2" | 
| 1182 | 
            +
            <div class="refsect2">
         | 
| 1237 1183 | 
             
            <a name="gtk-tree-row-reference-get-path"></a><h3>gtk_tree_row_reference_get_path ()</h3>
         | 
| 1238 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1184 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       gtk_tree_row_reference_get_path     (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
         | 
| 1239 1185 | 
             
            <p>
         | 
| 1240 1186 | 
             
            Returns a path that the row reference currently points to, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
         | 
| 1241 1187 | 
             
            path pointed to is no longer valid.
         | 
| @@ -1250,14 +1196,13 @@ path pointed to is no longer valid. | |
| 1250 1196 | 
             
            </tr>
         | 
| 1251 1197 | 
             
            <tr>
         | 
| 1252 1198 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1253 | 
            -
            <td> | 
| 1254 | 
            -
            </td>
         | 
| 1199 | 
            +
            <td>A current path, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
         | 
| 1255 1200 | 
             
            </tr>
         | 
| 1256 1201 | 
             
            </tbody>
         | 
| 1257 1202 | 
             
            </table></div>
         | 
| 1258 1203 | 
             
            </div>
         | 
| 1259 1204 | 
             
            <hr>
         | 
| 1260 | 
            -
            <div class="refsect2" | 
| 1205 | 
            +
            <div class="refsect2">
         | 
| 1261 1206 | 
             
            <a name="gtk-tree-row-reference-valid"></a><h3>gtk_tree_row_reference_valid ()</h3>
         | 
| 1262 1207 | 
             
            <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_row_reference_valid        (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
         | 
| 1263 1208 | 
             
            <p>
         | 
| @@ -1269,19 +1214,19 @@ path. | |
| 1269 1214 | 
             
            <tbody>
         | 
| 1270 1215 | 
             
            <tr>
         | 
| 1271 1216 | 
             
            <td><p><span class="term"><em class="parameter"><code>reference</code></em> :</span></p></td>
         | 
| 1272 | 
            -
            <td> | 
| 1217 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1273 1218 | 
             
            </td>
         | 
| 1274 1219 | 
             
            </tr>
         | 
| 1275 1220 | 
             
            <tr>
         | 
| 1276 1221 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1277 | 
            -
            <td> | 
| 1278 | 
            -
            </td>
         | 
| 1222 | 
            +
            <td>
         | 
| 1223 | 
            +
            <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>reference</code></em> points to a valid path.</td>
         | 
| 1279 1224 | 
             
            </tr>
         | 
| 1280 1225 | 
             
            </tbody>
         | 
| 1281 1226 | 
             
            </table></div>
         | 
| 1282 1227 | 
             
            </div>
         | 
| 1283 1228 | 
             
            <hr>
         | 
| 1284 | 
            -
            <div class="refsect2" | 
| 1229 | 
            +
            <div class="refsect2">
         | 
| 1285 1230 | 
             
            <a name="gtk-tree-row-reference-free"></a><h3>gtk_tree_row_reference_free ()</h3>
         | 
| 1286 1231 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_row_reference_free         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
         | 
| 1287 1232 | 
             
            <p>
         | 
| @@ -1291,13 +1236,13 @@ Free's <em class="parameter"><code>reference</code></em>. <em class="parameter"> | |
| 1291 1236 | 
             
            <col align="left" valign="top">
         | 
| 1292 1237 | 
             
            <tbody><tr>
         | 
| 1293 1238 | 
             
            <td><p><span class="term"><em class="parameter"><code>reference</code></em> :</span></p></td>
         | 
| 1294 | 
            -
            <td> | 
| 1239 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1295 1240 | 
             
            </td>
         | 
| 1296 1241 | 
             
            </tr></tbody>
         | 
| 1297 1242 | 
             
            </table></div>
         | 
| 1298 1243 | 
             
            </div>
         | 
| 1299 1244 | 
             
            <hr>
         | 
| 1300 | 
            -
            <div class="refsect2" | 
| 1245 | 
            +
            <div class="refsect2">
         | 
| 1301 1246 | 
             
            <a name="gtk-tree-row-reference-copy"></a><h3>gtk_tree_row_reference_copy ()</h3>
         | 
| 1302 1247 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * gtk_tree_row_reference_copy       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
         | 
| 1303 1248 | 
             
            <p>
         | 
| @@ -1313,19 +1258,17 @@ Copies a <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="Gtk | |
| 1313 1258 | 
             
            </tr>
         | 
| 1314 1259 | 
             
            <tr>
         | 
| 1315 1260 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1316 | 
            -
            <td> | 
| 1317 | 
            -
             | 
| 1318 | 
            -
            </td>
         | 
| 1261 | 
            +
            <td>a copy of <em class="parameter"><code>reference</code></em>.</td>
         | 
| 1319 1262 | 
             
            </tr>
         | 
| 1320 1263 | 
             
            </tbody>
         | 
| 1321 1264 | 
             
            </table></div>
         | 
| 1322 1265 | 
             
            <p class="since">Since 2.2</p>
         | 
| 1323 1266 | 
             
            </div>
         | 
| 1324 1267 | 
             
            <hr>
         | 
| 1325 | 
            -
            <div class="refsect2" | 
| 1268 | 
            +
            <div class="refsect2">
         | 
| 1326 1269 | 
             
            <a name="gtk-tree-row-reference-inserted"></a><h3>gtk_tree_row_reference_inserted ()</h3>
         | 
| 1327 1270 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_row_reference_inserted     (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
         | 
| 1328 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1271 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 1329 1272 | 
             
            <p>
         | 
| 1330 1273 | 
             
            Lets a set of row reference created by <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()"><code class="function">gtk_tree_row_reference_new_proxy()</code></a>
         | 
| 1331 1274 | 
             
            know that the model emitted the "row_inserted" signal.
         | 
| @@ -1340,17 +1283,16 @@ know that the model emitted the "row_inserted" signal. | |
| 1340 1283 | 
             
            </tr>
         | 
| 1341 1284 | 
             
            <tr>
         | 
| 1342 1285 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1343 | 
            -
            <td>The row position that was inserted
         | 
| 1344 | 
            -
            </td>
         | 
| 1286 | 
            +
            <td>The row position that was inserted</td>
         | 
| 1345 1287 | 
             
            </tr>
         | 
| 1346 1288 | 
             
            </tbody>
         | 
| 1347 1289 | 
             
            </table></div>
         | 
| 1348 1290 | 
             
            </div>
         | 
| 1349 1291 | 
             
            <hr>
         | 
| 1350 | 
            -
            <div class="refsect2" | 
| 1292 | 
            +
            <div class="refsect2">
         | 
| 1351 1293 | 
             
            <a name="gtk-tree-row-reference-deleted"></a><h3>gtk_tree_row_reference_deleted ()</h3>
         | 
| 1352 1294 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_row_reference_deleted      (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
         | 
| 1353 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1295 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 1354 1296 | 
             
            <p>
         | 
| 1355 1297 | 
             
            Lets a set of row reference created by <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()"><code class="function">gtk_tree_row_reference_new_proxy()</code></a>
         | 
| 1356 1298 | 
             
            know that the model emitted the "row_deleted" signal.
         | 
| @@ -1365,18 +1307,17 @@ know that the model emitted the "row_deleted" signal. | |
| 1365 1307 | 
             
            </tr>
         | 
| 1366 1308 | 
             
            <tr>
         | 
| 1367 1309 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1368 | 
            -
            <td>The path position that was deleted
         | 
| 1369 | 
            -
            </td>
         | 
| 1310 | 
            +
            <td>The path position that was deleted</td>
         | 
| 1370 1311 | 
             
            </tr>
         | 
| 1371 1312 | 
             
            </tbody>
         | 
| 1372 1313 | 
             
            </table></div>
         | 
| 1373 1314 | 
             
            </div>
         | 
| 1374 1315 | 
             
            <hr>
         | 
| 1375 | 
            -
            <div class="refsect2" | 
| 1316 | 
            +
            <div class="refsect2">
         | 
| 1376 1317 | 
             
            <a name="gtk-tree-row-reference-reordered"></a><h3>gtk_tree_row_reference_reordered ()</h3>
         | 
| 1377 1318 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_row_reference_reordered    (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
         | 
| 1378 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1379 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1319 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 1320 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 1380 1321 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *new_order</code></em>);</pre>
         | 
| 1381 1322 | 
             
            <p>
         | 
| 1382 1323 | 
             
            Lets a set of row reference created by <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()"><code class="function">gtk_tree_row_reference_new_proxy()</code></a>
         | 
| @@ -1392,26 +1333,23 @@ know that the model emitted the "rows_reordered" signal. | |
| 1392 1333 | 
             
            </tr>
         | 
| 1393 1334 | 
             
            <tr>
         | 
| 1394 1335 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1395 | 
            -
            <td>The parent path of the reordered signal
         | 
| 1396 | 
            -
            </td>
         | 
| 1336 | 
            +
            <td>The parent path of the reordered signal</td>
         | 
| 1397 1337 | 
             
            </tr>
         | 
| 1398 1338 | 
             
            <tr>
         | 
| 1399 1339 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1400 | 
            -
            <td>The iter pointing to the parent of the reordered
         | 
| 1401 | 
            -
            </td>
         | 
| 1340 | 
            +
            <td>The iter pointing to the parent of the reordered</td>
         | 
| 1402 1341 | 
             
            </tr>
         | 
| 1403 1342 | 
             
            <tr>
         | 
| 1404 1343 | 
             
            <td><p><span class="term"><em class="parameter"><code>new_order</code></em> :</span></p></td>
         | 
| 1405 | 
            -
            <td>The new order of rows
         | 
| 1406 | 
            -
            </td>
         | 
| 1344 | 
            +
            <td>The new order of rows</td>
         | 
| 1407 1345 | 
             
            </tr>
         | 
| 1408 1346 | 
             
            </tbody>
         | 
| 1409 1347 | 
             
            </table></div>
         | 
| 1410 1348 | 
             
            </div>
         | 
| 1411 1349 | 
             
            <hr>
         | 
| 1412 | 
            -
            <div class="refsect2" | 
| 1350 | 
            +
            <div class="refsect2">
         | 
| 1413 1351 | 
             
            <a name="gtk-tree-iter-copy"></a><h3>gtk_tree_iter_copy ()</h3>
         | 
| 1414 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1352 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="returnvalue">GtkTreeIter</span></a> *       gtk_tree_iter_copy                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 1415 1353 | 
             
            <p>
         | 
| 1416 1354 | 
             
            Creates a dynamically allocated tree iterator as a copy of <em class="parameter"><code>iter</code></em>.  
         | 
| 1417 1355 | 
             
            This function is not intended for use in applications, because you 
         | 
| @@ -1424,21 +1362,19 @@ You must free this iter with <a class="link" href="GtkTreeModel.html#gtk-tree-it | |
| 1424 1362 | 
             
            <tbody>
         | 
| 1425 1363 | 
             
            <tr>
         | 
| 1426 1364 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1427 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1428 | 
            -
            </td>
         | 
| 1365 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 1429 1366 | 
             
            </tr>
         | 
| 1430 1367 | 
             
            <tr>
         | 
| 1431 1368 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1432 | 
            -
            <td> | 
| 1433 | 
            -
            </td>
         | 
| 1369 | 
            +
            <td>a newly-allocated copy of <em class="parameter"><code>iter</code></em>.</td>
         | 
| 1434 1370 | 
             
            </tr>
         | 
| 1435 1371 | 
             
            </tbody>
         | 
| 1436 1372 | 
             
            </table></div>
         | 
| 1437 1373 | 
             
            </div>
         | 
| 1438 1374 | 
             
            <hr>
         | 
| 1439 | 
            -
            <div class="refsect2" | 
| 1375 | 
            +
            <div class="refsect2">
         | 
| 1440 1376 | 
             
            <a name="gtk-tree-iter-free"></a><h3>gtk_tree_iter_free ()</h3>
         | 
| 1441 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_iter_free                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1377 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_iter_free                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 1442 1378 | 
             
            <p>
         | 
| 1443 1379 | 
             
            Frees an iterator that has been allocated by <a class="link" href="GtkTreeModel.html#gtk-tree-iter-copy" title="gtk_tree_iter_copy ()"><code class="function">gtk_tree_iter_copy()</code></a>.
         | 
| 1444 1380 | 
             
            This function is mainly used for language bindings.
         | 
| @@ -1447,13 +1383,12 @@ This function is mainly used for language bindings. | |
| 1447 1383 | 
             
            <col align="left" valign="top">
         | 
| 1448 1384 | 
             
            <tbody><tr>
         | 
| 1449 1385 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1450 | 
            -
            <td>A dynamically allocated tree iterator | 
| 1451 | 
            -
            </td>
         | 
| 1386 | 
            +
            <td>A dynamically allocated tree iterator.</td>
         | 
| 1452 1387 | 
             
            </tr></tbody>
         | 
| 1453 1388 | 
             
            </table></div>
         | 
| 1454 1389 | 
             
            </div>
         | 
| 1455 1390 | 
             
            <hr>
         | 
| 1456 | 
            -
            <div class="refsect2" | 
| 1391 | 
            +
            <div class="refsect2">
         | 
| 1457 1392 | 
             
            <a name="gtk-tree-model-get-flags"></a><h3>gtk_tree_model_get_flags ()</h3>
         | 
| 1458 1393 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags"><span class="returnvalue">GtkTreeModelFlags</span></a>   gtk_tree_model_get_flags            (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);</pre>
         | 
| 1459 1394 | 
             
            <p>
         | 
| @@ -1466,19 +1401,17 @@ during the lifecycle of the <em class="parameter"><code>tree_model</code></em>. | |
| 1466 1401 | 
             
            <tbody>
         | 
| 1467 1402 | 
             
            <tr>
         | 
| 1468 1403 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1469 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1470 | 
            -
            </td>
         | 
| 1404 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1471 1405 | 
             
            </tr>
         | 
| 1472 1406 | 
             
            <tr>
         | 
| 1473 1407 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1474 | 
            -
            <td> | 
| 1475 | 
            -
            </td>
         | 
| 1408 | 
            +
            <td>The flags supported by this interface.</td>
         | 
| 1476 1409 | 
             
            </tr>
         | 
| 1477 1410 | 
             
            </tbody>
         | 
| 1478 1411 | 
             
            </table></div>
         | 
| 1479 1412 | 
             
            </div>
         | 
| 1480 1413 | 
             
            <hr>
         | 
| 1481 | 
            -
            <div class="refsect2" | 
| 1414 | 
            +
            <div class="refsect2">
         | 
| 1482 1415 | 
             
            <a name="gtk-tree-model-get-n-columns"></a><h3>gtk_tree_model_get_n_columns ()</h3>
         | 
| 1483 1416 | 
             
            <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_model_get_n_columns        (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);</pre>
         | 
| 1484 1417 | 
             
            <p>
         | 
| @@ -1489,19 +1422,17 @@ Returns the number of columns supported by <em class="parameter"><code>tree_mode | |
| 1489 1422 | 
             
            <tbody>
         | 
| 1490 1423 | 
             
            <tr>
         | 
| 1491 1424 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1492 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1493 | 
            -
            </td>
         | 
| 1425 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1494 1426 | 
             
            </tr>
         | 
| 1495 1427 | 
             
            <tr>
         | 
| 1496 1428 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1497 | 
            -
            <td> | 
| 1498 | 
            -
            </td>
         | 
| 1429 | 
            +
            <td>The number of columns.</td>
         | 
| 1499 1430 | 
             
            </tr>
         | 
| 1500 1431 | 
             
            </tbody>
         | 
| 1501 1432 | 
             
            </table></div>
         | 
| 1502 1433 | 
             
            </div>
         | 
| 1503 1434 | 
             
            <hr>
         | 
| 1504 | 
            -
            <div class="refsect2" | 
| 1435 | 
            +
            <div class="refsect2">
         | 
| 1505 1436 | 
             
            <a name="gtk-tree-model-get-column-type"></a><h3>gtk_tree_model_get_column_type ()</h3>
         | 
| 1506 1437 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a>               gtk_tree_model_get_column_type      (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1507 1438 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);</pre>
         | 
| @@ -1513,28 +1444,26 @@ Returns the type of the column. | |
| 1513 1444 | 
             
            <tbody>
         | 
| 1514 1445 | 
             
            <tr>
         | 
| 1515 1446 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1516 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1517 | 
            -
            </td>
         | 
| 1447 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1518 1448 | 
             
            </tr>
         | 
| 1519 1449 | 
             
            <tr>
         | 
| 1520 1450 | 
             
            <td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
         | 
| 1521 | 
            -
            <td>The column index | 
| 1522 | 
            -
            </td>
         | 
| 1451 | 
            +
            <td>The column index.</td>
         | 
| 1523 1452 | 
             
            </tr>
         | 
| 1524 1453 | 
             
            <tr>
         | 
| 1525 1454 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1526 | 
            -
            <td> | 
| 1455 | 
            +
            <td>The type of the column. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 1527 1456 | 
             
            </td>
         | 
| 1528 1457 | 
             
            </tr>
         | 
| 1529 1458 | 
             
            </tbody>
         | 
| 1530 1459 | 
             
            </table></div>
         | 
| 1531 1460 | 
             
            </div>
         | 
| 1532 1461 | 
             
            <hr>
         | 
| 1533 | 
            -
            <div class="refsect2" | 
| 1462 | 
            +
            <div class="refsect2">
         | 
| 1534 1463 | 
             
            <a name="gtk-tree-model-get-iter"></a><h3>gtk_tree_model_get_iter ()</h3>
         | 
| 1535 1464 | 
             
            <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_get_iter             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1536 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1537 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1465 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 1466 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 1538 1467 | 
             
            <p>
         | 
| 1539 1468 | 
             
            Sets <em class="parameter"><code>iter</code></em> to a valid iterator pointing to <em class="parameter"><code>path</code></em>.
         | 
| 1540 1469 | 
             
            </p>
         | 
| @@ -1543,32 +1472,30 @@ Sets <em class="parameter"><code>iter</code></em> to a valid iterator pointing t | |
| 1543 1472 | 
             
            <tbody>
         | 
| 1544 1473 | 
             
            <tr>
         | 
| 1545 1474 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1546 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1547 | 
            -
            </td>
         | 
| 1475 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1548 1476 | 
             
            </tr>
         | 
| 1549 1477 | 
             
            <tr>
         | 
| 1550 1478 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1551 | 
            -
            <td> | 
| 1479 | 
            +
            <td>The 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>
         | 
| 1552 1480 | 
             
            </td>
         | 
| 1553 1481 | 
             
            </tr>
         | 
| 1554 1482 | 
             
            <tr>
         | 
| 1555 1483 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 1556 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1557 | 
            -
            </td>
         | 
| 1484 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 1558 1485 | 
             
            </tr>
         | 
| 1559 1486 | 
             
            <tr>
         | 
| 1560 1487 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1561 | 
            -
            <td> | 
| 1562 | 
            -
            </td>
         | 
| 1488 | 
            +
            <td>
         | 
| 1489 | 
            +
            <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> was set.</td>
         | 
| 1563 1490 | 
             
            </tr>
         | 
| 1564 1491 | 
             
            </tbody>
         | 
| 1565 1492 | 
             
            </table></div>
         | 
| 1566 1493 | 
             
            </div>
         | 
| 1567 1494 | 
             
            <hr>
         | 
| 1568 | 
            -
            <div class="refsect2" | 
| 1495 | 
            +
            <div class="refsect2">
         | 
| 1569 1496 | 
             
            <a name="gtk-tree-model-get-iter-from-string"></a><h3>gtk_tree_model_get_iter_from_string ()</h3>
         | 
| 1570 1497 | 
             
            <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_get_iter_from_string (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1571 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1498 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 1572 1499 | 
             
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path_string</code></em>);</pre>
         | 
| 1573 1500 | 
             
            <p>
         | 
| 1574 1501 | 
             
            Sets <em class="parameter"><code>iter</code></em> to a valid iterator pointing to <em class="parameter"><code>path_string</code></em>, if it
         | 
| @@ -1579,32 +1506,30 @@ exists. Otherwise, <em class="parameter"><code>iter</code></em> is left invalid | |
| 1579 1506 | 
             
            <tbody>
         | 
| 1580 1507 | 
             
            <tr>
         | 
| 1581 1508 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1582 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1583 | 
            -
            </td>
         | 
| 1509 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1584 1510 | 
             
            </tr>
         | 
| 1585 1511 | 
             
            <tr>
         | 
| 1586 1512 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1587 | 
            -
            <td> | 
| 1513 | 
            +
            <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>
         | 
| 1588 1514 | 
             
            </td>
         | 
| 1589 1515 | 
             
            </tr>
         | 
| 1590 1516 | 
             
            <tr>
         | 
| 1591 1517 | 
             
            <td><p><span class="term"><em class="parameter"><code>path_string</code></em> :</span></p></td>
         | 
| 1592 | 
            -
            <td>A string representation of a <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1593 | 
            -
            </td>
         | 
| 1518 | 
            +
            <td>A string representation of a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 1594 1519 | 
             
            </tr>
         | 
| 1595 1520 | 
             
            <tr>
         | 
| 1596 1521 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1597 | 
            -
            <td> | 
| 1598 | 
            -
            </td>
         | 
| 1522 | 
            +
            <td>
         | 
| 1523 | 
            +
            <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> was set.</td>
         | 
| 1599 1524 | 
             
            </tr>
         | 
| 1600 1525 | 
             
            </tbody>
         | 
| 1601 1526 | 
             
            </table></div>
         | 
| 1602 1527 | 
             
            </div>
         | 
| 1603 1528 | 
             
            <hr>
         | 
| 1604 | 
            -
            <div class="refsect2" | 
| 1529 | 
            +
            <div class="refsect2">
         | 
| 1605 1530 | 
             
            <a name="gtk-tree-model-get-iter-first"></a><h3>gtk_tree_model_get_iter_first ()</h3>
         | 
| 1606 1531 | 
             
            <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_get_iter_first       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1607 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1532 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 1608 1533 | 
             
            <p>
         | 
| 1609 1534 | 
             
            Initializes <em class="parameter"><code>iter</code></em> with the first iterator in the tree (the one at the path
         | 
| 1610 1535 | 
             
            "0") and returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.  Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the tree is empty.
         | 
| @@ -1614,28 +1539,27 @@ Initializes <em class="parameter"><code>iter</code></em> with the first iterator | |
| 1614 1539 | 
             
            <tbody>
         | 
| 1615 1540 | 
             
            <tr>
         | 
| 1616 1541 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1617 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1618 | 
            -
            </td>
         | 
| 1542 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1619 1543 | 
             
            </tr>
         | 
| 1620 1544 | 
             
            <tr>
         | 
| 1621 1545 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1622 | 
            -
            <td> | 
| 1546 | 
            +
            <td>The 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>
         | 
| 1623 1547 | 
             
            </td>
         | 
| 1624 1548 | 
             
            </tr>
         | 
| 1625 1549 | 
             
            <tr>
         | 
| 1626 1550 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1627 | 
            -
            <td> | 
| 1628 | 
            -
            </td>
         | 
| 1551 | 
            +
            <td>
         | 
| 1552 | 
            +
            <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> was set.</td>
         | 
| 1629 1553 | 
             
            </tr>
         | 
| 1630 1554 | 
             
            </tbody>
         | 
| 1631 1555 | 
             
            </table></div>
         | 
| 1632 1556 | 
             
            </div>
         | 
| 1633 1557 | 
             
            <hr>
         | 
| 1634 | 
            -
            <div class="refsect2" | 
| 1558 | 
            +
            <div class="refsect2">
         | 
| 1635 1559 | 
             
            <a name="gtk-tree-model-get-iter-root"></a><h3>gtk_tree_model_get_iter_root()</h3>
         | 
| 1636 1560 | 
             
            <pre class="programlisting">#define gtk_tree_model_get_iter_root(tree_model, iter) gtk_tree_model_get_iter_first(tree_model, iter)
         | 
| 1637 1561 | 
             
            </pre>
         | 
| 1638 | 
            -
            <div class="warning"  | 
| 1562 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1639 1563 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1640 1564 | 
             
            <p><code class="literal">gtk_tree_model_get_iter_root</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 1641 1565 | 
             
            </div>
         | 
| @@ -1649,29 +1573,27 @@ versions of GTK+. | |
| 1649 1573 | 
             
            <tbody>
         | 
| 1650 1574 | 
             
            <tr>
         | 
| 1651 1575 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1652 | 
            -
            <td> | 
| 1653 | 
            -
            </td>
         | 
| 1576 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1654 1577 | 
             
            </tr>
         | 
| 1655 1578 | 
             
            <tr>
         | 
| 1656 1579 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1657 | 
            -
            <td>uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1658 | 
            -
            </td>
         | 
| 1580 | 
            +
            <td>uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 1659 1581 | 
             
            </tr>
         | 
| 1660 1582 | 
             
            <tr>
         | 
| 1661 1583 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1662 | 
            -
            <td> | 
| 1663 | 
            -
            </td>
         | 
| 1584 | 
            +
            <td>
         | 
| 1585 | 
            +
            <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> was set.</td>
         | 
| 1664 1586 | 
             
            </tr>
         | 
| 1665 1587 | 
             
            </tbody>
         | 
| 1666 1588 | 
             
            </table></div>
         | 
| 1667 1589 | 
             
            </div>
         | 
| 1668 1590 | 
             
            <hr>
         | 
| 1669 | 
            -
            <div class="refsect2" | 
| 1591 | 
            +
            <div class="refsect2">
         | 
| 1670 1592 | 
             
            <a name="gtk-tree-model-get-path"></a><h3>gtk_tree_model_get_path ()</h3>
         | 
| 1671 | 
            -
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1672 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1593 | 
            +
            <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *       gtk_tree_model_get_path             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1594 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 1673 1595 | 
             
            <p>
         | 
| 1674 | 
            -
            Returns a newly-created <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 1596 | 
            +
            Returns a newly-created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> referenced by <em class="parameter"><code>iter</code></em>.  This path should
         | 
| 1675 1597 | 
             
            be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a>.
         | 
| 1676 1598 | 
             
            </p>
         | 
| 1677 1599 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -1679,27 +1601,24 @@ be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title= | |
| 1679 1601 | 
             
            <tbody>
         | 
| 1680 1602 | 
             
            <tr>
         | 
| 1681 1603 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1682 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1683 | 
            -
            </td>
         | 
| 1604 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1684 1605 | 
             
            </tr>
         | 
| 1685 1606 | 
             
            <tr>
         | 
| 1686 1607 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1687 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1688 | 
            -
            </td>
         | 
| 1608 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 1689 1609 | 
             
            </tr>
         | 
| 1690 1610 | 
             
            <tr>
         | 
| 1691 1611 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1692 | 
            -
            <td> | 
| 1693 | 
            -
            </td>
         | 
| 1612 | 
            +
            <td>a newly-created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
         | 
| 1694 1613 | 
             
            </tr>
         | 
| 1695 1614 | 
             
            </tbody>
         | 
| 1696 1615 | 
             
            </table></div>
         | 
| 1697 1616 | 
             
            </div>
         | 
| 1698 1617 | 
             
            <hr>
         | 
| 1699 | 
            -
            <div class="refsect2" | 
| 1618 | 
            +
            <div class="refsect2">
         | 
| 1700 1619 | 
             
            <a name="gtk-tree-model-get-value"></a><h3>gtk_tree_model_get_value ()</h3>
         | 
| 1701 1620 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_get_value            (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1702 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1621 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 1703 1622 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
         | 
| 1704 1623 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
         | 
| 1705 1624 | 
             
            <p>
         | 
| @@ -1712,32 +1631,29 @@ to free any allocated memory. | |
| 1712 1631 | 
             
            <tbody>
         | 
| 1713 1632 | 
             
            <tr>
         | 
| 1714 1633 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1715 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1716 | 
            -
            </td>
         | 
| 1634 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1717 1635 | 
             
            </tr>
         | 
| 1718 1636 | 
             
            <tr>
         | 
| 1719 1637 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1720 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1721 | 
            -
            </td>
         | 
| 1638 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 1722 1639 | 
             
            </tr>
         | 
| 1723 1640 | 
             
            <tr>
         | 
| 1724 1641 | 
             
            <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
         | 
| 1725 | 
            -
            <td>The column to lookup the value at | 
| 1726 | 
            -
            </td>
         | 
| 1642 | 
            +
            <td>The column to lookup the value at.</td>
         | 
| 1727 1643 | 
             
            </tr>
         | 
| 1728 1644 | 
             
            <tr>
         | 
| 1729 1645 | 
             
            <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
         | 
| 1730 | 
            -
            <td> | 
| 1646 | 
            +
            <td>An empty <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> to set. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 1731 1647 | 
             
            </td>
         | 
| 1732 1648 | 
             
            </tr>
         | 
| 1733 1649 | 
             
            </tbody>
         | 
| 1734 1650 | 
             
            </table></div>
         | 
| 1735 1651 | 
             
            </div>
         | 
| 1736 1652 | 
             
            <hr>
         | 
| 1737 | 
            -
            <div class="refsect2" | 
| 1653 | 
            +
            <div class="refsect2">
         | 
| 1738 1654 | 
             
            <a name="gtk-tree-model-iter-next"></a><h3>gtk_tree_model_iter_next ()</h3>
         | 
| 1739 1655 | 
             
            <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_iter_next            (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1740 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1656 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 1741 1657 | 
             
            <p>
         | 
| 1742 1658 | 
             
            Sets <em class="parameter"><code>iter</code></em> to point to the node following it at the current level.  If there
         | 
| 1743 1659 | 
             
            is no next <em class="parameter"><code>iter</code></em>, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned and <em class="parameter"><code>iter</code></em> is set to be invalid.
         | 
| @@ -1747,28 +1663,27 @@ is no next <em class="parameter"><code>iter</code></em>, <a href="http://library | |
| 1747 1663 | 
             
            <tbody>
         | 
| 1748 1664 | 
             
            <tr>
         | 
| 1749 1665 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1750 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1751 | 
            -
            </td>
         | 
| 1666 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1752 1667 | 
             
            </tr>
         | 
| 1753 1668 | 
             
            <tr>
         | 
| 1754 1669 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1755 | 
            -
            <td> | 
| 1670 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>]</span>
         | 
| 1756 1671 | 
             
            </td>
         | 
| 1757 1672 | 
             
            </tr>
         | 
| 1758 1673 | 
             
            <tr>
         | 
| 1759 1674 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1760 | 
            -
            <td> | 
| 1761 | 
            -
            </td>
         | 
| 1675 | 
            +
            <td>
         | 
| 1676 | 
            +
            <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> has been changed to the next node.</td>
         | 
| 1762 1677 | 
             
            </tr>
         | 
| 1763 1678 | 
             
            </tbody>
         | 
| 1764 1679 | 
             
            </table></div>
         | 
| 1765 1680 | 
             
            </div>
         | 
| 1766 1681 | 
             
            <hr>
         | 
| 1767 | 
            -
            <div class="refsect2" | 
| 1682 | 
            +
            <div class="refsect2">
         | 
| 1768 1683 | 
             
            <a name="gtk-tree-model-iter-children"></a><h3>gtk_tree_model_iter_children ()</h3>
         | 
| 1769 1684 | 
             
            <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_iter_children        (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1770 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1771 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1685 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 1686 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);</pre>
         | 
| 1772 1687 | 
             
            <p>
         | 
| 1773 1688 | 
             
            Sets <em class="parameter"><code>iter</code></em> to point to the first child of <em class="parameter"><code>parent</code></em>.  If <em class="parameter"><code>parent</code></em> has no
         | 
| 1774 1689 | 
             
            children, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned and <em class="parameter"><code>iter</code></em> is set to be invalid.  <em class="parameter"><code>parent</code></em>
         | 
| @@ -1783,32 +1698,31 @@ If <em class="parameter"><code>parent</code></em> is <a href="http://library.gno | |
| 1783 1698 | 
             
            <tbody>
         | 
| 1784 1699 | 
             
            <tr>
         | 
| 1785 1700 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1786 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1787 | 
            -
            </td>
         | 
| 1701 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1788 1702 | 
             
            </tr>
         | 
| 1789 1703 | 
             
            <tr>
         | 
| 1790 1704 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1791 | 
            -
            <td> | 
| 1705 | 
            +
            <td>The new <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to be set to the child. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 1792 1706 | 
             
            </td>
         | 
| 1793 1707 | 
             
            </tr>
         | 
| 1794 1708 | 
             
            <tr>
         | 
| 1795 1709 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 1796 | 
            -
            <td> | 
| 1710 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1797 1711 | 
             
            </td>
         | 
| 1798 1712 | 
             
            </tr>
         | 
| 1799 1713 | 
             
            <tr>
         | 
| 1800 1714 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1801 | 
            -
            <td> | 
| 1802 | 
            -
            </td>
         | 
| 1715 | 
            +
            <td>
         | 
| 1716 | 
            +
            <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>child</code></em> has been set to the first child.</td>
         | 
| 1803 1717 | 
             
            </tr>
         | 
| 1804 1718 | 
             
            </tbody>
         | 
| 1805 1719 | 
             
            </table></div>
         | 
| 1806 1720 | 
             
            </div>
         | 
| 1807 1721 | 
             
            <hr>
         | 
| 1808 | 
            -
            <div class="refsect2" | 
| 1722 | 
            +
            <div class="refsect2">
         | 
| 1809 1723 | 
             
            <a name="gtk-tree-model-iter-has-child"></a><h3>gtk_tree_model_iter_has_child ()</h3>
         | 
| 1810 1724 | 
             
            <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_iter_has_child       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1811 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1725 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 1812 1726 | 
             
            <p>
         | 
| 1813 1727 | 
             
            Returns <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> has children, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
         | 
| 1814 1728 | 
             
            </p>
         | 
| @@ -1817,27 +1731,25 @@ Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macr | |
| 1817 1731 | 
             
            <tbody>
         | 
| 1818 1732 | 
             
            <tr>
         | 
| 1819 1733 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1820 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1821 | 
            -
            </td>
         | 
| 1734 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1822 1735 | 
             
            </tr>
         | 
| 1823 1736 | 
             
            <tr>
         | 
| 1824 1737 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1825 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1826 | 
            -
            </td>
         | 
| 1738 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to test for children.</td>
         | 
| 1827 1739 | 
             
            </tr>
         | 
| 1828 1740 | 
             
            <tr>
         | 
| 1829 1741 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1830 | 
            -
            <td> | 
| 1831 | 
            -
            </td>
         | 
| 1742 | 
            +
            <td>
         | 
| 1743 | 
            +
            <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> has children.</td>
         | 
| 1832 1744 | 
             
            </tr>
         | 
| 1833 1745 | 
             
            </tbody>
         | 
| 1834 1746 | 
             
            </table></div>
         | 
| 1835 1747 | 
             
            </div>
         | 
| 1836 1748 | 
             
            <hr>
         | 
| 1837 | 
            -
            <div class="refsect2" | 
| 1749 | 
            +
            <div class="refsect2">
         | 
| 1838 1750 | 
             
            <a name="gtk-tree-model-iter-n-children"></a><h3>gtk_tree_model_iter_n_children ()</h3>
         | 
| 1839 1751 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                gtk_tree_model_iter_n_children      (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1840 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1752 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 1841 1753 | 
             
            <p>
         | 
| 1842 1754 | 
             
            Returns the number of children that <em class="parameter"><code>iter</code></em> has.  As a special case, if <em class="parameter"><code>iter</code></em>
         | 
| 1843 1755 | 
             
            is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the number of toplevel nodes is returned.
         | 
| @@ -1847,28 +1759,26 @@ is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht | |
| 1847 1759 | 
             
            <tbody>
         | 
| 1848 1760 | 
             
            <tr>
         | 
| 1849 1761 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1850 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1851 | 
            -
            </td>
         | 
| 1762 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1852 1763 | 
             
            </tr>
         | 
| 1853 1764 | 
             
            <tr>
         | 
| 1854 1765 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1855 | 
            -
            <td> | 
| 1766 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1856 1767 | 
             
            </td>
         | 
| 1857 1768 | 
             
            </tr>
         | 
| 1858 1769 | 
             
            <tr>
         | 
| 1859 1770 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1860 | 
            -
            <td> | 
| 1861 | 
            -
            </td>
         | 
| 1771 | 
            +
            <td>The number of children of <em class="parameter"><code>iter</code></em>.</td>
         | 
| 1862 1772 | 
             
            </tr>
         | 
| 1863 1773 | 
             
            </tbody>
         | 
| 1864 1774 | 
             
            </table></div>
         | 
| 1865 1775 | 
             
            </div>
         | 
| 1866 1776 | 
             
            <hr>
         | 
| 1867 | 
            -
            <div class="refsect2" | 
| 1777 | 
            +
            <div class="refsect2">
         | 
| 1868 1778 | 
             
            <a name="gtk-tree-model-iter-nth-child"></a><h3>gtk_tree_model_iter_nth_child ()</h3>
         | 
| 1869 1779 | 
             
            <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_iter_nth_child       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1870 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1871 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1780 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 1781 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 1872 1782 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n</code></em>);</pre>
         | 
| 1873 1783 | 
             
            <p>
         | 
| 1874 1784 | 
             
            Sets <em class="parameter"><code>iter</code></em> to be the child of <em class="parameter"><code>parent</code></em>, using the given index.  The first
         | 
| @@ -1882,38 +1792,36 @@ node after this function has been called.  As a special case, if <em class="para | |
| 1882 1792 | 
             
            <tbody>
         | 
| 1883 1793 | 
             
            <tr>
         | 
| 1884 1794 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1885 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1886 | 
            -
            </td>
         | 
| 1795 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1887 1796 | 
             
            </tr>
         | 
| 1888 1797 | 
             
            <tr>
         | 
| 1889 1798 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1890 | 
            -
            <td> | 
| 1799 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the nth child. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 1891 1800 | 
             
            </td>
         | 
| 1892 1801 | 
             
            </tr>
         | 
| 1893 1802 | 
             
            <tr>
         | 
| 1894 1803 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 1895 | 
            -
            <td> | 
| 1804 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to get the child from, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1896 1805 | 
             
            </td>
         | 
| 1897 1806 | 
             
            </tr>
         | 
| 1898 1807 | 
             
            <tr>
         | 
| 1899 1808 | 
             
            <td><p><span class="term"><em class="parameter"><code>n</code></em> :</span></p></td>
         | 
| 1900 | 
            -
            <td>Then index of the desired child | 
| 1901 | 
            -
            </td>
         | 
| 1809 | 
            +
            <td>Then index of the desired child.</td>
         | 
| 1902 1810 | 
             
            </tr>
         | 
| 1903 1811 | 
             
            <tr>
         | 
| 1904 1812 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1905 | 
            -
            <td> | 
| 1906 | 
            -
            </td>
         | 
| 1813 | 
            +
            <td>
         | 
| 1814 | 
            +
            <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>parent</code></em> has an <em class="parameter"><code>n</code></em>th child.</td>
         | 
| 1907 1815 | 
             
            </tr>
         | 
| 1908 1816 | 
             
            </tbody>
         | 
| 1909 1817 | 
             
            </table></div>
         | 
| 1910 1818 | 
             
            </div>
         | 
| 1911 1819 | 
             
            <hr>
         | 
| 1912 | 
            -
            <div class="refsect2" | 
| 1820 | 
            +
            <div class="refsect2">
         | 
| 1913 1821 | 
             
            <a name="gtk-tree-model-iter-parent"></a><h3>gtk_tree_model_iter_parent ()</h3>
         | 
| 1914 1822 | 
             
            <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_iter_parent          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1915 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1916 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1823 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 1824 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *child</code></em>);</pre>
         | 
| 1917 1825 | 
             
            <p>
         | 
| 1918 1826 | 
             
            Sets <em class="parameter"><code>iter</code></em> to be the parent of <em class="parameter"><code>child</code></em>.  If <em class="parameter"><code>child</code></em> is at the toplevel, and
         | 
| 1919 1827 | 
             
            doesn't have a parent, then <em class="parameter"><code>iter</code></em> is set to an invalid iterator and <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
         | 
| @@ -1930,27 +1838,26 @@ called. | |
| 1930 1838 | 
             
            </tr>
         | 
| 1931 1839 | 
             
            <tr>
         | 
| 1932 1840 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1933 | 
            -
            <td> | 
| 1841 | 
            +
            <td>The new <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the parent. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 1934 1842 | 
             
            </td>
         | 
| 1935 1843 | 
             
            </tr>
         | 
| 1936 1844 | 
             
            <tr>
         | 
| 1937 1845 | 
             
            <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
         | 
| 1938 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1939 | 
            -
            </td>
         | 
| 1846 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 1940 1847 | 
             
            </tr>
         | 
| 1941 1848 | 
             
            <tr>
         | 
| 1942 1849 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1943 | 
            -
            <td> | 
| 1944 | 
            -
            </td>
         | 
| 1850 | 
            +
            <td>
         | 
| 1851 | 
            +
            <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 set to the parent of <em class="parameter"><code>child</code></em>.</td>
         | 
| 1945 1852 | 
             
            </tr>
         | 
| 1946 1853 | 
             
            </tbody>
         | 
| 1947 1854 | 
             
            </table></div>
         | 
| 1948 1855 | 
             
            </div>
         | 
| 1949 1856 | 
             
            <hr>
         | 
| 1950 | 
            -
            <div class="refsect2" | 
| 1857 | 
            +
            <div class="refsect2">
         | 
| 1951 1858 | 
             
            <a name="gtk-tree-model-get-string-from-iter"></a><h3>gtk_tree_model_get_string_from_iter ()</h3>
         | 
| 1952 1859 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             gtk_tree_model_get_string_from_iter (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1953 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1860 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 1954 1861 | 
             
            <p>
         | 
| 1955 1862 | 
             
            Generates a string representation of the iter. This string is a ':'
         | 
| 1956 1863 | 
             
            separated list of numbers. For example, "4:10:0:3" would be an
         | 
| @@ -1961,29 +1868,25 @@ acceptable return value for this string. | |
| 1961 1868 | 
             
            <tbody>
         | 
| 1962 1869 | 
             
            <tr>
         | 
| 1963 1870 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 1964 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 1965 | 
            -
            </td>
         | 
| 1871 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 1966 1872 | 
             
            </tr>
         | 
| 1967 1873 | 
             
            <tr>
         | 
| 1968 1874 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1969 | 
            -
            <td>An <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1970 | 
            -
            </td>
         | 
| 1875 | 
            +
            <td>An <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 1971 1876 | 
             
            </tr>
         | 
| 1972 1877 | 
             
            <tr>
         | 
| 1973 1878 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1974 | 
            -
            <td> | 
| 1975 | 
            -
             | 
| 1976 | 
            -
            </td>
         | 
| 1879 | 
            +
            <td>A newly-allocated string. Must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
         | 
| 1977 1880 | 
             
            </tr>
         | 
| 1978 1881 | 
             
            </tbody>
         | 
| 1979 1882 | 
             
            </table></div>
         | 
| 1980 1883 | 
             
            <p class="since">Since 2.2</p>
         | 
| 1981 1884 | 
             
            </div>
         | 
| 1982 1885 | 
             
            <hr>
         | 
| 1983 | 
            -
            <div class="refsect2" | 
| 1886 | 
            +
            <div class="refsect2">
         | 
| 1984 1887 | 
             
            <a name="gtk-tree-model-ref-node"></a><h3>gtk_tree_model_ref_node ()</h3>
         | 
| 1985 1888 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_ref_node             (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 1986 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1889 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 1987 1890 | 
             
            <p>
         | 
| 1988 1891 | 
             
            Lets the tree ref the node.  This is an optional method for models to
         | 
| 1989 1892 | 
             
            implement.  To be more specific, models may ignore this call as it exists
         | 
| @@ -2005,22 +1908,20 @@ reffed state. | |
| 2005 1908 | 
             
            <tbody>
         | 
| 2006 1909 | 
             
            <tr>
         | 
| 2007 1910 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 2008 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 2009 | 
            -
            </td>
         | 
| 1911 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 2010 1912 | 
             
            </tr>
         | 
| 2011 1913 | 
             
            <tr>
         | 
| 2012 1914 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2013 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2014 | 
            -
            </td>
         | 
| 1915 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 2015 1916 | 
             
            </tr>
         | 
| 2016 1917 | 
             
            </tbody>
         | 
| 2017 1918 | 
             
            </table></div>
         | 
| 2018 1919 | 
             
            </div>
         | 
| 2019 1920 | 
             
            <hr>
         | 
| 2020 | 
            -
            <div class="refsect2" | 
| 1921 | 
            +
            <div class="refsect2">
         | 
| 2021 1922 | 
             
            <a name="gtk-tree-model-unref-node"></a><h3>gtk_tree_model_unref_node ()</h3>
         | 
| 2022 1923 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_unref_node           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 2023 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1924 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 2024 1925 | 
             
            <p>
         | 
| 2025 1926 | 
             
            Lets the tree unref the node.  This is an optional method for models to
         | 
| 2026 1927 | 
             
            implement.  To be more specific, models may ignore this call as it exists
         | 
| @@ -2035,22 +1936,20 @@ Please note that nodes that are deleted are not unreffed. | |
| 2035 1936 | 
             
            <tbody>
         | 
| 2036 1937 | 
             
            <tr>
         | 
| 2037 1938 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 2038 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a | 
| 2039 | 
            -
            </td>
         | 
| 1939 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
         | 
| 2040 1940 | 
             
            </tr>
         | 
| 2041 1941 | 
             
            <tr>
         | 
| 2042 1942 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2043 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2044 | 
            -
            </td>
         | 
| 1943 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 2045 1944 | 
             
            </tr>
         | 
| 2046 1945 | 
             
            </tbody>
         | 
| 2047 1946 | 
             
            </table></div>
         | 
| 2048 1947 | 
             
            </div>
         | 
| 2049 1948 | 
             
            <hr>
         | 
| 2050 | 
            -
            <div class="refsect2" | 
| 1949 | 
            +
            <div class="refsect2">
         | 
| 2051 1950 | 
             
            <a name="gtk-tree-model-get"></a><h3>gtk_tree_model_get ()</h3>
         | 
| 2052 1951 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_get                  (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 2053 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1952 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 2054 1953 | 
             
                                                                     <em class="parameter"><code>...</code></em>);</pre>
         | 
| 2055 1954 | 
             
            <p>
         | 
| 2056 1955 | 
             
            Gets the value of one or more cells in the row referenced by <em class="parameter"><code>iter</code></em>.
         | 
| @@ -2082,17 +1981,16 @@ passed by value. | |
| 2082 1981 | 
             
            </tr>
         | 
| 2083 1982 | 
             
            <tr>
         | 
| 2084 1983 | 
             
            <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
         | 
| 2085 | 
            -
            <td>pairs of column number and value return locations, terminated by -1
         | 
| 2086 | 
            -
            </td>
         | 
| 1984 | 
            +
            <td>pairs of column number and value return locations, terminated by -1</td>
         | 
| 2087 1985 | 
             
            </tr>
         | 
| 2088 1986 | 
             
            </tbody>
         | 
| 2089 1987 | 
             
            </table></div>
         | 
| 2090 1988 | 
             
            </div>
         | 
| 2091 1989 | 
             
            <hr>
         | 
| 2092 | 
            -
            <div class="refsect2" | 
| 1990 | 
            +
            <div class="refsect2">
         | 
| 2093 1991 | 
             
            <a name="gtk-tree-model-get-valist"></a><h3>gtk_tree_model_get_valist ()</h3>
         | 
| 2094 1992 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_get_valist           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 2095 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1993 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 2096 1994 | 
             
                                                                     <em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
         | 
| 2097 1995 | 
             
            <p>
         | 
| 2098 1996 | 
             
            See <a class="link" href="GtkTreeModel.html#gtk-tree-model-get" title="gtk_tree_model_get ()"><code class="function">gtk_tree_model_get()</code></a>, this version takes a <span class="type">va_list</span> 
         | 
| @@ -2114,21 +2012,20 @@ for language bindings to use. | |
| 2114 2012 | 
             
            <tr>
         | 
| 2115 2013 | 
             
            <td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
         | 
| 2116 2014 | 
             
            <td>
         | 
| 2117 | 
            -
            <span class="type">va_list</span> of column/return location pairs
         | 
| 2118 | 
            -
            </td>
         | 
| 2015 | 
            +
            <span class="type">va_list</span> of column/return location pairs</td>
         | 
| 2119 2016 | 
             
            </tr>
         | 
| 2120 2017 | 
             
            </tbody>
         | 
| 2121 2018 | 
             
            </table></div>
         | 
| 2122 2019 | 
             
            </div>
         | 
| 2123 2020 | 
             
            <hr>
         | 
| 2124 | 
            -
            <div class="refsect2" | 
| 2021 | 
            +
            <div class="refsect2">
         | 
| 2125 2022 | 
             
            <a name="gtk-tree-model-foreach"></a><h3>gtk_tree_model_foreach ()</h3>
         | 
| 2126 2023 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_foreach              (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 2127 2024 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeModelForeachFunc" title="GtkTreeModelForeachFunc ()"><span class="type">GtkTreeModelForeachFunc</span></a> func</code></em>,
         | 
| 2128 2025 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
         | 
| 2129 2026 | 
             
            <p>
         | 
| 2130 | 
            -
            Calls func on each node in model in a depth-first fashion. | 
| 2131 | 
            -
            If <em class="parameter"><code>func</code></em> returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then the tree ceases to be walked, and | 
| 2027 | 
            +
            Calls func on each node in model in a depth-first fashion.
         | 
| 2028 | 
            +
            If <em class="parameter"><code>func</code></em> returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then the tree ceases to be walked, and
         | 
| 2132 2029 | 
             
            <a class="link" href="GtkTreeModel.html#gtk-tree-model-foreach" title="gtk_tree_model_foreach ()"><code class="function">gtk_tree_model_foreach()</code></a> returns.
         | 
| 2133 2030 | 
             
            </p>
         | 
| 2134 2031 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -2141,23 +2038,22 @@ If <em class="parameter"><code>func</code></em> returns <a href="http://library. | |
| 2141 2038 | 
             
            </tr>
         | 
| 2142 2039 | 
             
            <tr>
         | 
| 2143 2040 | 
             
            <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
         | 
| 2144 | 
            -
            <td>A function to be called on each row
         | 
| 2041 | 
            +
            <td>A function to be called on each row. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
         | 
| 2145 2042 | 
             
            </td>
         | 
| 2146 2043 | 
             
            </tr>
         | 
| 2147 2044 | 
             
            <tr>
         | 
| 2148 2045 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 2149 | 
            -
            <td>User data to passed to func | 
| 2150 | 
            -
            </td>
         | 
| 2046 | 
            +
            <td>User data to passed to func.</td>
         | 
| 2151 2047 | 
             
            </tr>
         | 
| 2152 2048 | 
             
            </tbody>
         | 
| 2153 2049 | 
             
            </table></div>
         | 
| 2154 2050 | 
             
            </div>
         | 
| 2155 2051 | 
             
            <hr>
         | 
| 2156 | 
            -
            <div class="refsect2" | 
| 2052 | 
            +
            <div class="refsect2">
         | 
| 2157 2053 | 
             
            <a name="gtk-tree-model-row-changed"></a><h3>gtk_tree_model_row_changed ()</h3>
         | 
| 2158 2054 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_row_changed          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 2159 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2160 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2055 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 2056 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 2161 2057 | 
             
            <p>
         | 
| 2162 2058 | 
             
            Emits the "row-changed" signal on <em class="parameter"><code>tree_model</code></em>.
         | 
| 2163 2059 | 
             
            </p>
         | 
| @@ -2171,23 +2067,21 @@ Emits the "row-changed" signal on <em class="parameter"><code>tree_model</code>< | |
| 2171 2067 | 
             
            </tr>
         | 
| 2172 2068 | 
             
            <tr>
         | 
| 2173 2069 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2174 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2175 | 
            -
            </td>
         | 
| 2070 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the changed row</td>
         | 
| 2176 2071 | 
             
            </tr>
         | 
| 2177 2072 | 
             
            <tr>
         | 
| 2178 2073 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2179 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2180 | 
            -
            </td>
         | 
| 2074 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the changed row</td>
         | 
| 2181 2075 | 
             
            </tr>
         | 
| 2182 2076 | 
             
            </tbody>
         | 
| 2183 2077 | 
             
            </table></div>
         | 
| 2184 2078 | 
             
            </div>
         | 
| 2185 2079 | 
             
            <hr>
         | 
| 2186 | 
            -
            <div class="refsect2" | 
| 2080 | 
            +
            <div class="refsect2">
         | 
| 2187 2081 | 
             
            <a name="gtk-tree-model-row-inserted"></a><h3>gtk_tree_model_row_inserted ()</h3>
         | 
| 2188 2082 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_row_inserted         (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 2189 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2190 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2083 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 2084 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 2191 2085 | 
             
            <p>
         | 
| 2192 2086 | 
             
            Emits the "row-inserted" signal on <em class="parameter"><code>tree_model</code></em>
         | 
| 2193 2087 | 
             
            </p>
         | 
| @@ -2201,24 +2095,22 @@ Emits the "row-inserted" signal on <em class="parameter"><code>tree_model</code> | |
| 2201 2095 | 
             
            </tr>
         | 
| 2202 2096 | 
             
            <tr>
         | 
| 2203 2097 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2204 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2205 | 
            -
            </td>
         | 
| 2098 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the inserted row</td>
         | 
| 2206 2099 | 
             
            </tr>
         | 
| 2207 2100 | 
             
            <tr>
         | 
| 2208 2101 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2209 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2210 | 
            -
            </td>
         | 
| 2102 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the inserted row</td>
         | 
| 2211 2103 | 
             
            </tr>
         | 
| 2212 2104 | 
             
            </tbody>
         | 
| 2213 2105 | 
             
            </table></div>
         | 
| 2214 2106 | 
             
            </div>
         | 
| 2215 2107 | 
             
            <hr>
         | 
| 2216 | 
            -
            <div class="refsect2" | 
| 2108 | 
            +
            <div class="refsect2">
         | 
| 2217 2109 | 
             
            <a name="gtk-tree-model-row-has-child-toggled"></a><h3>gtk_tree_model_row_has_child_toggled ()</h3>
         | 
| 2218 2110 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_row_has_child_toggled
         | 
| 2219 2111 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 2220 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2221 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2112 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 2113 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 2222 2114 | 
             
            <p>
         | 
| 2223 2115 | 
             
            Emits the "row-has-child-toggled" signal on <em class="parameter"><code>tree_model</code></em>.  This should be
         | 
| 2224 2116 | 
             
            called by models after the child state of a node changes.
         | 
| @@ -2233,22 +2125,20 @@ called by models after the child state of a node changes. | |
| 2233 2125 | 
             
            </tr>
         | 
| 2234 2126 | 
             
            <tr>
         | 
| 2235 2127 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2236 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2237 | 
            -
            </td>
         | 
| 2128 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the changed row</td>
         | 
| 2238 2129 | 
             
            </tr>
         | 
| 2239 2130 | 
             
            <tr>
         | 
| 2240 2131 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2241 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2242 | 
            -
            </td>
         | 
| 2132 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the changed row</td>
         | 
| 2243 2133 | 
             
            </tr>
         | 
| 2244 2134 | 
             
            </tbody>
         | 
| 2245 2135 | 
             
            </table></div>
         | 
| 2246 2136 | 
             
            </div>
         | 
| 2247 2137 | 
             
            <hr>
         | 
| 2248 | 
            -
            <div class="refsect2" | 
| 2138 | 
            +
            <div class="refsect2">
         | 
| 2249 2139 | 
             
            <a name="gtk-tree-model-row-deleted"></a><h3>gtk_tree_model_row_deleted ()</h3>
         | 
| 2250 2140 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_row_deleted          (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 2251 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2141 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
         | 
| 2252 2142 | 
             
            <p>
         | 
| 2253 2143 | 
             
            Emits the "row-deleted" signal on <em class="parameter"><code>tree_model</code></em>.  This should be called by
         | 
| 2254 2144 | 
             
            models after a row has been removed.  The location pointed to by <em class="parameter"><code>path</code></em> 
         | 
| @@ -2265,18 +2155,17 @@ valid location anymore. | |
| 2265 2155 | 
             
            </tr>
         | 
| 2266 2156 | 
             
            <tr>
         | 
| 2267 2157 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2268 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2269 | 
            -
            </td>
         | 
| 2158 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the previous location of the deleted row.</td>
         | 
| 2270 2159 | 
             
            </tr>
         | 
| 2271 2160 | 
             
            </tbody>
         | 
| 2272 2161 | 
             
            </table></div>
         | 
| 2273 2162 | 
             
            </div>
         | 
| 2274 2163 | 
             
            <hr>
         | 
| 2275 | 
            -
            <div class="refsect2" | 
| 2164 | 
            +
            <div class="refsect2">
         | 
| 2276 2165 | 
             
            <a name="gtk-tree-model-rows-reordered"></a><h3>gtk_tree_model_rows_reordered ()</h3>
         | 
| 2277 2166 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_model_rows_reordered       (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
         | 
| 2278 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2279 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2167 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
         | 
| 2168 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 2280 2169 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *new_order</code></em>);</pre>
         | 
| 2281 2170 | 
             
            <p>
         | 
| 2282 2171 | 
             
            Emits the "rows-reordered" signal on <em class="parameter"><code>tree_model</code></em>.  This should be called by
         | 
| @@ -2292,35 +2181,32 @@ models when their rows have been reordered. | |
| 2292 2181 | 
             
            </tr>
         | 
| 2293 2182 | 
             
            <tr>
         | 
| 2294 2183 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2295 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2296 | 
            -
             | 
| 2297 | 
            -
            </td>
         | 
| 2184 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the tree node whose children have been
         | 
| 2185 | 
            +
            reordered</td>
         | 
| 2298 2186 | 
             
            </tr>
         | 
| 2299 2187 | 
             
            <tr>
         | 
| 2300 2188 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2301 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2302 | 
            -
             | 
| 2303 | 
            -
            </td>
         | 
| 2189 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the node whose children have been
         | 
| 2190 | 
            +
            reordered, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the depth of <em class="parameter"><code>path</code></em> is 0.</td>
         | 
| 2304 2191 | 
             
            </tr>
         | 
| 2305 2192 | 
             
            <tr>
         | 
| 2306 2193 | 
             
            <td><p><span class="term"><em class="parameter"><code>new_order</code></em> :</span></p></td>
         | 
| 2307 2194 | 
             
            <td>an array of integers mapping the current position of each child
         | 
| 2308 | 
            -
             | 
| 2309 | 
            -
             | 
| 2310 | 
            -
            </td>
         | 
| 2195 | 
            +
            to its old position before the re-ordering,
         | 
| 2196 | 
            +
            i.e. <em class="parameter"><code>new_order</code></em><code class="literal">[newpos] = oldpos</code>.</td>
         | 
| 2311 2197 | 
             
            </tr>
         | 
| 2312 2198 | 
             
            </tbody>
         | 
| 2313 2199 | 
             
            </table></div>
         | 
| 2314 2200 | 
             
            </div>
         | 
| 2315 2201 | 
             
            </div>
         | 
| 2316 | 
            -
            <div class="refsect1" | 
| 2202 | 
            +
            <div class="refsect1">
         | 
| 2317 2203 | 
             
            <a name="GtkTreeModel.signal-details"></a><h2>Signal Details</h2>
         | 
| 2318 | 
            -
            <div class="refsect2" | 
| 2204 | 
            +
            <div class="refsect2">
         | 
| 2319 2205 | 
             
            <a name="GtkTreeModel-row-changed"></a><h3>The <code class="literal">"row-changed"</code> signal</h3>
         | 
| 2320 2206 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
         | 
| 2321 | 
            -
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2322 | 
            -
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2323 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>      user_data)       : Run Last</pre>
         | 
| 2207 | 
            +
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>  *path,
         | 
| 2208 | 
            +
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>  *iter,
         | 
| 2209 | 
            +
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>      user_data)       : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
         | 
| 2324 2210 | 
             
            <p>
         | 
| 2325 2211 | 
             
            This signal is emitted when a row in the model has changed.
         | 
| 2326 2212 | 
             
            </p>
         | 
| @@ -2329,18 +2215,15 @@ This signal is emitted when a row in the model has changed. | |
| 2329 2215 | 
             
            <tbody>
         | 
| 2330 2216 | 
             
            <tr>
         | 
| 2331 2217 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 2332 | 
            -
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted
         | 
| 2333 | 
            -
            </td>
         | 
| 2218 | 
            +
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
         | 
| 2334 2219 | 
             
            </tr>
         | 
| 2335 2220 | 
             
            <tr>
         | 
| 2336 2221 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2337 | 
            -
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2338 | 
            -
            </td>
         | 
| 2222 | 
            +
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the changed row</td>
         | 
| 2339 2223 | 
             
            </tr>
         | 
| 2340 2224 | 
             
            <tr>
         | 
| 2341 2225 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2342 | 
            -
            <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2343 | 
            -
            </td>
         | 
| 2226 | 
            +
            <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the changed row</td>
         | 
| 2344 2227 | 
             
            </tr>
         | 
| 2345 2228 | 
             
            <tr>
         | 
| 2346 2229 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2350,11 +2233,11 @@ This signal is emitted when a row in the model has changed. | |
| 2350 2233 | 
             
            </table></div>
         | 
| 2351 2234 | 
             
            </div>
         | 
| 2352 2235 | 
             
            <hr>
         | 
| 2353 | 
            -
            <div class="refsect2" | 
| 2236 | 
            +
            <div class="refsect2">
         | 
| 2354 2237 | 
             
            <a name="GtkTreeModel-row-deleted"></a><h3>The <code class="literal">"row-deleted"</code> signal</h3>
         | 
| 2355 2238 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
         | 
| 2356 | 
            -
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2357 | 
            -
                                                                    <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>
         | 
| 2239 | 
            +
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>  *path,
         | 
| 2240 | 
            +
                                                                    <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>
         | 
| 2358 2241 | 
             
            <p>
         | 
| 2359 2242 | 
             
            This signal is emitted when a row has been deleted.
         | 
| 2360 2243 | 
             
            </p>
         | 
| @@ -2363,25 +2246,20 @@ Note that no iterator is passed to the signal handler, | |
| 2363 2246 | 
             
            since the row is already deleted.
         | 
| 2364 2247 | 
             
            </p>
         | 
| 2365 2248 | 
             
            <p>
         | 
| 2366 | 
            -
             | 
| 2367 | 
            -
            < | 
| 2368 | 
            -
             | 
| 2369 | 
            -
            views which access and monitor this model might have
         | 
| 2370 | 
            -
            references on the node which need to be released in the
         | 
| 2371 | 
            -
            row-deleted handler.
         | 
| 2249 | 
            +
            This should be called by models after a row has been removed.
         | 
| 2250 | 
            +
            The location pointed to by <em class="parameter"><code>path</code></em> should be the location that
         | 
| 2251 | 
            +
            the row previously was at. It may not be a valid location anymore.
         | 
| 2372 2252 | 
             
            </p>
         | 
| 2373 2253 | 
             
            <div class="variablelist"><table border="0">
         | 
| 2374 2254 | 
             
            <col align="left" valign="top">
         | 
| 2375 2255 | 
             
            <tbody>
         | 
| 2376 2256 | 
             
            <tr>
         | 
| 2377 2257 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 2378 | 
            -
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted
         | 
| 2379 | 
            -
            </td>
         | 
| 2258 | 
            +
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
         | 
| 2380 2259 | 
             
            </tr>
         | 
| 2381 2260 | 
             
            <tr>
         | 
| 2382 2261 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2383 | 
            -
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2384 | 
            -
            </td>
         | 
| 2262 | 
            +
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the row</td>
         | 
| 2385 2263 | 
             
            </tr>
         | 
| 2386 2264 | 
             
            <tr>
         | 
| 2387 2265 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2391,12 +2269,12 @@ row-deleted handler. | |
| 2391 2269 | 
             
            </table></div>
         | 
| 2392 2270 | 
             
            </div>
         | 
| 2393 2271 | 
             
            <hr>
         | 
| 2394 | 
            -
            <div class="refsect2" | 
| 2272 | 
            +
            <div class="refsect2">
         | 
| 2395 2273 | 
             
            <a name="GtkTreeModel-row-has-child-toggled"></a><h3>The <code class="literal">"row-has-child-toggled"</code> signal</h3>
         | 
| 2396 2274 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
         | 
| 2397 | 
            -
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2398 | 
            -
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2399 | 
            -
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>      user_data)       : Run Last</pre>
         | 
| 2275 | 
            +
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>  *path,
         | 
| 2276 | 
            +
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>  *iter,
         | 
| 2277 | 
            +
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>      user_data)       : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
         | 
| 2400 2278 | 
             
            <p>
         | 
| 2401 2279 | 
             
            This signal is emitted when a row has gotten the first child row or lost
         | 
| 2402 2280 | 
             
            its last child row.
         | 
| @@ -2406,18 +2284,15 @@ its last child row. | |
| 2406 2284 | 
             
            <tbody>
         | 
| 2407 2285 | 
             
            <tr>
         | 
| 2408 2286 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 2409 | 
            -
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted
         | 
| 2410 | 
            -
            </td>
         | 
| 2287 | 
            +
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
         | 
| 2411 2288 | 
             
            </tr>
         | 
| 2412 2289 | 
             
            <tr>
         | 
| 2413 2290 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2414 | 
            -
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2415 | 
            -
            </td>
         | 
| 2291 | 
            +
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the row</td>
         | 
| 2416 2292 | 
             
            </tr>
         | 
| 2417 2293 | 
             
            <tr>
         | 
| 2418 2294 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2419 | 
            -
            <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2420 | 
            -
            </td>
         | 
| 2295 | 
            +
            <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the row</td>
         | 
| 2421 2296 | 
             
            </tr>
         | 
| 2422 2297 | 
             
            <tr>
         | 
| 2423 2298 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2427,18 +2302,18 @@ its last child row. | |
| 2427 2302 | 
             
            </table></div>
         | 
| 2428 2303 | 
             
            </div>
         | 
| 2429 2304 | 
             
            <hr>
         | 
| 2430 | 
            -
            <div class="refsect2" | 
| 2305 | 
            +
            <div class="refsect2">
         | 
| 2431 2306 | 
             
            <a name="GtkTreeModel-row-inserted"></a><h3>The <code class="literal">"row-inserted"</code> signal</h3>
         | 
| 2432 2307 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
         | 
| 2433 | 
            -
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2434 | 
            -
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2435 | 
            -
                                                                    <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>
         | 
| 2308 | 
            +
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>  *path,
         | 
| 2309 | 
            +
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>  *iter,
         | 
| 2310 | 
            +
                                                                    <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>
         | 
| 2436 2311 | 
             
            <p>
         | 
| 2437 2312 | 
             
            This signal is emitted when a new row has been inserted in the model.
         | 
| 2438 2313 | 
             
            </p>
         | 
| 2439 2314 | 
             
            <p>
         | 
| 2440 2315 | 
             
            Note that the row may still be empty at this point, since
         | 
| 2441 | 
            -
            it is a common pattern to first insert an empty row, and | 
| 2316 | 
            +
            it is a common pattern to first insert an empty row, and
         | 
| 2442 2317 | 
             
            then fill it with the desired values.
         | 
| 2443 2318 | 
             
            </p>
         | 
| 2444 2319 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -2446,18 +2321,15 @@ then fill it with the desired values. | |
| 2446 2321 | 
             
            <tbody>
         | 
| 2447 2322 | 
             
            <tr>
         | 
| 2448 2323 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 2449 | 
            -
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted
         | 
| 2450 | 
            -
            </td>
         | 
| 2324 | 
            +
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
         | 
| 2451 2325 | 
             
            </tr>
         | 
| 2452 2326 | 
             
            <tr>
         | 
| 2453 2327 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2454 | 
            -
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2455 | 
            -
            </td>
         | 
| 2328 | 
            +
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the new row</td>
         | 
| 2456 2329 | 
             
            </tr>
         | 
| 2457 2330 | 
             
            <tr>
         | 
| 2458 2331 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2459 | 
            -
            <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2460 | 
            -
            </td>
         | 
| 2332 | 
            +
            <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the new row</td>
         | 
| 2461 2333 | 
             
            </tr>
         | 
| 2462 2334 | 
             
            <tr>
         | 
| 2463 2335 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2467,13 +2339,13 @@ then fill it with the desired values. | |
| 2467 2339 | 
             
            </table></div>
         | 
| 2468 2340 | 
             
            </div>
         | 
| 2469 2341 | 
             
            <hr>
         | 
| 2470 | 
            -
            <div class="refsect2" | 
| 2342 | 
            +
            <div class="refsect2">
         | 
| 2471 2343 | 
             
            <a name="GtkTreeModel-rows-reordered"></a><h3>The <code class="literal">"rows-reordered"</code> signal</h3>
         | 
| 2472 2344 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
         | 
| 2473 | 
            -
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2474 | 
            -
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2345 | 
            +
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>  *path,
         | 
| 2346 | 
            +
                                                                    <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>  *iter,
         | 
| 2475 2347 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>      new_order,
         | 
| 2476 | 
            -
                                                                    <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>
         | 
| 2348 | 
            +
                                                                    <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>
         | 
| 2477 2349 | 
             
            <p>
         | 
| 2478 2350 | 
             
            This signal is emitted when the children of a node in the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
         | 
| 2479 2351 | 
             
            have been reordered. 
         | 
| @@ -2488,26 +2360,22 @@ by removing and then reinserting the row. | |
| 2488 2360 | 
             
            <tbody>
         | 
| 2489 2361 | 
             
            <tr>
         | 
| 2490 2362 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
         | 
| 2491 | 
            -
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted
         | 
| 2492 | 
            -
            </td>
         | 
| 2363 | 
            +
            <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
         | 
| 2493 2364 | 
             
            </tr>
         | 
| 2494 2365 | 
             
            <tr>
         | 
| 2495 2366 | 
             
            <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
         | 
| 2496 | 
            -
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath" | 
| 2497 | 
            -
             | 
| 2498 | 
            -
            </td>
         | 
| 2367 | 
            +
            <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the tree node whose children
         | 
| 2368 | 
            +
            have been reordered</td>
         | 
| 2499 2369 | 
             
            </tr>
         | 
| 2500 2370 | 
             
            <tr>
         | 
| 2501 2371 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 2502 | 
            -
            <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 2503 | 
            -
            </td>
         | 
| 2372 | 
            +
            <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the node whose</td>
         | 
| 2504 2373 | 
             
            </tr>
         | 
| 2505 2374 | 
             
            <tr>
         | 
| 2506 2375 | 
             
            <td><p><span class="term"><em class="parameter"><code>new_order</code></em> :</span></p></td>
         | 
| 2507 2376 | 
             
            <td>an array of integers mapping the current position of
         | 
| 2508 | 
            -
             | 
| 2509 | 
            -
             | 
| 2510 | 
            -
            </td>
         | 
| 2377 | 
            +
            each child to its old position before the re-ordering,
         | 
| 2378 | 
            +
            i.e. <em class="parameter"><code>new_order</code></em><code class="literal">[newpos] = oldpos</code>.</td>
         | 
| 2511 2379 | 
             
            </tr>
         | 
| 2512 2380 | 
             
            <tr>
         | 
| 2513 2381 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2517,7 +2385,7 @@ by removing and then reinserting the row. | |
| 2517 2385 | 
             
            </table></div>
         | 
| 2518 2386 | 
             
            </div>
         | 
| 2519 2387 | 
             
            </div>
         | 
| 2520 | 
            -
            <div class="refsect1" | 
| 2388 | 
            +
            <div class="refsect1">
         | 
| 2521 2389 | 
             
            <a name="GtkTreeModel.see-also"></a><h2>See Also</h2>
         | 
| 2522 2390 | 
             
            <p>
         | 
| 2523 2391 | 
             
            <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>, <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>, <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>, <a class="link" href="gtk-GtkTreeView-drag-and-drop.html" title="GtkTreeView drag-and-drop">GtkTreeDnd</a>, <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a>
         | 
| @@ -2525,13 +2393,13 @@ by removing and then reinserting the row. | |
| 2525 2393 | 
             
            </div>
         | 
| 2526 2394 | 
             
            <div class="footnotes">
         | 
| 2527 2395 | 
             
            <br><hr width="100" align="left">
         | 
| 2528 | 
            -
            <div class="footnote"><p><sup>[<a id="ftn. | 
| 2396 | 
            +
            <div class="footnote"><p><sup>[<a id="ftn.id977843" href="#id977843" class="para">4</a>] </sup>
         | 
| 2529 2397 | 
             
            Here, <abbr class="abbrev">iter</abbr> is short for <span class="quote">“<span class="quote">iterator</span>”</span>
         | 
| 2530 2398 | 
             
            </p></div>
         | 
| 2531 2399 | 
             
            </div>
         | 
| 2532 2400 | 
             
            </div>
         | 
| 2533 2401 | 
             
            <div class="footer">
         | 
| 2534 2402 | 
             
            <hr>
         | 
| 2535 | 
            -
                      Generated by GTK-Doc V1. | 
| 2403 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 2536 2404 | 
             
            </body>
         | 
| 2537 2405 | 
             
            </html>
         |