gtk2 2.2.4-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README +33 -0
- data/Rakefile +62 -0
- data/ext/gtk2/depend +14 -0
- data/ext/gtk2/extconf.rb +129 -0
- data/ext/gtk2/global.h +295 -0
- data/ext/gtk2/gtk2.def +29 -0
- data/ext/gtk2/init.c +284 -0
- data/ext/gtk2/rbgdk.c +505 -0
- data/ext/gtk2/rbgdk.h +79 -0
- data/ext/gtk2/rbgdkatom.c +124 -0
- data/ext/gtk2/rbgdkcairo.c +89 -0
- data/ext/gtk2/rbgdkcolor.c +146 -0
- data/ext/gtk2/rbgdkcolormap.c +135 -0
- data/ext/gtk2/rbgdkconst.c +39 -0
- data/ext/gtk2/rbgdkconversions.h +31 -0
- data/ext/gtk2/rbgdkcursor.c +102 -0
- data/ext/gtk2/rbgdkdevice.c +229 -0
- data/ext/gtk2/rbgdkdisplay.c +553 -0
- data/ext/gtk2/rbgdkdisplaymanager.c +54 -0
- data/ext/gtk2/rbgdkdragcontext.c +291 -0
- data/ext/gtk2/rbgdkdraw.c +522 -0
- data/ext/gtk2/rbgdkevent.c +1291 -0
- data/ext/gtk2/rbgdkgc.c +423 -0
- data/ext/gtk2/rbgdkgeometry.c +256 -0
- data/ext/gtk2/rbgdkimage.c +152 -0
- data/ext/gtk2/rbgdkinput.c +72 -0
- data/ext/gtk2/rbgdkkeymap.c +155 -0
- data/ext/gtk2/rbgdkkeyval.c +108 -0
- data/ext/gtk2/rbgdkpango.c +183 -0
- data/ext/gtk2/rbgdkpangorenderer.c +143 -0
- data/ext/gtk2/rbgdkpixbuf.c +171 -0
- data/ext/gtk2/rbgdkpixmap.c +236 -0
- data/ext/gtk2/rbgdkproperty.c +288 -0
- data/ext/gtk2/rbgdkrectangle.c +142 -0
- data/ext/gtk2/rbgdkregion.c +289 -0
- data/ext/gtk2/rbgdkrgb.c +198 -0
- data/ext/gtk2/rbgdkscreen.c +422 -0
- data/ext/gtk2/rbgdkselection.c +147 -0
- data/ext/gtk2/rbgdkthreads.c +77 -0
- data/ext/gtk2/rbgdktimecoord.c +135 -0
- data/ext/gtk2/rbgdkvisual.c +252 -0
- data/ext/gtk2/rbgdkwindow.c +1113 -0
- data/ext/gtk2/rbgdkwindowattr.c +208 -0
- data/ext/gtk2/rbgdkx11.c +257 -0
- data/ext/gtk2/rbgtk.c +594 -0
- data/ext/gtk2/rbgtk.h +132 -0
- data/ext/gtk2/rbgtkaboutdialog.c +136 -0
- data/ext/gtk2/rbgtkaccelerator.c +81 -0
- data/ext/gtk2/rbgtkaccelgroup.c +200 -0
- data/ext/gtk2/rbgtkaccelgroupentry.c +94 -0
- data/ext/gtk2/rbgtkaccelkey.c +122 -0
- data/ext/gtk2/rbgtkaccellabel.c +55 -0
- data/ext/gtk2/rbgtkaccelmap.c +144 -0
- data/ext/gtk2/rbgtkaccessible.c +39 -0
- data/ext/gtk2/rbgtkaction.c +223 -0
- data/ext/gtk2/rbgtkactiongroup.c +468 -0
- data/ext/gtk2/rbgtkadjustment.c +72 -0
- data/ext/gtk2/rbgtkalignment.c +75 -0
- data/ext/gtk2/rbgtkallocation.c +168 -0
- data/ext/gtk2/rbgtkarrow.c +57 -0
- data/ext/gtk2/rbgtkaspectframe.c +56 -0
- data/ext/gtk2/rbgtkassistant.c +220 -0
- data/ext/gtk2/rbgtkbbox.c +53 -0
- data/ext/gtk2/rbgtkbin.c +42 -0
- data/ext/gtk2/rbgtkbindingset.c +189 -0
- data/ext/gtk2/rbgtkborder.c +87 -0
- data/ext/gtk2/rbgtkbox.c +138 -0
- data/ext/gtk2/rbgtkbuildable.c +127 -0
- data/ext/gtk2/rbgtkbuilder.c +170 -0
- data/ext/gtk2/rbgtkbutton.c +115 -0
- data/ext/gtk2/rbgtkcalendar.c +149 -0
- data/ext/gtk2/rbgtkcelleditable.c +57 -0
- data/ext/gtk2/rbgtkcelllayout.c +137 -0
- data/ext/gtk2/rbgtkcellrenderer.c +131 -0
- data/ext/gtk2/rbgtkcellrendereraccel.c +43 -0
- data/ext/gtk2/rbgtkcellrenderercombo.c +38 -0
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +39 -0
- data/ext/gtk2/rbgtkcellrendererprogress.c +38 -0
- data/ext/gtk2/rbgtkcellrendererspin.c +39 -0
- data/ext/gtk2/rbgtkcellrendererspinner.c +44 -0
- data/ext/gtk2/rbgtkcellrenderertext.c +49 -0
- data/ext/gtk2/rbgtkcellrenderertoggle.c +39 -0
- data/ext/gtk2/rbgtkcellview.c +117 -0
- data/ext/gtk2/rbgtkcheckbutton.c +64 -0
- data/ext/gtk2/rbgtkcheckmenuitem.c +64 -0
- data/ext/gtk2/rbgtkclipboard.c +425 -0
- data/ext/gtk2/rbgtkcolorbutton.c +49 -0
- data/ext/gtk2/rbgtkcolorsel.c +211 -0
- data/ext/gtk2/rbgtkcolorselectiondialog.c +50 -0
- data/ext/gtk2/rbgtkcombo.c +119 -0
- data/ext/gtk2/rbgtkcombobox.c +151 -0
- data/ext/gtk2/rbgtkcomboboxentry.c +56 -0
- data/ext/gtk2/rbgtkconst.c +179 -0
- data/ext/gtk2/rbgtkcontainer.c +783 -0
- data/ext/gtk2/rbgtkconversions.h +39 -0
- data/ext/gtk2/rbgtkcurve.c +111 -0
- data/ext/gtk2/rbgtkdialog.c +268 -0
- data/ext/gtk2/rbgtkdrag.c +427 -0
- data/ext/gtk2/rbgtkdrawingarea.c +42 -0
- data/ext/gtk2/rbgtkeditable.c +151 -0
- data/ext/gtk2/rbgtkentry.c +113 -0
- data/ext/gtk2/rbgtkentrycompletion.c +128 -0
- data/ext/gtk2/rbgtkeventbox.c +42 -0
- data/ext/gtk2/rbgtkexpander.c +49 -0
- data/ext/gtk2/rbgtkfilechooser.c +311 -0
- data/ext/gtk2/rbgtkfilechooserbutton.c +57 -0
- data/ext/gtk2/rbgtkfilechooserdialog.c +59 -0
- data/ext/gtk2/rbgtkfilechooserwidget.c +52 -0
- data/ext/gtk2/rbgtkfilefilter.c +131 -0
- data/ext/gtk2/rbgtkfilesel.c +150 -0
- data/ext/gtk2/rbgtkfilesystemerror.c +49 -0
- data/ext/gtk2/rbgtkfixed.c +78 -0
- data/ext/gtk2/rbgtkfontbutton.c +49 -0
- data/ext/gtk2/rbgtkfontselection.c +41 -0
- data/ext/gtk2/rbgtkfontselectiondialog.c +106 -0
- data/ext/gtk2/rbgtkframe.c +69 -0
- data/ext/gtk2/rbgtkgamma.c +56 -0
- data/ext/gtk2/rbgtkhandlebox.c +45 -0
- data/ext/gtk2/rbgtkhbbox.c +42 -0
- data/ext/gtk2/rbgtkhbox.c +47 -0
- data/ext/gtk2/rbgtkhpaned.c +42 -0
- data/ext/gtk2/rbgtkhruler.c +42 -0
- data/ext/gtk2/rbgtkhscale.c +54 -0
- data/ext/gtk2/rbgtkhscrollbar.c +47 -0
- data/ext/gtk2/rbgtkhseparator.c +41 -0
- data/ext/gtk2/rbgtkiconfactory.c +86 -0
- data/ext/gtk2/rbgtkiconinfo.c +117 -0
- data/ext/gtk2/rbgtkiconset.c +91 -0
- data/ext/gtk2/rbgtkiconsize.c +93 -0
- data/ext/gtk2/rbgtkiconsource.c +171 -0
- data/ext/gtk2/rbgtkicontheme.c +273 -0
- data/ext/gtk2/rbgtkiconview.c +270 -0
- data/ext/gtk2/rbgtkimage.c +128 -0
- data/ext/gtk2/rbgtkimagemenuitem.c +61 -0
- data/ext/gtk2/rbgtkimcontext.c +135 -0
- data/ext/gtk2/rbgtkimcontextsimple.c +69 -0
- data/ext/gtk2/rbgtkimmulticontext.c +48 -0
- data/ext/gtk2/rbgtkinfobar.c +127 -0
- data/ext/gtk2/rbgtkinputdialog.c +41 -0
- data/ext/gtk2/rbgtkinvisible.c +49 -0
- data/ext/gtk2/rbgtkitem.c +60 -0
- data/ext/gtk2/rbgtkitemfactory.c +299 -0
- data/ext/gtk2/rbgtklabel.c +139 -0
- data/ext/gtk2/rbgtklayout.c +94 -0
- data/ext/gtk2/rbgtklinkbutton.c +65 -0
- data/ext/gtk2/rbgtkliststore.c +411 -0
- data/ext/gtk2/rbgtkmacros.h +39 -0
- data/ext/gtk2/rbgtkmenu.c +171 -0
- data/ext/gtk2/rbgtkmenubar.c +45 -0
- data/ext/gtk2/rbgtkmenuitem.c +111 -0
- data/ext/gtk2/rbgtkmenushell.c +108 -0
- data/ext/gtk2/rbgtkmenutoolbutton.c +74 -0
- data/ext/gtk2/rbgtkmessagedialog.c +89 -0
- data/ext/gtk2/rbgtkmisc.c +70 -0
- data/ext/gtk2/rbgtknotebook.c +412 -0
- data/ext/gtk2/rbgtkobject.c +144 -0
- data/ext/gtk2/rbgtkoptionmenu.c +72 -0
- data/ext/gtk2/rbgtkpagesetup.c +201 -0
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +87 -0
- data/ext/gtk2/rbgtkpaned.c +114 -0
- data/ext/gtk2/rbgtkpapersize.c +186 -0
- data/ext/gtk2/rbgtkplug.c +91 -0
- data/ext/gtk2/rbgtkprintcontext.c +127 -0
- data/ext/gtk2/rbgtkprinter.c +154 -0
- data/ext/gtk2/rbgtkprintjob.c +149 -0
- data/ext/gtk2/rbgtkprintoperation.c +156 -0
- data/ext/gtk2/rbgtkprintoperationpreview.c +61 -0
- data/ext/gtk2/rbgtkprintsettings.c +842 -0
- data/ext/gtk2/rbgtkprintunixdialog.c +86 -0
- data/ext/gtk2/rbgtkprogress.c +31 -0
- data/ext/gtk2/rbgtkprogressbar.c +71 -0
- data/ext/gtk2/rbgtkradioaction.c +120 -0
- data/ext/gtk2/rbgtkradiobutton.c +90 -0
- data/ext/gtk2/rbgtkradiomenuitem.c +148 -0
- data/ext/gtk2/rbgtkradiotoolbutton.c +132 -0
- data/ext/gtk2/rbgtkrange.c +71 -0
- data/ext/gtk2/rbgtkrc.c +217 -0
- data/ext/gtk2/rbgtkrcstyle.c +182 -0
- data/ext/gtk2/rbgtkrecentaction.c +60 -0
- data/ext/gtk2/rbgtkrecentchooser.c +216 -0
- data/ext/gtk2/rbgtkrecentchooserdialog.c +62 -0
- data/ext/gtk2/rbgtkrecentchoosermenu.c +50 -0
- data/ext/gtk2/rbgtkrecentchooserwidget.c +48 -0
- data/ext/gtk2/rbgtkrecentdata.c +144 -0
- data/ext/gtk2/rbgtkrecentfilter.c +170 -0
- data/ext/gtk2/rbgtkrecentfilterinfo.c +181 -0
- data/ext/gtk2/rbgtkrecentinfo.c +216 -0
- data/ext/gtk2/rbgtkrecentmanager.c +149 -0
- data/ext/gtk2/rbgtkruler.c +71 -0
- data/ext/gtk2/rbgtkscale.c +50 -0
- data/ext/gtk2/rbgtkscalebutton.c +75 -0
- data/ext/gtk2/rbgtkscrollbar.c +31 -0
- data/ext/gtk2/rbgtkscrolledwindow.c +124 -0
- data/ext/gtk2/rbgtkselection.c +171 -0
- data/ext/gtk2/rbgtkselectiondata.c +284 -0
- data/ext/gtk2/rbgtkseparator.c +31 -0
- data/ext/gtk2/rbgtkseparatormenuitem.c +39 -0
- data/ext/gtk2/rbgtkseparatortoolitem.c +38 -0
- data/ext/gtk2/rbgtksettings.c +229 -0
- data/ext/gtk2/rbgtksizegroup.c +68 -0
- data/ext/gtk2/rbgtksocket.c +80 -0
- data/ext/gtk2/rbgtkspinbutton.c +137 -0
- data/ext/gtk2/rbgtkspinner.c +61 -0
- data/ext/gtk2/rbgtkstatusbar.c +77 -0
- data/ext/gtk2/rbgtkstatusicon.c +90 -0
- data/ext/gtk2/rbgtkstock.c +230 -0
- data/ext/gtk2/rbgtkstyle.c +642 -0
- data/ext/gtk2/rbgtktable.c +177 -0
- data/ext/gtk2/rbgtktargetlist.c +125 -0
- data/ext/gtk2/rbgtktearoffmenuitem.c +41 -0
- data/ext/gtk2/rbgtktextappearance.c +172 -0
- data/ext/gtk2/rbgtktextattributes.c +203 -0
- data/ext/gtk2/rbgtktextbuffer.c +886 -0
- data/ext/gtk2/rbgtktextchild.c +55 -0
- data/ext/gtk2/rbgtktextiter.c +506 -0
- data/ext/gtk2/rbgtktextmark.c +76 -0
- data/ext/gtk2/rbgtktexttag.c +71 -0
- data/ext/gtk2/rbgtktexttagtable.c +97 -0
- data/ext/gtk2/rbgtktextview.c +326 -0
- data/ext/gtk2/rbgtktoggleaction.c +59 -0
- data/ext/gtk2/rbgtktogglebutton.c +88 -0
- data/ext/gtk2/rbgtktoggletoolbutton.c +54 -0
- data/ext/gtk2/rbgtktoolbar.c +315 -0
- data/ext/gtk2/rbgtktoolbutton.c +53 -0
- data/ext/gtk2/rbgtktoolitem.c +157 -0
- data/ext/gtk2/rbgtktooltip.c +82 -0
- data/ext/gtk2/rbgtktooltips.c +104 -0
- data/ext/gtk2/rbgtktreedragdest.c +28 -0
- data/ext/gtk2/rbgtktreedragsource.c +28 -0
- data/ext/gtk2/rbgtktreeiter.c +251 -0
- data/ext/gtk2/rbgtktreemodel.c +282 -0
- data/ext/gtk2/rbgtktreemodelfilter.c +198 -0
- data/ext/gtk2/rbgtktreemodelsort.c +112 -0
- data/ext/gtk2/rbgtktreepath.c +191 -0
- data/ext/gtk2/rbgtktreerowreference.c +171 -0
- data/ext/gtk2/rbgtktreeselection.c +213 -0
- data/ext/gtk2/rbgtktreesortable.c +123 -0
- data/ext/gtk2/rbgtktreestore.c +362 -0
- data/ext/gtk2/rbgtktreeview.c +746 -0
- data/ext/gtk2/rbgtktreeviewcolumn.c +289 -0
- data/ext/gtk2/rbgtkuimanager.c +189 -0
- data/ext/gtk2/rbgtkvbbox.c +42 -0
- data/ext/gtk2/rbgtkvbox.c +47 -0
- data/ext/gtk2/rbgtkviewport.c +44 -0
- data/ext/gtk2/rbgtkvolumebutton.c +47 -0
- data/ext/gtk2/rbgtkvpaned.c +42 -0
- data/ext/gtk2/rbgtkvruler.c +41 -0
- data/ext/gtk2/rbgtkvscale.c +54 -0
- data/ext/gtk2/rbgtkvscrollbar.c +47 -0
- data/ext/gtk2/rbgtkvseparator.c +41 -0
- data/ext/gtk2/rbgtkwidget.c +1223 -0
- data/ext/gtk2/rbgtkwindow.c +588 -0
- data/ext/gtk2/rbgtkwindowgroup.c +56 -0
- data/extconf.rb +49 -0
- data/lib/2.0/gtk2.so +0 -0
- data/lib/2.1/gtk2.so +0 -0
- data/lib/2.2/gtk2.so +0 -0
- data/lib/gtk2.rb +13 -0
- data/lib/gtk2/base.rb +105 -0
- data/sample/gtk-demo/README +7 -0
- data/sample/gtk-demo/alphatest.png +0 -0
- data/sample/gtk-demo/apple-red.png +0 -0
- data/sample/gtk-demo/appwindow.rb +233 -0
- data/sample/gtk-demo/background.jpg +0 -0
- data/sample/gtk-demo/builder.rb +51 -0
- data/sample/gtk-demo/button_box.rb +84 -0
- data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
- data/sample/gtk-demo/cairo-arc.rb +41 -0
- data/sample/gtk-demo/cairo-clip-image.rb +51 -0
- data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
- data/sample/gtk-demo/cairo-clip.rb +35 -0
- data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
- data/sample/gtk-demo/cairo-curve-to.rb +43 -0
- data/sample/gtk-demo/cairo-dash.rb +39 -0
- data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
- data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
- data/sample/gtk-demo/cairo-gradient.rb +35 -0
- data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
- data/sample/gtk-demo/cairo-image.rb +49 -0
- data/sample/gtk-demo/cairo-line-cap.rb +53 -0
- data/sample/gtk-demo/cairo-line-join.rb +41 -0
- data/sample/gtk-demo/cairo-long-lines.rb +41 -0
- data/sample/gtk-demo/cairo-operator.rb +83 -0
- data/sample/gtk-demo/cairo-path.rb +28 -0
- data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
- data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
- data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
- data/sample/gtk-demo/cairo-text-extents.rb +46 -0
- data/sample/gtk-demo/cairo-text.rb +43 -0
- data/sample/gtk-demo/changedisplay.rb +408 -0
- data/sample/gtk-demo/clipboard.rb +72 -0
- data/sample/gtk-demo/colorsel.rb +84 -0
- data/sample/gtk-demo/common.rb +93 -0
- data/sample/gtk-demo/demo.ui +258 -0
- data/sample/gtk-demo/dialog.rb +137 -0
- data/sample/gtk-demo/drawingarea.rb +226 -0
- data/sample/gtk-demo/editable_cells.rb +172 -0
- data/sample/gtk-demo/entry_completion.rb +63 -0
- data/sample/gtk-demo/expander.rb +40 -0
- data/sample/gtk-demo/floppybuddy.gif +0 -0
- data/sample/gtk-demo/gnome-applets.png +0 -0
- data/sample/gtk-demo/gnome-calendar.png +0 -0
- data/sample/gtk-demo/gnome-foot.png +0 -0
- data/sample/gtk-demo/gnome-fs-directory.png +0 -0
- data/sample/gtk-demo/gnome-fs-regular.png +0 -0
- data/sample/gtk-demo/gnome-gimp.png +0 -0
- data/sample/gtk-demo/gnome-gmush.png +0 -0
- data/sample/gtk-demo/gnome-gsame.png +0 -0
- data/sample/gtk-demo/gnu-keys.png +0 -0
- data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
- data/sample/gtk-demo/hypertext.rb +211 -0
- data/sample/gtk-demo/iconview.rb +109 -0
- data/sample/gtk-demo/images.rb +197 -0
- data/sample/gtk-demo/item_factory.rb +94 -0
- data/sample/gtk-demo/list_store.rb +138 -0
- data/sample/gtk-demo/main.rb +386 -0
- data/sample/gtk-demo/menus.rb +172 -0
- data/sample/gtk-demo/panes.rb +156 -0
- data/sample/gtk-demo/pixbufs.rb +176 -0
- data/sample/gtk-demo/printing.rb +128 -0
- data/sample/gtk-demo/rotated_text.rb +84 -0
- data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
- data/sample/gtk-demo/sizegroup.rb +118 -0
- data/sample/gtk-demo/stock_browser.rb +235 -0
- data/sample/gtk-demo/textview.rb +436 -0
- data/sample/gtk-demo/tree_store.rb +270 -0
- data/sample/misc/aboutdialog.rb +42 -0
- data/sample/misc/aboutdialog2.rb +42 -0
- data/sample/misc/alpha-demo.rb +70 -0
- data/sample/misc/assistant.rb +347 -0
- data/sample/misc/bindings.rb +107 -0
- data/sample/misc/button.rb +69 -0
- data/sample/misc/button2.rb +28 -0
- data/sample/misc/buttonbox.rb +93 -0
- data/sample/misc/cairo-pong.rb +215 -0
- data/sample/misc/calendar.rb +62 -0
- data/sample/misc/checkbutton.rb +46 -0
- data/sample/misc/colorselection.rb +25 -0
- data/sample/misc/combo_check.rb +71 -0
- data/sample/misc/combobox.rb +86 -0
- data/sample/misc/composited-windows.rb +113 -0
- data/sample/misc/cursor.rb +32 -0
- data/sample/misc/dialog.rb +44 -0
- data/sample/misc/dialog2.rb +39 -0
- data/sample/misc/dnd.rb +65 -0
- data/sample/misc/dndtreeview.rb +56 -0
- data/sample/misc/drag-move.rb +131 -0
- data/sample/misc/drawing.rb +90 -0
- data/sample/misc/entry.rb +34 -0
- data/sample/misc/entrycompletion.rb +39 -0
- data/sample/misc/expander.rb +27 -0
- data/sample/misc/filechooser.rb +49 -0
- data/sample/misc/fileselection.rb +26 -0
- data/sample/misc/frame.rb +69 -0
- data/sample/misc/gc.rb +59 -0
- data/sample/misc/gdkscreen.rb +32 -0
- data/sample/misc/gnome-logo-icon.png +0 -0
- data/sample/misc/helloworld.rb +35 -0
- data/sample/misc/iconview.rb +38 -0
- data/sample/misc/image.rb +42 -0
- data/sample/misc/infobar.rb +24 -0
- data/sample/misc/itemfactory.rb +73 -0
- data/sample/misc/itemfactory2.rb +74 -0
- data/sample/misc/keyboard_grab.rb +29 -0
- data/sample/misc/label.rb +33 -0
- data/sample/misc/linkbutton.rb +42 -0
- data/sample/misc/listview.rb +92 -0
- data/sample/misc/menu.rb +81 -0
- data/sample/misc/misc_button.rb +59 -0
- data/sample/misc/mouse-gesture.rb +465 -0
- data/sample/misc/pangorenderer.rb +66 -0
- data/sample/misc/pointer_grab.rb +34 -0
- data/sample/misc/print.rb +247 -0
- data/sample/misc/properties.rb +85 -0
- data/sample/misc/radiobutton.rb +47 -0
- data/sample/misc/recentchooserdialog.rb +59 -0
- data/sample/misc/rgtk+cairo.rb +44 -0
- data/sample/misc/scalebutton.rb +25 -0
- data/sample/misc/settings.rb +41 -0
- data/sample/misc/statusicon.rb +123 -0
- data/sample/misc/stock.rb +36 -0
- data/sample/misc/style_property.rb +67 -0
- data/sample/misc/style_property.rc +19 -0
- data/sample/misc/t-gtkplug.rb +58 -0
- data/sample/misc/t-gtksocket.rb +65 -0
- data/sample/misc/test.xpm +92 -0
- data/sample/misc/textbuffer_serialize.rb +130 -0
- data/sample/misc/threads.rb +72 -0
- data/sample/misc/to_drawable.rb +42 -0
- data/sample/misc/togglebutton.rb +34 -0
- data/sample/misc/toolbar.rb +55 -0
- data/sample/misc/tooltips.rb +204 -0
- data/sample/misc/tree_combo.rb +85 -0
- data/sample/misc/tree_progress.rb +69 -0
- data/sample/misc/treemodelfilter.rb +55 -0
- data/sample/misc/treeview.rb +71 -0
- data/sample/misc/uimanager.rb +148 -0
- data/sample/misc/uimanager2.rb +91 -0
- data/sample/misc/uimanager2.xml +36 -0
- data/sample/misc/window.rb +24 -0
- data/sample/misc/xbm_cursor.rb +43 -0
- data/sample/testgtk/3DRings.xpm +116 -0
- data/sample/testgtk/FilesQueue.xpm +98 -0
- data/sample/testgtk/Modeller.xpm +117 -0
- data/sample/testgtk/README +14 -0
- data/sample/testgtk/button.rb +133 -0
- data/sample/testgtk/buttonbox.rb +108 -0
- data/sample/testgtk/check-n.xpm +21 -0
- data/sample/testgtk/check-y.xpm +21 -0
- data/sample/testgtk/checkbutton.rb +67 -0
- data/sample/testgtk/circles.xbm +46 -0
- data/sample/testgtk/colorselect.rb +33 -0
- data/sample/testgtk/dialog.rb +47 -0
- data/sample/testgtk/entry.rb +73 -0
- data/sample/testgtk/filesel.rb +67 -0
- data/sample/testgtk/fontselection.rb +56 -0
- data/sample/testgtk/gammacurve.rb +70 -0
- data/sample/testgtk/labels.rb +74 -0
- data/sample/testgtk/layout.rb +108 -0
- data/sample/testgtk/marble.xpm +408 -0
- data/sample/testgtk/menu.rb +79 -0
- data/sample/testgtk/notebook.rb +281 -0
- data/sample/testgtk/pixmap.rb +58 -0
- data/sample/testgtk/progressbar.rb +181 -0
- data/sample/testgtk/radiobutton.rb +61 -0
- data/sample/testgtk/range.rb +65 -0
- data/sample/testgtk/reparent.rb +91 -0
- data/sample/testgtk/rulers.rb +46 -0
- data/sample/testgtk/sample.rb +80 -0
- data/sample/testgtk/savedposition.rb +87 -0
- data/sample/testgtk/scrolledwindow.rb +67 -0
- data/sample/testgtk/shapedwindow.rb +99 -0
- data/sample/testgtk/spinbutton.rb +181 -0
- data/sample/testgtk/statusbar.rb +89 -0
- data/sample/testgtk/test.xpm +92 -0
- data/sample/testgtk/testgtk.rb +181 -0
- data/sample/testgtk/testgtkrc +146 -0
- data/sample/testgtk/testgtkrc2 +21 -0
- data/sample/testgtk/togglebutton.rb +53 -0
- data/sample/testgtk/toolbar.rb +82 -0
- data/sample/testgtk/tooltips.rb +41 -0
- data/sample/testgtk/wmhints.rb +40 -0
- data/test/gtk-test-utils.rb +15 -0
- data/test/run-test.rb +32 -0
- data/test/test_gc.rb +25 -0
- data/test/test_gdk.rb +18 -0
- data/test/test_gdk_color.rb +10 -0
- data/test/test_gdk_display.rb +37 -0
- data/test/test_gdk_event.rb +23 -0
- data/test/test_gdk_gc.rb +7 -0
- data/test/test_gdk_geometry.rb +24 -0
- data/test/test_gdk_keymap.rb +8 -0
- data/test/test_gdk_pango.rb +9 -0
- data/test/test_gdk_pixbuf.rb +34 -0
- data/test/test_gdk_rectangle.rb +24 -0
- data/test/test_gdk_selection_data.rb +17 -0
- data/test/test_gdk_window.rb +37 -0
- data/test/test_gdk_window_attribute.rb +9 -0
- data/test/test_gtk_about_dialog.rb +14 -0
- data/test/test_gtk_accel_group_entry.rb +24 -0
- data/test/test_gtk_accel_key.rb +24 -0
- data/test/test_gtk_allocation.rb +24 -0
- data/test/test_gtk_border.rb +24 -0
- data/test/test_gtk_buildable.rb +66 -0
- data/test/test_gtk_builder.rb +188 -0
- data/test/test_gtk_entry.rb +18 -0
- data/test/test_gtk_icon_theme.rb +35 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_infobar.rb +29 -0
- data/test/test_gtk_list_store.rb +92 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_rc_style.rb +14 -0
- data/test/test_gtk_recent_data.rb +24 -0
- data/test/test_gtk_recent_filter_info.rb +26 -0
- data/test/test_gtk_tree_path.rb +20 -0
- data/test/test_gtk_unix_print.rb +14 -0
- data/test/test_gtk_widget.rb +32 -0
- data/vendor/local/bin/gtk-builder-convert +799 -0
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtkrc +1 -0
- data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
- data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
- data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
- data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +151 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
- data/vendor/local/lib/gailutil.def +15 -0
- data/vendor/local/lib/gdk-win32-2.0.def +744 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.la +41 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.la +41 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/immodules.cache +7 -0
- data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +34 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.la +41 -0
- data/vendor/local/lib/gtk-win32-2.0.def +3833 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgailutil.la +41 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.la +41 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.la +41 -0
- data/vendor/local/lib/pkgconfig/gail.pc +11 -0
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
- data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
- data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
- data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
- data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
- data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
- data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
- data/vendor/local/share/gtk-2.0/demo/changedisplay.c +646 -0
- data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
- data/vendor/local/share/gtk-2.0/demo/colorsel.c +145 -0
- data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
- data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
- data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
- data/vendor/local/share/gtk-2.0/demo/drawingarea.c +314 -0
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
- data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
- data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
- data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
- data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
- data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
- data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
- data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
- data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
- data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
- data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
- data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +587 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +510 -0
- data/vendor/local/share/gtk-2.0/demo/panes.c +197 -0
- data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
- data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
- data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
- data/vendor/local/share/gtk-2.0/demo/rotated_text.c +241 -0
- data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
- data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
- data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
- data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
- data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
- data/vendor/local/share/gtk-2.0/demo/toolpalette.c +799 -0
- data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
- data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +574 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +361 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +27 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplay.html +1796 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplayManager.html +355 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkScreen.html +2067 -0
- data/vendor/local/share/gtk-doc/html/gdk2/X_cursor.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/annotation-glossary.html +62 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-10.html +118 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-12.html +119 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-14.html +119 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-16.html +39 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-18.html +104 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-2.html +510 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-20.html +46 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-22.html +219 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-4.html +118 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-6.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-8.html +110 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-deprecated.html +1047 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-full.html +3665 -0
- data/vendor/local/share/gtk-doc/html/gdk2/arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/boat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bogosity.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/box_spiral.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/center_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/circle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/clock.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/coffee_mug.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/cross_reverse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/crosshair.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/diamond_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/dot.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/dotbox.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draft_large.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draft_small.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draped_box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/exchange.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/fleur.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Application-launching.html +412 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Bitmaps-and-Pixmaps.html +753 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cairo-Interaction.html +541 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Colormaps-and-Colors.html +1295 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cursors.html +1290 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drag-and-Drop.html +1217 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drawing-Primitives.html +2611 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Event-Structures.html +2095 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Events.html +1650 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Fonts.html +1781 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-GdkRGB.html +1435 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-General.html +1169 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Graphics-Contexts.html +2201 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Images.html +1090 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input-Devices.html +1288 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input.html +401 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Keyboard-Handling.html +1362 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pango-Interaction.html +1074 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pixbufs.html +744 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Points-Rectangles-and-Regions.html +1367 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Properties-and-Atoms.html +1314 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Selections.html +845 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Testing.html +276 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Threads.html +1053 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Visuals.html +1085 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Windows.html +8583 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-X-Window-System-Interaction.html +3528 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2.devhelp2 +949 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gobbler.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gumby.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/hand1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/hand2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/heart.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/icon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/index.html +143 -0
- data/vendor/local/share/gtk-doc/html/gdk2/index.sgml +1151 -0
- data/vendor/local/share/gtk-doc/html/gdk2/iron_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/leftbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ll_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/lr_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/man.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/middlebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/mouse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/multihead.html +204 -0
- data/vendor/local/share/gtk-doc/html/gdk2/pencil.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/pirate.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/plus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/question_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/reference.html +131 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rightbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rtl_logo.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sailboat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_down_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_h_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_right_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_up_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_v_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/shuttle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sizing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/spider.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/spraycan.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/star.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gdk2/target.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/tcross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/trek.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ul_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/umbrella.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ur_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/watch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/xterm.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/AbstractObjects.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Actions.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Builder.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ButtonWidgets.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/DeprecatedObjects.html +83 -0
- data/vendor/local/share/gtk-doc/html/gtk2/DisplayWidgets.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAboutDialog.html +1891 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAccelLabel.html +437 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAccessible.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAction.html +2264 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkActionGroup.html +1631 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkActivatable.html +924 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAdjustment.html +1102 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAlignment.html +491 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkArrow.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAspectFrame.html +308 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAssistant.html +1575 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBin.html +152 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBox.html +1043 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBuildable.html +801 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBuilder.html +1339 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkButton.html +1634 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkButtonBox.html +776 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCList.html +5399 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCTree.html +3279 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCalendar.html +1463 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellEditable.html +362 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellLayout.html +702 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRenderer.html +1492 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererAccel.html +350 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererCombo.html +282 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererPixbuf.html +278 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererProgress.html +243 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpin.html +196 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpinner.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererText.html +868 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererToggle.html +493 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellView.html +612 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCheckButton.html +283 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorButton.html +615 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelection.html +1120 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelectionDialog.html +302 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCombo.html +678 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBox.html +2138 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxEntry.html +374 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxText.html +414 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkContainer.html +2054 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCurve.html +591 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkDialog.html +1627 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkDrawingArea.html +287 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEditable.html +896 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntry.html +4578 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryBuffer.html +792 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryCompletion.html +1574 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEventBox.html +362 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkExpander.html +1024 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooser.html +4065 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserButton.html +666 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserDialog.html +353 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserWidget.html +211 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileSelection.html +740 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFixed.html +419 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontButton.html +804 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelection.html +728 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelectionDialog.html +546 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFrame.html +610 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkGammaCurve.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHBox.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHButtonBox.html +287 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHPaned.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHRuler.html +143 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHSV.html +605 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHScale.html +210 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHScrollbar.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHSeparator.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHandleBox.html +665 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContext.html +1204 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContextSimple.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMMulticontext.html +231 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIconTheme.html +1796 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIconView.html +3740 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkImage.html +1961 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkImageMenuItem.html +613 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInfoBar.html +908 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInputDialog.html +255 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInvisible.html +267 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkItem.html +350 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkItemFactory.html +1537 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLabel.html +2825 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLayout.html +797 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLinkButton.html +520 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkList.html +1370 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkListItem.html +652 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkListStore.html +1361 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenu.html +1887 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuBar.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuItem.html +1279 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuShell.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuToolButton.html +561 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMessageDialog.html +945 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMisc.html +411 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkNotebook.html +3748 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkObject.html +1672 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOffscreenWindow.html +221 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOldEditable.html +756 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOptionMenu.html +477 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetup.html +1278 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetupUnixDialog.html +312 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPaned.html +1032 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPaperSize.html +1172 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPixmap.html +306 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPlug.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPreview.html +822 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintContext.html +655 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintJob.html +725 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintSettings.html +3872 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintUnixDialog.html +1143 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrinter.html +1321 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkProgress.html +766 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkProgressBar.html +1179 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioAction.html +480 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioButton.html +681 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioMenuItem.html +609 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioToolButton.html +432 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRange.html +1913 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentAction.html +338 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooser.html +1919 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserDialog.html +260 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserMenu.html +313 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserWidget.html +182 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentFilter.html +823 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentManager.html +2084 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRuler.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScale.html +724 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScaleButton.html +783 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScrollbar.html +232 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScrolledWindow.html +1035 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparator.html +96 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorMenuItem.html +130 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorToolItem.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSettings.html +1679 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSizeGroup.html +579 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSocket.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinButton.html +1793 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinner.html +265 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusIcon.html +2339 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusbar.html +662 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStyle.html +5004 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTable.html +1081 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTearoffMenuItem.html +158 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkText.html +900 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextBuffer.html +4895 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextIter.html +4244 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextMark.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTag.html +1680 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTagTable.html +516 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextView.html +4124 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTipsQuery.html +625 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleAction.html +440 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleButton.html +698 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleToolButton.html +359 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolButton.html +929 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItem.html +1599 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItemGroup.html +1025 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolPalette.html +1314 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolShell.html +532 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolbar.html +2507 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltip.html +554 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltips.html +548 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTree.html +1060 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeItem.html +361 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModel.html +3330 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelFilter.html +885 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelSort.html +697 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSelection.html +1144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSortable.html +595 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeStore.html +1384 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeView.html +6534 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeViewColumn.html +2679 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkUIManager.html +1631 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVBox.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVButtonBox.html +259 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVPaned.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVRuler.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVScale.html +202 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVScrollbar.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVSeparator.html +125 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkViewport.html +564 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVolumeButton.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWidget.html +13779 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWindow.html +5354 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWindowGroup.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk2/LayoutContainers.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk2/MenusAndCombos.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk2/MiscObjects.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk2/NumericEntry.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Ornaments.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/PlugSocket.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Printing.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk2/RecentDocuments.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ScrollingWidgets.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/SelectorWidgets.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk2/SpecialObjects.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TextWidget.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TextWidgetObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TreeWidget.html +556 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TreeWidgetObjects.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk2/WindowWidgets.html +57 -0
- data/vendor/local/share/gtk-doc/html/gtk2/aboutdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/accel-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/annotation-glossary.html +69 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-10.html +2090 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-12.html +785 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-14.html +781 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-16.html +597 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-18.html +513 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-2.html +286 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-20.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-22.html +176 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-24.html +131 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-4.html +1853 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-6.html +1085 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-8.html +381 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-deprecated.html +3531 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-full.html +22945 -0
- data/vendor/local/share/gtk-doc/html/gtk2/application-exit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/assistant.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ch01.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ch02.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk2/chap-drawing-model.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk2/check-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-gdkeventexpose-region.html +84 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-modifiers.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-named-icons.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/color-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/colorsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/combo-box-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/combo-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/decorating-the-assistant-pages.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-information.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-password.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-question.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-new.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-open.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-print-preview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-print.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-properties.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-revert-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-revert-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-save-as.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-save.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/drive-harddisk.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-clear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-copy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-cut.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-delete.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-find-replace.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-find.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-paste.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-select-all.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/figure-hierarchical-drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/figure-windowed-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/file-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/filechooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/folder.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/font-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/fontsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-fill.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-bold.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-italic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-strikethrough.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-underline.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/frame.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/glossary.html +335 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-bottom.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-first-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-first-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-jump-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-jump-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-last-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-last-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-next-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-next-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-previous-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-previous-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-top.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-apply.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-builder-convert.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-building.html +441 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-cancel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-caps-lock-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-1-2.html +568 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-2-0.html +1175 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-color-picker.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-compiling.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-connect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-convert.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-directfb.html +60 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-disconnect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd-multiple.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-edit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-font.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-index.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-ClientSideWindows.html +85 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAboutDialog.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAction.html +91 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAssistant.html +102 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkBuilder.html +118 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkColorButton.html +107 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkComboBox.html +256 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkFileChooser.html +80 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkIconView.html +264 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkLinkButton.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkRecentChooser.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-checklist.html +157 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-entry-icons.html +293 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-label-links.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-tooltips.html +124 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-no.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-ok.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-osx.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-page-setup.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-preferences.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-query-immodules-2.0.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-question-index.html +1427 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-resources.html +146 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-running.html +348 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-select-color.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-update-icon-cache.html +114 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-windows.html +87 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-x11.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-yes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk.html +162 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Accelerator-Maps.html +744 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Bindings.html +1146 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Clipboards.html +2018 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Drag-and-Drop.html +1962 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Feature-Test-Macros.html +358 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Filesystem-utilities.html +454 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-General.html +2349 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Graphics-Contexts.html +165 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-GtkTreeView-drag-and-drop.html +566 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-High-level-Printing-API.html +3267 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Keyboard-Accelerators.html +1329 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Orientable.html +219 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Resource-Files.html +2234 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Selections.html +2236 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Signals.html +1991 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Standard-Enumerations.html +2183 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Stock-Items.html +1724 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Testing.html +833 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Themeable-Stock-Images.html +1998 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Types.html +2138 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkcheckmenuitem.html +693 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkfilefilter.html +671 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2.devhelp2 +6133 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkbase.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-extra-widgets.html +40 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-preview.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-new-features.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-selection-modes.html +51 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkobjects.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-advanced.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-chooser.html +97 -0
- data/vendor/local/share/gtk-doc/html/gtk2/help-about.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/help-contents.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/icon-view.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/image-missing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/image.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/index.html +875 -0
- data/vendor/local/share/gtk-doc/html/gtk2/index.sgml +8276 -0
- data/vendor/local/share/gtk-doc/html/gtk2/label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-btlr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-btrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-lrbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-lrtb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-rlbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-rltb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-tblr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-tbrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/link-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-add.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-and-tree.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-remove.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-floppy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-optical.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-pause.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-record.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/menubar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/messagedialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating-GtkCombo.html +94 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating-gnomeuiinfo.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk2/multiline-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/network-idle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/new-features-GtkComboBox.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk2/notebook.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/pagesetupdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/panes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-info.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-paused.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/process-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/progressbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/pt05.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk2/radio-group.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/recentchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/scales.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/scrolledwindow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/separator.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/setting-the-page-flow.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk2/spinbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/spinner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/statusbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gtk2/system-run.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/text-x-generic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toggle-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toolbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toolpalette.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/tools-check-spelling.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/tree-view-coordinates.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ui-manager.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk2/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-fullscreen.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-refresh.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-restore.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-sort-ascending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-sort-descending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/volumebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/window-close.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/window.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-fit-best.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-original.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-out.png +0 -0
- data/vendor/local/share/icons/hicolor/index.theme +1830 -0
- data/vendor/local/share/license/gtk+/AUTHORS +65 -0
- data/vendor/local/share/license/gtk+/COPYING +482 -0
- data/vendor/local/share/license/hicolor-icon-theme/COPYING +345 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
- data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
- data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
- data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
- metadata +1750 -0
| @@ -0,0 +1,81 @@ | |
| 1 | 
            +
            /* gtkcellview.h
         | 
| 2 | 
            +
             * Copyright (C) 2002, 2003  Kristian Rietveld <kris@gtk.org>
         | 
| 3 | 
            +
             *
         | 
| 4 | 
            +
             * This library is free software; you can redistribute it and/or
         | 
| 5 | 
            +
             * modify it under the terms of the GNU Library General Public
         | 
| 6 | 
            +
             * License as published by the Free Software Foundation; either
         | 
| 7 | 
            +
             * version 2 of the License, or (at your option) any later version.
         | 
| 8 | 
            +
             *
         | 
| 9 | 
            +
             * This library is distributed in the hope that it will be useful,
         | 
| 10 | 
            +
             * but WITHOUT ANY WARRANTY; without even the implied warranty of
         | 
| 11 | 
            +
             * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
         | 
| 12 | 
            +
             * Library General Public License for more details.
         | 
| 13 | 
            +
             *
         | 
| 14 | 
            +
             * You should have received a copy of the GNU Library General Public
         | 
| 15 | 
            +
             * License along with this library; if not, write to the
         | 
| 16 | 
            +
             * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
         | 
| 17 | 
            +
             * Boston, MA 02111-1307, USA.
         | 
| 18 | 
            +
             */
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            #ifndef __GTK_CELL_VIEW_H__
         | 
| 21 | 
            +
            #define __GTK_CELL_VIEW_H__
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
         | 
| 24 | 
            +
            #error "Only <gtk/gtk.h> can be included directly."
         | 
| 25 | 
            +
            #endif
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            #include <gtk/gtkwidget.h>
         | 
| 28 | 
            +
            #include <gtk/gtkcellrenderer.h>
         | 
| 29 | 
            +
            #include <gtk/gtktreemodel.h>
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            G_BEGIN_DECLS
         | 
| 32 | 
            +
             | 
| 33 | 
            +
            #define GTK_TYPE_CELL_VIEW                (gtk_cell_view_get_type ())
         | 
| 34 | 
            +
            #define GTK_CELL_VIEW(obj)                (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CELL_VIEW, GtkCellView))
         | 
| 35 | 
            +
            #define GTK_CELL_VIEW_CLASS(vtable)       (G_TYPE_CHECK_CLASS_CAST ((vtable), GTK_TYPE_CELL_VIEW, GtkCellViewClass))
         | 
| 36 | 
            +
            #define GTK_IS_CELL_VIEW(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CELL_VIEW))
         | 
| 37 | 
            +
            #define GTK_IS_CELL_VIEW_CLASS(vtable)    (G_TYPE_CHECK_CLASS_TYPE ((vtable), GTK_TYPE_CELL_VIEW))
         | 
| 38 | 
            +
            #define GTK_CELL_VIEW_GET_CLASS(inst)     (G_TYPE_INSTANCE_GET_CLASS ((inst), GTK_TYPE_CELL_VIEW, GtkCellViewClass))
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            typedef struct _GtkCellView             GtkCellView;
         | 
| 41 | 
            +
            typedef struct _GtkCellViewClass        GtkCellViewClass;
         | 
| 42 | 
            +
            typedef struct _GtkCellViewPrivate      GtkCellViewPrivate;
         | 
| 43 | 
            +
             | 
| 44 | 
            +
            struct _GtkCellView
         | 
| 45 | 
            +
            {
         | 
| 46 | 
            +
              GtkWidget parent_instance;
         | 
| 47 | 
            +
             | 
| 48 | 
            +
              /*< private >*/
         | 
| 49 | 
            +
              GtkCellViewPrivate *GSEAL (priv);
         | 
| 50 | 
            +
            };
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            struct _GtkCellViewClass
         | 
| 53 | 
            +
            {
         | 
| 54 | 
            +
              GtkWidgetClass parent_class;
         | 
| 55 | 
            +
            };
         | 
| 56 | 
            +
             | 
| 57 | 
            +
            GType             gtk_cell_view_get_type               (void) G_GNUC_CONST;
         | 
| 58 | 
            +
            GtkWidget        *gtk_cell_view_new                    (void);
         | 
| 59 | 
            +
            GtkWidget        *gtk_cell_view_new_with_text          (const gchar     *text);
         | 
| 60 | 
            +
            GtkWidget        *gtk_cell_view_new_with_markup        (const gchar     *markup);
         | 
| 61 | 
            +
            GtkWidget        *gtk_cell_view_new_with_pixbuf        (GdkPixbuf       *pixbuf);
         | 
| 62 | 
            +
             | 
| 63 | 
            +
            void              gtk_cell_view_set_model               (GtkCellView     *cell_view,
         | 
| 64 | 
            +
                                                                     GtkTreeModel    *model);
         | 
| 65 | 
            +
            GtkTreeModel     *gtk_cell_view_get_model               (GtkCellView     *cell_view);
         | 
| 66 | 
            +
            void              gtk_cell_view_set_displayed_row       (GtkCellView     *cell_view,
         | 
| 67 | 
            +
                                                                     GtkTreePath     *path);
         | 
| 68 | 
            +
            GtkTreePath      *gtk_cell_view_get_displayed_row       (GtkCellView     *cell_view);
         | 
| 69 | 
            +
            gboolean          gtk_cell_view_get_size_of_row         (GtkCellView     *cell_view,
         | 
| 70 | 
            +
                                                                     GtkTreePath     *path,
         | 
| 71 | 
            +
                                                                     GtkRequisition  *requisition);
         | 
| 72 | 
            +
             | 
| 73 | 
            +
            void              gtk_cell_view_set_background_color    (GtkCellView     *cell_view,
         | 
| 74 | 
            +
                                                                     const GdkColor  *color);
         | 
| 75 | 
            +
            #ifndef GTK_DISABLE_DEPRECATED
         | 
| 76 | 
            +
            GList            *gtk_cell_view_get_cell_renderers      (GtkCellView     *cell_view);
         | 
| 77 | 
            +
            #endif
         | 
| 78 | 
            +
             | 
| 79 | 
            +
            G_END_DECLS
         | 
| 80 | 
            +
             | 
| 81 | 
            +
            #endif /* __GTK_CELL_VIEW_H__ */
         | 
| @@ -0,0 +1,82 @@ | |
| 1 | 
            +
            /* GTK - The GIMP Toolkit
         | 
| 2 | 
            +
             * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
         | 
| 3 | 
            +
             *
         | 
| 4 | 
            +
             * This library is free software; you can redistribute it and/or
         | 
| 5 | 
            +
             * modify it under the terms of the GNU Lesser General Public
         | 
| 6 | 
            +
             * License as published by the Free Software Foundation; either
         | 
| 7 | 
            +
             * version 2 of the License, or (at your option) any later version.
         | 
| 8 | 
            +
             *
         | 
| 9 | 
            +
             * This library is distributed in the hope that it will be useful,
         | 
| 10 | 
            +
             * but WITHOUT ANY WARRANTY; without even the implied warranty of
         | 
| 11 | 
            +
             * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
         | 
| 12 | 
            +
             * Lesser General Public License for more details.
         | 
| 13 | 
            +
             *
         | 
| 14 | 
            +
             * You should have received a copy of the GNU Lesser General Public
         | 
| 15 | 
            +
             * License along with this library; if not, write to the
         | 
| 16 | 
            +
             * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
         | 
| 17 | 
            +
             * Boston, MA 02111-1307, USA.
         | 
| 18 | 
            +
             */
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            /*
         | 
| 21 | 
            +
             * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
         | 
| 22 | 
            +
             * file for a list of people on the GTK+ Team.  See the ChangeLog
         | 
| 23 | 
            +
             * files for a list of changes.  These files are distributed with
         | 
| 24 | 
            +
             * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
         | 
| 25 | 
            +
             */
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            #ifndef __GTK_CHECK_BUTTON_H__
         | 
| 28 | 
            +
            #define __GTK_CHECK_BUTTON_H__
         | 
| 29 | 
            +
             | 
| 30 | 
            +
             | 
| 31 | 
            +
            #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
         | 
| 32 | 
            +
            #error "Only <gtk/gtk.h> can be included directly."
         | 
| 33 | 
            +
            #endif
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            #include <gtk/gtktogglebutton.h>
         | 
| 36 | 
            +
             | 
| 37 | 
            +
             | 
| 38 | 
            +
            G_BEGIN_DECLS
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            #define GTK_TYPE_CHECK_BUTTON                  (gtk_check_button_get_type ())
         | 
| 41 | 
            +
            #define GTK_CHECK_BUTTON(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CHECK_BUTTON, GtkCheckButton))
         | 
| 42 | 
            +
            #define GTK_CHECK_BUTTON_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CHECK_BUTTON, GtkCheckButtonClass))
         | 
| 43 | 
            +
            #define GTK_IS_CHECK_BUTTON(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CHECK_BUTTON))
         | 
| 44 | 
            +
            #define GTK_IS_CHECK_BUTTON_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CHECK_BUTTON))
         | 
| 45 | 
            +
            #define GTK_CHECK_BUTTON_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CHECK_BUTTON, GtkCheckButtonClass))
         | 
| 46 | 
            +
             | 
| 47 | 
            +
             | 
| 48 | 
            +
            typedef struct _GtkCheckButton       GtkCheckButton;
         | 
| 49 | 
            +
            typedef struct _GtkCheckButtonClass  GtkCheckButtonClass;
         | 
| 50 | 
            +
             | 
| 51 | 
            +
            struct _GtkCheckButton
         | 
| 52 | 
            +
            {
         | 
| 53 | 
            +
              GtkToggleButton toggle_button;
         | 
| 54 | 
            +
            };
         | 
| 55 | 
            +
             | 
| 56 | 
            +
            struct _GtkCheckButtonClass
         | 
| 57 | 
            +
            {
         | 
| 58 | 
            +
              GtkToggleButtonClass parent_class;
         | 
| 59 | 
            +
             | 
| 60 | 
            +
              void (* draw_indicator) (GtkCheckButton *check_button,
         | 
| 61 | 
            +
            			   GdkRectangle   *area);
         | 
| 62 | 
            +
             | 
| 63 | 
            +
              /* Padding for future expansion */
         | 
| 64 | 
            +
              void (*_gtk_reserved1) (void);
         | 
| 65 | 
            +
              void (*_gtk_reserved2) (void);
         | 
| 66 | 
            +
              void (*_gtk_reserved3) (void);
         | 
| 67 | 
            +
              void (*_gtk_reserved4) (void);
         | 
| 68 | 
            +
            };
         | 
| 69 | 
            +
             | 
| 70 | 
            +
             | 
| 71 | 
            +
            GType      gtk_check_button_get_type       (void) G_GNUC_CONST;
         | 
| 72 | 
            +
            GtkWidget* gtk_check_button_new               (void);
         | 
| 73 | 
            +
            GtkWidget* gtk_check_button_new_with_label    (const gchar *label);
         | 
| 74 | 
            +
            GtkWidget* gtk_check_button_new_with_mnemonic (const gchar *label);
         | 
| 75 | 
            +
             | 
| 76 | 
            +
            void _gtk_check_button_get_props (GtkCheckButton *check_button,
         | 
| 77 | 
            +
            				  gint           *indicator_size,
         | 
| 78 | 
            +
            				  gint           *indicator_spacing);
         | 
| 79 | 
            +
             | 
| 80 | 
            +
            G_END_DECLS
         | 
| 81 | 
            +
             | 
| 82 | 
            +
            #endif /* __GTK_CHECK_BUTTON_H__ */
         | 
| @@ -0,0 +1,102 @@ | |
| 1 | 
            +
            /* GTK - The GIMP Toolkit
         | 
| 2 | 
            +
             * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
         | 
| 3 | 
            +
             *
         | 
| 4 | 
            +
             * This library is free software; you can redistribute it and/or
         | 
| 5 | 
            +
             * modify it under the terms of the GNU Lesser General Public
         | 
| 6 | 
            +
             * License as published by the Free Software Foundation; either
         | 
| 7 | 
            +
             * version 2 of the License, or (at your option) any later version.
         | 
| 8 | 
            +
             *
         | 
| 9 | 
            +
             * This library is distributed in the hope that it will be useful,
         | 
| 10 | 
            +
             * but WITHOUT ANY WARRANTY; without even the implied warranty of
         | 
| 11 | 
            +
             * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
         | 
| 12 | 
            +
             * Lesser General Public License for more details.
         | 
| 13 | 
            +
             *
         | 
| 14 | 
            +
             * You should have received a copy of the GNU Lesser General Public
         | 
| 15 | 
            +
             * License along with this library; if not, write to the
         | 
| 16 | 
            +
             * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
         | 
| 17 | 
            +
             * Boston, MA 02111-1307, USA.
         | 
| 18 | 
            +
             */
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            /*
         | 
| 21 | 
            +
             * Modified by the GTK+ Team and others 1997-2001.  See the AUTHORS
         | 
| 22 | 
            +
             * file for a list of people on the GTK+ Team.  See the ChangeLog
         | 
| 23 | 
            +
             * files for a list of changes.  These files are distributed with
         | 
| 24 | 
            +
             * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
         | 
| 25 | 
            +
             */
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            #ifndef __GTK_CHECK_MENU_ITEM_H__
         | 
| 28 | 
            +
            #define __GTK_CHECK_MENU_ITEM_H__
         | 
| 29 | 
            +
             | 
| 30 | 
            +
             | 
| 31 | 
            +
            #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
         | 
| 32 | 
            +
            #error "Only <gtk/gtk.h> can be included directly."
         | 
| 33 | 
            +
            #endif
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            #include <gtk/gtkmenuitem.h>
         | 
| 36 | 
            +
             | 
| 37 | 
            +
             | 
| 38 | 
            +
            G_BEGIN_DECLS
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            #define GTK_TYPE_CHECK_MENU_ITEM            (gtk_check_menu_item_get_type ())
         | 
| 41 | 
            +
            #define GTK_CHECK_MENU_ITEM(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CHECK_MENU_ITEM, GtkCheckMenuItem))
         | 
| 42 | 
            +
            #define GTK_CHECK_MENU_ITEM_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CHECK_MENU_ITEM, GtkCheckMenuItemClass))
         | 
| 43 | 
            +
            #define GTK_IS_CHECK_MENU_ITEM(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CHECK_MENU_ITEM))
         | 
| 44 | 
            +
            #define GTK_IS_CHECK_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CHECK_MENU_ITEM))
         | 
| 45 | 
            +
            #define GTK_CHECK_MENU_ITEM_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CHECK_MENU_ITEM, GtkCheckMenuItemClass))
         | 
| 46 | 
            +
             | 
| 47 | 
            +
             | 
| 48 | 
            +
            typedef struct _GtkCheckMenuItem       GtkCheckMenuItem;
         | 
| 49 | 
            +
            typedef struct _GtkCheckMenuItemClass  GtkCheckMenuItemClass;
         | 
| 50 | 
            +
             | 
| 51 | 
            +
            struct _GtkCheckMenuItem
         | 
| 52 | 
            +
            {
         | 
| 53 | 
            +
              GtkMenuItem menu_item;
         | 
| 54 | 
            +
             | 
| 55 | 
            +
              guint GSEAL (active) : 1;
         | 
| 56 | 
            +
              guint GSEAL (always_show_toggle) : 1;
         | 
| 57 | 
            +
              guint GSEAL (inconsistent) : 1;
         | 
| 58 | 
            +
              guint GSEAL (draw_as_radio) : 1;
         | 
| 59 | 
            +
            };
         | 
| 60 | 
            +
             | 
| 61 | 
            +
            struct _GtkCheckMenuItemClass
         | 
| 62 | 
            +
            {
         | 
| 63 | 
            +
              GtkMenuItemClass parent_class;
         | 
| 64 | 
            +
             | 
| 65 | 
            +
              void (* toggled)	  (GtkCheckMenuItem *check_menu_item);
         | 
| 66 | 
            +
              void (* draw_indicator) (GtkCheckMenuItem *check_menu_item,
         | 
| 67 | 
            +
            			   GdkRectangle	    *area);
         | 
| 68 | 
            +
             | 
| 69 | 
            +
              /* Padding for future expansion */
         | 
| 70 | 
            +
              void (*_gtk_reserved1) (void);
         | 
| 71 | 
            +
              void (*_gtk_reserved2) (void);
         | 
| 72 | 
            +
              void (*_gtk_reserved3) (void);
         | 
| 73 | 
            +
              void (*_gtk_reserved4) (void);
         | 
| 74 | 
            +
            };
         | 
| 75 | 
            +
             | 
| 76 | 
            +
             | 
| 77 | 
            +
            GType	   gtk_check_menu_item_get_type	         (void) G_GNUC_CONST;
         | 
| 78 | 
            +
             | 
| 79 | 
            +
            GtkWidget* gtk_check_menu_item_new               (void);
         | 
| 80 | 
            +
            GtkWidget* gtk_check_menu_item_new_with_label    (const gchar      *label);
         | 
| 81 | 
            +
            GtkWidget* gtk_check_menu_item_new_with_mnemonic (const gchar      *label);
         | 
| 82 | 
            +
            void       gtk_check_menu_item_set_active        (GtkCheckMenuItem *check_menu_item,
         | 
| 83 | 
            +
            						  gboolean          is_active);
         | 
| 84 | 
            +
            gboolean   gtk_check_menu_item_get_active        (GtkCheckMenuItem *check_menu_item);
         | 
| 85 | 
            +
            void       gtk_check_menu_item_toggled           (GtkCheckMenuItem *check_menu_item);
         | 
| 86 | 
            +
            void       gtk_check_menu_item_set_inconsistent  (GtkCheckMenuItem *check_menu_item,
         | 
| 87 | 
            +
            						  gboolean          setting);
         | 
| 88 | 
            +
            gboolean   gtk_check_menu_item_get_inconsistent  (GtkCheckMenuItem *check_menu_item);
         | 
| 89 | 
            +
            void       gtk_check_menu_item_set_draw_as_radio (GtkCheckMenuItem *check_menu_item,
         | 
| 90 | 
            +
            						  gboolean          draw_as_radio);
         | 
| 91 | 
            +
            gboolean   gtk_check_menu_item_get_draw_as_radio (GtkCheckMenuItem *check_menu_item);
         | 
| 92 | 
            +
             | 
| 93 | 
            +
             | 
| 94 | 
            +
            #ifndef GTK_DISABLE_DEPRECATED
         | 
| 95 | 
            +
            void	   gtk_check_menu_item_set_show_toggle (GtkCheckMenuItem *menu_item,
         | 
| 96 | 
            +
            						gboolean	  always);
         | 
| 97 | 
            +
            #define	gtk_check_menu_item_set_state		gtk_check_menu_item_set_active
         | 
| 98 | 
            +
            #endif
         | 
| 99 | 
            +
             | 
| 100 | 
            +
            G_END_DECLS
         | 
| 101 | 
            +
             | 
| 102 | 
            +
            #endif /* __GTK_CHECK_MENU_ITEM_H__ */
         | 
| @@ -0,0 +1,157 @@ | |
| 1 | 
            +
            /* GTK - The GIMP Toolkit
         | 
| 2 | 
            +
             * Copyright (C) 2000 Red Hat, Inc.
         | 
| 3 | 
            +
             *
         | 
| 4 | 
            +
             * This library is free software; you can redistribute it and/or
         | 
| 5 | 
            +
             * modify it under the terms of the GNU Lesser General Public
         | 
| 6 | 
            +
             * License as published by the Free Software Foundation; either
         | 
| 7 | 
            +
             * version 2 of the License, or (at your option) any later version.
         | 
| 8 | 
            +
             *
         | 
| 9 | 
            +
             * This library is distributed in the hope that it will be useful,
         | 
| 10 | 
            +
             * but WITHOUT ANY WARRANTY; without even the implied warranty of
         | 
| 11 | 
            +
             * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
         | 
| 12 | 
            +
             * Lesser General Public License for more details.
         | 
| 13 | 
            +
             *
         | 
| 14 | 
            +
             * You should have received a copy of the GNU Lesser General Public
         | 
| 15 | 
            +
             * License along with this library; if not, write to the
         | 
| 16 | 
            +
             * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
         | 
| 17 | 
            +
             * Boston, MA 02111-1307, USA.
         | 
| 18 | 
            +
             *
         | 
| 19 | 
            +
             * Global clipboard abstraction.
         | 
| 20 | 
            +
             */
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            #ifndef __GTK_CLIPBOARD_H__
         | 
| 23 | 
            +
            #define __GTK_CLIPBOARD_H__
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
         | 
| 26 | 
            +
            #error "Only <gtk/gtk.h> can be included directly."
         | 
| 27 | 
            +
            #endif
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            #include <gtk/gtkselection.h>
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            G_BEGIN_DECLS
         | 
| 32 | 
            +
             | 
| 33 | 
            +
            #define GTK_TYPE_CLIPBOARD            (gtk_clipboard_get_type ())
         | 
| 34 | 
            +
            #define GTK_CLIPBOARD(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CLIPBOARD, GtkClipboard))
         | 
| 35 | 
            +
            #define GTK_IS_CLIPBOARD(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CLIPBOARD))
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            typedef void (* GtkClipboardReceivedFunc)         (GtkClipboard     *clipboard,
         | 
| 38 | 
            +
            					           GtkSelectionData *selection_data,
         | 
| 39 | 
            +
            					           gpointer          data);
         | 
| 40 | 
            +
            typedef void (* GtkClipboardTextReceivedFunc)     (GtkClipboard     *clipboard,
         | 
| 41 | 
            +
            					           const gchar      *text,
         | 
| 42 | 
            +
            					           gpointer          data);
         | 
| 43 | 
            +
            typedef void (* GtkClipboardRichTextReceivedFunc) (GtkClipboard     *clipboard,
         | 
| 44 | 
            +
                                                               GdkAtom           format,
         | 
| 45 | 
            +
            					           const guint8     *text,
         | 
| 46 | 
            +
                                                               gsize             length,
         | 
| 47 | 
            +
            					           gpointer          data);
         | 
| 48 | 
            +
            typedef void (* GtkClipboardImageReceivedFunc)    (GtkClipboard     *clipboard,
         | 
| 49 | 
            +
            						   GdkPixbuf        *pixbuf,
         | 
| 50 | 
            +
            						   gpointer          data);
         | 
| 51 | 
            +
            typedef void (* GtkClipboardURIReceivedFunc)      (GtkClipboard     *clipboard,
         | 
| 52 | 
            +
            						   gchar           **uris,
         | 
| 53 | 
            +
            						   gpointer          data);
         | 
| 54 | 
            +
            typedef void (* GtkClipboardTargetsReceivedFunc)  (GtkClipboard     *clipboard,
         | 
| 55 | 
            +
            					           GdkAtom          *atoms,
         | 
| 56 | 
            +
            						   gint              n_atoms,
         | 
| 57 | 
            +
            					           gpointer          data);
         | 
| 58 | 
            +
             | 
| 59 | 
            +
            /* Should these functions have GtkClipboard *clipboard as the first argument?
         | 
| 60 | 
            +
             * right now for ClearFunc, you may have trouble determining _which_ clipboard
         | 
| 61 | 
            +
             * was cleared, if you reuse your ClearFunc for multiple clipboards.
         | 
| 62 | 
            +
             */
         | 
| 63 | 
            +
            typedef void (* GtkClipboardGetFunc)          (GtkClipboard     *clipboard,
         | 
| 64 | 
            +
            					       GtkSelectionData *selection_data,
         | 
| 65 | 
            +
            					       guint             info,
         | 
| 66 | 
            +
            					       gpointer          user_data_or_owner);
         | 
| 67 | 
            +
            typedef void (* GtkClipboardClearFunc)        (GtkClipboard     *clipboard,
         | 
| 68 | 
            +
            					       gpointer          user_data_or_owner);
         | 
| 69 | 
            +
             | 
| 70 | 
            +
            GType         gtk_clipboard_get_type (void) G_GNUC_CONST;
         | 
| 71 | 
            +
             | 
| 72 | 
            +
            GtkClipboard *gtk_clipboard_get_for_display (GdkDisplay   *display,
         | 
| 73 | 
            +
            					     GdkAtom       selection);
         | 
| 74 | 
            +
            #ifndef GDK_MULTIHEAD_SAFE
         | 
| 75 | 
            +
            GtkClipboard *gtk_clipboard_get             (GdkAtom       selection);
         | 
| 76 | 
            +
            #endif
         | 
| 77 | 
            +
             | 
| 78 | 
            +
            GdkDisplay   *gtk_clipboard_get_display     (GtkClipboard *clipboard);
         | 
| 79 | 
            +
             | 
| 80 | 
            +
             | 
| 81 | 
            +
            gboolean gtk_clipboard_set_with_data  (GtkClipboard          *clipboard,
         | 
| 82 | 
            +
            				       const GtkTargetEntry  *targets,
         | 
| 83 | 
            +
            				       guint                  n_targets,
         | 
| 84 | 
            +
            				       GtkClipboardGetFunc    get_func,
         | 
| 85 | 
            +
            				       GtkClipboardClearFunc  clear_func,
         | 
| 86 | 
            +
            				       gpointer               user_data);
         | 
| 87 | 
            +
            gboolean gtk_clipboard_set_with_owner (GtkClipboard          *clipboard,
         | 
| 88 | 
            +
            				       const GtkTargetEntry  *targets,
         | 
| 89 | 
            +
            				       guint                  n_targets,
         | 
| 90 | 
            +
            				       GtkClipboardGetFunc    get_func,
         | 
| 91 | 
            +
            				       GtkClipboardClearFunc  clear_func,
         | 
| 92 | 
            +
            				       GObject               *owner);
         | 
| 93 | 
            +
            GObject *gtk_clipboard_get_owner      (GtkClipboard          *clipboard);
         | 
| 94 | 
            +
            void     gtk_clipboard_clear          (GtkClipboard          *clipboard);
         | 
| 95 | 
            +
            void     gtk_clipboard_set_text       (GtkClipboard          *clipboard,
         | 
| 96 | 
            +
            				       const gchar           *text,
         | 
| 97 | 
            +
            				       gint                   len);
         | 
| 98 | 
            +
            void     gtk_clipboard_set_image      (GtkClipboard          *clipboard,
         | 
| 99 | 
            +
            				       GdkPixbuf             *pixbuf);
         | 
| 100 | 
            +
             | 
| 101 | 
            +
            void gtk_clipboard_request_contents  (GtkClipboard                     *clipboard,
         | 
| 102 | 
            +
                                                  GdkAtom                           target,
         | 
| 103 | 
            +
                                                  GtkClipboardReceivedFunc          callback,
         | 
| 104 | 
            +
                                                  gpointer                          user_data);
         | 
| 105 | 
            +
            void gtk_clipboard_request_text      (GtkClipboard                     *clipboard,
         | 
| 106 | 
            +
                                                  GtkClipboardTextReceivedFunc      callback,
         | 
| 107 | 
            +
                                                  gpointer                          user_data);
         | 
| 108 | 
            +
            void gtk_clipboard_request_rich_text (GtkClipboard                     *clipboard,
         | 
| 109 | 
            +
                                                  GtkTextBuffer                    *buffer,
         | 
| 110 | 
            +
                                                  GtkClipboardRichTextReceivedFunc  callback,
         | 
| 111 | 
            +
                                                  gpointer                          user_data);
         | 
| 112 | 
            +
            void gtk_clipboard_request_image     (GtkClipboard                     *clipboard,
         | 
| 113 | 
            +
                                                  GtkClipboardImageReceivedFunc     callback,
         | 
| 114 | 
            +
                                                  gpointer                          user_data);
         | 
| 115 | 
            +
            void gtk_clipboard_request_uris      (GtkClipboard                     *clipboard,
         | 
| 116 | 
            +
                                                  GtkClipboardURIReceivedFunc       callback,
         | 
| 117 | 
            +
                                                  gpointer                          user_data);
         | 
| 118 | 
            +
            void gtk_clipboard_request_targets   (GtkClipboard                     *clipboard,
         | 
| 119 | 
            +
                                                  GtkClipboardTargetsReceivedFunc   callback,
         | 
| 120 | 
            +
                                                  gpointer                          user_data);
         | 
| 121 | 
            +
             | 
| 122 | 
            +
            GtkSelectionData *gtk_clipboard_wait_for_contents  (GtkClipboard  *clipboard,
         | 
| 123 | 
            +
                                                                GdkAtom        target);
         | 
| 124 | 
            +
            gchar *           gtk_clipboard_wait_for_text      (GtkClipboard  *clipboard);
         | 
| 125 | 
            +
            guint8 *          gtk_clipboard_wait_for_rich_text (GtkClipboard  *clipboard,
         | 
| 126 | 
            +
                                                                GtkTextBuffer *buffer,
         | 
| 127 | 
            +
                                                                GdkAtom       *format,
         | 
| 128 | 
            +
                                                                gsize         *length);
         | 
| 129 | 
            +
            GdkPixbuf *       gtk_clipboard_wait_for_image     (GtkClipboard  *clipboard);
         | 
| 130 | 
            +
            gchar **          gtk_clipboard_wait_for_uris      (GtkClipboard  *clipboard);
         | 
| 131 | 
            +
            gboolean          gtk_clipboard_wait_for_targets   (GtkClipboard  *clipboard,
         | 
| 132 | 
            +
                                                                GdkAtom      **targets,
         | 
| 133 | 
            +
                                                                gint          *n_targets);
         | 
| 134 | 
            +
             | 
| 135 | 
            +
            gboolean gtk_clipboard_wait_is_text_available      (GtkClipboard  *clipboard);
         | 
| 136 | 
            +
            gboolean gtk_clipboard_wait_is_rich_text_available (GtkClipboard  *clipboard,
         | 
| 137 | 
            +
                                                                GtkTextBuffer *buffer);
         | 
| 138 | 
            +
            gboolean gtk_clipboard_wait_is_image_available     (GtkClipboard  *clipboard);
         | 
| 139 | 
            +
            gboolean gtk_clipboard_wait_is_uris_available      (GtkClipboard  *clipboard);
         | 
| 140 | 
            +
            gboolean gtk_clipboard_wait_is_target_available    (GtkClipboard  *clipboard,
         | 
| 141 | 
            +
                                                                GdkAtom        target);
         | 
| 142 | 
            +
             | 
| 143 | 
            +
             | 
| 144 | 
            +
            void gtk_clipboard_set_can_store (GtkClipboard         *clipboard,
         | 
| 145 | 
            +
            				  const GtkTargetEntry *targets,
         | 
| 146 | 
            +
            				  gint                  n_targets);
         | 
| 147 | 
            +
             | 
| 148 | 
            +
            void gtk_clipboard_store         (GtkClipboard   *clipboard);
         | 
| 149 | 
            +
             | 
| 150 | 
            +
            /* private */
         | 
| 151 | 
            +
            void     _gtk_clipboard_handle_event    (GdkEventOwnerChange *event);
         | 
| 152 | 
            +
             | 
| 153 | 
            +
            void     _gtk_clipboard_store_all       (void);
         | 
| 154 | 
            +
             | 
| 155 | 
            +
            G_END_DECLS
         | 
| 156 | 
            +
             | 
| 157 | 
            +
            #endif /* __GTK_CLIPBOARD_H__ */
         | 
| @@ -0,0 +1,792 @@ | |
| 1 | 
            +
            /* GTK - The GIMP Toolkit
         | 
| 2 | 
            +
             * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball, Josh MacDonald
         | 
| 3 | 
            +
             * Copyright (C) 1997-1998 Jay Painter <jpaint@serv.net><jpaint@gimp.org>
         | 
| 4 | 
            +
             *
         | 
| 5 | 
            +
             * This library is free software; you can redistribute it and/or
         | 
| 6 | 
            +
             * modify it under the terms of the GNU Lesser General Public
         | 
| 7 | 
            +
             * License as published by the Free Software Foundation; either
         | 
| 8 | 
            +
             * version 2 of the License, or (at your option) any later version.
         | 
| 9 | 
            +
             *
         | 
| 10 | 
            +
             * This library is distributed in the hope that it will be useful,
         | 
| 11 | 
            +
             * but WITHOUT ANY WARRANTY; without even the implied warranty of
         | 
| 12 | 
            +
             * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
         | 
| 13 | 
            +
             * Lesser General Public License for more details.
         | 
| 14 | 
            +
             *
         | 
| 15 | 
            +
             * You should have received a copy of the GNU Lesser General Public
         | 
| 16 | 
            +
             * License along with this library; if not, write to the
         | 
| 17 | 
            +
             * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
         | 
| 18 | 
            +
             * Boston, MA 02111-1307, USA.
         | 
| 19 | 
            +
             */
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            /*
         | 
| 22 | 
            +
             * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
         | 
| 23 | 
            +
             * file for a list of people on the GTK+ Team.  See the ChangeLog
         | 
| 24 | 
            +
             * files for a list of changes.  These files are distributed with
         | 
| 25 | 
            +
             * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
         | 
| 26 | 
            +
             */
         | 
| 27 | 
            +
             | 
| 28 | 
            +
            #if !defined (GTK_DISABLE_DEPRECATED) || defined (__GTK_CLIST_C__) || defined (__GTK_CTREE_C__)
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            #ifndef __GTK_CLIST_H__
         | 
| 31 | 
            +
            #define __GTK_CLIST_H__
         | 
| 32 | 
            +
             | 
| 33 | 
            +
             | 
| 34 | 
            +
            #include <gtk/gtksignal.h>
         | 
| 35 | 
            +
            #include <gtk/gtkalignment.h>
         | 
| 36 | 
            +
            #include <gtk/gtklabel.h>
         | 
| 37 | 
            +
            #include <gtk/gtkbutton.h>
         | 
| 38 | 
            +
            #include <gtk/gtkhscrollbar.h>
         | 
| 39 | 
            +
            #include <gtk/gtkvscrollbar.h>
         | 
| 40 | 
            +
             | 
| 41 | 
            +
             | 
| 42 | 
            +
            G_BEGIN_DECLS
         | 
| 43 | 
            +
             | 
| 44 | 
            +
             | 
| 45 | 
            +
            /* clist flags */
         | 
| 46 | 
            +
            enum {
         | 
| 47 | 
            +
              GTK_CLIST_IN_DRAG             = 1 <<  0,
         | 
| 48 | 
            +
              GTK_CLIST_ROW_HEIGHT_SET      = 1 <<  1,
         | 
| 49 | 
            +
              GTK_CLIST_SHOW_TITLES         = 1 <<  2,
         | 
| 50 | 
            +
              /* Unused */
         | 
| 51 | 
            +
              GTK_CLIST_ADD_MODE            = 1 <<  4,
         | 
| 52 | 
            +
              GTK_CLIST_AUTO_SORT           = 1 <<  5,
         | 
| 53 | 
            +
              GTK_CLIST_AUTO_RESIZE_BLOCKED = 1 <<  6,
         | 
| 54 | 
            +
              GTK_CLIST_REORDERABLE         = 1 <<  7,
         | 
| 55 | 
            +
              GTK_CLIST_USE_DRAG_ICONS      = 1 <<  8,
         | 
| 56 | 
            +
              GTK_CLIST_DRAW_DRAG_LINE      = 1 <<  9,
         | 
| 57 | 
            +
              GTK_CLIST_DRAW_DRAG_RECT      = 1 << 10
         | 
| 58 | 
            +
            };
         | 
| 59 | 
            +
             | 
| 60 | 
            +
            /* cell types */
         | 
| 61 | 
            +
            typedef enum
         | 
| 62 | 
            +
            {
         | 
| 63 | 
            +
              GTK_CELL_EMPTY,
         | 
| 64 | 
            +
              GTK_CELL_TEXT,
         | 
| 65 | 
            +
              GTK_CELL_PIXMAP,
         | 
| 66 | 
            +
              GTK_CELL_PIXTEXT,
         | 
| 67 | 
            +
              GTK_CELL_WIDGET
         | 
| 68 | 
            +
            } GtkCellType;
         | 
| 69 | 
            +
             | 
| 70 | 
            +
            typedef enum
         | 
| 71 | 
            +
            {
         | 
| 72 | 
            +
              GTK_CLIST_DRAG_NONE,
         | 
| 73 | 
            +
              GTK_CLIST_DRAG_BEFORE,
         | 
| 74 | 
            +
              GTK_CLIST_DRAG_INTO,
         | 
| 75 | 
            +
              GTK_CLIST_DRAG_AFTER
         | 
| 76 | 
            +
            } GtkCListDragPos;
         | 
| 77 | 
            +
             | 
| 78 | 
            +
            typedef enum
         | 
| 79 | 
            +
            {
         | 
| 80 | 
            +
              GTK_BUTTON_IGNORED = 0,
         | 
| 81 | 
            +
              GTK_BUTTON_SELECTS = 1 << 0,
         | 
| 82 | 
            +
              GTK_BUTTON_DRAGS   = 1 << 1,
         | 
| 83 | 
            +
              GTK_BUTTON_EXPANDS = 1 << 2
         | 
| 84 | 
            +
            } GtkButtonAction;
         | 
| 85 | 
            +
             | 
| 86 | 
            +
            #define GTK_TYPE_CLIST            (gtk_clist_get_type ())
         | 
| 87 | 
            +
            #define GTK_CLIST(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CLIST, GtkCList))
         | 
| 88 | 
            +
            #define GTK_CLIST_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CLIST, GtkCListClass))
         | 
| 89 | 
            +
            #define GTK_IS_CLIST(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CLIST))
         | 
| 90 | 
            +
            #define GTK_IS_CLIST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CLIST))
         | 
| 91 | 
            +
            #define GTK_CLIST_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CLIST, GtkCListClass))
         | 
| 92 | 
            +
             | 
| 93 | 
            +
             | 
| 94 | 
            +
            #define GTK_CLIST_FLAGS(clist)             (GTK_CLIST (clist)->flags)
         | 
| 95 | 
            +
            #define GTK_CLIST_SET_FLAG(clist,flag)     (GTK_CLIST_FLAGS (clist) |= (GTK_ ## flag))
         | 
| 96 | 
            +
            #define GTK_CLIST_UNSET_FLAG(clist,flag)   (GTK_CLIST_FLAGS (clist) &= ~(GTK_ ## flag))
         | 
| 97 | 
            +
             | 
| 98 | 
            +
            #define GTK_CLIST_IN_DRAG(clist)           (GTK_CLIST_FLAGS (clist) & GTK_CLIST_IN_DRAG)
         | 
| 99 | 
            +
            #define GTK_CLIST_ROW_HEIGHT_SET(clist)    (GTK_CLIST_FLAGS (clist) & GTK_CLIST_ROW_HEIGHT_SET)
         | 
| 100 | 
            +
            #define GTK_CLIST_SHOW_TITLES(clist)       (GTK_CLIST_FLAGS (clist) & GTK_CLIST_SHOW_TITLES)
         | 
| 101 | 
            +
            #define GTK_CLIST_ADD_MODE(clist)          (GTK_CLIST_FLAGS (clist) & GTK_CLIST_ADD_MODE)
         | 
| 102 | 
            +
            #define GTK_CLIST_AUTO_SORT(clist)         (GTK_CLIST_FLAGS (clist) & GTK_CLIST_AUTO_SORT)
         | 
| 103 | 
            +
            #define GTK_CLIST_AUTO_RESIZE_BLOCKED(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_AUTO_RESIZE_BLOCKED)
         | 
| 104 | 
            +
            #define GTK_CLIST_REORDERABLE(clist)       (GTK_CLIST_FLAGS (clist) & GTK_CLIST_REORDERABLE)
         | 
| 105 | 
            +
            #define GTK_CLIST_USE_DRAG_ICONS(clist)    (GTK_CLIST_FLAGS (clist) & GTK_CLIST_USE_DRAG_ICONS)
         | 
| 106 | 
            +
            #define GTK_CLIST_DRAW_DRAG_LINE(clist)    (GTK_CLIST_FLAGS (clist) & GTK_CLIST_DRAW_DRAG_LINE)
         | 
| 107 | 
            +
            #define GTK_CLIST_DRAW_DRAG_RECT(clist)    (GTK_CLIST_FLAGS (clist) & GTK_CLIST_DRAW_DRAG_RECT)
         | 
| 108 | 
            +
             | 
| 109 | 
            +
            #define GTK_CLIST_ROW(_glist_) ((GtkCListRow *)((_glist_)->data))
         | 
| 110 | 
            +
             | 
| 111 | 
            +
            /* pointer casting for cells */
         | 
| 112 | 
            +
            #define GTK_CELL_TEXT(cell)     (((GtkCellText *) &(cell)))
         | 
| 113 | 
            +
            #define GTK_CELL_PIXMAP(cell)   (((GtkCellPixmap *) &(cell)))
         | 
| 114 | 
            +
            #define GTK_CELL_PIXTEXT(cell)  (((GtkCellPixText *) &(cell)))
         | 
| 115 | 
            +
            #define GTK_CELL_WIDGET(cell)   (((GtkCellWidget *) &(cell)))
         | 
| 116 | 
            +
             | 
| 117 | 
            +
            typedef struct _GtkCList GtkCList;
         | 
| 118 | 
            +
            typedef struct _GtkCListClass GtkCListClass;
         | 
| 119 | 
            +
            typedef struct _GtkCListColumn GtkCListColumn;
         | 
| 120 | 
            +
            typedef struct _GtkCListRow GtkCListRow;
         | 
| 121 | 
            +
             | 
| 122 | 
            +
            typedef struct _GtkCell GtkCell;
         | 
| 123 | 
            +
            typedef struct _GtkCellText GtkCellText;
         | 
| 124 | 
            +
            typedef struct _GtkCellPixmap GtkCellPixmap;
         | 
| 125 | 
            +
            typedef struct _GtkCellPixText GtkCellPixText;
         | 
| 126 | 
            +
            typedef struct _GtkCellWidget GtkCellWidget;
         | 
| 127 | 
            +
             | 
| 128 | 
            +
            typedef gint (*GtkCListCompareFunc) (GtkCList     *clist,
         | 
| 129 | 
            +
            				     gconstpointer ptr1,
         | 
| 130 | 
            +
            				     gconstpointer ptr2);
         | 
| 131 | 
            +
             | 
| 132 | 
            +
            typedef struct _GtkCListCellInfo GtkCListCellInfo;
         | 
| 133 | 
            +
            typedef struct _GtkCListDestInfo GtkCListDestInfo;
         | 
| 134 | 
            +
             | 
| 135 | 
            +
            struct _GtkCListCellInfo
         | 
| 136 | 
            +
            {
         | 
| 137 | 
            +
              gint row;
         | 
| 138 | 
            +
              gint column;
         | 
| 139 | 
            +
            };
         | 
| 140 | 
            +
             | 
| 141 | 
            +
            struct _GtkCListDestInfo
         | 
| 142 | 
            +
            {
         | 
| 143 | 
            +
              GtkCListCellInfo cell;
         | 
| 144 | 
            +
              GtkCListDragPos  insert_pos;
         | 
| 145 | 
            +
            };
         | 
| 146 | 
            +
             | 
| 147 | 
            +
            struct _GtkCList
         | 
| 148 | 
            +
            {
         | 
| 149 | 
            +
              GtkContainer container;
         | 
| 150 | 
            +
              
         | 
| 151 | 
            +
              guint16 flags;
         | 
| 152 | 
            +
              
         | 
| 153 | 
            +
              gpointer reserved1;
         | 
| 154 | 
            +
              gpointer reserved2;
         | 
| 155 | 
            +
             | 
| 156 | 
            +
              guint freeze_count;
         | 
| 157 | 
            +
              
         | 
| 158 | 
            +
              /* allocation rectangle after the container_border_width
         | 
| 159 | 
            +
               * and the width of the shadow border */
         | 
| 160 | 
            +
              GdkRectangle internal_allocation;
         | 
| 161 | 
            +
              
         | 
| 162 | 
            +
              /* rows */
         | 
| 163 | 
            +
              gint rows;
         | 
| 164 | 
            +
              gint row_height;
         | 
| 165 | 
            +
              GList *row_list;
         | 
| 166 | 
            +
              GList *row_list_end;
         | 
| 167 | 
            +
              
         | 
| 168 | 
            +
              /* columns */
         | 
| 169 | 
            +
              gint columns;
         | 
| 170 | 
            +
              GdkRectangle column_title_area;
         | 
| 171 | 
            +
              GdkWindow *title_window;
         | 
| 172 | 
            +
              
         | 
| 173 | 
            +
              /* dynamicly allocated array of column structures */
         | 
| 174 | 
            +
              GtkCListColumn *column;
         | 
| 175 | 
            +
              
         | 
| 176 | 
            +
              /* the scrolling window and its height and width to
         | 
| 177 | 
            +
               * make things a little speedier */
         | 
| 178 | 
            +
              GdkWindow *clist_window;
         | 
| 179 | 
            +
              gint clist_window_width;
         | 
| 180 | 
            +
              gint clist_window_height;
         | 
| 181 | 
            +
              
         | 
| 182 | 
            +
              /* offsets for scrolling */
         | 
| 183 | 
            +
              gint hoffset;
         | 
| 184 | 
            +
              gint voffset;
         | 
| 185 | 
            +
              
         | 
| 186 | 
            +
              /* border shadow style */
         | 
| 187 | 
            +
              GtkShadowType shadow_type;
         | 
| 188 | 
            +
              
         | 
| 189 | 
            +
              /* the list's selection mode (gtkenums.h) */
         | 
| 190 | 
            +
              GtkSelectionMode selection_mode;
         | 
| 191 | 
            +
              
         | 
| 192 | 
            +
              /* list of selected rows */
         | 
| 193 | 
            +
              GList *selection;
         | 
| 194 | 
            +
              GList *selection_end;
         | 
| 195 | 
            +
              
         | 
| 196 | 
            +
              GList *undo_selection;
         | 
| 197 | 
            +
              GList *undo_unselection;
         | 
| 198 | 
            +
              gint undo_anchor;
         | 
| 199 | 
            +
              
         | 
| 200 | 
            +
              /* mouse buttons */
         | 
| 201 | 
            +
              guint8 button_actions[5];
         | 
| 202 | 
            +
             | 
| 203 | 
            +
              guint8 drag_button;
         | 
| 204 | 
            +
             | 
| 205 | 
            +
              /* dnd */
         | 
| 206 | 
            +
              GtkCListCellInfo click_cell;
         | 
| 207 | 
            +
             | 
| 208 | 
            +
              /* scroll adjustments */
         | 
| 209 | 
            +
              GtkAdjustment *hadjustment;
         | 
| 210 | 
            +
              GtkAdjustment *vadjustment;
         | 
| 211 | 
            +
              
         | 
| 212 | 
            +
              /* xor GC for the vertical drag line */
         | 
| 213 | 
            +
              GdkGC *xor_gc;
         | 
| 214 | 
            +
              
         | 
| 215 | 
            +
              /* gc for drawing unselected cells */
         | 
| 216 | 
            +
              GdkGC *fg_gc;
         | 
| 217 | 
            +
              GdkGC *bg_gc;
         | 
| 218 | 
            +
              
         | 
| 219 | 
            +
              /* cursor used to indicate dragging */
         | 
| 220 | 
            +
              GdkCursor *cursor_drag;
         | 
| 221 | 
            +
              
         | 
| 222 | 
            +
              /* the current x-pixel location of the xor-drag line */
         | 
| 223 | 
            +
              gint x_drag;
         | 
| 224 | 
            +
              
         | 
| 225 | 
            +
              /* focus handling */
         | 
| 226 | 
            +
              gint focus_row;
         | 
| 227 | 
            +
             | 
| 228 | 
            +
              gint focus_header_column;
         | 
| 229 | 
            +
              
         | 
| 230 | 
            +
              /* dragging the selection */
         | 
| 231 | 
            +
              gint anchor;
         | 
| 232 | 
            +
              GtkStateType anchor_state;
         | 
| 233 | 
            +
              gint drag_pos;
         | 
| 234 | 
            +
              gint htimer;
         | 
| 235 | 
            +
              gint vtimer;
         | 
| 236 | 
            +
              
         | 
| 237 | 
            +
              GtkSortType sort_type;
         | 
| 238 | 
            +
              GtkCListCompareFunc compare;
         | 
| 239 | 
            +
              gint sort_column;
         | 
| 240 | 
            +
             | 
| 241 | 
            +
              gint drag_highlight_row;
         | 
| 242 | 
            +
              GtkCListDragPos drag_highlight_pos;
         | 
| 243 | 
            +
            };
         | 
| 244 | 
            +
             | 
| 245 | 
            +
            struct _GtkCListClass
         | 
| 246 | 
            +
            {
         | 
| 247 | 
            +
              GtkContainerClass parent_class;
         | 
| 248 | 
            +
              
         | 
| 249 | 
            +
              void  (*set_scroll_adjustments) (GtkCList       *clist,
         | 
| 250 | 
            +
            				   GtkAdjustment  *hadjustment,
         | 
| 251 | 
            +
            				   GtkAdjustment  *vadjustment);
         | 
| 252 | 
            +
              void   (*refresh)             (GtkCList       *clist);
         | 
| 253 | 
            +
              void   (*select_row)          (GtkCList       *clist,
         | 
| 254 | 
            +
            				 gint            row,
         | 
| 255 | 
            +
            				 gint            column,
         | 
| 256 | 
            +
            				 GdkEvent       *event);
         | 
| 257 | 
            +
              void   (*unselect_row)        (GtkCList       *clist,
         | 
| 258 | 
            +
            				 gint            row,
         | 
| 259 | 
            +
            				 gint            column,
         | 
| 260 | 
            +
            				 GdkEvent       *event);
         | 
| 261 | 
            +
              void   (*row_move)            (GtkCList       *clist,
         | 
| 262 | 
            +
            				 gint            source_row,
         | 
| 263 | 
            +
            				 gint            dest_row);
         | 
| 264 | 
            +
              void   (*click_column)        (GtkCList       *clist,
         | 
| 265 | 
            +
            				 gint            column);
         | 
| 266 | 
            +
              void   (*resize_column)       (GtkCList       *clist,
         | 
| 267 | 
            +
            				 gint            column,
         | 
| 268 | 
            +
                                             gint            width);
         | 
| 269 | 
            +
              void   (*toggle_focus_row)    (GtkCList       *clist);
         | 
| 270 | 
            +
              void   (*select_all)          (GtkCList       *clist);
         | 
| 271 | 
            +
              void   (*unselect_all)        (GtkCList       *clist);
         | 
| 272 | 
            +
              void   (*undo_selection)      (GtkCList       *clist);
         | 
| 273 | 
            +
              void   (*start_selection)     (GtkCList       *clist);
         | 
| 274 | 
            +
              void   (*end_selection)       (GtkCList       *clist);
         | 
| 275 | 
            +
              void   (*extend_selection)    (GtkCList       *clist,
         | 
| 276 | 
            +
            				 GtkScrollType   scroll_type,
         | 
| 277 | 
            +
            				 gfloat          position,
         | 
| 278 | 
            +
            				 gboolean        auto_start_selection);
         | 
| 279 | 
            +
              void   (*scroll_horizontal)   (GtkCList       *clist,
         | 
| 280 | 
            +
            				 GtkScrollType   scroll_type,
         | 
| 281 | 
            +
            				 gfloat          position);
         | 
| 282 | 
            +
              void   (*scroll_vertical)     (GtkCList       *clist,
         | 
| 283 | 
            +
            				 GtkScrollType   scroll_type,
         | 
| 284 | 
            +
            				 gfloat          position);
         | 
| 285 | 
            +
              void   (*toggle_add_mode)     (GtkCList       *clist);
         | 
| 286 | 
            +
              void   (*abort_column_resize) (GtkCList       *clist);
         | 
| 287 | 
            +
              void   (*resync_selection)    (GtkCList       *clist,
         | 
| 288 | 
            +
            				 GdkEvent       *event);
         | 
| 289 | 
            +
              GList* (*selection_find)      (GtkCList       *clist,
         | 
| 290 | 
            +
            				 gint            row_number,
         | 
| 291 | 
            +
            				 GList          *row_list_element);
         | 
| 292 | 
            +
              void   (*draw_row)            (GtkCList       *clist,
         | 
| 293 | 
            +
            				 GdkRectangle   *area,
         | 
| 294 | 
            +
            				 gint            row,
         | 
| 295 | 
            +
            				 GtkCListRow    *clist_row);
         | 
| 296 | 
            +
              void   (*draw_drag_highlight) (GtkCList        *clist,
         | 
| 297 | 
            +
            				 GtkCListRow     *target_row,
         | 
| 298 | 
            +
            				 gint             target_row_number,
         | 
| 299 | 
            +
            				 GtkCListDragPos  drag_pos);
         | 
| 300 | 
            +
              void   (*clear)               (GtkCList       *clist);
         | 
| 301 | 
            +
              void   (*fake_unselect_all)   (GtkCList       *clist,
         | 
| 302 | 
            +
            				 gint            row);
         | 
| 303 | 
            +
              void   (*sort_list)           (GtkCList       *clist);
         | 
| 304 | 
            +
              gint   (*insert_row)          (GtkCList       *clist,
         | 
| 305 | 
            +
            				 gint            row,
         | 
| 306 | 
            +
            				 gchar          *text[]);
         | 
| 307 | 
            +
              void   (*remove_row)          (GtkCList       *clist,
         | 
| 308 | 
            +
            				 gint            row);
         | 
| 309 | 
            +
              void   (*set_cell_contents)   (GtkCList       *clist,
         | 
| 310 | 
            +
            				 GtkCListRow    *clist_row,
         | 
| 311 | 
            +
            				 gint            column,
         | 
| 312 | 
            +
            				 GtkCellType     type,
         | 
| 313 | 
            +
            				 const gchar    *text,
         | 
| 314 | 
            +
            				 guint8          spacing,
         | 
| 315 | 
            +
            				 GdkPixmap      *pixmap,
         | 
| 316 | 
            +
            				 GdkBitmap      *mask);
         | 
| 317 | 
            +
              void   (*cell_size_request)   (GtkCList       *clist,
         | 
| 318 | 
            +
            				 GtkCListRow    *clist_row,
         | 
| 319 | 
            +
            				 gint            column,
         | 
| 320 | 
            +
            				 GtkRequisition *requisition);
         | 
| 321 | 
            +
             | 
| 322 | 
            +
            };
         | 
| 323 | 
            +
             | 
| 324 | 
            +
            struct _GtkCListColumn
         | 
| 325 | 
            +
            {
         | 
| 326 | 
            +
              gchar *title;
         | 
| 327 | 
            +
              GdkRectangle area;
         | 
| 328 | 
            +
              
         | 
| 329 | 
            +
              GtkWidget *button;
         | 
| 330 | 
            +
              GdkWindow *window;
         | 
| 331 | 
            +
              
         | 
| 332 | 
            +
              gint width;
         | 
| 333 | 
            +
              gint min_width;
         | 
| 334 | 
            +
              gint max_width;
         | 
| 335 | 
            +
              GtkJustification justification;
         | 
| 336 | 
            +
              
         | 
| 337 | 
            +
              guint visible        : 1;  
         | 
| 338 | 
            +
              guint width_set      : 1;
         | 
| 339 | 
            +
              guint resizeable     : 1;
         | 
| 340 | 
            +
              guint auto_resize    : 1;
         | 
| 341 | 
            +
              guint button_passive : 1;
         | 
| 342 | 
            +
            };
         | 
| 343 | 
            +
             | 
| 344 | 
            +
            struct _GtkCListRow
         | 
| 345 | 
            +
            {
         | 
| 346 | 
            +
              GtkCell *cell;
         | 
| 347 | 
            +
              GtkStateType state;
         | 
| 348 | 
            +
              
         | 
| 349 | 
            +
              GdkColor foreground;
         | 
| 350 | 
            +
              GdkColor background;
         | 
| 351 | 
            +
              
         | 
| 352 | 
            +
              GtkStyle *style;
         | 
| 353 | 
            +
             | 
| 354 | 
            +
              gpointer data;
         | 
| 355 | 
            +
              GDestroyNotify destroy;
         | 
| 356 | 
            +
              
         | 
| 357 | 
            +
              guint fg_set     : 1;
         | 
| 358 | 
            +
              guint bg_set     : 1;
         | 
| 359 | 
            +
              guint selectable : 1;
         | 
| 360 | 
            +
            };
         | 
| 361 | 
            +
             | 
| 362 | 
            +
            /* Cell Structures */
         | 
| 363 | 
            +
            struct _GtkCellText
         | 
| 364 | 
            +
            {
         | 
| 365 | 
            +
              GtkCellType type;
         | 
| 366 | 
            +
              
         | 
| 367 | 
            +
              gint16 vertical;
         | 
| 368 | 
            +
              gint16 horizontal;
         | 
| 369 | 
            +
              
         | 
| 370 | 
            +
              GtkStyle *style;
         | 
| 371 | 
            +
             | 
| 372 | 
            +
              gchar *text;
         | 
| 373 | 
            +
            };
         | 
| 374 | 
            +
             | 
| 375 | 
            +
            struct _GtkCellPixmap
         | 
| 376 | 
            +
            {
         | 
| 377 | 
            +
              GtkCellType type;
         | 
| 378 | 
            +
              
         | 
| 379 | 
            +
              gint16 vertical;
         | 
| 380 | 
            +
              gint16 horizontal;
         | 
| 381 | 
            +
              
         | 
| 382 | 
            +
              GtkStyle *style;
         | 
| 383 | 
            +
             | 
| 384 | 
            +
              GdkPixmap *pixmap;
         | 
| 385 | 
            +
              GdkBitmap *mask;
         | 
| 386 | 
            +
            };
         | 
| 387 | 
            +
             | 
| 388 | 
            +
            struct _GtkCellPixText
         | 
| 389 | 
            +
            {
         | 
| 390 | 
            +
              GtkCellType type;
         | 
| 391 | 
            +
              
         | 
| 392 | 
            +
              gint16 vertical;
         | 
| 393 | 
            +
              gint16 horizontal;
         | 
| 394 | 
            +
              
         | 
| 395 | 
            +
              GtkStyle *style;
         | 
| 396 | 
            +
             | 
| 397 | 
            +
              gchar *text;
         | 
| 398 | 
            +
              guint8 spacing;
         | 
| 399 | 
            +
              GdkPixmap *pixmap;
         | 
| 400 | 
            +
              GdkBitmap *mask;
         | 
| 401 | 
            +
            };
         | 
| 402 | 
            +
             | 
| 403 | 
            +
            struct _GtkCellWidget
         | 
| 404 | 
            +
            {
         | 
| 405 | 
            +
              GtkCellType type;
         | 
| 406 | 
            +
              
         | 
| 407 | 
            +
              gint16 vertical;
         | 
| 408 | 
            +
              gint16 horizontal;
         | 
| 409 | 
            +
              
         | 
| 410 | 
            +
              GtkStyle *style;
         | 
| 411 | 
            +
             | 
| 412 | 
            +
              GtkWidget *widget;
         | 
| 413 | 
            +
            };
         | 
| 414 | 
            +
             | 
| 415 | 
            +
            struct _GtkCell
         | 
| 416 | 
            +
            {
         | 
| 417 | 
            +
              GtkCellType type;
         | 
| 418 | 
            +
              
         | 
| 419 | 
            +
              gint16 vertical;
         | 
| 420 | 
            +
              gint16 horizontal;
         | 
| 421 | 
            +
              
         | 
| 422 | 
            +
              GtkStyle *style;
         | 
| 423 | 
            +
             | 
| 424 | 
            +
              union {
         | 
| 425 | 
            +
                gchar *text;
         | 
| 426 | 
            +
                
         | 
| 427 | 
            +
                struct {
         | 
| 428 | 
            +
                  GdkPixmap *pixmap;
         | 
| 429 | 
            +
                  GdkBitmap *mask;
         | 
| 430 | 
            +
                } pm;
         | 
| 431 | 
            +
                
         | 
| 432 | 
            +
                struct {
         | 
| 433 | 
            +
                  gchar *text;
         | 
| 434 | 
            +
                  guint8 spacing;
         | 
| 435 | 
            +
                  GdkPixmap *pixmap;
         | 
| 436 | 
            +
                  GdkBitmap *mask;
         | 
| 437 | 
            +
                } pt;
         | 
| 438 | 
            +
                
         | 
| 439 | 
            +
                GtkWidget *widget;
         | 
| 440 | 
            +
              } u;
         | 
| 441 | 
            +
            };
         | 
| 442 | 
            +
             | 
| 443 | 
            +
            GType gtk_clist_get_type (void) G_GNUC_CONST;
         | 
| 444 | 
            +
             | 
| 445 | 
            +
            /* create a new GtkCList */
         | 
| 446 | 
            +
            GtkWidget* gtk_clist_new             (gint   columns);
         | 
| 447 | 
            +
            GtkWidget* gtk_clist_new_with_titles (gint   columns,
         | 
| 448 | 
            +
            				      gchar *titles[]);
         | 
| 449 | 
            +
             | 
| 450 | 
            +
            /* set adjustments of clist */
         | 
| 451 | 
            +
            void gtk_clist_set_hadjustment (GtkCList      *clist,
         | 
| 452 | 
            +
            				GtkAdjustment *adjustment);
         | 
| 453 | 
            +
            void gtk_clist_set_vadjustment (GtkCList      *clist,
         | 
| 454 | 
            +
            				GtkAdjustment *adjustment);
         | 
| 455 | 
            +
             | 
| 456 | 
            +
            /* get adjustments of clist */
         | 
| 457 | 
            +
            GtkAdjustment* gtk_clist_get_hadjustment (GtkCList *clist);
         | 
| 458 | 
            +
            GtkAdjustment* gtk_clist_get_vadjustment (GtkCList *clist);
         | 
| 459 | 
            +
             | 
| 460 | 
            +
            /* set the border style of the clist */
         | 
| 461 | 
            +
            void gtk_clist_set_shadow_type (GtkCList      *clist,
         | 
| 462 | 
            +
            				GtkShadowType  type);
         | 
| 463 | 
            +
             | 
| 464 | 
            +
            /* set the clist's selection mode */
         | 
| 465 | 
            +
            void gtk_clist_set_selection_mode (GtkCList         *clist,
         | 
| 466 | 
            +
            				   GtkSelectionMode  mode);
         | 
| 467 | 
            +
             | 
| 468 | 
            +
            /* enable clists reorder ability */
         | 
| 469 | 
            +
            void gtk_clist_set_reorderable (GtkCList *clist,
         | 
| 470 | 
            +
            				gboolean  reorderable);
         | 
| 471 | 
            +
            void gtk_clist_set_use_drag_icons (GtkCList *clist,
         | 
| 472 | 
            +
            				   gboolean  use_icons);
         | 
| 473 | 
            +
            void gtk_clist_set_button_actions (GtkCList *clist,
         | 
| 474 | 
            +
            				   guint     button,
         | 
| 475 | 
            +
            				   guint8    button_actions);
         | 
| 476 | 
            +
             | 
| 477 | 
            +
            /* freeze all visual updates of the list, and then thaw the list after
         | 
| 478 | 
            +
             * you have made a number of changes and the updates wil occure in a
         | 
| 479 | 
            +
             * more efficent mannor than if you made them on a unfrozen list
         | 
| 480 | 
            +
             */
         | 
| 481 | 
            +
            void gtk_clist_freeze (GtkCList *clist);
         | 
| 482 | 
            +
            void gtk_clist_thaw   (GtkCList *clist);
         | 
| 483 | 
            +
             | 
| 484 | 
            +
            /* show and hide the column title buttons */
         | 
| 485 | 
            +
            void gtk_clist_column_titles_show (GtkCList *clist);
         | 
| 486 | 
            +
            void gtk_clist_column_titles_hide (GtkCList *clist);
         | 
| 487 | 
            +
             | 
| 488 | 
            +
            /* set the column title to be a active title (responds to button presses, 
         | 
| 489 | 
            +
             * prelights, and grabs keyboard focus), or passive where it acts as just
         | 
| 490 | 
            +
             * a title
         | 
| 491 | 
            +
             */
         | 
| 492 | 
            +
            void gtk_clist_column_title_active   (GtkCList *clist,
         | 
| 493 | 
            +
            				      gint      column);
         | 
| 494 | 
            +
            void gtk_clist_column_title_passive  (GtkCList *clist,
         | 
| 495 | 
            +
            				      gint      column);
         | 
| 496 | 
            +
            void gtk_clist_column_titles_active  (GtkCList *clist);
         | 
| 497 | 
            +
            void gtk_clist_column_titles_passive (GtkCList *clist);
         | 
| 498 | 
            +
             | 
| 499 | 
            +
            /* set the title in the column title button */
         | 
| 500 | 
            +
            void gtk_clist_set_column_title (GtkCList    *clist,
         | 
| 501 | 
            +
            				 gint         column,
         | 
| 502 | 
            +
            				 const gchar *title);
         | 
| 503 | 
            +
             | 
| 504 | 
            +
            /* returns the title of column. Returns NULL if title is not set */
         | 
| 505 | 
            +
            gchar * gtk_clist_get_column_title (GtkCList *clist,
         | 
| 506 | 
            +
            				    gint      column);
         | 
| 507 | 
            +
             | 
| 508 | 
            +
            /* set a widget instead of a title for the column title button */
         | 
| 509 | 
            +
            void gtk_clist_set_column_widget (GtkCList  *clist,
         | 
| 510 | 
            +
            				  gint       column,
         | 
| 511 | 
            +
            				  GtkWidget *widget);
         | 
| 512 | 
            +
             | 
| 513 | 
            +
            /* returns the column widget */
         | 
| 514 | 
            +
            GtkWidget * gtk_clist_get_column_widget (GtkCList *clist,
         | 
| 515 | 
            +
            					 gint      column);
         | 
| 516 | 
            +
             | 
| 517 | 
            +
            /* set the justification on a column */
         | 
| 518 | 
            +
            void gtk_clist_set_column_justification (GtkCList         *clist,
         | 
| 519 | 
            +
            					 gint              column,
         | 
| 520 | 
            +
            					 GtkJustification  justification);
         | 
| 521 | 
            +
             | 
| 522 | 
            +
            /* set visibility of a column */
         | 
| 523 | 
            +
            void gtk_clist_set_column_visibility (GtkCList *clist,
         | 
| 524 | 
            +
            				      gint      column,
         | 
| 525 | 
            +
            				      gboolean  visible);
         | 
| 526 | 
            +
             | 
| 527 | 
            +
            /* enable/disable column resize operations by mouse */
         | 
| 528 | 
            +
            void gtk_clist_set_column_resizeable (GtkCList *clist,
         | 
| 529 | 
            +
            				      gint      column,
         | 
| 530 | 
            +
            				      gboolean  resizeable);
         | 
| 531 | 
            +
             | 
| 532 | 
            +
            /* resize column automatically to its optimal width */
         | 
| 533 | 
            +
            void gtk_clist_set_column_auto_resize (GtkCList *clist,
         | 
| 534 | 
            +
            				       gint      column,
         | 
| 535 | 
            +
            				       gboolean  auto_resize);
         | 
| 536 | 
            +
             | 
| 537 | 
            +
            gint gtk_clist_columns_autosize (GtkCList *clist);
         | 
| 538 | 
            +
             | 
| 539 | 
            +
            /* return the optimal column width, i.e. maximum of all cell widths */
         | 
| 540 | 
            +
            gint gtk_clist_optimal_column_width (GtkCList *clist,
         | 
| 541 | 
            +
            				     gint      column);
         | 
| 542 | 
            +
             | 
| 543 | 
            +
            /* set the pixel width of a column; this is a necessary step in
         | 
| 544 | 
            +
             * creating a CList because otherwise the column width is chozen from
         | 
| 545 | 
            +
             * the width of the column title, which will never be right
         | 
| 546 | 
            +
             */
         | 
| 547 | 
            +
            void gtk_clist_set_column_width (GtkCList *clist,
         | 
| 548 | 
            +
            				 gint      column,
         | 
| 549 | 
            +
            				 gint      width);
         | 
| 550 | 
            +
             | 
| 551 | 
            +
            /* set column minimum/maximum width. min/max_width < 0 => no restriction */
         | 
| 552 | 
            +
            void gtk_clist_set_column_min_width (GtkCList *clist,
         | 
| 553 | 
            +
            				     gint      column,
         | 
| 554 | 
            +
            				     gint      min_width);
         | 
| 555 | 
            +
            void gtk_clist_set_column_max_width (GtkCList *clist,
         | 
| 556 | 
            +
            				     gint      column,
         | 
| 557 | 
            +
            				     gint      max_width);
         | 
| 558 | 
            +
             | 
| 559 | 
            +
            /* change the height of the rows, the default (height=0) is
         | 
| 560 | 
            +
             * the hight of the current font.
         | 
| 561 | 
            +
             */
         | 
| 562 | 
            +
            void gtk_clist_set_row_height (GtkCList *clist,
         | 
| 563 | 
            +
            			       guint     height);
         | 
| 564 | 
            +
             | 
| 565 | 
            +
            /* scroll the viewing area of the list to the given column and row;
         | 
| 566 | 
            +
             * row_align and col_align are between 0-1 representing the location the
         | 
| 567 | 
            +
             * row should appear on the screnn, 0.0 being top or left, 1.0 being
         | 
| 568 | 
            +
             * bottom or right; if row or column is -1 then then there is no change
         | 
| 569 | 
            +
             */
         | 
| 570 | 
            +
            void gtk_clist_moveto (GtkCList *clist,
         | 
| 571 | 
            +
            		       gint      row,
         | 
| 572 | 
            +
            		       gint      column,
         | 
| 573 | 
            +
            		       gfloat    row_align,
         | 
| 574 | 
            +
            		       gfloat    col_align);
         | 
| 575 | 
            +
             | 
| 576 | 
            +
            /* returns whether the row is visible */
         | 
| 577 | 
            +
            GtkVisibility gtk_clist_row_is_visible (GtkCList *clist,
         | 
| 578 | 
            +
            					gint      row);
         | 
| 579 | 
            +
             | 
| 580 | 
            +
            /* returns the cell type */
         | 
| 581 | 
            +
            GtkCellType gtk_clist_get_cell_type (GtkCList *clist,
         | 
| 582 | 
            +
            				     gint      row,
         | 
| 583 | 
            +
            				     gint      column);
         | 
| 584 | 
            +
             | 
| 585 | 
            +
            /* sets a given cell's text, replacing its current contents */
         | 
| 586 | 
            +
            void gtk_clist_set_text (GtkCList    *clist,
         | 
| 587 | 
            +
            			 gint         row,
         | 
| 588 | 
            +
            			 gint         column,
         | 
| 589 | 
            +
            			 const gchar *text);
         | 
| 590 | 
            +
             | 
| 591 | 
            +
            /* for the "get" functions, any of the return pointer can be
         | 
| 592 | 
            +
             * NULL if you are not interested
         | 
| 593 | 
            +
             */
         | 
| 594 | 
            +
            gint gtk_clist_get_text (GtkCList  *clist,
         | 
| 595 | 
            +
            			 gint       row,
         | 
| 596 | 
            +
            			 gint       column,
         | 
| 597 | 
            +
            			 gchar    **text);
         | 
| 598 | 
            +
             | 
| 599 | 
            +
            /* sets a given cell's pixmap, replacing its current contents */
         | 
| 600 | 
            +
            void gtk_clist_set_pixmap (GtkCList  *clist,
         | 
| 601 | 
            +
            			   gint       row,
         | 
| 602 | 
            +
            			   gint       column,
         | 
| 603 | 
            +
            			   GdkPixmap *pixmap,
         | 
| 604 | 
            +
            			   GdkBitmap *mask);
         | 
| 605 | 
            +
             | 
| 606 | 
            +
            gint gtk_clist_get_pixmap (GtkCList   *clist,
         | 
| 607 | 
            +
            			   gint        row,
         | 
| 608 | 
            +
            			   gint        column,
         | 
| 609 | 
            +
            			   GdkPixmap **pixmap,
         | 
| 610 | 
            +
            			   GdkBitmap **mask);
         | 
| 611 | 
            +
             | 
| 612 | 
            +
            /* sets a given cell's pixmap and text, replacing its current contents */
         | 
| 613 | 
            +
            void gtk_clist_set_pixtext (GtkCList    *clist,
         | 
| 614 | 
            +
            			    gint         row,
         | 
| 615 | 
            +
            			    gint         column,
         | 
| 616 | 
            +
            			    const gchar *text,
         | 
| 617 | 
            +
            			    guint8       spacing,
         | 
| 618 | 
            +
            			    GdkPixmap   *pixmap,
         | 
| 619 | 
            +
            			    GdkBitmap   *mask);
         | 
| 620 | 
            +
             | 
| 621 | 
            +
            gint gtk_clist_get_pixtext (GtkCList   *clist,
         | 
| 622 | 
            +
            			    gint        row,
         | 
| 623 | 
            +
            			    gint        column,
         | 
| 624 | 
            +
            			    gchar     **text,
         | 
| 625 | 
            +
            			    guint8     *spacing,
         | 
| 626 | 
            +
            			    GdkPixmap **pixmap,
         | 
| 627 | 
            +
            			    GdkBitmap **mask);
         | 
| 628 | 
            +
             | 
| 629 | 
            +
            /* sets the foreground color of a row, the color must already
         | 
| 630 | 
            +
             * be allocated
         | 
| 631 | 
            +
             */
         | 
| 632 | 
            +
            void gtk_clist_set_foreground (GtkCList       *clist,
         | 
| 633 | 
            +
            			       gint            row,
         | 
| 634 | 
            +
            			       const GdkColor *color);
         | 
| 635 | 
            +
             | 
| 636 | 
            +
            /* sets the background color of a row, the color must already
         | 
| 637 | 
            +
             * be allocated
         | 
| 638 | 
            +
             */
         | 
| 639 | 
            +
            void gtk_clist_set_background (GtkCList       *clist,
         | 
| 640 | 
            +
            			       gint            row,
         | 
| 641 | 
            +
            			       const GdkColor *color);
         | 
| 642 | 
            +
             | 
| 643 | 
            +
            /* set / get cell styles */
         | 
| 644 | 
            +
            void gtk_clist_set_cell_style (GtkCList *clist,
         | 
| 645 | 
            +
            			       gint      row,
         | 
| 646 | 
            +
            			       gint      column,
         | 
| 647 | 
            +
            			       GtkStyle *style);
         | 
| 648 | 
            +
             | 
| 649 | 
            +
            GtkStyle *gtk_clist_get_cell_style (GtkCList *clist,
         | 
| 650 | 
            +
            				    gint      row,
         | 
| 651 | 
            +
            				    gint      column);
         | 
| 652 | 
            +
             | 
| 653 | 
            +
            void gtk_clist_set_row_style (GtkCList *clist,
         | 
| 654 | 
            +
            			      gint      row,
         | 
| 655 | 
            +
            			      GtkStyle *style);
         | 
| 656 | 
            +
             | 
| 657 | 
            +
            GtkStyle *gtk_clist_get_row_style (GtkCList *clist,
         | 
| 658 | 
            +
            				   gint      row);
         | 
| 659 | 
            +
             | 
| 660 | 
            +
            /* this sets a horizontal and vertical shift for drawing
         | 
| 661 | 
            +
             * the contents of a cell; it can be positive or negitive;
         | 
| 662 | 
            +
             * this is particulary useful for indenting items in a column
         | 
| 663 | 
            +
             */
         | 
| 664 | 
            +
            void gtk_clist_set_shift (GtkCList *clist,
         | 
| 665 | 
            +
            			  gint      row,
         | 
| 666 | 
            +
            			  gint      column,
         | 
| 667 | 
            +
            			  gint      vertical,
         | 
| 668 | 
            +
            			  gint      horizontal);
         | 
| 669 | 
            +
             | 
| 670 | 
            +
            /* set/get selectable flag of a single row */
         | 
| 671 | 
            +
            void gtk_clist_set_selectable (GtkCList *clist,
         | 
| 672 | 
            +
            			       gint      row,
         | 
| 673 | 
            +
            			       gboolean  selectable);
         | 
| 674 | 
            +
            gboolean gtk_clist_get_selectable (GtkCList *clist,
         | 
| 675 | 
            +
            				   gint      row);
         | 
| 676 | 
            +
             | 
| 677 | 
            +
            /* prepend/append returns the index of the row you just added,
         | 
| 678 | 
            +
             * making it easier to append and modify a row
         | 
| 679 | 
            +
             */
         | 
| 680 | 
            +
            gint gtk_clist_prepend (GtkCList    *clist,
         | 
| 681 | 
            +
            		        gchar       *text[]);
         | 
| 682 | 
            +
            gint gtk_clist_append  (GtkCList    *clist,
         | 
| 683 | 
            +
            			gchar       *text[]);
         | 
| 684 | 
            +
             | 
| 685 | 
            +
            /* inserts a row at index row and returns the row where it was
         | 
| 686 | 
            +
             * actually inserted (may be different from "row" in auto_sort mode)
         | 
| 687 | 
            +
             */
         | 
| 688 | 
            +
            gint gtk_clist_insert (GtkCList    *clist,
         | 
| 689 | 
            +
            		       gint         row,
         | 
| 690 | 
            +
            		       gchar       *text[]);
         | 
| 691 | 
            +
             | 
| 692 | 
            +
            /* removes row at index row */
         | 
| 693 | 
            +
            void gtk_clist_remove (GtkCList *clist,
         | 
| 694 | 
            +
            		       gint      row);
         | 
| 695 | 
            +
             | 
| 696 | 
            +
            /* sets a arbitrary data pointer for a given row */
         | 
| 697 | 
            +
            void gtk_clist_set_row_data (GtkCList *clist,
         | 
| 698 | 
            +
            			     gint      row,
         | 
| 699 | 
            +
            			     gpointer  data);
         | 
| 700 | 
            +
             | 
| 701 | 
            +
            /* sets a data pointer for a given row with destroy notification */
         | 
| 702 | 
            +
            void gtk_clist_set_row_data_full (GtkCList       *clist,
         | 
| 703 | 
            +
            			          gint            row,
         | 
| 704 | 
            +
            			          gpointer        data,
         | 
| 705 | 
            +
            				  GDestroyNotify  destroy);
         | 
| 706 | 
            +
             | 
| 707 | 
            +
            /* returns the data set for a row */
         | 
| 708 | 
            +
            gpointer gtk_clist_get_row_data (GtkCList *clist,
         | 
| 709 | 
            +
            				 gint      row);
         | 
| 710 | 
            +
             | 
| 711 | 
            +
            /* givin a data pointer, find the first (and hopefully only!)
         | 
| 712 | 
            +
             * row that points to that data, or -1 if none do
         | 
| 713 | 
            +
             */
         | 
| 714 | 
            +
            gint gtk_clist_find_row_from_data (GtkCList *clist,
         | 
| 715 | 
            +
            				   gpointer  data);
         | 
| 716 | 
            +
             | 
| 717 | 
            +
            /* force selection of a row */
         | 
| 718 | 
            +
            void gtk_clist_select_row (GtkCList *clist,
         | 
| 719 | 
            +
            			   gint      row,
         | 
| 720 | 
            +
            			   gint      column);
         | 
| 721 | 
            +
             | 
| 722 | 
            +
            /* force unselection of a row */
         | 
| 723 | 
            +
            void gtk_clist_unselect_row (GtkCList *clist,
         | 
| 724 | 
            +
            			     gint      row,
         | 
| 725 | 
            +
            			     gint      column);
         | 
| 726 | 
            +
             | 
| 727 | 
            +
            /* undo the last select/unselect operation */
         | 
| 728 | 
            +
            void gtk_clist_undo_selection (GtkCList *clist);
         | 
| 729 | 
            +
             | 
| 730 | 
            +
            /* clear the entire list -- this is much faster than removing
         | 
| 731 | 
            +
             * each item with gtk_clist_remove
         | 
| 732 | 
            +
             */
         | 
| 733 | 
            +
            void gtk_clist_clear (GtkCList *clist);
         | 
| 734 | 
            +
             | 
| 735 | 
            +
            /* return the row column corresponding to the x and y coordinates,
         | 
| 736 | 
            +
             * the returned values are only valid if the x and y coordinates
         | 
| 737 | 
            +
             * are respectively to a window == clist->clist_window
         | 
| 738 | 
            +
             */
         | 
| 739 | 
            +
            gint gtk_clist_get_selection_info (GtkCList *clist,
         | 
| 740 | 
            +
            			     	   gint      x,
         | 
| 741 | 
            +
            			     	   gint      y,
         | 
| 742 | 
            +
            			     	   gint     *row,
         | 
| 743 | 
            +
            			     	   gint     *column);
         | 
| 744 | 
            +
             | 
| 745 | 
            +
            /* in multiple or extended mode, select all rows */
         | 
| 746 | 
            +
            void gtk_clist_select_all (GtkCList *clist);
         | 
| 747 | 
            +
             | 
| 748 | 
            +
            /* in all modes except browse mode, deselect all rows */
         | 
| 749 | 
            +
            void gtk_clist_unselect_all (GtkCList *clist);
         | 
| 750 | 
            +
             | 
| 751 | 
            +
            /* swap the position of two rows */
         | 
| 752 | 
            +
            void gtk_clist_swap_rows (GtkCList *clist,
         | 
| 753 | 
            +
            			  gint      row1,
         | 
| 754 | 
            +
            			  gint      row2);
         | 
| 755 | 
            +
             | 
| 756 | 
            +
            /* move row from source_row position to dest_row position */
         | 
| 757 | 
            +
            void gtk_clist_row_move (GtkCList *clist,
         | 
| 758 | 
            +
            			 gint      source_row,
         | 
| 759 | 
            +
            			 gint      dest_row);
         | 
| 760 | 
            +
             | 
| 761 | 
            +
            /* sets a compare function different to the default */
         | 
| 762 | 
            +
            void gtk_clist_set_compare_func (GtkCList            *clist,
         | 
| 763 | 
            +
            				 GtkCListCompareFunc  cmp_func);
         | 
| 764 | 
            +
             | 
| 765 | 
            +
            /* the column to sort by */
         | 
| 766 | 
            +
            void gtk_clist_set_sort_column (GtkCList *clist,
         | 
| 767 | 
            +
            				gint      column);
         | 
| 768 | 
            +
             | 
| 769 | 
            +
            /* how to sort : ascending or descending */
         | 
| 770 | 
            +
            void gtk_clist_set_sort_type (GtkCList    *clist,
         | 
| 771 | 
            +
            			      GtkSortType  sort_type);
         | 
| 772 | 
            +
             | 
| 773 | 
            +
            /* sort the list with the current compare function */
         | 
| 774 | 
            +
            void gtk_clist_sort (GtkCList *clist);
         | 
| 775 | 
            +
             | 
| 776 | 
            +
            /* Automatically sort upon insertion */
         | 
| 777 | 
            +
            void gtk_clist_set_auto_sort (GtkCList *clist,
         | 
| 778 | 
            +
            			      gboolean  auto_sort);
         | 
| 779 | 
            +
             | 
| 780 | 
            +
            /* Private function for clist, ctree */
         | 
| 781 | 
            +
             | 
| 782 | 
            +
            PangoLayout *_gtk_clist_create_cell_layout (GtkCList       *clist,
         | 
| 783 | 
            +
            					    GtkCListRow    *clist_row,
         | 
| 784 | 
            +
            					    gint            column);
         | 
| 785 | 
            +
             | 
| 786 | 
            +
             | 
| 787 | 
            +
            G_END_DECLS
         | 
| 788 | 
            +
             | 
| 789 | 
            +
             | 
| 790 | 
            +
            #endif				/* __GTK_CLIST_H__ */
         | 
| 791 | 
            +
             | 
| 792 | 
            +
            #endif /* GTK_DISABLE_DEPRECATED */
         |