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>GtkTreeSortable</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="GtkIconView.html" title="GtkIconView">
         | 
| 10 10 | 
             
            <link rel="next" href="GtkTreeModelSort.html" title="GtkTreeModelSort">
         | 
| 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="GtkIconView.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="GtkTreeModelSort.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">
         | 
| @@ -34,7 +34,7 @@ | |
| 34 34 | 
             
                              <a href="#GtkTreeSortable.signals" class="shortcut">Signals</a>
         | 
| 35 35 | 
             
            </td></tr>
         | 
| 36 36 | 
             
            </table>
         | 
| 37 | 
            -
            <div class="refentry" | 
| 37 | 
            +
            <div class="refentry">
         | 
| 38 38 | 
             
            <a name="GtkTreeSortable"></a><div class="titlepage"></div>
         | 
| 39 39 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 40 40 | 
             
            <td valign="top">
         | 
| @@ -43,16 +43,16 @@ | |
| 43 43 | 
             
            </td>
         | 
| 44 44 | 
             
            <td valign="top" align="right"></td>
         | 
| 45 45 | 
             
            </tr></table></div>
         | 
| 46 | 
            -
            <div class="refsynopsisdiv" | 
| 46 | 
            +
            <div class="refsynopsisdiv">
         | 
| 47 47 | 
             
            <a name="GtkTreeSortable.synopsis"></a><h2>Synopsis</h2>
         | 
| 48 48 | 
             
            <pre class="synopsis">
         | 
| 49 49 | 
             
            #include <gtk/gtk.h>
         | 
| 50 50 |  | 
| 51 51 | 
             
                                <a class="link" href="GtkTreeSortable.html#GtkTreeSortable-struct" title="GtkTreeSortable">GtkTreeSortable</a>;
         | 
| 52 | 
            -
             | 
| 52 | 
            +
            struct              <a class="link" href="GtkTreeSortable.html#GtkTreeSortableIface" title="struct GtkTreeSortableIface">GtkTreeSortableIface</a>;
         | 
| 53 53 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                (<a class="link" href="GtkTreeSortable.html#GtkTreeIterCompareFunc" title="GtkTreeIterCompareFunc ()">*GtkTreeIterCompareFunc</a>)           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 54 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 55 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 54 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *a</code></em>,
         | 
| 55 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *b</code></em>,
         | 
| 56 56 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
         | 
| 57 57 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeSortable.html#gtk-tree-sortable-sort-column-changed" title="gtk_tree_sortable_sort_column_changed ()">gtk_tree_sortable_sort_column_changed</a>
         | 
| 58 58 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> *sortable</code></em>);
         | 
| @@ -78,32 +78,32 @@ | |
| 78 78 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> *sortable</code></em>);
         | 
| 79 79 | 
             
            </pre>
         | 
| 80 80 | 
             
            </div>
         | 
| 81 | 
            -
            <div class="refsect1" | 
| 81 | 
            +
            <div class="refsect1">
         | 
| 82 82 | 
             
            <a name="GtkTreeSortable.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 83 83 | 
             
            <pre class="synopsis">
         | 
| 84 84 | 
             
              GInterface
         | 
| 85 85 | 
             
               +----GtkTreeSortable
         | 
| 86 86 | 
             
            </pre>
         | 
| 87 87 | 
             
            </div>
         | 
| 88 | 
            -
            <div class="refsect1" | 
| 88 | 
            +
            <div class="refsect1">
         | 
| 89 89 | 
             
            <a name="GtkTreeSortable.prerequisites"></a><h2>Prerequisites</h2>
         | 
| 90 90 | 
             
            <p>
         | 
| 91 91 | 
             
            GtkTreeSortable requires
         | 
| 92 92 | 
             
             <a class="link" href="GtkTreeModel.html" title="GtkTreeModel">GtkTreeModel</a> and  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>.</p>
         | 
| 93 93 | 
             
            </div>
         | 
| 94 | 
            -
            <div class="refsect1" | 
| 94 | 
            +
            <div class="refsect1">
         | 
| 95 95 | 
             
            <a name="GtkTreeSortable.implementations"></a><h2>Known Implementations</h2>
         | 
| 96 96 | 
             
            <p>
         | 
| 97 97 | 
             
            GtkTreeSortable is implemented by
         | 
| 98 98 | 
             
             <a class="link" href="GtkListStore.html" title="GtkListStore">GtkListStore</a>,  <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort">GtkTreeModelSort</a> and  <a class="link" href="GtkTreeStore.html" title="GtkTreeStore">GtkTreeStore</a>.</p>
         | 
| 99 99 | 
             
            </div>
         | 
| 100 | 
            -
            <div class="refsect1" | 
| 100 | 
            +
            <div class="refsect1">
         | 
| 101 101 | 
             
            <a name="GtkTreeSortable.signals"></a><h2>Signals</h2>
         | 
| 102 102 | 
             
            <pre class="synopsis">
         | 
| 103 | 
            -
              "<a class="link" href="GtkTreeSortable.html#GtkTreeSortable-sort-column-changed" title='The "sort-column-changed" signal'>sort-column-changed</a>"                            : Run Last
         | 
| 103 | 
            +
              "<a class="link" href="GtkTreeSortable.html#GtkTreeSortable-sort-column-changed" title='The "sort-column-changed" signal'>sort-column-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>
         | 
| 104 104 | 
             
            </pre>
         | 
| 105 105 | 
             
            </div>
         | 
| 106 | 
            -
            <div class="refsect1" | 
| 106 | 
            +
            <div class="refsect1">
         | 
| 107 107 | 
             
            <a name="GtkTreeSortable.description"></a><h2>Description</h2>
         | 
| 108 108 | 
             
            <p>
         | 
| 109 109 | 
             
            <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> is an interface to be implemented by tree models which
         | 
| @@ -111,18 +111,18 @@ support sorting. The <a class="link" href="GtkTreeView.html" title="GtkTreeView" | |
| 111 111 | 
             
            to sort the model.
         | 
| 112 112 | 
             
            </p>
         | 
| 113 113 | 
             
            </div>
         | 
| 114 | 
            -
            <div class="refsect1" | 
| 114 | 
            +
            <div class="refsect1">
         | 
| 115 115 | 
             
            <a name="GtkTreeSortable.details"></a><h2>Details</h2>
         | 
| 116 | 
            -
            <div class="refsect2" | 
| 116 | 
            +
            <div class="refsect2">
         | 
| 117 117 | 
             
            <a name="GtkTreeSortable-struct"></a><h3>GtkTreeSortable</h3>
         | 
| 118 118 | 
             
            <pre class="programlisting">typedef struct _GtkTreeSortable GtkTreeSortable;</pre>
         | 
| 119 119 | 
             
            <p>
         | 
| 120 120 | 
             
            </p>
         | 
| 121 121 | 
             
            </div>
         | 
| 122 122 | 
             
            <hr>
         | 
| 123 | 
            -
            <div class="refsect2" | 
| 124 | 
            -
            <a name="GtkTreeSortableIface"></a><h3>GtkTreeSortableIface</h3>
         | 
| 125 | 
            -
            <pre class="programlisting"> | 
| 123 | 
            +
            <div class="refsect2">
         | 
| 124 | 
            +
            <a name="GtkTreeSortableIface"></a><h3>struct GtkTreeSortableIface</h3>
         | 
| 125 | 
            +
            <pre class="programlisting">struct GtkTreeSortableIface {
         | 
| 126 126 | 
             
              GTypeInterface g_iface;
         | 
| 127 127 |  | 
| 128 128 | 
             
              /* signals */
         | 
| @@ -145,17 +145,17 @@ to sort the model. | |
| 145 145 | 
             
            				      gpointer                data,
         | 
| 146 146 | 
             
            				      GDestroyNotify          destroy);
         | 
| 147 147 | 
             
              gboolean (* has_default_sort_func) (GtkTreeSortable        *sortable);
         | 
| 148 | 
            -
            } | 
| 148 | 
            +
            };
         | 
| 149 149 | 
             
            </pre>
         | 
| 150 150 | 
             
            <p>
         | 
| 151 151 | 
             
            </p>
         | 
| 152 152 | 
             
            </div>
         | 
| 153 153 | 
             
            <hr>
         | 
| 154 | 
            -
            <div class="refsect2" | 
| 154 | 
            +
            <div class="refsect2">
         | 
| 155 155 | 
             
            <a name="GtkTreeIterCompareFunc"></a><h3>GtkTreeIterCompareFunc ()</h3>
         | 
| 156 156 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                (*GtkTreeIterCompareFunc)           (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
         | 
| 157 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 158 | 
            -
                                                                     <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> *a</code></em>,
         | 
| 158 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *b</code></em>,
         | 
| 159 159 | 
             
                                                                     <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>
         | 
| 160 160 | 
             
            <p>
         | 
| 161 161 | 
             
            A GtkTreeIterCompareFunc should return a negative integer, zero, or a positive
         | 
| @@ -175,17 +175,16 @@ for the "price" column could be one which returns | |
| 175 175 | 
             
            <tbody>
         | 
| 176 176 | 
             
            <tr>
         | 
| 177 177 | 
             
            <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
         | 
| 178 | 
            -
            <td>The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> the comparison is within
         | 
| 179 | 
            -
            </td>
         | 
| 178 | 
            +
            <td>The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> the comparison is within</td>
         | 
| 180 179 | 
             
            </tr>
         | 
| 181 180 | 
             
            <tr>
         | 
| 182 181 | 
             
            <td><p><span class="term"><em class="parameter"><code>a</code></em> :</span></p></td>
         | 
| 183 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 182 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> in <em class="parameter"><code>model</code></em>
         | 
| 184 183 | 
             
            </td>
         | 
| 185 184 | 
             
            </tr>
         | 
| 186 185 | 
             
            <tr>
         | 
| 187 186 | 
             
            <td><p><span class="term"><em class="parameter"><code>b</code></em> :</span></p></td>
         | 
| 188 | 
            -
            <td>Another <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 187 | 
            +
            <td>Another <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> in <em class="parameter"><code>model</code></em>
         | 
| 189 188 | 
             
            </td>
         | 
| 190 189 | 
             
            </tr>
         | 
| 191 190 | 
             
            <tr>
         | 
| @@ -197,14 +196,14 @@ for the "price" column could be one which returns | |
| 197 196 | 
             
            <tr>
         | 
| 198 197 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 199 198 | 
             
            <td>a negative integer, zero or a positive integer depending on whether
         | 
| 200 | 
            -
             | 
| 199 | 
            +
            <em class="parameter"><code>a</code></em> sorts before, with or after <em class="parameter"><code>b</code></em>
         | 
| 201 200 | 
             
            </td>
         | 
| 202 201 | 
             
            </tr>
         | 
| 203 202 | 
             
            </tbody>
         | 
| 204 203 | 
             
            </table></div>
         | 
| 205 204 | 
             
            </div>
         | 
| 206 205 | 
             
            <hr>
         | 
| 207 | 
            -
            <div class="refsect2" | 
| 206 | 
            +
            <div class="refsect2">
         | 
| 208 207 | 
             
            <a name="gtk-tree-sortable-sort-column-changed"></a><h3>gtk_tree_sortable_sort_column_changed ()</h3>
         | 
| 209 208 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_sortable_sort_column_changed
         | 
| 210 209 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> *sortable</code></em>);</pre>
         | 
| @@ -221,7 +220,7 @@ Emits a <a class="link" href="GtkTreeSortable.html#GtkTreeSortable-sort-column-c | |
| 221 220 | 
             
            </table></div>
         | 
| 222 221 | 
             
            </div>
         | 
| 223 222 | 
             
            <hr>
         | 
| 224 | 
            -
            <div class="refsect2" | 
| 223 | 
            +
            <div class="refsect2">
         | 
| 225 224 | 
             
            <a name="gtk-tree-sortable-get-sort-column-id"></a><h3>gtk_tree_sortable_get_sort_column_id ()</h3>
         | 
| 226 225 | 
             
            <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_sortable_get_sort_column_id
         | 
| 227 226 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> *sortable</code></em>,
         | 
| @@ -243,25 +242,23 @@ order. It returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Sta | |
| 243 242 | 
             
            </tr>
         | 
| 244 243 | 
             
            <tr>
         | 
| 245 244 | 
             
            <td><p><span class="term"><em class="parameter"><code>sort_column_id</code></em> :</span></p></td>
         | 
| 246 | 
            -
            <td>The sort column id to be filled in
         | 
| 247 | 
            -
            </td>
         | 
| 245 | 
            +
            <td>The sort column id to be filled in</td>
         | 
| 248 246 | 
             
            </tr>
         | 
| 249 247 | 
             
            <tr>
         | 
| 250 248 | 
             
            <td><p><span class="term"><em class="parameter"><code>order</code></em> :</span></p></td>
         | 
| 251 | 
            -
            <td>The <a class="link" href="gtk-Standard-Enumerations.html#GtkSortType" title="enum GtkSortType"><span class="type">GtkSortType</span></a> to be filled in
         | 
| 252 | 
            -
            </td>
         | 
| 249 | 
            +
            <td>The <a class="link" href="gtk-Standard-Enumerations.html#GtkSortType" title="enum GtkSortType"><span class="type">GtkSortType</span></a> to be filled in</td>
         | 
| 253 250 | 
             
            </tr>
         | 
| 254 251 | 
             
            <tr>
         | 
| 255 252 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 256 | 
            -
            <td> | 
| 257 | 
            -
             | 
| 258 | 
            -
             | 
| 253 | 
            +
            <td>
         | 
| 254 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the sort column is not one of the special sort
         | 
| 255 | 
            +
            column ids.</td>
         | 
| 259 256 | 
             
            </tr>
         | 
| 260 257 | 
             
            </tbody>
         | 
| 261 258 | 
             
            </table></div>
         | 
| 262 259 | 
             
            </div>
         | 
| 263 260 | 
             
            <hr>
         | 
| 264 | 
            -
            <div class="refsect2" | 
| 261 | 
            +
            <div class="refsect2">
         | 
| 265 262 | 
             
            <a name="gtk-tree-sortable-set-sort-column-id"></a><h3>gtk_tree_sortable_set_sort_column_id ()</h3>
         | 
| 266 263 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_sortable_set_sort_column_id
         | 
| 267 264 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> *sortable</code></em>,
         | 
| @@ -298,19 +295,17 @@ a regular column id, or one of the following special values: | |
| 298 295 | 
             
            </tr>
         | 
| 299 296 | 
             
            <tr>
         | 
| 300 297 | 
             
            <td><p><span class="term"><em class="parameter"><code>sort_column_id</code></em> :</span></p></td>
         | 
| 301 | 
            -
            <td>the sort column id to set
         | 
| 302 | 
            -
            </td>
         | 
| 298 | 
            +
            <td>the sort column id to set</td>
         | 
| 303 299 | 
             
            </tr>
         | 
| 304 300 | 
             
            <tr>
         | 
| 305 301 | 
             
            <td><p><span class="term"><em class="parameter"><code>order</code></em> :</span></p></td>
         | 
| 306 | 
            -
            <td>The sort order of the column
         | 
| 307 | 
            -
            </td>
         | 
| 302 | 
            +
            <td>The sort order of the column</td>
         | 
| 308 303 | 
             
            </tr>
         | 
| 309 304 | 
             
            </tbody>
         | 
| 310 305 | 
             
            </table></div>
         | 
| 311 306 | 
             
            </div>
         | 
| 312 307 | 
             
            <hr>
         | 
| 313 | 
            -
            <div class="refsect2" | 
| 308 | 
            +
            <div class="refsect2">
         | 
| 314 309 | 
             
            <a name="gtk-tree-sortable-set-sort-func"></a><h3>gtk_tree_sortable_set_sort_func ()</h3>
         | 
| 315 310 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_sortable_set_sort_func     (<em class="parameter"><code><a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> *sortable</code></em>,
         | 
| 316 311 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> sort_column_id</code></em>,
         | 
| @@ -332,29 +327,27 @@ the model will sort using this function. | |
| 332 327 | 
             
            </tr>
         | 
| 333 328 | 
             
            <tr>
         | 
| 334 329 | 
             
            <td><p><span class="term"><em class="parameter"><code>sort_column_id</code></em> :</span></p></td>
         | 
| 335 | 
            -
            <td>the sort column id to set the function for
         | 
| 336 | 
            -
            </td>
         | 
| 330 | 
            +
            <td>the sort column id to set the function for</td>
         | 
| 337 331 | 
             
            </tr>
         | 
| 338 332 | 
             
            <tr>
         | 
| 339 333 | 
             
            <td><p><span class="term"><em class="parameter"><code>sort_func</code></em> :</span></p></td>
         | 
| 340 | 
            -
            <td>The comparison function
         | 
| 341 | 
            -
            </td>
         | 
| 334 | 
            +
            <td>The comparison function</td>
         | 
| 342 335 | 
             
            </tr>
         | 
| 343 336 | 
             
            <tr>
         | 
| 344 337 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 345 | 
            -
            <td> | 
| 338 | 
            +
            <td>User data to pass to <em class="parameter"><code>sort_func</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 346 339 | 
             
            </td>
         | 
| 347 340 | 
             
            </tr>
         | 
| 348 341 | 
             
            <tr>
         | 
| 349 342 | 
             
            <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
         | 
| 350 | 
            -
            <td> | 
| 343 | 
            +
            <td>Destroy notifier of <em class="parameter"><code>user_data</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 351 344 | 
             
            </td>
         | 
| 352 345 | 
             
            </tr>
         | 
| 353 346 | 
             
            </tbody>
         | 
| 354 347 | 
             
            </table></div>
         | 
| 355 348 | 
             
            </div>
         | 
| 356 349 | 
             
            <hr>
         | 
| 357 | 
            -
            <div class="refsect2" | 
| 350 | 
            +
            <div class="refsect2">
         | 
| 358 351 | 
             
            <a name="gtk-tree-sortable-set-default-sort-func"></a><h3>gtk_tree_sortable_set_default_sort_func ()</h3>
         | 
| 359 352 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_sortable_set_default_sort_func
         | 
| 360 353 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> *sortable</code></em>,
         | 
| @@ -383,24 +376,23 @@ is <code class="literal">GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID</code>, the mo | |
| 383 376 | 
             
            </tr>
         | 
| 384 377 | 
             
            <tr>
         | 
| 385 378 | 
             
            <td><p><span class="term"><em class="parameter"><code>sort_func</code></em> :</span></p></td>
         | 
| 386 | 
            -
            <td>The comparison function
         | 
| 387 | 
            -
            </td>
         | 
| 379 | 
            +
            <td>The comparison function</td>
         | 
| 388 380 | 
             
            </tr>
         | 
| 389 381 | 
             
            <tr>
         | 
| 390 382 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| 391 | 
            -
            <td> | 
| 383 | 
            +
            <td>User data to pass to <em class="parameter"><code>sort_func</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 392 384 | 
             
            </td>
         | 
| 393 385 | 
             
            </tr>
         | 
| 394 386 | 
             
            <tr>
         | 
| 395 387 | 
             
            <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
         | 
| 396 | 
            -
            <td> | 
| 388 | 
            +
            <td>Destroy notifier of <em class="parameter"><code>user_data</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 397 389 | 
             
            </td>
         | 
| 398 390 | 
             
            </tr>
         | 
| 399 391 | 
             
            </tbody>
         | 
| 400 392 | 
             
            </table></div>
         | 
| 401 393 | 
             
            </div>
         | 
| 402 394 | 
             
            <hr>
         | 
| 403 | 
            -
            <div class="refsect2" | 
| 395 | 
            +
            <div class="refsect2">
         | 
| 404 396 | 
             
            <a name="gtk-tree-sortable-has-default-sort-func"></a><h3>gtk_tree_sortable_has_default_sort_func ()</h3>
         | 
| 405 397 | 
             
            <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_sortable_has_default_sort_func
         | 
| 406 398 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> *sortable</code></em>);</pre>
         | 
| @@ -419,19 +411,19 @@ go back to the default state, or not. | |
| 419 411 | 
             
            </tr>
         | 
| 420 412 | 
             
            <tr>
         | 
| 421 413 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 422 | 
            -
            <td> | 
| 423 | 
            -
            </td>
         | 
| 414 | 
            +
            <td>
         | 
| 415 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the model has a default sort function</td>
         | 
| 424 416 | 
             
            </tr>
         | 
| 425 417 | 
             
            </tbody>
         | 
| 426 418 | 
             
            </table></div>
         | 
| 427 419 | 
             
            </div>
         | 
| 428 420 | 
             
            </div>
         | 
| 429 | 
            -
            <div class="refsect1" | 
| 421 | 
            +
            <div class="refsect1">
         | 
| 430 422 | 
             
            <a name="GtkTreeSortable.signal-details"></a><h2>Signal Details</h2>
         | 
| 431 | 
            -
            <div class="refsect2" | 
| 423 | 
            +
            <div class="refsect2">
         | 
| 432 424 | 
             
            <a name="GtkTreeSortable-sort-column-changed"></a><h3>The <code class="literal">"sort-column-changed"</code> signal</h3>
         | 
| 433 425 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> *sortable,
         | 
| 434 | 
            -
                                                                    <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>
         | 
| 426 | 
            +
                                                                    <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>
         | 
| 435 427 | 
             
            <p>
         | 
| 436 428 | 
             
            The ::sort-column-changed signal is emitted when the sort column
         | 
| 437 429 | 
             
            or sort order of <em class="parameter"><code>sortable</code></em> is changed. The signal is emitted before
         | 
| @@ -442,8 +434,7 @@ the contents of <em class="parameter"><code>sortable</code></em> are resorted. | |
| 442 434 | 
             
            <tbody>
         | 
| 443 435 | 
             
            <tr>
         | 
| 444 436 | 
             
            <td><p><span class="term"><em class="parameter"><code>sortable</code></em> :</span></p></td>
         | 
| 445 | 
            -
            <td>the object on which the signal is emitted
         | 
| 446 | 
            -
            </td>
         | 
| 437 | 
            +
            <td>the object on which the signal is emitted</td>
         | 
| 447 438 | 
             
            </tr>
         | 
| 448 439 | 
             
            <tr>
         | 
| 449 440 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -453,7 +444,7 @@ the contents of <em class="parameter"><code>sortable</code></em> are resorted. | |
| 453 444 | 
             
            </table></div>
         | 
| 454 445 | 
             
            </div>
         | 
| 455 446 | 
             
            </div>
         | 
| 456 | 
            -
            <div class="refsect1" | 
| 447 | 
            +
            <div class="refsect1">
         | 
| 457 448 | 
             
            <a name="GtkTreeSortable.see-also"></a><h2>See Also</h2>
         | 
| 458 449 | 
             
            <p>
         | 
| 459 450 | 
             
            <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>
         | 
| @@ -462,6 +453,6 @@ the contents of <em class="parameter"><code>sortable</code></em> are resorted. | |
| 462 453 | 
             
            </div>
         | 
| 463 454 | 
             
            <div class="footer">
         | 
| 464 455 | 
             
            <hr>
         | 
| 465 | 
            -
                      Generated by GTK-Doc V1. | 
| 456 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 466 457 | 
             
            </body>
         | 
| 467 458 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>GtkTreeStore</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="GtkListStore.html" title="GtkListStore">
         | 
| 10 10 | 
             
            <link rel="next" href="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
         | 
| 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="GtkListStore.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="MenusAndCombos.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 22 22 | 
             
            </tr>
         | 
| 23 23 | 
             
            <tr><td colspan="5" class="shortcuts">
         | 
| @@ -30,7 +30,7 @@ | |
| 30 30 | 
             
                              <a href="#GtkTreeStore.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
         | 
| 31 31 | 
             
            </td></tr>
         | 
| 32 32 | 
             
            </table>
         | 
| 33 | 
            -
            <div class="refentry" | 
| 33 | 
            +
            <div class="refentry">
         | 
| 34 34 | 
             
            <a name="GtkTreeStore"></a><div class="titlepage"></div>
         | 
| 35 35 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 36 36 | 
             
            <td valign="top">
         | 
| @@ -39,12 +39,12 @@ | |
| 39 39 | 
             
            </td>
         | 
| 40 40 | 
             
            <td valign="top" align="right"></td>
         | 
| 41 41 | 
             
            </tr></table></div>
         | 
| 42 | 
            -
            <div class="refsynopsisdiv" | 
| 42 | 
            +
            <div class="refsynopsisdiv">
         | 
| 43 43 | 
             
            <a name="GtkTreeStore.synopsis"></a><h2>Synopsis</h2>
         | 
| 44 44 | 
             
            <pre class="synopsis">
         | 
| 45 45 | 
             
            #include <gtk/gtk.h>
         | 
| 46 46 |  | 
| 47 | 
            -
             | 
| 47 | 
            +
            struct              <a class="link" href="GtkTreeStore.html#GtkTreeStore-struct" title="struct GtkTreeStore">GtkTreeStore</a>;
         | 
| 48 48 | 
             
            <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="returnvalue">GtkTreeStore</span></a> *      <a class="link" href="GtkTreeStore.html#gtk-tree-store-new" title="gtk_tree_store_new ()">gtk_tree_store_new</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> n_columns</code></em>,
         | 
| 49 49 | 
             
                                                                     <em class="parameter"><code>...</code></em>);
         | 
| 50 50 | 
             
            <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="returnvalue">GtkTreeStore</span></a> *      <a class="link" href="GtkTreeStore.html#gtk-tree-store-newv" title="gtk_tree_store_newv ()">gtk_tree_store_newv</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> n_columns</code></em>,
         | 
| @@ -53,88 +53,88 @@ | |
| 53 53 | 
             
                                                                     <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_columns</code></em>,
         | 
| 54 54 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> *types</code></em>);
         | 
| 55 55 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-value" title="gtk_tree_store_set_value ()">gtk_tree_store_set_value</a>            (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 56 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 56 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 57 57 | 
             
                                                                     <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>,
         | 
| 58 58 | 
             
                                                                     <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>);
         | 
| 59 59 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree_store_set ()">gtk_tree_store_set</a>                  (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 60 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 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>...</code></em>);
         | 
| 62 62 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-valist" title="gtk_tree_store_set_valist ()">gtk_tree_store_set_valist</a>           (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 63 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 63 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 64 64 | 
             
                                                                     <em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
         | 
| 65 65 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-valuesv" title="gtk_tree_store_set_valuesv ()">gtk_tree_store_set_valuesv</a>          (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 66 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 66 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 67 67 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *columns</code></em>,
         | 
| 68 68 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *values</code></em>,
         | 
| 69 69 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_values</code></em>);
         | 
| 70 70 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeStore.html#gtk-tree-store-remove" title="gtk_tree_store_remove ()">gtk_tree_store_remove</a>               (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 71 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 71 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 72 72 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert" title="gtk_tree_store_insert ()">gtk_tree_store_insert</a>               (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 73 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 74 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 73 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 74 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 75 75 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);
         | 
| 76 76 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-before" title="gtk_tree_store_insert_before ()">gtk_tree_store_insert_before</a>        (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 77 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 78 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 79 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 77 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 78 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 79 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sibling</code></em>);
         | 
| 80 80 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-after" title="gtk_tree_store_insert_after ()">gtk_tree_store_insert_after</a>         (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 81 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 82 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 83 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 81 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 82 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 83 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sibling</code></em>);
         | 
| 84 84 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-with-values" title="gtk_tree_store_insert_with_values ()">gtk_tree_store_insert_with_values</a>   (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 85 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 86 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 85 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 86 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 87 87 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>,
         | 
| 88 88 | 
             
                                                                     <em class="parameter"><code>...</code></em>);
         | 
| 89 89 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-with-valuesv" title="gtk_tree_store_insert_with_valuesv ()">gtk_tree_store_insert_with_valuesv</a>  (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 90 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 91 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 90 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 91 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 92 92 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>,
         | 
| 93 93 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *columns</code></em>,
         | 
| 94 94 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *values</code></em>,
         | 
| 95 95 | 
             
                                                                     <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_values</code></em>);
         | 
| 96 96 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-prepend" title="gtk_tree_store_prepend ()">gtk_tree_store_prepend</a>              (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 97 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 98 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 97 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 98 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);
         | 
| 99 99 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-append" title="gtk_tree_store_append ()">gtk_tree_store_append</a>               (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 100 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 101 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 100 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 101 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);
         | 
| 102 102 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeStore.html#gtk-tree-store-is-ancestor" title="gtk_tree_store_is_ancestor ()">gtk_tree_store_is_ancestor</a>          (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 103 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 104 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 103 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 104 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *descendant</code></em>);
         | 
| 105 105 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-iter-depth" title="gtk_tree_store_iter_depth ()">gtk_tree_store_iter_depth</a>           (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 106 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 106 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 107 107 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-clear" title="gtk_tree_store_clear ()">gtk_tree_store_clear</a>                (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>);
         | 
| 108 108 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="GtkTreeStore.html#gtk-tree-store-iter-is-valid" title="gtk_tree_store_iter_is_valid ()">gtk_tree_store_iter_is_valid</a>        (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 109 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 109 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
         | 
| 110 110 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-reorder" title="gtk_tree_store_reorder ()">gtk_tree_store_reorder</a>              (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 111 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 111 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 112 112 | 
             
                                                                     <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>);
         | 
| 113 113 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-swap" title="gtk_tree_store_swap ()">gtk_tree_store_swap</a>                 (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 114 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 115 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 114 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *a</code></em>,
         | 
| 115 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *b</code></em>);
         | 
| 116 116 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-move-before" title="gtk_tree_store_move_before ()">gtk_tree_store_move_before</a>          (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 117 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 118 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 117 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 118 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *position</code></em>);
         | 
| 119 119 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkTreeStore.html#gtk-tree-store-move-after" title="gtk_tree_store_move_after ()">gtk_tree_store_move_after</a>           (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 120 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 121 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 120 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 121 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *position</code></em>);
         | 
| 122 122 | 
             
            </pre>
         | 
| 123 123 | 
             
            </div>
         | 
| 124 | 
            -
            <div class="refsect1" | 
| 124 | 
            +
            <div class="refsect1">
         | 
| 125 125 | 
             
            <a name="GtkTreeStore.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 126 126 | 
             
            <pre class="synopsis">
         | 
| 127 127 | 
             
              <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| 128 128 | 
             
               +----GtkTreeStore
         | 
| 129 129 | 
             
            </pre>
         | 
| 130 130 | 
             
            </div>
         | 
| 131 | 
            -
            <div class="refsect1" | 
| 131 | 
            +
            <div class="refsect1">
         | 
| 132 132 | 
             
            <a name="GtkTreeStore.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
         | 
| 133 133 | 
             
            <p>
         | 
| 134 134 | 
             
            GtkTreeStore implements
         | 
| 135 135 | 
             
             <a class="link" href="GtkTreeModel.html" title="GtkTreeModel">GtkTreeModel</a>,  <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSource">GtkTreeDragSource</a>,  <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragDest">GtkTreeDragDest</a>,  <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable">GtkTreeSortable</a> and  <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
         | 
| 136 136 | 
             
            </div>
         | 
| 137 | 
            -
            <div class="refsect1" | 
| 137 | 
            +
            <div class="refsect1">
         | 
| 138 138 | 
             
            <a name="GtkTreeStore.description"></a><h2>Description</h2>
         | 
| 139 139 | 
             
            <p>
         | 
| 140 140 | 
             
            The <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> object is a list model for use with a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>
         | 
| @@ -144,7 +144,7 @@ can use all of the methods available there.  It also implements the | |
| 144 144 | 
             
            it also implements the tree <GTKDOCLINK HREF="gtktreednd">drag and
         | 
| 145 145 | 
             
            drop</GTKDOCLINK> interfaces.
         | 
| 146 146 | 
             
            </p>
         | 
| 147 | 
            -
            <div class="refsect2" | 
| 147 | 
            +
            <div class="refsect2">
         | 
| 148 148 | 
             
            <a name="GtkTreeStore-BUILDER-UI"></a><h3>GtkTreeStore as GtkBuildable</h3>
         | 
| 149 149 | 
             
            <p>
         | 
| 150 150 | 
             
            The GtkTreeStore implementation of the GtkBuildable interface allows
         | 
| @@ -153,7 +153,7 @@ contain multiple <column> elements, each specifying one model | |
| 153 153 | 
             
            column. The "type" attribute specifies the data type for the column.
         | 
| 154 154 | 
             
            </p>
         | 
| 155 155 | 
             
            <div class="example">
         | 
| 156 | 
            -
            <a name=" | 
| 156 | 
            +
            <a name="id1099125"></a><p class="title"><b>Example 29. A UI Definition fragment for a tree store</b></p>
         | 
| 157 157 | 
             
            <div class="example-contents">
         | 
| 158 158 | 
             
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| 159 159 | 
             
                <tbody>
         | 
| @@ -181,16 +181,16 @@ column. The "type" attribute specifies the data type for the column. | |
| 181 181 | 
             
            <br class="example-break">
         | 
| 182 182 | 
             
            </div>
         | 
| 183 183 | 
             
            </div>
         | 
| 184 | 
            -
            <div class="refsect1" | 
| 184 | 
            +
            <div class="refsect1">
         | 
| 185 185 | 
             
            <a name="GtkTreeStore.details"></a><h2>Details</h2>
         | 
| 186 | 
            -
            <div class="refsect2" | 
| 187 | 
            -
            <a name="GtkTreeStore-struct"></a><h3>GtkTreeStore</h3>
         | 
| 188 | 
            -
            <pre class="programlisting"> | 
| 186 | 
            +
            <div class="refsect2">
         | 
| 187 | 
            +
            <a name="GtkTreeStore-struct"></a><h3>struct GtkTreeStore</h3>
         | 
| 188 | 
            +
            <pre class="programlisting">struct GtkTreeStore;</pre>
         | 
| 189 189 | 
             
            <p>
         | 
| 190 190 | 
             
            </p>
         | 
| 191 191 | 
             
            </div>
         | 
| 192 192 | 
             
            <hr>
         | 
| 193 | 
            -
            <div class="refsect2" | 
| 193 | 
            +
            <div class="refsect2">
         | 
| 194 194 | 
             
            <a name="gtk-tree-store-new"></a><h3>gtk_tree_store_new ()</h3>
         | 
| 195 195 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="returnvalue">GtkTreeStore</span></a> *      gtk_tree_store_new                  (<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_columns</code></em>,
         | 
| 196 196 | 
             
                                                                     <em class="parameter"><code>...</code></em>);</pre>
         | 
| @@ -202,31 +202,29 @@ are supported. | |
| 202 202 | 
             
            <p>
         | 
| 203 203 | 
             
            As an example, <code class="literal">gtk_tree_store_new (3, G_TYPE_INT, G_TYPE_STRING,
         | 
| 204 204 | 
             
            GDK_TYPE_PIXBUF);</code> will create a new <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> with three columns, of type
         | 
| 205 | 
            -
            <span class="type">int</span>, <span class="type">string</span> and <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 205 | 
            +
            <span class="type">int</span>, <span class="type">string</span> and <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> respectively.
         | 
| 206 206 | 
             
            </p>
         | 
| 207 207 | 
             
            <div class="variablelist"><table border="0">
         | 
| 208 208 | 
             
            <col align="left" valign="top">
         | 
| 209 209 | 
             
            <tbody>
         | 
| 210 210 | 
             
            <tr>
         | 
| 211 211 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_columns</code></em> :</span></p></td>
         | 
| 212 | 
            -
            <td>number of columns in the tree store
         | 
| 213 | 
            -
            </td>
         | 
| 212 | 
            +
            <td>number of columns in the tree store</td>
         | 
| 214 213 | 
             
            </tr>
         | 
| 215 214 | 
             
            <tr>
         | 
| 216 215 | 
             
            <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
         | 
| 217 | 
            -
            <td>all <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> types for the columns, from first to last
         | 
| 218 | 
            -
            </td>
         | 
| 216 | 
            +
            <td>all <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> types for the columns, from first to last</td>
         | 
| 219 217 | 
             
            </tr>
         | 
| 220 218 | 
             
            <tr>
         | 
| 221 219 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 222 | 
            -
            <td> | 
| 220 | 
            +
            <td>a new <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
         | 
| 223 221 | 
             
            </td>
         | 
| 224 222 | 
             
            </tr>
         | 
| 225 223 | 
             
            </tbody>
         | 
| 226 224 | 
             
            </table></div>
         | 
| 227 225 | 
             
            </div>
         | 
| 228 226 | 
             
            <hr>
         | 
| 229 | 
            -
            <div class="refsect2" | 
| 227 | 
            +
            <div class="refsect2">
         | 
| 230 228 | 
             
            <a name="gtk-tree-store-newv"></a><h3>gtk_tree_store_newv ()</h3>
         | 
| 231 229 | 
             
            <pre class="programlisting"><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="returnvalue">GtkTreeStore</span></a> *      gtk_tree_store_newv                 (<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_columns</code></em>,
         | 
| 232 230 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> *types</code></em>);</pre>
         | 
| @@ -238,24 +236,23 @@ Non vararg creation function.  Used primarily by language bindings. | |
| 238 236 | 
             
            <tbody>
         | 
| 239 237 | 
             
            <tr>
         | 
| 240 238 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_columns</code></em> :</span></p></td>
         | 
| 241 | 
            -
            <td>number of columns in the tree store
         | 
| 242 | 
            -
            </td>
         | 
| 239 | 
            +
            <td>number of columns in the tree store</td>
         | 
| 243 240 | 
             
            </tr>
         | 
| 244 241 | 
             
            <tr>
         | 
| 245 242 | 
             
            <td><p><span class="term"><em class="parameter"><code>types</code></em> :</span></p></td>
         | 
| 246 | 
            -
            <td> | 
| 243 | 
            +
            <td>an array of <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> types for the columns, from first to last. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_columns]</span>
         | 
| 247 244 | 
             
            </td>
         | 
| 248 245 | 
             
            </tr>
         | 
| 249 246 | 
             
            <tr>
         | 
| 250 247 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 251 | 
            -
            <td> | 
| 248 | 
            +
            <td>a new <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
         | 
| 252 249 | 
             
            </td>
         | 
| 253 250 | 
             
            </tr>
         | 
| 254 251 | 
             
            </tbody>
         | 
| 255 252 | 
             
            </table></div>
         | 
| 256 253 | 
             
            </div>
         | 
| 257 254 | 
             
            <hr>
         | 
| 258 | 
            -
            <div class="refsect2" | 
| 255 | 
            +
            <div class="refsect2">
         | 
| 259 256 | 
             
            <a name="gtk-tree-store-set-column-types"></a><h3>gtk_tree_store_set_column_types ()</h3>
         | 
| 260 257 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_set_column_types     (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 261 258 | 
             
                                                                     <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_columns</code></em>,
         | 
| @@ -276,22 +273,21 @@ or a method on the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel" | |
| 276 273 | 
             
            </tr>
         | 
| 277 274 | 
             
            <tr>
         | 
| 278 275 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_columns</code></em> :</span></p></td>
         | 
| 279 | 
            -
            <td>Number of columns for the tree store
         | 
| 280 | 
            -
            </td>
         | 
| 276 | 
            +
            <td>Number of columns for the tree store</td>
         | 
| 281 277 | 
             
            </tr>
         | 
| 282 278 | 
             
            <tr>
         | 
| 283 279 | 
             
            <td><p><span class="term"><em class="parameter"><code>types</code></em> :</span></p></td>
         | 
| 284 | 
            -
            <td> | 
| 280 | 
            +
            <td>An array of <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> types, one for each column. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_columns]</span>
         | 
| 285 281 | 
             
            </td>
         | 
| 286 282 | 
             
            </tr>
         | 
| 287 283 | 
             
            </tbody>
         | 
| 288 284 | 
             
            </table></div>
         | 
| 289 285 | 
             
            </div>
         | 
| 290 286 | 
             
            <hr>
         | 
| 291 | 
            -
            <div class="refsect2" | 
| 287 | 
            +
            <div class="refsect2">
         | 
| 292 288 | 
             
            <a name="gtk-tree-store-set-value"></a><h3>gtk_tree_store_set_value ()</h3>
         | 
| 293 289 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_set_value            (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 294 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 290 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 295 291 | 
             
                                                                     <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>,
         | 
| 296 292 | 
             
                                                                     <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>
         | 
| 297 293 | 
             
            <p>
         | 
| @@ -309,27 +305,24 @@ column. | |
| 309 305 | 
             
            </tr>
         | 
| 310 306 | 
             
            <tr>
         | 
| 311 307 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 312 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 313 | 
            -
            </td>
         | 
| 308 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> for the row being modified</td>
         | 
| 314 309 | 
             
            </tr>
         | 
| 315 310 | 
             
            <tr>
         | 
| 316 311 | 
             
            <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
         | 
| 317 | 
            -
            <td>column number to modify
         | 
| 318 | 
            -
            </td>
         | 
| 312 | 
            +
            <td>column number to modify</td>
         | 
| 319 313 | 
             
            </tr>
         | 
| 320 314 | 
             
            <tr>
         | 
| 321 315 | 
             
            <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
         | 
| 322 | 
            -
            <td>new value for the cell
         | 
| 323 | 
            -
            </td>
         | 
| 316 | 
            +
            <td>new value for the cell</td>
         | 
| 324 317 | 
             
            </tr>
         | 
| 325 318 | 
             
            </tbody>
         | 
| 326 319 | 
             
            </table></div>
         | 
| 327 320 | 
             
            </div>
         | 
| 328 321 | 
             
            <hr>
         | 
| 329 | 
            -
            <div class="refsect2" | 
| 322 | 
            +
            <div class="refsect2">
         | 
| 330 323 | 
             
            <a name="gtk-tree-store-set"></a><h3>gtk_tree_store_set ()</h3>
         | 
| 331 324 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_set                  (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 332 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 325 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 333 326 | 
             
                                                                     <em class="parameter"><code>...</code></em>);</pre>
         | 
| 334 327 | 
             
            <p>
         | 
| 335 328 | 
             
            Sets the value of one or more cells in the row referenced by <em class="parameter"><code>iter</code></em>.
         | 
| @@ -353,22 +346,20 @@ will be copied if it is a <a href="http://library.gnome.org/devel/gobject/unstab | |
| 353 346 | 
             
            </tr>
         | 
| 354 347 | 
             
            <tr>
         | 
| 355 348 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 356 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 357 | 
            -
            </td>
         | 
| 349 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> for the row being modified</td>
         | 
| 358 350 | 
             
            </tr>
         | 
| 359 351 | 
             
            <tr>
         | 
| 360 352 | 
             
            <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
         | 
| 361 | 
            -
            <td>pairs of column number and value, terminated with -1
         | 
| 362 | 
            -
            </td>
         | 
| 353 | 
            +
            <td>pairs of column number and value, terminated with -1</td>
         | 
| 363 354 | 
             
            </tr>
         | 
| 364 355 | 
             
            </tbody>
         | 
| 365 356 | 
             
            </table></div>
         | 
| 366 357 | 
             
            </div>
         | 
| 367 358 | 
             
            <hr>
         | 
| 368 | 
            -
            <div class="refsect2" | 
| 359 | 
            +
            <div class="refsect2">
         | 
| 369 360 | 
             
            <a name="gtk-tree-store-set-valist"></a><h3>gtk_tree_store_set_valist ()</h3>
         | 
| 370 361 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_set_valist           (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 371 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 362 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 372 363 | 
             
                                                                     <em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
         | 
| 373 364 | 
             
            <p>
         | 
| 374 365 | 
             
            See <a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree_store_set ()"><code class="function">gtk_tree_store_set()</code></a>; this version takes a <span class="type">va_list</span> for
         | 
| @@ -384,23 +375,21 @@ use by language bindings. | |
| 384 375 | 
             
            </tr>
         | 
| 385 376 | 
             
            <tr>
         | 
| 386 377 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 387 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 388 | 
            -
            </td>
         | 
| 378 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> for the row being modified</td>
         | 
| 389 379 | 
             
            </tr>
         | 
| 390 380 | 
             
            <tr>
         | 
| 391 381 | 
             
            <td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
         | 
| 392 382 | 
             
            <td>
         | 
| 393 | 
            -
            <span class="type">va_list</span> of column/value pairs
         | 
| 394 | 
            -
            </td>
         | 
| 383 | 
            +
            <span class="type">va_list</span> of column/value pairs</td>
         | 
| 395 384 | 
             
            </tr>
         | 
| 396 385 | 
             
            </tbody>
         | 
| 397 386 | 
             
            </table></div>
         | 
| 398 387 | 
             
            </div>
         | 
| 399 388 | 
             
            <hr>
         | 
| 400 | 
            -
            <div class="refsect2" | 
| 389 | 
            +
            <div class="refsect2">
         | 
| 401 390 | 
             
            <a name="gtk-tree-store-set-valuesv"></a><h3>gtk_tree_store_set_valuesv ()</h3>
         | 
| 402 391 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_set_valuesv          (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 403 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 392 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 404 393 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *columns</code></em>,
         | 
| 405 394 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *values</code></em>,
         | 
| 406 395 | 
             
                                                                     <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_values</code></em>);</pre>
         | 
| @@ -420,33 +409,31 @@ the number of columns to change is not known until run-time. | |
| 420 409 | 
             
            </tr>
         | 
| 421 410 | 
             
            <tr>
         | 
| 422 411 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 423 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 424 | 
            -
            </td>
         | 
| 412 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> for the row being modified</td>
         | 
| 425 413 | 
             
            </tr>
         | 
| 426 414 | 
             
            <tr>
         | 
| 427 415 | 
             
            <td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
         | 
| 428 | 
            -
            <td> | 
| 416 | 
            +
            <td>an array of column numbers. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values]</span>
         | 
| 429 417 | 
             
            </td>
         | 
| 430 418 | 
             
            </tr>
         | 
| 431 419 | 
             
            <tr>
         | 
| 432 420 | 
             
            <td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
         | 
| 433 | 
            -
            <td> | 
| 421 | 
            +
            <td>an array of GValues. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values]</span>
         | 
| 434 422 | 
             
            </td>
         | 
| 435 423 | 
             
            </tr>
         | 
| 436 424 | 
             
            <tr>
         | 
| 437 425 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_values</code></em> :</span></p></td>
         | 
| 438 | 
            -
            <td>the length of the <em class="parameter"><code>columns</code></em> and <em class="parameter"><code>values</code></em> arrays
         | 
| 439 | 
            -
            </td>
         | 
| 426 | 
            +
            <td>the length of the <em class="parameter"><code>columns</code></em> and <em class="parameter"><code>values</code></em> arrays</td>
         | 
| 440 427 | 
             
            </tr>
         | 
| 441 428 | 
             
            </tbody>
         | 
| 442 429 | 
             
            </table></div>
         | 
| 443 430 | 
             
            <p class="since">Since 2.12</p>
         | 
| 444 431 | 
             
            </div>
         | 
| 445 432 | 
             
            <hr>
         | 
| 446 | 
            -
            <div class="refsect2" | 
| 433 | 
            +
            <div class="refsect2">
         | 
| 447 434 | 
             
            <a name="gtk-tree-store-remove"></a><h3>gtk_tree_store_remove ()</h3>
         | 
| 448 435 | 
             
            <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_store_remove               (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 449 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 436 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 450 437 | 
             
            <p>
         | 
| 451 438 | 
             
            Removes <em class="parameter"><code>iter</code></em> from <em class="parameter"><code>tree_store</code></em>.  After being removed, <em class="parameter"><code>iter</code></em> is set to the
         | 
| 452 439 | 
             
            next valid row at that level, or invalidated if it previously pointed to the
         | 
| @@ -462,23 +449,23 @@ last one. | |
| 462 449 | 
             
            </tr>
         | 
| 463 450 | 
             
            <tr>
         | 
| 464 451 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 465 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 452 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
         | 
| 466 453 | 
             
            </td>
         | 
| 467 454 | 
             
            </tr>
         | 
| 468 455 | 
             
            <tr>
         | 
| 469 456 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 470 | 
            -
            <td> | 
| 471 | 
            -
            </td>
         | 
| 457 | 
            +
            <td>
         | 
| 458 | 
            +
            <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 still valid, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if not.</td>
         | 
| 472 459 | 
             
            </tr>
         | 
| 473 460 | 
             
            </tbody>
         | 
| 474 461 | 
             
            </table></div>
         | 
| 475 462 | 
             
            </div>
         | 
| 476 463 | 
             
            <hr>
         | 
| 477 | 
            -
            <div class="refsect2" | 
| 464 | 
            +
            <div class="refsect2">
         | 
| 478 465 | 
             
            <a name="gtk-tree-store-insert"></a><h3>gtk_tree_store_insert ()</h3>
         | 
| 479 466 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_insert               (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 480 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 481 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 467 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 468 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 482 469 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
         | 
| 483 470 | 
             
            <p>
         | 
| 484 471 | 
             
            Creates a new row at <em class="parameter"><code>position</code></em>.  If parent is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the row will be
         | 
| @@ -499,29 +486,28 @@ fill in values, you need to call <a class="link" href="GtkTreeStore.html#gtk-tre | |
| 499 486 | 
             
            </tr>
         | 
| 500 487 | 
             
            <tr>
         | 
| 501 488 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 502 | 
            -
            <td> | 
| 489 | 
            +
            <td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the new row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 503 490 | 
             
            </td>
         | 
| 504 491 | 
             
            </tr>
         | 
| 505 492 | 
             
            <tr>
         | 
| 506 493 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 507 | 
            -
            <td> | 
| 494 | 
            +
            <td>A valid <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>
         | 
| 508 495 | 
             
            </td>
         | 
| 509 496 | 
             
            </tr>
         | 
| 510 497 | 
             
            <tr>
         | 
| 511 498 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 512 | 
            -
            <td>position to insert the new row
         | 
| 513 | 
            -
            </td>
         | 
| 499 | 
            +
            <td>position to insert the new row</td>
         | 
| 514 500 | 
             
            </tr>
         | 
| 515 501 | 
             
            </tbody>
         | 
| 516 502 | 
             
            </table></div>
         | 
| 517 503 | 
             
            </div>
         | 
| 518 504 | 
             
            <hr>
         | 
| 519 | 
            -
            <div class="refsect2" | 
| 505 | 
            +
            <div class="refsect2">
         | 
| 520 506 | 
             
            <a name="gtk-tree-store-insert-before"></a><h3>gtk_tree_store_insert_before ()</h3>
         | 
| 521 507 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_insert_before        (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 522 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 523 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 524 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 508 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 509 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 510 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sibling</code></em>);</pre>
         | 
| 525 511 | 
             
            <p>
         | 
| 526 512 | 
             
            Inserts a new row before <em class="parameter"><code>sibling</code></em>.  If <em class="parameter"><code>sibling</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the row will
         | 
| 527 513 | 
             
            be appended to <em class="parameter"><code>parent</code></em> 's children.  If <em class="parameter"><code>parent</code></em> and <em class="parameter"><code>sibling</code></em> are <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then
         | 
| @@ -544,29 +530,29 @@ this function is called.  To fill in values, you need to call | |
| 544 530 | 
             
            </tr>
         | 
| 545 531 | 
             
            <tr>
         | 
| 546 532 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 547 | 
            -
            <td> | 
| 533 | 
            +
            <td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the new row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 548 534 | 
             
            </td>
         | 
| 549 535 | 
             
            </tr>
         | 
| 550 536 | 
             
            <tr>
         | 
| 551 537 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 552 | 
            -
            <td> | 
| 538 | 
            +
            <td>A valid <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>
         | 
| 553 539 | 
             
            </td>
         | 
| 554 540 | 
             
            </tr>
         | 
| 555 541 | 
             
            <tr>
         | 
| 556 542 | 
             
            <td><p><span class="term"><em class="parameter"><code>sibling</code></em> :</span></p></td>
         | 
| 557 | 
            -
            <td> | 
| 543 | 
            +
            <td>A valid <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>
         | 
| 558 544 | 
             
            </td>
         | 
| 559 545 | 
             
            </tr>
         | 
| 560 546 | 
             
            </tbody>
         | 
| 561 547 | 
             
            </table></div>
         | 
| 562 548 | 
             
            </div>
         | 
| 563 549 | 
             
            <hr>
         | 
| 564 | 
            -
            <div class="refsect2" | 
| 550 | 
            +
            <div class="refsect2">
         | 
| 565 551 | 
             
            <a name="gtk-tree-store-insert-after"></a><h3>gtk_tree_store_insert_after ()</h3>
         | 
| 566 552 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_insert_after         (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 567 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 568 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 569 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 553 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 554 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 555 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sibling</code></em>);</pre>
         | 
| 570 556 | 
             
            <p>
         | 
| 571 557 | 
             
            Inserts a new row after <em class="parameter"><code>sibling</code></em>.  If <em class="parameter"><code>sibling</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the row will be
         | 
| 572 558 | 
             
            prepended to <em class="parameter"><code>parent</code></em> 's children.  If <em class="parameter"><code>parent</code></em> and <em class="parameter"><code>sibling</code></em> are <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then
         | 
| @@ -589,28 +575,28 @@ this function is called.  To fill in values, you need to call | |
| 589 575 | 
             
            </tr>
         | 
| 590 576 | 
             
            <tr>
         | 
| 591 577 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 592 | 
            -
            <td> | 
| 578 | 
            +
            <td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the new row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 593 579 | 
             
            </td>
         | 
| 594 580 | 
             
            </tr>
         | 
| 595 581 | 
             
            <tr>
         | 
| 596 582 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 597 | 
            -
            <td> | 
| 583 | 
            +
            <td>A valid <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>
         | 
| 598 584 | 
             
            </td>
         | 
| 599 585 | 
             
            </tr>
         | 
| 600 586 | 
             
            <tr>
         | 
| 601 587 | 
             
            <td><p><span class="term"><em class="parameter"><code>sibling</code></em> :</span></p></td>
         | 
| 602 | 
            -
            <td> | 
| 588 | 
            +
            <td>A valid <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>
         | 
| 603 589 | 
             
            </td>
         | 
| 604 590 | 
             
            </tr>
         | 
| 605 591 | 
             
            </tbody>
         | 
| 606 592 | 
             
            </table></div>
         | 
| 607 593 | 
             
            </div>
         | 
| 608 594 | 
             
            <hr>
         | 
| 609 | 
            -
            <div class="refsect2" | 
| 595 | 
            +
            <div class="refsect2">
         | 
| 610 596 | 
             
            <a name="gtk-tree-store-insert-with-values"></a><h3>gtk_tree_store_insert_with_values ()</h3>
         | 
| 611 597 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_insert_with_values   (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 612 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 613 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 598 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 599 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 614 600 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>,
         | 
| 615 601 | 
             
                                                                     <em class="parameter"><code>...</code></em>);</pre>
         | 
| 616 602 | 
             
            <p>
         | 
| @@ -655,34 +641,32 @@ inserting rows in a sorted tree store. | |
| 655 641 | 
             
            </tr>
         | 
| 656 642 | 
             
            <tr>
         | 
| 657 643 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 658 | 
            -
            <td> | 
| 644 | 
            +
            <td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set the new row, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 659 645 | 
             
            </td>
         | 
| 660 646 | 
             
            </tr>
         | 
| 661 647 | 
             
            <tr>
         | 
| 662 648 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 663 | 
            -
            <td> | 
| 649 | 
            +
            <td>A valid <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>
         | 
| 664 650 | 
             
            </td>
         | 
| 665 651 | 
             
            </tr>
         | 
| 666 652 | 
             
            <tr>
         | 
| 667 653 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 668 | 
            -
            <td>position to insert the new row
         | 
| 669 | 
            -
            </td>
         | 
| 654 | 
            +
            <td>position to insert the new row</td>
         | 
| 670 655 | 
             
            </tr>
         | 
| 671 656 | 
             
            <tr>
         | 
| 672 657 | 
             
            <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
         | 
| 673 | 
            -
            <td>pairs of column number and value, terminated with -1
         | 
| 674 | 
            -
            </td>
         | 
| 658 | 
            +
            <td>pairs of column number and value, terminated with -1</td>
         | 
| 675 659 | 
             
            </tr>
         | 
| 676 660 | 
             
            </tbody>
         | 
| 677 661 | 
             
            </table></div>
         | 
| 678 662 | 
             
            <p class="since">Since 2.10</p>
         | 
| 679 663 | 
             
            </div>
         | 
| 680 664 | 
             
            <hr>
         | 
| 681 | 
            -
            <div class="refsect2" | 
| 665 | 
            +
            <div class="refsect2">
         | 
| 682 666 | 
             
            <a name="gtk-tree-store-insert-with-valuesv"></a><h3>gtk_tree_store_insert_with_valuesv ()</h3>
         | 
| 683 667 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_insert_with_valuesv  (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 684 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 685 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 668 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 669 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 686 670 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>,
         | 
| 687 671 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *columns</code></em>,
         | 
| 688 672 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *values</code></em>,
         | 
| @@ -702,44 +686,42 @@ function is mainly intended for language bindings. | |
| 702 686 | 
             
            </tr>
         | 
| 703 687 | 
             
            <tr>
         | 
| 704 688 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 705 | 
            -
            <td> | 
| 689 | 
            +
            <td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set the new row, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 706 690 | 
             
            </td>
         | 
| 707 691 | 
             
            </tr>
         | 
| 708 692 | 
             
            <tr>
         | 
| 709 693 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 710 | 
            -
            <td> | 
| 694 | 
            +
            <td>A valid <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>
         | 
| 711 695 | 
             
            </td>
         | 
| 712 696 | 
             
            </tr>
         | 
| 713 697 | 
             
            <tr>
         | 
| 714 698 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 715 | 
            -
            <td>position to insert the new row
         | 
| 716 | 
            -
            </td>
         | 
| 699 | 
            +
            <td>position to insert the new row</td>
         | 
| 717 700 | 
             
            </tr>
         | 
| 718 701 | 
             
            <tr>
         | 
| 719 702 | 
             
            <td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
         | 
| 720 | 
            -
            <td>an array of column numbers
         | 
| 703 | 
            +
            <td>an array of column numbers. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values]</span>
         | 
| 721 704 | 
             
            </td>
         | 
| 722 705 | 
             
            </tr>
         | 
| 723 706 | 
             
            <tr>
         | 
| 724 707 | 
             
            <td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
         | 
| 725 | 
            -
            <td>an array of GValues
         | 
| 708 | 
            +
            <td>an array of GValues. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values]</span>
         | 
| 726 709 | 
             
            </td>
         | 
| 727 710 | 
             
            </tr>
         | 
| 728 711 | 
             
            <tr>
         | 
| 729 712 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_values</code></em> :</span></p></td>
         | 
| 730 | 
            -
            <td>the length of the <em class="parameter"><code>columns</code></em> and <em class="parameter"><code>values</code></em> arrays
         | 
| 731 | 
            -
            </td>
         | 
| 713 | 
            +
            <td>the length of the <em class="parameter"><code>columns</code></em> and <em class="parameter"><code>values</code></em> arrays</td>
         | 
| 732 714 | 
             
            </tr>
         | 
| 733 715 | 
             
            </tbody>
         | 
| 734 716 | 
             
            </table></div>
         | 
| 735 717 | 
             
            <p class="since">Since 2.10</p>
         | 
| 736 718 | 
             
            </div>
         | 
| 737 719 | 
             
            <hr>
         | 
| 738 | 
            -
            <div class="refsect2" | 
| 720 | 
            +
            <div class="refsect2">
         | 
| 739 721 | 
             
            <a name="gtk-tree-store-prepend"></a><h3>gtk_tree_store_prepend ()</h3>
         | 
| 740 722 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_prepend              (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 741 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 742 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 723 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 724 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);</pre>
         | 
| 743 725 | 
             
            <p>
         | 
| 744 726 | 
             
            Prepends a new row to <em class="parameter"><code>tree_store</code></em>.  If <em class="parameter"><code>parent</code></em> is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then it will prepend
         | 
| 745 727 | 
             
            the new row before the first child of <em class="parameter"><code>parent</code></em>, otherwise it will prepend a row
         | 
| @@ -757,23 +739,23 @@ call <a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree | |
| 757 739 | 
             
            </tr>
         | 
| 758 740 | 
             
            <tr>
         | 
| 759 741 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 760 | 
            -
            <td> | 
| 742 | 
            +
            <td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the prepended row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 761 743 | 
             
            </td>
         | 
| 762 744 | 
             
            </tr>
         | 
| 763 745 | 
             
            <tr>
         | 
| 764 746 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 765 | 
            -
            <td> | 
| 747 | 
            +
            <td>A valid <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>
         | 
| 766 748 | 
             
            </td>
         | 
| 767 749 | 
             
            </tr>
         | 
| 768 750 | 
             
            </tbody>
         | 
| 769 751 | 
             
            </table></div>
         | 
| 770 752 | 
             
            </div>
         | 
| 771 753 | 
             
            <hr>
         | 
| 772 | 
            -
            <div class="refsect2" | 
| 754 | 
            +
            <div class="refsect2">
         | 
| 773 755 | 
             
            <a name="gtk-tree-store-append"></a><h3>gtk_tree_store_append ()</h3>
         | 
| 774 756 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_append               (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 775 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 776 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 757 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 758 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);</pre>
         | 
| 777 759 | 
             
            <p>
         | 
| 778 760 | 
             
            Appends a new row to <em class="parameter"><code>tree_store</code></em>.  If <em class="parameter"><code>parent</code></em> is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then it will append the
         | 
| 779 761 | 
             
            new row after the last child of <em class="parameter"><code>parent</code></em>, otherwise it will append a row to
         | 
| @@ -791,23 +773,23 @@ be empty after this function is called.  To fill in values, you need to call | |
| 791 773 | 
             
            </tr>
         | 
| 792 774 | 
             
            <tr>
         | 
| 793 775 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 794 | 
            -
            <td> | 
| 776 | 
            +
            <td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the appended row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 795 777 | 
             
            </td>
         | 
| 796 778 | 
             
            </tr>
         | 
| 797 779 | 
             
            <tr>
         | 
| 798 780 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 799 | 
            -
            <td> | 
| 781 | 
            +
            <td>A valid <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>
         | 
| 800 782 | 
             
            </td>
         | 
| 801 783 | 
             
            </tr>
         | 
| 802 784 | 
             
            </tbody>
         | 
| 803 785 | 
             
            </table></div>
         | 
| 804 786 | 
             
            </div>
         | 
| 805 787 | 
             
            <hr>
         | 
| 806 | 
            -
            <div class="refsect2" | 
| 788 | 
            +
            <div class="refsect2">
         | 
| 807 789 | 
             
            <a name="gtk-tree-store-is-ancestor"></a><h3>gtk_tree_store_is_ancestor ()</h3>
         | 
| 808 790 | 
             
            <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_store_is_ancestor          (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 809 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 810 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 791 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 792 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *descendant</code></em>);</pre>
         | 
| 811 793 | 
             
            <p>
         | 
| 812 794 | 
             
            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> is an ancestor of <em class="parameter"><code>descendant</code></em>.  That is, <em class="parameter"><code>iter</code></em> is the
         | 
| 813 795 | 
             
            parent (or grandparent or great-grandparent) of <em class="parameter"><code>descendant</code></em>.
         | 
| @@ -822,27 +804,28 @@ parent (or grandparent or great-grandparent) of <em class="parameter"><code>desc | |
| 822 804 | 
             
            </tr>
         | 
| 823 805 | 
             
            <tr>
         | 
| 824 806 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 825 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 807 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
         | 
| 826 808 | 
             
            </td>
         | 
| 827 809 | 
             
            </tr>
         | 
| 828 810 | 
             
            <tr>
         | 
| 829 811 | 
             
            <td><p><span class="term"><em class="parameter"><code>descendant</code></em> :</span></p></td>
         | 
| 830 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 812 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
         | 
| 831 813 | 
             
            </td>
         | 
| 832 814 | 
             
            </tr>
         | 
| 833 815 | 
             
            <tr>
         | 
| 834 816 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 835 | 
            -
            <td> | 
| 817 | 
            +
            <td>
         | 
| 818 | 
            +
            <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 an ancestor of <em class="parameter"><code>descendant</code></em>
         | 
| 836 819 | 
             
            </td>
         | 
| 837 820 | 
             
            </tr>
         | 
| 838 821 | 
             
            </tbody>
         | 
| 839 822 | 
             
            </table></div>
         | 
| 840 823 | 
             
            </div>
         | 
| 841 824 | 
             
            <hr>
         | 
| 842 | 
            -
            <div class="refsect2" | 
| 825 | 
            +
            <div class="refsect2">
         | 
| 843 826 | 
             
            <a name="gtk-tree-store-iter-depth"></a><h3>gtk_tree_store_iter_depth ()</h3>
         | 
| 844 827 | 
             
            <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_store_iter_depth           (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 845 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 828 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 846 829 | 
             
            <p>
         | 
| 847 830 | 
             
            Returns the depth of <em class="parameter"><code>iter</code></em>.  This will be 0 for anything on the root level, 1
         | 
| 848 831 | 
             
            for anything down a level, etc.
         | 
| @@ -857,19 +840,19 @@ for anything down a level, etc. | |
| 857 840 | 
             
            </tr>
         | 
| 858 841 | 
             
            <tr>
         | 
| 859 842 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 860 | 
            -
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 843 | 
            +
            <td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
         | 
| 861 844 | 
             
            </td>
         | 
| 862 845 | 
             
            </tr>
         | 
| 863 846 | 
             
            <tr>
         | 
| 864 847 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 865 | 
            -
            <td> | 
| 848 | 
            +
            <td>The depth of <em class="parameter"><code>iter</code></em>
         | 
| 866 849 | 
             
            </td>
         | 
| 867 850 | 
             
            </tr>
         | 
| 868 851 | 
             
            </tbody>
         | 
| 869 852 | 
             
            </table></div>
         | 
| 870 853 | 
             
            </div>
         | 
| 871 854 | 
             
            <hr>
         | 
| 872 | 
            -
            <div class="refsect2" | 
| 855 | 
            +
            <div class="refsect2">
         | 
| 873 856 | 
             
            <a name="gtk-tree-store-clear"></a><h3>gtk_tree_store_clear ()</h3>
         | 
| 874 857 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_clear                (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>);</pre>
         | 
| 875 858 | 
             
            <p>
         | 
| @@ -885,10 +868,10 @@ Removes all rows from <em class="parameter"><code>tree_store</code></em> | |
| 885 868 | 
             
            </table></div>
         | 
| 886 869 | 
             
            </div>
         | 
| 887 870 | 
             
            <hr>
         | 
| 888 | 
            -
            <div class="refsect2" | 
| 871 | 
            +
            <div class="refsect2">
         | 
| 889 872 | 
             
            <a name="gtk-tree-store-iter-is-valid"></a><h3>gtk_tree_store_iter_is_valid ()</h3>
         | 
| 890 873 | 
             
            <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_store_iter_is_valid        (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 891 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 874 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
         | 
| 892 875 | 
             
            <p>
         | 
| 893 876 | 
             
            WARNING: This function is slow. Only use it for debugging and/or testing
         | 
| 894 877 | 
             
            purposes.
         | 
| @@ -901,29 +884,26 @@ Checks if the given iter is a valid iter for this <a class="link" href="GtkTreeS | |
| 901 884 | 
             
            <tbody>
         | 
| 902 885 | 
             
            <tr>
         | 
| 903 886 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
         | 
| 904 | 
            -
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a | 
| 905 | 
            -
            </td>
         | 
| 887 | 
            +
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
         | 
| 906 888 | 
             
            </tr>
         | 
| 907 889 | 
             
            <tr>
         | 
| 908 890 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 909 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 910 | 
            -
            </td>
         | 
| 891 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 911 892 | 
             
            </tr>
         | 
| 912 893 | 
             
            <tr>
         | 
| 913 894 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 914 | 
            -
            <td> | 
| 915 | 
            -
             | 
| 916 | 
            -
            </td>
         | 
| 895 | 
            +
            <td>
         | 
| 896 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the iter is valid, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the iter is invalid.</td>
         | 
| 917 897 | 
             
            </tr>
         | 
| 918 898 | 
             
            </tbody>
         | 
| 919 899 | 
             
            </table></div>
         | 
| 920 900 | 
             
            <p class="since">Since 2.2</p>
         | 
| 921 901 | 
             
            </div>
         | 
| 922 902 | 
             
            <hr>
         | 
| 923 | 
            -
            <div class="refsect2" | 
| 903 | 
            +
            <div class="refsect2">
         | 
| 924 904 | 
             
            <a name="gtk-tree-store-reorder"></a><h3>gtk_tree_store_reorder ()</h3>
         | 
| 925 905 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_reorder              (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 926 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 906 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
         | 
| 927 907 | 
             
                                                                     <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>
         | 
| 928 908 | 
             
            <p>
         | 
| 929 909 | 
             
            Reorders the children of <em class="parameter"><code>parent</code></em> in <em class="parameter"><code>tree_store</code></em> to follow the order
         | 
| @@ -935,19 +915,17 @@ unsorted stores. | |
| 935 915 | 
             
            <tbody>
         | 
| 936 916 | 
             
            <tr>
         | 
| 937 917 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
         | 
| 938 | 
            -
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a | 
| 939 | 
            -
            </td>
         | 
| 918 | 
            +
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
         | 
| 940 919 | 
             
            </tr>
         | 
| 941 920 | 
             
            <tr>
         | 
| 942 921 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 943 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 944 | 
            -
            </td>
         | 
| 922 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 945 923 | 
             
            </tr>
         | 
| 946 924 | 
             
            <tr>
         | 
| 947 925 | 
             
            <td><p><span class="term"><em class="parameter"><code>new_order</code></em> :</span></p></td>
         | 
| 948 926 | 
             
            <td>an array of integers mapping the new position of each child
         | 
| 949 | 
            -
             | 
| 950 | 
            -
             | 
| 927 | 
            +
            to its old position before the re-ordering,
         | 
| 928 | 
            +
            i.e. <em class="parameter"><code>new_order</code></em><code class="literal">[newpos] = oldpos</code>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>]</span>
         | 
| 951 929 | 
             
            </td>
         | 
| 952 930 | 
             
            </tr>
         | 
| 953 931 | 
             
            </tbody>
         | 
| @@ -955,11 +933,11 @@ unsorted stores. | |
| 955 933 | 
             
            <p class="since">Since 2.2</p>
         | 
| 956 934 | 
             
            </div>
         | 
| 957 935 | 
             
            <hr>
         | 
| 958 | 
            -
            <div class="refsect2" | 
| 936 | 
            +
            <div class="refsect2">
         | 
| 959 937 | 
             
            <a name="gtk-tree-store-swap"></a><h3>gtk_tree_store_swap ()</h3>
         | 
| 960 938 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_swap                 (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 961 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 962 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 939 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *a</code></em>,
         | 
| 940 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *b</code></em>);</pre>
         | 
| 963 941 | 
             
            <p>
         | 
| 964 942 | 
             
            Swaps <em class="parameter"><code>a</code></em> and <em class="parameter"><code>b</code></em> in the same level of <em class="parameter"><code>tree_store</code></em>. Note that this function
         | 
| 965 943 | 
             
            only works with unsorted stores.
         | 
| @@ -969,29 +947,26 @@ only works with unsorted stores. | |
| 969 947 | 
             
            <tbody>
         | 
| 970 948 | 
             
            <tr>
         | 
| 971 949 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
         | 
| 972 | 
            -
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a | 
| 973 | 
            -
            </td>
         | 
| 950 | 
            +
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
         | 
| 974 951 | 
             
            </tr>
         | 
| 975 952 | 
             
            <tr>
         | 
| 976 953 | 
             
            <td><p><span class="term"><em class="parameter"><code>a</code></em> :</span></p></td>
         | 
| 977 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 978 | 
            -
            </td>
         | 
| 954 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 979 955 | 
             
            </tr>
         | 
| 980 956 | 
             
            <tr>
         | 
| 981 957 | 
             
            <td><p><span class="term"><em class="parameter"><code>b</code></em> :</span></p></td>
         | 
| 982 | 
            -
            <td>Another <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 983 | 
            -
            </td>
         | 
| 958 | 
            +
            <td>Another <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 984 959 | 
             
            </tr>
         | 
| 985 960 | 
             
            </tbody>
         | 
| 986 961 | 
             
            </table></div>
         | 
| 987 962 | 
             
            <p class="since">Since 2.2</p>
         | 
| 988 963 | 
             
            </div>
         | 
| 989 964 | 
             
            <hr>
         | 
| 990 | 
            -
            <div class="refsect2" | 
| 965 | 
            +
            <div class="refsect2">
         | 
| 991 966 | 
             
            <a name="gtk-tree-store-move-before"></a><h3>gtk_tree_store_move_before ()</h3>
         | 
| 992 967 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_move_before          (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 993 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 994 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 968 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 969 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *position</code></em>);</pre>
         | 
| 995 970 | 
             
            <p>
         | 
| 996 971 | 
             
            Moves <em class="parameter"><code>iter</code></em> in <em class="parameter"><code>tree_store</code></em> to the position before <em class="parameter"><code>position</code></em>. <em class="parameter"><code>iter</code></em> and
         | 
| 997 972 | 
             
            <em class="parameter"><code>position</code></em> should be in the same level. Note that this function only
         | 
| @@ -1003,17 +978,15 @@ moved to the end of the level. | |
| 1003 978 | 
             
            <tbody>
         | 
| 1004 979 | 
             
            <tr>
         | 
| 1005 980 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
         | 
| 1006 | 
            -
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a | 
| 1007 | 
            -
            </td>
         | 
| 981 | 
            +
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
         | 
| 1008 982 | 
             
            </tr>
         | 
| 1009 983 | 
             
            <tr>
         | 
| 1010 984 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1011 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1012 | 
            -
            </td>
         | 
| 985 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 1013 986 | 
             
            </tr>
         | 
| 1014 987 | 
             
            <tr>
         | 
| 1015 988 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 1016 | 
            -
            <td> | 
| 989 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1017 990 | 
             
            </td>
         | 
| 1018 991 | 
             
            </tr>
         | 
| 1019 992 | 
             
            </tbody>
         | 
| @@ -1021,11 +994,11 @@ moved to the end of the level. | |
| 1021 994 | 
             
            <p class="since">Since 2.2</p>
         | 
| 1022 995 | 
             
            </div>
         | 
| 1023 996 | 
             
            <hr>
         | 
| 1024 | 
            -
            <div class="refsect2" | 
| 997 | 
            +
            <div class="refsect2">
         | 
| 1025 998 | 
             
            <a name="gtk-tree-store-move-after"></a><h3>gtk_tree_store_move_after ()</h3>
         | 
| 1026 999 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_tree_store_move_after           (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
         | 
| 1027 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1028 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1000 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
         | 
| 1001 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *position</code></em>);</pre>
         | 
| 1029 1002 | 
             
            <p>
         | 
| 1030 1003 | 
             
            Moves <em class="parameter"><code>iter</code></em> in <em class="parameter"><code>tree_store</code></em> to the position after <em class="parameter"><code>position</code></em>. <em class="parameter"><code>iter</code></em> and
         | 
| 1031 1004 | 
             
            <em class="parameter"><code>position</code></em> should be in the same level. Note that this function only
         | 
| @@ -1037,17 +1010,15 @@ to the start of the level. | |
| 1037 1010 | 
             
            <tbody>
         | 
| 1038 1011 | 
             
            <tr>
         | 
| 1039 1012 | 
             
            <td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
         | 
| 1040 | 
            -
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a | 
| 1041 | 
            -
            </td>
         | 
| 1013 | 
            +
            <td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
         | 
| 1042 1014 | 
             
            </tr>
         | 
| 1043 1015 | 
             
            <tr>
         | 
| 1044 1016 | 
             
            <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
         | 
| 1045 | 
            -
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter" | 
| 1046 | 
            -
            </td>
         | 
| 1017 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
         | 
| 1047 1018 | 
             
            </tr>
         | 
| 1048 1019 | 
             
            <tr>
         | 
| 1049 1020 | 
             
            <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
         | 
| 1050 | 
            -
            <td> | 
| 1021 | 
            +
            <td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1051 1022 | 
             
            </td>
         | 
| 1052 1023 | 
             
            </tr>
         | 
| 1053 1024 | 
             
            </tbody>
         | 
| @@ -1055,7 +1026,7 @@ to the start of the level. | |
| 1055 1026 | 
             
            <p class="since">Since 2.2</p>
         | 
| 1056 1027 | 
             
            </div>
         | 
| 1057 1028 | 
             
            </div>
         | 
| 1058 | 
            -
            <div class="refsect1" | 
| 1029 | 
            +
            <div class="refsect1">
         | 
| 1059 1030 | 
             
            <a name="GtkTreeStore.see-also"></a><h2>See Also</h2>
         | 
| 1060 1031 | 
             
            <p>
         | 
| 1061 1032 | 
             
            <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
         | 
| @@ -1064,6 +1035,6 @@ to the start of the level. | |
| 1064 1035 | 
             
            </div>
         | 
| 1065 1036 | 
             
            <div class="footer">
         | 
| 1066 1037 | 
             
            <hr>
         | 
| 1067 | 
            -
                      Generated by GTK-Doc V1. | 
| 1038 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 1068 1039 | 
             
            </body>
         | 
| 1069 1040 | 
             
            </html>
         |