gtk2 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +33 -0
- data/Rakefile +62 -0
- data/ext/gtk2/depend +14 -0
- data/ext/gtk2/extconf.rb +129 -0
- data/ext/gtk2/global.h +295 -0
- data/ext/gtk2/gtk2.def +29 -0
- data/ext/gtk2/init.c +284 -0
- data/ext/gtk2/rbgdk.c +505 -0
- data/ext/gtk2/rbgdk.h +79 -0
- data/ext/gtk2/rbgdkatom.c +124 -0
- data/ext/gtk2/rbgdkcairo.c +89 -0
- data/ext/gtk2/rbgdkcolor.c +146 -0
- data/ext/gtk2/rbgdkcolormap.c +135 -0
- data/ext/gtk2/rbgdkconst.c +39 -0
- data/ext/gtk2/rbgdkconversions.h +31 -0
- data/ext/gtk2/rbgdkcursor.c +102 -0
- data/ext/gtk2/rbgdkdevice.c +229 -0
- data/ext/gtk2/rbgdkdisplay.c +553 -0
- data/ext/gtk2/rbgdkdisplaymanager.c +54 -0
- data/ext/gtk2/rbgdkdragcontext.c +291 -0
- data/ext/gtk2/rbgdkdraw.c +522 -0
- data/ext/gtk2/rbgdkevent.c +1291 -0
- data/ext/gtk2/rbgdkgc.c +423 -0
- data/ext/gtk2/rbgdkgeometry.c +256 -0
- data/ext/gtk2/rbgdkimage.c +152 -0
- data/ext/gtk2/rbgdkinput.c +72 -0
- data/ext/gtk2/rbgdkkeymap.c +155 -0
- data/ext/gtk2/rbgdkkeyval.c +108 -0
- data/ext/gtk2/rbgdkpango.c +183 -0
- data/ext/gtk2/rbgdkpangorenderer.c +143 -0
- data/ext/gtk2/rbgdkpixbuf.c +171 -0
- data/ext/gtk2/rbgdkpixmap.c +236 -0
- data/ext/gtk2/rbgdkproperty.c +288 -0
- data/ext/gtk2/rbgdkrectangle.c +142 -0
- data/ext/gtk2/rbgdkregion.c +289 -0
- data/ext/gtk2/rbgdkrgb.c +198 -0
- data/ext/gtk2/rbgdkscreen.c +422 -0
- data/ext/gtk2/rbgdkselection.c +147 -0
- data/ext/gtk2/rbgdkthreads.c +77 -0
- data/ext/gtk2/rbgdktimecoord.c +135 -0
- data/ext/gtk2/rbgdkvisual.c +252 -0
- data/ext/gtk2/rbgdkwindow.c +1113 -0
- data/ext/gtk2/rbgdkwindowattr.c +208 -0
- data/ext/gtk2/rbgdkx11.c +257 -0
- data/ext/gtk2/rbgtk.c +594 -0
- data/ext/gtk2/rbgtk.h +132 -0
- data/ext/gtk2/rbgtkaboutdialog.c +136 -0
- data/ext/gtk2/rbgtkaccelerator.c +81 -0
- data/ext/gtk2/rbgtkaccelgroup.c +200 -0
- data/ext/gtk2/rbgtkaccelgroupentry.c +94 -0
- data/ext/gtk2/rbgtkaccelkey.c +122 -0
- data/ext/gtk2/rbgtkaccellabel.c +55 -0
- data/ext/gtk2/rbgtkaccelmap.c +144 -0
- data/ext/gtk2/rbgtkaccessible.c +39 -0
- data/ext/gtk2/rbgtkaction.c +223 -0
- data/ext/gtk2/rbgtkactiongroup.c +468 -0
- data/ext/gtk2/rbgtkadjustment.c +72 -0
- data/ext/gtk2/rbgtkalignment.c +75 -0
- data/ext/gtk2/rbgtkallocation.c +168 -0
- data/ext/gtk2/rbgtkarrow.c +57 -0
- data/ext/gtk2/rbgtkaspectframe.c +56 -0
- data/ext/gtk2/rbgtkassistant.c +220 -0
- data/ext/gtk2/rbgtkbbox.c +53 -0
- data/ext/gtk2/rbgtkbin.c +42 -0
- data/ext/gtk2/rbgtkbindingset.c +189 -0
- data/ext/gtk2/rbgtkborder.c +87 -0
- data/ext/gtk2/rbgtkbox.c +138 -0
- data/ext/gtk2/rbgtkbuildable.c +127 -0
- data/ext/gtk2/rbgtkbuilder.c +170 -0
- data/ext/gtk2/rbgtkbutton.c +115 -0
- data/ext/gtk2/rbgtkcalendar.c +149 -0
- data/ext/gtk2/rbgtkcelleditable.c +57 -0
- data/ext/gtk2/rbgtkcelllayout.c +137 -0
- data/ext/gtk2/rbgtkcellrenderer.c +131 -0
- data/ext/gtk2/rbgtkcellrendereraccel.c +43 -0
- data/ext/gtk2/rbgtkcellrenderercombo.c +38 -0
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +39 -0
- data/ext/gtk2/rbgtkcellrendererprogress.c +38 -0
- data/ext/gtk2/rbgtkcellrendererspin.c +39 -0
- data/ext/gtk2/rbgtkcellrendererspinner.c +44 -0
- data/ext/gtk2/rbgtkcellrenderertext.c +49 -0
- data/ext/gtk2/rbgtkcellrenderertoggle.c +39 -0
- data/ext/gtk2/rbgtkcellview.c +117 -0
- data/ext/gtk2/rbgtkcheckbutton.c +64 -0
- data/ext/gtk2/rbgtkcheckmenuitem.c +64 -0
- data/ext/gtk2/rbgtkclipboard.c +425 -0
- data/ext/gtk2/rbgtkcolorbutton.c +49 -0
- data/ext/gtk2/rbgtkcolorsel.c +211 -0
- data/ext/gtk2/rbgtkcolorselectiondialog.c +50 -0
- data/ext/gtk2/rbgtkcombo.c +119 -0
- data/ext/gtk2/rbgtkcombobox.c +151 -0
- data/ext/gtk2/rbgtkcomboboxentry.c +56 -0
- data/ext/gtk2/rbgtkconst.c +179 -0
- data/ext/gtk2/rbgtkcontainer.c +783 -0
- data/ext/gtk2/rbgtkconversions.h +39 -0
- data/ext/gtk2/rbgtkcurve.c +111 -0
- data/ext/gtk2/rbgtkdialog.c +268 -0
- data/ext/gtk2/rbgtkdrag.c +427 -0
- data/ext/gtk2/rbgtkdrawingarea.c +42 -0
- data/ext/gtk2/rbgtkeditable.c +151 -0
- data/ext/gtk2/rbgtkentry.c +113 -0
- data/ext/gtk2/rbgtkentrycompletion.c +128 -0
- data/ext/gtk2/rbgtkeventbox.c +42 -0
- data/ext/gtk2/rbgtkexpander.c +49 -0
- data/ext/gtk2/rbgtkfilechooser.c +311 -0
- data/ext/gtk2/rbgtkfilechooserbutton.c +57 -0
- data/ext/gtk2/rbgtkfilechooserdialog.c +59 -0
- data/ext/gtk2/rbgtkfilechooserwidget.c +52 -0
- data/ext/gtk2/rbgtkfilefilter.c +131 -0
- data/ext/gtk2/rbgtkfilesel.c +150 -0
- data/ext/gtk2/rbgtkfilesystemerror.c +49 -0
- data/ext/gtk2/rbgtkfixed.c +78 -0
- data/ext/gtk2/rbgtkfontbutton.c +49 -0
- data/ext/gtk2/rbgtkfontselection.c +41 -0
- data/ext/gtk2/rbgtkfontselectiondialog.c +106 -0
- data/ext/gtk2/rbgtkframe.c +69 -0
- data/ext/gtk2/rbgtkgamma.c +56 -0
- data/ext/gtk2/rbgtkhandlebox.c +45 -0
- data/ext/gtk2/rbgtkhbbox.c +42 -0
- data/ext/gtk2/rbgtkhbox.c +47 -0
- data/ext/gtk2/rbgtkhpaned.c +42 -0
- data/ext/gtk2/rbgtkhruler.c +42 -0
- data/ext/gtk2/rbgtkhscale.c +54 -0
- data/ext/gtk2/rbgtkhscrollbar.c +47 -0
- data/ext/gtk2/rbgtkhseparator.c +41 -0
- data/ext/gtk2/rbgtkiconfactory.c +86 -0
- data/ext/gtk2/rbgtkiconinfo.c +117 -0
- data/ext/gtk2/rbgtkiconset.c +91 -0
- data/ext/gtk2/rbgtkiconsize.c +93 -0
- data/ext/gtk2/rbgtkiconsource.c +171 -0
- data/ext/gtk2/rbgtkicontheme.c +273 -0
- data/ext/gtk2/rbgtkiconview.c +270 -0
- data/ext/gtk2/rbgtkimage.c +128 -0
- data/ext/gtk2/rbgtkimagemenuitem.c +61 -0
- data/ext/gtk2/rbgtkimcontext.c +135 -0
- data/ext/gtk2/rbgtkimcontextsimple.c +69 -0
- data/ext/gtk2/rbgtkimmulticontext.c +48 -0
- data/ext/gtk2/rbgtkinfobar.c +127 -0
- data/ext/gtk2/rbgtkinputdialog.c +41 -0
- data/ext/gtk2/rbgtkinvisible.c +49 -0
- data/ext/gtk2/rbgtkitem.c +60 -0
- data/ext/gtk2/rbgtkitemfactory.c +299 -0
- data/ext/gtk2/rbgtklabel.c +139 -0
- data/ext/gtk2/rbgtklayout.c +94 -0
- data/ext/gtk2/rbgtklinkbutton.c +65 -0
- data/ext/gtk2/rbgtkliststore.c +411 -0
- data/ext/gtk2/rbgtkmacros.h +39 -0
- data/ext/gtk2/rbgtkmenu.c +171 -0
- data/ext/gtk2/rbgtkmenubar.c +45 -0
- data/ext/gtk2/rbgtkmenuitem.c +111 -0
- data/ext/gtk2/rbgtkmenushell.c +108 -0
- data/ext/gtk2/rbgtkmenutoolbutton.c +74 -0
- data/ext/gtk2/rbgtkmessagedialog.c +89 -0
- data/ext/gtk2/rbgtkmisc.c +70 -0
- data/ext/gtk2/rbgtknotebook.c +412 -0
- data/ext/gtk2/rbgtkobject.c +144 -0
- data/ext/gtk2/rbgtkoptionmenu.c +72 -0
- data/ext/gtk2/rbgtkpagesetup.c +201 -0
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +87 -0
- data/ext/gtk2/rbgtkpaned.c +114 -0
- data/ext/gtk2/rbgtkpapersize.c +186 -0
- data/ext/gtk2/rbgtkplug.c +91 -0
- data/ext/gtk2/rbgtkprintcontext.c +127 -0
- data/ext/gtk2/rbgtkprinter.c +154 -0
- data/ext/gtk2/rbgtkprintjob.c +149 -0
- data/ext/gtk2/rbgtkprintoperation.c +156 -0
- data/ext/gtk2/rbgtkprintoperationpreview.c +61 -0
- data/ext/gtk2/rbgtkprintsettings.c +842 -0
- data/ext/gtk2/rbgtkprintunixdialog.c +86 -0
- data/ext/gtk2/rbgtkprogress.c +31 -0
- data/ext/gtk2/rbgtkprogressbar.c +71 -0
- data/ext/gtk2/rbgtkradioaction.c +120 -0
- data/ext/gtk2/rbgtkradiobutton.c +90 -0
- data/ext/gtk2/rbgtkradiomenuitem.c +148 -0
- data/ext/gtk2/rbgtkradiotoolbutton.c +132 -0
- data/ext/gtk2/rbgtkrange.c +71 -0
- data/ext/gtk2/rbgtkrc.c +217 -0
- data/ext/gtk2/rbgtkrcstyle.c +182 -0
- data/ext/gtk2/rbgtkrecentaction.c +60 -0
- data/ext/gtk2/rbgtkrecentchooser.c +216 -0
- data/ext/gtk2/rbgtkrecentchooserdialog.c +62 -0
- data/ext/gtk2/rbgtkrecentchoosermenu.c +50 -0
- data/ext/gtk2/rbgtkrecentchooserwidget.c +48 -0
- data/ext/gtk2/rbgtkrecentdata.c +144 -0
- data/ext/gtk2/rbgtkrecentfilter.c +170 -0
- data/ext/gtk2/rbgtkrecentfilterinfo.c +181 -0
- data/ext/gtk2/rbgtkrecentinfo.c +216 -0
- data/ext/gtk2/rbgtkrecentmanager.c +149 -0
- data/ext/gtk2/rbgtkruler.c +71 -0
- data/ext/gtk2/rbgtkscale.c +50 -0
- data/ext/gtk2/rbgtkscalebutton.c +75 -0
- data/ext/gtk2/rbgtkscrollbar.c +31 -0
- data/ext/gtk2/rbgtkscrolledwindow.c +124 -0
- data/ext/gtk2/rbgtkselection.c +171 -0
- data/ext/gtk2/rbgtkselectiondata.c +284 -0
- data/ext/gtk2/rbgtkseparator.c +31 -0
- data/ext/gtk2/rbgtkseparatormenuitem.c +39 -0
- data/ext/gtk2/rbgtkseparatortoolitem.c +38 -0
- data/ext/gtk2/rbgtksettings.c +229 -0
- data/ext/gtk2/rbgtksizegroup.c +68 -0
- data/ext/gtk2/rbgtksocket.c +80 -0
- data/ext/gtk2/rbgtkspinbutton.c +137 -0
- data/ext/gtk2/rbgtkspinner.c +61 -0
- data/ext/gtk2/rbgtkstatusbar.c +77 -0
- data/ext/gtk2/rbgtkstatusicon.c +90 -0
- data/ext/gtk2/rbgtkstock.c +230 -0
- data/ext/gtk2/rbgtkstyle.c +642 -0
- data/ext/gtk2/rbgtktable.c +177 -0
- data/ext/gtk2/rbgtktargetlist.c +125 -0
- data/ext/gtk2/rbgtktearoffmenuitem.c +41 -0
- data/ext/gtk2/rbgtktextappearance.c +172 -0
- data/ext/gtk2/rbgtktextattributes.c +203 -0
- data/ext/gtk2/rbgtktextbuffer.c +886 -0
- data/ext/gtk2/rbgtktextchild.c +55 -0
- data/ext/gtk2/rbgtktextiter.c +506 -0
- data/ext/gtk2/rbgtktextmark.c +76 -0
- data/ext/gtk2/rbgtktexttag.c +71 -0
- data/ext/gtk2/rbgtktexttagtable.c +97 -0
- data/ext/gtk2/rbgtktextview.c +326 -0
- data/ext/gtk2/rbgtktoggleaction.c +59 -0
- data/ext/gtk2/rbgtktogglebutton.c +88 -0
- data/ext/gtk2/rbgtktoggletoolbutton.c +54 -0
- data/ext/gtk2/rbgtktoolbar.c +315 -0
- data/ext/gtk2/rbgtktoolbutton.c +53 -0
- data/ext/gtk2/rbgtktoolitem.c +157 -0
- data/ext/gtk2/rbgtktooltip.c +82 -0
- data/ext/gtk2/rbgtktooltips.c +104 -0
- data/ext/gtk2/rbgtktreedragdest.c +28 -0
- data/ext/gtk2/rbgtktreedragsource.c +28 -0
- data/ext/gtk2/rbgtktreeiter.c +251 -0
- data/ext/gtk2/rbgtktreemodel.c +282 -0
- data/ext/gtk2/rbgtktreemodelfilter.c +198 -0
- data/ext/gtk2/rbgtktreemodelsort.c +112 -0
- data/ext/gtk2/rbgtktreepath.c +191 -0
- data/ext/gtk2/rbgtktreerowreference.c +171 -0
- data/ext/gtk2/rbgtktreeselection.c +213 -0
- data/ext/gtk2/rbgtktreesortable.c +123 -0
- data/ext/gtk2/rbgtktreestore.c +362 -0
- data/ext/gtk2/rbgtktreeview.c +746 -0
- data/ext/gtk2/rbgtktreeviewcolumn.c +289 -0
- data/ext/gtk2/rbgtkuimanager.c +189 -0
- data/ext/gtk2/rbgtkvbbox.c +42 -0
- data/ext/gtk2/rbgtkvbox.c +47 -0
- data/ext/gtk2/rbgtkviewport.c +44 -0
- data/ext/gtk2/rbgtkvolumebutton.c +47 -0
- data/ext/gtk2/rbgtkvpaned.c +42 -0
- data/ext/gtk2/rbgtkvruler.c +41 -0
- data/ext/gtk2/rbgtkvscale.c +54 -0
- data/ext/gtk2/rbgtkvscrollbar.c +47 -0
- data/ext/gtk2/rbgtkvseparator.c +41 -0
- data/ext/gtk2/rbgtkwidget.c +1223 -0
- data/ext/gtk2/rbgtkwindow.c +588 -0
- data/ext/gtk2/rbgtkwindowgroup.c +56 -0
- data/extconf.rb +49 -0
- data/lib/2.0/gtk2.so +0 -0
- data/lib/2.1/gtk2.so +0 -0
- data/lib/2.2/gtk2.so +0 -0
- data/lib/gtk2.rb +13 -0
- data/lib/gtk2/base.rb +105 -0
- data/sample/gtk-demo/README +7 -0
- data/sample/gtk-demo/alphatest.png +0 -0
- data/sample/gtk-demo/apple-red.png +0 -0
- data/sample/gtk-demo/appwindow.rb +233 -0
- data/sample/gtk-demo/background.jpg +0 -0
- data/sample/gtk-demo/builder.rb +51 -0
- data/sample/gtk-demo/button_box.rb +84 -0
- data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
- data/sample/gtk-demo/cairo-arc.rb +41 -0
- data/sample/gtk-demo/cairo-clip-image.rb +51 -0
- data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
- data/sample/gtk-demo/cairo-clip.rb +35 -0
- data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
- data/sample/gtk-demo/cairo-curve-to.rb +43 -0
- data/sample/gtk-demo/cairo-dash.rb +39 -0
- data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
- data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
- data/sample/gtk-demo/cairo-gradient.rb +35 -0
- data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
- data/sample/gtk-demo/cairo-image.rb +49 -0
- data/sample/gtk-demo/cairo-line-cap.rb +53 -0
- data/sample/gtk-demo/cairo-line-join.rb +41 -0
- data/sample/gtk-demo/cairo-long-lines.rb +41 -0
- data/sample/gtk-demo/cairo-operator.rb +83 -0
- data/sample/gtk-demo/cairo-path.rb +28 -0
- data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
- data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
- data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
- data/sample/gtk-demo/cairo-text-extents.rb +46 -0
- data/sample/gtk-demo/cairo-text.rb +43 -0
- data/sample/gtk-demo/changedisplay.rb +408 -0
- data/sample/gtk-demo/clipboard.rb +72 -0
- data/sample/gtk-demo/colorsel.rb +84 -0
- data/sample/gtk-demo/common.rb +93 -0
- data/sample/gtk-demo/demo.ui +258 -0
- data/sample/gtk-demo/dialog.rb +137 -0
- data/sample/gtk-demo/drawingarea.rb +226 -0
- data/sample/gtk-demo/editable_cells.rb +172 -0
- data/sample/gtk-demo/entry_completion.rb +63 -0
- data/sample/gtk-demo/expander.rb +40 -0
- data/sample/gtk-demo/floppybuddy.gif +0 -0
- data/sample/gtk-demo/gnome-applets.png +0 -0
- data/sample/gtk-demo/gnome-calendar.png +0 -0
- data/sample/gtk-demo/gnome-foot.png +0 -0
- data/sample/gtk-demo/gnome-fs-directory.png +0 -0
- data/sample/gtk-demo/gnome-fs-regular.png +0 -0
- data/sample/gtk-demo/gnome-gimp.png +0 -0
- data/sample/gtk-demo/gnome-gmush.png +0 -0
- data/sample/gtk-demo/gnome-gsame.png +0 -0
- data/sample/gtk-demo/gnu-keys.png +0 -0
- data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
- data/sample/gtk-demo/hypertext.rb +211 -0
- data/sample/gtk-demo/iconview.rb +109 -0
- data/sample/gtk-demo/images.rb +197 -0
- data/sample/gtk-demo/item_factory.rb +94 -0
- data/sample/gtk-demo/list_store.rb +138 -0
- data/sample/gtk-demo/main.rb +386 -0
- data/sample/gtk-demo/menus.rb +172 -0
- data/sample/gtk-demo/panes.rb +156 -0
- data/sample/gtk-demo/pixbufs.rb +176 -0
- data/sample/gtk-demo/printing.rb +128 -0
- data/sample/gtk-demo/rotated_text.rb +84 -0
- data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
- data/sample/gtk-demo/sizegroup.rb +118 -0
- data/sample/gtk-demo/stock_browser.rb +235 -0
- data/sample/gtk-demo/textview.rb +436 -0
- data/sample/gtk-demo/tree_store.rb +270 -0
- data/sample/misc/aboutdialog.rb +42 -0
- data/sample/misc/aboutdialog2.rb +42 -0
- data/sample/misc/alpha-demo.rb +70 -0
- data/sample/misc/assistant.rb +347 -0
- data/sample/misc/bindings.rb +107 -0
- data/sample/misc/button.rb +69 -0
- data/sample/misc/button2.rb +28 -0
- data/sample/misc/buttonbox.rb +93 -0
- data/sample/misc/cairo-pong.rb +215 -0
- data/sample/misc/calendar.rb +62 -0
- data/sample/misc/checkbutton.rb +46 -0
- data/sample/misc/colorselection.rb +25 -0
- data/sample/misc/combo_check.rb +71 -0
- data/sample/misc/combobox.rb +86 -0
- data/sample/misc/composited-windows.rb +113 -0
- data/sample/misc/cursor.rb +32 -0
- data/sample/misc/dialog.rb +44 -0
- data/sample/misc/dialog2.rb +39 -0
- data/sample/misc/dnd.rb +65 -0
- data/sample/misc/dndtreeview.rb +56 -0
- data/sample/misc/drag-move.rb +131 -0
- data/sample/misc/drawing.rb +90 -0
- data/sample/misc/entry.rb +34 -0
- data/sample/misc/entrycompletion.rb +39 -0
- data/sample/misc/expander.rb +27 -0
- data/sample/misc/filechooser.rb +49 -0
- data/sample/misc/fileselection.rb +26 -0
- data/sample/misc/frame.rb +69 -0
- data/sample/misc/gc.rb +59 -0
- data/sample/misc/gdkscreen.rb +32 -0
- data/sample/misc/gnome-logo-icon.png +0 -0
- data/sample/misc/helloworld.rb +35 -0
- data/sample/misc/iconview.rb +38 -0
- data/sample/misc/image.rb +42 -0
- data/sample/misc/infobar.rb +24 -0
- data/sample/misc/itemfactory.rb +73 -0
- data/sample/misc/itemfactory2.rb +74 -0
- data/sample/misc/keyboard_grab.rb +29 -0
- data/sample/misc/label.rb +33 -0
- data/sample/misc/linkbutton.rb +42 -0
- data/sample/misc/listview.rb +92 -0
- data/sample/misc/menu.rb +81 -0
- data/sample/misc/misc_button.rb +59 -0
- data/sample/misc/mouse-gesture.rb +465 -0
- data/sample/misc/pangorenderer.rb +66 -0
- data/sample/misc/pointer_grab.rb +34 -0
- data/sample/misc/print.rb +247 -0
- data/sample/misc/properties.rb +85 -0
- data/sample/misc/radiobutton.rb +47 -0
- data/sample/misc/recentchooserdialog.rb +59 -0
- data/sample/misc/rgtk+cairo.rb +44 -0
- data/sample/misc/scalebutton.rb +25 -0
- data/sample/misc/settings.rb +41 -0
- data/sample/misc/statusicon.rb +123 -0
- data/sample/misc/stock.rb +36 -0
- data/sample/misc/style_property.rb +67 -0
- data/sample/misc/style_property.rc +19 -0
- data/sample/misc/t-gtkplug.rb +58 -0
- data/sample/misc/t-gtksocket.rb +65 -0
- data/sample/misc/test.xpm +92 -0
- data/sample/misc/textbuffer_serialize.rb +130 -0
- data/sample/misc/threads.rb +72 -0
- data/sample/misc/to_drawable.rb +42 -0
- data/sample/misc/togglebutton.rb +34 -0
- data/sample/misc/toolbar.rb +55 -0
- data/sample/misc/tooltips.rb +204 -0
- data/sample/misc/tree_combo.rb +85 -0
- data/sample/misc/tree_progress.rb +69 -0
- data/sample/misc/treemodelfilter.rb +55 -0
- data/sample/misc/treeview.rb +71 -0
- data/sample/misc/uimanager.rb +148 -0
- data/sample/misc/uimanager2.rb +91 -0
- data/sample/misc/uimanager2.xml +36 -0
- data/sample/misc/window.rb +24 -0
- data/sample/misc/xbm_cursor.rb +43 -0
- data/sample/testgtk/3DRings.xpm +116 -0
- data/sample/testgtk/FilesQueue.xpm +98 -0
- data/sample/testgtk/Modeller.xpm +117 -0
- data/sample/testgtk/README +14 -0
- data/sample/testgtk/button.rb +133 -0
- data/sample/testgtk/buttonbox.rb +108 -0
- data/sample/testgtk/check-n.xpm +21 -0
- data/sample/testgtk/check-y.xpm +21 -0
- data/sample/testgtk/checkbutton.rb +67 -0
- data/sample/testgtk/circles.xbm +46 -0
- data/sample/testgtk/colorselect.rb +33 -0
- data/sample/testgtk/dialog.rb +47 -0
- data/sample/testgtk/entry.rb +73 -0
- data/sample/testgtk/filesel.rb +67 -0
- data/sample/testgtk/fontselection.rb +56 -0
- data/sample/testgtk/gammacurve.rb +70 -0
- data/sample/testgtk/labels.rb +74 -0
- data/sample/testgtk/layout.rb +108 -0
- data/sample/testgtk/marble.xpm +408 -0
- data/sample/testgtk/menu.rb +79 -0
- data/sample/testgtk/notebook.rb +281 -0
- data/sample/testgtk/pixmap.rb +58 -0
- data/sample/testgtk/progressbar.rb +181 -0
- data/sample/testgtk/radiobutton.rb +61 -0
- data/sample/testgtk/range.rb +65 -0
- data/sample/testgtk/reparent.rb +91 -0
- data/sample/testgtk/rulers.rb +46 -0
- data/sample/testgtk/sample.rb +80 -0
- data/sample/testgtk/savedposition.rb +87 -0
- data/sample/testgtk/scrolledwindow.rb +67 -0
- data/sample/testgtk/shapedwindow.rb +99 -0
- data/sample/testgtk/spinbutton.rb +181 -0
- data/sample/testgtk/statusbar.rb +89 -0
- data/sample/testgtk/test.xpm +92 -0
- data/sample/testgtk/testgtk.rb +181 -0
- data/sample/testgtk/testgtkrc +146 -0
- data/sample/testgtk/testgtkrc2 +21 -0
- data/sample/testgtk/togglebutton.rb +53 -0
- data/sample/testgtk/toolbar.rb +82 -0
- data/sample/testgtk/tooltips.rb +41 -0
- data/sample/testgtk/wmhints.rb +40 -0
- data/test/gtk-test-utils.rb +15 -0
- data/test/run-test.rb +32 -0
- data/test/test_gc.rb +25 -0
- data/test/test_gdk.rb +18 -0
- data/test/test_gdk_color.rb +10 -0
- data/test/test_gdk_display.rb +37 -0
- data/test/test_gdk_event.rb +23 -0
- data/test/test_gdk_gc.rb +7 -0
- data/test/test_gdk_geometry.rb +24 -0
- data/test/test_gdk_keymap.rb +8 -0
- data/test/test_gdk_pango.rb +9 -0
- data/test/test_gdk_pixbuf.rb +34 -0
- data/test/test_gdk_rectangle.rb +24 -0
- data/test/test_gdk_selection_data.rb +17 -0
- data/test/test_gdk_window.rb +37 -0
- data/test/test_gdk_window_attribute.rb +9 -0
- data/test/test_gtk_about_dialog.rb +14 -0
- data/test/test_gtk_accel_group_entry.rb +24 -0
- data/test/test_gtk_accel_key.rb +24 -0
- data/test/test_gtk_allocation.rb +24 -0
- data/test/test_gtk_border.rb +24 -0
- data/test/test_gtk_buildable.rb +66 -0
- data/test/test_gtk_builder.rb +188 -0
- data/test/test_gtk_entry.rb +18 -0
- data/test/test_gtk_icon_theme.rb +35 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_infobar.rb +29 -0
- data/test/test_gtk_list_store.rb +92 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_rc_style.rb +14 -0
- data/test/test_gtk_recent_data.rb +24 -0
- data/test/test_gtk_recent_filter_info.rb +26 -0
- data/test/test_gtk_tree_path.rb +20 -0
- data/test/test_gtk_unix_print.rb +14 -0
- data/test/test_gtk_widget.rb +32 -0
- data/vendor/local/bin/gtk-builder-convert +799 -0
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtkrc +1 -0
- data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
- data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
- data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
- data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +151 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
- data/vendor/local/lib/gailutil.def +15 -0
- data/vendor/local/lib/gdk-win32-2.0.def +744 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.la +41 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.la +41 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/immodules.cache +7 -0
- data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +34 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.la +41 -0
- data/vendor/local/lib/gtk-win32-2.0.def +3833 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgailutil.la +41 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.la +41 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.la +41 -0
- data/vendor/local/lib/pkgconfig/gail.pc +11 -0
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
- data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
- data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
- data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
- data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
- data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
- data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
- data/vendor/local/share/gtk-2.0/demo/changedisplay.c +646 -0
- data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
- data/vendor/local/share/gtk-2.0/demo/colorsel.c +145 -0
- data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
- data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
- data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
- data/vendor/local/share/gtk-2.0/demo/drawingarea.c +314 -0
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
- data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
- data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
- data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
- data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
- data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
- data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
- data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
- data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
- data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
- data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
- data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +587 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +510 -0
- data/vendor/local/share/gtk-2.0/demo/panes.c +197 -0
- data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
- data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
- data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
- data/vendor/local/share/gtk-2.0/demo/rotated_text.c +241 -0
- data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
- data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
- data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
- data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
- data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
- data/vendor/local/share/gtk-2.0/demo/toolpalette.c +799 -0
- data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
- data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +574 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +361 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +27 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplay.html +1796 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplayManager.html +355 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkScreen.html +2067 -0
- data/vendor/local/share/gtk-doc/html/gdk2/X_cursor.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/annotation-glossary.html +62 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-10.html +118 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-12.html +119 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-14.html +119 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-16.html +39 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-18.html +104 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-2.html +510 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-20.html +46 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-22.html +219 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-4.html +118 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-6.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-8.html +110 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-deprecated.html +1047 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-full.html +3665 -0
- data/vendor/local/share/gtk-doc/html/gdk2/arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/boat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bogosity.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/box_spiral.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/center_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/circle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/clock.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/coffee_mug.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/cross_reverse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/crosshair.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/diamond_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/dot.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/dotbox.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draft_large.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draft_small.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draped_box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/exchange.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/fleur.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Application-launching.html +412 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Bitmaps-and-Pixmaps.html +753 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cairo-Interaction.html +541 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Colormaps-and-Colors.html +1295 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cursors.html +1290 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drag-and-Drop.html +1217 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drawing-Primitives.html +2611 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Event-Structures.html +2095 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Events.html +1650 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Fonts.html +1781 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-GdkRGB.html +1435 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-General.html +1169 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Graphics-Contexts.html +2201 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Images.html +1090 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input-Devices.html +1288 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input.html +401 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Keyboard-Handling.html +1362 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pango-Interaction.html +1074 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pixbufs.html +744 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Points-Rectangles-and-Regions.html +1367 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Properties-and-Atoms.html +1314 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Selections.html +845 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Testing.html +276 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Threads.html +1053 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Visuals.html +1085 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Windows.html +8583 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-X-Window-System-Interaction.html +3528 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2.devhelp2 +949 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gobbler.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gumby.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/hand1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/hand2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/heart.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/icon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/index.html +143 -0
- data/vendor/local/share/gtk-doc/html/gdk2/index.sgml +1151 -0
- data/vendor/local/share/gtk-doc/html/gdk2/iron_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/leftbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ll_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/lr_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/man.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/middlebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/mouse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/multihead.html +204 -0
- data/vendor/local/share/gtk-doc/html/gdk2/pencil.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/pirate.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/plus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/question_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/reference.html +131 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rightbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rtl_logo.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sailboat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_down_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_h_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_right_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_up_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_v_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/shuttle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sizing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/spider.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/spraycan.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/star.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gdk2/target.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/tcross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/trek.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ul_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/umbrella.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ur_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/watch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/xterm.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/AbstractObjects.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Actions.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Builder.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ButtonWidgets.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/DeprecatedObjects.html +83 -0
- data/vendor/local/share/gtk-doc/html/gtk2/DisplayWidgets.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAboutDialog.html +1891 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAccelLabel.html +437 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAccessible.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAction.html +2264 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkActionGroup.html +1631 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkActivatable.html +924 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAdjustment.html +1102 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAlignment.html +491 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkArrow.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAspectFrame.html +308 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAssistant.html +1575 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBin.html +152 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBox.html +1043 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBuildable.html +801 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBuilder.html +1339 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkButton.html +1634 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkButtonBox.html +776 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCList.html +5399 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCTree.html +3279 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCalendar.html +1463 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellEditable.html +362 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellLayout.html +702 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRenderer.html +1492 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererAccel.html +350 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererCombo.html +282 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererPixbuf.html +278 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererProgress.html +243 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpin.html +196 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpinner.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererText.html +868 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererToggle.html +493 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellView.html +612 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCheckButton.html +283 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorButton.html +615 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelection.html +1120 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelectionDialog.html +302 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCombo.html +678 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBox.html +2138 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxEntry.html +374 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxText.html +414 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkContainer.html +2054 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCurve.html +591 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkDialog.html +1627 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkDrawingArea.html +287 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEditable.html +896 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntry.html +4578 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryBuffer.html +792 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryCompletion.html +1574 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEventBox.html +362 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkExpander.html +1024 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooser.html +4065 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserButton.html +666 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserDialog.html +353 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserWidget.html +211 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileSelection.html +740 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFixed.html +419 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontButton.html +804 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelection.html +728 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelectionDialog.html +546 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFrame.html +610 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkGammaCurve.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHBox.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHButtonBox.html +287 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHPaned.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHRuler.html +143 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHSV.html +605 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHScale.html +210 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHScrollbar.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHSeparator.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHandleBox.html +665 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContext.html +1204 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContextSimple.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMMulticontext.html +231 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIconTheme.html +1796 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIconView.html +3740 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkImage.html +1961 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkImageMenuItem.html +613 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInfoBar.html +908 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInputDialog.html +255 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInvisible.html +267 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkItem.html +350 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkItemFactory.html +1537 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLabel.html +2825 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLayout.html +797 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLinkButton.html +520 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkList.html +1370 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkListItem.html +652 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkListStore.html +1361 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenu.html +1887 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuBar.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuItem.html +1279 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuShell.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuToolButton.html +561 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMessageDialog.html +945 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMisc.html +411 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkNotebook.html +3748 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkObject.html +1672 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOffscreenWindow.html +221 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOldEditable.html +756 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOptionMenu.html +477 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetup.html +1278 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetupUnixDialog.html +312 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPaned.html +1032 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPaperSize.html +1172 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPixmap.html +306 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPlug.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPreview.html +822 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintContext.html +655 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintJob.html +725 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintSettings.html +3872 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintUnixDialog.html +1143 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrinter.html +1321 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkProgress.html +766 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkProgressBar.html +1179 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioAction.html +480 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioButton.html +681 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioMenuItem.html +609 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioToolButton.html +432 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRange.html +1913 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentAction.html +338 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooser.html +1919 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserDialog.html +260 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserMenu.html +313 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserWidget.html +182 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentFilter.html +823 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentManager.html +2084 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRuler.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScale.html +724 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScaleButton.html +783 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScrollbar.html +232 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScrolledWindow.html +1035 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparator.html +96 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorMenuItem.html +130 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorToolItem.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSettings.html +1679 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSizeGroup.html +579 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSocket.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinButton.html +1793 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinner.html +265 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusIcon.html +2339 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusbar.html +662 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStyle.html +5004 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTable.html +1081 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTearoffMenuItem.html +158 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkText.html +900 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextBuffer.html +4895 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextIter.html +4244 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextMark.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTag.html +1680 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTagTable.html +516 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextView.html +4124 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTipsQuery.html +625 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleAction.html +440 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleButton.html +698 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleToolButton.html +359 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolButton.html +929 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItem.html +1599 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItemGroup.html +1025 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolPalette.html +1314 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolShell.html +532 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolbar.html +2507 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltip.html +554 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltips.html +548 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTree.html +1060 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeItem.html +361 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModel.html +3330 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelFilter.html +885 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelSort.html +697 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSelection.html +1144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSortable.html +595 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeStore.html +1384 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeView.html +6534 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeViewColumn.html +2679 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkUIManager.html +1631 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVBox.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVButtonBox.html +259 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVPaned.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVRuler.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVScale.html +202 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVScrollbar.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVSeparator.html +125 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkViewport.html +564 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVolumeButton.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWidget.html +13779 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWindow.html +5354 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWindowGroup.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk2/LayoutContainers.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk2/MenusAndCombos.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk2/MiscObjects.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk2/NumericEntry.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Ornaments.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/PlugSocket.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Printing.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk2/RecentDocuments.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ScrollingWidgets.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/SelectorWidgets.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk2/SpecialObjects.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TextWidget.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TextWidgetObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TreeWidget.html +556 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TreeWidgetObjects.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk2/WindowWidgets.html +57 -0
- data/vendor/local/share/gtk-doc/html/gtk2/aboutdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/accel-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/annotation-glossary.html +69 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-10.html +2090 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-12.html +785 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-14.html +781 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-16.html +597 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-18.html +513 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-2.html +286 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-20.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-22.html +176 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-24.html +131 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-4.html +1853 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-6.html +1085 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-8.html +381 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-deprecated.html +3531 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-full.html +22945 -0
- data/vendor/local/share/gtk-doc/html/gtk2/application-exit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/assistant.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ch01.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ch02.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk2/chap-drawing-model.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk2/check-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-gdkeventexpose-region.html +84 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-modifiers.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-named-icons.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/color-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/colorsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/combo-box-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/combo-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/decorating-the-assistant-pages.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-information.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-password.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-question.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-new.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-open.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-print-preview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-print.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-properties.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-revert-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-revert-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-save-as.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-save.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/drive-harddisk.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-clear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-copy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-cut.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-delete.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-find-replace.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-find.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-paste.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-select-all.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/figure-hierarchical-drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/figure-windowed-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/file-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/filechooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/folder.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/font-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/fontsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-fill.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-bold.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-italic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-strikethrough.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-underline.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/frame.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/glossary.html +335 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-bottom.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-first-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-first-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-jump-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-jump-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-last-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-last-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-next-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-next-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-previous-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-previous-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-top.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-apply.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-builder-convert.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-building.html +441 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-cancel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-caps-lock-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-1-2.html +568 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-2-0.html +1175 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-color-picker.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-compiling.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-connect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-convert.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-directfb.html +60 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-disconnect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd-multiple.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-edit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-font.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-index.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-ClientSideWindows.html +85 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAboutDialog.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAction.html +91 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAssistant.html +102 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkBuilder.html +118 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkColorButton.html +107 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkComboBox.html +256 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkFileChooser.html +80 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkIconView.html +264 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkLinkButton.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkRecentChooser.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-checklist.html +157 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-entry-icons.html +293 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-label-links.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-tooltips.html +124 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-no.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-ok.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-osx.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-page-setup.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-preferences.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-query-immodules-2.0.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-question-index.html +1427 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-resources.html +146 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-running.html +348 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-select-color.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-update-icon-cache.html +114 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-windows.html +87 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-x11.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-yes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk.html +162 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Accelerator-Maps.html +744 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Bindings.html +1146 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Clipboards.html +2018 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Drag-and-Drop.html +1962 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Feature-Test-Macros.html +358 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Filesystem-utilities.html +454 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-General.html +2349 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Graphics-Contexts.html +165 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-GtkTreeView-drag-and-drop.html +566 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-High-level-Printing-API.html +3267 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Keyboard-Accelerators.html +1329 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Orientable.html +219 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Resource-Files.html +2234 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Selections.html +2236 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Signals.html +1991 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Standard-Enumerations.html +2183 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Stock-Items.html +1724 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Testing.html +833 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Themeable-Stock-Images.html +1998 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Types.html +2138 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkcheckmenuitem.html +693 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkfilefilter.html +671 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2.devhelp2 +6133 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkbase.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-extra-widgets.html +40 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-preview.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-new-features.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-selection-modes.html +51 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkobjects.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-advanced.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-chooser.html +97 -0
- data/vendor/local/share/gtk-doc/html/gtk2/help-about.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/help-contents.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/icon-view.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/image-missing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/image.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/index.html +875 -0
- data/vendor/local/share/gtk-doc/html/gtk2/index.sgml +8276 -0
- data/vendor/local/share/gtk-doc/html/gtk2/label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-btlr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-btrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-lrbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-lrtb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-rlbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-rltb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-tblr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-tbrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/link-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-add.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-and-tree.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-remove.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-floppy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-optical.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-pause.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-record.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/menubar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/messagedialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating-GtkCombo.html +94 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating-gnomeuiinfo.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk2/multiline-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/network-idle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/new-features-GtkComboBox.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk2/notebook.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/pagesetupdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/panes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-info.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-paused.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/process-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/progressbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/pt05.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk2/radio-group.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/recentchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/scales.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/scrolledwindow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/separator.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/setting-the-page-flow.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk2/spinbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/spinner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/statusbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gtk2/system-run.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/text-x-generic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toggle-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toolbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toolpalette.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/tools-check-spelling.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/tree-view-coordinates.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ui-manager.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk2/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-fullscreen.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-refresh.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-restore.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-sort-ascending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-sort-descending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/volumebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/window-close.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/window.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-fit-best.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-original.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-out.png +0 -0
- data/vendor/local/share/icons/hicolor/index.theme +1830 -0
- data/vendor/local/share/license/gtk+/AUTHORS +65 -0
- data/vendor/local/share/license/gtk+/COPYING +482 -0
- data/vendor/local/share/license/hicolor-icon-theme/COPYING +345 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
- data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
- data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
- data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
- metadata +1750 -0
@@ -0,0 +1,361 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>GTK+ 2 Reference Manual: GtkTreeItem</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
|
8
|
+
<link rel="up" href="DeprecatedObjects.html" title="Deprecated">
|
9
|
+
<link rel="prev" href="GtkTree.html" title="GtkTree">
|
10
|
+
<link rel="next" href="migrating.html" title="Part IV. Migrating from Previous Versions of GTK+">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#GtkTreeItem.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#GtkTreeItem.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span>
|
20
|
+
<a href="#GtkTreeItem.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_signals"> <span class="dim">|</span>
|
21
|
+
<a href="#GtkTreeItem.signals" class="shortcut">Signals</a></span>
|
22
|
+
</td>
|
23
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
24
|
+
<td><a accesskey="u" href="DeprecatedObjects.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
25
|
+
<td><a accesskey="p" href="GtkTree.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
26
|
+
<td><a accesskey="n" href="migrating.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
27
|
+
</tr></table>
|
28
|
+
<div class="refentry">
|
29
|
+
<a name="GtkTreeItem"></a><div class="titlepage"></div>
|
30
|
+
<div class="refnamediv"><table width="100%"><tr>
|
31
|
+
<td valign="top">
|
32
|
+
<h2><span class="refentrytitle"><a name="GtkTreeItem.top_of_page"></a>GtkTreeItem</span></h2>
|
33
|
+
<p>GtkTreeItem — The widget used for items in a GtkTree</p>
|
34
|
+
</td>
|
35
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
36
|
+
</tr></table></div>
|
37
|
+
<div class="refsect1">
|
38
|
+
<a name="GtkTreeItem.functions"></a><h2>Functions</h2>
|
39
|
+
<div class="informaltable"><table width="100%" border="0">
|
40
|
+
<colgroup>
|
41
|
+
<col width="150px" class="functions_return">
|
42
|
+
<col class="functions_name">
|
43
|
+
</colgroup>
|
44
|
+
<tbody>
|
45
|
+
<tr>
|
46
|
+
<td class="define_keyword">#define</td>
|
47
|
+
<td class="function_name">
|
48
|
+
<a class="link" href="GtkTreeItem.html#GTK-TREE-ITEM-SUBTREE:CAPS" title="GTK_TREE_ITEM_SUBTREE()">GTK_TREE_ITEM_SUBTREE</a><span class="c_punctuation">()</span>
|
49
|
+
</td>
|
50
|
+
</tr>
|
51
|
+
<tr>
|
52
|
+
<td class="function_type">
|
53
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
54
|
+
</td>
|
55
|
+
<td class="function_name">
|
56
|
+
<a class="link" href="GtkTreeItem.html#gtk-tree-item-new" title="gtk_tree_item_new ()">gtk_tree_item_new</a> <span class="c_punctuation">()</span>
|
57
|
+
</td>
|
58
|
+
</tr>
|
59
|
+
<tr>
|
60
|
+
<td class="function_type">
|
61
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
62
|
+
</td>
|
63
|
+
<td class="function_name">
|
64
|
+
<a class="link" href="GtkTreeItem.html#gtk-tree-item-new-with-label" title="gtk_tree_item_new_with_label ()">gtk_tree_item_new_with_label</a> <span class="c_punctuation">()</span>
|
65
|
+
</td>
|
66
|
+
</tr>
|
67
|
+
<tr>
|
68
|
+
<td class="function_type">
|
69
|
+
<span class="returnvalue">void</span>
|
70
|
+
</td>
|
71
|
+
<td class="function_name">
|
72
|
+
<a class="link" href="GtkTreeItem.html#gtk-tree-item-set-subtree" title="gtk_tree_item_set_subtree ()">gtk_tree_item_set_subtree</a> <span class="c_punctuation">()</span>
|
73
|
+
</td>
|
74
|
+
</tr>
|
75
|
+
<tr>
|
76
|
+
<td class="function_type">
|
77
|
+
<span class="returnvalue">void</span>
|
78
|
+
</td>
|
79
|
+
<td class="function_name">
|
80
|
+
<a class="link" href="GtkTreeItem.html#gtk-tree-item-remove-subtree" title="gtk_tree_item_remove_subtree ()">gtk_tree_item_remove_subtree</a> <span class="c_punctuation">()</span>
|
81
|
+
</td>
|
82
|
+
</tr>
|
83
|
+
<tr>
|
84
|
+
<td class="function_type">
|
85
|
+
<span class="returnvalue">void</span>
|
86
|
+
</td>
|
87
|
+
<td class="function_name">
|
88
|
+
<a class="link" href="GtkTreeItem.html#gtk-tree-item-select" title="gtk_tree_item_select ()">gtk_tree_item_select</a> <span class="c_punctuation">()</span>
|
89
|
+
</td>
|
90
|
+
</tr>
|
91
|
+
<tr>
|
92
|
+
<td class="function_type">
|
93
|
+
<span class="returnvalue">void</span>
|
94
|
+
</td>
|
95
|
+
<td class="function_name">
|
96
|
+
<a class="link" href="GtkTreeItem.html#gtk-tree-item-deselect" title="gtk_tree_item_deselect ()">gtk_tree_item_deselect</a> <span class="c_punctuation">()</span>
|
97
|
+
</td>
|
98
|
+
</tr>
|
99
|
+
<tr>
|
100
|
+
<td class="function_type">
|
101
|
+
<span class="returnvalue">void</span>
|
102
|
+
</td>
|
103
|
+
<td class="function_name">
|
104
|
+
<a class="link" href="GtkTreeItem.html#gtk-tree-item-expand" title="gtk_tree_item_expand ()">gtk_tree_item_expand</a> <span class="c_punctuation">()</span>
|
105
|
+
</td>
|
106
|
+
</tr>
|
107
|
+
<tr>
|
108
|
+
<td class="function_type">
|
109
|
+
<span class="returnvalue">void</span>
|
110
|
+
</td>
|
111
|
+
<td class="function_name">
|
112
|
+
<a class="link" href="GtkTreeItem.html#gtk-tree-item-collapse" title="gtk_tree_item_collapse ()">gtk_tree_item_collapse</a> <span class="c_punctuation">()</span>
|
113
|
+
</td>
|
114
|
+
</tr>
|
115
|
+
</tbody>
|
116
|
+
</table></div>
|
117
|
+
</div>
|
118
|
+
<div class="refsect1">
|
119
|
+
<a name="GtkTreeItem.signals"></a><h2>Signals</h2>
|
120
|
+
<div class="informaltable"><table border="0">
|
121
|
+
<colgroup>
|
122
|
+
<col width="150px" class="signals_return">
|
123
|
+
<col width="300px" class="signals_name">
|
124
|
+
<col width="200px" class="signals_flags">
|
125
|
+
</colgroup>
|
126
|
+
<tbody>
|
127
|
+
<tr>
|
128
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
129
|
+
<td class="signal_name"><a class="link" href="GtkTreeItem.html#GtkTreeItem-collapse" title="The “collapse” signal">collapse</a></td>
|
130
|
+
<td class="signal_flags">Run First</td>
|
131
|
+
</tr>
|
132
|
+
<tr>
|
133
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
134
|
+
<td class="signal_name"><a class="link" href="GtkTreeItem.html#GtkTreeItem-expand" title="The “expand” signal">expand</a></td>
|
135
|
+
<td class="signal_flags">Run First</td>
|
136
|
+
</tr>
|
137
|
+
</tbody>
|
138
|
+
</table></div>
|
139
|
+
</div>
|
140
|
+
<div class="refsect1">
|
141
|
+
<a name="GtkTreeItem.other"></a><h2>Types and Values</h2>
|
142
|
+
<div class="informaltable"><table width="100%" border="0">
|
143
|
+
<colgroup>
|
144
|
+
<col width="150px" class="name">
|
145
|
+
<col class="description">
|
146
|
+
</colgroup>
|
147
|
+
<tbody><tr>
|
148
|
+
<td class="datatype_keyword">struct</td>
|
149
|
+
<td class="function_name"><a class="link" href="GtkTreeItem.html#GtkTreeItem-struct" title="struct GtkTreeItem">GtkTreeItem</a></td>
|
150
|
+
</tr></tbody>
|
151
|
+
</table></div>
|
152
|
+
</div>
|
153
|
+
<div class="refsect1">
|
154
|
+
<a name="GtkTreeItem.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
155
|
+
<pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
156
|
+
<span class="lineart">╰──</span> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
|
157
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
|
158
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
|
159
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
|
160
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkBin.html" title="GtkBin">GtkBin</a>
|
161
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkItem.html" title="GtkItem">GtkItem</a>
|
162
|
+
<span class="lineart">╰──</span> GtkTreeItem
|
163
|
+
</pre>
|
164
|
+
</div>
|
165
|
+
<div class="refsect1">
|
166
|
+
<a name="GtkTreeItem.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
167
|
+
<p>
|
168
|
+
GtkTreeItem implements
|
169
|
+
AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
170
|
+
</div>
|
171
|
+
<div class="refsect1">
|
172
|
+
<a name="GtkTreeItem.includes"></a><h2>Includes</h2>
|
173
|
+
<pre class="synopsis">#include <gtk/gtk.h>
|
174
|
+
</pre>
|
175
|
+
</div>
|
176
|
+
<div class="refsect1">
|
177
|
+
<a name="GtkTreeItem.description"></a><h2>Description</h2>
|
178
|
+
<p>
|
179
|
+
</p>
|
180
|
+
<div class="warning"><p>
|
181
|
+
<a class="link" href="GtkTree.html" title="GtkTree"><span class="type">GtkTree</span></a> is deprecated and unsupported. It is known to be
|
182
|
+
buggy. To use it, you must define the symbol <code class="literal">GTK_ENABLE_BROKEN</code>
|
183
|
+
prior to including the GTK+ header files. Use <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> instead.
|
184
|
+
</p></div>
|
185
|
+
<p>
|
186
|
+
</p>
|
187
|
+
</div>
|
188
|
+
<div class="refsect1">
|
189
|
+
<a name="GtkTreeItem.functions_details"></a><h2>Functions</h2>
|
190
|
+
<div class="refsect2">
|
191
|
+
<a name="GTK-TREE-ITEM-SUBTREE:CAPS"></a><h3>GTK_TREE_ITEM_SUBTREE()</h3>
|
192
|
+
<pre class="programlisting">#define GTK_TREE_ITEM_SUBTREE(obj) (GTK_TREE_ITEM(obj)->subtree)
|
193
|
+
</pre>
|
194
|
+
<div class="warning"><p><code class="literal">GTK_TREE_ITEM_SUBTREE</code> is deprecated and should not be used in newly-written code.</p></div>
|
195
|
+
<p>
|
196
|
+
</p>
|
197
|
+
</div>
|
198
|
+
<hr>
|
199
|
+
<div class="refsect2">
|
200
|
+
<a name="gtk-tree-item-new"></a><h3>gtk_tree_item_new ()</h3>
|
201
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
202
|
+
gtk_tree_item_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
203
|
+
<div class="warning"><p><code class="literal">gtk_tree_item_new</code> is deprecated and should not be used in newly-written code.</p></div>
|
204
|
+
<p>
|
205
|
+
</p>
|
206
|
+
<div class="refsect3">
|
207
|
+
<a name="id-1.4.23.18.10.3.6"></a><h4>Returns</h4>
|
208
|
+
<p></p>
|
209
|
+
</div>
|
210
|
+
</div>
|
211
|
+
<hr>
|
212
|
+
<div class="refsect2">
|
213
|
+
<a name="gtk-tree-item-new-with-label"></a><h3>gtk_tree_item_new_with_label ()</h3>
|
214
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
215
|
+
gtk_tree_item_new_with_label (<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *label</code></em>);</pre>
|
216
|
+
<div class="warning"><p><code class="literal">gtk_tree_item_new_with_label</code> is deprecated and should not be used in newly-written code.</p></div>
|
217
|
+
<p>
|
218
|
+
</p>
|
219
|
+
<div class="refsect3">
|
220
|
+
<a name="id-1.4.23.18.10.4.6"></a><h4>Returns</h4>
|
221
|
+
<p></p>
|
222
|
+
</div>
|
223
|
+
</div>
|
224
|
+
<hr>
|
225
|
+
<div class="refsect2">
|
226
|
+
<a name="gtk-tree-item-set-subtree"></a><h3>gtk_tree_item_set_subtree ()</h3>
|
227
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
228
|
+
gtk_tree_item_set_subtree (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>,
|
229
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *subtree</code></em>);</pre>
|
230
|
+
<div class="warning"><p><code class="literal">gtk_tree_item_set_subtree</code> is deprecated and should not be used in newly-written code.</p></div>
|
231
|
+
<p>
|
232
|
+
</p>
|
233
|
+
</div>
|
234
|
+
<hr>
|
235
|
+
<div class="refsect2">
|
236
|
+
<a name="gtk-tree-item-remove-subtree"></a><h3>gtk_tree_item_remove_subtree ()</h3>
|
237
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
238
|
+
gtk_tree_item_remove_subtree (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
|
239
|
+
<div class="warning"><p><code class="literal">gtk_tree_item_remove_subtree</code> is deprecated and should not be used in newly-written code.</p></div>
|
240
|
+
<p>
|
241
|
+
</p>
|
242
|
+
</div>
|
243
|
+
<hr>
|
244
|
+
<div class="refsect2">
|
245
|
+
<a name="gtk-tree-item-select"></a><h3>gtk_tree_item_select ()</h3>
|
246
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
247
|
+
gtk_tree_item_select (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
|
248
|
+
<div class="warning"><p><code class="literal">gtk_tree_item_select</code> is deprecated and should not be used in newly-written code.</p></div>
|
249
|
+
<p>
|
250
|
+
</p>
|
251
|
+
</div>
|
252
|
+
<hr>
|
253
|
+
<div class="refsect2">
|
254
|
+
<a name="gtk-tree-item-deselect"></a><h3>gtk_tree_item_deselect ()</h3>
|
255
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
256
|
+
gtk_tree_item_deselect (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
|
257
|
+
<div class="warning"><p><code class="literal">gtk_tree_item_deselect</code> is deprecated and should not be used in newly-written code.</p></div>
|
258
|
+
<p>
|
259
|
+
</p>
|
260
|
+
</div>
|
261
|
+
<hr>
|
262
|
+
<div class="refsect2">
|
263
|
+
<a name="gtk-tree-item-expand"></a><h3>gtk_tree_item_expand ()</h3>
|
264
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
265
|
+
gtk_tree_item_expand (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
|
266
|
+
<div class="warning"><p><code class="literal">gtk_tree_item_expand</code> is deprecated and should not be used in newly-written code.</p></div>
|
267
|
+
<p>
|
268
|
+
</p>
|
269
|
+
</div>
|
270
|
+
<hr>
|
271
|
+
<div class="refsect2">
|
272
|
+
<a name="gtk-tree-item-collapse"></a><h3>gtk_tree_item_collapse ()</h3>
|
273
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
274
|
+
gtk_tree_item_collapse (<em class="parameter"><code><a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *tree_item</code></em>);</pre>
|
275
|
+
<div class="warning"><p><code class="literal">gtk_tree_item_collapse</code> is deprecated and should not be used in newly-written code.</p></div>
|
276
|
+
<p>
|
277
|
+
</p>
|
278
|
+
</div>
|
279
|
+
</div>
|
280
|
+
<div class="refsect1">
|
281
|
+
<a name="GtkTreeItem.other_details"></a><h2>Types and Values</h2>
|
282
|
+
<div class="refsect2">
|
283
|
+
<a name="GtkTreeItem-struct"></a><h3>struct GtkTreeItem</h3>
|
284
|
+
<pre class="programlisting">struct GtkTreeItem;</pre>
|
285
|
+
<div class="warning"><p><code class="literal">GtkTreeItem</code> is deprecated and should not be used in newly-written code.</p></div>
|
286
|
+
<p>
|
287
|
+
</p>
|
288
|
+
</div>
|
289
|
+
</div>
|
290
|
+
<div class="refsect1">
|
291
|
+
<a name="GtkTreeItem.signal-details"></a><h2>Signal Details</h2>
|
292
|
+
<div class="refsect2">
|
293
|
+
<a name="GtkTreeItem-collapse"></a><h3>The <code class="literal">“collapse”</code> signal</h3>
|
294
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
295
|
+
user_function (<a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *treeitem,
|
296
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
297
|
+
<p>
|
298
|
+
</p>
|
299
|
+
<div class="refsect3">
|
300
|
+
<a name="id-1.4.23.18.12.2.5"></a><h4>Parameters</h4>
|
301
|
+
<div class="informaltable"><table width="100%" border="0">
|
302
|
+
<colgroup>
|
303
|
+
<col width="150px" class="parameters_name">
|
304
|
+
<col class="parameters_description">
|
305
|
+
<col width="200px" class="parameters_annotations">
|
306
|
+
</colgroup>
|
307
|
+
<tbody>
|
308
|
+
<tr>
|
309
|
+
<td class="parameter_name"><p>treeitem</p></td>
|
310
|
+
<td class="parameter_description"><p>the object which received the signal.</p></td>
|
311
|
+
<td class="parameter_annotations"> </td>
|
312
|
+
</tr>
|
313
|
+
<tr>
|
314
|
+
<td class="parameter_name"><p>user_data</p></td>
|
315
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
316
|
+
<td class="parameter_annotations"> </td>
|
317
|
+
</tr>
|
318
|
+
</tbody>
|
319
|
+
</table></div>
|
320
|
+
</div>
|
321
|
+
<p>Flags: Run First</p>
|
322
|
+
</div>
|
323
|
+
<hr>
|
324
|
+
<div class="refsect2">
|
325
|
+
<a name="GtkTreeItem-expand"></a><h3>The <code class="literal">“expand”</code> signal</h3>
|
326
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
327
|
+
user_function (<a class="link" href="GtkTreeItem.html" title="GtkTreeItem"><span class="type">GtkTreeItem</span></a> *treeitem,
|
328
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
329
|
+
<p>
|
330
|
+
</p>
|
331
|
+
<div class="refsect3">
|
332
|
+
<a name="id-1.4.23.18.12.3.5"></a><h4>Parameters</h4>
|
333
|
+
<div class="informaltable"><table width="100%" border="0">
|
334
|
+
<colgroup>
|
335
|
+
<col width="150px" class="parameters_name">
|
336
|
+
<col class="parameters_description">
|
337
|
+
<col width="200px" class="parameters_annotations">
|
338
|
+
</colgroup>
|
339
|
+
<tbody>
|
340
|
+
<tr>
|
341
|
+
<td class="parameter_name"><p>treeitem</p></td>
|
342
|
+
<td class="parameter_description"><p>the object which received the signal.</p></td>
|
343
|
+
<td class="parameter_annotations"> </td>
|
344
|
+
</tr>
|
345
|
+
<tr>
|
346
|
+
<td class="parameter_name"><p>user_data</p></td>
|
347
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
348
|
+
<td class="parameter_annotations"> </td>
|
349
|
+
</tr>
|
350
|
+
</tbody>
|
351
|
+
</table></div>
|
352
|
+
</div>
|
353
|
+
<p>Flags: Run First</p>
|
354
|
+
</div>
|
355
|
+
</div>
|
356
|
+
</div>
|
357
|
+
<div class="footer">
|
358
|
+
<hr>
|
359
|
+
Generated by GTK-Doc V1.21.1</div>
|
360
|
+
</body>
|
361
|
+
</html>
|
@@ -0,0 +1,3330 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>GTK+ 2 Reference Manual: GtkTreeModel</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
|
8
|
+
<link rel="up" href="TreeWidgetObjects.html" title="Tree, List and Icon Grid Widgets">
|
9
|
+
<link rel="prev" href="TreeWidget.html" title="Tree and List Widget Overview">
|
10
|
+
<link rel="next" href="GtkTreeSelection.html" title="GtkTreeSelection">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#GtkTreeModel.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#GtkTreeModel.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_prerequisites"> <span class="dim">|</span>
|
20
|
+
<a href="#GtkTreeModel.prerequisites" class="shortcut">Prerequisites</a></span><span id="nav_derived_interfaces"> <span class="dim">|</span>
|
21
|
+
<a href="#GtkTreeModel.derived-interfaces" class="shortcut">Known Derived Interfaces</a></span><span id="nav_implementations"> <span class="dim">|</span>
|
22
|
+
<a href="#GtkTreeModel.implementations" class="shortcut">Known Implementations</a></span><span id="nav_signals"> <span class="dim">|</span>
|
23
|
+
<a href="#GtkTreeModel.signals" class="shortcut">Signals</a></span>
|
24
|
+
</td>
|
25
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
26
|
+
<td><a accesskey="u" href="TreeWidgetObjects.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
27
|
+
<td><a accesskey="p" href="TreeWidget.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
28
|
+
<td><a accesskey="n" href="GtkTreeSelection.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
29
|
+
</tr></table>
|
30
|
+
<div class="refentry">
|
31
|
+
<a name="GtkTreeModel"></a><div class="titlepage"></div>
|
32
|
+
<div class="refnamediv"><table width="100%"><tr>
|
33
|
+
<td valign="top">
|
34
|
+
<h2><span class="refentrytitle"><a name="GtkTreeModel.top_of_page"></a>GtkTreeModel</span></h2>
|
35
|
+
<p>GtkTreeModel — The tree interface used by GtkTreeView</p>
|
36
|
+
</td>
|
37
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
38
|
+
</tr></table></div>
|
39
|
+
<div class="refsect1">
|
40
|
+
<a name="GtkTreeModel.functions"></a><h2>Functions</h2>
|
41
|
+
<div class="informaltable"><table width="100%" border="0">
|
42
|
+
<colgroup>
|
43
|
+
<col width="150px" class="functions_return">
|
44
|
+
<col class="functions_name">
|
45
|
+
</colgroup>
|
46
|
+
<tbody>
|
47
|
+
<tr>
|
48
|
+
<td class="function_type">
|
49
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
50
|
+
</td>
|
51
|
+
<td class="function_name">
|
52
|
+
<span class="c_punctuation">(</span><a class="link" href="GtkTreeModel.html#GtkTreeModelForeachFunc" title="GtkTreeModelForeachFunc ()">*GtkTreeModelForeachFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
53
|
+
</td>
|
54
|
+
</tr>
|
55
|
+
<tr>
|
56
|
+
<td class="function_type">
|
57
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
58
|
+
</td>
|
59
|
+
<td class="function_name">
|
60
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-new" title="gtk_tree_path_new ()">gtk_tree_path_new</a> <span class="c_punctuation">()</span>
|
61
|
+
</td>
|
62
|
+
</tr>
|
63
|
+
<tr>
|
64
|
+
<td class="function_type">
|
65
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
66
|
+
</td>
|
67
|
+
<td class="function_name">
|
68
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-new-from-string" title="gtk_tree_path_new_from_string ()">gtk_tree_path_new_from_string</a> <span class="c_punctuation">()</span>
|
69
|
+
</td>
|
70
|
+
</tr>
|
71
|
+
<tr>
|
72
|
+
<td class="function_type">
|
73
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
74
|
+
</td>
|
75
|
+
<td class="function_name">
|
76
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-new-from-indices" title="gtk_tree_path_new_from_indices ()">gtk_tree_path_new_from_indices</a> <span class="c_punctuation">()</span>
|
77
|
+
</td>
|
78
|
+
</tr>
|
79
|
+
<tr>
|
80
|
+
<td class="function_type">
|
81
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
82
|
+
</td>
|
83
|
+
<td class="function_name">
|
84
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-to-string" title="gtk_tree_path_to_string ()">gtk_tree_path_to_string</a> <span class="c_punctuation">()</span>
|
85
|
+
</td>
|
86
|
+
</tr>
|
87
|
+
<tr>
|
88
|
+
<td class="function_type">
|
89
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
90
|
+
</td>
|
91
|
+
<td class="function_name">
|
92
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-new-first" title="gtk_tree_path_new_first ()">gtk_tree_path_new_first</a> <span class="c_punctuation">()</span>
|
93
|
+
</td>
|
94
|
+
</tr>
|
95
|
+
<tr>
|
96
|
+
<td class="define_keyword">#define</td>
|
97
|
+
<td class="function_name"><a class="link" href="GtkTreeModel.html#gtk-tree-path-new-root" title="gtk_tree_path_new_root">gtk_tree_path_new_root</a></td>
|
98
|
+
</tr>
|
99
|
+
<tr>
|
100
|
+
<td class="function_type">
|
101
|
+
<span class="returnvalue">void</span>
|
102
|
+
</td>
|
103
|
+
<td class="function_name">
|
104
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-append-index" title="gtk_tree_path_append_index ()">gtk_tree_path_append_index</a> <span class="c_punctuation">()</span>
|
105
|
+
</td>
|
106
|
+
</tr>
|
107
|
+
<tr>
|
108
|
+
<td class="function_type">
|
109
|
+
<span class="returnvalue">void</span>
|
110
|
+
</td>
|
111
|
+
<td class="function_name">
|
112
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-prepend-index" title="gtk_tree_path_prepend_index ()">gtk_tree_path_prepend_index</a> <span class="c_punctuation">()</span>
|
113
|
+
</td>
|
114
|
+
</tr>
|
115
|
+
<tr>
|
116
|
+
<td class="function_type">
|
117
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
118
|
+
</td>
|
119
|
+
<td class="function_name">
|
120
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-get-depth" title="gtk_tree_path_get_depth ()">gtk_tree_path_get_depth</a> <span class="c_punctuation">()</span>
|
121
|
+
</td>
|
122
|
+
</tr>
|
123
|
+
<tr>
|
124
|
+
<td class="function_type">
|
125
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *
|
126
|
+
</td>
|
127
|
+
<td class="function_name">
|
128
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-get-indices" title="gtk_tree_path_get_indices ()">gtk_tree_path_get_indices</a> <span class="c_punctuation">()</span>
|
129
|
+
</td>
|
130
|
+
</tr>
|
131
|
+
<tr>
|
132
|
+
<td class="function_type">
|
133
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *
|
134
|
+
</td>
|
135
|
+
<td class="function_name">
|
136
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-get-indices-with-depth" title="gtk_tree_path_get_indices_with_depth ()">gtk_tree_path_get_indices_with_depth</a> <span class="c_punctuation">()</span>
|
137
|
+
</td>
|
138
|
+
</tr>
|
139
|
+
<tr>
|
140
|
+
<td class="function_type">
|
141
|
+
<span class="returnvalue">void</span>
|
142
|
+
</td>
|
143
|
+
<td class="function_name">
|
144
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()">gtk_tree_path_free</a> <span class="c_punctuation">()</span>
|
145
|
+
</td>
|
146
|
+
</tr>
|
147
|
+
<tr>
|
148
|
+
<td class="function_type">
|
149
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
150
|
+
</td>
|
151
|
+
<td class="function_name">
|
152
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-copy" title="gtk_tree_path_copy ()">gtk_tree_path_copy</a> <span class="c_punctuation">()</span>
|
153
|
+
</td>
|
154
|
+
</tr>
|
155
|
+
<tr>
|
156
|
+
<td class="function_type">
|
157
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
158
|
+
</td>
|
159
|
+
<td class="function_name">
|
160
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-compare" title="gtk_tree_path_compare ()">gtk_tree_path_compare</a> <span class="c_punctuation">()</span>
|
161
|
+
</td>
|
162
|
+
</tr>
|
163
|
+
<tr>
|
164
|
+
<td class="function_type">
|
165
|
+
<span class="returnvalue">void</span>
|
166
|
+
</td>
|
167
|
+
<td class="function_name">
|
168
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-next" title="gtk_tree_path_next ()">gtk_tree_path_next</a> <span class="c_punctuation">()</span>
|
169
|
+
</td>
|
170
|
+
</tr>
|
171
|
+
<tr>
|
172
|
+
<td class="function_type">
|
173
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
174
|
+
</td>
|
175
|
+
<td class="function_name">
|
176
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-prev" title="gtk_tree_path_prev ()">gtk_tree_path_prev</a> <span class="c_punctuation">()</span>
|
177
|
+
</td>
|
178
|
+
</tr>
|
179
|
+
<tr>
|
180
|
+
<td class="function_type">
|
181
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
182
|
+
</td>
|
183
|
+
<td class="function_name">
|
184
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-up" title="gtk_tree_path_up ()">gtk_tree_path_up</a> <span class="c_punctuation">()</span>
|
185
|
+
</td>
|
186
|
+
</tr>
|
187
|
+
<tr>
|
188
|
+
<td class="function_type">
|
189
|
+
<span class="returnvalue">void</span>
|
190
|
+
</td>
|
191
|
+
<td class="function_name">
|
192
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-down" title="gtk_tree_path_down ()">gtk_tree_path_down</a> <span class="c_punctuation">()</span>
|
193
|
+
</td>
|
194
|
+
</tr>
|
195
|
+
<tr>
|
196
|
+
<td class="function_type">
|
197
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
198
|
+
</td>
|
199
|
+
<td class="function_name">
|
200
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-is-ancestor" title="gtk_tree_path_is_ancestor ()">gtk_tree_path_is_ancestor</a> <span class="c_punctuation">()</span>
|
201
|
+
</td>
|
202
|
+
</tr>
|
203
|
+
<tr>
|
204
|
+
<td class="function_type">
|
205
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
206
|
+
</td>
|
207
|
+
<td class="function_name">
|
208
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-path-is-descendant" title="gtk_tree_path_is_descendant ()">gtk_tree_path_is_descendant</a> <span class="c_punctuation">()</span>
|
209
|
+
</td>
|
210
|
+
</tr>
|
211
|
+
<tr>
|
212
|
+
<td class="function_type">
|
213
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> *
|
214
|
+
</td>
|
215
|
+
<td class="function_name">
|
216
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new" title="gtk_tree_row_reference_new ()">gtk_tree_row_reference_new</a> <span class="c_punctuation">()</span>
|
217
|
+
</td>
|
218
|
+
</tr>
|
219
|
+
<tr>
|
220
|
+
<td class="function_type">
|
221
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> *
|
222
|
+
</td>
|
223
|
+
<td class="function_name">
|
224
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()">gtk_tree_row_reference_new_proxy</a> <span class="c_punctuation">()</span>
|
225
|
+
</td>
|
226
|
+
</tr>
|
227
|
+
<tr>
|
228
|
+
<td class="function_type">
|
229
|
+
<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *
|
230
|
+
</td>
|
231
|
+
<td class="function_name">
|
232
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-get-model" title="gtk_tree_row_reference_get_model ()">gtk_tree_row_reference_get_model</a> <span class="c_punctuation">()</span>
|
233
|
+
</td>
|
234
|
+
</tr>
|
235
|
+
<tr>
|
236
|
+
<td class="function_type">
|
237
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
238
|
+
</td>
|
239
|
+
<td class="function_name">
|
240
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-get-path" title="gtk_tree_row_reference_get_path ()">gtk_tree_row_reference_get_path</a> <span class="c_punctuation">()</span>
|
241
|
+
</td>
|
242
|
+
</tr>
|
243
|
+
<tr>
|
244
|
+
<td class="function_type">
|
245
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
246
|
+
</td>
|
247
|
+
<td class="function_name">
|
248
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-valid" title="gtk_tree_row_reference_valid ()">gtk_tree_row_reference_valid</a> <span class="c_punctuation">()</span>
|
249
|
+
</td>
|
250
|
+
</tr>
|
251
|
+
<tr>
|
252
|
+
<td class="function_type">
|
253
|
+
<span class="returnvalue">void</span>
|
254
|
+
</td>
|
255
|
+
<td class="function_name">
|
256
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-free" title="gtk_tree_row_reference_free ()">gtk_tree_row_reference_free</a> <span class="c_punctuation">()</span>
|
257
|
+
</td>
|
258
|
+
</tr>
|
259
|
+
<tr>
|
260
|
+
<td class="function_type">
|
261
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> *
|
262
|
+
</td>
|
263
|
+
<td class="function_name">
|
264
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-copy" title="gtk_tree_row_reference_copy ()">gtk_tree_row_reference_copy</a> <span class="c_punctuation">()</span>
|
265
|
+
</td>
|
266
|
+
</tr>
|
267
|
+
<tr>
|
268
|
+
<td class="function_type">
|
269
|
+
<span class="returnvalue">void</span>
|
270
|
+
</td>
|
271
|
+
<td class="function_name">
|
272
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-inserted" title="gtk_tree_row_reference_inserted ()">gtk_tree_row_reference_inserted</a> <span class="c_punctuation">()</span>
|
273
|
+
</td>
|
274
|
+
</tr>
|
275
|
+
<tr>
|
276
|
+
<td class="function_type">
|
277
|
+
<span class="returnvalue">void</span>
|
278
|
+
</td>
|
279
|
+
<td class="function_name">
|
280
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-deleted" title="gtk_tree_row_reference_deleted ()">gtk_tree_row_reference_deleted</a> <span class="c_punctuation">()</span>
|
281
|
+
</td>
|
282
|
+
</tr>
|
283
|
+
<tr>
|
284
|
+
<td class="function_type">
|
285
|
+
<span class="returnvalue">void</span>
|
286
|
+
</td>
|
287
|
+
<td class="function_name">
|
288
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-reordered" title="gtk_tree_row_reference_reordered ()">gtk_tree_row_reference_reordered</a> <span class="c_punctuation">()</span>
|
289
|
+
</td>
|
290
|
+
</tr>
|
291
|
+
<tr>
|
292
|
+
<td class="function_type">
|
293
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="returnvalue">GtkTreeIter</span></a> *
|
294
|
+
</td>
|
295
|
+
<td class="function_name">
|
296
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-iter-copy" title="gtk_tree_iter_copy ()">gtk_tree_iter_copy</a> <span class="c_punctuation">()</span>
|
297
|
+
</td>
|
298
|
+
</tr>
|
299
|
+
<tr>
|
300
|
+
<td class="function_type">
|
301
|
+
<span class="returnvalue">void</span>
|
302
|
+
</td>
|
303
|
+
<td class="function_name">
|
304
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-iter-free" title="gtk_tree_iter_free ()">gtk_tree_iter_free</a> <span class="c_punctuation">()</span>
|
305
|
+
</td>
|
306
|
+
</tr>
|
307
|
+
<tr>
|
308
|
+
<td class="function_type">
|
309
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags"><span class="returnvalue">GtkTreeModelFlags</span></a>
|
310
|
+
</td>
|
311
|
+
<td class="function_name">
|
312
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-flags" title="gtk_tree_model_get_flags ()">gtk_tree_model_get_flags</a> <span class="c_punctuation">()</span>
|
313
|
+
</td>
|
314
|
+
</tr>
|
315
|
+
<tr>
|
316
|
+
<td class="function_type">
|
317
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
318
|
+
</td>
|
319
|
+
<td class="function_name">
|
320
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-n-columns" title="gtk_tree_model_get_n_columns ()">gtk_tree_model_get_n_columns</a> <span class="c_punctuation">()</span>
|
321
|
+
</td>
|
322
|
+
</tr>
|
323
|
+
<tr>
|
324
|
+
<td class="function_type">
|
325
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a>
|
326
|
+
</td>
|
327
|
+
<td class="function_name">
|
328
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-column-type" title="gtk_tree_model_get_column_type ()">gtk_tree_model_get_column_type</a> <span class="c_punctuation">()</span>
|
329
|
+
</td>
|
330
|
+
</tr>
|
331
|
+
<tr>
|
332
|
+
<td class="function_type">
|
333
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
334
|
+
</td>
|
335
|
+
<td class="function_name">
|
336
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter" title="gtk_tree_model_get_iter ()">gtk_tree_model_get_iter</a> <span class="c_punctuation">()</span>
|
337
|
+
</td>
|
338
|
+
</tr>
|
339
|
+
<tr>
|
340
|
+
<td class="function_type">
|
341
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
342
|
+
</td>
|
343
|
+
<td class="function_name">
|
344
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter-from-string" title="gtk_tree_model_get_iter_from_string ()">gtk_tree_model_get_iter_from_string</a> <span class="c_punctuation">()</span>
|
345
|
+
</td>
|
346
|
+
</tr>
|
347
|
+
<tr>
|
348
|
+
<td class="function_type">
|
349
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
350
|
+
</td>
|
351
|
+
<td class="function_name">
|
352
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter-first" title="gtk_tree_model_get_iter_first ()">gtk_tree_model_get_iter_first</a> <span class="c_punctuation">()</span>
|
353
|
+
</td>
|
354
|
+
</tr>
|
355
|
+
<tr>
|
356
|
+
<td class="define_keyword">#define</td>
|
357
|
+
<td class="function_name">
|
358
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter-root" title="gtk_tree_model_get_iter_root()">gtk_tree_model_get_iter_root</a><span class="c_punctuation">()</span>
|
359
|
+
</td>
|
360
|
+
</tr>
|
361
|
+
<tr>
|
362
|
+
<td class="function_type">
|
363
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
364
|
+
</td>
|
365
|
+
<td class="function_name">
|
366
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-path" title="gtk_tree_model_get_path ()">gtk_tree_model_get_path</a> <span class="c_punctuation">()</span>
|
367
|
+
</td>
|
368
|
+
</tr>
|
369
|
+
<tr>
|
370
|
+
<td class="function_type">
|
371
|
+
<span class="returnvalue">void</span>
|
372
|
+
</td>
|
373
|
+
<td class="function_name">
|
374
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-value" title="gtk_tree_model_get_value ()">gtk_tree_model_get_value</a> <span class="c_punctuation">()</span>
|
375
|
+
</td>
|
376
|
+
</tr>
|
377
|
+
<tr>
|
378
|
+
<td class="function_type">
|
379
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
380
|
+
</td>
|
381
|
+
<td class="function_name">
|
382
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-next" title="gtk_tree_model_iter_next ()">gtk_tree_model_iter_next</a> <span class="c_punctuation">()</span>
|
383
|
+
</td>
|
384
|
+
</tr>
|
385
|
+
<tr>
|
386
|
+
<td class="function_type">
|
387
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
388
|
+
</td>
|
389
|
+
<td class="function_name">
|
390
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-children" title="gtk_tree_model_iter_children ()">gtk_tree_model_iter_children</a> <span class="c_punctuation">()</span>
|
391
|
+
</td>
|
392
|
+
</tr>
|
393
|
+
<tr>
|
394
|
+
<td class="function_type">
|
395
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
396
|
+
</td>
|
397
|
+
<td class="function_name">
|
398
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-has-child" title="gtk_tree_model_iter_has_child ()">gtk_tree_model_iter_has_child</a> <span class="c_punctuation">()</span>
|
399
|
+
</td>
|
400
|
+
</tr>
|
401
|
+
<tr>
|
402
|
+
<td class="function_type">
|
403
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
404
|
+
</td>
|
405
|
+
<td class="function_name">
|
406
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-n-children" title="gtk_tree_model_iter_n_children ()">gtk_tree_model_iter_n_children</a> <span class="c_punctuation">()</span>
|
407
|
+
</td>
|
408
|
+
</tr>
|
409
|
+
<tr>
|
410
|
+
<td class="function_type">
|
411
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
412
|
+
</td>
|
413
|
+
<td class="function_name">
|
414
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-nth-child" title="gtk_tree_model_iter_nth_child ()">gtk_tree_model_iter_nth_child</a> <span class="c_punctuation">()</span>
|
415
|
+
</td>
|
416
|
+
</tr>
|
417
|
+
<tr>
|
418
|
+
<td class="function_type">
|
419
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
420
|
+
</td>
|
421
|
+
<td class="function_name">
|
422
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-parent" title="gtk_tree_model_iter_parent ()">gtk_tree_model_iter_parent</a> <span class="c_punctuation">()</span>
|
423
|
+
</td>
|
424
|
+
</tr>
|
425
|
+
<tr>
|
426
|
+
<td class="function_type">
|
427
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
428
|
+
</td>
|
429
|
+
<td class="function_name">
|
430
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-string-from-iter" title="gtk_tree_model_get_string_from_iter ()">gtk_tree_model_get_string_from_iter</a> <span class="c_punctuation">()</span>
|
431
|
+
</td>
|
432
|
+
</tr>
|
433
|
+
<tr>
|
434
|
+
<td class="function_type">
|
435
|
+
<span class="returnvalue">void</span>
|
436
|
+
</td>
|
437
|
+
<td class="function_name">
|
438
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-ref-node" title="gtk_tree_model_ref_node ()">gtk_tree_model_ref_node</a> <span class="c_punctuation">()</span>
|
439
|
+
</td>
|
440
|
+
</tr>
|
441
|
+
<tr>
|
442
|
+
<td class="function_type">
|
443
|
+
<span class="returnvalue">void</span>
|
444
|
+
</td>
|
445
|
+
<td class="function_name">
|
446
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-unref-node" title="gtk_tree_model_unref_node ()">gtk_tree_model_unref_node</a> <span class="c_punctuation">()</span>
|
447
|
+
</td>
|
448
|
+
</tr>
|
449
|
+
<tr>
|
450
|
+
<td class="function_type">
|
451
|
+
<span class="returnvalue">void</span>
|
452
|
+
</td>
|
453
|
+
<td class="function_name">
|
454
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get" title="gtk_tree_model_get ()">gtk_tree_model_get</a> <span class="c_punctuation">()</span>
|
455
|
+
</td>
|
456
|
+
</tr>
|
457
|
+
<tr>
|
458
|
+
<td class="function_type">
|
459
|
+
<span class="returnvalue">void</span>
|
460
|
+
</td>
|
461
|
+
<td class="function_name">
|
462
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-valist" title="gtk_tree_model_get_valist ()">gtk_tree_model_get_valist</a> <span class="c_punctuation">()</span>
|
463
|
+
</td>
|
464
|
+
</tr>
|
465
|
+
<tr>
|
466
|
+
<td class="function_type">
|
467
|
+
<span class="returnvalue">void</span>
|
468
|
+
</td>
|
469
|
+
<td class="function_name">
|
470
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-foreach" title="gtk_tree_model_foreach ()">gtk_tree_model_foreach</a> <span class="c_punctuation">()</span>
|
471
|
+
</td>
|
472
|
+
</tr>
|
473
|
+
<tr>
|
474
|
+
<td class="function_type">
|
475
|
+
<span class="returnvalue">void</span>
|
476
|
+
</td>
|
477
|
+
<td class="function_name">
|
478
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-row-changed" title="gtk_tree_model_row_changed ()">gtk_tree_model_row_changed</a> <span class="c_punctuation">()</span>
|
479
|
+
</td>
|
480
|
+
</tr>
|
481
|
+
<tr>
|
482
|
+
<td class="function_type">
|
483
|
+
<span class="returnvalue">void</span>
|
484
|
+
</td>
|
485
|
+
<td class="function_name">
|
486
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-row-inserted" title="gtk_tree_model_row_inserted ()">gtk_tree_model_row_inserted</a> <span class="c_punctuation">()</span>
|
487
|
+
</td>
|
488
|
+
</tr>
|
489
|
+
<tr>
|
490
|
+
<td class="function_type">
|
491
|
+
<span class="returnvalue">void</span>
|
492
|
+
</td>
|
493
|
+
<td class="function_name">
|
494
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-row-has-child-toggled" title="gtk_tree_model_row_has_child_toggled ()">gtk_tree_model_row_has_child_toggled</a> <span class="c_punctuation">()</span>
|
495
|
+
</td>
|
496
|
+
</tr>
|
497
|
+
<tr>
|
498
|
+
<td class="function_type">
|
499
|
+
<span class="returnvalue">void</span>
|
500
|
+
</td>
|
501
|
+
<td class="function_name">
|
502
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-row-deleted" title="gtk_tree_model_row_deleted ()">gtk_tree_model_row_deleted</a> <span class="c_punctuation">()</span>
|
503
|
+
</td>
|
504
|
+
</tr>
|
505
|
+
<tr>
|
506
|
+
<td class="function_type">
|
507
|
+
<span class="returnvalue">void</span>
|
508
|
+
</td>
|
509
|
+
<td class="function_name">
|
510
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-rows-reordered" title="gtk_tree_model_rows_reordered ()">gtk_tree_model_rows_reordered</a> <span class="c_punctuation">()</span>
|
511
|
+
</td>
|
512
|
+
</tr>
|
513
|
+
</tbody>
|
514
|
+
</table></div>
|
515
|
+
</div>
|
516
|
+
<div class="refsect1">
|
517
|
+
<a name="GtkTreeModel.signals"></a><h2>Signals</h2>
|
518
|
+
<div class="informaltable"><table border="0">
|
519
|
+
<colgroup>
|
520
|
+
<col width="150px" class="signals_return">
|
521
|
+
<col width="300px" class="signals_name">
|
522
|
+
<col width="200px" class="signals_flags">
|
523
|
+
</colgroup>
|
524
|
+
<tbody>
|
525
|
+
<tr>
|
526
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
527
|
+
<td class="signal_name"><a class="link" href="GtkTreeModel.html#GtkTreeModel-row-changed" title="The “row-changed” signal">row-changed</a></td>
|
528
|
+
<td class="signal_flags">Run Last</td>
|
529
|
+
</tr>
|
530
|
+
<tr>
|
531
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
532
|
+
<td class="signal_name"><a class="link" href="GtkTreeModel.html#GtkTreeModel-row-deleted" title="The “row-deleted” signal">row-deleted</a></td>
|
533
|
+
<td class="signal_flags">Run First</td>
|
534
|
+
</tr>
|
535
|
+
<tr>
|
536
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
537
|
+
<td class="signal_name"><a class="link" href="GtkTreeModel.html#GtkTreeModel-row-has-child-toggled" title="The “row-has-child-toggled” signal">row-has-child-toggled</a></td>
|
538
|
+
<td class="signal_flags">Run Last</td>
|
539
|
+
</tr>
|
540
|
+
<tr>
|
541
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
542
|
+
<td class="signal_name"><a class="link" href="GtkTreeModel.html#GtkTreeModel-row-inserted" title="The “row-inserted” signal">row-inserted</a></td>
|
543
|
+
<td class="signal_flags">Run First</td>
|
544
|
+
</tr>
|
545
|
+
<tr>
|
546
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
547
|
+
<td class="signal_name"><a class="link" href="GtkTreeModel.html#GtkTreeModel-rows-reordered" title="The “rows-reordered” signal">rows-reordered</a></td>
|
548
|
+
<td class="signal_flags">Run First</td>
|
549
|
+
</tr>
|
550
|
+
</tbody>
|
551
|
+
</table></div>
|
552
|
+
</div>
|
553
|
+
<a name="GtkTreeIter"></a><a name="GtkTreePath"></a><div class="refsect1">
|
554
|
+
<a name="GtkTreeModel.other"></a><h2>Types and Values</h2>
|
555
|
+
<div class="informaltable"><table width="100%" border="0">
|
556
|
+
<colgroup>
|
557
|
+
<col width="150px" class="name">
|
558
|
+
<col class="description">
|
559
|
+
</colgroup>
|
560
|
+
<tbody>
|
561
|
+
<tr>
|
562
|
+
<td class="datatype_keyword"> </td>
|
563
|
+
<td class="function_name"><a class="link" href="GtkTreeModel.html#GtkTreeModel-struct" title="GtkTreeModel">GtkTreeModel</a></td>
|
564
|
+
</tr>
|
565
|
+
<tr>
|
566
|
+
<td class="datatype_keyword">struct</td>
|
567
|
+
<td class="function_name"><a class="link" href="GtkTreeModel.html#GtkTreeIter-struct" title="struct GtkTreeIter">GtkTreeIter</a></td>
|
568
|
+
</tr>
|
569
|
+
<tr>
|
570
|
+
<td class="datatype_keyword"> </td>
|
571
|
+
<td class="function_name"><a class="link" href="GtkTreeModel.html#GtkTreePath-struct" title="GtkTreePath">GtkTreePath</a></td>
|
572
|
+
</tr>
|
573
|
+
<tr>
|
574
|
+
<td class="datatype_keyword"> </td>
|
575
|
+
<td class="function_name"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference">GtkTreeRowReference</a></td>
|
576
|
+
</tr>
|
577
|
+
<tr>
|
578
|
+
<td class="datatype_keyword">struct</td>
|
579
|
+
<td class="function_name"><a class="link" href="GtkTreeModel.html#GtkTreeModelIface" title="struct GtkTreeModelIface">GtkTreeModelIface</a></td>
|
580
|
+
</tr>
|
581
|
+
<tr>
|
582
|
+
<td class="datatype_keyword">enum</td>
|
583
|
+
<td class="function_name"><a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags">GtkTreeModelFlags</a></td>
|
584
|
+
</tr>
|
585
|
+
</tbody>
|
586
|
+
</table></div>
|
587
|
+
</div>
|
588
|
+
<div class="refsect1">
|
589
|
+
<a name="GtkTreeModel.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
590
|
+
<pre class="screen"> GBoxed
|
591
|
+
<span class="lineart">├──</span> GtkTreeIter
|
592
|
+
<span class="lineart">╰──</span> GtkTreePath
|
593
|
+
GInterface
|
594
|
+
<span class="lineart">╰──</span> GtkTreeModel
|
595
|
+
</pre>
|
596
|
+
</div>
|
597
|
+
<div class="refsect1">
|
598
|
+
<a name="GtkTreeModel.prerequisites"></a><h2>Prerequisites</h2>
|
599
|
+
<p>
|
600
|
+
GtkTreeModel requires
|
601
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>.</p>
|
602
|
+
</div>
|
603
|
+
<div class="refsect1">
|
604
|
+
<a name="GtkTreeModel.derived-interfaces"></a><h2>Known Derived Interfaces</h2>
|
605
|
+
<p>
|
606
|
+
GtkTreeModel is required by
|
607
|
+
<a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable">GtkTreeSortable</a>.</p>
|
608
|
+
</div>
|
609
|
+
<div class="refsect1">
|
610
|
+
<a name="GtkTreeModel.implementations"></a><h2>Known Implementations</h2>
|
611
|
+
<p>
|
612
|
+
GtkTreeModel is implemented by
|
613
|
+
<a class="link" href="GtkListStore.html" title="GtkListStore">GtkListStore</a>, <a class="link" href="GtkTreeModelFilter.html" title="GtkTreeModelFilter">GtkTreeModelFilter</a>, <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort">GtkTreeModelSort</a> and <a class="link" href="GtkTreeStore.html" title="GtkTreeStore">GtkTreeStore</a>.</p>
|
614
|
+
</div>
|
615
|
+
<div class="refsect1">
|
616
|
+
<a name="GtkTreeModel.includes"></a><h2>Includes</h2>
|
617
|
+
<pre class="synopsis">#include <gtk/gtk.h>
|
618
|
+
</pre>
|
619
|
+
</div>
|
620
|
+
<div class="refsect1">
|
621
|
+
<a name="GtkTreeModel.description"></a><h2>Description</h2>
|
622
|
+
<p>
|
623
|
+
The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> interface defines a generic tree interface for use by
|
624
|
+
the <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> widget. It is an abstract interface, and is designed
|
625
|
+
to be usable with any appropriate data structure. The programmer just
|
626
|
+
has to implement this interface on their own data type for it to be
|
627
|
+
viewable by a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> widget.
|
628
|
+
</p>
|
629
|
+
<p>
|
630
|
+
The model is represented as a hierarchical tree of strongly-typed,
|
631
|
+
columned data. In other words, the model can be seen as a tree where
|
632
|
+
every node has different values depending on which column is being
|
633
|
+
queried. The type of data found in a column is determined by using the
|
634
|
+
GType system (ie. <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-INT:CAPS"><span class="type">G_TYPE_INT</span></a>, <span class="type">GTK_TYPE_BUTTON</span>, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-POINTER:CAPS"><span class="type">G_TYPE_POINTER</span></a>, etc.).
|
635
|
+
The types are homogeneous per column across all nodes. It is important
|
636
|
+
to note that this interface only provides a way of examining a model and
|
637
|
+
observing changes. The implementation of each individual model decides
|
638
|
+
how and if changes are made.
|
639
|
+
</p>
|
640
|
+
<p>
|
641
|
+
In order to make life simpler for programmers who do not need to write
|
642
|
+
their own specialized model, two generic models are provided — the
|
643
|
+
<a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> and the <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>. To use these, the developer simply
|
644
|
+
pushes data into these models as necessary. These models provide the
|
645
|
+
data structure as well as all appropriate tree interfaces. As a result,
|
646
|
+
implementing drag and drop, sorting, and storing data is trivial. For
|
647
|
+
the vast majority of trees and lists, these two models are sufficient.
|
648
|
+
</p>
|
649
|
+
<p>
|
650
|
+
Models are accessed on a node/column level of granularity. One can
|
651
|
+
query for the value of a model at a certain node and a certain column
|
652
|
+
on that node. There are two structures used to reference a particular
|
653
|
+
node in a model. They are the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> and the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
|
654
|
+
<a href="#ftn.id-1.4.9.3.13.5.3" class="footnote" name="id-1.4.9.3.13.5.3"><sup class="footnote">[4]</sup></a>
|
655
|
+
Most of the interface consists of operations on a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.
|
656
|
+
</p>
|
657
|
+
<p>
|
658
|
+
A path is essentially a potential node. It is a location on a model
|
659
|
+
that may or may not actually correspond to a node on a specific model.
|
660
|
+
The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> struct can be converted into either an array of
|
661
|
+
unsigned integers or a string. The string form is a list of numbers
|
662
|
+
separated by a colon. Each number refers to the offset at that level.
|
663
|
+
Thus, the path <span class="quote">“<span class="quote">0</span>”</span> refers to the root node and the path
|
664
|
+
<span class="quote">“<span class="quote">2:4</span>”</span> refers to the fifth child of the third node.
|
665
|
+
</p>
|
666
|
+
<p>
|
667
|
+
By contrast, a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> is a reference to a specific node on a
|
668
|
+
specific model. It is a generic struct with an integer and three
|
669
|
+
generic pointers. These are filled in by the model in a model-specific
|
670
|
+
way. One can convert a path to an iterator by calling
|
671
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter" title="gtk_tree_model_get_iter ()"><code class="function">gtk_tree_model_get_iter()</code></a>. These iterators are the primary way of
|
672
|
+
accessing a model and are similar to the iterators used by
|
673
|
+
<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. They are generally statically allocated on the stack and
|
674
|
+
only used for a short time. The model interface defines a set of
|
675
|
+
operations using them for navigating the model.
|
676
|
+
</p>
|
677
|
+
<p>
|
678
|
+
It is expected that models fill in the iterator with private data. For
|
679
|
+
example, the <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a> model, which is internally a simple linked
|
680
|
+
list, stores a list node in one of the pointers. The <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a>
|
681
|
+
stores an array and an offset in two of the pointers. Additionally,
|
682
|
+
there is an integer field. This field is generally filled with a unique
|
683
|
+
stamp per model. This stamp is for catching errors resulting from using
|
684
|
+
invalid iterators with a model.
|
685
|
+
</p>
|
686
|
+
<p>
|
687
|
+
The lifecycle of an iterator can be a little confusing at first.
|
688
|
+
Iterators are expected to always be valid for as long as the model is
|
689
|
+
unchanged (and doesn't emit a signal). The model is considered to own
|
690
|
+
all outstanding iterators and nothing needs to be done to free them from
|
691
|
+
the user's point of view. Additionally, some models guarantee that an
|
692
|
+
iterator is valid for as long as the node it refers to is valid (most
|
693
|
+
notably the <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> and <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>). Although generally
|
694
|
+
uninteresting, as one always has to allow for the case where iterators
|
695
|
+
do not persist beyond a signal, some very important performance
|
696
|
+
enhancements were made in the sort model. As a result, the
|
697
|
+
<a class="link" href="GtkTreeModel.html#GTK-TREE-MODEL-ITERS-PERSIST:CAPS"><span class="type">GTK_TREE_MODEL_ITERS_PERSIST</span></a> flag was added to indicate this behavior.
|
698
|
+
</p>
|
699
|
+
<p>
|
700
|
+
To help show some common operation of a model, some examples are
|
701
|
+
provided. The first example shows three ways of getting the iter at the
|
702
|
+
location <span class="quote">“<span class="quote">3:2:5</span>”</span>. While the first method shown is easier,
|
703
|
+
the second is much more common, as you often get paths from callbacks.
|
704
|
+
</p>
|
705
|
+
<p>
|
706
|
+
</p>
|
707
|
+
<div class="example">
|
708
|
+
<a name="id-1.4.9.3.13.11.1"></a><p class="title"><b>Example 21. Acquiring a <span class="structname">GtkTreeIter</span></b></p>
|
709
|
+
<div class="example-contents">
|
710
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
711
|
+
<tbody>
|
712
|
+
<tr>
|
713
|
+
<td class="listing_lines" align="right"><pre>1
|
714
|
+
2
|
715
|
+
3
|
716
|
+
4
|
717
|
+
5
|
718
|
+
6
|
719
|
+
7
|
720
|
+
8
|
721
|
+
9
|
722
|
+
10
|
723
|
+
11
|
724
|
+
12
|
725
|
+
13
|
726
|
+
14
|
727
|
+
15
|
728
|
+
16
|
729
|
+
17
|
730
|
+
18
|
731
|
+
19</pre></td>
|
732
|
+
<td class="listing_code"><pre class="programlisting"><span class="comment">/* Three ways of getting the iter pointing to the location</span>
|
733
|
+
<span class="comment"> */</span>
|
734
|
+
<span class="cbracket">{</span>
|
735
|
+
<span class="normal"> </span><span class="usertype">GtkTreePath</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">path</span><span class="symbol">;</span>
|
736
|
+
<span class="normal"> </span><span class="usertype">GtkTreeIter</span><span class="normal"> iter</span><span class="symbol">;</span>
|
737
|
+
<span class="normal"> </span><span class="usertype">GtkTreeIter</span><span class="normal"> parent_iter</span><span class="symbol">;</span>
|
738
|
+
<span class="normal"> </span><span class="comment">/* get the iterator from a string */</span>
|
739
|
+
<span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter-from-string">gtk_tree_model_get_iter_from_string</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"3:2:5"</span><span class="symbol">);</span>
|
740
|
+
<span class="normal"> </span><span class="comment">/* get the iterator from a path */</span>
|
741
|
+
<span class="normal"> path </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-path-new-from-string">gtk_tree_path_new_from_string</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"3:2:5"</span><span class="symbol">);</span>
|
742
|
+
<span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter">gtk_tree_model_get_iter</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> path</span><span class="symbol">);</span>
|
743
|
+
<span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-path-free">gtk_tree_path_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">path</span><span class="symbol">);</span>
|
744
|
+
<span class="normal"> </span><span class="comment">/* walk the tree to find the iterator */</span>
|
745
|
+
<span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-nth-child">gtk_tree_model_iter_nth_child</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">,</span><span class="normal"> </span><span class="number">3</span><span class="symbol">);</span>
|
746
|
+
<span class="normal"> parent_iter </span><span class="symbol">=</span><span class="normal"> iter</span><span class="symbol">;</span>
|
747
|
+
<span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-nth-child">gtk_tree_model_iter_nth_child</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">parent_iter</span><span class="symbol">,</span><span class="normal"> </span><span class="number">2</span><span class="symbol">);</span>
|
748
|
+
<span class="normal"> parent_iter </span><span class="symbol">=</span><span class="normal"> iter</span><span class="symbol">;</span>
|
749
|
+
<span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-nth-child">gtk_tree_model_iter_nth_child</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">parent_iter</span><span class="symbol">,</span><span class="normal"> </span><span class="number">5</span><span class="symbol">);</span>
|
750
|
+
<span class="cbracket">}</span></pre></td>
|
751
|
+
</tr>
|
752
|
+
</tbody>
|
753
|
+
</table>
|
754
|
+
</div>
|
755
|
+
|
756
|
+
</div>
|
757
|
+
<p><br class="example-break">
|
758
|
+
</p>
|
759
|
+
<p>
|
760
|
+
This second example shows a quick way of iterating through a list and
|
761
|
+
getting a string and an integer from each row. The
|
762
|
+
<code class="function">populate_model</code> function used below is not shown, as
|
763
|
+
it is specific to the <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>. For information on how to write
|
764
|
+
such a function, see the <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a> documentation.
|
765
|
+
</p>
|
766
|
+
<div class="example">
|
767
|
+
<a name="id-1.4.9.3.13.12.4"></a><p class="title"><b>Example 22. Reading data from a <span class="structname">GtkTreeModel</span></b></p>
|
768
|
+
<div class="example-contents">
|
769
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
770
|
+
<tbody>
|
771
|
+
<tr>
|
772
|
+
<td class="listing_lines" align="right"><pre>1
|
773
|
+
2
|
774
|
+
3
|
775
|
+
4
|
776
|
+
5
|
777
|
+
6
|
778
|
+
7
|
779
|
+
8
|
780
|
+
9
|
781
|
+
10
|
782
|
+
11
|
783
|
+
12
|
784
|
+
13
|
785
|
+
14
|
786
|
+
15
|
787
|
+
16
|
788
|
+
17
|
789
|
+
18
|
790
|
+
19
|
791
|
+
20
|
792
|
+
21
|
793
|
+
22
|
794
|
+
23
|
795
|
+
24
|
796
|
+
25
|
797
|
+
26
|
798
|
+
27
|
799
|
+
28
|
800
|
+
29
|
801
|
+
30
|
802
|
+
31
|
803
|
+
32
|
804
|
+
33
|
805
|
+
34
|
806
|
+
35
|
807
|
+
36</pre></td>
|
808
|
+
<td class="listing_code"><pre class="programlisting"><span class="keyword">enum</span>
|
809
|
+
<span class="cbracket">{</span>
|
810
|
+
<span class="normal"> STRING_COLUMN</span><span class="symbol">,</span>
|
811
|
+
<span class="normal"> INT_COLUMN</span><span class="symbol">,</span>
|
812
|
+
<span class="normal"> N_COLUMNS</span>
|
813
|
+
<span class="cbracket">}</span><span class="symbol">;</span>
|
814
|
+
<span class="cbracket">{</span>
|
815
|
+
<span class="normal"> </span><span class="usertype">GtkTreeModel</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">list_store</span><span class="symbol">;</span>
|
816
|
+
<span class="normal"> </span><span class="usertype">GtkTreeIter</span><span class="normal"> iter</span><span class="symbol">;</span>
|
817
|
+
<span class="normal"> </span><span class="usertype">gboolean</span><span class="normal"> valid</span><span class="symbol">;</span>
|
818
|
+
<span class="normal"> </span><span class="usertype">gint</span><span class="normal"> row_count </span><span class="symbol">=</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
|
819
|
+
<span class="normal"> </span><span class="comment">/* make a new list_store */</span>
|
820
|
+
<span class="normal"> list_store </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkListStore.html#gtk-list-store-new">gtk_list_store_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">N_COLUMNS</span><span class="symbol">,</span><span class="normal"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-STRING:CAPS">G_TYPE_STRING</a></span><span class="symbol">,</span><span class="normal"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-INT:CAPS">G_TYPE_INT</a></span><span class="symbol">);</span>
|
821
|
+
<span class="normal"> </span><span class="comment">/* Fill the list store with data */</span>
|
822
|
+
<span class="normal"> </span><span class="function">populate_model</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list_store</span><span class="symbol">);</span>
|
823
|
+
<span class="normal"> </span><span class="comment">/* Get the first iter in the list */</span>
|
824
|
+
<span class="normal"> valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter-first">gtk_tree_model_get_iter_first</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list_store</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">);</span>
|
825
|
+
<span class="normal"> </span><span class="keyword">while</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">valid</span><span class="symbol">)</span>
|
826
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
827
|
+
<span class="normal"> </span><span class="comment">/* Walk through the list, reading each row */</span>
|
828
|
+
<span class="normal"> </span><span class="usertype">gchar</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">str_data</span><span class="symbol">;</span>
|
829
|
+
<span class="normal"> </span><span class="usertype">gint</span><span class="normal"> int_data</span><span class="symbol">;</span>
|
830
|
+
<span class="normal"> </span><span class="comment">/* Make sure you terminate calls to gtk_tree_model_get()</span>
|
831
|
+
<span class="comment"> * with a '-1' value</span>
|
832
|
+
<span class="comment"> */</span>
|
833
|
+
<span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get">gtk_tree_model_get</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list_store</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span>
|
834
|
+
<span class="normal"> STRING_COLUMN</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">str_data</span><span class="symbol">,</span>
|
835
|
+
<span class="normal"> INT_COLUMN</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">int_data</span><span class="symbol">,</span>
|
836
|
+
<span class="normal"> </span><span class="symbol">-</span><span class="number">1</span><span class="symbol">);</span>
|
837
|
+
<span class="normal"> </span><span class="comment">/* Do something with the data */</span>
|
838
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html#g-print">g_print</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"Row %d: (%s,%d)</span><span class="specialchar">\n</span><span class="string">"</span><span class="symbol">,</span><span class="normal"> row_count</span><span class="symbol">,</span><span class="normal"> str_data</span><span class="symbol">,</span><span class="normal"> int_data</span><span class="symbol">);</span>
|
839
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free">g_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">str_data</span><span class="symbol">);</span>
|
840
|
+
<span class="normal"> row_count </span><span class="symbol">++;</span>
|
841
|
+
<span class="normal"> valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-next">gtk_tree_model_iter_next</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list_store</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">);</span>
|
842
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
843
|
+
<span class="cbracket">}</span></pre></td>
|
844
|
+
</tr>
|
845
|
+
</tbody>
|
846
|
+
</table>
|
847
|
+
</div>
|
848
|
+
|
849
|
+
</div>
|
850
|
+
<p><br class="example-break">
|
851
|
+
</p>
|
852
|
+
</div>
|
853
|
+
<div class="refsect1">
|
854
|
+
<a name="GtkTreeModel.functions_details"></a><h2>Functions</h2>
|
855
|
+
<div class="refsect2">
|
856
|
+
<a name="GtkTreeModelForeachFunc"></a><h3>GtkTreeModelForeachFunc ()</h3>
|
857
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
858
|
+
<span class="c_punctuation">(</span>*GtkTreeModelForeachFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
|
859
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
860
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
861
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
862
|
+
<p>
|
863
|
+
</p>
|
864
|
+
<div class="refsect3">
|
865
|
+
<a name="id-1.4.9.3.14.2.5"></a><h4>Parameters</h4>
|
866
|
+
<div class="informaltable"><table width="100%" border="0">
|
867
|
+
<colgroup>
|
868
|
+
<col width="150px" class="parameters_name">
|
869
|
+
<col class="parameters_description">
|
870
|
+
<col width="200px" class="parameters_annotations">
|
871
|
+
</colgroup>
|
872
|
+
<tbody>
|
873
|
+
<tr>
|
874
|
+
<td class="parameter_name"><p>model</p></td>
|
875
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> currently being iterated</p></td>
|
876
|
+
<td class="parameter_annotations"> </td>
|
877
|
+
</tr>
|
878
|
+
<tr>
|
879
|
+
<td class="parameter_name"><p>path</p></td>
|
880
|
+
<td class="parameter_description"><p>The current <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a></p></td>
|
881
|
+
<td class="parameter_annotations"> </td>
|
882
|
+
</tr>
|
883
|
+
<tr>
|
884
|
+
<td class="parameter_name"><p>iter</p></td>
|
885
|
+
<td class="parameter_description"><p>The current <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a></p></td>
|
886
|
+
<td class="parameter_annotations"> </td>
|
887
|
+
</tr>
|
888
|
+
<tr>
|
889
|
+
<td class="parameter_name"><p>data</p></td>
|
890
|
+
<td class="parameter_description"><p>The user data passed to <a class="link" href="GtkTreeModel.html#gtk-tree-model-foreach" title="gtk_tree_model_foreach ()"><code class="function">gtk_tree_model_foreach()</code></a></p></td>
|
891
|
+
<td class="parameter_annotations"> </td>
|
892
|
+
</tr>
|
893
|
+
</tbody>
|
894
|
+
</table></div>
|
895
|
+
</div>
|
896
|
+
<div class="refsect3">
|
897
|
+
<a name="id-1.4.9.3.14.2.6"></a><h4>Returns</h4>
|
898
|
+
<p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop iterating, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to continue.</p>
|
899
|
+
<p></p>
|
900
|
+
</div>
|
901
|
+
</div>
|
902
|
+
<hr>
|
903
|
+
<div class="refsect2">
|
904
|
+
<a name="gtk-tree-path-new"></a><h3>gtk_tree_path_new ()</h3>
|
905
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
906
|
+
gtk_tree_path_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
907
|
+
<p>Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>. This structure refers to a row.</p>
|
908
|
+
<div class="refsect3">
|
909
|
+
<a name="id-1.4.9.3.14.3.5"></a><h4>Returns</h4>
|
910
|
+
<p> A newly created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p>
|
911
|
+
<p></p>
|
912
|
+
</div>
|
913
|
+
</div>
|
914
|
+
<hr>
|
915
|
+
<div class="refsect2">
|
916
|
+
<a name="gtk-tree-path-new-from-string"></a><h3>gtk_tree_path_new_from_string ()</h3>
|
917
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
918
|
+
gtk_tree_path_new_from_string (<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path</code></em>);</pre>
|
919
|
+
<p>Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> initialized to <em class="parameter"><code>path</code></em>
|
920
|
+
. <em class="parameter"><code>path</code></em>
|
921
|
+
is expected to be a
|
922
|
+
colon separated list of numbers. For example, the string "10:4:0" would
|
923
|
+
create a path of depth 3 pointing to the 11th child of the root node, the 5th
|
924
|
+
child of that 11th child, and the 1st child of that 5th child. If an invalid
|
925
|
+
path string is passed in, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is returned.</p>
|
926
|
+
<div class="refsect3">
|
927
|
+
<a name="id-1.4.9.3.14.4.5"></a><h4>Parameters</h4>
|
928
|
+
<div class="informaltable"><table width="100%" border="0">
|
929
|
+
<colgroup>
|
930
|
+
<col width="150px" class="parameters_name">
|
931
|
+
<col class="parameters_description">
|
932
|
+
<col width="200px" class="parameters_annotations">
|
933
|
+
</colgroup>
|
934
|
+
<tbody><tr>
|
935
|
+
<td class="parameter_name"><p>path</p></td>
|
936
|
+
<td class="parameter_description"><p>The string representation of a path.</p></td>
|
937
|
+
<td class="parameter_annotations"> </td>
|
938
|
+
</tr></tbody>
|
939
|
+
</table></div>
|
940
|
+
</div>
|
941
|
+
<div class="refsect3">
|
942
|
+
<a name="id-1.4.9.3.14.4.6"></a><h4>Returns</h4>
|
943
|
+
<p> A newly-created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
944
|
+
<p></p>
|
945
|
+
</div>
|
946
|
+
</div>
|
947
|
+
<hr>
|
948
|
+
<div class="refsect2">
|
949
|
+
<a name="gtk-tree-path-new-from-indices"></a><h3>gtk_tree_path_new_from_indices ()</h3>
|
950
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
951
|
+
gtk_tree_path_new_from_indices (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> first_index</code></em>,
|
952
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
953
|
+
<p>Creates a new path with <em class="parameter"><code>first_index</code></em>
|
954
|
+
and <em class="parameter"><code>varargs</code></em>
|
955
|
+
as indices.</p>
|
956
|
+
<div class="refsect3">
|
957
|
+
<a name="id-1.4.9.3.14.5.5"></a><h4>Parameters</h4>
|
958
|
+
<div class="informaltable"><table width="100%" border="0">
|
959
|
+
<colgroup>
|
960
|
+
<col width="150px" class="parameters_name">
|
961
|
+
<col class="parameters_description">
|
962
|
+
<col width="200px" class="parameters_annotations">
|
963
|
+
</colgroup>
|
964
|
+
<tbody><tr>
|
965
|
+
<td class="parameter_name"><p>first_index</p></td>
|
966
|
+
<td class="parameter_description"><p>first integer</p></td>
|
967
|
+
<td class="parameter_annotations"> </td>
|
968
|
+
</tr></tbody>
|
969
|
+
</table></div>
|
970
|
+
</div>
|
971
|
+
<div class="refsect3">
|
972
|
+
<a name="id-1.4.9.3.14.5.6"></a><h4>Returns</h4>
|
973
|
+
<p> A newly created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p>
|
974
|
+
<p></p>
|
975
|
+
</div>
|
976
|
+
<p class="since">Since 2.2</p>
|
977
|
+
</div>
|
978
|
+
<hr>
|
979
|
+
<div class="refsect2">
|
980
|
+
<a name="gtk-tree-path-to-string"></a><h3>gtk_tree_path_to_string ()</h3>
|
981
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
982
|
+
gtk_tree_path_to_string (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
983
|
+
<p>Generates a string representation of the path. This string is a ':'
|
984
|
+
separated list of numbers. For example, "4:10:0:3" would be an acceptable return value for this string.</p>
|
985
|
+
<div class="refsect3">
|
986
|
+
<a name="id-1.4.9.3.14.6.5"></a><h4>Parameters</h4>
|
987
|
+
<div class="informaltable"><table width="100%" border="0">
|
988
|
+
<colgroup>
|
989
|
+
<col width="150px" class="parameters_name">
|
990
|
+
<col class="parameters_description">
|
991
|
+
<col width="200px" class="parameters_annotations">
|
992
|
+
</colgroup>
|
993
|
+
<tbody><tr>
|
994
|
+
<td class="parameter_name"><p>path</p></td>
|
995
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a></p></td>
|
996
|
+
<td class="parameter_annotations"> </td>
|
997
|
+
</tr></tbody>
|
998
|
+
</table></div>
|
999
|
+
</div>
|
1000
|
+
<div class="refsect3">
|
1001
|
+
<a name="id-1.4.9.3.14.6.6"></a><h4>Returns</h4>
|
1002
|
+
<p> A newly-allocated string. Must be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</p>
|
1003
|
+
<p></p>
|
1004
|
+
</div>
|
1005
|
+
</div>
|
1006
|
+
<hr>
|
1007
|
+
<div class="refsect2">
|
1008
|
+
<a name="gtk-tree-path-new-first"></a><h3>gtk_tree_path_new_first ()</h3>
|
1009
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
1010
|
+
gtk_tree_path_new_first (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1011
|
+
<p>Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>. The string representation of this path is "0"</p>
|
1012
|
+
<div class="refsect3">
|
1013
|
+
<a name="id-1.4.9.3.14.7.5"></a><h4>Returns</h4>
|
1014
|
+
<p> A new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p>
|
1015
|
+
<p></p>
|
1016
|
+
</div>
|
1017
|
+
</div>
|
1018
|
+
<hr>
|
1019
|
+
<div class="refsect2">
|
1020
|
+
<a name="gtk-tree-path-new-root"></a><h3>gtk_tree_path_new_root</h3>
|
1021
|
+
<pre class="programlisting">#define gtk_tree_path_new_root() gtk_tree_path_new_first()
|
1022
|
+
</pre>
|
1023
|
+
<div class="warning">
|
1024
|
+
<p><code class="literal">gtk_tree_path_new_root</code> is deprecated and should not be used in newly-written code.</p>
|
1025
|
+
<p>Use <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-first" title="gtk_tree_path_new_first ()"><code class="function">gtk_tree_path_new_first()</code></a> instead.</p>
|
1026
|
+
</div>
|
1027
|
+
<p>
|
1028
|
+
An alternate name for <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-first" title="gtk_tree_path_new_first ()"><code class="function">gtk_tree_path_new_first()</code></a> provided for
|
1029
|
+
compatibility reasons.
|
1030
|
+
</p>
|
1031
|
+
<div class="refsect3">
|
1032
|
+
<a name="id-1.4.9.3.14.8.6"></a><h4>Returns</h4>
|
1033
|
+
<p>A new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p>
|
1034
|
+
<p></p>
|
1035
|
+
</div>
|
1036
|
+
</div>
|
1037
|
+
<hr>
|
1038
|
+
<div class="refsect2">
|
1039
|
+
<a name="gtk-tree-path-append-index"></a><h3>gtk_tree_path_append_index ()</h3>
|
1040
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1041
|
+
gtk_tree_path_append_index (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
1042
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);</pre>
|
1043
|
+
<p>Appends a new index to a path. As a result, the depth of the path is
|
1044
|
+
increased.</p>
|
1045
|
+
<div class="refsect3">
|
1046
|
+
<a name="id-1.4.9.3.14.9.5"></a><h4>Parameters</h4>
|
1047
|
+
<div class="informaltable"><table width="100%" border="0">
|
1048
|
+
<colgroup>
|
1049
|
+
<col width="150px" class="parameters_name">
|
1050
|
+
<col class="parameters_description">
|
1051
|
+
<col width="200px" class="parameters_annotations">
|
1052
|
+
</colgroup>
|
1053
|
+
<tbody>
|
1054
|
+
<tr>
|
1055
|
+
<td class="parameter_name"><p>path</p></td>
|
1056
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1057
|
+
<td class="parameter_annotations"> </td>
|
1058
|
+
</tr>
|
1059
|
+
<tr>
|
1060
|
+
<td class="parameter_name"><p>index_</p></td>
|
1061
|
+
<td class="parameter_description"><p>The index.</p></td>
|
1062
|
+
<td class="parameter_annotations"> </td>
|
1063
|
+
</tr>
|
1064
|
+
</tbody>
|
1065
|
+
</table></div>
|
1066
|
+
</div>
|
1067
|
+
</div>
|
1068
|
+
<hr>
|
1069
|
+
<div class="refsect2">
|
1070
|
+
<a name="gtk-tree-path-prepend-index"></a><h3>gtk_tree_path_prepend_index ()</h3>
|
1071
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1072
|
+
gtk_tree_path_prepend_index (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
1073
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);</pre>
|
1074
|
+
<p>Prepends a new index to a path. As a result, the depth of the path is
|
1075
|
+
increased.</p>
|
1076
|
+
<div class="refsect3">
|
1077
|
+
<a name="id-1.4.9.3.14.10.5"></a><h4>Parameters</h4>
|
1078
|
+
<div class="informaltable"><table width="100%" border="0">
|
1079
|
+
<colgroup>
|
1080
|
+
<col width="150px" class="parameters_name">
|
1081
|
+
<col class="parameters_description">
|
1082
|
+
<col width="200px" class="parameters_annotations">
|
1083
|
+
</colgroup>
|
1084
|
+
<tbody>
|
1085
|
+
<tr>
|
1086
|
+
<td class="parameter_name"><p>path</p></td>
|
1087
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1088
|
+
<td class="parameter_annotations"> </td>
|
1089
|
+
</tr>
|
1090
|
+
<tr>
|
1091
|
+
<td class="parameter_name"><p>index_</p></td>
|
1092
|
+
<td class="parameter_description"><p>The index.</p></td>
|
1093
|
+
<td class="parameter_annotations"> </td>
|
1094
|
+
</tr>
|
1095
|
+
</tbody>
|
1096
|
+
</table></div>
|
1097
|
+
</div>
|
1098
|
+
</div>
|
1099
|
+
<hr>
|
1100
|
+
<div class="refsect2">
|
1101
|
+
<a name="gtk-tree-path-get-depth"></a><h3>gtk_tree_path_get_depth ()</h3>
|
1102
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
1103
|
+
gtk_tree_path_get_depth (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1104
|
+
<p>Returns the current depth of <em class="parameter"><code>path</code></em>
|
1105
|
+
.</p>
|
1106
|
+
<div class="refsect3">
|
1107
|
+
<a name="id-1.4.9.3.14.11.5"></a><h4>Parameters</h4>
|
1108
|
+
<div class="informaltable"><table width="100%" border="0">
|
1109
|
+
<colgroup>
|
1110
|
+
<col width="150px" class="parameters_name">
|
1111
|
+
<col class="parameters_description">
|
1112
|
+
<col width="200px" class="parameters_annotations">
|
1113
|
+
</colgroup>
|
1114
|
+
<tbody><tr>
|
1115
|
+
<td class="parameter_name"><p>path</p></td>
|
1116
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1117
|
+
<td class="parameter_annotations"> </td>
|
1118
|
+
</tr></tbody>
|
1119
|
+
</table></div>
|
1120
|
+
</div>
|
1121
|
+
<div class="refsect3">
|
1122
|
+
<a name="id-1.4.9.3.14.11.6"></a><h4>Returns</h4>
|
1123
|
+
<p> The depth of <em class="parameter"><code>path</code></em>
|
1124
|
+
</p>
|
1125
|
+
<p></p>
|
1126
|
+
</div>
|
1127
|
+
</div>
|
1128
|
+
<hr>
|
1129
|
+
<div class="refsect2">
|
1130
|
+
<a name="gtk-tree-path-get-indices"></a><h3>gtk_tree_path_get_indices ()</h3>
|
1131
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *
|
1132
|
+
gtk_tree_path_get_indices (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1133
|
+
<p>Returns the current indices of <em class="parameter"><code>path</code></em>
|
1134
|
+
. This is an array of integers, each
|
1135
|
+
representing a node in a tree. This value should not be freed.</p>
|
1136
|
+
<div class="refsect3">
|
1137
|
+
<a name="id-1.4.9.3.14.12.5"></a><h4>Parameters</h4>
|
1138
|
+
<div class="informaltable"><table width="100%" border="0">
|
1139
|
+
<colgroup>
|
1140
|
+
<col width="150px" class="parameters_name">
|
1141
|
+
<col class="parameters_description">
|
1142
|
+
<col width="200px" class="parameters_annotations">
|
1143
|
+
</colgroup>
|
1144
|
+
<tbody><tr>
|
1145
|
+
<td class="parameter_name"><p>path</p></td>
|
1146
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1147
|
+
<td class="parameter_annotations"> </td>
|
1148
|
+
</tr></tbody>
|
1149
|
+
</table></div>
|
1150
|
+
</div>
|
1151
|
+
<div class="refsect3">
|
1152
|
+
<a name="id-1.4.9.3.14.12.6"></a><h4>Returns</h4>
|
1153
|
+
<p> The current indices, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
1154
|
+
<p></p>
|
1155
|
+
</div>
|
1156
|
+
</div>
|
1157
|
+
<hr>
|
1158
|
+
<div class="refsect2">
|
1159
|
+
<a name="gtk-tree-path-get-indices-with-depth"></a><h3>gtk_tree_path_get_indices_with_depth ()</h3>
|
1160
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> *
|
1161
|
+
gtk_tree_path_get_indices_with_depth (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
1162
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *depth</code></em>);</pre>
|
1163
|
+
<p>Returns the current indices of <em class="parameter"><code>path</code></em>
|
1164
|
+
.
|
1165
|
+
This is an array of integers, each representing a node in a tree.
|
1166
|
+
It also returns the number of elements in the array.
|
1167
|
+
The array should not be freed.</p>
|
1168
|
+
<div class="refsect3">
|
1169
|
+
<a name="id-1.4.9.3.14.13.5"></a><h4>Parameters</h4>
|
1170
|
+
<div class="informaltable"><table width="100%" border="0">
|
1171
|
+
<colgroup>
|
1172
|
+
<col width="150px" class="parameters_name">
|
1173
|
+
<col class="parameters_description">
|
1174
|
+
<col width="200px" class="parameters_annotations">
|
1175
|
+
</colgroup>
|
1176
|
+
<tbody>
|
1177
|
+
<tr>
|
1178
|
+
<td class="parameter_name"><p>path</p></td>
|
1179
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1180
|
+
<td class="parameter_annotations"> </td>
|
1181
|
+
</tr>
|
1182
|
+
<tr>
|
1183
|
+
<td class="parameter_name"><p>depth</p></td>
|
1184
|
+
<td class="parameter_description"><p>Number of elements returned in the integer array</p></td>
|
1185
|
+
<td class="parameter_annotations"> </td>
|
1186
|
+
</tr>
|
1187
|
+
</tbody>
|
1188
|
+
</table></div>
|
1189
|
+
</div>
|
1190
|
+
<div class="refsect3">
|
1191
|
+
<a name="id-1.4.9.3.14.13.6"></a><h4>Returns</h4>
|
1192
|
+
<p> The current indices, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
1193
|
+
<p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=depth][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1194
|
+
</div>
|
1195
|
+
<p class="since">Since 2.22</p>
|
1196
|
+
</div>
|
1197
|
+
<hr>
|
1198
|
+
<div class="refsect2">
|
1199
|
+
<a name="gtk-tree-path-free"></a><h3>gtk_tree_path_free ()</h3>
|
1200
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1201
|
+
gtk_tree_path_free (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1202
|
+
<p>Frees <em class="parameter"><code>path</code></em>
|
1203
|
+
.</p>
|
1204
|
+
<div class="refsect3">
|
1205
|
+
<a name="id-1.4.9.3.14.14.5"></a><h4>Parameters</h4>
|
1206
|
+
<div class="informaltable"><table width="100%" border="0">
|
1207
|
+
<colgroup>
|
1208
|
+
<col width="150px" class="parameters_name">
|
1209
|
+
<col class="parameters_description">
|
1210
|
+
<col width="200px" class="parameters_annotations">
|
1211
|
+
</colgroup>
|
1212
|
+
<tbody><tr>
|
1213
|
+
<td class="parameter_name"><p>path</p></td>
|
1214
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1215
|
+
<td class="parameter_annotations"> </td>
|
1216
|
+
</tr></tbody>
|
1217
|
+
</table></div>
|
1218
|
+
</div>
|
1219
|
+
</div>
|
1220
|
+
<hr>
|
1221
|
+
<div class="refsect2">
|
1222
|
+
<a name="gtk-tree-path-copy"></a><h3>gtk_tree_path_copy ()</h3>
|
1223
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
1224
|
+
gtk_tree_path_copy (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1225
|
+
<p>Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> as a copy of <em class="parameter"><code>path</code></em>
|
1226
|
+
.</p>
|
1227
|
+
<div class="refsect3">
|
1228
|
+
<a name="id-1.4.9.3.14.15.5"></a><h4>Parameters</h4>
|
1229
|
+
<div class="informaltable"><table width="100%" border="0">
|
1230
|
+
<colgroup>
|
1231
|
+
<col width="150px" class="parameters_name">
|
1232
|
+
<col class="parameters_description">
|
1233
|
+
<col width="200px" class="parameters_annotations">
|
1234
|
+
</colgroup>
|
1235
|
+
<tbody><tr>
|
1236
|
+
<td class="parameter_name"><p>path</p></td>
|
1237
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1238
|
+
<td class="parameter_annotations"> </td>
|
1239
|
+
</tr></tbody>
|
1240
|
+
</table></div>
|
1241
|
+
</div>
|
1242
|
+
<div class="refsect3">
|
1243
|
+
<a name="id-1.4.9.3.14.15.6"></a><h4>Returns</h4>
|
1244
|
+
<p> A new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p>
|
1245
|
+
<p></p>
|
1246
|
+
</div>
|
1247
|
+
</div>
|
1248
|
+
<hr>
|
1249
|
+
<div class="refsect2">
|
1250
|
+
<a name="gtk-tree-path-compare"></a><h3>gtk_tree_path_compare ()</h3>
|
1251
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
1252
|
+
gtk_tree_path_compare (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *a</code></em>,
|
1253
|
+
<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *b</code></em>);</pre>
|
1254
|
+
<p>Compares two paths. If <em class="parameter"><code>a</code></em>
|
1255
|
+
appears before <em class="parameter"><code>b</code></em>
|
1256
|
+
in a tree, then -1 is returned.
|
1257
|
+
If <em class="parameter"><code>b</code></em>
|
1258
|
+
appears before <em class="parameter"><code>a</code></em>
|
1259
|
+
, then 1 is returned. If the two nodes are equal,
|
1260
|
+
then 0 is returned.</p>
|
1261
|
+
<div class="refsect3">
|
1262
|
+
<a name="id-1.4.9.3.14.16.5"></a><h4>Parameters</h4>
|
1263
|
+
<div class="informaltable"><table width="100%" border="0">
|
1264
|
+
<colgroup>
|
1265
|
+
<col width="150px" class="parameters_name">
|
1266
|
+
<col class="parameters_description">
|
1267
|
+
<col width="200px" class="parameters_annotations">
|
1268
|
+
</colgroup>
|
1269
|
+
<tbody>
|
1270
|
+
<tr>
|
1271
|
+
<td class="parameter_name"><p>a</p></td>
|
1272
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1273
|
+
<td class="parameter_annotations"> </td>
|
1274
|
+
</tr>
|
1275
|
+
<tr>
|
1276
|
+
<td class="parameter_name"><p>b</p></td>
|
1277
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to compare with.</p></td>
|
1278
|
+
<td class="parameter_annotations"> </td>
|
1279
|
+
</tr>
|
1280
|
+
</tbody>
|
1281
|
+
</table></div>
|
1282
|
+
</div>
|
1283
|
+
<div class="refsect3">
|
1284
|
+
<a name="id-1.4.9.3.14.16.6"></a><h4>Returns</h4>
|
1285
|
+
<p> The relative positions of <em class="parameter"><code>a</code></em>
|
1286
|
+
and <em class="parameter"><code>b</code></em>
|
1287
|
+
</p>
|
1288
|
+
<p></p>
|
1289
|
+
</div>
|
1290
|
+
</div>
|
1291
|
+
<hr>
|
1292
|
+
<div class="refsect2">
|
1293
|
+
<a name="gtk-tree-path-next"></a><h3>gtk_tree_path_next ()</h3>
|
1294
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1295
|
+
gtk_tree_path_next (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1296
|
+
<p>Moves the <em class="parameter"><code>path</code></em>
|
1297
|
+
to point to the next node at the current depth.</p>
|
1298
|
+
<div class="refsect3">
|
1299
|
+
<a name="id-1.4.9.3.14.17.5"></a><h4>Parameters</h4>
|
1300
|
+
<div class="informaltable"><table width="100%" border="0">
|
1301
|
+
<colgroup>
|
1302
|
+
<col width="150px" class="parameters_name">
|
1303
|
+
<col class="parameters_description">
|
1304
|
+
<col width="200px" class="parameters_annotations">
|
1305
|
+
</colgroup>
|
1306
|
+
<tbody><tr>
|
1307
|
+
<td class="parameter_name"><p>path</p></td>
|
1308
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1309
|
+
<td class="parameter_annotations"> </td>
|
1310
|
+
</tr></tbody>
|
1311
|
+
</table></div>
|
1312
|
+
</div>
|
1313
|
+
</div>
|
1314
|
+
<hr>
|
1315
|
+
<div class="refsect2">
|
1316
|
+
<a name="gtk-tree-path-prev"></a><h3>gtk_tree_path_prev ()</h3>
|
1317
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1318
|
+
gtk_tree_path_prev (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1319
|
+
<p>Moves the <em class="parameter"><code>path</code></em>
|
1320
|
+
to point to the previous node at the current depth,
|
1321
|
+
if it exists.</p>
|
1322
|
+
<div class="refsect3">
|
1323
|
+
<a name="id-1.4.9.3.14.18.5"></a><h4>Parameters</h4>
|
1324
|
+
<div class="informaltable"><table width="100%" border="0">
|
1325
|
+
<colgroup>
|
1326
|
+
<col width="150px" class="parameters_name">
|
1327
|
+
<col class="parameters_description">
|
1328
|
+
<col width="200px" class="parameters_annotations">
|
1329
|
+
</colgroup>
|
1330
|
+
<tbody><tr>
|
1331
|
+
<td class="parameter_name"><p>path</p></td>
|
1332
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1333
|
+
<td class="parameter_annotations"> </td>
|
1334
|
+
</tr></tbody>
|
1335
|
+
</table></div>
|
1336
|
+
</div>
|
1337
|
+
<div class="refsect3">
|
1338
|
+
<a name="id-1.4.9.3.14.18.6"></a><h4>Returns</h4>
|
1339
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>path</code></em>
|
1340
|
+
has a previous node, and the move was made.</p>
|
1341
|
+
<p></p>
|
1342
|
+
</div>
|
1343
|
+
</div>
|
1344
|
+
<hr>
|
1345
|
+
<div class="refsect2">
|
1346
|
+
<a name="gtk-tree-path-up"></a><h3>gtk_tree_path_up ()</h3>
|
1347
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1348
|
+
gtk_tree_path_up (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1349
|
+
<p>Moves the <em class="parameter"><code>path</code></em>
|
1350
|
+
to point to its parent node, if it has a parent.</p>
|
1351
|
+
<div class="refsect3">
|
1352
|
+
<a name="id-1.4.9.3.14.19.5"></a><h4>Parameters</h4>
|
1353
|
+
<div class="informaltable"><table width="100%" border="0">
|
1354
|
+
<colgroup>
|
1355
|
+
<col width="150px" class="parameters_name">
|
1356
|
+
<col class="parameters_description">
|
1357
|
+
<col width="200px" class="parameters_annotations">
|
1358
|
+
</colgroup>
|
1359
|
+
<tbody><tr>
|
1360
|
+
<td class="parameter_name"><p>path</p></td>
|
1361
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1362
|
+
<td class="parameter_annotations"> </td>
|
1363
|
+
</tr></tbody>
|
1364
|
+
</table></div>
|
1365
|
+
</div>
|
1366
|
+
<div class="refsect3">
|
1367
|
+
<a name="id-1.4.9.3.14.19.6"></a><h4>Returns</h4>
|
1368
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>path</code></em>
|
1369
|
+
has a parent, and the move was made.</p>
|
1370
|
+
<p></p>
|
1371
|
+
</div>
|
1372
|
+
</div>
|
1373
|
+
<hr>
|
1374
|
+
<div class="refsect2">
|
1375
|
+
<a name="gtk-tree-path-down"></a><h3>gtk_tree_path_down ()</h3>
|
1376
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1377
|
+
gtk_tree_path_down (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1378
|
+
<p>Moves <em class="parameter"><code>path</code></em>
|
1379
|
+
to point to the first child of the current path.</p>
|
1380
|
+
<div class="refsect3">
|
1381
|
+
<a name="id-1.4.9.3.14.20.5"></a><h4>Parameters</h4>
|
1382
|
+
<div class="informaltable"><table width="100%" border="0">
|
1383
|
+
<colgroup>
|
1384
|
+
<col width="150px" class="parameters_name">
|
1385
|
+
<col class="parameters_description">
|
1386
|
+
<col width="200px" class="parameters_annotations">
|
1387
|
+
</colgroup>
|
1388
|
+
<tbody><tr>
|
1389
|
+
<td class="parameter_name"><p>path</p></td>
|
1390
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
1391
|
+
<td class="parameter_annotations"> </td>
|
1392
|
+
</tr></tbody>
|
1393
|
+
</table></div>
|
1394
|
+
</div>
|
1395
|
+
</div>
|
1396
|
+
<hr>
|
1397
|
+
<div class="refsect2">
|
1398
|
+
<a name="gtk-tree-path-is-ancestor"></a><h3>gtk_tree_path_is_ancestor ()</h3>
|
1399
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1400
|
+
gtk_tree_path_is_ancestor (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
1401
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *descendant</code></em>);</pre>
|
1402
|
+
<p>Returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>descendant</code></em>
|
1403
|
+
is a descendant of <em class="parameter"><code>path</code></em>
|
1404
|
+
.</p>
|
1405
|
+
<div class="refsect3">
|
1406
|
+
<a name="id-1.4.9.3.14.21.5"></a><h4>Parameters</h4>
|
1407
|
+
<div class="informaltable"><table width="100%" border="0">
|
1408
|
+
<colgroup>
|
1409
|
+
<col width="150px" class="parameters_name">
|
1410
|
+
<col class="parameters_description">
|
1411
|
+
<col width="200px" class="parameters_annotations">
|
1412
|
+
</colgroup>
|
1413
|
+
<tbody>
|
1414
|
+
<tr>
|
1415
|
+
<td class="parameter_name"><p>path</p></td>
|
1416
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a></p></td>
|
1417
|
+
<td class="parameter_annotations"> </td>
|
1418
|
+
</tr>
|
1419
|
+
<tr>
|
1420
|
+
<td class="parameter_name"><p>descendant</p></td>
|
1421
|
+
<td class="parameter_description"><p>another <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a></p></td>
|
1422
|
+
<td class="parameter_annotations"> </td>
|
1423
|
+
</tr>
|
1424
|
+
</tbody>
|
1425
|
+
</table></div>
|
1426
|
+
</div>
|
1427
|
+
<div class="refsect3">
|
1428
|
+
<a name="id-1.4.9.3.14.21.6"></a><h4>Returns</h4>
|
1429
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>descendant</code></em>
|
1430
|
+
is contained inside <em class="parameter"><code>path</code></em>
|
1431
|
+
</p>
|
1432
|
+
<p></p>
|
1433
|
+
</div>
|
1434
|
+
</div>
|
1435
|
+
<hr>
|
1436
|
+
<div class="refsect2">
|
1437
|
+
<a name="gtk-tree-path-is-descendant"></a><h3>gtk_tree_path_is_descendant ()</h3>
|
1438
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1439
|
+
gtk_tree_path_is_descendant (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
1440
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *ancestor</code></em>);</pre>
|
1441
|
+
<p>Returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>path</code></em>
|
1442
|
+
is a descendant of <em class="parameter"><code>ancestor</code></em>
|
1443
|
+
.</p>
|
1444
|
+
<div class="refsect3">
|
1445
|
+
<a name="id-1.4.9.3.14.22.5"></a><h4>Parameters</h4>
|
1446
|
+
<div class="informaltable"><table width="100%" border="0">
|
1447
|
+
<colgroup>
|
1448
|
+
<col width="150px" class="parameters_name">
|
1449
|
+
<col class="parameters_description">
|
1450
|
+
<col width="200px" class="parameters_annotations">
|
1451
|
+
</colgroup>
|
1452
|
+
<tbody>
|
1453
|
+
<tr>
|
1454
|
+
<td class="parameter_name"><p>path</p></td>
|
1455
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a></p></td>
|
1456
|
+
<td class="parameter_annotations"> </td>
|
1457
|
+
</tr>
|
1458
|
+
<tr>
|
1459
|
+
<td class="parameter_name"><p>ancestor</p></td>
|
1460
|
+
<td class="parameter_description"><p>another <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a></p></td>
|
1461
|
+
<td class="parameter_annotations"> </td>
|
1462
|
+
</tr>
|
1463
|
+
</tbody>
|
1464
|
+
</table></div>
|
1465
|
+
</div>
|
1466
|
+
<div class="refsect3">
|
1467
|
+
<a name="id-1.4.9.3.14.22.6"></a><h4>Returns</h4>
|
1468
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>ancestor</code></em>
|
1469
|
+
contains <em class="parameter"><code>path</code></em>
|
1470
|
+
somewhere below it</p>
|
1471
|
+
<p></p>
|
1472
|
+
</div>
|
1473
|
+
</div>
|
1474
|
+
<hr>
|
1475
|
+
<div class="refsect2">
|
1476
|
+
<a name="gtk-tree-row-reference-new"></a><h3>gtk_tree_row_reference_new ()</h3>
|
1477
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> *
|
1478
|
+
gtk_tree_row_reference_new (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
|
1479
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1480
|
+
<p>Creates a row reference based on <em class="parameter"><code>path</code></em>
|
1481
|
+
. This reference will keep pointing
|
1482
|
+
to the node pointed to by <em class="parameter"><code>path</code></em>
|
1483
|
+
, so long as it exists. It listens to all
|
1484
|
+
signals emitted by <em class="parameter"><code>model</code></em>
|
1485
|
+
, and updates its path appropriately. If <em class="parameter"><code>path</code></em>
|
1486
|
+
|
1487
|
+
isn't a valid path in <em class="parameter"><code>model</code></em>
|
1488
|
+
, then <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is returned.</p>
|
1489
|
+
<div class="refsect3">
|
1490
|
+
<a name="id-1.4.9.3.14.23.5"></a><h4>Parameters</h4>
|
1491
|
+
<div class="informaltable"><table width="100%" border="0">
|
1492
|
+
<colgroup>
|
1493
|
+
<col width="150px" class="parameters_name">
|
1494
|
+
<col class="parameters_description">
|
1495
|
+
<col width="200px" class="parameters_annotations">
|
1496
|
+
</colgroup>
|
1497
|
+
<tbody>
|
1498
|
+
<tr>
|
1499
|
+
<td class="parameter_name"><p>model</p></td>
|
1500
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
1501
|
+
<td class="parameter_annotations"> </td>
|
1502
|
+
</tr>
|
1503
|
+
<tr>
|
1504
|
+
<td class="parameter_name"><p>path</p></td>
|
1505
|
+
<td class="parameter_description"><p>A valid <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to monitor</p></td>
|
1506
|
+
<td class="parameter_annotations"> </td>
|
1507
|
+
</tr>
|
1508
|
+
</tbody>
|
1509
|
+
</table></div>
|
1510
|
+
</div>
|
1511
|
+
<div class="refsect3">
|
1512
|
+
<a name="id-1.4.9.3.14.23.6"></a><h4>Returns</h4>
|
1513
|
+
<p> A newly allocated <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1514
|
+
<p></p>
|
1515
|
+
</div>
|
1516
|
+
</div>
|
1517
|
+
<hr>
|
1518
|
+
<div class="refsect2">
|
1519
|
+
<a name="gtk-tree-row-reference-new-proxy"></a><h3>gtk_tree_row_reference_new_proxy ()</h3>
|
1520
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> *
|
1521
|
+
gtk_tree_row_reference_new_proxy (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
|
1522
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
|
1523
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1524
|
+
<p>You do not need to use this function. Creates a row reference based on
|
1525
|
+
<em class="parameter"><code>path</code></em>
|
1526
|
+
. This reference will keep pointing to the node pointed to by <em class="parameter"><code>path</code></em>
|
1527
|
+
,
|
1528
|
+
so long as it exists. If <em class="parameter"><code>path</code></em>
|
1529
|
+
isn't a valid path in <em class="parameter"><code>model</code></em>
|
1530
|
+
, then <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is
|
1531
|
+
returned. However, unlike references created with
|
1532
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new" title="gtk_tree_row_reference_new ()"><code class="function">gtk_tree_row_reference_new()</code></a>, it does not listen to the model for changes.
|
1533
|
+
The creator of the row reference must do this explicitly using
|
1534
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-inserted" title="gtk_tree_row_reference_inserted ()"><code class="function">gtk_tree_row_reference_inserted()</code></a>, <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-deleted" title="gtk_tree_row_reference_deleted ()"><code class="function">gtk_tree_row_reference_deleted()</code></a>,
|
1535
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-reordered" title="gtk_tree_row_reference_reordered ()"><code class="function">gtk_tree_row_reference_reordered()</code></a>.</p>
|
1536
|
+
<p>These functions must be called exactly once per proxy when the
|
1537
|
+
corresponding signal on the model is emitted. This single call
|
1538
|
+
updates all row references for that proxy. Since built-in GTK+
|
1539
|
+
objects like <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> already use this mechanism internally,
|
1540
|
+
using them as the proxy object will produce unpredictable results.
|
1541
|
+
Further more, passing the same object as <em class="parameter"><code>model</code></em>
|
1542
|
+
and <em class="parameter"><code>proxy</code></em>
|
1543
|
+
|
1544
|
+
doesn't work for reasons of internal implementation.</p>
|
1545
|
+
<p>This type of row reference is primarily meant by structures that need to
|
1546
|
+
carefully monitor exactly when a row reference updates itself, and is not
|
1547
|
+
generally needed by most applications.</p>
|
1548
|
+
<div class="refsect3">
|
1549
|
+
<a name="id-1.4.9.3.14.24.7"></a><h4>Parameters</h4>
|
1550
|
+
<div class="informaltable"><table width="100%" border="0">
|
1551
|
+
<colgroup>
|
1552
|
+
<col width="150px" class="parameters_name">
|
1553
|
+
<col class="parameters_description">
|
1554
|
+
<col width="200px" class="parameters_annotations">
|
1555
|
+
</colgroup>
|
1556
|
+
<tbody>
|
1557
|
+
<tr>
|
1558
|
+
<td class="parameter_name"><p>proxy</p></td>
|
1559
|
+
<td class="parameter_description"><p>A proxy <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
1560
|
+
<td class="parameter_annotations"> </td>
|
1561
|
+
</tr>
|
1562
|
+
<tr>
|
1563
|
+
<td class="parameter_name"><p>model</p></td>
|
1564
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
1565
|
+
<td class="parameter_annotations"> </td>
|
1566
|
+
</tr>
|
1567
|
+
<tr>
|
1568
|
+
<td class="parameter_name"><p>path</p></td>
|
1569
|
+
<td class="parameter_description"><p>A valid <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to monitor</p></td>
|
1570
|
+
<td class="parameter_annotations"> </td>
|
1571
|
+
</tr>
|
1572
|
+
</tbody>
|
1573
|
+
</table></div>
|
1574
|
+
</div>
|
1575
|
+
<div class="refsect3">
|
1576
|
+
<a name="id-1.4.9.3.14.24.8"></a><h4>Returns</h4>
|
1577
|
+
<p> A newly allocated <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
|
1578
|
+
<p></p>
|
1579
|
+
</div>
|
1580
|
+
</div>
|
1581
|
+
<hr>
|
1582
|
+
<div class="refsect2">
|
1583
|
+
<a name="gtk-tree-row-reference-get-model"></a><h3>gtk_tree_row_reference_get_model ()</h3>
|
1584
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> *
|
1585
|
+
gtk_tree_row_reference_get_model (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
|
1586
|
+
<p>Returns the model that the row reference is monitoring.</p>
|
1587
|
+
<div class="refsect3">
|
1588
|
+
<a name="id-1.4.9.3.14.25.5"></a><h4>Parameters</h4>
|
1589
|
+
<div class="informaltable"><table width="100%" border="0">
|
1590
|
+
<colgroup>
|
1591
|
+
<col width="150px" class="parameters_name">
|
1592
|
+
<col class="parameters_description">
|
1593
|
+
<col width="200px" class="parameters_annotations">
|
1594
|
+
</colgroup>
|
1595
|
+
<tbody><tr>
|
1596
|
+
<td class="parameter_name"><p>reference</p></td>
|
1597
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a></p></td>
|
1598
|
+
<td class="parameter_annotations"> </td>
|
1599
|
+
</tr></tbody>
|
1600
|
+
</table></div>
|
1601
|
+
</div>
|
1602
|
+
<div class="refsect3">
|
1603
|
+
<a name="id-1.4.9.3.14.25.6"></a><h4>Returns</h4>
|
1604
|
+
<p> the model. </p>
|
1605
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1606
|
+
</div>
|
1607
|
+
<p class="since">Since 2.8</p>
|
1608
|
+
</div>
|
1609
|
+
<hr>
|
1610
|
+
<div class="refsect2">
|
1611
|
+
<a name="gtk-tree-row-reference-get-path"></a><h3>gtk_tree_row_reference_get_path ()</h3>
|
1612
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
1613
|
+
gtk_tree_row_reference_get_path (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
|
1614
|
+
<p>Returns a path that the row reference currently points to, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
|
1615
|
+
path pointed to is no longer valid.</p>
|
1616
|
+
<div class="refsect3">
|
1617
|
+
<a name="id-1.4.9.3.14.26.5"></a><h4>Parameters</h4>
|
1618
|
+
<div class="informaltable"><table width="100%" border="0">
|
1619
|
+
<colgroup>
|
1620
|
+
<col width="150px" class="parameters_name">
|
1621
|
+
<col class="parameters_description">
|
1622
|
+
<col width="200px" class="parameters_annotations">
|
1623
|
+
</colgroup>
|
1624
|
+
<tbody><tr>
|
1625
|
+
<td class="parameter_name"><p>reference</p></td>
|
1626
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a></p></td>
|
1627
|
+
<td class="parameter_annotations"> </td>
|
1628
|
+
</tr></tbody>
|
1629
|
+
</table></div>
|
1630
|
+
</div>
|
1631
|
+
<div class="refsect3">
|
1632
|
+
<a name="id-1.4.9.3.14.26.6"></a><h4>Returns</h4>
|
1633
|
+
<p> A current path, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
1634
|
+
<p></p>
|
1635
|
+
</div>
|
1636
|
+
</div>
|
1637
|
+
<hr>
|
1638
|
+
<div class="refsect2">
|
1639
|
+
<a name="gtk-tree-row-reference-valid"></a><h3>gtk_tree_row_reference_valid ()</h3>
|
1640
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1641
|
+
gtk_tree_row_reference_valid (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
|
1642
|
+
<p>Returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the <em class="parameter"><code>reference</code></em>
|
1643
|
+
is non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> and refers to a current valid
|
1644
|
+
path.</p>
|
1645
|
+
<div class="refsect3">
|
1646
|
+
<a name="id-1.4.9.3.14.27.5"></a><h4>Parameters</h4>
|
1647
|
+
<div class="informaltable"><table width="100%" border="0">
|
1648
|
+
<colgroup>
|
1649
|
+
<col width="150px" class="parameters_name">
|
1650
|
+
<col class="parameters_description">
|
1651
|
+
<col width="200px" class="parameters_annotations">
|
1652
|
+
</colgroup>
|
1653
|
+
<tbody><tr>
|
1654
|
+
<td class="parameter_name"><p>reference</p></td>
|
1655
|
+
<td class="parameter_description"><p> A <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
1656
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1657
|
+
</tr></tbody>
|
1658
|
+
</table></div>
|
1659
|
+
</div>
|
1660
|
+
<div class="refsect3">
|
1661
|
+
<a name="id-1.4.9.3.14.27.6"></a><h4>Returns</h4>
|
1662
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>reference</code></em>
|
1663
|
+
points to a valid path.</p>
|
1664
|
+
<p></p>
|
1665
|
+
</div>
|
1666
|
+
</div>
|
1667
|
+
<hr>
|
1668
|
+
<div class="refsect2">
|
1669
|
+
<a name="gtk-tree-row-reference-free"></a><h3>gtk_tree_row_reference_free ()</h3>
|
1670
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1671
|
+
gtk_tree_row_reference_free (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
|
1672
|
+
<p>Free's <em class="parameter"><code>reference</code></em>
|
1673
|
+
. <em class="parameter"><code>reference</code></em>
|
1674
|
+
may be <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
1675
|
+
<div class="refsect3">
|
1676
|
+
<a name="id-1.4.9.3.14.28.5"></a><h4>Parameters</h4>
|
1677
|
+
<div class="informaltable"><table width="100%" border="0">
|
1678
|
+
<colgroup>
|
1679
|
+
<col width="150px" class="parameters_name">
|
1680
|
+
<col class="parameters_description">
|
1681
|
+
<col width="200px" class="parameters_annotations">
|
1682
|
+
</colgroup>
|
1683
|
+
<tbody><tr>
|
1684
|
+
<td class="parameter_name"><p>reference</p></td>
|
1685
|
+
<td class="parameter_description"><p> A <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
1686
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1687
|
+
</tr></tbody>
|
1688
|
+
</table></div>
|
1689
|
+
</div>
|
1690
|
+
</div>
|
1691
|
+
<hr>
|
1692
|
+
<div class="refsect2">
|
1693
|
+
<a name="gtk-tree-row-reference-copy"></a><h3>gtk_tree_row_reference_copy ()</h3>
|
1694
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> *
|
1695
|
+
gtk_tree_row_reference_copy (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
|
1696
|
+
<p>Copies a <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>.</p>
|
1697
|
+
<div class="refsect3">
|
1698
|
+
<a name="id-1.4.9.3.14.29.5"></a><h4>Parameters</h4>
|
1699
|
+
<div class="informaltable"><table width="100%" border="0">
|
1700
|
+
<colgroup>
|
1701
|
+
<col width="150px" class="parameters_name">
|
1702
|
+
<col class="parameters_description">
|
1703
|
+
<col width="200px" class="parameters_annotations">
|
1704
|
+
</colgroup>
|
1705
|
+
<tbody><tr>
|
1706
|
+
<td class="parameter_name"><p>reference</p></td>
|
1707
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a></p></td>
|
1708
|
+
<td class="parameter_annotations"> </td>
|
1709
|
+
</tr></tbody>
|
1710
|
+
</table></div>
|
1711
|
+
</div>
|
1712
|
+
<div class="refsect3">
|
1713
|
+
<a name="id-1.4.9.3.14.29.6"></a><h4>Returns</h4>
|
1714
|
+
<p> a copy of <em class="parameter"><code>reference</code></em>
|
1715
|
+
.</p>
|
1716
|
+
<p></p>
|
1717
|
+
</div>
|
1718
|
+
<p class="since">Since 2.2</p>
|
1719
|
+
</div>
|
1720
|
+
<hr>
|
1721
|
+
<div class="refsect2">
|
1722
|
+
<a name="gtk-tree-row-reference-inserted"></a><h3>gtk_tree_row_reference_inserted ()</h3>
|
1723
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1724
|
+
gtk_tree_row_reference_inserted (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
|
1725
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1726
|
+
<p>Lets a set of row reference created by <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()"><code class="function">gtk_tree_row_reference_new_proxy()</code></a>
|
1727
|
+
know that the model emitted the "row_inserted" signal.</p>
|
1728
|
+
<div class="refsect3">
|
1729
|
+
<a name="id-1.4.9.3.14.30.5"></a><h4>Parameters</h4>
|
1730
|
+
<div class="informaltable"><table width="100%" border="0">
|
1731
|
+
<colgroup>
|
1732
|
+
<col width="150px" class="parameters_name">
|
1733
|
+
<col class="parameters_description">
|
1734
|
+
<col width="200px" class="parameters_annotations">
|
1735
|
+
</colgroup>
|
1736
|
+
<tbody>
|
1737
|
+
<tr>
|
1738
|
+
<td class="parameter_name"><p>proxy</p></td>
|
1739
|
+
<td class="parameter_description"><p>A <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
1740
|
+
<td class="parameter_annotations"> </td>
|
1741
|
+
</tr>
|
1742
|
+
<tr>
|
1743
|
+
<td class="parameter_name"><p>path</p></td>
|
1744
|
+
<td class="parameter_description"><p>The row position that was inserted</p></td>
|
1745
|
+
<td class="parameter_annotations"> </td>
|
1746
|
+
</tr>
|
1747
|
+
</tbody>
|
1748
|
+
</table></div>
|
1749
|
+
</div>
|
1750
|
+
</div>
|
1751
|
+
<hr>
|
1752
|
+
<div class="refsect2">
|
1753
|
+
<a name="gtk-tree-row-reference-deleted"></a><h3>gtk_tree_row_reference_deleted ()</h3>
|
1754
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1755
|
+
gtk_tree_row_reference_deleted (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
|
1756
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1757
|
+
<p>Lets a set of row reference created by <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()"><code class="function">gtk_tree_row_reference_new_proxy()</code></a>
|
1758
|
+
know that the model emitted the "row_deleted" signal.</p>
|
1759
|
+
<div class="refsect3">
|
1760
|
+
<a name="id-1.4.9.3.14.31.5"></a><h4>Parameters</h4>
|
1761
|
+
<div class="informaltable"><table width="100%" border="0">
|
1762
|
+
<colgroup>
|
1763
|
+
<col width="150px" class="parameters_name">
|
1764
|
+
<col class="parameters_description">
|
1765
|
+
<col width="200px" class="parameters_annotations">
|
1766
|
+
</colgroup>
|
1767
|
+
<tbody>
|
1768
|
+
<tr>
|
1769
|
+
<td class="parameter_name"><p>proxy</p></td>
|
1770
|
+
<td class="parameter_description"><p>A <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
1771
|
+
<td class="parameter_annotations"> </td>
|
1772
|
+
</tr>
|
1773
|
+
<tr>
|
1774
|
+
<td class="parameter_name"><p>path</p></td>
|
1775
|
+
<td class="parameter_description"><p>The path position that was deleted</p></td>
|
1776
|
+
<td class="parameter_annotations"> </td>
|
1777
|
+
</tr>
|
1778
|
+
</tbody>
|
1779
|
+
</table></div>
|
1780
|
+
</div>
|
1781
|
+
</div>
|
1782
|
+
<hr>
|
1783
|
+
<div class="refsect2">
|
1784
|
+
<a name="gtk-tree-row-reference-reordered"></a><h3>gtk_tree_row_reference_reordered ()</h3>
|
1785
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1786
|
+
gtk_tree_row_reference_reordered (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *proxy</code></em>,
|
1787
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
1788
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
1789
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *new_order</code></em>);</pre>
|
1790
|
+
<p>Lets a set of row reference created by <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()"><code class="function">gtk_tree_row_reference_new_proxy()</code></a>
|
1791
|
+
know that the model emitted the "rows_reordered" signal.</p>
|
1792
|
+
<div class="refsect3">
|
1793
|
+
<a name="id-1.4.9.3.14.32.5"></a><h4>Parameters</h4>
|
1794
|
+
<div class="informaltable"><table width="100%" border="0">
|
1795
|
+
<colgroup>
|
1796
|
+
<col width="150px" class="parameters_name">
|
1797
|
+
<col class="parameters_description">
|
1798
|
+
<col width="200px" class="parameters_annotations">
|
1799
|
+
</colgroup>
|
1800
|
+
<tbody>
|
1801
|
+
<tr>
|
1802
|
+
<td class="parameter_name"><p>proxy</p></td>
|
1803
|
+
<td class="parameter_description"><p>A <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a></p></td>
|
1804
|
+
<td class="parameter_annotations"> </td>
|
1805
|
+
</tr>
|
1806
|
+
<tr>
|
1807
|
+
<td class="parameter_name"><p>path</p></td>
|
1808
|
+
<td class="parameter_description"><p>The parent path of the reordered signal</p></td>
|
1809
|
+
<td class="parameter_annotations"> </td>
|
1810
|
+
</tr>
|
1811
|
+
<tr>
|
1812
|
+
<td class="parameter_name"><p>iter</p></td>
|
1813
|
+
<td class="parameter_description"><p>The iter pointing to the parent of the reordered</p></td>
|
1814
|
+
<td class="parameter_annotations"> </td>
|
1815
|
+
</tr>
|
1816
|
+
<tr>
|
1817
|
+
<td class="parameter_name"><p>new_order</p></td>
|
1818
|
+
<td class="parameter_description"><p>The new order of rows</p></td>
|
1819
|
+
<td class="parameter_annotations"> </td>
|
1820
|
+
</tr>
|
1821
|
+
</tbody>
|
1822
|
+
</table></div>
|
1823
|
+
</div>
|
1824
|
+
</div>
|
1825
|
+
<hr>
|
1826
|
+
<div class="refsect2">
|
1827
|
+
<a name="gtk-tree-iter-copy"></a><h3>gtk_tree_iter_copy ()</h3>
|
1828
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="returnvalue">GtkTreeIter</span></a> *
|
1829
|
+
gtk_tree_iter_copy (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
1830
|
+
<p>Creates a dynamically allocated tree iterator as a copy of <em class="parameter"><code>iter</code></em>
|
1831
|
+
.
|
1832
|
+
This function is not intended for use in applications, because you
|
1833
|
+
can just copy the structs by value
|
1834
|
+
(<code class="literal">GtkTreeIter new_iter = iter;</code>).
|
1835
|
+
You must free this iter with <a class="link" href="GtkTreeModel.html#gtk-tree-iter-free" title="gtk_tree_iter_free ()"><code class="function">gtk_tree_iter_free()</code></a>.</p>
|
1836
|
+
<div class="refsect3">
|
1837
|
+
<a name="id-1.4.9.3.14.33.5"></a><h4>Parameters</h4>
|
1838
|
+
<div class="informaltable"><table width="100%" border="0">
|
1839
|
+
<colgroup>
|
1840
|
+
<col width="150px" class="parameters_name">
|
1841
|
+
<col class="parameters_description">
|
1842
|
+
<col width="200px" class="parameters_annotations">
|
1843
|
+
</colgroup>
|
1844
|
+
<tbody><tr>
|
1845
|
+
<td class="parameter_name"><p>iter</p></td>
|
1846
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</p></td>
|
1847
|
+
<td class="parameter_annotations"> </td>
|
1848
|
+
</tr></tbody>
|
1849
|
+
</table></div>
|
1850
|
+
</div>
|
1851
|
+
<div class="refsect3">
|
1852
|
+
<a name="id-1.4.9.3.14.33.6"></a><h4>Returns</h4>
|
1853
|
+
<p> a newly-allocated copy of <em class="parameter"><code>iter</code></em>
|
1854
|
+
.</p>
|
1855
|
+
<p></p>
|
1856
|
+
</div>
|
1857
|
+
</div>
|
1858
|
+
<hr>
|
1859
|
+
<div class="refsect2">
|
1860
|
+
<a name="gtk-tree-iter-free"></a><h3>gtk_tree_iter_free ()</h3>
|
1861
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1862
|
+
gtk_tree_iter_free (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
1863
|
+
<p>Frees an iterator that has been allocated by <a class="link" href="GtkTreeModel.html#gtk-tree-iter-copy" title="gtk_tree_iter_copy ()"><code class="function">gtk_tree_iter_copy()</code></a>.
|
1864
|
+
This function is mainly used for language bindings.</p>
|
1865
|
+
<div class="refsect3">
|
1866
|
+
<a name="id-1.4.9.3.14.34.5"></a><h4>Parameters</h4>
|
1867
|
+
<div class="informaltable"><table width="100%" border="0">
|
1868
|
+
<colgroup>
|
1869
|
+
<col width="150px" class="parameters_name">
|
1870
|
+
<col class="parameters_description">
|
1871
|
+
<col width="200px" class="parameters_annotations">
|
1872
|
+
</colgroup>
|
1873
|
+
<tbody><tr>
|
1874
|
+
<td class="parameter_name"><p>iter</p></td>
|
1875
|
+
<td class="parameter_description"><p>A dynamically allocated tree iterator.</p></td>
|
1876
|
+
<td class="parameter_annotations"> </td>
|
1877
|
+
</tr></tbody>
|
1878
|
+
</table></div>
|
1879
|
+
</div>
|
1880
|
+
</div>
|
1881
|
+
<hr>
|
1882
|
+
<div class="refsect2">
|
1883
|
+
<a name="gtk-tree-model-get-flags"></a><h3>gtk_tree_model_get_flags ()</h3>
|
1884
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags"><span class="returnvalue">GtkTreeModelFlags</span></a>
|
1885
|
+
gtk_tree_model_get_flags (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);</pre>
|
1886
|
+
<p>Returns a set of flags supported by this interface. The flags are a bitwise
|
1887
|
+
combination of <a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags"><span class="type">GtkTreeModelFlags</span></a>. The flags supported should not change
|
1888
|
+
during the lifecycle of the <em class="parameter"><code>tree_model</code></em>
|
1889
|
+
.</p>
|
1890
|
+
<div class="refsect3">
|
1891
|
+
<a name="id-1.4.9.3.14.35.5"></a><h4>Parameters</h4>
|
1892
|
+
<div class="informaltable"><table width="100%" border="0">
|
1893
|
+
<colgroup>
|
1894
|
+
<col width="150px" class="parameters_name">
|
1895
|
+
<col class="parameters_description">
|
1896
|
+
<col width="200px" class="parameters_annotations">
|
1897
|
+
</colgroup>
|
1898
|
+
<tbody><tr>
|
1899
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
1900
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
1901
|
+
<td class="parameter_annotations"> </td>
|
1902
|
+
</tr></tbody>
|
1903
|
+
</table></div>
|
1904
|
+
</div>
|
1905
|
+
<div class="refsect3">
|
1906
|
+
<a name="id-1.4.9.3.14.35.6"></a><h4>Returns</h4>
|
1907
|
+
<p> The flags supported by this interface.</p>
|
1908
|
+
<p></p>
|
1909
|
+
</div>
|
1910
|
+
</div>
|
1911
|
+
<hr>
|
1912
|
+
<div class="refsect2">
|
1913
|
+
<a name="gtk-tree-model-get-n-columns"></a><h3>gtk_tree_model_get_n_columns ()</h3>
|
1914
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
1915
|
+
gtk_tree_model_get_n_columns (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);</pre>
|
1916
|
+
<p>Returns the number of columns supported by <em class="parameter"><code>tree_model</code></em>
|
1917
|
+
.</p>
|
1918
|
+
<div class="refsect3">
|
1919
|
+
<a name="id-1.4.9.3.14.36.5"></a><h4>Parameters</h4>
|
1920
|
+
<div class="informaltable"><table width="100%" border="0">
|
1921
|
+
<colgroup>
|
1922
|
+
<col width="150px" class="parameters_name">
|
1923
|
+
<col class="parameters_description">
|
1924
|
+
<col width="200px" class="parameters_annotations">
|
1925
|
+
</colgroup>
|
1926
|
+
<tbody><tr>
|
1927
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
1928
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
1929
|
+
<td class="parameter_annotations"> </td>
|
1930
|
+
</tr></tbody>
|
1931
|
+
</table></div>
|
1932
|
+
</div>
|
1933
|
+
<div class="refsect3">
|
1934
|
+
<a name="id-1.4.9.3.14.36.6"></a><h4>Returns</h4>
|
1935
|
+
<p> The number of columns.</p>
|
1936
|
+
<p></p>
|
1937
|
+
</div>
|
1938
|
+
</div>
|
1939
|
+
<hr>
|
1940
|
+
<div class="refsect2">
|
1941
|
+
<a name="gtk-tree-model-get-column-type"></a><h3>gtk_tree_model_get_column_type ()</h3>
|
1942
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a>
|
1943
|
+
gtk_tree_model_get_column_type (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
1944
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);</pre>
|
1945
|
+
<p>Returns the type of the column.</p>
|
1946
|
+
<div class="refsect3">
|
1947
|
+
<a name="id-1.4.9.3.14.37.5"></a><h4>Parameters</h4>
|
1948
|
+
<div class="informaltable"><table width="100%" border="0">
|
1949
|
+
<colgroup>
|
1950
|
+
<col width="150px" class="parameters_name">
|
1951
|
+
<col class="parameters_description">
|
1952
|
+
<col width="200px" class="parameters_annotations">
|
1953
|
+
</colgroup>
|
1954
|
+
<tbody>
|
1955
|
+
<tr>
|
1956
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
1957
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
1958
|
+
<td class="parameter_annotations"> </td>
|
1959
|
+
</tr>
|
1960
|
+
<tr>
|
1961
|
+
<td class="parameter_name"><p>index_</p></td>
|
1962
|
+
<td class="parameter_description"><p>The column index.</p></td>
|
1963
|
+
<td class="parameter_annotations"> </td>
|
1964
|
+
</tr>
|
1965
|
+
</tbody>
|
1966
|
+
</table></div>
|
1967
|
+
</div>
|
1968
|
+
<div class="refsect3">
|
1969
|
+
<a name="id-1.4.9.3.14.37.6"></a><h4>Returns</h4>
|
1970
|
+
<p> The type of the column. </p>
|
1971
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1972
|
+
</div>
|
1973
|
+
</div>
|
1974
|
+
<hr>
|
1975
|
+
<div class="refsect2">
|
1976
|
+
<a name="gtk-tree-model-get-iter"></a><h3>gtk_tree_model_get_iter ()</h3>
|
1977
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1978
|
+
gtk_tree_model_get_iter (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
1979
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
1980
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
1981
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
1982
|
+
to a valid iterator pointing to <em class="parameter"><code>path</code></em>
|
1983
|
+
.</p>
|
1984
|
+
<div class="refsect3">
|
1985
|
+
<a name="id-1.4.9.3.14.38.5"></a><h4>Parameters</h4>
|
1986
|
+
<div class="informaltable"><table width="100%" border="0">
|
1987
|
+
<colgroup>
|
1988
|
+
<col width="150px" class="parameters_name">
|
1989
|
+
<col class="parameters_description">
|
1990
|
+
<col width="200px" class="parameters_annotations">
|
1991
|
+
</colgroup>
|
1992
|
+
<tbody>
|
1993
|
+
<tr>
|
1994
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
1995
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
1996
|
+
<td class="parameter_annotations"> </td>
|
1997
|
+
</tr>
|
1998
|
+
<tr>
|
1999
|
+
<td class="parameter_name"><p>iter</p></td>
|
2000
|
+
<td class="parameter_description"><p> The uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. </p></td>
|
2001
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
2002
|
+
</tr>
|
2003
|
+
<tr>
|
2004
|
+
<td class="parameter_name"><p>path</p></td>
|
2005
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
2006
|
+
<td class="parameter_annotations"> </td>
|
2007
|
+
</tr>
|
2008
|
+
</tbody>
|
2009
|
+
</table></div>
|
2010
|
+
</div>
|
2011
|
+
<div class="refsect3">
|
2012
|
+
<a name="id-1.4.9.3.14.38.6"></a><h4>Returns</h4>
|
2013
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em>
|
2014
|
+
was set.</p>
|
2015
|
+
<p></p>
|
2016
|
+
</div>
|
2017
|
+
</div>
|
2018
|
+
<hr>
|
2019
|
+
<div class="refsect2">
|
2020
|
+
<a name="gtk-tree-model-get-iter-from-string"></a><h3>gtk_tree_model_get_iter_from_string ()</h3>
|
2021
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2022
|
+
gtk_tree_model_get_iter_from_string (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2023
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
2024
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path_string</code></em>);</pre>
|
2025
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
2026
|
+
to a valid iterator pointing to <em class="parameter"><code>path_string</code></em>
|
2027
|
+
, if it
|
2028
|
+
exists. Otherwise, <em class="parameter"><code>iter</code></em>
|
2029
|
+
is left invalid and <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned.</p>
|
2030
|
+
<div class="refsect3">
|
2031
|
+
<a name="id-1.4.9.3.14.39.5"></a><h4>Parameters</h4>
|
2032
|
+
<div class="informaltable"><table width="100%" border="0">
|
2033
|
+
<colgroup>
|
2034
|
+
<col width="150px" class="parameters_name">
|
2035
|
+
<col class="parameters_description">
|
2036
|
+
<col width="200px" class="parameters_annotations">
|
2037
|
+
</colgroup>
|
2038
|
+
<tbody>
|
2039
|
+
<tr>
|
2040
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2041
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2042
|
+
<td class="parameter_annotations"> </td>
|
2043
|
+
</tr>
|
2044
|
+
<tr>
|
2045
|
+
<td class="parameter_name"><p>iter</p></td>
|
2046
|
+
<td class="parameter_description"><p> An uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. </p></td>
|
2047
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
2048
|
+
</tr>
|
2049
|
+
<tr>
|
2050
|
+
<td class="parameter_name"><p>path_string</p></td>
|
2051
|
+
<td class="parameter_description"><p>A string representation of a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p></td>
|
2052
|
+
<td class="parameter_annotations"> </td>
|
2053
|
+
</tr>
|
2054
|
+
</tbody>
|
2055
|
+
</table></div>
|
2056
|
+
</div>
|
2057
|
+
<div class="refsect3">
|
2058
|
+
<a name="id-1.4.9.3.14.39.6"></a><h4>Returns</h4>
|
2059
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em>
|
2060
|
+
was set.</p>
|
2061
|
+
<p></p>
|
2062
|
+
</div>
|
2063
|
+
</div>
|
2064
|
+
<hr>
|
2065
|
+
<div class="refsect2">
|
2066
|
+
<a name="gtk-tree-model-get-iter-first"></a><h3>gtk_tree_model_get_iter_first ()</h3>
|
2067
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2068
|
+
gtk_tree_model_get_iter_first (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2069
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2070
|
+
<p>Initializes <em class="parameter"><code>iter</code></em>
|
2071
|
+
with the first iterator in the tree (the one at the path
|
2072
|
+
"0") and returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>. Returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the tree is empty.</p>
|
2073
|
+
<div class="refsect3">
|
2074
|
+
<a name="id-1.4.9.3.14.40.5"></a><h4>Parameters</h4>
|
2075
|
+
<div class="informaltable"><table width="100%" border="0">
|
2076
|
+
<colgroup>
|
2077
|
+
<col width="150px" class="parameters_name">
|
2078
|
+
<col class="parameters_description">
|
2079
|
+
<col width="200px" class="parameters_annotations">
|
2080
|
+
</colgroup>
|
2081
|
+
<tbody>
|
2082
|
+
<tr>
|
2083
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2084
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2085
|
+
<td class="parameter_annotations"> </td>
|
2086
|
+
</tr>
|
2087
|
+
<tr>
|
2088
|
+
<td class="parameter_name"><p>iter</p></td>
|
2089
|
+
<td class="parameter_description"><p> The uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. </p></td>
|
2090
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
2091
|
+
</tr>
|
2092
|
+
</tbody>
|
2093
|
+
</table></div>
|
2094
|
+
</div>
|
2095
|
+
<div class="refsect3">
|
2096
|
+
<a name="id-1.4.9.3.14.40.6"></a><h4>Returns</h4>
|
2097
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em>
|
2098
|
+
was set.</p>
|
2099
|
+
<p></p>
|
2100
|
+
</div>
|
2101
|
+
</div>
|
2102
|
+
<hr>
|
2103
|
+
<div class="refsect2">
|
2104
|
+
<a name="gtk-tree-model-get-iter-root"></a><h3>gtk_tree_model_get_iter_root()</h3>
|
2105
|
+
<pre class="programlisting">#define gtk_tree_model_get_iter_root(tree_model, iter) gtk_tree_model_get_iter_first(tree_model, iter)
|
2106
|
+
</pre>
|
2107
|
+
<div class="warning"><p><code class="literal">gtk_tree_model_get_iter_root</code> is deprecated and should not be used in newly-written code.</p></div>
|
2108
|
+
<p>
|
2109
|
+
A alternate name for <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter-first" title="gtk_tree_model_get_iter_first ()"><code class="function">gtk_tree_model_get_iter_first()</code></a> provided for
|
2110
|
+
compatibility reasons; this macro will be deprecated in future
|
2111
|
+
versions of GTK+.
|
2112
|
+
</p>
|
2113
|
+
<div class="refsect3">
|
2114
|
+
<a name="id-1.4.9.3.14.41.6"></a><h4>Parameters</h4>
|
2115
|
+
<div class="informaltable"><table width="100%" border="0">
|
2116
|
+
<colgroup>
|
2117
|
+
<col width="150px" class="parameters_name">
|
2118
|
+
<col class="parameters_description">
|
2119
|
+
<col width="200px" class="parameters_annotations">
|
2120
|
+
</colgroup>
|
2121
|
+
<tbody>
|
2122
|
+
<tr>
|
2123
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2124
|
+
<td class="parameter_description"><p> A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2125
|
+
<td class="parameter_annotations"> </td>
|
2126
|
+
</tr>
|
2127
|
+
<tr>
|
2128
|
+
<td class="parameter_name"><p>iter</p></td>
|
2129
|
+
<td class="parameter_description"><p>uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</p></td>
|
2130
|
+
<td class="parameter_annotations"> </td>
|
2131
|
+
</tr>
|
2132
|
+
</tbody>
|
2133
|
+
</table></div>
|
2134
|
+
</div>
|
2135
|
+
<div class="refsect3">
|
2136
|
+
<a name="id-1.4.9.3.14.41.7"></a><h4>Returns</h4>
|
2137
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em>
|
2138
|
+
was set.</p>
|
2139
|
+
<p></p>
|
2140
|
+
</div>
|
2141
|
+
</div>
|
2142
|
+
<hr>
|
2143
|
+
<div class="refsect2">
|
2144
|
+
<a name="gtk-tree-model-get-path"></a><h3>gtk_tree_model_get_path ()</h3>
|
2145
|
+
<pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> *
|
2146
|
+
gtk_tree_model_get_path (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2147
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2148
|
+
<p>Returns a newly-created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> referenced by <em class="parameter"><code>iter</code></em>
|
2149
|
+
. This path should
|
2150
|
+
be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a>.</p>
|
2151
|
+
<div class="refsect3">
|
2152
|
+
<a name="id-1.4.9.3.14.42.5"></a><h4>Parameters</h4>
|
2153
|
+
<div class="informaltable"><table width="100%" border="0">
|
2154
|
+
<colgroup>
|
2155
|
+
<col width="150px" class="parameters_name">
|
2156
|
+
<col class="parameters_description">
|
2157
|
+
<col width="200px" class="parameters_annotations">
|
2158
|
+
</colgroup>
|
2159
|
+
<tbody>
|
2160
|
+
<tr>
|
2161
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2162
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2163
|
+
<td class="parameter_annotations"> </td>
|
2164
|
+
</tr>
|
2165
|
+
<tr>
|
2166
|
+
<td class="parameter_name"><p>iter</p></td>
|
2167
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</p></td>
|
2168
|
+
<td class="parameter_annotations"> </td>
|
2169
|
+
</tr>
|
2170
|
+
</tbody>
|
2171
|
+
</table></div>
|
2172
|
+
</div>
|
2173
|
+
<div class="refsect3">
|
2174
|
+
<a name="id-1.4.9.3.14.42.6"></a><h4>Returns</h4>
|
2175
|
+
<p> a newly-created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</p>
|
2176
|
+
<p></p>
|
2177
|
+
</div>
|
2178
|
+
</div>
|
2179
|
+
<hr>
|
2180
|
+
<div class="refsect2">
|
2181
|
+
<a name="gtk-tree-model-get-value"></a><h3>gtk_tree_model_get_value ()</h3>
|
2182
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2183
|
+
gtk_tree_model_get_value (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2184
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
2185
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
2186
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
|
2187
|
+
<p>Initializes and sets <em class="parameter"><code>value</code></em>
|
2188
|
+
to that at <em class="parameter"><code>column</code></em>
|
2189
|
+
.
|
2190
|
+
When done with <em class="parameter"><code>value</code></em>
|
2191
|
+
, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#g-value-unset"><code class="function">g_value_unset()</code></a> needs to be called
|
2192
|
+
to free any allocated memory.</p>
|
2193
|
+
<div class="refsect3">
|
2194
|
+
<a name="id-1.4.9.3.14.43.5"></a><h4>Parameters</h4>
|
2195
|
+
<div class="informaltable"><table width="100%" border="0">
|
2196
|
+
<colgroup>
|
2197
|
+
<col width="150px" class="parameters_name">
|
2198
|
+
<col class="parameters_description">
|
2199
|
+
<col width="200px" class="parameters_annotations">
|
2200
|
+
</colgroup>
|
2201
|
+
<tbody>
|
2202
|
+
<tr>
|
2203
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2204
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2205
|
+
<td class="parameter_annotations"> </td>
|
2206
|
+
</tr>
|
2207
|
+
<tr>
|
2208
|
+
<td class="parameter_name"><p>iter</p></td>
|
2209
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</p></td>
|
2210
|
+
<td class="parameter_annotations"> </td>
|
2211
|
+
</tr>
|
2212
|
+
<tr>
|
2213
|
+
<td class="parameter_name"><p>column</p></td>
|
2214
|
+
<td class="parameter_description"><p>The column to lookup the value at.</p></td>
|
2215
|
+
<td class="parameter_annotations"> </td>
|
2216
|
+
</tr>
|
2217
|
+
<tr>
|
2218
|
+
<td class="parameter_name"><p>value</p></td>
|
2219
|
+
<td class="parameter_description"><p> An empty <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> to set. </p></td>
|
2220
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
|
2221
|
+
</tr>
|
2222
|
+
</tbody>
|
2223
|
+
</table></div>
|
2224
|
+
</div>
|
2225
|
+
</div>
|
2226
|
+
<hr>
|
2227
|
+
<div class="refsect2">
|
2228
|
+
<a name="gtk-tree-model-iter-next"></a><h3>gtk_tree_model_iter_next ()</h3>
|
2229
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2230
|
+
gtk_tree_model_iter_next (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2231
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2232
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
2233
|
+
to point to the node following it at the current level. If there
|
2234
|
+
is no next <em class="parameter"><code>iter</code></em>
|
2235
|
+
, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned and <em class="parameter"><code>iter</code></em>
|
2236
|
+
is set to be invalid.</p>
|
2237
|
+
<div class="refsect3">
|
2238
|
+
<a name="id-1.4.9.3.14.44.5"></a><h4>Parameters</h4>
|
2239
|
+
<div class="informaltable"><table width="100%" border="0">
|
2240
|
+
<colgroup>
|
2241
|
+
<col width="150px" class="parameters_name">
|
2242
|
+
<col class="parameters_description">
|
2243
|
+
<col width="200px" class="parameters_annotations">
|
2244
|
+
</colgroup>
|
2245
|
+
<tbody>
|
2246
|
+
<tr>
|
2247
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2248
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2249
|
+
<td class="parameter_annotations"> </td>
|
2250
|
+
</tr>
|
2251
|
+
<tr>
|
2252
|
+
<td class="parameter_name"><p>iter</p></td>
|
2253
|
+
<td class="parameter_description"><p> The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. </p></td>
|
2254
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>]</span></td>
|
2255
|
+
</tr>
|
2256
|
+
</tbody>
|
2257
|
+
</table></div>
|
2258
|
+
</div>
|
2259
|
+
<div class="refsect3">
|
2260
|
+
<a name="id-1.4.9.3.14.44.6"></a><h4>Returns</h4>
|
2261
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em>
|
2262
|
+
has been changed to the next node.</p>
|
2263
|
+
<p></p>
|
2264
|
+
</div>
|
2265
|
+
</div>
|
2266
|
+
<hr>
|
2267
|
+
<div class="refsect2">
|
2268
|
+
<a name="gtk-tree-model-iter-children"></a><h3>gtk_tree_model_iter_children ()</h3>
|
2269
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2270
|
+
gtk_tree_model_iter_children (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2271
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
2272
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);</pre>
|
2273
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
2274
|
+
to point to the first child of <em class="parameter"><code>parent</code></em>
|
2275
|
+
. If <em class="parameter"><code>parent</code></em>
|
2276
|
+
has no
|
2277
|
+
children, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned and <em class="parameter"><code>iter</code></em>
|
2278
|
+
is set to be invalid. <em class="parameter"><code>parent</code></em>
|
2279
|
+
|
2280
|
+
will remain a valid node after this function has been called.</p>
|
2281
|
+
<p>If <em class="parameter"><code>parent</code></em>
|
2282
|
+
is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> returns the first node, equivalent to
|
2283
|
+
<code class="literal">gtk_tree_model_get_iter_first (tree_model, iter);</code></p>
|
2284
|
+
<div class="refsect3">
|
2285
|
+
<a name="id-1.4.9.3.14.45.6"></a><h4>Parameters</h4>
|
2286
|
+
<div class="informaltable"><table width="100%" border="0">
|
2287
|
+
<colgroup>
|
2288
|
+
<col width="150px" class="parameters_name">
|
2289
|
+
<col class="parameters_description">
|
2290
|
+
<col width="200px" class="parameters_annotations">
|
2291
|
+
</colgroup>
|
2292
|
+
<tbody>
|
2293
|
+
<tr>
|
2294
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2295
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2296
|
+
<td class="parameter_annotations"> </td>
|
2297
|
+
</tr>
|
2298
|
+
<tr>
|
2299
|
+
<td class="parameter_name"><p>iter</p></td>
|
2300
|
+
<td class="parameter_description"><p> The new <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to be set to the child. </p></td>
|
2301
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
2302
|
+
</tr>
|
2303
|
+
<tr>
|
2304
|
+
<td class="parameter_name"><p>parent</p></td>
|
2305
|
+
<td class="parameter_description"><p> The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
2306
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2307
|
+
</tr>
|
2308
|
+
</tbody>
|
2309
|
+
</table></div>
|
2310
|
+
</div>
|
2311
|
+
<div class="refsect3">
|
2312
|
+
<a name="id-1.4.9.3.14.45.7"></a><h4>Returns</h4>
|
2313
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>child</code></em>
|
2314
|
+
has been set to the first child.</p>
|
2315
|
+
<p></p>
|
2316
|
+
</div>
|
2317
|
+
</div>
|
2318
|
+
<hr>
|
2319
|
+
<div class="refsect2">
|
2320
|
+
<a name="gtk-tree-model-iter-has-child"></a><h3>gtk_tree_model_iter_has_child ()</h3>
|
2321
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2322
|
+
gtk_tree_model_iter_has_child (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2323
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2324
|
+
<p>Returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em>
|
2325
|
+
has children, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
2326
|
+
<div class="refsect3">
|
2327
|
+
<a name="id-1.4.9.3.14.46.5"></a><h4>Parameters</h4>
|
2328
|
+
<div class="informaltable"><table width="100%" border="0">
|
2329
|
+
<colgroup>
|
2330
|
+
<col width="150px" class="parameters_name">
|
2331
|
+
<col class="parameters_description">
|
2332
|
+
<col width="200px" class="parameters_annotations">
|
2333
|
+
</colgroup>
|
2334
|
+
<tbody>
|
2335
|
+
<tr>
|
2336
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2337
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2338
|
+
<td class="parameter_annotations"> </td>
|
2339
|
+
</tr>
|
2340
|
+
<tr>
|
2341
|
+
<td class="parameter_name"><p>iter</p></td>
|
2342
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to test for children.</p></td>
|
2343
|
+
<td class="parameter_annotations"> </td>
|
2344
|
+
</tr>
|
2345
|
+
</tbody>
|
2346
|
+
</table></div>
|
2347
|
+
</div>
|
2348
|
+
<div class="refsect3">
|
2349
|
+
<a name="id-1.4.9.3.14.46.6"></a><h4>Returns</h4>
|
2350
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em>
|
2351
|
+
has children.</p>
|
2352
|
+
<p></p>
|
2353
|
+
</div>
|
2354
|
+
</div>
|
2355
|
+
<hr>
|
2356
|
+
<div class="refsect2">
|
2357
|
+
<a name="gtk-tree-model-iter-n-children"></a><h3>gtk_tree_model_iter_n_children ()</h3>
|
2358
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
2359
|
+
gtk_tree_model_iter_n_children (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2360
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2361
|
+
<p>Returns the number of children that <em class="parameter"><code>iter</code></em>
|
2362
|
+
has. As a special case, if <em class="parameter"><code>iter</code></em>
|
2363
|
+
|
2364
|
+
is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the number of toplevel nodes is returned.</p>
|
2365
|
+
<div class="refsect3">
|
2366
|
+
<a name="id-1.4.9.3.14.47.5"></a><h4>Parameters</h4>
|
2367
|
+
<div class="informaltable"><table width="100%" border="0">
|
2368
|
+
<colgroup>
|
2369
|
+
<col width="150px" class="parameters_name">
|
2370
|
+
<col class="parameters_description">
|
2371
|
+
<col width="200px" class="parameters_annotations">
|
2372
|
+
</colgroup>
|
2373
|
+
<tbody>
|
2374
|
+
<tr>
|
2375
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2376
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2377
|
+
<td class="parameter_annotations"> </td>
|
2378
|
+
</tr>
|
2379
|
+
<tr>
|
2380
|
+
<td class="parameter_name"><p>iter</p></td>
|
2381
|
+
<td class="parameter_description"><p> The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
2382
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2383
|
+
</tr>
|
2384
|
+
</tbody>
|
2385
|
+
</table></div>
|
2386
|
+
</div>
|
2387
|
+
<div class="refsect3">
|
2388
|
+
<a name="id-1.4.9.3.14.47.6"></a><h4>Returns</h4>
|
2389
|
+
<p> The number of children of <em class="parameter"><code>iter</code></em>
|
2390
|
+
.</p>
|
2391
|
+
<p></p>
|
2392
|
+
</div>
|
2393
|
+
</div>
|
2394
|
+
<hr>
|
2395
|
+
<div class="refsect2">
|
2396
|
+
<a name="gtk-tree-model-iter-nth-child"></a><h3>gtk_tree_model_iter_nth_child ()</h3>
|
2397
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2398
|
+
gtk_tree_model_iter_nth_child (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2399
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
2400
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
2401
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n</code></em>);</pre>
|
2402
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
2403
|
+
to be the child of <em class="parameter"><code>parent</code></em>
|
2404
|
+
, using the given index. The first
|
2405
|
+
index is 0. If <em class="parameter"><code>n</code></em>
|
2406
|
+
is too big, or <em class="parameter"><code>parent</code></em>
|
2407
|
+
has no children, <em class="parameter"><code>iter</code></em>
|
2408
|
+
is set
|
2409
|
+
to an invalid iterator and <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned. <em class="parameter"><code>parent</code></em>
|
2410
|
+
will remain a valid
|
2411
|
+
node after this function has been called. As a special case, if <em class="parameter"><code>parent</code></em>
|
2412
|
+
is
|
2413
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the <em class="parameter"><code>n</code></em>
|
2414
|
+
th root node is set.</p>
|
2415
|
+
<div class="refsect3">
|
2416
|
+
<a name="id-1.4.9.3.14.48.5"></a><h4>Parameters</h4>
|
2417
|
+
<div class="informaltable"><table width="100%" border="0">
|
2418
|
+
<colgroup>
|
2419
|
+
<col width="150px" class="parameters_name">
|
2420
|
+
<col class="parameters_description">
|
2421
|
+
<col width="200px" class="parameters_annotations">
|
2422
|
+
</colgroup>
|
2423
|
+
<tbody>
|
2424
|
+
<tr>
|
2425
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2426
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2427
|
+
<td class="parameter_annotations"> </td>
|
2428
|
+
</tr>
|
2429
|
+
<tr>
|
2430
|
+
<td class="parameter_name"><p>iter</p></td>
|
2431
|
+
<td class="parameter_description"><p> The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the nth child. </p></td>
|
2432
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
2433
|
+
</tr>
|
2434
|
+
<tr>
|
2435
|
+
<td class="parameter_name"><p>parent</p></td>
|
2436
|
+
<td class="parameter_description"><p> The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to get the child from, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
2437
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
2438
|
+
</tr>
|
2439
|
+
<tr>
|
2440
|
+
<td class="parameter_name"><p>n</p></td>
|
2441
|
+
<td class="parameter_description"><p>Then index of the desired child.</p></td>
|
2442
|
+
<td class="parameter_annotations"> </td>
|
2443
|
+
</tr>
|
2444
|
+
</tbody>
|
2445
|
+
</table></div>
|
2446
|
+
</div>
|
2447
|
+
<div class="refsect3">
|
2448
|
+
<a name="id-1.4.9.3.14.48.6"></a><h4>Returns</h4>
|
2449
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>parent</code></em>
|
2450
|
+
has an <em class="parameter"><code>n</code></em>
|
2451
|
+
th child.</p>
|
2452
|
+
<p></p>
|
2453
|
+
</div>
|
2454
|
+
</div>
|
2455
|
+
<hr>
|
2456
|
+
<div class="refsect2">
|
2457
|
+
<a name="gtk-tree-model-iter-parent"></a><h3>gtk_tree_model_iter_parent ()</h3>
|
2458
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2459
|
+
gtk_tree_model_iter_parent (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2460
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
2461
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *child</code></em>);</pre>
|
2462
|
+
<p>Sets <em class="parameter"><code>iter</code></em>
|
2463
|
+
to be the parent of <em class="parameter"><code>child</code></em>
|
2464
|
+
. If <em class="parameter"><code>child</code></em>
|
2465
|
+
is at the toplevel, and
|
2466
|
+
doesn't have a parent, then <em class="parameter"><code>iter</code></em>
|
2467
|
+
is set to an invalid iterator and <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
|
2468
|
+
is returned. <em class="parameter"><code>child</code></em>
|
2469
|
+
will remain a valid node after this function has been
|
2470
|
+
called.</p>
|
2471
|
+
<div class="refsect3">
|
2472
|
+
<a name="id-1.4.9.3.14.49.5"></a><h4>Parameters</h4>
|
2473
|
+
<div class="informaltable"><table width="100%" border="0">
|
2474
|
+
<colgroup>
|
2475
|
+
<col width="150px" class="parameters_name">
|
2476
|
+
<col class="parameters_description">
|
2477
|
+
<col width="200px" class="parameters_annotations">
|
2478
|
+
</colgroup>
|
2479
|
+
<tbody>
|
2480
|
+
<tr>
|
2481
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2482
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
2483
|
+
<td class="parameter_annotations"> </td>
|
2484
|
+
</tr>
|
2485
|
+
<tr>
|
2486
|
+
<td class="parameter_name"><p>iter</p></td>
|
2487
|
+
<td class="parameter_description"><p> The new <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the parent. </p></td>
|
2488
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
2489
|
+
</tr>
|
2490
|
+
<tr>
|
2491
|
+
<td class="parameter_name"><p>child</p></td>
|
2492
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</p></td>
|
2493
|
+
<td class="parameter_annotations"> </td>
|
2494
|
+
</tr>
|
2495
|
+
</tbody>
|
2496
|
+
</table></div>
|
2497
|
+
</div>
|
2498
|
+
<div class="refsect3">
|
2499
|
+
<a name="id-1.4.9.3.14.49.6"></a><h4>Returns</h4>
|
2500
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em>
|
2501
|
+
is set to the parent of <em class="parameter"><code>child</code></em>
|
2502
|
+
.</p>
|
2503
|
+
<p></p>
|
2504
|
+
</div>
|
2505
|
+
</div>
|
2506
|
+
<hr>
|
2507
|
+
<div class="refsect2">
|
2508
|
+
<a name="gtk-tree-model-get-string-from-iter"></a><h3>gtk_tree_model_get_string_from_iter ()</h3>
|
2509
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
2510
|
+
gtk_tree_model_get_string_from_iter (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2511
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2512
|
+
<p>Generates a string representation of the iter. This string is a ':'
|
2513
|
+
separated list of numbers. For example, "4:10:0:3" would be an
|
2514
|
+
acceptable return value for this string.</p>
|
2515
|
+
<div class="refsect3">
|
2516
|
+
<a name="id-1.4.9.3.14.50.5"></a><h4>Parameters</h4>
|
2517
|
+
<div class="informaltable"><table width="100%" border="0">
|
2518
|
+
<colgroup>
|
2519
|
+
<col width="150px" class="parameters_name">
|
2520
|
+
<col class="parameters_description">
|
2521
|
+
<col width="200px" class="parameters_annotations">
|
2522
|
+
</colgroup>
|
2523
|
+
<tbody>
|
2524
|
+
<tr>
|
2525
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2526
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2527
|
+
<td class="parameter_annotations"> </td>
|
2528
|
+
</tr>
|
2529
|
+
<tr>
|
2530
|
+
<td class="parameter_name"><p>iter</p></td>
|
2531
|
+
<td class="parameter_description"><p>An <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</p></td>
|
2532
|
+
<td class="parameter_annotations"> </td>
|
2533
|
+
</tr>
|
2534
|
+
</tbody>
|
2535
|
+
</table></div>
|
2536
|
+
</div>
|
2537
|
+
<div class="refsect3">
|
2538
|
+
<a name="id-1.4.9.3.14.50.6"></a><h4>Returns</h4>
|
2539
|
+
<p> A newly-allocated string. Must be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</p>
|
2540
|
+
<p></p>
|
2541
|
+
</div>
|
2542
|
+
<p class="since">Since 2.2</p>
|
2543
|
+
</div>
|
2544
|
+
<hr>
|
2545
|
+
<div class="refsect2">
|
2546
|
+
<a name="gtk-tree-model-ref-node"></a><h3>gtk_tree_model_ref_node ()</h3>
|
2547
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2548
|
+
gtk_tree_model_ref_node (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2549
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2550
|
+
<p>Lets the tree ref the node. This is an optional method for models to
|
2551
|
+
implement. To be more specific, models may ignore this call as it exists
|
2552
|
+
primarily for performance reasons.</p>
|
2553
|
+
<p>This function is primarily meant as a way for views to let caching model
|
2554
|
+
know when nodes are being displayed (and hence, whether or not to cache that
|
2555
|
+
node.) For example, a file-system based model would not want to keep the
|
2556
|
+
entire file-hierarchy in memory, just the sections that are currently being
|
2557
|
+
displayed by every current view.</p>
|
2558
|
+
<p>A model should be expected to be able to get an iter independent of its
|
2559
|
+
reffed state.</p>
|
2560
|
+
<div class="refsect3">
|
2561
|
+
<a name="id-1.4.9.3.14.51.7"></a><h4>Parameters</h4>
|
2562
|
+
<div class="informaltable"><table width="100%" border="0">
|
2563
|
+
<colgroup>
|
2564
|
+
<col width="150px" class="parameters_name">
|
2565
|
+
<col class="parameters_description">
|
2566
|
+
<col width="200px" class="parameters_annotations">
|
2567
|
+
</colgroup>
|
2568
|
+
<tbody>
|
2569
|
+
<tr>
|
2570
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2571
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2572
|
+
<td class="parameter_annotations"> </td>
|
2573
|
+
</tr>
|
2574
|
+
<tr>
|
2575
|
+
<td class="parameter_name"><p>iter</p></td>
|
2576
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</p></td>
|
2577
|
+
<td class="parameter_annotations"> </td>
|
2578
|
+
</tr>
|
2579
|
+
</tbody>
|
2580
|
+
</table></div>
|
2581
|
+
</div>
|
2582
|
+
</div>
|
2583
|
+
<hr>
|
2584
|
+
<div class="refsect2">
|
2585
|
+
<a name="gtk-tree-model-unref-node"></a><h3>gtk_tree_model_unref_node ()</h3>
|
2586
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2587
|
+
gtk_tree_model_unref_node (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2588
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2589
|
+
<p>Lets the tree unref the node. This is an optional method for models to
|
2590
|
+
implement. To be more specific, models may ignore this call as it exists
|
2591
|
+
primarily for performance reasons.</p>
|
2592
|
+
<p>For more information on what this means, see <a class="link" href="GtkTreeModel.html#gtk-tree-model-ref-node" title="gtk_tree_model_ref_node ()"><code class="function">gtk_tree_model_ref_node()</code></a>.
|
2593
|
+
Please note that nodes that are deleted are not unreffed.</p>
|
2594
|
+
<div class="refsect3">
|
2595
|
+
<a name="id-1.4.9.3.14.52.6"></a><h4>Parameters</h4>
|
2596
|
+
<div class="informaltable"><table width="100%" border="0">
|
2597
|
+
<colgroup>
|
2598
|
+
<col width="150px" class="parameters_name">
|
2599
|
+
<col class="parameters_description">
|
2600
|
+
<col width="200px" class="parameters_annotations">
|
2601
|
+
</colgroup>
|
2602
|
+
<tbody>
|
2603
|
+
<tr>
|
2604
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2605
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</p></td>
|
2606
|
+
<td class="parameter_annotations"> </td>
|
2607
|
+
</tr>
|
2608
|
+
<tr>
|
2609
|
+
<td class="parameter_name"><p>iter</p></td>
|
2610
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</p></td>
|
2611
|
+
<td class="parameter_annotations"> </td>
|
2612
|
+
</tr>
|
2613
|
+
</tbody>
|
2614
|
+
</table></div>
|
2615
|
+
</div>
|
2616
|
+
</div>
|
2617
|
+
<hr>
|
2618
|
+
<div class="refsect2">
|
2619
|
+
<a name="gtk-tree-model-get"></a><h3>gtk_tree_model_get ()</h3>
|
2620
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2621
|
+
gtk_tree_model_get (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2622
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
2623
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
2624
|
+
<p>Gets the value of one or more cells in the row referenced by <em class="parameter"><code>iter</code></em>
|
2625
|
+
.
|
2626
|
+
The variable argument list should contain integer column numbers,
|
2627
|
+
each column number followed by a place to store the value being
|
2628
|
+
retrieved. The list is terminated by a -1. For example, to get a
|
2629
|
+
value from column 0 with type <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><code class="literal">G_TYPE_STRING</code></a>, you would
|
2630
|
+
write: <code class="literal">gtk_tree_model_get (model, iter, 0, &place_string_here, -1)</code>,
|
2631
|
+
where <code class="literal">place_string_here</code> is a <span class="type">gchar*</span> to be
|
2632
|
+
filled with the string.</p>
|
2633
|
+
<p>Returned values with type <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-OBJECT:CAPS"><code class="literal">G_TYPE_OBJECT</code></a> have to be unreferenced, values
|
2634
|
+
with type <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><code class="literal">G_TYPE_STRING</code></a> or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html#G-TYPE-BOXED:CAPS"><code class="literal">G_TYPE_BOXED</code></a> have to be freed. Other values are
|
2635
|
+
passed by value.</p>
|
2636
|
+
<div class="refsect3">
|
2637
|
+
<a name="id-1.4.9.3.14.53.6"></a><h4>Parameters</h4>
|
2638
|
+
<div class="informaltable"><table width="100%" border="0">
|
2639
|
+
<colgroup>
|
2640
|
+
<col width="150px" class="parameters_name">
|
2641
|
+
<col class="parameters_description">
|
2642
|
+
<col width="200px" class="parameters_annotations">
|
2643
|
+
</colgroup>
|
2644
|
+
<tbody>
|
2645
|
+
<tr>
|
2646
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2647
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
2648
|
+
<td class="parameter_annotations"> </td>
|
2649
|
+
</tr>
|
2650
|
+
<tr>
|
2651
|
+
<td class="parameter_name"><p>iter</p></td>
|
2652
|
+
<td class="parameter_description"><p>a row in <em class="parameter"><code>tree_model</code></em>
|
2653
|
+
</p></td>
|
2654
|
+
<td class="parameter_annotations"> </td>
|
2655
|
+
</tr>
|
2656
|
+
</tbody>
|
2657
|
+
</table></div>
|
2658
|
+
</div>
|
2659
|
+
</div>
|
2660
|
+
<hr>
|
2661
|
+
<div class="refsect2">
|
2662
|
+
<a name="gtk-tree-model-get-valist"></a><h3>gtk_tree_model_get_valist ()</h3>
|
2663
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2664
|
+
gtk_tree_model_get_valist (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2665
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
2666
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
2667
|
+
<p>See <a class="link" href="GtkTreeModel.html#gtk-tree-model-get" title="gtk_tree_model_get ()"><code class="function">gtk_tree_model_get()</code></a>, this version takes a <span class="type">va_list</span>
|
2668
|
+
for language bindings to use.</p>
|
2669
|
+
<div class="refsect3">
|
2670
|
+
<a name="id-1.4.9.3.14.54.5"></a><h4>Parameters</h4>
|
2671
|
+
<div class="informaltable"><table width="100%" border="0">
|
2672
|
+
<colgroup>
|
2673
|
+
<col width="150px" class="parameters_name">
|
2674
|
+
<col class="parameters_description">
|
2675
|
+
<col width="200px" class="parameters_annotations">
|
2676
|
+
</colgroup>
|
2677
|
+
<tbody>
|
2678
|
+
<tr>
|
2679
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2680
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
2681
|
+
<td class="parameter_annotations"> </td>
|
2682
|
+
</tr>
|
2683
|
+
<tr>
|
2684
|
+
<td class="parameter_name"><p>iter</p></td>
|
2685
|
+
<td class="parameter_description"><p>a row in <em class="parameter"><code>tree_model</code></em>
|
2686
|
+
</p></td>
|
2687
|
+
<td class="parameter_annotations"> </td>
|
2688
|
+
</tr>
|
2689
|
+
<tr>
|
2690
|
+
<td class="parameter_name"><p>var_args</p></td>
|
2691
|
+
<td class="parameter_description">
|
2692
|
+
<span class="type">va_list</span> of column/return location pairs</td>
|
2693
|
+
<td class="parameter_annotations"> </td>
|
2694
|
+
</tr>
|
2695
|
+
</tbody>
|
2696
|
+
</table></div>
|
2697
|
+
</div>
|
2698
|
+
</div>
|
2699
|
+
<hr>
|
2700
|
+
<div class="refsect2">
|
2701
|
+
<a name="gtk-tree-model-foreach"></a><h3>gtk_tree_model_foreach ()</h3>
|
2702
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2703
|
+
gtk_tree_model_foreach (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
|
2704
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeModelForeachFunc" title="GtkTreeModelForeachFunc ()"><span class="type">GtkTreeModelForeachFunc</span></a> func</code></em>,
|
2705
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
|
2706
|
+
<p>Calls func on each node in model in a depth-first fashion.
|
2707
|
+
If <em class="parameter"><code>func</code></em>
|
2708
|
+
returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then the tree ceases to be walked, and
|
2709
|
+
<a class="link" href="GtkTreeModel.html#gtk-tree-model-foreach" title="gtk_tree_model_foreach ()"><code class="function">gtk_tree_model_foreach()</code></a> returns.</p>
|
2710
|
+
<div class="refsect3">
|
2711
|
+
<a name="id-1.4.9.3.14.55.5"></a><h4>Parameters</h4>
|
2712
|
+
<div class="informaltable"><table width="100%" border="0">
|
2713
|
+
<colgroup>
|
2714
|
+
<col width="150px" class="parameters_name">
|
2715
|
+
<col class="parameters_description">
|
2716
|
+
<col width="200px" class="parameters_annotations">
|
2717
|
+
</colgroup>
|
2718
|
+
<tbody>
|
2719
|
+
<tr>
|
2720
|
+
<td class="parameter_name"><p>model</p></td>
|
2721
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
2722
|
+
<td class="parameter_annotations"> </td>
|
2723
|
+
</tr>
|
2724
|
+
<tr>
|
2725
|
+
<td class="parameter_name"><p>func</p></td>
|
2726
|
+
<td class="parameter_description"><p> A function to be called on each row. </p></td>
|
2727
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span></td>
|
2728
|
+
</tr>
|
2729
|
+
<tr>
|
2730
|
+
<td class="parameter_name"><p>user_data</p></td>
|
2731
|
+
<td class="parameter_description"><p>User data to passed to func.</p></td>
|
2732
|
+
<td class="parameter_annotations"> </td>
|
2733
|
+
</tr>
|
2734
|
+
</tbody>
|
2735
|
+
</table></div>
|
2736
|
+
</div>
|
2737
|
+
</div>
|
2738
|
+
<hr>
|
2739
|
+
<div class="refsect2">
|
2740
|
+
<a name="gtk-tree-model-row-changed"></a><h3>gtk_tree_model_row_changed ()</h3>
|
2741
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2742
|
+
gtk_tree_model_row_changed (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2743
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
2744
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2745
|
+
<div class="warning"><p><code class="literal">gtk_tree_model_row_changed</code> is deprecated and should not be used in newly-written code.</p></div>
|
2746
|
+
<p>Emits the "row-changed" signal on <em class="parameter"><code>tree_model</code></em>
|
2747
|
+
.</p>
|
2748
|
+
<div class="refsect3">
|
2749
|
+
<a name="id-1.4.9.3.14.56.6"></a><h4>Parameters</h4>
|
2750
|
+
<div class="informaltable"><table width="100%" border="0">
|
2751
|
+
<colgroup>
|
2752
|
+
<col width="150px" class="parameters_name">
|
2753
|
+
<col class="parameters_description">
|
2754
|
+
<col width="200px" class="parameters_annotations">
|
2755
|
+
</colgroup>
|
2756
|
+
<tbody>
|
2757
|
+
<tr>
|
2758
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2759
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
2760
|
+
<td class="parameter_annotations"> </td>
|
2761
|
+
</tr>
|
2762
|
+
<tr>
|
2763
|
+
<td class="parameter_name"><p>path</p></td>
|
2764
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the changed row</p></td>
|
2765
|
+
<td class="parameter_annotations"> </td>
|
2766
|
+
</tr>
|
2767
|
+
<tr>
|
2768
|
+
<td class="parameter_name"><p>iter</p></td>
|
2769
|
+
<td class="parameter_description"><p>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the changed row</p></td>
|
2770
|
+
<td class="parameter_annotations"> </td>
|
2771
|
+
</tr>
|
2772
|
+
</tbody>
|
2773
|
+
</table></div>
|
2774
|
+
</div>
|
2775
|
+
</div>
|
2776
|
+
<hr>
|
2777
|
+
<div class="refsect2">
|
2778
|
+
<a name="gtk-tree-model-row-inserted"></a><h3>gtk_tree_model_row_inserted ()</h3>
|
2779
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2780
|
+
gtk_tree_model_row_inserted (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2781
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
2782
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2783
|
+
<p>Emits the "row-inserted" signal on <em class="parameter"><code>tree_model</code></em>
|
2784
|
+
</p>
|
2785
|
+
<div class="refsect3">
|
2786
|
+
<a name="id-1.4.9.3.14.57.5"></a><h4>Parameters</h4>
|
2787
|
+
<div class="informaltable"><table width="100%" border="0">
|
2788
|
+
<colgroup>
|
2789
|
+
<col width="150px" class="parameters_name">
|
2790
|
+
<col class="parameters_description">
|
2791
|
+
<col width="200px" class="parameters_annotations">
|
2792
|
+
</colgroup>
|
2793
|
+
<tbody>
|
2794
|
+
<tr>
|
2795
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2796
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
2797
|
+
<td class="parameter_annotations"> </td>
|
2798
|
+
</tr>
|
2799
|
+
<tr>
|
2800
|
+
<td class="parameter_name"><p>path</p></td>
|
2801
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the inserted row</p></td>
|
2802
|
+
<td class="parameter_annotations"> </td>
|
2803
|
+
</tr>
|
2804
|
+
<tr>
|
2805
|
+
<td class="parameter_name"><p>iter</p></td>
|
2806
|
+
<td class="parameter_description"><p>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the inserted row</p></td>
|
2807
|
+
<td class="parameter_annotations"> </td>
|
2808
|
+
</tr>
|
2809
|
+
</tbody>
|
2810
|
+
</table></div>
|
2811
|
+
</div>
|
2812
|
+
</div>
|
2813
|
+
<hr>
|
2814
|
+
<div class="refsect2">
|
2815
|
+
<a name="gtk-tree-model-row-has-child-toggled"></a><h3>gtk_tree_model_row_has_child_toggled ()</h3>
|
2816
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2817
|
+
gtk_tree_model_row_has_child_toggled (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2818
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
2819
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
2820
|
+
<p>Emits the "row-has-child-toggled" signal on <em class="parameter"><code>tree_model</code></em>
|
2821
|
+
. This should be
|
2822
|
+
called by models after the child state of a node changes.</p>
|
2823
|
+
<div class="refsect3">
|
2824
|
+
<a name="id-1.4.9.3.14.58.5"></a><h4>Parameters</h4>
|
2825
|
+
<div class="informaltable"><table width="100%" border="0">
|
2826
|
+
<colgroup>
|
2827
|
+
<col width="150px" class="parameters_name">
|
2828
|
+
<col class="parameters_description">
|
2829
|
+
<col width="200px" class="parameters_annotations">
|
2830
|
+
</colgroup>
|
2831
|
+
<tbody>
|
2832
|
+
<tr>
|
2833
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2834
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
2835
|
+
<td class="parameter_annotations"> </td>
|
2836
|
+
</tr>
|
2837
|
+
<tr>
|
2838
|
+
<td class="parameter_name"><p>path</p></td>
|
2839
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the changed row</p></td>
|
2840
|
+
<td class="parameter_annotations"> </td>
|
2841
|
+
</tr>
|
2842
|
+
<tr>
|
2843
|
+
<td class="parameter_name"><p>iter</p></td>
|
2844
|
+
<td class="parameter_description"><p>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the changed row</p></td>
|
2845
|
+
<td class="parameter_annotations"> </td>
|
2846
|
+
</tr>
|
2847
|
+
</tbody>
|
2848
|
+
</table></div>
|
2849
|
+
</div>
|
2850
|
+
</div>
|
2851
|
+
<hr>
|
2852
|
+
<div class="refsect2">
|
2853
|
+
<a name="gtk-tree-model-row-deleted"></a><h3>gtk_tree_model_row_deleted ()</h3>
|
2854
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2855
|
+
gtk_tree_model_row_deleted (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2856
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
|
2857
|
+
<p>Emits the "row-deleted" signal on <em class="parameter"><code>tree_model</code></em>
|
2858
|
+
. This should be called by
|
2859
|
+
models after a row has been removed. The location pointed to by <em class="parameter"><code>path</code></em>
|
2860
|
+
|
2861
|
+
should be the location that the row previously was at. It may not be a
|
2862
|
+
valid location anymore.</p>
|
2863
|
+
<div class="refsect3">
|
2864
|
+
<a name="id-1.4.9.3.14.59.5"></a><h4>Parameters</h4>
|
2865
|
+
<div class="informaltable"><table width="100%" border="0">
|
2866
|
+
<colgroup>
|
2867
|
+
<col width="150px" class="parameters_name">
|
2868
|
+
<col class="parameters_description">
|
2869
|
+
<col width="200px" class="parameters_annotations">
|
2870
|
+
</colgroup>
|
2871
|
+
<tbody>
|
2872
|
+
<tr>
|
2873
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2874
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
2875
|
+
<td class="parameter_annotations"> </td>
|
2876
|
+
</tr>
|
2877
|
+
<tr>
|
2878
|
+
<td class="parameter_name"><p>path</p></td>
|
2879
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the previous location of the deleted row.</p></td>
|
2880
|
+
<td class="parameter_annotations"> </td>
|
2881
|
+
</tr>
|
2882
|
+
</tbody>
|
2883
|
+
</table></div>
|
2884
|
+
</div>
|
2885
|
+
</div>
|
2886
|
+
<hr>
|
2887
|
+
<div class="refsect2">
|
2888
|
+
<a name="gtk-tree-model-rows-reordered"></a><h3>gtk_tree_model_rows_reordered ()</h3>
|
2889
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2890
|
+
gtk_tree_model_rows_reordered (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
2891
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
|
2892
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
2893
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *new_order</code></em>);</pre>
|
2894
|
+
<p>Emits the "rows-reordered" signal on <em class="parameter"><code>tree_model</code></em>
|
2895
|
+
. This should be called by
|
2896
|
+
models when their rows have been reordered.</p>
|
2897
|
+
<div class="refsect3">
|
2898
|
+
<a name="id-1.4.9.3.14.60.5"></a><h4>Parameters</h4>
|
2899
|
+
<div class="informaltable"><table width="100%" border="0">
|
2900
|
+
<colgroup>
|
2901
|
+
<col width="150px" class="parameters_name">
|
2902
|
+
<col class="parameters_description">
|
2903
|
+
<col width="200px" class="parameters_annotations">
|
2904
|
+
</colgroup>
|
2905
|
+
<tbody>
|
2906
|
+
<tr>
|
2907
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
2908
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a></p></td>
|
2909
|
+
<td class="parameter_annotations"> </td>
|
2910
|
+
</tr>
|
2911
|
+
<tr>
|
2912
|
+
<td class="parameter_name"><p>path</p></td>
|
2913
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the tree node whose children have been
|
2914
|
+
reordered</p></td>
|
2915
|
+
<td class="parameter_annotations"> </td>
|
2916
|
+
</tr>
|
2917
|
+
<tr>
|
2918
|
+
<td class="parameter_name"><p>iter</p></td>
|
2919
|
+
<td class="parameter_description"><p>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the node whose children have been
|
2920
|
+
reordered, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the depth of <em class="parameter"><code>path</code></em>
|
2921
|
+
is 0.</p></td>
|
2922
|
+
<td class="parameter_annotations"> </td>
|
2923
|
+
</tr>
|
2924
|
+
<tr>
|
2925
|
+
<td class="parameter_name"><p>new_order</p></td>
|
2926
|
+
<td class="parameter_description"><p>an array of integers mapping the current position of each child
|
2927
|
+
to its old position before the re-ordering,
|
2928
|
+
i.e. <em class="parameter"><code>new_order</code></em>
|
2929
|
+
<code class="literal">[newpos] = oldpos</code>.</p></td>
|
2930
|
+
<td class="parameter_annotations"> </td>
|
2931
|
+
</tr>
|
2932
|
+
</tbody>
|
2933
|
+
</table></div>
|
2934
|
+
</div>
|
2935
|
+
</div>
|
2936
|
+
</div>
|
2937
|
+
<div class="refsect1">
|
2938
|
+
<a name="GtkTreeModel.other_details"></a><h2>Types and Values</h2>
|
2939
|
+
<div class="refsect2">
|
2940
|
+
<a name="GtkTreeModel-struct"></a><h3>GtkTreeModel</h3>
|
2941
|
+
<pre class="programlisting">typedef struct _GtkTreeModel GtkTreeModel;</pre>
|
2942
|
+
<p>
|
2943
|
+
</p>
|
2944
|
+
</div>
|
2945
|
+
<hr>
|
2946
|
+
<div class="refsect2">
|
2947
|
+
<a name="GtkTreeIter-struct"></a><h3>struct GtkTreeIter</h3>
|
2948
|
+
<pre class="programlisting">struct GtkTreeIter {
|
2949
|
+
gint stamp;
|
2950
|
+
gpointer user_data;
|
2951
|
+
gpointer user_data2;
|
2952
|
+
gpointer user_data3;
|
2953
|
+
};
|
2954
|
+
</pre>
|
2955
|
+
<p>
|
2956
|
+
The <span class="structname">GtkTreeIter</span> is the primary structure for
|
2957
|
+
accessing a structure. Models are expected to put a unique integer in
|
2958
|
+
the <em class="structfield"><code>stamp</code></em> member, and put model-specific
|
2959
|
+
data in the three <em class="structfield"><code>user_data</code></em> members.
|
2960
|
+
</p>
|
2961
|
+
</div>
|
2962
|
+
<hr>
|
2963
|
+
<div class="refsect2">
|
2964
|
+
<a name="GtkTreePath-struct"></a><h3>GtkTreePath</h3>
|
2965
|
+
<pre class="programlisting">typedef struct _GtkTreePath GtkTreePath;</pre>
|
2966
|
+
<p>
|
2967
|
+
</p>
|
2968
|
+
</div>
|
2969
|
+
<hr>
|
2970
|
+
<div class="refsect2">
|
2971
|
+
<a name="GtkTreeRowReference"></a><h3>GtkTreeRowReference</h3>
|
2972
|
+
<pre class="programlisting">typedef struct _GtkTreeRowReference GtkTreeRowReference;</pre>
|
2973
|
+
<p>
|
2974
|
+
</p>
|
2975
|
+
</div>
|
2976
|
+
<hr>
|
2977
|
+
<div class="refsect2">
|
2978
|
+
<a name="GtkTreeModelIface"></a><h3>struct GtkTreeModelIface</h3>
|
2979
|
+
<pre class="programlisting">struct GtkTreeModelIface {
|
2980
|
+
GTypeInterface g_iface;
|
2981
|
+
|
2982
|
+
/* Signals */
|
2983
|
+
void (* row_changed) (GtkTreeModel *tree_model,
|
2984
|
+
GtkTreePath *path,
|
2985
|
+
GtkTreeIter *iter);
|
2986
|
+
void (* row_inserted) (GtkTreeModel *tree_model,
|
2987
|
+
GtkTreePath *path,
|
2988
|
+
GtkTreeIter *iter);
|
2989
|
+
void (* row_has_child_toggled) (GtkTreeModel *tree_model,
|
2990
|
+
GtkTreePath *path,
|
2991
|
+
GtkTreeIter *iter);
|
2992
|
+
void (* row_deleted) (GtkTreeModel *tree_model,
|
2993
|
+
GtkTreePath *path);
|
2994
|
+
void (* rows_reordered) (GtkTreeModel *tree_model,
|
2995
|
+
GtkTreePath *path,
|
2996
|
+
GtkTreeIter *iter,
|
2997
|
+
gint *new_order);
|
2998
|
+
|
2999
|
+
/* Virtual Table */
|
3000
|
+
GtkTreeModelFlags (* get_flags) (GtkTreeModel *tree_model);
|
3001
|
+
|
3002
|
+
gint (* get_n_columns) (GtkTreeModel *tree_model);
|
3003
|
+
GType (* get_column_type) (GtkTreeModel *tree_model,
|
3004
|
+
gint index_);
|
3005
|
+
gboolean (* get_iter) (GtkTreeModel *tree_model,
|
3006
|
+
GtkTreeIter *iter,
|
3007
|
+
GtkTreePath *path);
|
3008
|
+
GtkTreePath *(* get_path) (GtkTreeModel *tree_model,
|
3009
|
+
GtkTreeIter *iter);
|
3010
|
+
void (* get_value) (GtkTreeModel *tree_model,
|
3011
|
+
GtkTreeIter *iter,
|
3012
|
+
gint column,
|
3013
|
+
GValue *value);
|
3014
|
+
gboolean (* iter_next) (GtkTreeModel *tree_model,
|
3015
|
+
GtkTreeIter *iter);
|
3016
|
+
gboolean (* iter_children) (GtkTreeModel *tree_model,
|
3017
|
+
GtkTreeIter *iter,
|
3018
|
+
GtkTreeIter *parent);
|
3019
|
+
gboolean (* iter_has_child) (GtkTreeModel *tree_model,
|
3020
|
+
GtkTreeIter *iter);
|
3021
|
+
gint (* iter_n_children) (GtkTreeModel *tree_model,
|
3022
|
+
GtkTreeIter *iter);
|
3023
|
+
gboolean (* iter_nth_child) (GtkTreeModel *tree_model,
|
3024
|
+
GtkTreeIter *iter,
|
3025
|
+
GtkTreeIter *parent,
|
3026
|
+
gint n);
|
3027
|
+
gboolean (* iter_parent) (GtkTreeModel *tree_model,
|
3028
|
+
GtkTreeIter *iter,
|
3029
|
+
GtkTreeIter *child);
|
3030
|
+
void (* ref_node) (GtkTreeModel *tree_model,
|
3031
|
+
GtkTreeIter *iter);
|
3032
|
+
void (* unref_node) (GtkTreeModel *tree_model,
|
3033
|
+
GtkTreeIter *iter);
|
3034
|
+
};
|
3035
|
+
</pre>
|
3036
|
+
<p>
|
3037
|
+
</p>
|
3038
|
+
</div>
|
3039
|
+
<hr>
|
3040
|
+
<div class="refsect2">
|
3041
|
+
<a name="GtkTreeModelFlags"></a><h3>enum GtkTreeModelFlags</h3>
|
3042
|
+
<p>
|
3043
|
+
These flags indicate various properties of a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>. They are
|
3044
|
+
returned by <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-flags" title="gtk_tree_model_get_flags ()"><code class="function">gtk_tree_model_get_flags()</code></a>, and must be static for the
|
3045
|
+
lifetime of the object. A more complete description of
|
3046
|
+
<a class="link" href="GtkTreeModel.html#GTK-TREE-MODEL-ITERS-PERSIST:CAPS"><span class="type">GTK_TREE_MODEL_ITERS_PERSIST</span></a> can be found in the overview of this
|
3047
|
+
section.
|
3048
|
+
</p>
|
3049
|
+
<div class="refsect3">
|
3050
|
+
<a name="id-1.4.9.3.15.7.4"></a><h4>Members</h4>
|
3051
|
+
<div class="informaltable"><table width="100%" border="0">
|
3052
|
+
<colgroup>
|
3053
|
+
<col width="300px" class="enum_members_name">
|
3054
|
+
<col class="enum_members_description">
|
3055
|
+
<col width="200px" class="enum_members_annotations">
|
3056
|
+
</colgroup>
|
3057
|
+
<tbody>
|
3058
|
+
<tr>
|
3059
|
+
<td class="enum_member_name"><p><a name="GTK-TREE-MODEL-ITERS-PERSIST:CAPS"></a>GTK_TREE_MODEL_ITERS_PERSIST</p></td>
|
3060
|
+
<td class="enum_member_description">
|
3061
|
+
<p>Iterators survive all signals emitted by the tree.</p>
|
3062
|
+
</td>
|
3063
|
+
<td class="enum_member_annotations"> </td>
|
3064
|
+
</tr>
|
3065
|
+
<tr>
|
3066
|
+
<td class="enum_member_name"><p><a name="GTK-TREE-MODEL-LIST-ONLY:CAPS"></a>GTK_TREE_MODEL_LIST_ONLY</p></td>
|
3067
|
+
<td class="enum_member_description">
|
3068
|
+
<p>The model is a list only, and never has children</p>
|
3069
|
+
</td>
|
3070
|
+
<td class="enum_member_annotations"> </td>
|
3071
|
+
</tr>
|
3072
|
+
</tbody>
|
3073
|
+
</table></div>
|
3074
|
+
</div>
|
3075
|
+
</div>
|
3076
|
+
</div>
|
3077
|
+
<div class="refsect1">
|
3078
|
+
<a name="GtkTreeModel.signal-details"></a><h2>Signal Details</h2>
|
3079
|
+
<div class="refsect2">
|
3080
|
+
<a name="GtkTreeModel-row-changed"></a><h3>The <code class="literal">“row-changed”</code> signal</h3>
|
3081
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3082
|
+
user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
|
3083
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
|
3084
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
|
3085
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
3086
|
+
<p>This signal is emitted when a row in the model has changed.</p>
|
3087
|
+
<div class="refsect3">
|
3088
|
+
<a name="id-1.4.9.3.16.2.5"></a><h4>Parameters</h4>
|
3089
|
+
<div class="informaltable"><table width="100%" border="0">
|
3090
|
+
<colgroup>
|
3091
|
+
<col width="150px" class="parameters_name">
|
3092
|
+
<col class="parameters_description">
|
3093
|
+
<col width="200px" class="parameters_annotations">
|
3094
|
+
</colgroup>
|
3095
|
+
<tbody>
|
3096
|
+
<tr>
|
3097
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
3098
|
+
<td class="parameter_description"><p>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</p></td>
|
3099
|
+
<td class="parameter_annotations"> </td>
|
3100
|
+
</tr>
|
3101
|
+
<tr>
|
3102
|
+
<td class="parameter_name"><p>path</p></td>
|
3103
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the changed row</p></td>
|
3104
|
+
<td class="parameter_annotations"> </td>
|
3105
|
+
</tr>
|
3106
|
+
<tr>
|
3107
|
+
<td class="parameter_name"><p>iter</p></td>
|
3108
|
+
<td class="parameter_description"><p>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the changed row</p></td>
|
3109
|
+
<td class="parameter_annotations"> </td>
|
3110
|
+
</tr>
|
3111
|
+
<tr>
|
3112
|
+
<td class="parameter_name"><p>user_data</p></td>
|
3113
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
3114
|
+
<td class="parameter_annotations"> </td>
|
3115
|
+
</tr>
|
3116
|
+
</tbody>
|
3117
|
+
</table></div>
|
3118
|
+
</div>
|
3119
|
+
<p>Flags: Run Last</p>
|
3120
|
+
</div>
|
3121
|
+
<hr>
|
3122
|
+
<div class="refsect2">
|
3123
|
+
<a name="GtkTreeModel-row-deleted"></a><h3>The <code class="literal">“row-deleted”</code> signal</h3>
|
3124
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3125
|
+
user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
|
3126
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
|
3127
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
3128
|
+
<p>This signal is emitted when a row has been deleted.</p>
|
3129
|
+
<p>Note that no iterator is passed to the signal handler,
|
3130
|
+
since the row is already deleted.</p>
|
3131
|
+
<p>This should be called by models after a row has been removed.
|
3132
|
+
The location pointed to by <em class="parameter"><code>path</code></em>
|
3133
|
+
should be the location that
|
3134
|
+
the row previously was at. It may not be a valid location anymore.</p>
|
3135
|
+
<div class="refsect3">
|
3136
|
+
<a name="id-1.4.9.3.16.3.7"></a><h4>Parameters</h4>
|
3137
|
+
<div class="informaltable"><table width="100%" border="0">
|
3138
|
+
<colgroup>
|
3139
|
+
<col width="150px" class="parameters_name">
|
3140
|
+
<col class="parameters_description">
|
3141
|
+
<col width="200px" class="parameters_annotations">
|
3142
|
+
</colgroup>
|
3143
|
+
<tbody>
|
3144
|
+
<tr>
|
3145
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
3146
|
+
<td class="parameter_description"><p>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</p></td>
|
3147
|
+
<td class="parameter_annotations"> </td>
|
3148
|
+
</tr>
|
3149
|
+
<tr>
|
3150
|
+
<td class="parameter_name"><p>path</p></td>
|
3151
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the row</p></td>
|
3152
|
+
<td class="parameter_annotations"> </td>
|
3153
|
+
</tr>
|
3154
|
+
<tr>
|
3155
|
+
<td class="parameter_name"><p>user_data</p></td>
|
3156
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
3157
|
+
<td class="parameter_annotations"> </td>
|
3158
|
+
</tr>
|
3159
|
+
</tbody>
|
3160
|
+
</table></div>
|
3161
|
+
</div>
|
3162
|
+
<p>Flags: Run First</p>
|
3163
|
+
</div>
|
3164
|
+
<hr>
|
3165
|
+
<div class="refsect2">
|
3166
|
+
<a name="GtkTreeModel-row-has-child-toggled"></a><h3>The <code class="literal">“row-has-child-toggled”</code> signal</h3>
|
3167
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3168
|
+
user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
|
3169
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
|
3170
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
|
3171
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
3172
|
+
<p>This signal is emitted when a row has gotten the first child row or lost
|
3173
|
+
its last child row.</p>
|
3174
|
+
<div class="refsect3">
|
3175
|
+
<a name="id-1.4.9.3.16.4.5"></a><h4>Parameters</h4>
|
3176
|
+
<div class="informaltable"><table width="100%" border="0">
|
3177
|
+
<colgroup>
|
3178
|
+
<col width="150px" class="parameters_name">
|
3179
|
+
<col class="parameters_description">
|
3180
|
+
<col width="200px" class="parameters_annotations">
|
3181
|
+
</colgroup>
|
3182
|
+
<tbody>
|
3183
|
+
<tr>
|
3184
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
3185
|
+
<td class="parameter_description"><p>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</p></td>
|
3186
|
+
<td class="parameter_annotations"> </td>
|
3187
|
+
</tr>
|
3188
|
+
<tr>
|
3189
|
+
<td class="parameter_name"><p>path</p></td>
|
3190
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the row</p></td>
|
3191
|
+
<td class="parameter_annotations"> </td>
|
3192
|
+
</tr>
|
3193
|
+
<tr>
|
3194
|
+
<td class="parameter_name"><p>iter</p></td>
|
3195
|
+
<td class="parameter_description"><p>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the row</p></td>
|
3196
|
+
<td class="parameter_annotations"> </td>
|
3197
|
+
</tr>
|
3198
|
+
<tr>
|
3199
|
+
<td class="parameter_name"><p>user_data</p></td>
|
3200
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
3201
|
+
<td class="parameter_annotations"> </td>
|
3202
|
+
</tr>
|
3203
|
+
</tbody>
|
3204
|
+
</table></div>
|
3205
|
+
</div>
|
3206
|
+
<p>Flags: Run Last</p>
|
3207
|
+
</div>
|
3208
|
+
<hr>
|
3209
|
+
<div class="refsect2">
|
3210
|
+
<a name="GtkTreeModel-row-inserted"></a><h3>The <code class="literal">“row-inserted”</code> signal</h3>
|
3211
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3212
|
+
user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
|
3213
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
|
3214
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
|
3215
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
3216
|
+
<p>This signal is emitted when a new row has been inserted in the model.</p>
|
3217
|
+
<p>Note that the row may still be empty at this point, since
|
3218
|
+
it is a common pattern to first insert an empty row, and
|
3219
|
+
|
3220
|
+
then fill it with the desired values.</p>
|
3221
|
+
<div class="refsect3">
|
3222
|
+
<a name="id-1.4.9.3.16.5.6"></a><h4>Parameters</h4>
|
3223
|
+
<div class="informaltable"><table width="100%" border="0">
|
3224
|
+
<colgroup>
|
3225
|
+
<col width="150px" class="parameters_name">
|
3226
|
+
<col class="parameters_description">
|
3227
|
+
<col width="200px" class="parameters_annotations">
|
3228
|
+
</colgroup>
|
3229
|
+
<tbody>
|
3230
|
+
<tr>
|
3231
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
3232
|
+
<td class="parameter_description"><p>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</p></td>
|
3233
|
+
<td class="parameter_annotations"> </td>
|
3234
|
+
</tr>
|
3235
|
+
<tr>
|
3236
|
+
<td class="parameter_name"><p>path</p></td>
|
3237
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the new row</p></td>
|
3238
|
+
<td class="parameter_annotations"> </td>
|
3239
|
+
</tr>
|
3240
|
+
<tr>
|
3241
|
+
<td class="parameter_name"><p>iter</p></td>
|
3242
|
+
<td class="parameter_description"><p>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the new row</p></td>
|
3243
|
+
<td class="parameter_annotations"> </td>
|
3244
|
+
</tr>
|
3245
|
+
<tr>
|
3246
|
+
<td class="parameter_name"><p>user_data</p></td>
|
3247
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
3248
|
+
<td class="parameter_annotations"> </td>
|
3249
|
+
</tr>
|
3250
|
+
</tbody>
|
3251
|
+
</table></div>
|
3252
|
+
</div>
|
3253
|
+
<p>Flags: Run First</p>
|
3254
|
+
</div>
|
3255
|
+
<hr>
|
3256
|
+
<div class="refsect2">
|
3257
|
+
<a name="GtkTreeModel-rows-reordered"></a><h3>The <code class="literal">“rows-reordered”</code> signal</h3>
|
3258
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3259
|
+
user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
|
3260
|
+
<a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
|
3261
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
|
3262
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> new_order,
|
3263
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
3264
|
+
<p>This signal is emitted when the children of a node in the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
|
3265
|
+
have been reordered. </p>
|
3266
|
+
<p>Note that this signal is <span class="emphasis"><em>not</em></span> emitted
|
3267
|
+
when rows are reordered by DND, since this is implemented
|
3268
|
+
by removing and then reinserting the row.</p>
|
3269
|
+
<div class="refsect3">
|
3270
|
+
<a name="id-1.4.9.3.16.6.6"></a><h4>Parameters</h4>
|
3271
|
+
<div class="informaltable"><table width="100%" border="0">
|
3272
|
+
<colgroup>
|
3273
|
+
<col width="150px" class="parameters_name">
|
3274
|
+
<col class="parameters_description">
|
3275
|
+
<col width="200px" class="parameters_annotations">
|
3276
|
+
</colgroup>
|
3277
|
+
<tbody>
|
3278
|
+
<tr>
|
3279
|
+
<td class="parameter_name"><p>tree_model</p></td>
|
3280
|
+
<td class="parameter_description"><p>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</p></td>
|
3281
|
+
<td class="parameter_annotations"> </td>
|
3282
|
+
</tr>
|
3283
|
+
<tr>
|
3284
|
+
<td class="parameter_name"><p>path</p></td>
|
3285
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the tree node whose children
|
3286
|
+
have been reordered</p></td>
|
3287
|
+
<td class="parameter_annotations"> </td>
|
3288
|
+
</tr>
|
3289
|
+
<tr>
|
3290
|
+
<td class="parameter_name"><p>iter</p></td>
|
3291
|
+
<td class="parameter_description"><p>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the node whose </p></td>
|
3292
|
+
<td class="parameter_annotations"> </td>
|
3293
|
+
</tr>
|
3294
|
+
<tr>
|
3295
|
+
<td class="parameter_name"><p>new_order</p></td>
|
3296
|
+
<td class="parameter_description"><p>an array of integers mapping the current position of
|
3297
|
+
each child to its old position before the re-ordering,
|
3298
|
+
i.e. <em class="parameter"><code>new_order</code></em>
|
3299
|
+
<code class="literal">[newpos] = oldpos</code>.</p></td>
|
3300
|
+
<td class="parameter_annotations"> </td>
|
3301
|
+
</tr>
|
3302
|
+
<tr>
|
3303
|
+
<td class="parameter_name"><p>user_data</p></td>
|
3304
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
3305
|
+
<td class="parameter_annotations"> </td>
|
3306
|
+
</tr>
|
3307
|
+
</tbody>
|
3308
|
+
</table></div>
|
3309
|
+
</div>
|
3310
|
+
<p>Flags: Run First</p>
|
3311
|
+
</div>
|
3312
|
+
</div>
|
3313
|
+
<div class="refsect1">
|
3314
|
+
<a name="GtkTreeModel.see-also"></a><h2>See Also</h2>
|
3315
|
+
<p>
|
3316
|
+
<a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>, <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>, <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>, GtkTreeDnd, <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a>
|
3317
|
+
</p>
|
3318
|
+
</div>
|
3319
|
+
<div class="footnotes">
|
3320
|
+
<br><hr style="width:100; text-align:left;margin-left: 0">
|
3321
|
+
<div id="ftn.id-1.4.9.3.13.5.3" class="footnote"><p><a href="#id-1.4.9.3.13.5.3" class="para"><sup class="para">[4] </sup></a>
|
3322
|
+
Here, <abbr class="abbrev">iter</abbr> is short for <span class="quote">“<span class="quote">iterator</span>”</span>
|
3323
|
+
</p></div>
|
3324
|
+
</div>
|
3325
|
+
</div>
|
3326
|
+
<div class="footer">
|
3327
|
+
<hr>
|
3328
|
+
Generated by GTK-Doc V1.21.1</div>
|
3329
|
+
</body>
|
3330
|
+
</html>
|