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,2349 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>GTK+ 2 Reference Manual: Main loop and Events</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
|
8
|
+
<link rel="up" href="gtkbase.html" title="Part II. GTK+ Core Reference">
|
9
|
+
<link rel="prev" href="gtkbase.html" title="Part II. GTK+ Core Reference">
|
10
|
+
<link rel="next" href="gtk2-Keyboard-Accelerators.html" title="Accelerator Groups">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#gtk2-General.description" class="shortcut">Description</a></span>
|
19
|
+
</td>
|
20
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
21
|
+
<td><a accesskey="u" href="gtkbase.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
22
|
+
<td><a accesskey="p" href="gtkbase.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
23
|
+
<td><a accesskey="n" href="gtk2-Keyboard-Accelerators.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
24
|
+
</tr></table>
|
25
|
+
<div class="refentry">
|
26
|
+
<a name="gtk2-General"></a><div class="titlepage"></div>
|
27
|
+
<div class="refnamediv"><table width="100%"><tr>
|
28
|
+
<td valign="top">
|
29
|
+
<h2><span class="refentrytitle"><a name="gtk2-General.top_of_page"></a>Main loop and Events</span></h2>
|
30
|
+
<p>Main loop and Events — Library initialization, main event loop, and events</p>
|
31
|
+
</td>
|
32
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
33
|
+
</tr></table></div>
|
34
|
+
<div class="refsect1">
|
35
|
+
<a name="gtk2-General.functions"></a><h2>Functions</h2>
|
36
|
+
<div class="informaltable"><table width="100%" border="0">
|
37
|
+
<colgroup>
|
38
|
+
<col width="150px" class="functions_return">
|
39
|
+
<col class="functions_name">
|
40
|
+
</colgroup>
|
41
|
+
<tbody>
|
42
|
+
<tr>
|
43
|
+
<td class="function_type">
|
44
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
45
|
+
</td>
|
46
|
+
<td class="function_name">
|
47
|
+
<a class="link" href="gtk2-General.html#gtk-set-locale" title="gtk_set_locale ()">gtk_set_locale</a> <span class="c_punctuation">()</span>
|
48
|
+
</td>
|
49
|
+
</tr>
|
50
|
+
<tr>
|
51
|
+
<td class="function_type">
|
52
|
+
<span class="returnvalue">void</span>
|
53
|
+
</td>
|
54
|
+
<td class="function_name">
|
55
|
+
<a class="link" href="gtk2-General.html#gtk-disable-setlocale" title="gtk_disable_setlocale ()">gtk_disable_setlocale</a> <span class="c_punctuation">()</span>
|
56
|
+
</td>
|
57
|
+
</tr>
|
58
|
+
<tr>
|
59
|
+
<td class="function_type">
|
60
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html#PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *
|
61
|
+
</td>
|
62
|
+
<td class="function_name">
|
63
|
+
<a class="link" href="gtk2-General.html#gtk-get-default-language" title="gtk_get_default_language ()">gtk_get_default_language</a> <span class="c_punctuation">()</span>
|
64
|
+
</td>
|
65
|
+
</tr>
|
66
|
+
<tr>
|
67
|
+
<td class="function_type">
|
68
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
69
|
+
</td>
|
70
|
+
<td class="function_name">
|
71
|
+
<a class="link" href="gtk2-General.html#gtk-parse-args" title="gtk_parse_args ()">gtk_parse_args</a> <span class="c_punctuation">()</span>
|
72
|
+
</td>
|
73
|
+
</tr>
|
74
|
+
<tr>
|
75
|
+
<td class="function_type">
|
76
|
+
<span class="returnvalue">void</span>
|
77
|
+
</td>
|
78
|
+
<td class="function_name">
|
79
|
+
<a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()">gtk_init</a> <span class="c_punctuation">()</span>
|
80
|
+
</td>
|
81
|
+
</tr>
|
82
|
+
<tr>
|
83
|
+
<td class="function_type">
|
84
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
85
|
+
</td>
|
86
|
+
<td class="function_name">
|
87
|
+
<a class="link" href="gtk2-General.html#gtk-init-check" title="gtk_init_check ()">gtk_init_check</a> <span class="c_punctuation">()</span>
|
88
|
+
</td>
|
89
|
+
</tr>
|
90
|
+
<tr>
|
91
|
+
<td class="function_type">
|
92
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
93
|
+
</td>
|
94
|
+
<td class="function_name">
|
95
|
+
<a class="link" href="gtk2-General.html#gtk-init-with-args" title="gtk_init_with_args ()">gtk_init_with_args</a> <span class="c_punctuation">()</span>
|
96
|
+
</td>
|
97
|
+
</tr>
|
98
|
+
<tr>
|
99
|
+
<td class="function_type">
|
100
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#GOptionGroup"><span class="returnvalue">GOptionGroup</span></a> *
|
101
|
+
</td>
|
102
|
+
<td class="function_name">
|
103
|
+
<a class="link" href="gtk2-General.html#gtk-get-option-group" title="gtk_get_option_group ()">gtk_get_option_group</a> <span class="c_punctuation">()</span>
|
104
|
+
</td>
|
105
|
+
</tr>
|
106
|
+
<tr>
|
107
|
+
<td class="function_type">
|
108
|
+
<span class="returnvalue">void</span>
|
109
|
+
</td>
|
110
|
+
<td class="function_name">
|
111
|
+
<a class="link" href="gtk2-General.html#gtk-exit" title="gtk_exit ()">gtk_exit</a> <span class="c_punctuation">()</span>
|
112
|
+
</td>
|
113
|
+
</tr>
|
114
|
+
<tr>
|
115
|
+
<td class="function_type">
|
116
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
117
|
+
</td>
|
118
|
+
<td class="function_name">
|
119
|
+
<a class="link" href="gtk2-General.html#gtk-events-pending" title="gtk_events_pending ()">gtk_events_pending</a> <span class="c_punctuation">()</span>
|
120
|
+
</td>
|
121
|
+
</tr>
|
122
|
+
<tr>
|
123
|
+
<td class="function_type">
|
124
|
+
<span class="returnvalue">void</span>
|
125
|
+
</td>
|
126
|
+
<td class="function_name">
|
127
|
+
<a class="link" href="gtk2-General.html#gtk-main" title="gtk_main ()">gtk_main</a> <span class="c_punctuation">()</span>
|
128
|
+
</td>
|
129
|
+
</tr>
|
130
|
+
<tr>
|
131
|
+
<td class="function_type">
|
132
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
133
|
+
</td>
|
134
|
+
<td class="function_name">
|
135
|
+
<a class="link" href="gtk2-General.html#gtk-main-level" title="gtk_main_level ()">gtk_main_level</a> <span class="c_punctuation">()</span>
|
136
|
+
</td>
|
137
|
+
</tr>
|
138
|
+
<tr>
|
139
|
+
<td class="function_type">
|
140
|
+
<span class="returnvalue">void</span>
|
141
|
+
</td>
|
142
|
+
<td class="function_name">
|
143
|
+
<a class="link" href="gtk2-General.html#gtk-main-quit" title="gtk_main_quit ()">gtk_main_quit</a> <span class="c_punctuation">()</span>
|
144
|
+
</td>
|
145
|
+
</tr>
|
146
|
+
<tr>
|
147
|
+
<td class="function_type">
|
148
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
149
|
+
</td>
|
150
|
+
<td class="function_name">
|
151
|
+
<a class="link" href="gtk2-General.html#gtk-main-iteration" title="gtk_main_iteration ()">gtk_main_iteration</a> <span class="c_punctuation">()</span>
|
152
|
+
</td>
|
153
|
+
</tr>
|
154
|
+
<tr>
|
155
|
+
<td class="function_type">
|
156
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
157
|
+
</td>
|
158
|
+
<td class="function_name">
|
159
|
+
<a class="link" href="gtk2-General.html#gtk-main-iteration-do" title="gtk_main_iteration_do ()">gtk_main_iteration_do</a> <span class="c_punctuation">()</span>
|
160
|
+
</td>
|
161
|
+
</tr>
|
162
|
+
<tr>
|
163
|
+
<td class="function_type">
|
164
|
+
<span class="returnvalue">void</span>
|
165
|
+
</td>
|
166
|
+
<td class="function_name">
|
167
|
+
<a class="link" href="gtk2-General.html#gtk-main-do-event" title="gtk_main_do_event ()">gtk_main_do_event</a> <span class="c_punctuation">()</span>
|
168
|
+
</td>
|
169
|
+
</tr>
|
170
|
+
<tr>
|
171
|
+
<td class="function_type">
|
172
|
+
<span class="returnvalue">void</span>
|
173
|
+
</td>
|
174
|
+
<td class="function_name">
|
175
|
+
<span class="c_punctuation">(</span><a class="link" href="gtk2-General.html#GtkModuleInitFunc" title="GtkModuleInitFunc ()">*GtkModuleInitFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
176
|
+
</td>
|
177
|
+
</tr>
|
178
|
+
<tr>
|
179
|
+
<td class="function_type">
|
180
|
+
<span class="returnvalue">void</span>
|
181
|
+
</td>
|
182
|
+
<td class="function_name">
|
183
|
+
<span class="c_punctuation">(</span><a class="link" href="gtk2-General.html#GtkModuleDisplayInitFunc" title="GtkModuleDisplayInitFunc ()">*GtkModuleDisplayInitFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
184
|
+
</td>
|
185
|
+
</tr>
|
186
|
+
<tr>
|
187
|
+
<td class="function_type">
|
188
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
189
|
+
</td>
|
190
|
+
<td class="function_name">
|
191
|
+
<a class="link" href="gtk2-General.html#gtk-true" title="gtk_true ()">gtk_true</a> <span class="c_punctuation">()</span>
|
192
|
+
</td>
|
193
|
+
</tr>
|
194
|
+
<tr>
|
195
|
+
<td class="function_type">
|
196
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
197
|
+
</td>
|
198
|
+
<td class="function_name">
|
199
|
+
<a class="link" href="gtk2-General.html#gtk-false" title="gtk_false ()">gtk_false</a> <span class="c_punctuation">()</span>
|
200
|
+
</td>
|
201
|
+
</tr>
|
202
|
+
<tr>
|
203
|
+
<td class="function_type">
|
204
|
+
<span class="returnvalue">void</span>
|
205
|
+
</td>
|
206
|
+
<td class="function_name">
|
207
|
+
<a class="link" href="gtk2-General.html#gtk-grab-add" title="gtk_grab_add ()">gtk_grab_add</a> <span class="c_punctuation">()</span>
|
208
|
+
</td>
|
209
|
+
</tr>
|
210
|
+
<tr>
|
211
|
+
<td class="function_type">
|
212
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
213
|
+
</td>
|
214
|
+
<td class="function_name">
|
215
|
+
<a class="link" href="gtk2-General.html#gtk-grab-get-current" title="gtk_grab_get_current ()">gtk_grab_get_current</a> <span class="c_punctuation">()</span>
|
216
|
+
</td>
|
217
|
+
</tr>
|
218
|
+
<tr>
|
219
|
+
<td class="function_type">
|
220
|
+
<span class="returnvalue">void</span>
|
221
|
+
</td>
|
222
|
+
<td class="function_name">
|
223
|
+
<a class="link" href="gtk2-General.html#gtk-grab-remove" title="gtk_grab_remove ()">gtk_grab_remove</a> <span class="c_punctuation">()</span>
|
224
|
+
</td>
|
225
|
+
</tr>
|
226
|
+
<tr>
|
227
|
+
<td class="function_type">
|
228
|
+
<span class="returnvalue">void</span>
|
229
|
+
</td>
|
230
|
+
<td class="function_name">
|
231
|
+
<a class="link" href="gtk2-General.html#gtk-init-add" title="gtk_init_add ()">gtk_init_add</a> <span class="c_punctuation">()</span>
|
232
|
+
</td>
|
233
|
+
</tr>
|
234
|
+
<tr>
|
235
|
+
<td class="function_type">
|
236
|
+
<span class="returnvalue">void</span>
|
237
|
+
</td>
|
238
|
+
<td class="function_name">
|
239
|
+
<a class="link" href="gtk2-General.html#gtk-quit-add-destroy" title="gtk_quit_add_destroy ()">gtk_quit_add_destroy</a> <span class="c_punctuation">()</span>
|
240
|
+
</td>
|
241
|
+
</tr>
|
242
|
+
<tr>
|
243
|
+
<td class="function_type">
|
244
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
245
|
+
</td>
|
246
|
+
<td class="function_name">
|
247
|
+
<a class="link" href="gtk2-General.html#gtk-quit-add" title="gtk_quit_add ()">gtk_quit_add</a> <span class="c_punctuation">()</span>
|
248
|
+
</td>
|
249
|
+
</tr>
|
250
|
+
<tr>
|
251
|
+
<td class="function_type">
|
252
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
253
|
+
</td>
|
254
|
+
<td class="function_name">
|
255
|
+
<a class="link" href="gtk2-General.html#gtk-quit-add-full" title="gtk_quit_add_full ()">gtk_quit_add_full</a> <span class="c_punctuation">()</span>
|
256
|
+
</td>
|
257
|
+
</tr>
|
258
|
+
<tr>
|
259
|
+
<td class="function_type">
|
260
|
+
<span class="returnvalue">void</span>
|
261
|
+
</td>
|
262
|
+
<td class="function_name">
|
263
|
+
<a class="link" href="gtk2-General.html#gtk-quit-remove" title="gtk_quit_remove ()">gtk_quit_remove</a> <span class="c_punctuation">()</span>
|
264
|
+
</td>
|
265
|
+
</tr>
|
266
|
+
<tr>
|
267
|
+
<td class="function_type">
|
268
|
+
<span class="returnvalue">void</span>
|
269
|
+
</td>
|
270
|
+
<td class="function_name">
|
271
|
+
<a class="link" href="gtk2-General.html#gtk-quit-remove-by-data" title="gtk_quit_remove_by_data ()">gtk_quit_remove_by_data</a> <span class="c_punctuation">()</span>
|
272
|
+
</td>
|
273
|
+
</tr>
|
274
|
+
<tr>
|
275
|
+
<td class="function_type">
|
276
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
277
|
+
</td>
|
278
|
+
<td class="function_name">
|
279
|
+
<a class="link" href="gtk2-General.html#gtk-timeout-add-full" title="gtk_timeout_add_full ()">gtk_timeout_add_full</a> <span class="c_punctuation">()</span>
|
280
|
+
</td>
|
281
|
+
</tr>
|
282
|
+
<tr>
|
283
|
+
<td class="function_type">
|
284
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
285
|
+
</td>
|
286
|
+
<td class="function_name">
|
287
|
+
<a class="link" href="gtk2-General.html#gtk-timeout-add" title="gtk_timeout_add ()">gtk_timeout_add</a> <span class="c_punctuation">()</span>
|
288
|
+
</td>
|
289
|
+
</tr>
|
290
|
+
<tr>
|
291
|
+
<td class="function_type">
|
292
|
+
<span class="returnvalue">void</span>
|
293
|
+
</td>
|
294
|
+
<td class="function_name">
|
295
|
+
<a class="link" href="gtk2-General.html#gtk-timeout-remove" title="gtk_timeout_remove ()">gtk_timeout_remove</a> <span class="c_punctuation">()</span>
|
296
|
+
</td>
|
297
|
+
</tr>
|
298
|
+
<tr>
|
299
|
+
<td class="function_type">
|
300
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
301
|
+
</td>
|
302
|
+
<td class="function_name">
|
303
|
+
<a class="link" href="gtk2-General.html#gtk-idle-add" title="gtk_idle_add ()">gtk_idle_add</a> <span class="c_punctuation">()</span>
|
304
|
+
</td>
|
305
|
+
</tr>
|
306
|
+
<tr>
|
307
|
+
<td class="function_type">
|
308
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
309
|
+
</td>
|
310
|
+
<td class="function_name">
|
311
|
+
<a class="link" href="gtk2-General.html#gtk-idle-add-priority" title="gtk_idle_add_priority ()">gtk_idle_add_priority</a> <span class="c_punctuation">()</span>
|
312
|
+
</td>
|
313
|
+
</tr>
|
314
|
+
<tr>
|
315
|
+
<td class="function_type">
|
316
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
317
|
+
</td>
|
318
|
+
<td class="function_name">
|
319
|
+
<a class="link" href="gtk2-General.html#gtk-idle-add-full" title="gtk_idle_add_full ()">gtk_idle_add_full</a> <span class="c_punctuation">()</span>
|
320
|
+
</td>
|
321
|
+
</tr>
|
322
|
+
<tr>
|
323
|
+
<td class="function_type">
|
324
|
+
<span class="returnvalue">void</span>
|
325
|
+
</td>
|
326
|
+
<td class="function_name">
|
327
|
+
<a class="link" href="gtk2-General.html#gtk-idle-remove" title="gtk_idle_remove ()">gtk_idle_remove</a> <span class="c_punctuation">()</span>
|
328
|
+
</td>
|
329
|
+
</tr>
|
330
|
+
<tr>
|
331
|
+
<td class="function_type">
|
332
|
+
<span class="returnvalue">void</span>
|
333
|
+
</td>
|
334
|
+
<td class="function_name">
|
335
|
+
<a class="link" href="gtk2-General.html#gtk-idle-remove-by-data" title="gtk_idle_remove_by_data ()">gtk_idle_remove_by_data</a> <span class="c_punctuation">()</span>
|
336
|
+
</td>
|
337
|
+
</tr>
|
338
|
+
<tr>
|
339
|
+
<td class="function_type">
|
340
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
341
|
+
</td>
|
342
|
+
<td class="function_name">
|
343
|
+
<a class="link" href="gtk2-General.html#gtk-input-add-full" title="gtk_input_add_full ()">gtk_input_add_full</a> <span class="c_punctuation">()</span>
|
344
|
+
</td>
|
345
|
+
</tr>
|
346
|
+
<tr>
|
347
|
+
<td class="function_type">
|
348
|
+
<span class="returnvalue">void</span>
|
349
|
+
</td>
|
350
|
+
<td class="function_name">
|
351
|
+
<a class="link" href="gtk2-General.html#gtk-input-remove" title="gtk_input_remove ()">gtk_input_remove</a> <span class="c_punctuation">()</span>
|
352
|
+
</td>
|
353
|
+
</tr>
|
354
|
+
<tr>
|
355
|
+
<td class="define_keyword">#define</td>
|
356
|
+
<td class="function_name"><a class="link" href="gtk2-General.html#GTK-PRIORITY-REDRAW:CAPS" title="GTK_PRIORITY_REDRAW">GTK_PRIORITY_REDRAW</a></td>
|
357
|
+
</tr>
|
358
|
+
<tr>
|
359
|
+
<td class="define_keyword">#define</td>
|
360
|
+
<td class="function_name"><a class="link" href="gtk2-General.html#GTK-PRIORITY-RESIZE:CAPS" title="GTK_PRIORITY_RESIZE">GTK_PRIORITY_RESIZE</a></td>
|
361
|
+
</tr>
|
362
|
+
<tr>
|
363
|
+
<td class="function_type">
|
364
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
365
|
+
</td>
|
366
|
+
<td class="function_name">
|
367
|
+
<a class="link" href="gtk2-General.html#gtk-key-snooper-install" title="gtk_key_snooper_install ()">gtk_key_snooper_install</a> <span class="c_punctuation">()</span>
|
368
|
+
</td>
|
369
|
+
</tr>
|
370
|
+
<tr>
|
371
|
+
<td class="function_type">
|
372
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
373
|
+
</td>
|
374
|
+
<td class="function_name">
|
375
|
+
<span class="c_punctuation">(</span><a class="link" href="gtk2-General.html#GtkKeySnoopFunc" title="GtkKeySnoopFunc ()">*GtkKeySnoopFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
376
|
+
</td>
|
377
|
+
</tr>
|
378
|
+
<tr>
|
379
|
+
<td class="function_type">
|
380
|
+
<span class="returnvalue">void</span>
|
381
|
+
</td>
|
382
|
+
<td class="function_name">
|
383
|
+
<a class="link" href="gtk2-General.html#gtk-key-snooper-remove" title="gtk_key_snooper_remove ()">gtk_key_snooper_remove</a> <span class="c_punctuation">()</span>
|
384
|
+
</td>
|
385
|
+
</tr>
|
386
|
+
<tr>
|
387
|
+
<td class="function_type">
|
388
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk2-Event-Structures.html#GdkEvent"><span class="returnvalue">GdkEvent</span></a> *
|
389
|
+
</td>
|
390
|
+
<td class="function_name">
|
391
|
+
<a class="link" href="gtk2-General.html#gtk-get-current-event" title="gtk_get_current_event ()">gtk_get_current_event</a> <span class="c_punctuation">()</span>
|
392
|
+
</td>
|
393
|
+
</tr>
|
394
|
+
<tr>
|
395
|
+
<td class="function_type">
|
396
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>
|
397
|
+
</td>
|
398
|
+
<td class="function_name">
|
399
|
+
<a class="link" href="gtk2-General.html#gtk-get-current-event-time" title="gtk_get_current_event_time ()">gtk_get_current_event_time</a> <span class="c_punctuation">()</span>
|
400
|
+
</td>
|
401
|
+
</tr>
|
402
|
+
<tr>
|
403
|
+
<td class="function_type">
|
404
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
405
|
+
</td>
|
406
|
+
<td class="function_name">
|
407
|
+
<a class="link" href="gtk2-General.html#gtk-get-current-event-state" title="gtk_get_current_event_state ()">gtk_get_current_event_state</a> <span class="c_punctuation">()</span>
|
408
|
+
</td>
|
409
|
+
</tr>
|
410
|
+
<tr>
|
411
|
+
<td class="function_type">
|
412
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
413
|
+
</td>
|
414
|
+
<td class="function_name">
|
415
|
+
<a class="link" href="gtk2-General.html#gtk-get-event-widget" title="gtk_get_event_widget ()">gtk_get_event_widget</a> <span class="c_punctuation">()</span>
|
416
|
+
</td>
|
417
|
+
</tr>
|
418
|
+
<tr>
|
419
|
+
<td class="function_type">
|
420
|
+
<span class="returnvalue">void</span>
|
421
|
+
</td>
|
422
|
+
<td class="function_name">
|
423
|
+
<a class="link" href="gtk2-General.html#gtk-propagate-event" title="gtk_propagate_event ()">gtk_propagate_event</a> <span class="c_punctuation">()</span>
|
424
|
+
</td>
|
425
|
+
</tr>
|
426
|
+
</tbody>
|
427
|
+
</table></div>
|
428
|
+
</div>
|
429
|
+
<div class="refsect1">
|
430
|
+
<a name="gtk2-General.other"></a><h2>Types and Values</h2>
|
431
|
+
<div class="informaltable"><table width="100%" border="0">
|
432
|
+
<colgroup>
|
433
|
+
<col width="150px" class="name">
|
434
|
+
<col class="description">
|
435
|
+
</colgroup>
|
436
|
+
<tbody>
|
437
|
+
<tr>
|
438
|
+
<td class="define_keyword">#define</td>
|
439
|
+
<td class="function_name"><a class="link" href="gtk2-General.html#GTK-PRIORITY-HIGH:CAPS" title="GTK_PRIORITY_HIGH">GTK_PRIORITY_HIGH</a></td>
|
440
|
+
</tr>
|
441
|
+
<tr>
|
442
|
+
<td class="define_keyword">#define</td>
|
443
|
+
<td class="function_name"><a class="link" href="gtk2-General.html#GTK-PRIORITY-INTERNAL:CAPS" title="GTK_PRIORITY_INTERNAL">GTK_PRIORITY_INTERNAL</a></td>
|
444
|
+
</tr>
|
445
|
+
<tr>
|
446
|
+
<td class="define_keyword">#define</td>
|
447
|
+
<td class="function_name"><a class="link" href="gtk2-General.html#GTK-PRIORITY-DEFAULT:CAPS" title="GTK_PRIORITY_DEFAULT">GTK_PRIORITY_DEFAULT</a></td>
|
448
|
+
</tr>
|
449
|
+
<tr>
|
450
|
+
<td class="define_keyword">#define</td>
|
451
|
+
<td class="function_name"><a class="link" href="gtk2-General.html#GTK-PRIORITY-LOW:CAPS" title="GTK_PRIORITY_LOW">GTK_PRIORITY_LOW</a></td>
|
452
|
+
</tr>
|
453
|
+
</tbody>
|
454
|
+
</table></div>
|
455
|
+
</div>
|
456
|
+
<div class="refsect1">
|
457
|
+
<a name="gtk2-General.includes"></a><h2>Includes</h2>
|
458
|
+
<pre class="synopsis">#include <gtk/gtk.h>
|
459
|
+
</pre>
|
460
|
+
</div>
|
461
|
+
<div class="refsect1">
|
462
|
+
<a name="gtk2-General.description"></a><h2>Description</h2>
|
463
|
+
<p>
|
464
|
+
Before using GTK+, you need to initialize it; initialization connects
|
465
|
+
to the window system display, and parses some standard command line
|
466
|
+
arguments. The <a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a> function initializes GTK+. <a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a> exits
|
467
|
+
the application if errors occur; to avoid this, use <a class="link" href="gtk2-General.html#gtk-init-check" title="gtk_init_check ()"><code class="function">gtk_init_check()</code></a>.
|
468
|
+
<a class="link" href="gtk2-General.html#gtk-init-check" title="gtk_init_check ()"><code class="function">gtk_init_check()</code></a> allows you to recover from a failed GTK+
|
469
|
+
initialization - you might start up your application in text mode instead.
|
470
|
+
</p>
|
471
|
+
<p>
|
472
|
+
Like all GUI toolkits, GTK+ uses an event-driven programming
|
473
|
+
model. When the user is doing nothing, GTK+ sits in the
|
474
|
+
<em class="firstterm">main loop</em> and waits for input. If the user
|
475
|
+
performs some action - say, a mouse click - then the main loop "wakes
|
476
|
+
up" and delivers an event to GTK+. GTK+ forwards the event to one or
|
477
|
+
more widgets.
|
478
|
+
</p>
|
479
|
+
<p>
|
480
|
+
When widgets receive an event, they frequently emit one or more
|
481
|
+
<em class="firstterm">signals</em>. Signals notify your program that
|
482
|
+
"something interesting happened" by invoking functions you've
|
483
|
+
connected to the signal with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-connect"><code class="function">g_signal_connect()</code></a>. Functions connected
|
484
|
+
to a signal are often termed <em class="firstterm">callbacks</em>.
|
485
|
+
</p>
|
486
|
+
<p>
|
487
|
+
When your callbacks are invoked, you would typically take some action
|
488
|
+
- for example, when an Open button is clicked you might display a
|
489
|
+
<span class="type">GtkFileSelectionDialog</span>. After a callback finishes, GTK+ will return
|
490
|
+
to the main loop and await more user input.
|
491
|
+
</p>
|
492
|
+
<div class="example">
|
493
|
+
<a name="id-1.3.2.6.6"></a><p class="title"><b>Example 2. Typical <code class="function">main</code> function for a GTK+ application</b></p>
|
494
|
+
<div class="example-contents">
|
495
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
496
|
+
<tbody>
|
497
|
+
<tr>
|
498
|
+
<td class="listing_lines" align="right"><pre>1
|
499
|
+
2
|
500
|
+
3
|
501
|
+
4
|
502
|
+
5
|
503
|
+
6
|
504
|
+
7
|
505
|
+
8
|
506
|
+
9
|
507
|
+
10
|
508
|
+
11
|
509
|
+
12
|
510
|
+
13
|
511
|
+
14
|
512
|
+
15
|
513
|
+
16
|
514
|
+
17
|
515
|
+
18</pre></td>
|
516
|
+
<td class="listing_code"><pre class="programlisting"><span class="type">int</span>
|
517
|
+
<span class="function">main</span><span class="normal"> </span><span class="symbol">(</span><span class="type">int</span><span class="normal"> argc</span><span class="symbol">,</span><span class="normal"> </span><span class="type">char</span><span class="normal"> </span><span class="symbol">**</span><span class="normal">argv</span><span class="symbol">)</span>
|
518
|
+
<span class="cbracket">{</span>
|
519
|
+
<span class="normal"> </span><span class="comment">/* Initialize i18n support */</span>
|
520
|
+
<span class="normal"> </span><span class="function"><a href="gtk2-General.html#gtk-set-locale">gtk_set_locale</a></span><span class="normal"> </span><span class="symbol">();</span>
|
521
|
+
<span class="normal"> </span><span class="comment">/* Initialize the widget set */</span>
|
522
|
+
<span class="normal"> </span><span class="function"><a href="gtk2-General.html#gtk-init">gtk_init</a></span><span class="normal"> </span><span class="symbol">(&</span><span class="normal">argc</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">argv</span><span class="symbol">);</span>
|
523
|
+
<span class="normal"> </span><span class="comment">/* Create the main window */</span>
|
524
|
+
<span class="normal"> mainwin </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkWindow.html#gtk-window-new">gtk_window_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">GTK_WINDOW_TOPLEVEL</span><span class="symbol">);</span>
|
525
|
+
<span class="normal"> </span><span class="comment">/* Set up our GUI elements */</span>
|
526
|
+
<span class="normal"> </span><span class="symbol">...</span>
|
527
|
+
<span class="normal"> </span><span class="comment">/* Show the application window */</span>
|
528
|
+
<span class="normal"> </span><span class="function"><a href="GtkWidget.html#gtk-widget-show-all">gtk_widget_show_all</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">mainwin</span><span class="symbol">);</span>
|
529
|
+
<span class="normal"> </span><span class="comment">/* Enter the main event loop, and wait for user interaction */</span>
|
530
|
+
<span class="normal"> </span><span class="function"><a href="gtk2-General.html#gtk-main">gtk_main</a></span><span class="normal"> </span><span class="symbol">();</span>
|
531
|
+
<span class="normal"> </span><span class="comment">/* The user lost interest */</span>
|
532
|
+
<span class="normal"> </span><span class="keyword">return</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
|
533
|
+
<span class="cbracket">}</span></pre></td>
|
534
|
+
</tr>
|
535
|
+
</tbody>
|
536
|
+
</table>
|
537
|
+
</div>
|
538
|
+
|
539
|
+
</div>
|
540
|
+
<br class="example-break"><p>
|
541
|
+
It's OK to use the GLib main loop directly instead of <a class="link" href="gtk2-General.html#gtk-main" title="gtk_main ()"><code class="function">gtk_main()</code></a>,
|
542
|
+
though it involves slightly more typing. See <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#GMainLoop"><span class="type">GMainLoop</span></a> in the GLib
|
543
|
+
documentation.
|
544
|
+
</p>
|
545
|
+
</div>
|
546
|
+
<div class="refsect1">
|
547
|
+
<a name="gtk2-General.functions_details"></a><h2>Functions</h2>
|
548
|
+
<div class="refsect2">
|
549
|
+
<a name="gtk-set-locale"></a><h3>gtk_set_locale ()</h3>
|
550
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
551
|
+
gtk_set_locale (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
552
|
+
<div class="warning">
|
553
|
+
<p><code class="literal">gtk_set_locale</code> has been deprecated since version 2.24 and should not be used in newly-written code.</p>
|
554
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-running.html#setlocale"><code class="function">setlocale()</code></a> directly</p>
|
555
|
+
</div>
|
556
|
+
<p>Initializes internationalization support for GTK+. <a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>
|
557
|
+
automatically does this, so there is typically no point
|
558
|
+
in calling this function.</p>
|
559
|
+
<p>If you are calling this function because you changed the locale
|
560
|
+
after GTK+ is was initialized, then calling this function
|
561
|
+
may help a bit. (Note, however, that changing the locale
|
562
|
+
after GTK+ is initialized may produce inconsistent results and
|
563
|
+
is not really supported.)</p>
|
564
|
+
<p>In detail - sets the current locale according to the
|
565
|
+
program environment. This is the same as calling the C library function
|
566
|
+
<code class="literal">setlocale (LC_ALL, "")</code> but also takes care of the
|
567
|
+
locale specific setup of the windowing system used by GDK.</p>
|
568
|
+
<div class="refsect3">
|
569
|
+
<a name="id-1.3.2.7.2.8"></a><h4>Returns</h4>
|
570
|
+
<p> a string corresponding to the locale set, typically in the
|
571
|
+
form lang_COUNTRY, where lang is an ISO-639 language code, and
|
572
|
+
COUNTRY is an ISO-3166 country code. On Unix, this form matches the
|
573
|
+
result of the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-running.html#setlocale"><code class="function">setlocale()</code></a>; it is also used on other machines, such as
|
574
|
+
Windows, where the C library returns a different result. The string is
|
575
|
+
owned by GTK+ and should not be modified or freed.</p>
|
576
|
+
<p></p>
|
577
|
+
</div>
|
578
|
+
</div>
|
579
|
+
<hr>
|
580
|
+
<div class="refsect2">
|
581
|
+
<a name="gtk-disable-setlocale"></a><h3>gtk_disable_setlocale ()</h3>
|
582
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
583
|
+
gtk_disable_setlocale (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
584
|
+
<div class="warning"><p><code class="literal">gtk_disable_setlocale</code> is deprecated and should not be used in newly-written code.</p></div>
|
585
|
+
<p>Prevents <a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>, <a class="link" href="gtk2-General.html#gtk-init-check" title="gtk_init_check ()"><code class="function">gtk_init_check()</code></a>, <a class="link" href="gtk2-General.html#gtk-init-with-args" title="gtk_init_with_args ()"><code class="function">gtk_init_with_args()</code></a> and
|
586
|
+
<a class="link" href="gtk2-General.html#gtk-parse-args" title="gtk_parse_args ()"><code class="function">gtk_parse_args()</code></a> from automatically
|
587
|
+
calling <code class="literal">setlocale (LC_ALL, "")</code>. You would
|
588
|
+
want to use this function if you wanted to set the locale for
|
589
|
+
your program to something other than the user's locale, or if
|
590
|
+
you wanted to set different values for different locale categories.</p>
|
591
|
+
<p>Most programs should not need to call this function.</p>
|
592
|
+
</div>
|
593
|
+
<hr>
|
594
|
+
<div class="refsect2">
|
595
|
+
<a name="gtk-get-default-language"></a><h3>gtk_get_default_language ()</h3>
|
596
|
+
<pre class="programlisting"><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html#PangoLanguage"><span class="returnvalue">PangoLanguage</span></a> *
|
597
|
+
gtk_get_default_language (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
598
|
+
<p>Returns the <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html#PangoLanguage"><span class="type">PangoLanguage</span></a> for the default language currently in
|
599
|
+
effect. (Note that this can change over the life of an
|
600
|
+
application.) The default language is derived from the current
|
601
|
+
locale. It determines, for example, whether GTK+ uses the
|
602
|
+
right-to-left or left-to-right text direction.</p>
|
603
|
+
<p>This function is equivalent to <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html#pango-language-get-default"><code class="function">pango_language_get_default()</code></a>. See
|
604
|
+
that function for details.</p>
|
605
|
+
<div class="refsect3">
|
606
|
+
<a name="id-1.3.2.7.4.6"></a><h4>Returns</h4>
|
607
|
+
<p> the default language as a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html#PangoLanguage"><span class="type">PangoLanguage</span></a>, must not be
|
608
|
+
freed</p>
|
609
|
+
<p></p>
|
610
|
+
</div>
|
611
|
+
</div>
|
612
|
+
<hr>
|
613
|
+
<div class="refsect2">
|
614
|
+
<a name="gtk-parse-args"></a><h3>gtk_parse_args ()</h3>
|
615
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
616
|
+
gtk_parse_args (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
|
617
|
+
<em class="parameter"><code><span class="type">char</span> ***argv</code></em>);</pre>
|
618
|
+
<p>Parses command line arguments, and initializes global
|
619
|
+
attributes of GTK+, but does not actually open a connection
|
620
|
+
to a display. (See <a href="http://library.gnome.org/devel/gdk3/GdkDisplay.html#gdk-display-open"><code class="function">gdk_display_open()</code></a>, <a href="http://library.gnome.org/devel/gdk3/gdk2-General.html#gdk-get-display-arg-name"><code class="function">gdk_get_display_arg_name()</code></a>)</p>
|
621
|
+
<p>Any arguments used by GTK+ or GDK are removed from the array and
|
622
|
+
<em class="parameter"><code>argc</code></em>
|
623
|
+
and <em class="parameter"><code>argv</code></em>
|
624
|
+
are updated accordingly.</p>
|
625
|
+
<p>There is no need to call this function explicitely if you are using
|
626
|
+
<a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>, or <a class="link" href="gtk2-General.html#gtk-init-check" title="gtk_init_check ()"><code class="function">gtk_init_check()</code></a>.</p>
|
627
|
+
<div class="refsect3">
|
628
|
+
<a name="id-1.3.2.7.5.7"></a><h4>Parameters</h4>
|
629
|
+
<div class="informaltable"><table width="100%" border="0">
|
630
|
+
<colgroup>
|
631
|
+
<col width="150px" class="parameters_name">
|
632
|
+
<col class="parameters_description">
|
633
|
+
<col width="200px" class="parameters_annotations">
|
634
|
+
</colgroup>
|
635
|
+
<tbody>
|
636
|
+
<tr>
|
637
|
+
<td class="parameter_name"><p>argc</p></td>
|
638
|
+
<td class="parameter_description"><p> a pointer to the number of command line arguments. </p></td>
|
639
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
|
640
|
+
</tr>
|
641
|
+
<tr>
|
642
|
+
<td class="parameter_name"><p>argv</p></td>
|
643
|
+
<td class="parameter_description"><p> a pointer to the array of
|
644
|
+
command line arguments. </p></td>
|
645
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc][<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
|
646
|
+
</tr>
|
647
|
+
</tbody>
|
648
|
+
</table></div>
|
649
|
+
</div>
|
650
|
+
<div class="refsect3">
|
651
|
+
<a name="id-1.3.2.7.5.8"></a><h4>Returns</h4>
|
652
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if initialization succeeded, otherwise <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
|
653
|
+
<p></p>
|
654
|
+
</div>
|
655
|
+
</div>
|
656
|
+
<hr>
|
657
|
+
<div class="refsect2">
|
658
|
+
<a name="gtk-init"></a><h3>gtk_init ()</h3>
|
659
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
660
|
+
gtk_init (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
|
661
|
+
<em class="parameter"><code><span class="type">char</span> ***argv</code></em>);</pre>
|
662
|
+
<p>Call this function before using any other GTK+ functions in your GUI
|
663
|
+
applications. It will initialize everything needed to operate the
|
664
|
+
toolkit and parses some standard command line options.</p>
|
665
|
+
<p><em class="parameter"><code>argc</code></em>
|
666
|
+
and <em class="parameter"><code>argv</code></em>
|
667
|
+
are adjusted accordingly so your own code will
|
668
|
+
never see those standard arguments.</p>
|
669
|
+
<p>Note that there are some alternative ways to initialize GTK+:
|
670
|
+
if you are calling <a class="link" href="gtk2-General.html#gtk-parse-args" title="gtk_parse_args ()"><code class="function">gtk_parse_args()</code></a>, <a class="link" href="gtk2-General.html#gtk-init-check" title="gtk_init_check ()"><code class="function">gtk_init_check()</code></a>,
|
671
|
+
<a class="link" href="gtk2-General.html#gtk-init-with-args" title="gtk_init_with_args ()"><code class="function">gtk_init_with_args()</code></a> or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#g-option-context-parse"><code class="function">g_option_context_parse()</code></a> with
|
672
|
+
the option group returned by <a class="link" href="gtk2-General.html#gtk-get-option-group" title="gtk_get_option_group ()"><code class="function">gtk_get_option_group()</code></a>,
|
673
|
+
you <span class="emphasis"><em>don't</em></span> have to call <a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>.</p>
|
674
|
+
<div class="note"><p>
|
675
|
+
This function will terminate your program if it was unable to
|
676
|
+
initialize the windowing system for some reason. If you want
|
677
|
+
your program to fall back to a textual interface you want to
|
678
|
+
call <a class="link" href="gtk2-General.html#gtk-init-check" title="gtk_init_check ()"><code class="function">gtk_init_check()</code></a> instead.
|
679
|
+
</p></div>
|
680
|
+
<div class="note"><p>
|
681
|
+
Since 2.18, GTK+ calls <code class="literal">signal (SIGPIPE, SIG_IGN)</code>
|
682
|
+
during initialization, to ignore SIGPIPE signals, since these are
|
683
|
+
almost never wanted in graphical applications. If you do need to
|
684
|
+
handle SIGPIPE for some reason, reset the handler after <a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>,
|
685
|
+
but notice that other libraries (e.g. libdbus or gvfs) might do
|
686
|
+
similar things.
|
687
|
+
</p></div>
|
688
|
+
<p>
|
689
|
+
</p>
|
690
|
+
<p></p>
|
691
|
+
<div class="note"><p>
|
692
|
+
</p></div>
|
693
|
+
<div class="refsect3">
|
694
|
+
<a name="id-1.3.2.7.6.11"></a><h4>Parameters</h4>
|
695
|
+
<div class="informaltable"><table width="100%" border="0">
|
696
|
+
<colgroup>
|
697
|
+
<col width="150px" class="parameters_name">
|
698
|
+
<col class="parameters_description">
|
699
|
+
<col width="200px" class="parameters_annotations">
|
700
|
+
</colgroup>
|
701
|
+
<tbody>
|
702
|
+
<tr>
|
703
|
+
<td class="parameter_name"><p>argc</p></td>
|
704
|
+
<td class="parameter_description"><p> Address of the <em class="parameter"><code>argc</code></em> parameter of
|
705
|
+
your <code class="function">main()</code> function. Changed if any arguments were handled. </p></td>
|
706
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
|
707
|
+
</tr>
|
708
|
+
<tr>
|
709
|
+
<td class="parameter_name"><p>argv</p></td>
|
710
|
+
<td class="parameter_description">
|
711
|
+
<p> Address of the</p>
|
712
|
+
<em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>. Any options
|
713
|
+
<p> understood by GTK+ are stripped before return. </p>
|
714
|
+
</td>
|
715
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc][<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
716
|
+
</tr>
|
717
|
+
</tbody>
|
718
|
+
</table></div>
|
719
|
+
</div>
|
720
|
+
</div>
|
721
|
+
<hr>
|
722
|
+
<div class="refsect2">
|
723
|
+
<a name="gtk-init-check"></a><h3>gtk_init_check ()</h3>
|
724
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
725
|
+
gtk_init_check (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
|
726
|
+
<em class="parameter"><code><span class="type">char</span> ***argv</code></em>);</pre>
|
727
|
+
<p>This function does the same work as <a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a> with only
|
728
|
+
a single change: It does not terminate the program if the GUI can't be
|
729
|
+
initialized. Instead it returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> on failure.</p>
|
730
|
+
<p>This way the application can fall back to some other means of communication
|
731
|
+
with the user - for example a curses or command line interface.</p>
|
732
|
+
<div class="refsect3">
|
733
|
+
<a name="id-1.3.2.7.7.6"></a><h4>Parameters</h4>
|
734
|
+
<div class="informaltable"><table width="100%" border="0">
|
735
|
+
<colgroup>
|
736
|
+
<col width="150px" class="parameters_name">
|
737
|
+
<col class="parameters_description">
|
738
|
+
<col width="200px" class="parameters_annotations">
|
739
|
+
</colgroup>
|
740
|
+
<tbody>
|
741
|
+
<tr>
|
742
|
+
<td class="parameter_name"><p>argc</p></td>
|
743
|
+
<td class="parameter_description"><p> Address of the <em class="parameter"><code>argc</code></em> parameter of your
|
744
|
+
<code class="function">main()</code> function. Changed if any arguments were handled. </p></td>
|
745
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
|
746
|
+
</tr>
|
747
|
+
<tr>
|
748
|
+
<td class="parameter_name"><p>argv</p></td>
|
749
|
+
<td class="parameter_description"><p> Address of the <em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>.
|
750
|
+
Any parameters understood by <a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a> are stripped before return. </p></td>
|
751
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc][<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
752
|
+
</tr>
|
753
|
+
</tbody>
|
754
|
+
</table></div>
|
755
|
+
</div>
|
756
|
+
<div class="refsect3">
|
757
|
+
<a name="id-1.3.2.7.7.7"></a><h4>Returns</h4>
|
758
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the GUI has been successfully initialized,
|
759
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
760
|
+
<p></p>
|
761
|
+
</div>
|
762
|
+
</div>
|
763
|
+
<hr>
|
764
|
+
<div class="refsect2">
|
765
|
+
<a name="gtk-init-with-args"></a><h3>gtk_init_with_args ()</h3>
|
766
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
767
|
+
gtk_init_with_args (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
|
768
|
+
<em class="parameter"><code><span class="type">char</span> ***argv</code></em>,
|
769
|
+
<em class="parameter"><code>const <span class="type">char</span> *parameter_string</code></em>,
|
770
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#GOptionEntry"><span class="type">GOptionEntry</span></a> *entries</code></em>,
|
771
|
+
<em class="parameter"><code>const <span class="type">char</span> *translation_domain</code></em>,
|
772
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
773
|
+
<p>This function does the same work as <a class="link" href="gtk2-General.html#gtk-init-check" title="gtk_init_check ()"><code class="function">gtk_init_check()</code></a>.
|
774
|
+
Additionally, it allows you to add your own commandline options,
|
775
|
+
and it automatically generates nicely formatted
|
776
|
+
<code class="option">--help</code> output. Note that your program will
|
777
|
+
be terminated after writing out the help output.</p>
|
778
|
+
<div class="refsect3">
|
779
|
+
<a name="id-1.3.2.7.8.5"></a><h4>Parameters</h4>
|
780
|
+
<div class="informaltable"><table width="100%" border="0">
|
781
|
+
<colgroup>
|
782
|
+
<col width="150px" class="parameters_name">
|
783
|
+
<col class="parameters_description">
|
784
|
+
<col width="200px" class="parameters_annotations">
|
785
|
+
</colgroup>
|
786
|
+
<tbody>
|
787
|
+
<tr>
|
788
|
+
<td class="parameter_name"><p>argc</p></td>
|
789
|
+
<td class="parameter_description"><p>a pointer to the number of command line arguments.</p></td>
|
790
|
+
<td class="parameter_annotations"> </td>
|
791
|
+
</tr>
|
792
|
+
<tr>
|
793
|
+
<td class="parameter_name"><p>argv</p></td>
|
794
|
+
<td class="parameter_description"><p> a pointer to the array of
|
795
|
+
command line arguments. </p></td>
|
796
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc]</span></td>
|
797
|
+
</tr>
|
798
|
+
<tr>
|
799
|
+
<td class="parameter_name"><p>parameter_string</p></td>
|
800
|
+
<td class="parameter_description"><p>a string which is displayed in
|
801
|
+
the first line of <code class="option">--help</code> output, after
|
802
|
+
<code class="literal"><em class="replaceable"><code>programname</code></em> [OPTION...]</code></p></td>
|
803
|
+
<td class="parameter_annotations"> </td>
|
804
|
+
</tr>
|
805
|
+
<tr>
|
806
|
+
<td class="parameter_name"><p>entries</p></td>
|
807
|
+
<td class="parameter_description"><p> a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array
|
808
|
+
of <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#GOptionEntry"><span class="type">GOptionEntry</span></a>s describing the options of your program. </p></td>
|
809
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1]</span></td>
|
810
|
+
</tr>
|
811
|
+
<tr>
|
812
|
+
<td class="parameter_name"><p>translation_domain</p></td>
|
813
|
+
<td class="parameter_description"><p>a translation domain to use for translating
|
814
|
+
the <code class="option">--help</code> output for the options in <em class="parameter"><code>entries</code></em>
|
815
|
+
with <code class="function">gettext()</code>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
816
|
+
<td class="parameter_annotations"> </td>
|
817
|
+
</tr>
|
818
|
+
<tr>
|
819
|
+
<td class="parameter_name"><p>error</p></td>
|
820
|
+
<td class="parameter_description"><p>a return location for errors </p></td>
|
821
|
+
<td class="parameter_annotations"> </td>
|
822
|
+
</tr>
|
823
|
+
</tbody>
|
824
|
+
</table></div>
|
825
|
+
</div>
|
826
|
+
<div class="refsect3">
|
827
|
+
<a name="id-1.3.2.7.8.6"></a><h4>Returns</h4>
|
828
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the GUI has been successfully initialized,
|
829
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
830
|
+
<p></p>
|
831
|
+
</div>
|
832
|
+
<p class="since">Since 2.6</p>
|
833
|
+
</div>
|
834
|
+
<hr>
|
835
|
+
<div class="refsect2">
|
836
|
+
<a name="gtk-get-option-group"></a><h3>gtk_get_option_group ()</h3>
|
837
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#GOptionGroup"><span class="returnvalue">GOptionGroup</span></a> *
|
838
|
+
gtk_get_option_group (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> open_default_display</code></em>);</pre>
|
839
|
+
<p>Returns a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#GOptionGroup"><span class="type">GOptionGroup</span></a> for the commandline arguments recognized
|
840
|
+
by GTK+ and GDK. You should add this group to your <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#GOptionContext"><span class="type">GOptionContext</span></a>
|
841
|
+
with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#g-option-context-add-group"><code class="function">g_option_context_add_group()</code></a>, if you are using
|
842
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#g-option-context-parse"><code class="function">g_option_context_parse()</code></a> to parse your commandline arguments.</p>
|
843
|
+
<div class="refsect3">
|
844
|
+
<a name="id-1.3.2.7.9.5"></a><h4>Parameters</h4>
|
845
|
+
<div class="informaltable"><table width="100%" border="0">
|
846
|
+
<colgroup>
|
847
|
+
<col width="150px" class="parameters_name">
|
848
|
+
<col class="parameters_description">
|
849
|
+
<col width="200px" class="parameters_annotations">
|
850
|
+
</colgroup>
|
851
|
+
<tbody><tr>
|
852
|
+
<td class="parameter_name"><p>open_default_display</p></td>
|
853
|
+
<td class="parameter_description"><p>whether to open the default display
|
854
|
+
when parsing the commandline arguments</p></td>
|
855
|
+
<td class="parameter_annotations"> </td>
|
856
|
+
</tr></tbody>
|
857
|
+
</table></div>
|
858
|
+
</div>
|
859
|
+
<div class="refsect3">
|
860
|
+
<a name="id-1.3.2.7.9.6"></a><h4>Returns</h4>
|
861
|
+
<p> a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html#GOptionGroup"><span class="type">GOptionGroup</span></a> for the commandline arguments recognized
|
862
|
+
by GTK+</p>
|
863
|
+
<p></p>
|
864
|
+
</div>
|
865
|
+
<p class="since">Since 2.6</p>
|
866
|
+
</div>
|
867
|
+
<hr>
|
868
|
+
<div class="refsect2">
|
869
|
+
<a name="gtk-exit"></a><h3>gtk_exit ()</h3>
|
870
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
871
|
+
gtk_exit (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> error_code</code></em>);</pre>
|
872
|
+
<div class="warning">
|
873
|
+
<p><code class="literal">gtk_exit</code> is deprecated and should not be used in newly-written code.</p>
|
874
|
+
<p>Use the standard <code class="function">exit()</code> function instead.</p>
|
875
|
+
</div>
|
876
|
+
<p>
|
877
|
+
Terminates the program and returns the given exit code to the caller.
|
878
|
+
This function will shut down the GUI and free all resources allocated
|
879
|
+
for GTK+.
|
880
|
+
</p>
|
881
|
+
<div class="refsect3">
|
882
|
+
<a name="id-1.3.2.7.10.6"></a><h4>Parameters</h4>
|
883
|
+
<div class="informaltable"><table width="100%" border="0">
|
884
|
+
<colgroup>
|
885
|
+
<col width="150px" class="parameters_name">
|
886
|
+
<col class="parameters_description">
|
887
|
+
<col width="200px" class="parameters_annotations">
|
888
|
+
</colgroup>
|
889
|
+
<tbody><tr>
|
890
|
+
<td class="parameter_name"><p>error_code</p></td>
|
891
|
+
<td class="parameter_description"><p>Return value to pass to the caller. This is dependent on the
|
892
|
+
target system but at least on Unix systems <code class="literal">0</code> means success.</p></td>
|
893
|
+
<td class="parameter_annotations"> </td>
|
894
|
+
</tr></tbody>
|
895
|
+
</table></div>
|
896
|
+
</div>
|
897
|
+
</div>
|
898
|
+
<hr>
|
899
|
+
<div class="refsect2">
|
900
|
+
<a name="gtk-events-pending"></a><h3>gtk_events_pending ()</h3>
|
901
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
902
|
+
gtk_events_pending (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
903
|
+
<p>
|
904
|
+
Checks if any events are pending. This can be used to update the GUI
|
905
|
+
and invoke timeouts etc. while doing some time intensive computation.
|
906
|
+
</p>
|
907
|
+
<div class="example">
|
908
|
+
<a name="id-1.3.2.7.11.5"></a><p class="title"><b>Example 3. Updating the GUI during a long computation.</b></p>
|
909
|
+
<div class="example-contents">
|
910
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
911
|
+
<tbody>
|
912
|
+
<tr>
|
913
|
+
<td class="listing_lines" align="right"><pre>1
|
914
|
+
2
|
915
|
+
3
|
916
|
+
4
|
917
|
+
5
|
918
|
+
6</pre></td>
|
919
|
+
<td class="listing_code"><pre class="programlisting"><span class="comment">/* computation going on */</span>
|
920
|
+
<span class="symbol">...</span>
|
921
|
+
<span class="normal"> </span><span class="keyword">while</span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="gtk2-General.html#gtk-events-pending">gtk_events_pending</a></span><span class="normal"> </span><span class="symbol">())</span>
|
922
|
+
<span class="normal"> </span><span class="function"><a href="gtk2-General.html#gtk-main-iteration">gtk_main_iteration</a></span><span class="normal"> </span><span class="symbol">();</span>
|
923
|
+
<span class="symbol">...</span>
|
924
|
+
<span class="comment">/* computation continued */</span></pre></td>
|
925
|
+
</tr>
|
926
|
+
</tbody>
|
927
|
+
</table>
|
928
|
+
</div>
|
929
|
+
|
930
|
+
</div>
|
931
|
+
<br class="example-break"><div class="refsect3">
|
932
|
+
<a name="id-1.3.2.7.11.6"></a><h4>Returns</h4>
|
933
|
+
<p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if any events are pending, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
934
|
+
<p></p>
|
935
|
+
</div>
|
936
|
+
</div>
|
937
|
+
<hr>
|
938
|
+
<div class="refsect2">
|
939
|
+
<a name="gtk-main"></a><h3>gtk_main ()</h3>
|
940
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
941
|
+
gtk_main (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
942
|
+
<p>
|
943
|
+
Runs the main loop until <a class="link" href="gtk2-General.html#gtk-main-quit" title="gtk_main_quit ()"><code class="function">gtk_main_quit()</code></a> is called. You can nest calls to
|
944
|
+
<a class="link" href="gtk2-General.html#gtk-main" title="gtk_main ()"><code class="function">gtk_main()</code></a>. In that case <a class="link" href="gtk2-General.html#gtk-main-quit" title="gtk_main_quit ()"><code class="function">gtk_main_quit()</code></a> will make the innermost invocation
|
945
|
+
of the main loop return.
|
946
|
+
</p>
|
947
|
+
</div>
|
948
|
+
<hr>
|
949
|
+
<div class="refsect2">
|
950
|
+
<a name="gtk-main-level"></a><h3>gtk_main_level ()</h3>
|
951
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
952
|
+
gtk_main_level (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
953
|
+
<p>
|
954
|
+
Asks for the current nesting level of the main loop. This can be useful
|
955
|
+
when calling <a class="link" href="gtk2-General.html#gtk-quit-add" title="gtk_quit_add ()"><code class="function">gtk_quit_add()</code></a>.
|
956
|
+
</p>
|
957
|
+
<div class="refsect3">
|
958
|
+
<a name="id-1.3.2.7.13.5"></a><h4>Returns</h4>
|
959
|
+
<p>the nesting level of the current invocation of the main loop.</p>
|
960
|
+
<p></p>
|
961
|
+
</div>
|
962
|
+
</div>
|
963
|
+
<hr>
|
964
|
+
<div class="refsect2">
|
965
|
+
<a name="gtk-main-quit"></a><h3>gtk_main_quit ()</h3>
|
966
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
967
|
+
gtk_main_quit (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
968
|
+
<p>
|
969
|
+
Makes the innermost invocation of the main loop return when it regains
|
970
|
+
control.
|
971
|
+
</p>
|
972
|
+
</div>
|
973
|
+
<hr>
|
974
|
+
<div class="refsect2">
|
975
|
+
<a name="gtk-main-iteration"></a><h3>gtk_main_iteration ()</h3>
|
976
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
977
|
+
gtk_main_iteration (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
978
|
+
<p>
|
979
|
+
Runs a single iteration of the mainloop. If no events are waiting to be
|
980
|
+
processed GTK+ will block until the next event is noticed. If you don't
|
981
|
+
want to block look at <a class="link" href="gtk2-General.html#gtk-main-iteration-do" title="gtk_main_iteration_do ()"><code class="function">gtk_main_iteration_do()</code></a> or check if any events are
|
982
|
+
pending with <a class="link" href="gtk2-General.html#gtk-events-pending" title="gtk_events_pending ()"><code class="function">gtk_events_pending()</code></a> first.
|
983
|
+
</p>
|
984
|
+
<div class="refsect3">
|
985
|
+
<a name="id-1.3.2.7.15.5"></a><h4>Returns</h4>
|
986
|
+
<p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <a class="link" href="gtk2-General.html#gtk-main-quit" title="gtk_main_quit ()"><code class="function">gtk_main_quit()</code></a> has been called for the innermost mainloop.</p>
|
987
|
+
<p></p>
|
988
|
+
</div>
|
989
|
+
</div>
|
990
|
+
<hr>
|
991
|
+
<div class="refsect2">
|
992
|
+
<a name="gtk-main-iteration-do"></a><h3>gtk_main_iteration_do ()</h3>
|
993
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
994
|
+
gtk_main_iteration_do (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blocking</code></em>);</pre>
|
995
|
+
<p>
|
996
|
+
Runs a single iteration of the mainloop. If no events are available either
|
997
|
+
return or block dependent on the value of <em class="parameter"><code>blocking</code></em>.
|
998
|
+
</p>
|
999
|
+
<div class="refsect3">
|
1000
|
+
<a name="id-1.3.2.7.16.5"></a><h4>Parameters</h4>
|
1001
|
+
<div class="informaltable"><table width="100%" border="0">
|
1002
|
+
<colgroup>
|
1003
|
+
<col width="150px" class="parameters_name">
|
1004
|
+
<col class="parameters_description">
|
1005
|
+
<col width="200px" class="parameters_annotations">
|
1006
|
+
</colgroup>
|
1007
|
+
<tbody><tr>
|
1008
|
+
<td class="parameter_name"><p>blocking</p></td>
|
1009
|
+
<td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if you want GTK+ to block if no events are pending.</p></td>
|
1010
|
+
<td class="parameter_annotations"> </td>
|
1011
|
+
</tr></tbody>
|
1012
|
+
</table></div>
|
1013
|
+
</div>
|
1014
|
+
<div class="refsect3">
|
1015
|
+
<a name="id-1.3.2.7.16.6"></a><h4>Returns</h4>
|
1016
|
+
<p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <a class="link" href="gtk2-General.html#gtk-main-quit" title="gtk_main_quit ()"><code class="function">gtk_main_quit()</code></a> has been called for the innermost mainloop.</p>
|
1017
|
+
<p></p>
|
1018
|
+
</div>
|
1019
|
+
</div>
|
1020
|
+
<hr>
|
1021
|
+
<div class="refsect2">
|
1022
|
+
<a name="gtk-main-do-event"></a><h3>gtk_main_do_event ()</h3>
|
1023
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1024
|
+
gtk_main_do_event (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>);</pre>
|
1025
|
+
<p>
|
1026
|
+
Processes a single GDK event. This is public only to allow filtering of events
|
1027
|
+
between GDK and GTK+. You will not usually need to call this function directly.
|
1028
|
+
</p>
|
1029
|
+
<p>
|
1030
|
+
While you should not call this function directly, you might want to know
|
1031
|
+
how exactly events are handled. So here is what this function does with
|
1032
|
+
the event:
|
1033
|
+
</p>
|
1034
|
+
<div class="orderedlist"><ol class="orderedlist" type="1">
|
1035
|
+
<li class="listitem"><p>
|
1036
|
+
Compress enter/leave notify events. If the event passed build an
|
1037
|
+
enter/leave pair together with the next event (peeked from GDK)
|
1038
|
+
both events are thrown away. This is to avoid a backlog of (de-)highlighting
|
1039
|
+
widgets crossed by the pointer.
|
1040
|
+
</p></li>
|
1041
|
+
<li class="listitem"><p>
|
1042
|
+
Find the widget which got the event. If the widget can't be determined
|
1043
|
+
the event is thrown away unless it belongs to a INCR transaction. In that
|
1044
|
+
case it is passed to <code class="function">gtk_selection_incr_event()</code>.
|
1045
|
+
</p></li>
|
1046
|
+
<li class="listitem"><p>
|
1047
|
+
Then the event is passed on a stack so you can query the currently handled
|
1048
|
+
event with <a class="link" href="gtk2-General.html#gtk-get-current-event" title="gtk_get_current_event ()"><code class="function">gtk_get_current_event()</code></a>.
|
1049
|
+
</p></li>
|
1050
|
+
<li class="listitem">
|
1051
|
+
<p>
|
1052
|
+
The event is sent to a widget. If a grab is active all events for
|
1053
|
+
widgets that are not in the contained in the grab widget are sent to the
|
1054
|
+
latter with a few exceptions:
|
1055
|
+
</p>
|
1056
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
1057
|
+
<li class="listitem"><p>
|
1058
|
+
Deletion and destruction events are still sent to the event widget for
|
1059
|
+
obvious reasons.
|
1060
|
+
</p></li>
|
1061
|
+
<li class="listitem"><p>
|
1062
|
+
Events which directly relate to the visual representation of the event
|
1063
|
+
widget.
|
1064
|
+
</p></li>
|
1065
|
+
<li class="listitem"><p>
|
1066
|
+
Leave events are delivered to the event widget if there was an enter
|
1067
|
+
event delivered to it before without the paired leave event.
|
1068
|
+
</p></li>
|
1069
|
+
<li class="listitem"><p>
|
1070
|
+
Drag events are not redirected because it is unclear what the semantics
|
1071
|
+
of that would be.
|
1072
|
+
</p></li>
|
1073
|
+
</ul></div>
|
1074
|
+
<p>
|
1075
|
+
Another point of interest might be that all key events are first passed
|
1076
|
+
through the key snooper functions if there are any. Read the description
|
1077
|
+
of <a class="link" href="gtk2-General.html#gtk-key-snooper-install" title="gtk_key_snooper_install ()"><code class="function">gtk_key_snooper_install()</code></a> if you need this feature.
|
1078
|
+
</p>
|
1079
|
+
</li>
|
1080
|
+
<li class="listitem"><p>
|
1081
|
+
After finishing the delivery the event is popped from the event stack.
|
1082
|
+
</p></li>
|
1083
|
+
</ol></div>
|
1084
|
+
<div class="refsect3">
|
1085
|
+
<a name="id-1.3.2.7.17.7"></a><h4>Parameters</h4>
|
1086
|
+
<div class="informaltable"><table width="100%" border="0">
|
1087
|
+
<colgroup>
|
1088
|
+
<col width="150px" class="parameters_name">
|
1089
|
+
<col class="parameters_description">
|
1090
|
+
<col width="200px" class="parameters_annotations">
|
1091
|
+
</colgroup>
|
1092
|
+
<tbody><tr>
|
1093
|
+
<td class="parameter_name"><p>event</p></td>
|
1094
|
+
<td class="parameter_description"><p>An event to process (normally) passed by GDK.</p></td>
|
1095
|
+
<td class="parameter_annotations"> </td>
|
1096
|
+
</tr></tbody>
|
1097
|
+
</table></div>
|
1098
|
+
</div>
|
1099
|
+
</div>
|
1100
|
+
<hr>
|
1101
|
+
<div class="refsect2">
|
1102
|
+
<a name="GtkModuleInitFunc"></a><h3>GtkModuleInitFunc ()</h3>
|
1103
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1104
|
+
<span class="c_punctuation">(</span>*GtkModuleInitFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *argc</code></em>,
|
1105
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> ***argv</code></em>);</pre>
|
1106
|
+
<p>
|
1107
|
+
Each GTK+ module must have a function <code class="function">gtk_module_init()</code> with this prototype.
|
1108
|
+
This function is called after loading the module with the <em class="parameter"><code>argc</code></em> and <em class="parameter"><code>argv</code></em>
|
1109
|
+
cleaned from any arguments that GTK+ handles itself.
|
1110
|
+
</p>
|
1111
|
+
<div class="refsect3">
|
1112
|
+
<a name="id-1.3.2.7.18.5"></a><h4>Parameters</h4>
|
1113
|
+
<div class="informaltable"><table width="100%" border="0">
|
1114
|
+
<colgroup>
|
1115
|
+
<col width="150px" class="parameters_name">
|
1116
|
+
<col class="parameters_description">
|
1117
|
+
<col width="200px" class="parameters_annotations">
|
1118
|
+
</colgroup>
|
1119
|
+
<tbody>
|
1120
|
+
<tr>
|
1121
|
+
<td class="parameter_name"><p>argc</p></td>
|
1122
|
+
<td class="parameter_description"><p>Pointer to the number of arguments remaining after <a class="link" href="gtk2-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>.</p></td>
|
1123
|
+
<td class="parameter_annotations"> </td>
|
1124
|
+
</tr>
|
1125
|
+
<tr>
|
1126
|
+
<td class="parameter_name"><p>argv</p></td>
|
1127
|
+
<td class="parameter_description"><p>Points to the argument vector.</p></td>
|
1128
|
+
<td class="parameter_annotations"> </td>
|
1129
|
+
</tr>
|
1130
|
+
</tbody>
|
1131
|
+
</table></div>
|
1132
|
+
</div>
|
1133
|
+
</div>
|
1134
|
+
<hr>
|
1135
|
+
<div class="refsect2">
|
1136
|
+
<a name="GtkModuleDisplayInitFunc"></a><h3>GtkModuleDisplayInitFunc ()</h3>
|
1137
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1138
|
+
<span class="c_punctuation">(</span>*GtkModuleDisplayInitFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkDisplay.html"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
|
1139
|
+
<p>
|
1140
|
+
</p>
|
1141
|
+
<p class="since">Since 2.2</p>
|
1142
|
+
</div>
|
1143
|
+
<hr>
|
1144
|
+
<div class="refsect2">
|
1145
|
+
<a name="gtk-true"></a><h3>gtk_true ()</h3>
|
1146
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1147
|
+
gtk_true (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1148
|
+
<p>
|
1149
|
+
All this function does it to return <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>. This can be useful for example
|
1150
|
+
if you want to inhibit the deletion of a window. Of course you should
|
1151
|
+
not do this as the user expects a reaction from clicking the close
|
1152
|
+
icon of the window...
|
1153
|
+
</p>
|
1154
|
+
<div class="example">
|
1155
|
+
<a name="id-1.3.2.7.20.5"></a><p class="title"><b>Example 4. A persistent window</b></p>
|
1156
|
+
<div class="example-contents">
|
1157
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1158
|
+
<tbody>
|
1159
|
+
<tr>
|
1160
|
+
<td class="listing_lines" align="right"><pre>1
|
1161
|
+
2
|
1162
|
+
3
|
1163
|
+
4
|
1164
|
+
5
|
1165
|
+
6
|
1166
|
+
7
|
1167
|
+
8
|
1168
|
+
9
|
1169
|
+
10
|
1170
|
+
11
|
1171
|
+
12
|
1172
|
+
13
|
1173
|
+
14
|
1174
|
+
15
|
1175
|
+
16
|
1176
|
+
17
|
1177
|
+
18
|
1178
|
+
19</pre></td>
|
1179
|
+
<td class="listing_code"><pre class="programlisting"><span class="preproc">#</span><span class="normal">#include </span><span class="symbol"><</span><span class="normal">gtk</span><span class="symbol">/</span><span class="normal">gtk</span><span class="symbol">.</span><span class="normal">h</span><span class="symbol">></span>
|
1180
|
+
<span class="type">int</span>
|
1181
|
+
<span class="function">main</span><span class="normal"> </span><span class="symbol">(</span><span class="type">int</span><span class="normal"> argc</span><span class="symbol">,</span><span class="normal"> </span><span class="type">char</span><span class="normal"> </span><span class="symbol">**</span><span class="normal">argv</span><span class="symbol">)</span>
|
1182
|
+
<span class="cbracket">{</span>
|
1183
|
+
<span class="normal"> </span><span class="usertype">GtkWidget</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">win</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">but</span><span class="symbol">;</span>
|
1184
|
+
<span class="normal"> </span><span class="function"><a href="gtk2-General.html#gtk-init">gtk_init</a></span><span class="symbol">(</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">argc</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">argv </span><span class="symbol">);</span>
|
1185
|
+
<span class="normal"> win </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkWindow.html#gtk-window-new">gtk_window_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">GTK_WINDOW_TOPLEVEL</span><span class="symbol">);</span>
|
1186
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-connect">g_signal_connect</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">win</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"delete-event"</span><span class="symbol">,</span>
|
1187
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html#G-CALLBACK:CAPS">G_CALLBACK</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal"><a href="gtk2-General.html#gtk-true">gtk_true</a></span><span class="symbol">),</span><span class="normal"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">);</span>
|
1188
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-connect">g_signal_connect</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">win</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"destroy"</span><span class="symbol">,</span>
|
1189
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html#G-CALLBACK:CAPS">G_CALLBACK</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal"><a href="gtk2-General.html#gtk-main-quit">gtk_main_quit</a></span><span class="symbol">),</span><span class="normal"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">);</span>
|
1190
|
+
<span class="normal"> but </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkButton.html#gtk-button-new-with-label">gtk_button_new_with_label</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"Close yourself. I mean it!"</span><span class="symbol">);</span>
|
1191
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-connect-swapped">g_signal_connect_swapped</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">but</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"clicked"</span><span class="symbol">,</span>
|
1192
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html#G-CALLBACK:CAPS">G_CALLBACK</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal"><a href="GtkObject.html#gtk-object-destroy">gtk_object_destroy</a></span><span class="symbol">),</span><span class="normal"> win</span><span class="symbol">);</span>
|
1193
|
+
<span class="normal"> </span><span class="function"><a href="GtkContainer.html#gtk-container-add">gtk_container_add</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_CONTAINER</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">win</span><span class="symbol">),</span><span class="normal"> but</span><span class="symbol">);</span>
|
1194
|
+
<span class="normal"> </span><span class="function"><a href="GtkWidget.html#gtk-widget-show-all">gtk_widget_show_all</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">win</span><span class="symbol">);</span>
|
1195
|
+
<span class="normal"> </span><span class="function"><a href="gtk2-General.html#gtk-main">gtk_main</a></span><span class="normal"> </span><span class="symbol">();</span>
|
1196
|
+
<span class="normal"> </span><span class="keyword">return</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
|
1197
|
+
<span class="cbracket">}</span></pre></td>
|
1198
|
+
</tr>
|
1199
|
+
</tbody>
|
1200
|
+
</table>
|
1201
|
+
</div>
|
1202
|
+
|
1203
|
+
</div>
|
1204
|
+
<br class="example-break"><div class="refsect3">
|
1205
|
+
<a name="id-1.3.2.7.20.6"></a><h4>Returns</h4>
|
1206
|
+
<p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a></p>
|
1207
|
+
<p></p>
|
1208
|
+
</div>
|
1209
|
+
</div>
|
1210
|
+
<hr>
|
1211
|
+
<div class="refsect2">
|
1212
|
+
<a name="gtk-false"></a><h3>gtk_false ()</h3>
|
1213
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1214
|
+
gtk_false (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1215
|
+
<p>
|
1216
|
+
Analogical to <a class="link" href="gtk2-General.html#gtk-true" title="gtk_true ()"><code class="function">gtk_true()</code></a> this function does nothing
|
1217
|
+
but always returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
|
1218
|
+
</p>
|
1219
|
+
<div class="refsect3">
|
1220
|
+
<a name="id-1.3.2.7.21.5"></a><h4>Returns</h4>
|
1221
|
+
<p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a></p>
|
1222
|
+
<p></p>
|
1223
|
+
</div>
|
1224
|
+
</div>
|
1225
|
+
<hr>
|
1226
|
+
<div class="refsect2">
|
1227
|
+
<a name="gtk-grab-add"></a><h3>gtk_grab_add ()</h3>
|
1228
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1229
|
+
gtk_grab_add (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
|
1230
|
+
<p>
|
1231
|
+
Makes <em class="parameter"><code>widget</code></em> the current grabbed widget. This means that interaction with
|
1232
|
+
other widgets in the same application is blocked and mouse as well as
|
1233
|
+
keyboard events are delivered to this widget.
|
1234
|
+
</p>
|
1235
|
+
<p>
|
1236
|
+
If <em class="parameter"><code>widget</code></em> is not sensitive, it is not set as the current grabbed
|
1237
|
+
widget and this function does nothing.
|
1238
|
+
</p>
|
1239
|
+
<div class="refsect3">
|
1240
|
+
<a name="id-1.3.2.7.22.6"></a><h4>Parameters</h4>
|
1241
|
+
<div class="informaltable"><table width="100%" border="0">
|
1242
|
+
<colgroup>
|
1243
|
+
<col width="150px" class="parameters_name">
|
1244
|
+
<col class="parameters_description">
|
1245
|
+
<col width="200px" class="parameters_annotations">
|
1246
|
+
</colgroup>
|
1247
|
+
<tbody><tr>
|
1248
|
+
<td class="parameter_name"><p>widget</p></td>
|
1249
|
+
<td class="parameter_description"><p>The widget that grabs keyboard and pointer events.</p></td>
|
1250
|
+
<td class="parameter_annotations"> </td>
|
1251
|
+
</tr></tbody>
|
1252
|
+
</table></div>
|
1253
|
+
</div>
|
1254
|
+
</div>
|
1255
|
+
<hr>
|
1256
|
+
<div class="refsect2">
|
1257
|
+
<a name="gtk-grab-get-current"></a><h3>gtk_grab_get_current ()</h3>
|
1258
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
1259
|
+
gtk_grab_get_current (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1260
|
+
<p>Queries the current grab of the default window group.</p>
|
1261
|
+
<p>
|
1262
|
+
Queries the current grab of the default window group.
|
1263
|
+
</p>
|
1264
|
+
<div class="refsect3">
|
1265
|
+
<a name="id-1.3.2.7.23.5"></a><h4>Returns</h4>
|
1266
|
+
<p> The widget which currently
|
1267
|
+
has the grab or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no grab is active. </p>
|
1268
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1269
|
+
</div>
|
1270
|
+
</div>
|
1271
|
+
<hr>
|
1272
|
+
<div class="refsect2">
|
1273
|
+
<a name="gtk-grab-remove"></a><h3>gtk_grab_remove ()</h3>
|
1274
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1275
|
+
gtk_grab_remove (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
|
1276
|
+
<p>
|
1277
|
+
Removes the grab from the given widget. You have to pair calls to <a class="link" href="gtk2-General.html#gtk-grab-add" title="gtk_grab_add ()"><code class="function">gtk_grab_add()</code></a>
|
1278
|
+
and <a class="link" href="gtk2-General.html#gtk-grab-remove" title="gtk_grab_remove ()"><code class="function">gtk_grab_remove()</code></a>.
|
1279
|
+
</p>
|
1280
|
+
<p>
|
1281
|
+
If <em class="parameter"><code>widget</code></em> does not have the grab, this function does nothing.
|
1282
|
+
</p>
|
1283
|
+
<div class="refsect3">
|
1284
|
+
<a name="id-1.3.2.7.24.6"></a><h4>Parameters</h4>
|
1285
|
+
<div class="informaltable"><table width="100%" border="0">
|
1286
|
+
<colgroup>
|
1287
|
+
<col width="150px" class="parameters_name">
|
1288
|
+
<col class="parameters_description">
|
1289
|
+
<col width="200px" class="parameters_annotations">
|
1290
|
+
</colgroup>
|
1291
|
+
<tbody><tr>
|
1292
|
+
<td class="parameter_name"><p>widget</p></td>
|
1293
|
+
<td class="parameter_description"><p>The widget which gives up the grab.</p></td>
|
1294
|
+
<td class="parameter_annotations"> </td>
|
1295
|
+
</tr></tbody>
|
1296
|
+
</table></div>
|
1297
|
+
</div>
|
1298
|
+
</div>
|
1299
|
+
<hr>
|
1300
|
+
<div class="refsect2">
|
1301
|
+
<a name="gtk-init-add"></a><h3>gtk_init_add ()</h3>
|
1302
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1303
|
+
gtk_init_add (<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkFunction" title="GtkFunction ()"><span class="type">GtkFunction</span></a> function</code></em>,
|
1304
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1305
|
+
<div class="warning">
|
1306
|
+
<p><code class="literal">gtk_init_add</code> is deprecated and should not be used in newly-written code.</p>
|
1307
|
+
<p>This function is going to be removed in GTK+ 3.0</p>
|
1308
|
+
</div>
|
1309
|
+
<p>
|
1310
|
+
Registers a function to be called when the mainloop is started.
|
1311
|
+
</p>
|
1312
|
+
<div class="refsect3">
|
1313
|
+
<a name="id-1.3.2.7.25.6"></a><h4>Parameters</h4>
|
1314
|
+
<div class="informaltable"><table width="100%" border="0">
|
1315
|
+
<colgroup>
|
1316
|
+
<col width="150px" class="parameters_name">
|
1317
|
+
<col class="parameters_description">
|
1318
|
+
<col width="200px" class="parameters_annotations">
|
1319
|
+
</colgroup>
|
1320
|
+
<tbody>
|
1321
|
+
<tr>
|
1322
|
+
<td class="parameter_name"><p>function</p></td>
|
1323
|
+
<td class="parameter_description"><p>Function to invoke when <a class="link" href="gtk2-General.html#gtk-main" title="gtk_main ()"><code class="function">gtk_main()</code></a> is called next.</p></td>
|
1324
|
+
<td class="parameter_annotations"> </td>
|
1325
|
+
</tr>
|
1326
|
+
<tr>
|
1327
|
+
<td class="parameter_name"><p>data</p></td>
|
1328
|
+
<td class="parameter_description"><p>Data to pass to that function.</p></td>
|
1329
|
+
<td class="parameter_annotations"> </td>
|
1330
|
+
</tr>
|
1331
|
+
</tbody>
|
1332
|
+
</table></div>
|
1333
|
+
</div>
|
1334
|
+
</div>
|
1335
|
+
<hr>
|
1336
|
+
<div class="refsect2">
|
1337
|
+
<a name="gtk-quit-add-destroy"></a><h3>gtk_quit_add_destroy ()</h3>
|
1338
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1339
|
+
gtk_quit_add_destroy (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> main_level</code></em>,
|
1340
|
+
<em class="parameter"><code><a class="link" href="GtkObject.html" title="GtkObject"><span class="type">GtkObject</span></a> *object</code></em>);</pre>
|
1341
|
+
<div class="warning">
|
1342
|
+
<p><code class="literal">gtk_quit_add_destroy</code> is deprecated and should not be used in newly-written code.</p>
|
1343
|
+
<p>This function is going to be removed in GTK+ 3.0</p>
|
1344
|
+
</div>
|
1345
|
+
<p>
|
1346
|
+
Trigger destruction of <em class="parameter"><code>object</code></em> in case the mainloop at level <em class="parameter"><code>main_level</code></em>
|
1347
|
+
is quit.
|
1348
|
+
</p>
|
1349
|
+
<div class="refsect3">
|
1350
|
+
<a name="id-1.3.2.7.26.6"></a><h4>Parameters</h4>
|
1351
|
+
<div class="informaltable"><table width="100%" border="0">
|
1352
|
+
<colgroup>
|
1353
|
+
<col width="150px" class="parameters_name">
|
1354
|
+
<col class="parameters_description">
|
1355
|
+
<col width="200px" class="parameters_annotations">
|
1356
|
+
</colgroup>
|
1357
|
+
<tbody>
|
1358
|
+
<tr>
|
1359
|
+
<td class="parameter_name"><p>main_level</p></td>
|
1360
|
+
<td class="parameter_description"><p>Level of the mainloop which shall trigger the destruction.</p></td>
|
1361
|
+
<td class="parameter_annotations"> </td>
|
1362
|
+
</tr>
|
1363
|
+
<tr>
|
1364
|
+
<td class="parameter_name"><p>object</p></td>
|
1365
|
+
<td class="parameter_description"><p>Object to be destroyed.</p></td>
|
1366
|
+
<td class="parameter_annotations"> </td>
|
1367
|
+
</tr>
|
1368
|
+
</tbody>
|
1369
|
+
</table></div>
|
1370
|
+
</div>
|
1371
|
+
</div>
|
1372
|
+
<hr>
|
1373
|
+
<div class="refsect2">
|
1374
|
+
<a name="gtk-quit-add"></a><h3>gtk_quit_add ()</h3>
|
1375
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1376
|
+
gtk_quit_add (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> main_level</code></em>,
|
1377
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkFunction" title="GtkFunction ()"><span class="type">GtkFunction</span></a> function</code></em>,
|
1378
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1379
|
+
<div class="warning">
|
1380
|
+
<p><code class="literal">gtk_quit_add</code> is deprecated and should not be used in newly-written code.</p>
|
1381
|
+
<p>This function is going to be removed in GTK+ 3.0</p>
|
1382
|
+
</div>
|
1383
|
+
<p>
|
1384
|
+
Registers a function to be called when an instance of the mainloop is left.
|
1385
|
+
</p>
|
1386
|
+
<div class="refsect3">
|
1387
|
+
<a name="id-1.3.2.7.27.6"></a><h4>Parameters</h4>
|
1388
|
+
<div class="informaltable"><table width="100%" border="0">
|
1389
|
+
<colgroup>
|
1390
|
+
<col width="150px" class="parameters_name">
|
1391
|
+
<col class="parameters_description">
|
1392
|
+
<col width="200px" class="parameters_annotations">
|
1393
|
+
</colgroup>
|
1394
|
+
<tbody>
|
1395
|
+
<tr>
|
1396
|
+
<td class="parameter_name"><p>main_level</p></td>
|
1397
|
+
<td class="parameter_description"><p>Level at which termination the function shall be called. You
|
1398
|
+
can pass 0 here to have the function run at the termination of the current
|
1399
|
+
mainloop.</p></td>
|
1400
|
+
<td class="parameter_annotations"> </td>
|
1401
|
+
</tr>
|
1402
|
+
<tr>
|
1403
|
+
<td class="parameter_name"><p>function</p></td>
|
1404
|
+
<td class="parameter_description"><p>The function to call. This should return 0 to be removed from the
|
1405
|
+
list of quit handlers. Otherwise the function might be called again.</p></td>
|
1406
|
+
<td class="parameter_annotations"> </td>
|
1407
|
+
</tr>
|
1408
|
+
<tr>
|
1409
|
+
<td class="parameter_name"><p>data</p></td>
|
1410
|
+
<td class="parameter_description"><p>Pointer to pass when calling <em class="parameter"><code>function</code></em>
|
1411
|
+
.</p></td>
|
1412
|
+
<td class="parameter_annotations"> </td>
|
1413
|
+
</tr>
|
1414
|
+
</tbody>
|
1415
|
+
</table></div>
|
1416
|
+
</div>
|
1417
|
+
<div class="refsect3">
|
1418
|
+
<a name="id-1.3.2.7.27.7"></a><h4>Returns</h4>
|
1419
|
+
<p>A handle for this quit handler (you need this for <a class="link" href="gtk2-General.html#gtk-quit-remove" title="gtk_quit_remove ()"><code class="function">gtk_quit_remove()</code></a>)
|
1420
|
+
or 0 if you passed a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> pointer in <em class="parameter"><code>function</code></em>
|
1421
|
+
.</p>
|
1422
|
+
<p></p>
|
1423
|
+
</div>
|
1424
|
+
</div>
|
1425
|
+
<hr>
|
1426
|
+
<div class="refsect2">
|
1427
|
+
<a name="gtk-quit-add-full"></a><h3>gtk_quit_add_full ()</h3>
|
1428
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1429
|
+
gtk_quit_add_full (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> main_level</code></em>,
|
1430
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkFunction" title="GtkFunction ()"><span class="type">GtkFunction</span></a> function</code></em>,
|
1431
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkCallbackMarshal" title="GtkCallbackMarshal ()"><span class="type">GtkCallbackMarshal</span></a> marshal</code></em>,
|
1432
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
1433
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
|
1434
|
+
<div class="warning">
|
1435
|
+
<p><code class="literal">gtk_quit_add_full</code> is deprecated and should not be used in newly-written code.</p>
|
1436
|
+
<p>This function is going to be removed in GTK+ 3.0</p>
|
1437
|
+
</div>
|
1438
|
+
<p>
|
1439
|
+
Registers a function to be called when an instance of the mainloop is left.
|
1440
|
+
In comparison to <a class="link" href="gtk2-General.html#gtk-quit-add" title="gtk_quit_add ()"><code class="function">gtk_quit_add()</code></a> this function adds the possibility to
|
1441
|
+
pass a marshaller and a function to be called when the quit handler is freed.
|
1442
|
+
</p>
|
1443
|
+
<p>
|
1444
|
+
The former can be used to run interpreted code instead of a compiled function
|
1445
|
+
while the latter can be used to free the information stored in <em class="parameter"><code>data</code></em> (while
|
1446
|
+
you can do this in <em class="parameter"><code>function</code></em> as well)... So this function will mostly be
|
1447
|
+
used by GTK+ wrappers for languages other than C.
|
1448
|
+
</p>
|
1449
|
+
<div class="refsect3">
|
1450
|
+
<a name="id-1.3.2.7.28.7"></a><h4>Parameters</h4>
|
1451
|
+
<div class="informaltable"><table width="100%" border="0">
|
1452
|
+
<colgroup>
|
1453
|
+
<col width="150px" class="parameters_name">
|
1454
|
+
<col class="parameters_description">
|
1455
|
+
<col width="200px" class="parameters_annotations">
|
1456
|
+
</colgroup>
|
1457
|
+
<tbody>
|
1458
|
+
<tr>
|
1459
|
+
<td class="parameter_name"><p>main_level</p></td>
|
1460
|
+
<td class="parameter_description"><p>Level at which termination the function shall be called. You
|
1461
|
+
can pass 0 here to have the function run at the termination of the current
|
1462
|
+
mainloop.</p></td>
|
1463
|
+
<td class="parameter_annotations"> </td>
|
1464
|
+
</tr>
|
1465
|
+
<tr>
|
1466
|
+
<td class="parameter_name"><p>function</p></td>
|
1467
|
+
<td class="parameter_description"><p>The function to call. This should return 0 to be removed from the
|
1468
|
+
list of quit handlers. Otherwise the function might be called again.</p></td>
|
1469
|
+
<td class="parameter_annotations"> </td>
|
1470
|
+
</tr>
|
1471
|
+
<tr>
|
1472
|
+
<td class="parameter_name"><p>marshal</p></td>
|
1473
|
+
<td class="parameter_description"><p>The marshaller to be used. If this is non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, <em class="parameter"><code>function</code></em>
|
1474
|
+
is
|
1475
|
+
ignored.</p></td>
|
1476
|
+
<td class="parameter_annotations"> </td>
|
1477
|
+
</tr>
|
1478
|
+
<tr>
|
1479
|
+
<td class="parameter_name"><p>data</p></td>
|
1480
|
+
<td class="parameter_description"><p>Pointer to pass when calling <em class="parameter"><code>function</code></em>
|
1481
|
+
.</p></td>
|
1482
|
+
<td class="parameter_annotations"> </td>
|
1483
|
+
</tr>
|
1484
|
+
<tr>
|
1485
|
+
<td class="parameter_name"><p>destroy</p></td>
|
1486
|
+
<td class="parameter_description"><p>Function to call to destruct <em class="parameter"><code>data</code></em>
|
1487
|
+
. Gets <em class="parameter"><code>data</code></em>
|
1488
|
+
as argument.</p></td>
|
1489
|
+
<td class="parameter_annotations"> </td>
|
1490
|
+
</tr>
|
1491
|
+
</tbody>
|
1492
|
+
</table></div>
|
1493
|
+
</div>
|
1494
|
+
<div class="refsect3">
|
1495
|
+
<a name="id-1.3.2.7.28.8"></a><h4>Returns</h4>
|
1496
|
+
<p>A handle for this quit handler (you need this for <a class="link" href="gtk2-General.html#gtk-quit-remove" title="gtk_quit_remove ()"><code class="function">gtk_quit_remove()</code></a>)
|
1497
|
+
or 0 if you passed a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> pointer in <em class="parameter"><code>function</code></em>
|
1498
|
+
.</p>
|
1499
|
+
<p></p>
|
1500
|
+
</div>
|
1501
|
+
</div>
|
1502
|
+
<hr>
|
1503
|
+
<div class="refsect2">
|
1504
|
+
<a name="gtk-quit-remove"></a><h3>gtk_quit_remove ()</h3>
|
1505
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1506
|
+
gtk_quit_remove (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> quit_handler_id</code></em>);</pre>
|
1507
|
+
<div class="warning">
|
1508
|
+
<p><code class="literal">gtk_quit_remove</code> is deprecated and should not be used in newly-written code.</p>
|
1509
|
+
<p>This function is going to be removed in GTK+ 3.0</p>
|
1510
|
+
</div>
|
1511
|
+
<p>
|
1512
|
+
Removes a quit handler by its identifier.
|
1513
|
+
</p>
|
1514
|
+
<div class="refsect3">
|
1515
|
+
<a name="id-1.3.2.7.29.6"></a><h4>Parameters</h4>
|
1516
|
+
<div class="informaltable"><table width="100%" border="0">
|
1517
|
+
<colgroup>
|
1518
|
+
<col width="150px" class="parameters_name">
|
1519
|
+
<col class="parameters_description">
|
1520
|
+
<col width="200px" class="parameters_annotations">
|
1521
|
+
</colgroup>
|
1522
|
+
<tbody><tr>
|
1523
|
+
<td class="parameter_name"><p>quit_handler_id</p></td>
|
1524
|
+
<td class="parameter_description"><p>Identifier for the handler returned when installing it.</p></td>
|
1525
|
+
<td class="parameter_annotations"> </td>
|
1526
|
+
</tr></tbody>
|
1527
|
+
</table></div>
|
1528
|
+
</div>
|
1529
|
+
</div>
|
1530
|
+
<hr>
|
1531
|
+
<div class="refsect2">
|
1532
|
+
<a name="gtk-quit-remove-by-data"></a><h3>gtk_quit_remove_by_data ()</h3>
|
1533
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1534
|
+
gtk_quit_remove_by_data (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1535
|
+
<div class="warning">
|
1536
|
+
<p><code class="literal">gtk_quit_remove_by_data</code> is deprecated and should not be used in newly-written code.</p>
|
1537
|
+
<p>This function is going to be removed in GTK+ 3.0</p>
|
1538
|
+
</div>
|
1539
|
+
<p>
|
1540
|
+
Removes a quit handler identified by its <em class="parameter"><code>data</code></em> field.
|
1541
|
+
</p>
|
1542
|
+
<div class="refsect3">
|
1543
|
+
<a name="id-1.3.2.7.30.6"></a><h4>Parameters</h4>
|
1544
|
+
<div class="informaltable"><table width="100%" border="0">
|
1545
|
+
<colgroup>
|
1546
|
+
<col width="150px" class="parameters_name">
|
1547
|
+
<col class="parameters_description">
|
1548
|
+
<col width="200px" class="parameters_annotations">
|
1549
|
+
</colgroup>
|
1550
|
+
<tbody><tr>
|
1551
|
+
<td class="parameter_name"><p>data</p></td>
|
1552
|
+
<td class="parameter_description"><p>The pointer passed as <em class="parameter"><code>data</code></em>
|
1553
|
+
to <a class="link" href="gtk2-General.html#gtk-quit-add" title="gtk_quit_add ()"><code class="function">gtk_quit_add()</code></a> or <a class="link" href="gtk2-General.html#gtk-quit-add-full" title="gtk_quit_add_full ()"><code class="function">gtk_quit_add_full()</code></a>.</p></td>
|
1554
|
+
<td class="parameter_annotations"> </td>
|
1555
|
+
</tr></tbody>
|
1556
|
+
</table></div>
|
1557
|
+
</div>
|
1558
|
+
</div>
|
1559
|
+
<hr>
|
1560
|
+
<div class="refsect2">
|
1561
|
+
<a name="gtk-timeout-add-full"></a><h3>gtk_timeout_add_full ()</h3>
|
1562
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1563
|
+
gtk_timeout_add_full (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> interval</code></em>,
|
1564
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkFunction" title="GtkFunction ()"><span class="type">GtkFunction</span></a> function</code></em>,
|
1565
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkCallbackMarshal" title="GtkCallbackMarshal ()"><span class="type">GtkCallbackMarshal</span></a> marshal</code></em>,
|
1566
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
1567
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
|
1568
|
+
<div class="warning">
|
1569
|
+
<p><code class="literal">gtk_timeout_add_full</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1570
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#g-timeout-add-full"><code class="function">g_timeout_add_full()</code></a> instead.</p>
|
1571
|
+
</div>
|
1572
|
+
<p>
|
1573
|
+
Registers a function to be called periodically. The function will be called
|
1574
|
+
repeatedly after <em class="parameter"><code>interval</code></em> milliseconds until it returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> at which
|
1575
|
+
point the timeout is destroyed and will not be called again.
|
1576
|
+
</p>
|
1577
|
+
<div class="refsect3">
|
1578
|
+
<a name="id-1.3.2.7.31.6"></a><h4>Parameters</h4>
|
1579
|
+
<div class="informaltable"><table width="100%" border="0">
|
1580
|
+
<colgroup>
|
1581
|
+
<col width="150px" class="parameters_name">
|
1582
|
+
<col class="parameters_description">
|
1583
|
+
<col width="200px" class="parameters_annotations">
|
1584
|
+
</colgroup>
|
1585
|
+
<tbody>
|
1586
|
+
<tr>
|
1587
|
+
<td class="parameter_name"><p>interval</p></td>
|
1588
|
+
<td class="parameter_description"><p>The time between calls to the function, in milliseconds
|
1589
|
+
(1/1000ths of a second.)</p></td>
|
1590
|
+
<td class="parameter_annotations"> </td>
|
1591
|
+
</tr>
|
1592
|
+
<tr>
|
1593
|
+
<td class="parameter_name"><p>function</p></td>
|
1594
|
+
<td class="parameter_description"><p>The function to call periodically.</p></td>
|
1595
|
+
<td class="parameter_annotations"> </td>
|
1596
|
+
</tr>
|
1597
|
+
<tr>
|
1598
|
+
<td class="parameter_name"><p>marshal</p></td>
|
1599
|
+
<td class="parameter_description"><p>The marshaller to use instead of the function (if non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>).</p></td>
|
1600
|
+
<td class="parameter_annotations"> </td>
|
1601
|
+
</tr>
|
1602
|
+
<tr>
|
1603
|
+
<td class="parameter_name"><p>data</p></td>
|
1604
|
+
<td class="parameter_description"><p>The data to pass to the function.</p></td>
|
1605
|
+
<td class="parameter_annotations"> </td>
|
1606
|
+
</tr>
|
1607
|
+
<tr>
|
1608
|
+
<td class="parameter_name"><p>destroy</p></td>
|
1609
|
+
<td class="parameter_description"><p>Function to call when the timeout is destroyed or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
|
1610
|
+
<td class="parameter_annotations"> </td>
|
1611
|
+
</tr>
|
1612
|
+
</tbody>
|
1613
|
+
</table></div>
|
1614
|
+
</div>
|
1615
|
+
<div class="refsect3">
|
1616
|
+
<a name="id-1.3.2.7.31.7"></a><h4>Returns</h4>
|
1617
|
+
<p>A unique id for the event source.</p>
|
1618
|
+
<p></p>
|
1619
|
+
</div>
|
1620
|
+
</div>
|
1621
|
+
<hr>
|
1622
|
+
<div class="refsect2">
|
1623
|
+
<a name="gtk-timeout-add"></a><h3>gtk_timeout_add ()</h3>
|
1624
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1625
|
+
gtk_timeout_add (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> interval</code></em>,
|
1626
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkFunction" title="GtkFunction ()"><span class="type">GtkFunction</span></a> function</code></em>,
|
1627
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1628
|
+
<div class="warning">
|
1629
|
+
<p><code class="literal">gtk_timeout_add</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1630
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#g-timeout-add"><code class="function">g_timeout_add()</code></a> instead.</p>
|
1631
|
+
</div>
|
1632
|
+
<p>
|
1633
|
+
Registers a function to be called periodically. The function will be called
|
1634
|
+
repeatedly after <em class="parameter"><code>interval</code></em> milliseconds until it returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> at which
|
1635
|
+
point the timeout is destroyed and will not be called again.
|
1636
|
+
</p>
|
1637
|
+
<div class="refsect3">
|
1638
|
+
<a name="id-1.3.2.7.32.6"></a><h4>Parameters</h4>
|
1639
|
+
<div class="informaltable"><table width="100%" border="0">
|
1640
|
+
<colgroup>
|
1641
|
+
<col width="150px" class="parameters_name">
|
1642
|
+
<col class="parameters_description">
|
1643
|
+
<col width="200px" class="parameters_annotations">
|
1644
|
+
</colgroup>
|
1645
|
+
<tbody>
|
1646
|
+
<tr>
|
1647
|
+
<td class="parameter_name"><p>interval</p></td>
|
1648
|
+
<td class="parameter_description"><p>The time between calls to the function, in milliseconds
|
1649
|
+
(1/1000ths of a second.)</p></td>
|
1650
|
+
<td class="parameter_annotations"> </td>
|
1651
|
+
</tr>
|
1652
|
+
<tr>
|
1653
|
+
<td class="parameter_name"><p>function</p></td>
|
1654
|
+
<td class="parameter_description"><p>The function to call periodically.</p></td>
|
1655
|
+
<td class="parameter_annotations"> </td>
|
1656
|
+
</tr>
|
1657
|
+
<tr>
|
1658
|
+
<td class="parameter_name"><p>data</p></td>
|
1659
|
+
<td class="parameter_description"><p>The data to pass to the function.</p></td>
|
1660
|
+
<td class="parameter_annotations"> </td>
|
1661
|
+
</tr>
|
1662
|
+
</tbody>
|
1663
|
+
</table></div>
|
1664
|
+
</div>
|
1665
|
+
<div class="refsect3">
|
1666
|
+
<a name="id-1.3.2.7.32.7"></a><h4>Returns</h4>
|
1667
|
+
<p>A unique id for the event source.</p>
|
1668
|
+
<p></p>
|
1669
|
+
</div>
|
1670
|
+
</div>
|
1671
|
+
<hr>
|
1672
|
+
<div class="refsect2">
|
1673
|
+
<a name="gtk-timeout-remove"></a><h3>gtk_timeout_remove ()</h3>
|
1674
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1675
|
+
gtk_timeout_remove (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> timeout_handler_id</code></em>);</pre>
|
1676
|
+
<div class="warning">
|
1677
|
+
<p><code class="literal">gtk_timeout_remove</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1678
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#g-source-remove"><code class="function">g_source_remove()</code></a> instead.</p>
|
1679
|
+
</div>
|
1680
|
+
<p>
|
1681
|
+
Removes the given timeout destroying all information about it.
|
1682
|
+
</p>
|
1683
|
+
<div class="refsect3">
|
1684
|
+
<a name="id-1.3.2.7.33.6"></a><h4>Parameters</h4>
|
1685
|
+
<div class="informaltable"><table width="100%" border="0">
|
1686
|
+
<colgroup>
|
1687
|
+
<col width="150px" class="parameters_name">
|
1688
|
+
<col class="parameters_description">
|
1689
|
+
<col width="200px" class="parameters_annotations">
|
1690
|
+
</colgroup>
|
1691
|
+
<tbody><tr>
|
1692
|
+
<td class="parameter_name"><p>timeout_handler_id</p></td>
|
1693
|
+
<td class="parameter_description"><p>The identifier returned when installing the timeout.</p></td>
|
1694
|
+
<td class="parameter_annotations"> </td>
|
1695
|
+
</tr></tbody>
|
1696
|
+
</table></div>
|
1697
|
+
</div>
|
1698
|
+
</div>
|
1699
|
+
<hr>
|
1700
|
+
<div class="refsect2">
|
1701
|
+
<a name="gtk-idle-add"></a><h3>gtk_idle_add ()</h3>
|
1702
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1703
|
+
gtk_idle_add (<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkFunction" title="GtkFunction ()"><span class="type">GtkFunction</span></a> function</code></em>,
|
1704
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1705
|
+
<div class="warning">
|
1706
|
+
<p><code class="literal">gtk_idle_add</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1707
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#g-idle-add"><code class="function">g_idle_add()</code></a> instead.</p>
|
1708
|
+
</div>
|
1709
|
+
<p>
|
1710
|
+
Causes the mainloop to call the given function whenever no events with
|
1711
|
+
higher priority are to be processed. The default priority is
|
1712
|
+
<a class="link" href="gtk2-General.html#GTK-PRIORITY-DEFAULT:CAPS" title="GTK_PRIORITY_DEFAULT"><code class="literal">GTK_PRIORITY_DEFAULT</code></a>, which is rather low.
|
1713
|
+
</p>
|
1714
|
+
<div class="refsect3">
|
1715
|
+
<a name="id-1.3.2.7.34.6"></a><h4>Parameters</h4>
|
1716
|
+
<div class="informaltable"><table width="100%" border="0">
|
1717
|
+
<colgroup>
|
1718
|
+
<col width="150px" class="parameters_name">
|
1719
|
+
<col class="parameters_description">
|
1720
|
+
<col width="200px" class="parameters_annotations">
|
1721
|
+
</colgroup>
|
1722
|
+
<tbody>
|
1723
|
+
<tr>
|
1724
|
+
<td class="parameter_name"><p>function</p></td>
|
1725
|
+
<td class="parameter_description"><p>The function to call.</p></td>
|
1726
|
+
<td class="parameter_annotations"> </td>
|
1727
|
+
</tr>
|
1728
|
+
<tr>
|
1729
|
+
<td class="parameter_name"><p>data</p></td>
|
1730
|
+
<td class="parameter_description"><p>The information to pass to the function.</p></td>
|
1731
|
+
<td class="parameter_annotations"> </td>
|
1732
|
+
</tr>
|
1733
|
+
</tbody>
|
1734
|
+
</table></div>
|
1735
|
+
</div>
|
1736
|
+
<div class="refsect3">
|
1737
|
+
<a name="id-1.3.2.7.34.7"></a><h4>Returns</h4>
|
1738
|
+
<p>a unique handle for this registration.</p>
|
1739
|
+
<p></p>
|
1740
|
+
</div>
|
1741
|
+
</div>
|
1742
|
+
<hr>
|
1743
|
+
<div class="refsect2">
|
1744
|
+
<a name="gtk-idle-add-priority"></a><h3>gtk_idle_add_priority ()</h3>
|
1745
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1746
|
+
gtk_idle_add_priority (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> priority</code></em>,
|
1747
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkFunction" title="GtkFunction ()"><span class="type">GtkFunction</span></a> function</code></em>,
|
1748
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1749
|
+
<div class="warning">
|
1750
|
+
<p><code class="literal">gtk_idle_add_priority</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1751
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#g-idle-add-full"><code class="function">g_idle_add_full()</code></a> instead.</p>
|
1752
|
+
</div>
|
1753
|
+
<p>
|
1754
|
+
Like <a class="link" href="gtk2-General.html#gtk-idle-add" title="gtk_idle_add ()"><code class="function">gtk_idle_add()</code></a> this function allows you to have a function called
|
1755
|
+
when the event loop is idle. The difference is that you can give a
|
1756
|
+
priority different from <a class="link" href="gtk2-General.html#GTK-PRIORITY-DEFAULT:CAPS" title="GTK_PRIORITY_DEFAULT"><code class="literal">GTK_PRIORITY_DEFAULT</code></a> to the idle function.
|
1757
|
+
</p>
|
1758
|
+
<div class="refsect3">
|
1759
|
+
<a name="id-1.3.2.7.35.6"></a><h4>Parameters</h4>
|
1760
|
+
<div class="informaltable"><table width="100%" border="0">
|
1761
|
+
<colgroup>
|
1762
|
+
<col width="150px" class="parameters_name">
|
1763
|
+
<col class="parameters_description">
|
1764
|
+
<col width="200px" class="parameters_annotations">
|
1765
|
+
</colgroup>
|
1766
|
+
<tbody>
|
1767
|
+
<tr>
|
1768
|
+
<td class="parameter_name"><p>priority</p></td>
|
1769
|
+
<td class="parameter_description"><p>The priority which should not be above <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#G-PRIORITY-HIGH-IDLE:CAPS"><code class="literal">G_PRIORITY_HIGH_IDLE</code></a>.
|
1770
|
+
Note that you will interfere with GTK+ if you use a priority above
|
1771
|
+
<a class="link" href="gtk2-General.html#GTK-PRIORITY-RESIZE:CAPS" title="GTK_PRIORITY_RESIZE"><code class="literal">GTK_PRIORITY_RESIZE</code></a>.</p></td>
|
1772
|
+
<td class="parameter_annotations"> </td>
|
1773
|
+
</tr>
|
1774
|
+
<tr>
|
1775
|
+
<td class="parameter_name"><p>function</p></td>
|
1776
|
+
<td class="parameter_description"><p>The function to call.</p></td>
|
1777
|
+
<td class="parameter_annotations"> </td>
|
1778
|
+
</tr>
|
1779
|
+
<tr>
|
1780
|
+
<td class="parameter_name"><p>data</p></td>
|
1781
|
+
<td class="parameter_description"><p>Data to pass to that function.</p></td>
|
1782
|
+
<td class="parameter_annotations"> </td>
|
1783
|
+
</tr>
|
1784
|
+
</tbody>
|
1785
|
+
</table></div>
|
1786
|
+
</div>
|
1787
|
+
<div class="refsect3">
|
1788
|
+
<a name="id-1.3.2.7.35.7"></a><h4>Returns</h4>
|
1789
|
+
<p>A unique id for the event source.</p>
|
1790
|
+
<p></p>
|
1791
|
+
</div>
|
1792
|
+
</div>
|
1793
|
+
<hr>
|
1794
|
+
<div class="refsect2">
|
1795
|
+
<a name="gtk-idle-add-full"></a><h3>gtk_idle_add_full ()</h3>
|
1796
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1797
|
+
gtk_idle_add_full (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> priority</code></em>,
|
1798
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkFunction" title="GtkFunction ()"><span class="type">GtkFunction</span></a> function</code></em>,
|
1799
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkCallbackMarshal" title="GtkCallbackMarshal ()"><span class="type">GtkCallbackMarshal</span></a> marshal</code></em>,
|
1800
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
1801
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
|
1802
|
+
<div class="warning">
|
1803
|
+
<p><code class="literal">gtk_idle_add_full</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1804
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#g-idle-add-full"><code class="function">g_idle_add_full()</code></a> instead.</p>
|
1805
|
+
</div>
|
1806
|
+
<p>
|
1807
|
+
Like <a class="link" href="gtk2-General.html#gtk-idle-add" title="gtk_idle_add ()"><code class="function">gtk_idle_add()</code></a> this function allows you to have a function called
|
1808
|
+
when the event loop is idle. The difference is that you can give a
|
1809
|
+
priority different from <a class="link" href="gtk2-General.html#GTK-PRIORITY-DEFAULT:CAPS" title="GTK_PRIORITY_DEFAULT"><code class="literal">GTK_PRIORITY_DEFAULT</code></a> to the idle function.
|
1810
|
+
</p>
|
1811
|
+
<div class="refsect3">
|
1812
|
+
<a name="id-1.3.2.7.36.6"></a><h4>Parameters</h4>
|
1813
|
+
<div class="informaltable"><table width="100%" border="0">
|
1814
|
+
<colgroup>
|
1815
|
+
<col width="150px" class="parameters_name">
|
1816
|
+
<col class="parameters_description">
|
1817
|
+
<col width="200px" class="parameters_annotations">
|
1818
|
+
</colgroup>
|
1819
|
+
<tbody>
|
1820
|
+
<tr>
|
1821
|
+
<td class="parameter_name"><p>priority</p></td>
|
1822
|
+
<td class="parameter_description"><p>The priority which should not be above <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#G-PRIORITY-HIGH-IDLE:CAPS"><code class="literal">G_PRIORITY_HIGH_IDLE</code></a>.
|
1823
|
+
Note that you will interfere with GTK+ if you use a priority above
|
1824
|
+
<a class="link" href="gtk2-General.html#GTK-PRIORITY-RESIZE:CAPS" title="GTK_PRIORITY_RESIZE"><code class="literal">GTK_PRIORITY_RESIZE</code></a>.</p></td>
|
1825
|
+
<td class="parameter_annotations"> </td>
|
1826
|
+
</tr>
|
1827
|
+
<tr>
|
1828
|
+
<td class="parameter_name"><p>function</p></td>
|
1829
|
+
<td class="parameter_description"><p>The function to call.</p></td>
|
1830
|
+
<td class="parameter_annotations"> </td>
|
1831
|
+
</tr>
|
1832
|
+
<tr>
|
1833
|
+
<td class="parameter_name"><p>marshal</p></td>
|
1834
|
+
<td class="parameter_description"><p>The marshaller to use instead of the function (if non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>).</p></td>
|
1835
|
+
<td class="parameter_annotations"> </td>
|
1836
|
+
</tr>
|
1837
|
+
<tr>
|
1838
|
+
<td class="parameter_name"><p>data</p></td>
|
1839
|
+
<td class="parameter_description"><p>Data to pass to that function.</p></td>
|
1840
|
+
<td class="parameter_annotations"> </td>
|
1841
|
+
</tr>
|
1842
|
+
<tr>
|
1843
|
+
<td class="parameter_name"><p>destroy</p></td>
|
1844
|
+
<td class="parameter_description"><p>Function to call when the timeout is destroyed or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
|
1845
|
+
<td class="parameter_annotations"> </td>
|
1846
|
+
</tr>
|
1847
|
+
</tbody>
|
1848
|
+
</table></div>
|
1849
|
+
</div>
|
1850
|
+
<div class="refsect3">
|
1851
|
+
<a name="id-1.3.2.7.36.7"></a><h4>Returns</h4>
|
1852
|
+
<p>A unique id for the event source.</p>
|
1853
|
+
<p></p>
|
1854
|
+
</div>
|
1855
|
+
</div>
|
1856
|
+
<hr>
|
1857
|
+
<div class="refsect2">
|
1858
|
+
<a name="gtk-idle-remove"></a><h3>gtk_idle_remove ()</h3>
|
1859
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1860
|
+
gtk_idle_remove (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> idle_handler_id</code></em>);</pre>
|
1861
|
+
<div class="warning">
|
1862
|
+
<p><code class="literal">gtk_idle_remove</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1863
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#g-source-remove"><code class="function">g_source_remove()</code></a> instead.</p>
|
1864
|
+
</div>
|
1865
|
+
<p>
|
1866
|
+
Removes the idle function with the given id.
|
1867
|
+
</p>
|
1868
|
+
<div class="refsect3">
|
1869
|
+
<a name="id-1.3.2.7.37.6"></a><h4>Parameters</h4>
|
1870
|
+
<div class="informaltable"><table width="100%" border="0">
|
1871
|
+
<colgroup>
|
1872
|
+
<col width="150px" class="parameters_name">
|
1873
|
+
<col class="parameters_description">
|
1874
|
+
<col width="200px" class="parameters_annotations">
|
1875
|
+
</colgroup>
|
1876
|
+
<tbody><tr>
|
1877
|
+
<td class="parameter_name"><p>idle_handler_id</p></td>
|
1878
|
+
<td class="parameter_description"><p>Identifies the idle function to remove.</p></td>
|
1879
|
+
<td class="parameter_annotations"> </td>
|
1880
|
+
</tr></tbody>
|
1881
|
+
</table></div>
|
1882
|
+
</div>
|
1883
|
+
</div>
|
1884
|
+
<hr>
|
1885
|
+
<div class="refsect2">
|
1886
|
+
<a name="gtk-idle-remove-by-data"></a><h3>gtk_idle_remove_by_data ()</h3>
|
1887
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1888
|
+
gtk_idle_remove_by_data (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
1889
|
+
<div class="warning">
|
1890
|
+
<p><code class="literal">gtk_idle_remove_by_data</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1891
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#g-idle-remove-by-data"><code class="function">g_idle_remove_by_data()</code></a> instead.</p>
|
1892
|
+
</div>
|
1893
|
+
<p>
|
1894
|
+
Removes the idle function identified by the user data.
|
1895
|
+
</p>
|
1896
|
+
<div class="refsect3">
|
1897
|
+
<a name="id-1.3.2.7.38.6"></a><h4>Parameters</h4>
|
1898
|
+
<div class="informaltable"><table width="100%" border="0">
|
1899
|
+
<colgroup>
|
1900
|
+
<col width="150px" class="parameters_name">
|
1901
|
+
<col class="parameters_description">
|
1902
|
+
<col width="200px" class="parameters_annotations">
|
1903
|
+
</colgroup>
|
1904
|
+
<tbody><tr>
|
1905
|
+
<td class="parameter_name"><p>data</p></td>
|
1906
|
+
<td class="parameter_description"><p>remove the idle function which was registered with this user data.</p></td>
|
1907
|
+
<td class="parameter_annotations"> </td>
|
1908
|
+
</tr></tbody>
|
1909
|
+
</table></div>
|
1910
|
+
</div>
|
1911
|
+
</div>
|
1912
|
+
<hr>
|
1913
|
+
<div class="refsect2">
|
1914
|
+
<a name="gtk-input-add-full"></a><h3>gtk_input_add_full ()</h3>
|
1915
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1916
|
+
gtk_input_add_full (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> source</code></em>,
|
1917
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Input.html#GdkInputCondition"><span class="type">GdkInputCondition</span></a> condition</code></em>,
|
1918
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Input.html#GdkInputFunction"><span class="type">GdkInputFunction</span></a> function</code></em>,
|
1919
|
+
<em class="parameter"><code><a class="link" href="gtk2-Types.html#GtkCallbackMarshal" title="GtkCallbackMarshal ()"><span class="type">GtkCallbackMarshal</span></a> marshal</code></em>,
|
1920
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
1921
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
|
1922
|
+
<div class="warning">
|
1923
|
+
<p><code class="literal">gtk_input_add_full</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1924
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html#g-io-add-watch-full"><code class="function">g_io_add_watch_full()</code></a> instead.</p>
|
1925
|
+
</div>
|
1926
|
+
<p>
|
1927
|
+
Registers a function to be called when a condition becomes true
|
1928
|
+
on a file descriptor.
|
1929
|
+
</p>
|
1930
|
+
<div class="refsect3">
|
1931
|
+
<a name="id-1.3.2.7.39.6"></a><h4>Parameters</h4>
|
1932
|
+
<div class="informaltable"><table width="100%" border="0">
|
1933
|
+
<colgroup>
|
1934
|
+
<col width="150px" class="parameters_name">
|
1935
|
+
<col class="parameters_description">
|
1936
|
+
<col width="200px" class="parameters_annotations">
|
1937
|
+
</colgroup>
|
1938
|
+
<tbody>
|
1939
|
+
<tr>
|
1940
|
+
<td class="parameter_name"><p>source</p></td>
|
1941
|
+
<td class="parameter_description"><p>a file descriptor.</p></td>
|
1942
|
+
<td class="parameter_annotations"> </td>
|
1943
|
+
</tr>
|
1944
|
+
<tr>
|
1945
|
+
<td class="parameter_name"><p>condition</p></td>
|
1946
|
+
<td class="parameter_description"><p>the condition.</p></td>
|
1947
|
+
<td class="parameter_annotations"> </td>
|
1948
|
+
</tr>
|
1949
|
+
<tr>
|
1950
|
+
<td class="parameter_name"><p>function</p></td>
|
1951
|
+
<td class="parameter_description"><p>The function to call.</p></td>
|
1952
|
+
<td class="parameter_annotations"> </td>
|
1953
|
+
</tr>
|
1954
|
+
<tr>
|
1955
|
+
<td class="parameter_name"><p>marshal</p></td>
|
1956
|
+
<td class="parameter_description"><p>The marshaller to use instead of the function (if non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>).</p></td>
|
1957
|
+
<td class="parameter_annotations"> </td>
|
1958
|
+
</tr>
|
1959
|
+
<tr>
|
1960
|
+
<td class="parameter_name"><p>data</p></td>
|
1961
|
+
<td class="parameter_description"><p>callback data passed to <em class="parameter"><code>function</code></em>
|
1962
|
+
.</p></td>
|
1963
|
+
<td class="parameter_annotations"> </td>
|
1964
|
+
</tr>
|
1965
|
+
<tr>
|
1966
|
+
<td class="parameter_name"><p>destroy</p></td>
|
1967
|
+
<td class="parameter_description"><p>callback function to call with <em class="parameter"><code>data</code></em>
|
1968
|
+
when the input
|
1969
|
+
handler is removed, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
|
1970
|
+
<td class="parameter_annotations"> </td>
|
1971
|
+
</tr>
|
1972
|
+
</tbody>
|
1973
|
+
</table></div>
|
1974
|
+
</div>
|
1975
|
+
<div class="refsect3">
|
1976
|
+
<a name="id-1.3.2.7.39.7"></a><h4>Returns</h4>
|
1977
|
+
<p>A unique id for the event source; to be used with <a class="link" href="gtk2-General.html#gtk-input-remove" title="gtk_input_remove ()"><code class="function">gtk_input_remove()</code></a>.</p>
|
1978
|
+
<p></p>
|
1979
|
+
</div>
|
1980
|
+
</div>
|
1981
|
+
<hr>
|
1982
|
+
<div class="refsect2">
|
1983
|
+
<a name="gtk-input-remove"></a><h3>gtk_input_remove ()</h3>
|
1984
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1985
|
+
gtk_input_remove (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> input_handler_id</code></em>);</pre>
|
1986
|
+
<div class="warning">
|
1987
|
+
<p><code class="literal">gtk_input_remove</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
1988
|
+
<p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#g-source-remove"><code class="function">g_source_remove()</code></a> instead.</p>
|
1989
|
+
</div>
|
1990
|
+
<p>
|
1991
|
+
Removes the function with the given id.
|
1992
|
+
</p>
|
1993
|
+
<div class="refsect3">
|
1994
|
+
<a name="id-1.3.2.7.40.6"></a><h4>Parameters</h4>
|
1995
|
+
<div class="informaltable"><table width="100%" border="0">
|
1996
|
+
<colgroup>
|
1997
|
+
<col width="150px" class="parameters_name">
|
1998
|
+
<col class="parameters_description">
|
1999
|
+
<col width="200px" class="parameters_annotations">
|
2000
|
+
</colgroup>
|
2001
|
+
<tbody><tr>
|
2002
|
+
<td class="parameter_name"><p>input_handler_id</p></td>
|
2003
|
+
<td class="parameter_description"><p>Identifies the function to remove.</p></td>
|
2004
|
+
<td class="parameter_annotations"> </td>
|
2005
|
+
</tr></tbody>
|
2006
|
+
</table></div>
|
2007
|
+
</div>
|
2008
|
+
</div>
|
2009
|
+
<hr>
|
2010
|
+
<div class="refsect2">
|
2011
|
+
<a name="GTK-PRIORITY-REDRAW:CAPS"></a><h3>GTK_PRIORITY_REDRAW</h3>
|
2012
|
+
<pre class="programlisting">#define GTK_PRIORITY_REDRAW (G_PRIORITY_HIGH_IDLE + 20)
|
2013
|
+
</pre>
|
2014
|
+
<div class="warning">
|
2015
|
+
<p><code class="literal">GTK_PRIORITY_REDRAW</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
2016
|
+
<p>This macro is deprecated. You should use <a href="http://library.gnome.org/devel/gdk3/gdk2-Events.html#GDK-PRIORITY-REDRAW:CAPS"><code class="literal">GDK_PRIORITY_REDRAW</code></a> instead.</p>
|
2017
|
+
</div>
|
2018
|
+
<p>
|
2019
|
+
Use this priority for redrawing related stuff. It is used internally by
|
2020
|
+
GTK+ to do pending redraws. This priority is lower than <a class="link" href="gtk2-General.html#GTK-PRIORITY-RESIZE:CAPS" title="GTK_PRIORITY_RESIZE"><code class="literal">GTK_PRIORITY_RESIZE</code></a>
|
2021
|
+
to avoid redrawing a widget just before resizing (and therefore redrawing
|
2022
|
+
it again).
|
2023
|
+
</p>
|
2024
|
+
</div>
|
2025
|
+
<hr>
|
2026
|
+
<div class="refsect2">
|
2027
|
+
<a name="GTK-PRIORITY-RESIZE:CAPS"></a><h3>GTK_PRIORITY_RESIZE</h3>
|
2028
|
+
<pre class="programlisting">#define GTK_PRIORITY_RESIZE (G_PRIORITY_HIGH_IDLE + 10)
|
2029
|
+
</pre>
|
2030
|
+
<p>
|
2031
|
+
Use this priority for resizing related stuff. It is used internally by
|
2032
|
+
GTK+ to compute the sizes of widgets. This priority is higher than
|
2033
|
+
<a class="link" href="gtk2-General.html#GTK-PRIORITY-REDRAW:CAPS" title="GTK_PRIORITY_REDRAW"><code class="literal">GTK_PRIORITY_REDRAW</code></a> to avoid resizing a widget which was just redrawn.
|
2034
|
+
</p>
|
2035
|
+
</div>
|
2036
|
+
<hr>
|
2037
|
+
<div class="refsect2">
|
2038
|
+
<a name="gtk-key-snooper-install"></a><h3>gtk_key_snooper_install ()</h3>
|
2039
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
2040
|
+
gtk_key_snooper_install (<em class="parameter"><code><a class="link" href="gtk2-General.html#GtkKeySnoopFunc" title="GtkKeySnoopFunc ()"><span class="type">GtkKeySnoopFunc</span></a> snooper</code></em>,
|
2041
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> func_data</code></em>);</pre>
|
2042
|
+
<div class="warning"><p><code class="literal">gtk_key_snooper_install</code> is deprecated and should not be used in newly-written code.</p></div>
|
2043
|
+
<p>
|
2044
|
+
Installs a key snooper function, which will get called on all key events
|
2045
|
+
before delivering them normally.
|
2046
|
+
</p>
|
2047
|
+
<div class="refsect3">
|
2048
|
+
<a name="id-1.3.2.7.43.6"></a><h4>Parameters</h4>
|
2049
|
+
<div class="informaltable"><table width="100%" border="0">
|
2050
|
+
<colgroup>
|
2051
|
+
<col width="150px" class="parameters_name">
|
2052
|
+
<col class="parameters_description">
|
2053
|
+
<col width="200px" class="parameters_annotations">
|
2054
|
+
</colgroup>
|
2055
|
+
<tbody>
|
2056
|
+
<tr>
|
2057
|
+
<td class="parameter_name"><p>snooper</p></td>
|
2058
|
+
<td class="parameter_description"><p>a <a class="link" href="gtk2-General.html#GtkKeySnoopFunc" title="GtkKeySnoopFunc ()"><span class="type">GtkKeySnoopFunc</span></a>.</p></td>
|
2059
|
+
<td class="parameter_annotations"> </td>
|
2060
|
+
</tr>
|
2061
|
+
<tr>
|
2062
|
+
<td class="parameter_name"><p>func_data</p></td>
|
2063
|
+
<td class="parameter_description"><p>data to pass to <em class="parameter"><code>snooper</code></em>
|
2064
|
+
.</p></td>
|
2065
|
+
<td class="parameter_annotations"> </td>
|
2066
|
+
</tr>
|
2067
|
+
</tbody>
|
2068
|
+
</table></div>
|
2069
|
+
</div>
|
2070
|
+
<div class="refsect3">
|
2071
|
+
<a name="id-1.3.2.7.43.7"></a><h4>Returns</h4>
|
2072
|
+
<p>a unique id for this key snooper for use with <a class="link" href="gtk2-General.html#gtk-key-snooper-remove" title="gtk_key_snooper_remove ()"><code class="function">gtk_key_snooper_remove()</code></a>.</p>
|
2073
|
+
<p></p>
|
2074
|
+
</div>
|
2075
|
+
</div>
|
2076
|
+
<hr>
|
2077
|
+
<div class="refsect2">
|
2078
|
+
<a name="GtkKeySnoopFunc"></a><h3>GtkKeySnoopFunc ()</h3>
|
2079
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
2080
|
+
<span class="c_punctuation">(</span>*GtkKeySnoopFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *grab_widget</code></em>,
|
2081
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>,
|
2082
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> func_data</code></em>);</pre>
|
2083
|
+
<div class="warning"><p><code class="literal">GtkKeySnoopFunc</code> is deprecated and should not be used in newly-written code.</p></div>
|
2084
|
+
<p>
|
2085
|
+
Key snooper functions are called before normal event delivery.
|
2086
|
+
They can be used to implement custom key event handling.
|
2087
|
+
</p>
|
2088
|
+
<div class="refsect3">
|
2089
|
+
<a name="id-1.3.2.7.44.6"></a><h4>Parameters</h4>
|
2090
|
+
<div class="informaltable"><table width="100%" border="0">
|
2091
|
+
<colgroup>
|
2092
|
+
<col width="150px" class="parameters_name">
|
2093
|
+
<col class="parameters_description">
|
2094
|
+
<col width="200px" class="parameters_annotations">
|
2095
|
+
</colgroup>
|
2096
|
+
<tbody>
|
2097
|
+
<tr>
|
2098
|
+
<td class="parameter_name"><p>grab_widget</p></td>
|
2099
|
+
<td class="parameter_description"><p>the widget to which the event will be delivered.</p></td>
|
2100
|
+
<td class="parameter_annotations"> </td>
|
2101
|
+
</tr>
|
2102
|
+
<tr>
|
2103
|
+
<td class="parameter_name"><p>event</p></td>
|
2104
|
+
<td class="parameter_description"><p>the key event.</p></td>
|
2105
|
+
<td class="parameter_annotations"> </td>
|
2106
|
+
</tr>
|
2107
|
+
<tr>
|
2108
|
+
<td class="parameter_name"><p>func_data</p></td>
|
2109
|
+
<td class="parameter_description"><p>the <em class="parameter"><code>func_data</code></em>
|
2110
|
+
supplied to <a class="link" href="gtk2-General.html#gtk-key-snooper-install" title="gtk_key_snooper_install ()"><code class="function">gtk_key_snooper_install()</code></a>.</p></td>
|
2111
|
+
<td class="parameter_annotations"> </td>
|
2112
|
+
</tr>
|
2113
|
+
</tbody>
|
2114
|
+
</table></div>
|
2115
|
+
</div>
|
2116
|
+
<div class="refsect3">
|
2117
|
+
<a name="id-1.3.2.7.44.7"></a><h4>Returns</h4>
|
2118
|
+
<p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop further processing of <em class="parameter"><code>event</code></em>
|
2119
|
+
, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to continue.</p>
|
2120
|
+
<p></p>
|
2121
|
+
</div>
|
2122
|
+
</div>
|
2123
|
+
<hr>
|
2124
|
+
<div class="refsect2">
|
2125
|
+
<a name="gtk-key-snooper-remove"></a><h3>gtk_key_snooper_remove ()</h3>
|
2126
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2127
|
+
gtk_key_snooper_remove (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> snooper_handler_id</code></em>);</pre>
|
2128
|
+
<p>
|
2129
|
+
Removes the key snooper function with the given id.
|
2130
|
+
</p>
|
2131
|
+
<div class="refsect3">
|
2132
|
+
<a name="id-1.3.2.7.45.5"></a><h4>Parameters</h4>
|
2133
|
+
<div class="informaltable"><table width="100%" border="0">
|
2134
|
+
<colgroup>
|
2135
|
+
<col width="150px" class="parameters_name">
|
2136
|
+
<col class="parameters_description">
|
2137
|
+
<col width="200px" class="parameters_annotations">
|
2138
|
+
</colgroup>
|
2139
|
+
<tbody><tr>
|
2140
|
+
<td class="parameter_name"><p>snooper_handler_id</p></td>
|
2141
|
+
<td class="parameter_description"><p>Identifies the key snooper to remove.</p></td>
|
2142
|
+
<td class="parameter_annotations"> </td>
|
2143
|
+
</tr></tbody>
|
2144
|
+
</table></div>
|
2145
|
+
</div>
|
2146
|
+
</div>
|
2147
|
+
<hr>
|
2148
|
+
<div class="refsect2">
|
2149
|
+
<a name="gtk-get-current-event"></a><h3>gtk_get_current_event ()</h3>
|
2150
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk2-Event-Structures.html#GdkEvent"><span class="returnvalue">GdkEvent</span></a> *
|
2151
|
+
gtk_get_current_event (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
2152
|
+
<p>Obtains a copy of the event currently being processed by GTK+. For
|
2153
|
+
example, if you get a "clicked" signal from <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>, the current
|
2154
|
+
event will be the <a href="http://library.gnome.org/devel/gdk3/gdk2-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> that triggered the "clicked"
|
2155
|
+
signal. The returned event must be freed with <a href="http://library.gnome.org/devel/gdk3/gdk2-Events.html#gdk-event-free"><code class="function">gdk_event_free()</code></a>.
|
2156
|
+
If there is no current event, the function returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
2157
|
+
<div class="refsect3">
|
2158
|
+
<a name="id-1.3.2.7.46.5"></a><h4>Returns</h4>
|
2159
|
+
<p> a copy of the current event, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no
|
2160
|
+
current event. </p>
|
2161
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
2162
|
+
</div>
|
2163
|
+
</div>
|
2164
|
+
<hr>
|
2165
|
+
<div class="refsect2">
|
2166
|
+
<a name="gtk-get-current-event-time"></a><h3>gtk_get_current_event_time ()</h3>
|
2167
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>
|
2168
|
+
gtk_get_current_event_time (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
2169
|
+
<p>If there is a current event and it has a timestamp, return that
|
2170
|
+
timestamp, otherwise return <a href="http://library.gnome.org/devel/gdk3/gdk2-Events.html#GDK-CURRENT-TIME:CAPS"><code class="literal">GDK_CURRENT_TIME</code></a>.</p>
|
2171
|
+
<div class="refsect3">
|
2172
|
+
<a name="id-1.3.2.7.47.5"></a><h4>Returns</h4>
|
2173
|
+
<p> the timestamp from the current event, or <a href="http://library.gnome.org/devel/gdk3/gdk2-Events.html#GDK-CURRENT-TIME:CAPS"><code class="literal">GDK_CURRENT_TIME</code></a>.</p>
|
2174
|
+
<p></p>
|
2175
|
+
</div>
|
2176
|
+
</div>
|
2177
|
+
<hr>
|
2178
|
+
<div class="refsect2">
|
2179
|
+
<a name="gtk-get-current-event-state"></a><h3>gtk_get_current_event_state ()</h3>
|
2180
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2181
|
+
gtk_get_current_event_state (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> *state</code></em>);</pre>
|
2182
|
+
<p>If there is a current event and it has a state field, place
|
2183
|
+
that state field in <em class="parameter"><code>state</code></em>
|
2184
|
+
and return <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, otherwise return
|
2185
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
|
2186
|
+
<div class="refsect3">
|
2187
|
+
<a name="id-1.3.2.7.48.5"></a><h4>Parameters</h4>
|
2188
|
+
<div class="informaltable"><table width="100%" border="0">
|
2189
|
+
<colgroup>
|
2190
|
+
<col width="150px" class="parameters_name">
|
2191
|
+
<col class="parameters_description">
|
2192
|
+
<col width="200px" class="parameters_annotations">
|
2193
|
+
</colgroup>
|
2194
|
+
<tbody><tr>
|
2195
|
+
<td class="parameter_name"><p>state</p></td>
|
2196
|
+
<td class="parameter_description"><p> a location to store the state of the current event. </p></td>
|
2197
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
2198
|
+
</tr></tbody>
|
2199
|
+
</table></div>
|
2200
|
+
</div>
|
2201
|
+
<div class="refsect3">
|
2202
|
+
<a name="id-1.3.2.7.48.6"></a><h4>Returns</h4>
|
2203
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if there was a current event and it had a state field</p>
|
2204
|
+
<p></p>
|
2205
|
+
</div>
|
2206
|
+
</div>
|
2207
|
+
<hr>
|
2208
|
+
<div class="refsect2">
|
2209
|
+
<a name="gtk-get-event-widget"></a><h3>gtk_get_event_widget ()</h3>
|
2210
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
2211
|
+
gtk_get_event_widget (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>);</pre>
|
2212
|
+
<p>If <em class="parameter"><code>event</code></em>
|
2213
|
+
is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> or the event was not associated with any widget,
|
2214
|
+
returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, otherwise returns the widget that received the event
|
2215
|
+
originally.</p>
|
2216
|
+
<div class="refsect3">
|
2217
|
+
<a name="id-1.3.2.7.49.5"></a><h4>Parameters</h4>
|
2218
|
+
<div class="informaltable"><table width="100%" border="0">
|
2219
|
+
<colgroup>
|
2220
|
+
<col width="150px" class="parameters_name">
|
2221
|
+
<col class="parameters_description">
|
2222
|
+
<col width="200px" class="parameters_annotations">
|
2223
|
+
</colgroup>
|
2224
|
+
<tbody><tr>
|
2225
|
+
<td class="parameter_name"><p>event</p></td>
|
2226
|
+
<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gdk3/gdk2-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a></p></td>
|
2227
|
+
<td class="parameter_annotations"> </td>
|
2228
|
+
</tr></tbody>
|
2229
|
+
</table></div>
|
2230
|
+
</div>
|
2231
|
+
<div class="refsect3">
|
2232
|
+
<a name="id-1.3.2.7.49.6"></a><h4>Returns</h4>
|
2233
|
+
<p> the widget that originally
|
2234
|
+
received <em class="parameter"><code>event</code></em>
|
2235
|
+
, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
|
2236
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
2237
|
+
</div>
|
2238
|
+
</div>
|
2239
|
+
<hr>
|
2240
|
+
<div class="refsect2">
|
2241
|
+
<a name="gtk-propagate-event"></a><h3>gtk_propagate_event ()</h3>
|
2242
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2243
|
+
gtk_propagate_event (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
2244
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>);</pre>
|
2245
|
+
<p>Sends an event to a widget, propagating the event to parent widgets
|
2246
|
+
if the event remains unhandled. Events received by GTK+ from GDK
|
2247
|
+
normally begin in <a class="link" href="gtk2-General.html#gtk-main-do-event" title="gtk_main_do_event ()"><code class="function">gtk_main_do_event()</code></a>. Depending on the type of
|
2248
|
+
event, existence of modal dialogs, grabs, etc., the event may be
|
2249
|
+
propagated; if so, this function is used. <a class="link" href="gtk2-General.html#gtk-propagate-event" title="gtk_propagate_event ()"><code class="function">gtk_propagate_event()</code></a>
|
2250
|
+
calls <a class="link" href="GtkWidget.html#gtk-widget-event" title="gtk_widget_event ()"><code class="function">gtk_widget_event()</code></a> on each widget it decides to send the
|
2251
|
+
event to. So <a class="link" href="GtkWidget.html#gtk-widget-event" title="gtk_widget_event ()"><code class="function">gtk_widget_event()</code></a> is the lowest-level function; it
|
2252
|
+
simply emits the "event" and possibly an event-specific signal on a
|
2253
|
+
widget. <a class="link" href="gtk2-General.html#gtk-propagate-event" title="gtk_propagate_event ()"><code class="function">gtk_propagate_event()</code></a> is a bit higher-level, and
|
2254
|
+
<a class="link" href="gtk2-General.html#gtk-main-do-event" title="gtk_main_do_event ()"><code class="function">gtk_main_do_event()</code></a> is the highest level.</p>
|
2255
|
+
<p>All that said, you most likely don't want to use any of these
|
2256
|
+
functions; synthesizing events is rarely needed. Consider asking on
|
2257
|
+
the mailing list for better ways to achieve your goals. For
|
2258
|
+
example, use <a href="http://library.gnome.org/devel/gdk3/gdk2-Windows.html#gdk-window-invalidate-rect"><code class="function">gdk_window_invalidate_rect()</code></a> or
|
2259
|
+
<a class="link" href="GtkWidget.html#gtk-widget-queue-draw" title="gtk_widget_queue_draw ()"><code class="function">gtk_widget_queue_draw()</code></a> instead of making up expose events.</p>
|
2260
|
+
<div class="refsect3">
|
2261
|
+
<a name="id-1.3.2.7.50.6"></a><h4>Parameters</h4>
|
2262
|
+
<div class="informaltable"><table width="100%" border="0">
|
2263
|
+
<colgroup>
|
2264
|
+
<col width="150px" class="parameters_name">
|
2265
|
+
<col class="parameters_description">
|
2266
|
+
<col width="200px" class="parameters_annotations">
|
2267
|
+
</colgroup>
|
2268
|
+
<tbody>
|
2269
|
+
<tr>
|
2270
|
+
<td class="parameter_name"><p>widget</p></td>
|
2271
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a></p></td>
|
2272
|
+
<td class="parameter_annotations"> </td>
|
2273
|
+
</tr>
|
2274
|
+
<tr>
|
2275
|
+
<td class="parameter_name"><p>event</p></td>
|
2276
|
+
<td class="parameter_description"><p>an event</p></td>
|
2277
|
+
<td class="parameter_annotations"> </td>
|
2278
|
+
</tr>
|
2279
|
+
</tbody>
|
2280
|
+
</table></div>
|
2281
|
+
</div>
|
2282
|
+
</div>
|
2283
|
+
</div>
|
2284
|
+
<div class="refsect1">
|
2285
|
+
<a name="gtk2-General.other_details"></a><h2>Types and Values</h2>
|
2286
|
+
<div class="refsect2">
|
2287
|
+
<a name="GTK-PRIORITY-HIGH:CAPS"></a><h3>GTK_PRIORITY_HIGH</h3>
|
2288
|
+
<pre class="programlisting">#define GTK_PRIORITY_HIGH G_PRIORITY_HIGH
|
2289
|
+
</pre>
|
2290
|
+
<div class="warning">
|
2291
|
+
<p><code class="literal">GTK_PRIORITY_HIGH</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
2292
|
+
<p>This macro is deprecated. You should use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#G-PRIORITY-HIGH:CAPS"><code class="literal">G_PRIORITY_HIGH</code></a> instead.</p>
|
2293
|
+
</div>
|
2294
|
+
<p>
|
2295
|
+
Use this for high priority timeouts. This priority is never used inside
|
2296
|
+
GTK+ so everything running at this priority will be running before anything
|
2297
|
+
inside the toolkit.
|
2298
|
+
</p>
|
2299
|
+
</div>
|
2300
|
+
<hr>
|
2301
|
+
<div class="refsect2">
|
2302
|
+
<a name="GTK-PRIORITY-INTERNAL:CAPS"></a><h3>GTK_PRIORITY_INTERNAL</h3>
|
2303
|
+
<pre class="programlisting">#define GTK_PRIORITY_INTERNAL GTK_PRIORITY_REDRAW
|
2304
|
+
</pre>
|
2305
|
+
<div class="warning"><p><code class="literal">GTK_PRIORITY_INTERNAL</code> is deprecated and should not be used in newly-written code.</p></div>
|
2306
|
+
<p>
|
2307
|
+
This priority is for GTK+ internal stuff. Don't use it in your applications.
|
2308
|
+
</p>
|
2309
|
+
</div>
|
2310
|
+
<hr>
|
2311
|
+
<div class="refsect2">
|
2312
|
+
<a name="GTK-PRIORITY-DEFAULT:CAPS"></a><h3>GTK_PRIORITY_DEFAULT</h3>
|
2313
|
+
<pre class="programlisting">#define GTK_PRIORITY_DEFAULT G_PRIORITY_DEFAULT_IDLE
|
2314
|
+
</pre>
|
2315
|
+
<div class="warning">
|
2316
|
+
<p><code class="literal">GTK_PRIORITY_DEFAULT</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
2317
|
+
<p>This macro is deprecated. You should use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#G-PRIORITY-DEFAULT-IDLE:CAPS"><code class="literal">G_PRIORITY_DEFAULT_IDLE</code></a> instead.</p>
|
2318
|
+
</div>
|
2319
|
+
<p>
|
2320
|
+
Default priority for idle functions.
|
2321
|
+
</p>
|
2322
|
+
</div>
|
2323
|
+
<hr>
|
2324
|
+
<div class="refsect2">
|
2325
|
+
<a name="GTK-PRIORITY-LOW:CAPS"></a><h3>GTK_PRIORITY_LOW</h3>
|
2326
|
+
<pre class="programlisting">#define GTK_PRIORITY_LOW G_PRIORITY_LOW
|
2327
|
+
</pre>
|
2328
|
+
<div class="warning">
|
2329
|
+
<p><code class="literal">GTK_PRIORITY_LOW</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
|
2330
|
+
<p>This macro is deprecated. You should use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#G-PRIORITY-LOW:CAPS"><code class="literal">G_PRIORITY_LOW</code></a> instead.</p>
|
2331
|
+
</div>
|
2332
|
+
<p>
|
2333
|
+
Priority for very unimportant background tasks.
|
2334
|
+
</p>
|
2335
|
+
</div>
|
2336
|
+
</div>
|
2337
|
+
<div class="refsect1">
|
2338
|
+
<a name="gtk2-General.see-also"></a><h2>See Also</h2>
|
2339
|
+
<p>
|
2340
|
+
See the GLib manual, especially <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html#GMainLoop"><span class="type">GMainLoop</span></a> and signal-related
|
2341
|
+
functions such as <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-connect"><code class="function">g_signal_connect()</code></a>.
|
2342
|
+
</p>
|
2343
|
+
</div>
|
2344
|
+
</div>
|
2345
|
+
<div class="footer">
|
2346
|
+
<hr>
|
2347
|
+
Generated by GTK-Doc V1.21.1</div>
|
2348
|
+
</body>
|
2349
|
+
</html>
|