gtk3 1.2.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +32 -0
- data/ext/gtk3/conversions.c +34 -0
- data/ext/gtk3/depend +11 -0
- data/ext/gtk3/extconf.rb +108 -0
- data/ext/gtk3/gtk3.def +10 -0
- data/ext/gtk3/init.c +38 -0
- data/ext/gtk3/rbgdkdisplay.c +39 -0
- data/ext/gtk3/rbgdkdragcontext.c +108 -0
- data/ext/gtk3/rbgdkevent.c +38 -0
- data/ext/gtk3/rbgdkscreen.c +61 -0
- data/ext/gtk3/rbgtk.c +625 -0
- data/ext/gtk3/rbgtk3.h +57 -0
- data/ext/gtk3/rbgtk3conversions.h +347 -0
- data/ext/gtk3/rbgtk3private.h +282 -0
- data/ext/gtk3/rbgtk3util.c +67 -0
- data/ext/gtk3/rbgtk3util.h +32 -0
- data/ext/gtk3/rbgtkaboutdialog.c +117 -0
- data/ext/gtk3/rbgtkaccelerator.c +78 -0
- data/ext/gtk3/rbgtkaccelgroup.c +199 -0
- data/ext/gtk3/rbgtkaccelgroupentry.c +93 -0
- data/ext/gtk3/rbgtkaccelkey.c +119 -0
- data/ext/gtk3/rbgtkaccellabel.c +55 -0
- data/ext/gtk3/rbgtkaccelmap.c +135 -0
- data/ext/gtk3/rbgtkaccessible.c +56 -0
- data/ext/gtk3/rbgtkaction.c +205 -0
- data/ext/gtk3/rbgtkactiongroup.c +466 -0
- data/ext/gtk3/rbgtkactivatable.c +30 -0
- data/ext/gtk3/rbgtkadjustment.c +98 -0
- data/ext/gtk3/rbgtkalignment.c +75 -0
- data/ext/gtk3/rbgtkallocation.c +166 -0
- data/ext/gtk3/rbgtkappchooser.c +47 -0
- data/ext/gtk3/rbgtkappchooserbutton.c +70 -0
- data/ext/gtk3/rbgtkappchooserdialog.c +68 -0
- data/ext/gtk3/rbgtkappchooserwidget.c +40 -0
- data/ext/gtk3/rbgtkapplication.c +69 -0
- data/ext/gtk3/rbgtkarrow.c +56 -0
- data/ext/gtk3/rbgtkaspectframe.c +56 -0
- data/ext/gtk3/rbgtkassistant.c +218 -0
- data/ext/gtk3/rbgtkbin.c +42 -0
- data/ext/gtk3/rbgtkbindingset.c +164 -0
- data/ext/gtk3/rbgtkborder.c +119 -0
- data/ext/gtk3/rbgtkbox.c +146 -0
- data/ext/gtk3/rbgtkbuildable.c +96 -0
- data/ext/gtk3/rbgtkbuilder.c +166 -0
- data/ext/gtk3/rbgtkbutton.c +93 -0
- data/ext/gtk3/rbgtkbuttonbox.c +87 -0
- data/ext/gtk3/rbgtkcalendar.c +118 -0
- data/ext/gtk3/rbgtkcelleditable.c +57 -0
- data/ext/gtk3/rbgtkcelllayout.c +144 -0
- data/ext/gtk3/rbgtkcellrenderer.c +116 -0
- data/ext/gtk3/rbgtkcellrendereraccel.c +41 -0
- data/ext/gtk3/rbgtkcellrenderercombo.c +38 -0
- data/ext/gtk3/rbgtkcellrendererpixbuf.c +41 -0
- data/ext/gtk3/rbgtkcellrendererprogress.c +38 -0
- data/ext/gtk3/rbgtkcellrendererspin.c +39 -0
- data/ext/gtk3/rbgtkcellrendererspinner.c +38 -0
- data/ext/gtk3/rbgtkcellrenderertext.c +48 -0
- data/ext/gtk3/rbgtkcellrenderertoggle.c +39 -0
- data/ext/gtk3/rbgtkcellview.c +109 -0
- data/ext/gtk3/rbgtkcheckbutton.c +64 -0
- data/ext/gtk3/rbgtkcheckmenuitem.c +64 -0
- data/ext/gtk3/rbgtkclipboard.c +389 -0
- data/ext/gtk3/rbgtkcolorbutton.c +49 -0
- data/ext/gtk3/rbgtkcolorselection.c +219 -0
- data/ext/gtk3/rbgtkcolorselectiondialog.c +56 -0
- data/ext/gtk3/rbgtkcombobox.c +147 -0
- data/ext/gtk3/rbgtkcomboboxtext.c +138 -0
- data/ext/gtk3/rbgtkconst.c +79 -0
- data/ext/gtk3/rbgtkcontainer.c +784 -0
- data/ext/gtk3/rbgtkcssprovider.c +110 -0
- data/ext/gtk3/rbgtkdialog.c +186 -0
- data/ext/gtk3/rbgtkdrag.c +93 -0
- data/ext/gtk3/rbgtkdrawingarea.c +42 -0
- data/ext/gtk3/rbgtkeditable.c +149 -0
- data/ext/gtk3/rbgtkentry.c +198 -0
- data/ext/gtk3/rbgtkentrybuffer.c +87 -0
- data/ext/gtk3/rbgtkentrycompletion.c +122 -0
- data/ext/gtk3/rbgtkeventbox.c +42 -0
- data/ext/gtk3/rbgtkexpander.c +49 -0
- data/ext/gtk3/rbgtkfilechooser.c +384 -0
- data/ext/gtk3/rbgtkfilechooserbutton.c +50 -0
- data/ext/gtk3/rbgtkfilechooserdialog.c +62 -0
- data/ext/gtk3/rbgtkfilechooserwidget.c +40 -0
- data/ext/gtk3/rbgtkfilefilter.c +128 -0
- data/ext/gtk3/rbgtkfilesystemerror.c +48 -0
- data/ext/gtk3/rbgtkfixed.c +61 -0
- data/ext/gtk3/rbgtkfontbutton.c +49 -0
- data/ext/gtk3/rbgtkfontchooser.c +78 -0
- data/ext/gtk3/rbgtkfontchooserdialog.c +56 -0
- data/ext/gtk3/rbgtkfontchooserwidget.c +45 -0
- data/ext/gtk3/rbgtkframe.c +69 -0
- data/ext/gtk3/rbgtkgrid.c +105 -0
- data/ext/gtk3/rbgtkhandlebox.c +45 -0
- data/ext/gtk3/rbgtkhsv.c +102 -0
- data/ext/gtk3/rbgtkiconfactory.c +85 -0
- data/ext/gtk3/rbgtkiconinfo.c +115 -0
- data/ext/gtk3/rbgtkiconset.c +84 -0
- data/ext/gtk3/rbgtkiconsize.c +91 -0
- data/ext/gtk3/rbgtkiconsource.c +184 -0
- data/ext/gtk3/rbgtkicontheme.c +268 -0
- data/ext/gtk3/rbgtkiconview.c +270 -0
- data/ext/gtk3/rbgtkimage.c +96 -0
- data/ext/gtk3/rbgtkimagemenuitem.c +67 -0
- data/ext/gtk3/rbgtkimcontext.c +133 -0
- data/ext/gtk3/rbgtkimcontextsimple.c +69 -0
- data/ext/gtk3/rbgtkimmulticontext.c +48 -0
- data/ext/gtk3/rbgtkinfobar.c +121 -0
- data/ext/gtk3/rbgtkinvisible.c +49 -0
- data/ext/gtk3/rbgtklabel.c +139 -0
- data/ext/gtk3/rbgtklayout.c +93 -0
- data/ext/gtk3/rbgtklinkbutton.c +55 -0
- data/ext/gtk3/rbgtkliststore.c +408 -0
- data/ext/gtk3/rbgtklockbutton.c +50 -0
- data/ext/gtk3/rbgtkmenu.c +168 -0
- data/ext/gtk3/rbgtkmenubar.c +43 -0
- data/ext/gtk3/rbgtkmenuitem.c +95 -0
- data/ext/gtk3/rbgtkmenushell.c +106 -0
- data/ext/gtk3/rbgtkmenutoolbutton.c +81 -0
- data/ext/gtk3/rbgtkmessagedialog.c +74 -0
- data/ext/gtk3/rbgtkmisc.c +70 -0
- data/ext/gtk3/rbgtknotebook.c +383 -0
- data/ext/gtk3/rbgtknumerableicon.c +50 -0
- data/ext/gtk3/rbgtkorientable.c +27 -0
- data/ext/gtk3/rbgtkoverlay.c +53 -0
- data/ext/gtk3/rbgtkpagesetup.c +195 -0
- data/ext/gtk3/rbgtkpagesetupunixdialog.c +94 -0
- data/ext/gtk3/rbgtkpaned.c +114 -0
- data/ext/gtk3/rbgtkpapersize.c +179 -0
- data/ext/gtk3/rbgtkplug.c +85 -0
- data/ext/gtk3/rbgtkprintcontext.c +125 -0
- data/ext/gtk3/rbgtkprinter.c +155 -0
- data/ext/gtk3/rbgtkprintjob.c +148 -0
- data/ext/gtk3/rbgtkprintoperation.c +149 -0
- data/ext/gtk3/rbgtkprintoperationpreview.c +59 -0
- data/ext/gtk3/rbgtkprintsettings.c +807 -0
- data/ext/gtk3/rbgtkprintunixdialog.c +90 -0
- data/ext/gtk3/rbgtkprogressbar.c +72 -0
- data/ext/gtk3/rbgtkradioaction.c +122 -0
- data/ext/gtk3/rbgtkradiobutton.c +89 -0
- data/ext/gtk3/rbgtkradiomenuitem.c +147 -0
- data/ext/gtk3/rbgtkradiotoolbutton.c +131 -0
- data/ext/gtk3/rbgtkrange.c +68 -0
- data/ext/gtk3/rbgtkrecentaction.c +64 -0
- data/ext/gtk3/rbgtkrecentchooser.c +198 -0
- data/ext/gtk3/rbgtkrecentchooserdialog.c +66 -0
- data/ext/gtk3/rbgtkrecentchoosermenu.c +50 -0
- data/ext/gtk3/rbgtkrecentchooserwidget.c +48 -0
- data/ext/gtk3/rbgtkrecentdata.c +187 -0
- data/ext/gtk3/rbgtkrecentfilter.c +169 -0
- data/ext/gtk3/rbgtkrecentfilterinfo.c +200 -0
- data/ext/gtk3/rbgtkrecentinfo.c +213 -0
- data/ext/gtk3/rbgtkrecentmanager.c +134 -0
- data/ext/gtk3/rbgtkscale.c +97 -0
- data/ext/gtk3/rbgtkscalebutton.c +84 -0
- data/ext/gtk3/rbgtkscrollable.c +31 -0
- data/ext/gtk3/rbgtkscrollbar.c +52 -0
- data/ext/gtk3/rbgtkscrolledwindow.c +122 -0
- data/ext/gtk3/rbgtkselection.c +168 -0
- data/ext/gtk3/rbgtkselectiondata.c +282 -0
- data/ext/gtk3/rbgtkseparator.c +44 -0
- data/ext/gtk3/rbgtkseparatormenuitem.c +39 -0
- data/ext/gtk3/rbgtkseparatortoolitem.c +38 -0
- data/ext/gtk3/rbgtksettings.c +229 -0
- data/ext/gtk3/rbgtksizegroup.c +66 -0
- data/ext/gtk3/rbgtksocket.c +82 -0
- data/ext/gtk3/rbgtkspinbutton.c +132 -0
- data/ext/gtk3/rbgtkspinner.c +55 -0
- data/ext/gtk3/rbgtkstatusbar.c +77 -0
- data/ext/gtk3/rbgtkstatusicon.c +122 -0
- data/ext/gtk3/rbgtkstock.c +213 -0
- data/ext/gtk3/rbgtkstylecontext.c +411 -0
- data/ext/gtk3/rbgtkstyleproperties.c +119 -0
- data/ext/gtk3/rbgtkstyleprovider.c +68 -0
- data/ext/gtk3/rbgtkswitch.c +40 -0
- data/ext/gtk3/rbgtktable.c +190 -0
- data/ext/gtk3/rbgtktargetlist.c +125 -0
- data/ext/gtk3/rbgtktearoffmenuitem.c +41 -0
- data/ext/gtk3/rbgtktextappearance.c +236 -0
- data/ext/gtk3/rbgtktextattributes.c +326 -0
- data/ext/gtk3/rbgtktextbuffer.c +899 -0
- data/ext/gtk3/rbgtktextchildanchor.c +56 -0
- data/ext/gtk3/rbgtktextiter.c +732 -0
- data/ext/gtk3/rbgtktextmark.c +71 -0
- data/ext/gtk3/rbgtktexttag.c +68 -0
- data/ext/gtk3/rbgtktexttagtable.c +96 -0
- data/ext/gtk3/rbgtktextview.c +336 -0
- data/ext/gtk3/rbgtkthemingengine.c +257 -0
- data/ext/gtk3/rbgtktoggleaction.c +61 -0
- data/ext/gtk3/rbgtktogglebutton.c +87 -0
- data/ext/gtk3/rbgtktoggletoolbutton.c +61 -0
- data/ext/gtk3/rbgtktoolbar.c +118 -0
- data/ext/gtk3/rbgtktoolbutton.c +66 -0
- data/ext/gtk3/rbgtktoolitem.c +200 -0
- data/ext/gtk3/rbgtktoolitemgroup.c +70 -0
- data/ext/gtk3/rbgtktoolshell.c +96 -0
- data/ext/gtk3/rbgtktooltip.c +100 -0
- data/ext/gtk3/rbgtktreedragdest.c +28 -0
- data/ext/gtk3/rbgtktreedragsource.c +28 -0
- data/ext/gtk3/rbgtktreeiter.c +258 -0
- data/ext/gtk3/rbgtktreemodel.c +236 -0
- data/ext/gtk3/rbgtktreemodelfilter.c +197 -0
- data/ext/gtk3/rbgtktreemodelsort.c +111 -0
- data/ext/gtk3/rbgtktreepath.c +191 -0
- data/ext/gtk3/rbgtktreerowreference.c +140 -0
- data/ext/gtk3/rbgtktreeselection.c +205 -0
- data/ext/gtk3/rbgtktreesortable.c +122 -0
- data/ext/gtk3/rbgtktreestore.c +330 -0
- data/ext/gtk3/rbgtktreeview.c +715 -0
- data/ext/gtk3/rbgtktreeviewcolumn.c +256 -0
- data/ext/gtk3/rbgtkuimanager.c +189 -0
- data/ext/gtk3/rbgtkviewport.c +44 -0
- data/ext/gtk3/rbgtkvolumebutton.c +41 -0
- data/ext/gtk3/rbgtkwidget.c +1564 -0
- data/ext/gtk3/rbgtkwidgetpath.c +229 -0
- data/ext/gtk3/rbgtkwindow.c +557 -0
- data/ext/gtk3/rbgtkwindowgroup.c +80 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gtk3.so +0 -0
- data/lib/1.9/gtk3.so +0 -0
- data/lib/gtk3.rb +10 -0
- data/lib/gtk3/base.rb +67 -0
- data/lib/gtk3/deprecated.rb +1001 -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 +88 -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 +382 -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 +66 -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 +64 -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 +33 -0
- data/sample/misc/expander.rb +27 -0
- data/sample/misc/filechooser.rb +41 -0
- data/sample/misc/frame.rb +69 -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/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 +49 -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 +52 -0
- data/sample/misc/rgtk+cairo.rb +42 -0
- data/sample/misc/scalebutton.rb +19 -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 +79 -0
- data/sample/misc/tree_progress.rb +63 -0
- data/sample/misc/treemodelfilter.rb +49 -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 +124 -0
- data/sample/testgtk/buttonbox.rb +100 -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 +48 -0
- data/sample/testgtk/entry.rb +73 -0
- data/sample/testgtk/filesel.rb +65 -0
- data/sample/testgtk/fontselection.rb +56 -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 +280 -0
- data/sample/testgtk/pixmap.rb +58 -0
- data/sample/testgtk/progressbar.rb +173 -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/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 +176 -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 +11 -0
- data/test/test_gdk_gc.rb +7 -0
- data/test/test_gdk_keymap.rb +8 -0
- data/test/test_gdk_pango.rb +9 -0
- data/test/test_gdk_selection_data.rb +17 -0
- data/test/test_gdk_window.rb +29 -0
- data/test/test_gdk_window_attribute.rb +9 -0
- data/test/test_gtk_about_dialog.rb +14 -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 +30 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_list_store.rb +65 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_rc_style.rb +14 -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/gtk-update-icon-cache.exe.manifest +17 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtk.immodules +4 -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 +149 -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.lib +0 -0
- data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +35 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gail.pc +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/manifest/gtk+-dev_2.24.10-1_win32.mft +947 -0
- data/vendor/local/manifest/gtk+_2.24.10-1_win32.mft +225 -0
- data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
- data/vendor/local/share/doc/gtk+-2.24.10/COPYING +482 -0
- data/vendor/local/share/doc/gtk+-dev-2.24.10/COPYING +482 -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 +643 -0
- data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
- data/vendor/local/share/gtk-2.0/demo/colorsel.c +142 -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 +308 -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 +579 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +500 -0
- data/vendor/local/share/gtk-2.0/demo/panes.c +194 -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 +237 -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 +795 -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 +449 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +275 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +30 -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.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.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +1283 -0
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +262 -0
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +1526 -0
- data/vendor/local/share/gtk-doc/html/gdk/X_cursor.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +74 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +124 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +124 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +42 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +109 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +515 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +51 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +224 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +128 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +115 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +1012 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +3674 -0
- data/vendor/local/share/gtk-doc/html/gdk/arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/based_arrow_down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/based_arrow_up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/boat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bogosity.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/box_spiral.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/center_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/circle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/clock.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/coffee_mug.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/cross_reverse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/crosshair.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/diamond_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/dot.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/dotbox.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/draft_large.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/draft_small.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/draped_box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/exchange.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/fleur.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +319 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +611 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +415 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +950 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +1137 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +911 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +2088 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +1690 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +1264 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +1449 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +1182 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +902 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +1653 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +824 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +960 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +297 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +1016 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +861 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +648 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +968 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +1005 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +657 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +210 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +933 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +827 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +6581 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +2486 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +1331 -0
- data/vendor/local/share/gtk-doc/html/gdk/gobbler.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/gumby.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/hand1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/hand2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/heart.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/icon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/index.html +143 -0
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1446 -0
- data/vendor/local/share/gtk-doc/html/gdk/iron_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/leftbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/ll_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/lr_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/man.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/middlebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/mouse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +201 -0
- data/vendor/local/share/gtk-doc/html/gdk/pencil.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/pirate.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/plus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/question_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +131 -0
- data/vendor/local/share/gtk-doc/html/gdk/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/right_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/right_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/right_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/rightbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/rtl_logo.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sailboat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_down_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_h_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_right_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_up_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_v_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/shuttle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sizing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/spider.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/spraycan.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/star.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gdk/target.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/tcross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/trek.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/ul_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/umbrella.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/ur_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/watch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/xterm.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +83 -0
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +1423 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +340 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +147 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +1582 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +1222 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +856 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +807 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +390 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +205 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +238 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +1134 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +131 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +773 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +638 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +1121 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +1110 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +3832 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +2563 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +1059 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +520 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +1132 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +254 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +227 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +161 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +157 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +582 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +433 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +214 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +436 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +786 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +231 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +507 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +1555 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +298 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +1510 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +423 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +1323 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +251 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +662 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +3428 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +590 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +1128 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +292 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +739 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +3186 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +498 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +321 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +170 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +611 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +326 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +526 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +417 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +132 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +230 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +108 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +129 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +462 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +125 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +130 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +478 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +947 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +148 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +175 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +1410 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +2689 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +1501 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +456 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +714 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +200 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +197 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +235 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +1172 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +2086 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +577 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +390 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +972 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +438 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +1056 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +1353 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +412 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +882 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +671 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +431 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +786 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +313 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +2682 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +1217 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +501 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +333 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +937 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +242 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +760 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaperSize.html +820 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +239 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +357 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +652 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +513 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +527 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +2677 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +853 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +931 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +852 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +367 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +525 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +457 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +327 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +1389 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +267 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +1376 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +259 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +620 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +1564 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +357 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +537 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +187 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +738 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +90 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +110 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +211 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +1215 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +440 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +388 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +1260 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +203 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +1716 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +491 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +4192 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +759 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +3605 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextIter.html +2871 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +325 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +1157 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +381 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +3002 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +452 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +315 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +508 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +279 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +667 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +1147 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +705 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +1007 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +394 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +1851 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +414 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +450 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +767 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +2402 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +654 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +551 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +796 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +458 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +4656 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +1845 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +1290 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +133 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +209 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +108 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +129 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +398 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +112 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +10064 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +4007 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +175 -0
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +556 -0
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +57 -0
- data/vendor/local/share/gtk-doc/html/gtk/aboutdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/accel-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +2095 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +790 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +786 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +602 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +518 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +291 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +465 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +181 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +1858 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +1090 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +386 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +3401 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +22926 -0
- data/vendor/local/share/gtk-doc/html/gtk/application-exit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/assistant.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk/check-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +84 -0
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/color-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/colorsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/combo-box-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/combo-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-information.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-password.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-question.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-new.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-open.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-print-preview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-print.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-properties.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-revert-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-revert-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-save-as.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-save.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/drive-harddisk.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-clear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-copy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-cut.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-delete.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-find-replace.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-find.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-paste.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-redo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-redo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-select-all.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-undo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-undo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/figure-hierarchical-drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/figure-windowed-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/file-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/filechooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/folder.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/font-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/fontsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-fill.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-bold.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-italic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-strikethrough.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-underline.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/frame.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +312 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-bottom.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-first-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-first-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-jump-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-jump-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-last-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-last-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-next-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-next-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-previous-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-previous-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-top.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +522 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +857 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +1525 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +1419 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +285 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +346 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +1760 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +439 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +2571 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +979 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +169 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +1726 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +1601 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +1536 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +1357 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +1565 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +589 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +1497 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +1574 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-apply.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +86 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +441 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-cancel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-caps-lock-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +568 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +1175 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-color-picker.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-connect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-convert.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +60 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-disconnect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd-multiple.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-edit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-font.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +493 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +509 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-index.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +85 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +91 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +102 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +118 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +107 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +256 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +80 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +264 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +163 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +293 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +124 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-no.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-ok.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-page-setup.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-preferences.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +1422 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +143 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +344 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-select-color.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +87 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-yes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +6465 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +159 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +40 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +51 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +97 -0
- data/vendor/local/share/gtk-doc/html/gtk/help-about.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/help-contents.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/icon-view.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/image-missing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/image.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/index.html +875 -0
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +7988 -0
- data/vendor/local/share/gtk-doc/html/gtk/label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-btlr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-btrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-lrbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-lrtb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-rlbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-rltb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-tblr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-tbrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/link-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/list-add.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/list-and-tree.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/list-remove.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-floppy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-optical.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-pause.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-record.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/menubar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/messagedialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +94 -0
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk/multiline-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/network-idle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk/notebook.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/pagesetupdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/panes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-info.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-paused.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/process-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/progressbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk/radio-group.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/recentchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/scales.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/scrolledwindow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/separator.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk/spinbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/spinner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/statusbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gtk/system-run.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/text-x-generic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/toggle-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/toolbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/toolpalette.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/tools-check-spelling.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/tree-view-coordinates.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-fullscreen.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-refresh.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-restore.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-sort-ascending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-sort-descending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/volumebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/window-close.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/window.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-fit-best.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-original.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-out.png +0 -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
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.log +4954 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.sh +99 -0
- metadata +1759 -0
@@ -0,0 +1,1028 @@
|
|
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>GtkTreeStore</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.76.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="GtkListStore.html" title="GtkListStore">
|
10
|
+
<link rel="next" href="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.18 (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="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="GtkListStore.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="TreeWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">GTK+ 2 Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="MenusAndCombos.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a href="#GtkTreeStore.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkTreeStore.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkTreeStore.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkTreeStore.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
31
|
+
</td></tr>
|
32
|
+
</table>
|
33
|
+
<div class="refentry">
|
34
|
+
<a name="GtkTreeStore"></a><div class="titlepage"></div>
|
35
|
+
<div class="refnamediv"><table width="100%"><tr>
|
36
|
+
<td valign="top">
|
37
|
+
<h2><span class="refentrytitle"><a name="GtkTreeStore.top_of_page"></a>GtkTreeStore</span></h2>
|
38
|
+
<p>GtkTreeStore — A tree-like data structure that can be used with the GtkTreeView</p>
|
39
|
+
</td>
|
40
|
+
<td valign="top" align="right"></td>
|
41
|
+
</tr></table></div>
|
42
|
+
<div class="refsynopsisdiv">
|
43
|
+
<a name="GtkTreeStore.synopsis"></a><h2>Synopsis</h2>
|
44
|
+
<pre class="synopsis">
|
45
|
+
#include <gtk/gtk.h>
|
46
|
+
|
47
|
+
struct <a class="link" href="GtkTreeStore.html#GtkTreeStore-struct" title="struct GtkTreeStore">GtkTreeStore</a>;
|
48
|
+
<a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="returnvalue">GtkTreeStore</span></a> * <a class="link" href="GtkTreeStore.html#gtk-tree-store-new" title="gtk_tree_store_new ()">gtk_tree_store_new</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_columns</code></em>,
|
49
|
+
<em class="parameter"><code>...</code></em>);
|
50
|
+
<a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="returnvalue">GtkTreeStore</span></a> * <a class="link" href="GtkTreeStore.html#gtk-tree-store-newv" title="gtk_tree_store_newv ()">gtk_tree_store_newv</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_columns</code></em>,
|
51
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> *types</code></em>);
|
52
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-column-types" title="gtk_tree_store_set_column_types ()">gtk_tree_store_set_column_types</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
53
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_columns</code></em>,
|
54
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> *types</code></em>);
|
55
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-value" title="gtk_tree_store_set_value ()">gtk_tree_store_set_value</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
56
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
57
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
58
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);
|
59
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree_store_set ()">gtk_tree_store_set</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
60
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
61
|
+
<em class="parameter"><code>...</code></em>);
|
62
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-valist" title="gtk_tree_store_set_valist ()">gtk_tree_store_set_valist</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
63
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
64
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
|
65
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-valuesv" title="gtk_tree_store_set_valuesv ()">gtk_tree_store_set_valuesv</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
66
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
67
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *columns</code></em>,
|
68
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *values</code></em>,
|
69
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_values</code></em>);
|
70
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeStore.html#gtk-tree-store-remove" title="gtk_tree_store_remove ()">gtk_tree_store_remove</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
71
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
|
72
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert" title="gtk_tree_store_insert ()">gtk_tree_store_insert</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
73
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
74
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
75
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);
|
76
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-before" title="gtk_tree_store_insert_before ()">gtk_tree_store_insert_before</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
77
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
78
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
79
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sibling</code></em>);
|
80
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-after" title="gtk_tree_store_insert_after ()">gtk_tree_store_insert_after</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
81
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
82
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
83
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sibling</code></em>);
|
84
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-with-values" title="gtk_tree_store_insert_with_values ()">gtk_tree_store_insert_with_values</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
85
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
86
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
87
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>,
|
88
|
+
<em class="parameter"><code>...</code></em>);
|
89
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-with-valuesv" title="gtk_tree_store_insert_with_valuesv ()">gtk_tree_store_insert_with_valuesv</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
90
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
91
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
92
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>,
|
93
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *columns</code></em>,
|
94
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *values</code></em>,
|
95
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_values</code></em>);
|
96
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-prepend" title="gtk_tree_store_prepend ()">gtk_tree_store_prepend</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
97
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
98
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);
|
99
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-append" title="gtk_tree_store_append ()">gtk_tree_store_append</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
100
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
101
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);
|
102
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeStore.html#gtk-tree-store-is-ancestor" title="gtk_tree_store_is_ancestor ()">gtk_tree_store_is_ancestor</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
103
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
104
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *descendant</code></em>);
|
105
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkTreeStore.html#gtk-tree-store-iter-depth" title="gtk_tree_store_iter_depth ()">gtk_tree_store_iter_depth</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
106
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
|
107
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-clear" title="gtk_tree_store_clear ()">gtk_tree_store_clear</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>);
|
108
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTreeStore.html#gtk-tree-store-iter-is-valid" title="gtk_tree_store_iter_is_valid ()">gtk_tree_store_iter_is_valid</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
109
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
|
110
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-reorder" title="gtk_tree_store_reorder ()">gtk_tree_store_reorder</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
111
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
112
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *new_order</code></em>);
|
113
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-swap" title="gtk_tree_store_swap ()">gtk_tree_store_swap</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
114
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *a</code></em>,
|
115
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *b</code></em>);
|
116
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-move-before" title="gtk_tree_store_move_before ()">gtk_tree_store_move_before</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
117
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
118
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *position</code></em>);
|
119
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTreeStore.html#gtk-tree-store-move-after" title="gtk_tree_store_move_after ()">gtk_tree_store_move_after</a> (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
120
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
121
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *position</code></em>);
|
122
|
+
</pre>
|
123
|
+
</div>
|
124
|
+
<div class="refsect1">
|
125
|
+
<a name="GtkTreeStore.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
126
|
+
<pre class="synopsis">
|
127
|
+
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
128
|
+
+----GtkTreeStore
|
129
|
+
</pre>
|
130
|
+
</div>
|
131
|
+
<div class="refsect1">
|
132
|
+
<a name="GtkTreeStore.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
133
|
+
<p>
|
134
|
+
GtkTreeStore implements
|
135
|
+
<a class="link" href="GtkTreeModel.html" title="GtkTreeModel">GtkTreeModel</a>, <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSource">GtkTreeDragSource</a>, <a class="link" href="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragDest">GtkTreeDragDest</a>, <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable">GtkTreeSortable</a> and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
136
|
+
</div>
|
137
|
+
<div class="refsect1">
|
138
|
+
<a name="GtkTreeStore.description"></a><h2>Description</h2>
|
139
|
+
<p>
|
140
|
+
The <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> object is a list model for use with a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>
|
141
|
+
widget. It implements the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> interface, and consequentialy,
|
142
|
+
can use all of the methods available there. It also implements the
|
143
|
+
<a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a> interface so it can be sorted by the view. Finally,
|
144
|
+
it also implements the tree <GTKDOCLINK HREF="gtktreednd">drag and
|
145
|
+
drop</GTKDOCLINK> interfaces.
|
146
|
+
</p>
|
147
|
+
<div class="refsect2">
|
148
|
+
<a name="GtkTreeStore-BUILDER-UI"></a><h3>GtkTreeStore as GtkBuildable</h3>
|
149
|
+
<p>
|
150
|
+
The GtkTreeStore implementation of the GtkBuildable interface allows
|
151
|
+
to specify the model columns with a <columns> element that may
|
152
|
+
contain multiple <column> elements, each specifying one model
|
153
|
+
column. The "type" attribute specifies the data type for the column.
|
154
|
+
</p>
|
155
|
+
<div class="example">
|
156
|
+
<a name="id966728"></a><p class="title"><b>Example 29. A UI Definition fragment for a tree store</b></p>
|
157
|
+
<div class="example-contents">
|
158
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
159
|
+
<tbody>
|
160
|
+
<tr>
|
161
|
+
<td class="listing_lines" align="right"><pre>1
|
162
|
+
2
|
163
|
+
3
|
164
|
+
4
|
165
|
+
5
|
166
|
+
6
|
167
|
+
7</pre></td>
|
168
|
+
<td class="listing_code"><pre class="programlisting"><span class="symbol"><</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkTreeStore"</span><span class="symbol">></span>
|
169
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="normal">columns</span><span class="symbol">></span>
|
170
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">column</span><span class="normal"> type</span><span class="symbol">=</span><span class="string">"gchararray"</span><span class="symbol">/></span>
|
171
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">column</span><span class="normal"> type</span><span class="symbol">=</span><span class="string">"gchararray"</span><span class="symbol">/></span>
|
172
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">column</span><span class="normal"> type</span><span class="symbol">=</span><span class="string">"gint"</span><span class="symbol">/></span>
|
173
|
+
<span class="normal"> </span><span class="symbol"></</span><span class="normal">columns</span><span class="symbol">></span>
|
174
|
+
<span class="symbol"></</span><span class="normal">object</span><span class="symbol">></span></pre></td>
|
175
|
+
</tr>
|
176
|
+
</tbody>
|
177
|
+
</table>
|
178
|
+
</div>
|
179
|
+
|
180
|
+
</div>
|
181
|
+
<br class="example-break">
|
182
|
+
</div>
|
183
|
+
</div>
|
184
|
+
<div class="refsect1">
|
185
|
+
<a name="GtkTreeStore.details"></a><h2>Details</h2>
|
186
|
+
<div class="refsect2">
|
187
|
+
<a name="GtkTreeStore-struct"></a><h3>struct GtkTreeStore</h3>
|
188
|
+
<pre class="programlisting">struct GtkTreeStore;</pre>
|
189
|
+
<p>
|
190
|
+
</p>
|
191
|
+
</div>
|
192
|
+
<hr>
|
193
|
+
<div class="refsect2">
|
194
|
+
<a name="gtk-tree-store-new"></a><h3>gtk_tree_store_new ()</h3>
|
195
|
+
<pre class="programlisting"><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="returnvalue">GtkTreeStore</span></a> * gtk_tree_store_new (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_columns</code></em>,
|
196
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
197
|
+
<p>
|
198
|
+
Creates a new tree store as with <em class="parameter"><code>n_columns</code></em> columns each of the types passed
|
199
|
+
in. Note that only types derived from standard GObject fundamental types
|
200
|
+
are supported.
|
201
|
+
</p>
|
202
|
+
<p>
|
203
|
+
As an example, <code class="literal">gtk_tree_store_new (3, G_TYPE_INT, G_TYPE_STRING,
|
204
|
+
GDK_TYPE_PIXBUF);</code> will create a new <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> with three columns, of type
|
205
|
+
<span class="type">int</span>, <span class="type">string</span> and <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> respectively.
|
206
|
+
</p>
|
207
|
+
<div class="variablelist"><table border="0">
|
208
|
+
<col align="left" valign="top">
|
209
|
+
<tbody>
|
210
|
+
<tr>
|
211
|
+
<td><p><span class="term"><em class="parameter"><code>n_columns</code></em> :</span></p></td>
|
212
|
+
<td>number of columns in the tree store</td>
|
213
|
+
</tr>
|
214
|
+
<tr>
|
215
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
216
|
+
<td>a new <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
217
|
+
</td>
|
218
|
+
</tr>
|
219
|
+
</tbody>
|
220
|
+
</table></div>
|
221
|
+
</div>
|
222
|
+
<hr>
|
223
|
+
<div class="refsect2">
|
224
|
+
<a name="gtk-tree-store-newv"></a><h3>gtk_tree_store_newv ()</h3>
|
225
|
+
<pre class="programlisting"><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="returnvalue">GtkTreeStore</span></a> * gtk_tree_store_newv (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_columns</code></em>,
|
226
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> *types</code></em>);</pre>
|
227
|
+
<p>
|
228
|
+
Non vararg creation function. Used primarily by language bindings.
|
229
|
+
</p>
|
230
|
+
<div class="variablelist"><table border="0">
|
231
|
+
<col align="left" valign="top">
|
232
|
+
<tbody>
|
233
|
+
<tr>
|
234
|
+
<td><p><span class="term"><em class="parameter"><code>n_columns</code></em> :</span></p></td>
|
235
|
+
<td>number of columns in the tree store</td>
|
236
|
+
</tr>
|
237
|
+
<tr>
|
238
|
+
<td><p><span class="term"><em class="parameter"><code>types</code></em> :</span></p></td>
|
239
|
+
<td>an array of <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> types for the columns, from first to last. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_columns]</span>
|
240
|
+
</td>
|
241
|
+
</tr>
|
242
|
+
<tr>
|
243
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
244
|
+
<td>a new <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
245
|
+
</td>
|
246
|
+
</tr>
|
247
|
+
</tbody>
|
248
|
+
</table></div>
|
249
|
+
</div>
|
250
|
+
<hr>
|
251
|
+
<div class="refsect2">
|
252
|
+
<a name="gtk-tree-store-set-column-types"></a><h3>gtk_tree_store_set_column_types ()</h3>
|
253
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_set_column_types (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
254
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_columns</code></em>,
|
255
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> *types</code></em>);</pre>
|
256
|
+
<p>
|
257
|
+
This function is meant primarily for <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObjects</span></a> that inherit from
|
258
|
+
<a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>, and should only be used when constructing a new
|
259
|
+
<a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>. It will not function after a row has been added,
|
260
|
+
or a method on the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> interface is called.
|
261
|
+
</p>
|
262
|
+
<div class="variablelist"><table border="0">
|
263
|
+
<col align="left" valign="top">
|
264
|
+
<tbody>
|
265
|
+
<tr>
|
266
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
267
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
268
|
+
</td>
|
269
|
+
</tr>
|
270
|
+
<tr>
|
271
|
+
<td><p><span class="term"><em class="parameter"><code>n_columns</code></em> :</span></p></td>
|
272
|
+
<td>Number of columns for the tree store</td>
|
273
|
+
</tr>
|
274
|
+
<tr>
|
275
|
+
<td><p><span class="term"><em class="parameter"><code>types</code></em> :</span></p></td>
|
276
|
+
<td>An array of <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> types, one for each column. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_columns]</span>
|
277
|
+
</td>
|
278
|
+
</tr>
|
279
|
+
</tbody>
|
280
|
+
</table></div>
|
281
|
+
</div>
|
282
|
+
<hr>
|
283
|
+
<div class="refsect2">
|
284
|
+
<a name="gtk-tree-store-set-value"></a><h3>gtk_tree_store_set_value ()</h3>
|
285
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_set_value (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
286
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
287
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
288
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
|
289
|
+
<p>
|
290
|
+
Sets the data in the cell specified by <em class="parameter"><code>iter</code></em> and <em class="parameter"><code>column</code></em>.
|
291
|
+
The type of <em class="parameter"><code>value</code></em> must be convertible to the type of the
|
292
|
+
column.
|
293
|
+
</p>
|
294
|
+
<div class="variablelist"><table border="0">
|
295
|
+
<col align="left" valign="top">
|
296
|
+
<tbody>
|
297
|
+
<tr>
|
298
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
299
|
+
<td>a <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
300
|
+
</td>
|
301
|
+
</tr>
|
302
|
+
<tr>
|
303
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
304
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> for the row being modified</td>
|
305
|
+
</tr>
|
306
|
+
<tr>
|
307
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
308
|
+
<td>column number to modify</td>
|
309
|
+
</tr>
|
310
|
+
<tr>
|
311
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
312
|
+
<td>new value for the cell</td>
|
313
|
+
</tr>
|
314
|
+
</tbody>
|
315
|
+
</table></div>
|
316
|
+
</div>
|
317
|
+
<hr>
|
318
|
+
<div class="refsect2">
|
319
|
+
<a name="gtk-tree-store-set"></a><h3>gtk_tree_store_set ()</h3>
|
320
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_set (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
321
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
322
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
323
|
+
<p>
|
324
|
+
Sets the value of one or more cells in the row referenced by <em class="parameter"><code>iter</code></em>.
|
325
|
+
The variable argument list should contain integer column numbers,
|
326
|
+
each column number followed by the value to be set.
|
327
|
+
The list is terminated by a -1. For example, to set column 0 with type
|
328
|
+
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><code class="literal">G_TYPE_STRING</code></a> to "Foo", you would write
|
329
|
+
<code class="literal">gtk_tree_store_set (store, iter, 0, "Foo", -1)</code>.
|
330
|
+
</p>
|
331
|
+
<p>
|
332
|
+
The value will be referenced by the store if it is a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-OBJECT:CAPS"><code class="literal">G_TYPE_OBJECT</code></a>, and it
|
333
|
+
will be copied if it is a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><code class="literal">G_TYPE_STRING</code></a> or <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-BOXED:CAPS"><code class="literal">G_TYPE_BOXED</code></a>.
|
334
|
+
</p>
|
335
|
+
<div class="variablelist"><table border="0">
|
336
|
+
<col align="left" valign="top">
|
337
|
+
<tbody>
|
338
|
+
<tr>
|
339
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
340
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
341
|
+
</td>
|
342
|
+
</tr>
|
343
|
+
<tr>
|
344
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
345
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> for the row being modified</td>
|
346
|
+
</tr>
|
347
|
+
</tbody>
|
348
|
+
</table></div>
|
349
|
+
</div>
|
350
|
+
<hr>
|
351
|
+
<div class="refsect2">
|
352
|
+
<a name="gtk-tree-store-set-valist"></a><h3>gtk_tree_store_set_valist ()</h3>
|
353
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_set_valist (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
354
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
355
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
356
|
+
<p>
|
357
|
+
See <a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree_store_set ()"><code class="function">gtk_tree_store_set()</code></a>; this version takes a <span class="type">va_list</span> for
|
358
|
+
use by language bindings.
|
359
|
+
</p>
|
360
|
+
<div class="variablelist"><table border="0">
|
361
|
+
<col align="left" valign="top">
|
362
|
+
<tbody>
|
363
|
+
<tr>
|
364
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
365
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
366
|
+
</td>
|
367
|
+
</tr>
|
368
|
+
<tr>
|
369
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
370
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> for the row being modified</td>
|
371
|
+
</tr>
|
372
|
+
<tr>
|
373
|
+
<td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
|
374
|
+
<td>
|
375
|
+
<span class="type">va_list</span> of column/value pairs</td>
|
376
|
+
</tr>
|
377
|
+
</tbody>
|
378
|
+
</table></div>
|
379
|
+
</div>
|
380
|
+
<hr>
|
381
|
+
<div class="refsect2">
|
382
|
+
<a name="gtk-tree-store-set-valuesv"></a><h3>gtk_tree_store_set_valuesv ()</h3>
|
383
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_set_valuesv (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
384
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
385
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *columns</code></em>,
|
386
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *values</code></em>,
|
387
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_values</code></em>);</pre>
|
388
|
+
<p>
|
389
|
+
A variant of <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-valist" title="gtk_tree_store_set_valist ()"><code class="function">gtk_tree_store_set_valist()</code></a> which takes
|
390
|
+
the columns and values as two arrays, instead of varargs. This
|
391
|
+
function is mainly intended for language bindings or in case
|
392
|
+
the number of columns to change is not known until run-time.
|
393
|
+
</p>
|
394
|
+
<div class="variablelist"><table border="0">
|
395
|
+
<col align="left" valign="top">
|
396
|
+
<tbody>
|
397
|
+
<tr>
|
398
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
399
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
400
|
+
</td>
|
401
|
+
</tr>
|
402
|
+
<tr>
|
403
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
404
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> for the row being modified</td>
|
405
|
+
</tr>
|
406
|
+
<tr>
|
407
|
+
<td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
|
408
|
+
<td>an array of column numbers. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values]</span>
|
409
|
+
</td>
|
410
|
+
</tr>
|
411
|
+
<tr>
|
412
|
+
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
413
|
+
<td>an array of GValues. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values]</span>
|
414
|
+
</td>
|
415
|
+
</tr>
|
416
|
+
<tr>
|
417
|
+
<td><p><span class="term"><em class="parameter"><code>n_values</code></em> :</span></p></td>
|
418
|
+
<td>the length of the <em class="parameter"><code>columns</code></em> and <em class="parameter"><code>values</code></em> arrays</td>
|
419
|
+
</tr>
|
420
|
+
</tbody>
|
421
|
+
</table></div>
|
422
|
+
<p class="since">Since 2.12</p>
|
423
|
+
</div>
|
424
|
+
<hr>
|
425
|
+
<div class="refsect2">
|
426
|
+
<a name="gtk-tree-store-remove"></a><h3>gtk_tree_store_remove ()</h3>
|
427
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_store_remove (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
428
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
429
|
+
<p>
|
430
|
+
Removes <em class="parameter"><code>iter</code></em> from <em class="parameter"><code>tree_store</code></em>. After being removed, <em class="parameter"><code>iter</code></em> is set to the
|
431
|
+
next valid row at that level, or invalidated if it previously pointed to the
|
432
|
+
last one.
|
433
|
+
</p>
|
434
|
+
<div class="variablelist"><table border="0">
|
435
|
+
<col align="left" valign="top">
|
436
|
+
<tbody>
|
437
|
+
<tr>
|
438
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
439
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
440
|
+
</td>
|
441
|
+
</tr>
|
442
|
+
<tr>
|
443
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
444
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
|
445
|
+
</td>
|
446
|
+
</tr>
|
447
|
+
<tr>
|
448
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
449
|
+
<td>
|
450
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em> is still valid, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if not.</td>
|
451
|
+
</tr>
|
452
|
+
</tbody>
|
453
|
+
</table></div>
|
454
|
+
</div>
|
455
|
+
<hr>
|
456
|
+
<div class="refsect2">
|
457
|
+
<a name="gtk-tree-store-insert"></a><h3>gtk_tree_store_insert ()</h3>
|
458
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_insert (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
459
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
460
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
461
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
|
462
|
+
<p>
|
463
|
+
Creates a new row at <em class="parameter"><code>position</code></em>. If parent is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the row will be
|
464
|
+
made a child of <em class="parameter"><code>parent</code></em>. Otherwise, the row will be created at the toplevel.
|
465
|
+
If <em class="parameter"><code>position</code></em> is larger than the number of rows at that level, then the new
|
466
|
+
row will be inserted to the end of the list. <em class="parameter"><code>iter</code></em> will be changed to point
|
467
|
+
to this new row. The row will be empty after this function is called. To
|
468
|
+
fill in values, you need to call <a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree_store_set ()"><code class="function">gtk_tree_store_set()</code></a> or
|
469
|
+
<a class="link" href="GtkTreeStore.html#gtk-tree-store-set-value" title="gtk_tree_store_set_value ()"><code class="function">gtk_tree_store_set_value()</code></a>.
|
470
|
+
</p>
|
471
|
+
<div class="variablelist"><table border="0">
|
472
|
+
<col align="left" valign="top">
|
473
|
+
<tbody>
|
474
|
+
<tr>
|
475
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
476
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
477
|
+
</td>
|
478
|
+
</tr>
|
479
|
+
<tr>
|
480
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
481
|
+
<td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the new row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
482
|
+
</td>
|
483
|
+
</tr>
|
484
|
+
<tr>
|
485
|
+
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
|
486
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
487
|
+
</td>
|
488
|
+
</tr>
|
489
|
+
<tr>
|
490
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
491
|
+
<td>position to insert the new row</td>
|
492
|
+
</tr>
|
493
|
+
</tbody>
|
494
|
+
</table></div>
|
495
|
+
</div>
|
496
|
+
<hr>
|
497
|
+
<div class="refsect2">
|
498
|
+
<a name="gtk-tree-store-insert-before"></a><h3>gtk_tree_store_insert_before ()</h3>
|
499
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_insert_before (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
500
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
501
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
502
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sibling</code></em>);</pre>
|
503
|
+
<p>
|
504
|
+
Inserts a new row before <em class="parameter"><code>sibling</code></em>. If <em class="parameter"><code>sibling</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the row will
|
505
|
+
be appended to <em class="parameter"><code>parent</code></em> 's children. If <em class="parameter"><code>parent</code></em> and <em class="parameter"><code>sibling</code></em> are <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then
|
506
|
+
the row will be appended to the toplevel. If both <em class="parameter"><code>sibling</code></em> and <em class="parameter"><code>parent</code></em> are
|
507
|
+
set, then <em class="parameter"><code>parent</code></em> must be the parent of <em class="parameter"><code>sibling</code></em>. When <em class="parameter"><code>sibling</code></em> is set,
|
508
|
+
<em class="parameter"><code>parent</code></em> is optional.
|
509
|
+
</p>
|
510
|
+
<p>
|
511
|
+
<em class="parameter"><code>iter</code></em> will be changed to point to this new row. The row will be empty after
|
512
|
+
this function is called. To fill in values, you need to call
|
513
|
+
<a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree_store_set ()"><code class="function">gtk_tree_store_set()</code></a> or <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-value" title="gtk_tree_store_set_value ()"><code class="function">gtk_tree_store_set_value()</code></a>.
|
514
|
+
</p>
|
515
|
+
<div class="variablelist"><table border="0">
|
516
|
+
<col align="left" valign="top">
|
517
|
+
<tbody>
|
518
|
+
<tr>
|
519
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
520
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
521
|
+
</td>
|
522
|
+
</tr>
|
523
|
+
<tr>
|
524
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
525
|
+
<td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the new row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
526
|
+
</td>
|
527
|
+
</tr>
|
528
|
+
<tr>
|
529
|
+
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
|
530
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
531
|
+
</td>
|
532
|
+
</tr>
|
533
|
+
<tr>
|
534
|
+
<td><p><span class="term"><em class="parameter"><code>sibling</code></em> :</span></p></td>
|
535
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
536
|
+
</td>
|
537
|
+
</tr>
|
538
|
+
</tbody>
|
539
|
+
</table></div>
|
540
|
+
</div>
|
541
|
+
<hr>
|
542
|
+
<div class="refsect2">
|
543
|
+
<a name="gtk-tree-store-insert-after"></a><h3>gtk_tree_store_insert_after ()</h3>
|
544
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_insert_after (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
545
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
546
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
547
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *sibling</code></em>);</pre>
|
548
|
+
<p>
|
549
|
+
Inserts a new row after <em class="parameter"><code>sibling</code></em>. If <em class="parameter"><code>sibling</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the row will be
|
550
|
+
prepended to <em class="parameter"><code>parent</code></em> 's children. If <em class="parameter"><code>parent</code></em> and <em class="parameter"><code>sibling</code></em> are <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then
|
551
|
+
the row will be prepended to the toplevel. If both <em class="parameter"><code>sibling</code></em> and <em class="parameter"><code>parent</code></em> are
|
552
|
+
set, then <em class="parameter"><code>parent</code></em> must be the parent of <em class="parameter"><code>sibling</code></em>. When <em class="parameter"><code>sibling</code></em> is set,
|
553
|
+
<em class="parameter"><code>parent</code></em> is optional.
|
554
|
+
</p>
|
555
|
+
<p>
|
556
|
+
<em class="parameter"><code>iter</code></em> will be changed to point to this new row. The row will be empty after
|
557
|
+
this function is called. To fill in values, you need to call
|
558
|
+
<a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree_store_set ()"><code class="function">gtk_tree_store_set()</code></a> or <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-value" title="gtk_tree_store_set_value ()"><code class="function">gtk_tree_store_set_value()</code></a>.
|
559
|
+
</p>
|
560
|
+
<div class="variablelist"><table border="0">
|
561
|
+
<col align="left" valign="top">
|
562
|
+
<tbody>
|
563
|
+
<tr>
|
564
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
565
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
566
|
+
</td>
|
567
|
+
</tr>
|
568
|
+
<tr>
|
569
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
570
|
+
<td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the new row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
571
|
+
</td>
|
572
|
+
</tr>
|
573
|
+
<tr>
|
574
|
+
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
|
575
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
576
|
+
</td>
|
577
|
+
</tr>
|
578
|
+
<tr>
|
579
|
+
<td><p><span class="term"><em class="parameter"><code>sibling</code></em> :</span></p></td>
|
580
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
581
|
+
</td>
|
582
|
+
</tr>
|
583
|
+
</tbody>
|
584
|
+
</table></div>
|
585
|
+
</div>
|
586
|
+
<hr>
|
587
|
+
<div class="refsect2">
|
588
|
+
<a name="gtk-tree-store-insert-with-values"></a><h3>gtk_tree_store_insert_with_values ()</h3>
|
589
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_insert_with_values (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
590
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
591
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
592
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>,
|
593
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
594
|
+
<p>
|
595
|
+
Creates a new row at <em class="parameter"><code>position</code></em>. <em class="parameter"><code>iter</code></em> will be changed to point to this
|
596
|
+
new row. If <em class="parameter"><code>position</code></em> is larger than the number of rows on the list, then
|
597
|
+
the new row will be appended to the list. The row will be filled with
|
598
|
+
the values given to this function.
|
599
|
+
</p>
|
600
|
+
<p>
|
601
|
+
Calling
|
602
|
+
<code class="literal">gtk_tree_store_insert_with_values (tree_store, iter, position, ...)</code>
|
603
|
+
has the same effect as calling
|
604
|
+
</p>
|
605
|
+
<div class="informalexample">
|
606
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
607
|
+
<tbody>
|
608
|
+
<tr>
|
609
|
+
<td class="listing_lines" align="right"><pre>1
|
610
|
+
2</pre></td>
|
611
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="GtkTreeStore.html#gtk-tree-store-insert">gtk_tree_store_insert</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">tree_store</span><span class="symbol">,</span><span class="normal"> iter</span><span class="symbol">,</span><span class="normal"> position</span><span class="symbol">);</span>
|
612
|
+
<span class="function"><a href="GtkTreeStore.html#gtk-tree-store-set">gtk_tree_store_set</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">tree_store</span><span class="symbol">,</span><span class="normal"> iter</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">...);</span></pre></td>
|
613
|
+
</tr>
|
614
|
+
</tbody>
|
615
|
+
</table>
|
616
|
+
</div>
|
617
|
+
|
618
|
+
<p>
|
619
|
+
with the different that the former will only emit a row_inserted signal,
|
620
|
+
while the latter will emit row_inserted, row_changed and if the tree store
|
621
|
+
is sorted, rows_reordered. Since emitting the rows_reordered signal
|
622
|
+
repeatedly can affect the performance of the program,
|
623
|
+
<a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-with-values" title="gtk_tree_store_insert_with_values ()"><code class="function">gtk_tree_store_insert_with_values()</code></a> should generally be preferred when
|
624
|
+
inserting rows in a sorted tree store.
|
625
|
+
</p>
|
626
|
+
<div class="variablelist"><table border="0">
|
627
|
+
<col align="left" valign="top">
|
628
|
+
<tbody>
|
629
|
+
<tr>
|
630
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
631
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
632
|
+
</td>
|
633
|
+
</tr>
|
634
|
+
<tr>
|
635
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
636
|
+
<td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set the new row, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
637
|
+
</td>
|
638
|
+
</tr>
|
639
|
+
<tr>
|
640
|
+
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
|
641
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
642
|
+
</td>
|
643
|
+
</tr>
|
644
|
+
<tr>
|
645
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
646
|
+
<td>position to insert the new row</td>
|
647
|
+
</tr>
|
648
|
+
</tbody>
|
649
|
+
</table></div>
|
650
|
+
<p class="since">Since 2.10</p>
|
651
|
+
</div>
|
652
|
+
<hr>
|
653
|
+
<div class="refsect2">
|
654
|
+
<a name="gtk-tree-store-insert-with-valuesv"></a><h3>gtk_tree_store_insert_with_valuesv ()</h3>
|
655
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_insert_with_valuesv (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
656
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
657
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
658
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>,
|
659
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *columns</code></em>,
|
660
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *values</code></em>,
|
661
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_values</code></em>);</pre>
|
662
|
+
<p>
|
663
|
+
A variant of <a class="link" href="GtkTreeStore.html#gtk-tree-store-insert-with-values" title="gtk_tree_store_insert_with_values ()"><code class="function">gtk_tree_store_insert_with_values()</code></a> which takes
|
664
|
+
the columns and values as two arrays, instead of varargs. This
|
665
|
+
function is mainly intended for language bindings.
|
666
|
+
</p>
|
667
|
+
<div class="variablelist"><table border="0">
|
668
|
+
<col align="left" valign="top">
|
669
|
+
<tbody>
|
670
|
+
<tr>
|
671
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
672
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
673
|
+
</td>
|
674
|
+
</tr>
|
675
|
+
<tr>
|
676
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
677
|
+
<td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set the new row, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
678
|
+
</td>
|
679
|
+
</tr>
|
680
|
+
<tr>
|
681
|
+
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
|
682
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
683
|
+
</td>
|
684
|
+
</tr>
|
685
|
+
<tr>
|
686
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
687
|
+
<td>position to insert the new row</td>
|
688
|
+
</tr>
|
689
|
+
<tr>
|
690
|
+
<td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
|
691
|
+
<td>an array of column numbers. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values]</span>
|
692
|
+
</td>
|
693
|
+
</tr>
|
694
|
+
<tr>
|
695
|
+
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
696
|
+
<td>an array of GValues. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_values]</span>
|
697
|
+
</td>
|
698
|
+
</tr>
|
699
|
+
<tr>
|
700
|
+
<td><p><span class="term"><em class="parameter"><code>n_values</code></em> :</span></p></td>
|
701
|
+
<td>the length of the <em class="parameter"><code>columns</code></em> and <em class="parameter"><code>values</code></em> arrays</td>
|
702
|
+
</tr>
|
703
|
+
</tbody>
|
704
|
+
</table></div>
|
705
|
+
<p class="since">Since 2.10</p>
|
706
|
+
</div>
|
707
|
+
<hr>
|
708
|
+
<div class="refsect2">
|
709
|
+
<a name="gtk-tree-store-prepend"></a><h3>gtk_tree_store_prepend ()</h3>
|
710
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_prepend (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
711
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
712
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);</pre>
|
713
|
+
<p>
|
714
|
+
Prepends a new row to <em class="parameter"><code>tree_store</code></em>. If <em class="parameter"><code>parent</code></em> is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then it will prepend
|
715
|
+
the new row before the first child of <em class="parameter"><code>parent</code></em>, otherwise it will prepend a row
|
716
|
+
to the top level. <em class="parameter"><code>iter</code></em> will be changed to point to this new row. The row
|
717
|
+
will be empty after this function is called. To fill in values, you need to
|
718
|
+
call <a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree_store_set ()"><code class="function">gtk_tree_store_set()</code></a> or <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-value" title="gtk_tree_store_set_value ()"><code class="function">gtk_tree_store_set_value()</code></a>.
|
719
|
+
</p>
|
720
|
+
<div class="variablelist"><table border="0">
|
721
|
+
<col align="left" valign="top">
|
722
|
+
<tbody>
|
723
|
+
<tr>
|
724
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
725
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
726
|
+
</td>
|
727
|
+
</tr>
|
728
|
+
<tr>
|
729
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
730
|
+
<td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the prepended row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
731
|
+
</td>
|
732
|
+
</tr>
|
733
|
+
<tr>
|
734
|
+
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
|
735
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
736
|
+
</td>
|
737
|
+
</tr>
|
738
|
+
</tbody>
|
739
|
+
</table></div>
|
740
|
+
</div>
|
741
|
+
<hr>
|
742
|
+
<div class="refsect2">
|
743
|
+
<a name="gtk-tree-store-append"></a><h3>gtk_tree_store_append ()</h3>
|
744
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_append (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
745
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
746
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);</pre>
|
747
|
+
<p>
|
748
|
+
Appends a new row to <em class="parameter"><code>tree_store</code></em>. If <em class="parameter"><code>parent</code></em> is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then it will append the
|
749
|
+
new row after the last child of <em class="parameter"><code>parent</code></em>, otherwise it will append a row to
|
750
|
+
the top level. <em class="parameter"><code>iter</code></em> will be changed to point to this new row. The row will
|
751
|
+
be empty after this function is called. To fill in values, you need to call
|
752
|
+
<a class="link" href="GtkTreeStore.html#gtk-tree-store-set" title="gtk_tree_store_set ()"><code class="function">gtk_tree_store_set()</code></a> or <a class="link" href="GtkTreeStore.html#gtk-tree-store-set-value" title="gtk_tree_store_set_value ()"><code class="function">gtk_tree_store_set_value()</code></a>.
|
753
|
+
</p>
|
754
|
+
<div class="variablelist"><table border="0">
|
755
|
+
<col align="left" valign="top">
|
756
|
+
<tbody>
|
757
|
+
<tr>
|
758
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
759
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
760
|
+
</td>
|
761
|
+
</tr>
|
762
|
+
<tr>
|
763
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
764
|
+
<td>An unset <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the appended row. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
765
|
+
</td>
|
766
|
+
</tr>
|
767
|
+
<tr>
|
768
|
+
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
|
769
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
770
|
+
</td>
|
771
|
+
</tr>
|
772
|
+
</tbody>
|
773
|
+
</table></div>
|
774
|
+
</div>
|
775
|
+
<hr>
|
776
|
+
<div class="refsect2">
|
777
|
+
<a name="gtk-tree-store-is-ancestor"></a><h3>gtk_tree_store_is_ancestor ()</h3>
|
778
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_store_is_ancestor (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
779
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
780
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *descendant</code></em>);</pre>
|
781
|
+
<p>
|
782
|
+
Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em> is an ancestor of <em class="parameter"><code>descendant</code></em>. That is, <em class="parameter"><code>iter</code></em> is the
|
783
|
+
parent (or grandparent or great-grandparent) of <em class="parameter"><code>descendant</code></em>.
|
784
|
+
</p>
|
785
|
+
<div class="variablelist"><table border="0">
|
786
|
+
<col align="left" valign="top">
|
787
|
+
<tbody>
|
788
|
+
<tr>
|
789
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
790
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
791
|
+
</td>
|
792
|
+
</tr>
|
793
|
+
<tr>
|
794
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
795
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
|
796
|
+
</td>
|
797
|
+
</tr>
|
798
|
+
<tr>
|
799
|
+
<td><p><span class="term"><em class="parameter"><code>descendant</code></em> :</span></p></td>
|
800
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
|
801
|
+
</td>
|
802
|
+
</tr>
|
803
|
+
<tr>
|
804
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
805
|
+
<td>
|
806
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em> is an ancestor of <em class="parameter"><code>descendant</code></em>
|
807
|
+
</td>
|
808
|
+
</tr>
|
809
|
+
</tbody>
|
810
|
+
</table></div>
|
811
|
+
</div>
|
812
|
+
<hr>
|
813
|
+
<div class="refsect2">
|
814
|
+
<a name="gtk-tree-store-iter-depth"></a><h3>gtk_tree_store_iter_depth ()</h3>
|
815
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_tree_store_iter_depth (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
816
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
817
|
+
<p>
|
818
|
+
Returns the depth of <em class="parameter"><code>iter</code></em>. This will be 0 for anything on the root level, 1
|
819
|
+
for anything down a level, etc.
|
820
|
+
</p>
|
821
|
+
<div class="variablelist"><table border="0">
|
822
|
+
<col align="left" valign="top">
|
823
|
+
<tbody>
|
824
|
+
<tr>
|
825
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
826
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
827
|
+
</td>
|
828
|
+
</tr>
|
829
|
+
<tr>
|
830
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
831
|
+
<td>A valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
|
832
|
+
</td>
|
833
|
+
</tr>
|
834
|
+
<tr>
|
835
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
836
|
+
<td>The depth of <em class="parameter"><code>iter</code></em>
|
837
|
+
</td>
|
838
|
+
</tr>
|
839
|
+
</tbody>
|
840
|
+
</table></div>
|
841
|
+
</div>
|
842
|
+
<hr>
|
843
|
+
<div class="refsect2">
|
844
|
+
<a name="gtk-tree-store-clear"></a><h3>gtk_tree_store_clear ()</h3>
|
845
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_clear (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>);</pre>
|
846
|
+
<p>
|
847
|
+
Removes all rows from <em class="parameter"><code>tree_store</code></em>
|
848
|
+
</p>
|
849
|
+
<div class="variablelist"><table border="0">
|
850
|
+
<col align="left" valign="top">
|
851
|
+
<tbody><tr>
|
852
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
853
|
+
<td>a <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
854
|
+
</td>
|
855
|
+
</tr></tbody>
|
856
|
+
</table></div>
|
857
|
+
</div>
|
858
|
+
<hr>
|
859
|
+
<div class="refsect2">
|
860
|
+
<a name="gtk-tree-store-iter-is-valid"></a><h3>gtk_tree_store_iter_is_valid ()</h3>
|
861
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_tree_store_iter_is_valid (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
862
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
|
863
|
+
<p>
|
864
|
+
WARNING: This function is slow. Only use it for debugging and/or testing
|
865
|
+
purposes.
|
866
|
+
</p>
|
867
|
+
<p>
|
868
|
+
Checks if the given iter is a valid iter for this <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.
|
869
|
+
</p>
|
870
|
+
<div class="variablelist"><table border="0">
|
871
|
+
<col align="left" valign="top">
|
872
|
+
<tbody>
|
873
|
+
<tr>
|
874
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
875
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
|
876
|
+
</tr>
|
877
|
+
<tr>
|
878
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
879
|
+
<td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
|
880
|
+
</tr>
|
881
|
+
<tr>
|
882
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
883
|
+
<td>
|
884
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the iter is valid, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the iter is invalid.</td>
|
885
|
+
</tr>
|
886
|
+
</tbody>
|
887
|
+
</table></div>
|
888
|
+
<p class="since">Since 2.2</p>
|
889
|
+
</div>
|
890
|
+
<hr>
|
891
|
+
<div class="refsect2">
|
892
|
+
<a name="gtk-tree-store-reorder"></a><h3>gtk_tree_store_reorder ()</h3>
|
893
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_reorder (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
894
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
|
895
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *new_order</code></em>);</pre>
|
896
|
+
<p>
|
897
|
+
Reorders the children of <em class="parameter"><code>parent</code></em> in <em class="parameter"><code>tree_store</code></em> to follow the order
|
898
|
+
indicated by <em class="parameter"><code>new_order</code></em>. Note that this function only works with
|
899
|
+
unsorted stores.
|
900
|
+
</p>
|
901
|
+
<div class="variablelist"><table border="0">
|
902
|
+
<col align="left" valign="top">
|
903
|
+
<tbody>
|
904
|
+
<tr>
|
905
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
906
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
|
907
|
+
</tr>
|
908
|
+
<tr>
|
909
|
+
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
|
910
|
+
<td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
|
911
|
+
</tr>
|
912
|
+
<tr>
|
913
|
+
<td><p><span class="term"><em class="parameter"><code>new_order</code></em> :</span></p></td>
|
914
|
+
<td>an array of integers mapping the new position of each child
|
915
|
+
to its old position before the re-ordering,
|
916
|
+
i.e. <em class="parameter"><code>new_order</code></em><code class="literal">[newpos] = oldpos</code>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>]</span>
|
917
|
+
</td>
|
918
|
+
</tr>
|
919
|
+
</tbody>
|
920
|
+
</table></div>
|
921
|
+
<p class="since">Since 2.2</p>
|
922
|
+
</div>
|
923
|
+
<hr>
|
924
|
+
<div class="refsect2">
|
925
|
+
<a name="gtk-tree-store-swap"></a><h3>gtk_tree_store_swap ()</h3>
|
926
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_swap (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
927
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *a</code></em>,
|
928
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *b</code></em>);</pre>
|
929
|
+
<p>
|
930
|
+
Swaps <em class="parameter"><code>a</code></em> and <em class="parameter"><code>b</code></em> in the same level of <em class="parameter"><code>tree_store</code></em>. Note that this function
|
931
|
+
only works with unsorted stores.
|
932
|
+
</p>
|
933
|
+
<div class="variablelist"><table border="0">
|
934
|
+
<col align="left" valign="top">
|
935
|
+
<tbody>
|
936
|
+
<tr>
|
937
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
938
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
|
939
|
+
</tr>
|
940
|
+
<tr>
|
941
|
+
<td><p><span class="term"><em class="parameter"><code>a</code></em> :</span></p></td>
|
942
|
+
<td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
|
943
|
+
</tr>
|
944
|
+
<tr>
|
945
|
+
<td><p><span class="term"><em class="parameter"><code>b</code></em> :</span></p></td>
|
946
|
+
<td>Another <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
|
947
|
+
</tr>
|
948
|
+
</tbody>
|
949
|
+
</table></div>
|
950
|
+
<p class="since">Since 2.2</p>
|
951
|
+
</div>
|
952
|
+
<hr>
|
953
|
+
<div class="refsect2">
|
954
|
+
<a name="gtk-tree-store-move-before"></a><h3>gtk_tree_store_move_before ()</h3>
|
955
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_move_before (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
956
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
957
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *position</code></em>);</pre>
|
958
|
+
<p>
|
959
|
+
Moves <em class="parameter"><code>iter</code></em> in <em class="parameter"><code>tree_store</code></em> to the position before <em class="parameter"><code>position</code></em>. <em class="parameter"><code>iter</code></em> and
|
960
|
+
<em class="parameter"><code>position</code></em> should be in the same level. Note that this function only
|
961
|
+
works with unsorted stores. If <em class="parameter"><code>position</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, <em class="parameter"><code>iter</code></em> will be
|
962
|
+
moved to the end of the level.
|
963
|
+
</p>
|
964
|
+
<div class="variablelist"><table border="0">
|
965
|
+
<col align="left" valign="top">
|
966
|
+
<tbody>
|
967
|
+
<tr>
|
968
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
969
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
|
970
|
+
</tr>
|
971
|
+
<tr>
|
972
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
973
|
+
<td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
|
974
|
+
</tr>
|
975
|
+
<tr>
|
976
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
977
|
+
<td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
978
|
+
</td>
|
979
|
+
</tr>
|
980
|
+
</tbody>
|
981
|
+
</table></div>
|
982
|
+
<p class="since">Since 2.2</p>
|
983
|
+
</div>
|
984
|
+
<hr>
|
985
|
+
<div class="refsect2">
|
986
|
+
<a name="gtk-tree-store-move-after"></a><h3>gtk_tree_store_move_after ()</h3>
|
987
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_store_move_after (<em class="parameter"><code><a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> *tree_store</code></em>,
|
988
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
989
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *position</code></em>);</pre>
|
990
|
+
<p>
|
991
|
+
Moves <em class="parameter"><code>iter</code></em> in <em class="parameter"><code>tree_store</code></em> to the position after <em class="parameter"><code>position</code></em>. <em class="parameter"><code>iter</code></em> and
|
992
|
+
<em class="parameter"><code>position</code></em> should be in the same level. Note that this function only
|
993
|
+
works with unsorted stores. If <em class="parameter"><code>position</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, <em class="parameter"><code>iter</code></em> will be moved
|
994
|
+
to the start of the level.
|
995
|
+
</p>
|
996
|
+
<div class="variablelist"><table border="0">
|
997
|
+
<col align="left" valign="top">
|
998
|
+
<tbody>
|
999
|
+
<tr>
|
1000
|
+
<td><p><span class="term"><em class="parameter"><code>tree_store</code></em> :</span></p></td>
|
1001
|
+
<td>A <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>.</td>
|
1002
|
+
</tr>
|
1003
|
+
<tr>
|
1004
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1005
|
+
<td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.</td>
|
1006
|
+
</tr>
|
1007
|
+
<tr>
|
1008
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
1009
|
+
<td>A <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1010
|
+
</td>
|
1011
|
+
</tr>
|
1012
|
+
</tbody>
|
1013
|
+
</table></div>
|
1014
|
+
<p class="since">Since 2.2</p>
|
1015
|
+
</div>
|
1016
|
+
</div>
|
1017
|
+
<div class="refsect1">
|
1018
|
+
<a name="GtkTreeStore.see-also"></a><h2>See Also</h2>
|
1019
|
+
<p>
|
1020
|
+
<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>
|
1021
|
+
</p>
|
1022
|
+
</div>
|
1023
|
+
</div>
|
1024
|
+
<div class="footer">
|
1025
|
+
<hr>
|
1026
|
+
Generated by GTK-Doc V1.18</div>
|
1027
|
+
</body>
|
1028
|
+
</html>
|