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,186 @@
|
|
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: GtkIMContextSimple</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="MiscObjects.html" title="Miscellaneous">
|
9
|
+
<link rel="prev" href="GtkHandleBox.html" title="GtkHandleBox">
|
10
|
+
<link rel="next" href="GtkIMMulticontext.html" title="GtkIMMulticontext">
|
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="#GtkIMContextSimple.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#GtkIMContextSimple.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
20
|
+
</td>
|
21
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
|
+
<td><a accesskey="u" href="MiscObjects.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
23
|
+
<td><a accesskey="p" href="GtkHandleBox.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
24
|
+
<td><a accesskey="n" href="GtkIMMulticontext.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
25
|
+
</tr></table>
|
26
|
+
<div class="refentry">
|
27
|
+
<a name="GtkIMContextSimple"></a><div class="titlepage"></div>
|
28
|
+
<div class="refnamediv"><table width="100%"><tr>
|
29
|
+
<td valign="top">
|
30
|
+
<h2><span class="refentrytitle"><a name="GtkIMContextSimple.top_of_page"></a>GtkIMContextSimple</span></h2>
|
31
|
+
<p>GtkIMContextSimple — An input method context supporting table-based input methods</p>
|
32
|
+
</td>
|
33
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
34
|
+
</tr></table></div>
|
35
|
+
<div class="refsect1">
|
36
|
+
<a name="GtkIMContextSimple.functions"></a><h2>Functions</h2>
|
37
|
+
<div class="informaltable"><table width="100%" border="0">
|
38
|
+
<colgroup>
|
39
|
+
<col width="150px" class="functions_return">
|
40
|
+
<col class="functions_name">
|
41
|
+
</colgroup>
|
42
|
+
<tbody>
|
43
|
+
<tr>
|
44
|
+
<td class="function_type">
|
45
|
+
<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> *
|
46
|
+
</td>
|
47
|
+
<td class="function_name">
|
48
|
+
<a class="link" href="GtkIMContextSimple.html#gtk-im-context-simple-new" title="gtk_im_context_simple_new ()">gtk_im_context_simple_new</a> <span class="c_punctuation">()</span>
|
49
|
+
</td>
|
50
|
+
</tr>
|
51
|
+
<tr>
|
52
|
+
<td class="function_type">
|
53
|
+
<span class="returnvalue">void</span>
|
54
|
+
</td>
|
55
|
+
<td class="function_name">
|
56
|
+
<a class="link" href="GtkIMContextSimple.html#gtk-im-context-simple-add-table" title="gtk_im_context_simple_add_table ()">gtk_im_context_simple_add_table</a> <span class="c_punctuation">()</span>
|
57
|
+
</td>
|
58
|
+
</tr>
|
59
|
+
</tbody>
|
60
|
+
</table></div>
|
61
|
+
</div>
|
62
|
+
<div class="refsect1">
|
63
|
+
<a name="GtkIMContextSimple.other"></a><h2>Types and Values</h2>
|
64
|
+
<div class="informaltable"><table width="100%" border="0">
|
65
|
+
<colgroup>
|
66
|
+
<col width="150px" class="name">
|
67
|
+
<col class="description">
|
68
|
+
</colgroup>
|
69
|
+
<tbody>
|
70
|
+
<tr>
|
71
|
+
<td class="datatype_keyword">struct</td>
|
72
|
+
<td class="function_name"><a class="link" href="GtkIMContextSimple.html#GtkIMContextSimple-struct" title="struct GtkIMContextSimple">GtkIMContextSimple</a></td>
|
73
|
+
</tr>
|
74
|
+
<tr>
|
75
|
+
<td class="define_keyword">#define</td>
|
76
|
+
<td class="function_name"><a class="link" href="GtkIMContextSimple.html#GTK-MAX-COMPOSE-LEN:CAPS" title="GTK_MAX_COMPOSE_LEN">GTK_MAX_COMPOSE_LEN</a></td>
|
77
|
+
</tr>
|
78
|
+
</tbody>
|
79
|
+
</table></div>
|
80
|
+
</div>
|
81
|
+
<div class="refsect1">
|
82
|
+
<a name="GtkIMContextSimple.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
83
|
+
<pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
84
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkIMContext.html" title="GtkIMContext">GtkIMContext</a>
|
85
|
+
<span class="lineart">╰──</span> GtkIMContextSimple
|
86
|
+
</pre>
|
87
|
+
</div>
|
88
|
+
<div class="refsect1">
|
89
|
+
<a name="GtkIMContextSimple.includes"></a><h2>Includes</h2>
|
90
|
+
<pre class="synopsis">#include <gtk/gtk.h>
|
91
|
+
</pre>
|
92
|
+
</div>
|
93
|
+
<div class="refsect1">
|
94
|
+
<a name="GtkIMContextSimple.description"></a><h2>Description</h2>
|
95
|
+
<p>
|
96
|
+
</p>
|
97
|
+
</div>
|
98
|
+
<div class="refsect1">
|
99
|
+
<a name="GtkIMContextSimple.functions_details"></a><h2>Functions</h2>
|
100
|
+
<div class="refsect2">
|
101
|
+
<a name="gtk-im-context-simple-new"></a><h3>gtk_im_context_simple_new ()</h3>
|
102
|
+
<pre class="programlisting"><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> *
|
103
|
+
gtk_im_context_simple_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
104
|
+
<p>Creates a new <a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a>.</p>
|
105
|
+
<div class="refsect3">
|
106
|
+
<a name="id-1.4.17.8.8.2.5"></a><h4>Returns</h4>
|
107
|
+
<p> a new <a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a>.</p>
|
108
|
+
<p></p>
|
109
|
+
</div>
|
110
|
+
</div>
|
111
|
+
<hr>
|
112
|
+
<div class="refsect2">
|
113
|
+
<a name="gtk-im-context-simple-add-table"></a><h3>gtk_im_context_simple_add_table ()</h3>
|
114
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
115
|
+
gtk_im_context_simple_add_table (<em class="parameter"><code><a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a> *context_simple</code></em>,
|
116
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> *data</code></em>,
|
117
|
+
<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> max_seq_len</code></em>,
|
118
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_seqs</code></em>);</pre>
|
119
|
+
<p>Adds an additional table to search to the input context.
|
120
|
+
Each row of the table consists of <em class="parameter"><code>max_seq_len</code></em>
|
121
|
+
key symbols
|
122
|
+
followed by two <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> interpreted as the high and low
|
123
|
+
words of a <span class="type">gunicode</span> value. Tables are searched starting
|
124
|
+
from the last added.</p>
|
125
|
+
<p>The table must be sorted in dictionary order on the
|
126
|
+
numeric value of the key symbol fields. (Values beyond
|
127
|
+
the length of the sequence should be zero.)</p>
|
128
|
+
<div class="refsect3">
|
129
|
+
<a name="id-1.4.17.8.8.3.6"></a><h4>Parameters</h4>
|
130
|
+
<div class="informaltable"><table width="100%" border="0">
|
131
|
+
<colgroup>
|
132
|
+
<col width="150px" class="parameters_name">
|
133
|
+
<col class="parameters_description">
|
134
|
+
<col width="200px" class="parameters_annotations">
|
135
|
+
</colgroup>
|
136
|
+
<tbody>
|
137
|
+
<tr>
|
138
|
+
<td class="parameter_name"><p>context_simple</p></td>
|
139
|
+
<td class="parameter_description"><p>A <a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a></p></td>
|
140
|
+
<td class="parameter_annotations"> </td>
|
141
|
+
</tr>
|
142
|
+
<tr>
|
143
|
+
<td class="parameter_name"><p>data</p></td>
|
144
|
+
<td class="parameter_description"><p>the table </p></td>
|
145
|
+
<td class="parameter_annotations"> </td>
|
146
|
+
</tr>
|
147
|
+
<tr>
|
148
|
+
<td class="parameter_name"><p>max_seq_len</p></td>
|
149
|
+
<td class="parameter_description"><p>Maximum length of a sequence in the table
|
150
|
+
(cannot be greater than <a class="link" href="GtkIMContextSimple.html#GTK-MAX-COMPOSE-LEN:CAPS" title="GTK_MAX_COMPOSE_LEN"><span class="type">GTK_MAX_COMPOSE_LEN</span></a>)</p></td>
|
151
|
+
<td class="parameter_annotations"> </td>
|
152
|
+
</tr>
|
153
|
+
<tr>
|
154
|
+
<td class="parameter_name"><p>n_seqs</p></td>
|
155
|
+
<td class="parameter_description"><p>number of sequences in the table</p></td>
|
156
|
+
<td class="parameter_annotations"> </td>
|
157
|
+
</tr>
|
158
|
+
</tbody>
|
159
|
+
</table></div>
|
160
|
+
</div>
|
161
|
+
</div>
|
162
|
+
</div>
|
163
|
+
<div class="refsect1">
|
164
|
+
<a name="GtkIMContextSimple.other_details"></a><h2>Types and Values</h2>
|
165
|
+
<div class="refsect2">
|
166
|
+
<a name="GtkIMContextSimple-struct"></a><h3>struct GtkIMContextSimple</h3>
|
167
|
+
<pre class="programlisting">struct GtkIMContextSimple;</pre>
|
168
|
+
<p>
|
169
|
+
</p>
|
170
|
+
</div>
|
171
|
+
<hr>
|
172
|
+
<div class="refsect2">
|
173
|
+
<a name="GTK-MAX-COMPOSE-LEN:CAPS"></a><h3>GTK_MAX_COMPOSE_LEN</h3>
|
174
|
+
<pre class="programlisting">#define GTK_MAX_COMPOSE_LEN 7
|
175
|
+
</pre>
|
176
|
+
<p>
|
177
|
+
The maximum length of sequences in compose tables.
|
178
|
+
</p>
|
179
|
+
</div>
|
180
|
+
</div>
|
181
|
+
</div>
|
182
|
+
<div class="footer">
|
183
|
+
<hr>
|
184
|
+
Generated by GTK-Doc V1.21.1</div>
|
185
|
+
</body>
|
186
|
+
</html>
|
@@ -0,0 +1,231 @@
|
|
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: GtkIMMulticontext</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="MiscObjects.html" title="Miscellaneous">
|
9
|
+
<link rel="prev" href="GtkIMContextSimple.html" title="GtkIMContextSimple">
|
10
|
+
<link rel="next" href="GtkSizeGroup.html" title="GtkSizeGroup">
|
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="#GtkIMMulticontext.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#GtkIMMulticontext.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
20
|
+
</td>
|
21
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
|
+
<td><a accesskey="u" href="MiscObjects.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
23
|
+
<td><a accesskey="p" href="GtkIMContextSimple.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
24
|
+
<td><a accesskey="n" href="GtkSizeGroup.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
25
|
+
</tr></table>
|
26
|
+
<div class="refentry">
|
27
|
+
<a name="GtkIMMulticontext"></a><div class="titlepage"></div>
|
28
|
+
<div class="refnamediv"><table width="100%"><tr>
|
29
|
+
<td valign="top">
|
30
|
+
<h2><span class="refentrytitle"><a name="GtkIMMulticontext.top_of_page"></a>GtkIMMulticontext</span></h2>
|
31
|
+
<p>GtkIMMulticontext — An input method context supporting multiple, loadable input methods</p>
|
32
|
+
</td>
|
33
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
34
|
+
</tr></table></div>
|
35
|
+
<div class="refsect1">
|
36
|
+
<a name="GtkIMMulticontext.functions"></a><h2>Functions</h2>
|
37
|
+
<div class="informaltable"><table width="100%" border="0">
|
38
|
+
<colgroup>
|
39
|
+
<col width="150px" class="functions_return">
|
40
|
+
<col class="functions_name">
|
41
|
+
</colgroup>
|
42
|
+
<tbody>
|
43
|
+
<tr>
|
44
|
+
<td class="function_type">
|
45
|
+
<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> *
|
46
|
+
</td>
|
47
|
+
<td class="function_name">
|
48
|
+
<a class="link" href="GtkIMMulticontext.html#gtk-im-multicontext-new" title="gtk_im_multicontext_new ()">gtk_im_multicontext_new</a> <span class="c_punctuation">()</span>
|
49
|
+
</td>
|
50
|
+
</tr>
|
51
|
+
<tr>
|
52
|
+
<td class="function_type">
|
53
|
+
<span class="returnvalue">void</span>
|
54
|
+
</td>
|
55
|
+
<td class="function_name">
|
56
|
+
<a class="link" href="GtkIMMulticontext.html#gtk-im-multicontext-append-menuitems" title="gtk_im_multicontext_append_menuitems ()">gtk_im_multicontext_append_menuitems</a> <span class="c_punctuation">()</span>
|
57
|
+
</td>
|
58
|
+
</tr>
|
59
|
+
<tr>
|
60
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
61
|
+
</td>
|
62
|
+
<td class="function_name">
|
63
|
+
<a class="link" href="GtkIMMulticontext.html#gtk-im-multicontext-get-context-id" title="gtk_im_multicontext_get_context_id ()">gtk_im_multicontext_get_context_id</a> <span class="c_punctuation">()</span>
|
64
|
+
</td>
|
65
|
+
</tr>
|
66
|
+
<tr>
|
67
|
+
<td class="function_type">
|
68
|
+
<span class="returnvalue">void</span>
|
69
|
+
</td>
|
70
|
+
<td class="function_name">
|
71
|
+
<a class="link" href="GtkIMMulticontext.html#gtk-im-multicontext-set-context-id" title="gtk_im_multicontext_set_context_id ()">gtk_im_multicontext_set_context_id</a> <span class="c_punctuation">()</span>
|
72
|
+
</td>
|
73
|
+
</tr>
|
74
|
+
</tbody>
|
75
|
+
</table></div>
|
76
|
+
</div>
|
77
|
+
<div class="refsect1">
|
78
|
+
<a name="GtkIMMulticontext.other"></a><h2>Types and Values</h2>
|
79
|
+
<div class="informaltable"><table width="100%" border="0">
|
80
|
+
<colgroup>
|
81
|
+
<col width="150px" class="name">
|
82
|
+
<col class="description">
|
83
|
+
</colgroup>
|
84
|
+
<tbody><tr>
|
85
|
+
<td class="datatype_keyword">struct</td>
|
86
|
+
<td class="function_name"><a class="link" href="GtkIMMulticontext.html#GtkIMMulticontext-struct" title="struct GtkIMMulticontext">GtkIMMulticontext</a></td>
|
87
|
+
</tr></tbody>
|
88
|
+
</table></div>
|
89
|
+
</div>
|
90
|
+
<div class="refsect1">
|
91
|
+
<a name="GtkIMMulticontext.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
92
|
+
<pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
93
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkIMContext.html" title="GtkIMContext">GtkIMContext</a>
|
94
|
+
<span class="lineart">╰──</span> GtkIMMulticontext
|
95
|
+
</pre>
|
96
|
+
</div>
|
97
|
+
<div class="refsect1">
|
98
|
+
<a name="GtkIMMulticontext.includes"></a><h2>Includes</h2>
|
99
|
+
<pre class="synopsis">#include <gtk/gtk.h>
|
100
|
+
</pre>
|
101
|
+
</div>
|
102
|
+
<div class="refsect1">
|
103
|
+
<a name="GtkIMMulticontext.description"></a><h2>Description</h2>
|
104
|
+
<p>
|
105
|
+
</p>
|
106
|
+
</div>
|
107
|
+
<div class="refsect1">
|
108
|
+
<a name="GtkIMMulticontext.functions_details"></a><h2>Functions</h2>
|
109
|
+
<div class="refsect2">
|
110
|
+
<a name="gtk-im-multicontext-new"></a><h3>gtk_im_multicontext_new ()</h3>
|
111
|
+
<pre class="programlisting"><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> *
|
112
|
+
gtk_im_multicontext_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
113
|
+
<p>Creates a new <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a>.</p>
|
114
|
+
<div class="refsect3">
|
115
|
+
<a name="id-1.4.17.9.8.2.5"></a><h4>Returns</h4>
|
116
|
+
<p> a new <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a>.</p>
|
117
|
+
<p></p>
|
118
|
+
</div>
|
119
|
+
</div>
|
120
|
+
<hr>
|
121
|
+
<div class="refsect2">
|
122
|
+
<a name="gtk-im-multicontext-append-menuitems"></a><h3>gtk_im_multicontext_append_menuitems ()</h3>
|
123
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
124
|
+
gtk_im_multicontext_append_menuitems (<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>,
|
125
|
+
<em class="parameter"><code><a class="link" href="GtkMenuShell.html" title="GtkMenuShell"><span class="type">GtkMenuShell</span></a> *menushell</code></em>);</pre>
|
126
|
+
<p>Add menuitems for various available input methods to a menu;
|
127
|
+
the menuitems, when selected, will switch the input method
|
128
|
+
for the context and the global default input method.</p>
|
129
|
+
<div class="refsect3">
|
130
|
+
<a name="id-1.4.17.9.8.3.5"></a><h4>Parameters</h4>
|
131
|
+
<div class="informaltable"><table width="100%" border="0">
|
132
|
+
<colgroup>
|
133
|
+
<col width="150px" class="parameters_name">
|
134
|
+
<col class="parameters_description">
|
135
|
+
<col width="200px" class="parameters_annotations">
|
136
|
+
</colgroup>
|
137
|
+
<tbody>
|
138
|
+
<tr>
|
139
|
+
<td class="parameter_name"><p>context</p></td>
|
140
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a></p></td>
|
141
|
+
<td class="parameter_annotations"> </td>
|
142
|
+
</tr>
|
143
|
+
<tr>
|
144
|
+
<td class="parameter_name"><p>menushell</p></td>
|
145
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkMenuShell.html" title="GtkMenuShell"><span class="type">GtkMenuShell</span></a></p></td>
|
146
|
+
<td class="parameter_annotations"> </td>
|
147
|
+
</tr>
|
148
|
+
</tbody>
|
149
|
+
</table></div>
|
150
|
+
</div>
|
151
|
+
</div>
|
152
|
+
<hr>
|
153
|
+
<div class="refsect2">
|
154
|
+
<a name="gtk-im-multicontext-get-context-id"></a><h3>gtk_im_multicontext_get_context_id ()</h3>
|
155
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
156
|
+
gtk_im_multicontext_get_context_id (<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>);</pre>
|
157
|
+
<p>Gets the id of the currently active slave of the <em class="parameter"><code>context</code></em>
|
158
|
+
.</p>
|
159
|
+
<div class="refsect3">
|
160
|
+
<a name="id-1.4.17.9.8.4.5"></a><h4>Parameters</h4>
|
161
|
+
<div class="informaltable"><table width="100%" border="0">
|
162
|
+
<colgroup>
|
163
|
+
<col width="150px" class="parameters_name">
|
164
|
+
<col class="parameters_description">
|
165
|
+
<col width="200px" class="parameters_annotations">
|
166
|
+
</colgroup>
|
167
|
+
<tbody><tr>
|
168
|
+
<td class="parameter_name"><p>context</p></td>
|
169
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a></p></td>
|
170
|
+
<td class="parameter_annotations"> </td>
|
171
|
+
</tr></tbody>
|
172
|
+
</table></div>
|
173
|
+
</div>
|
174
|
+
<div class="refsect3">
|
175
|
+
<a name="id-1.4.17.9.8.4.6"></a><h4>Returns</h4>
|
176
|
+
<p> the id of the currently active slave</p>
|
177
|
+
<p></p>
|
178
|
+
</div>
|
179
|
+
<p class="since">Since 2.16</p>
|
180
|
+
</div>
|
181
|
+
<hr>
|
182
|
+
<div class="refsect2">
|
183
|
+
<a name="gtk-im-multicontext-set-context-id"></a><h3>gtk_im_multicontext_set_context_id ()</h3>
|
184
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
185
|
+
gtk_im_multicontext_set_context_id (<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>,
|
186
|
+
<em class="parameter"><code>const <span class="type">char</span> *context_id</code></em>);</pre>
|
187
|
+
<p>Sets the context id for <em class="parameter"><code>context</code></em>
|
188
|
+
.</p>
|
189
|
+
<p>This causes the currently active slave of <em class="parameter"><code>context</code></em>
|
190
|
+
to be
|
191
|
+
replaced by the slave corresponding to the new context id.</p>
|
192
|
+
<div class="refsect3">
|
193
|
+
<a name="id-1.4.17.9.8.5.6"></a><h4>Parameters</h4>
|
194
|
+
<div class="informaltable"><table width="100%" border="0">
|
195
|
+
<colgroup>
|
196
|
+
<col width="150px" class="parameters_name">
|
197
|
+
<col class="parameters_description">
|
198
|
+
<col width="200px" class="parameters_annotations">
|
199
|
+
</colgroup>
|
200
|
+
<tbody>
|
201
|
+
<tr>
|
202
|
+
<td class="parameter_name"><p>context</p></td>
|
203
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a></p></td>
|
204
|
+
<td class="parameter_annotations"> </td>
|
205
|
+
</tr>
|
206
|
+
<tr>
|
207
|
+
<td class="parameter_name"><p>context_id</p></td>
|
208
|
+
<td class="parameter_description"><p>the id to use </p></td>
|
209
|
+
<td class="parameter_annotations"> </td>
|
210
|
+
</tr>
|
211
|
+
</tbody>
|
212
|
+
</table></div>
|
213
|
+
</div>
|
214
|
+
<p class="since">Since 2.16</p>
|
215
|
+
</div>
|
216
|
+
</div>
|
217
|
+
<div class="refsect1">
|
218
|
+
<a name="GtkIMMulticontext.other_details"></a><h2>Types and Values</h2>
|
219
|
+
<div class="refsect2">
|
220
|
+
<a name="GtkIMMulticontext-struct"></a><h3>struct GtkIMMulticontext</h3>
|
221
|
+
<pre class="programlisting">struct GtkIMMulticontext;</pre>
|
222
|
+
<p>
|
223
|
+
</p>
|
224
|
+
</div>
|
225
|
+
</div>
|
226
|
+
</div>
|
227
|
+
<div class="footer">
|
228
|
+
<hr>
|
229
|
+
Generated by GTK-Doc V1.21.1</div>
|
230
|
+
</body>
|
231
|
+
</html>
|
@@ -0,0 +1,1796 @@
|
|
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: GtkIconTheme</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="gtk2-Drag-and-Drop.html" title="Drag and Drop">
|
10
|
+
<link rel="next" href="gtk2-Stock-Items.html" title="Stock Items">
|
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="#GtkIconTheme.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#GtkIconTheme.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_signals"> <span class="dim">|</span>
|
20
|
+
<a href="#GtkIconTheme.signals" class="shortcut">Signals</a></span>
|
21
|
+
</td>
|
22
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
23
|
+
<td><a accesskey="u" href="gtkbase.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
24
|
+
<td><a accesskey="p" href="gtk2-Drag-and-Drop.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
25
|
+
<td><a accesskey="n" href="gtk2-Stock-Items.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
26
|
+
</tr></table>
|
27
|
+
<div class="refentry">
|
28
|
+
<a name="GtkIconTheme"></a><div class="titlepage"></div>
|
29
|
+
<div class="refnamediv"><table width="100%"><tr>
|
30
|
+
<td valign="top">
|
31
|
+
<h2><span class="refentrytitle"><a name="GtkIconTheme.top_of_page"></a>GtkIconTheme</span></h2>
|
32
|
+
<p>GtkIconTheme — Looking up icons by name</p>
|
33
|
+
</td>
|
34
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
35
|
+
</tr></table></div>
|
36
|
+
<div class="refsect1">
|
37
|
+
<a name="GtkIconTheme.functions"></a><h2>Functions</h2>
|
38
|
+
<div class="informaltable"><table width="100%" border="0">
|
39
|
+
<colgroup>
|
40
|
+
<col width="150px" class="functions_return">
|
41
|
+
<col class="functions_name">
|
42
|
+
</colgroup>
|
43
|
+
<tbody>
|
44
|
+
<tr>
|
45
|
+
<td class="function_type">
|
46
|
+
<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> *
|
47
|
+
</td>
|
48
|
+
<td class="function_name">
|
49
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-new" title="gtk_icon_theme_new ()">gtk_icon_theme_new</a> <span class="c_punctuation">()</span>
|
50
|
+
</td>
|
51
|
+
</tr>
|
52
|
+
<tr>
|
53
|
+
<td class="function_type">
|
54
|
+
<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> *
|
55
|
+
</td>
|
56
|
+
<td class="function_name">
|
57
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-default" title="gtk_icon_theme_get_default ()">gtk_icon_theme_get_default</a> <span class="c_punctuation">()</span>
|
58
|
+
</td>
|
59
|
+
</tr>
|
60
|
+
<tr>
|
61
|
+
<td class="function_type">
|
62
|
+
<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> *
|
63
|
+
</td>
|
64
|
+
<td class="function_name">
|
65
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title="gtk_icon_theme_get_for_screen ()">gtk_icon_theme_get_for_screen</a> <span class="c_punctuation">()</span>
|
66
|
+
</td>
|
67
|
+
</tr>
|
68
|
+
<tr>
|
69
|
+
<td class="function_type">
|
70
|
+
<span class="returnvalue">void</span>
|
71
|
+
</td>
|
72
|
+
<td class="function_name">
|
73
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-screen" title="gtk_icon_theme_set_screen ()">gtk_icon_theme_set_screen</a> <span class="c_punctuation">()</span>
|
74
|
+
</td>
|
75
|
+
</tr>
|
76
|
+
<tr>
|
77
|
+
<td class="function_type">
|
78
|
+
<span class="returnvalue">void</span>
|
79
|
+
</td>
|
80
|
+
<td class="function_name">
|
81
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-custom-theme" title="gtk_icon_theme_set_custom_theme ()">gtk_icon_theme_set_custom_theme</a> <span class="c_punctuation">()</span>
|
82
|
+
</td>
|
83
|
+
</tr>
|
84
|
+
<tr>
|
85
|
+
<td class="function_type">
|
86
|
+
<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>
|
87
|
+
</td>
|
88
|
+
<td class="function_name">
|
89
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-has-icon" title="gtk_icon_theme_has_icon ()">gtk_icon_theme_has_icon</a> <span class="c_punctuation">()</span>
|
90
|
+
</td>
|
91
|
+
</tr>
|
92
|
+
<tr>
|
93
|
+
<td class="function_type">
|
94
|
+
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
95
|
+
</td>
|
96
|
+
<td class="function_name">
|
97
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()">gtk_icon_theme_lookup_icon</a> <span class="c_punctuation">()</span>
|
98
|
+
</td>
|
99
|
+
</tr>
|
100
|
+
<tr>
|
101
|
+
<td class="function_type">
|
102
|
+
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
103
|
+
</td>
|
104
|
+
<td class="function_name">
|
105
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-choose-icon" title="gtk_icon_theme_choose_icon ()">gtk_icon_theme_choose_icon</a> <span class="c_punctuation">()</span>
|
106
|
+
</td>
|
107
|
+
</tr>
|
108
|
+
<tr>
|
109
|
+
<td class="function_type">
|
110
|
+
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
111
|
+
</td>
|
112
|
+
<td class="function_name">
|
113
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-by-gicon" title="gtk_icon_theme_lookup_by_gicon ()">gtk_icon_theme_lookup_by_gicon</a> <span class="c_punctuation">()</span>
|
114
|
+
</td>
|
115
|
+
</tr>
|
116
|
+
<tr>
|
117
|
+
<td class="function_type">
|
118
|
+
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
|
119
|
+
</td>
|
120
|
+
<td class="function_name">
|
121
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-load-icon" title="gtk_icon_theme_load_icon ()">gtk_icon_theme_load_icon</a> <span class="c_punctuation">()</span>
|
122
|
+
</td>
|
123
|
+
</tr>
|
124
|
+
<tr>
|
125
|
+
<td class="function_type">
|
126
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
|
127
|
+
</td>
|
128
|
+
<td class="function_name">
|
129
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-list-contexts" title="gtk_icon_theme_list_contexts ()">gtk_icon_theme_list_contexts</a> <span class="c_punctuation">()</span>
|
130
|
+
</td>
|
131
|
+
</tr>
|
132
|
+
<tr>
|
133
|
+
<td class="function_type">
|
134
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
|
135
|
+
</td>
|
136
|
+
<td class="function_name">
|
137
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-list-icons" title="gtk_icon_theme_list_icons ()">gtk_icon_theme_list_icons</a> <span class="c_punctuation">()</span>
|
138
|
+
</td>
|
139
|
+
</tr>
|
140
|
+
<tr>
|
141
|
+
<td class="function_type">
|
142
|
+
<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> *
|
143
|
+
</td>
|
144
|
+
<td class="function_name">
|
145
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-icon-sizes" title="gtk_icon_theme_get_icon_sizes ()">gtk_icon_theme_get_icon_sizes</a> <span class="c_punctuation">()</span>
|
146
|
+
</td>
|
147
|
+
</tr>
|
148
|
+
<tr>
|
149
|
+
<td class="function_type">
|
150
|
+
<span class="returnvalue">char</span> *
|
151
|
+
</td>
|
152
|
+
<td class="function_name">
|
153
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-example-icon-name" title="gtk_icon_theme_get_example_icon_name ()">gtk_icon_theme_get_example_icon_name</a> <span class="c_punctuation">()</span>
|
154
|
+
</td>
|
155
|
+
</tr>
|
156
|
+
<tr>
|
157
|
+
<td class="function_type">
|
158
|
+
<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>
|
159
|
+
</td>
|
160
|
+
<td class="function_name">
|
161
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-rescan-if-needed" title="gtk_icon_theme_rescan_if_needed ()">gtk_icon_theme_rescan_if_needed</a> <span class="c_punctuation">()</span>
|
162
|
+
</td>
|
163
|
+
</tr>
|
164
|
+
<tr>
|
165
|
+
<td class="function_type">
|
166
|
+
<span class="returnvalue">void</span>
|
167
|
+
</td>
|
168
|
+
<td class="function_name">
|
169
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-add-builtin-icon" title="gtk_icon_theme_add_builtin_icon ()">gtk_icon_theme_add_builtin_icon</a> <span class="c_punctuation">()</span>
|
170
|
+
</td>
|
171
|
+
</tr>
|
172
|
+
<tr>
|
173
|
+
<td class="function_type">
|
174
|
+
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
175
|
+
</td>
|
176
|
+
<td class="function_name">
|
177
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-copy" title="gtk_icon_info_copy ()">gtk_icon_info_copy</a> <span class="c_punctuation">()</span>
|
178
|
+
</td>
|
179
|
+
</tr>
|
180
|
+
<tr>
|
181
|
+
<td class="function_type">
|
182
|
+
<span class="returnvalue">void</span>
|
183
|
+
</td>
|
184
|
+
<td class="function_name">
|
185
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()">gtk_icon_info_free</a> <span class="c_punctuation">()</span>
|
186
|
+
</td>
|
187
|
+
</tr>
|
188
|
+
<tr>
|
189
|
+
<td class="function_type">
|
190
|
+
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
191
|
+
</td>
|
192
|
+
<td class="function_name">
|
193
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-new-for-pixbuf" title="gtk_icon_info_new_for_pixbuf ()">gtk_icon_info_new_for_pixbuf</a> <span class="c_punctuation">()</span>
|
194
|
+
</td>
|
195
|
+
</tr>
|
196
|
+
<tr>
|
197
|
+
<td class="function_type">
|
198
|
+
<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>
|
199
|
+
</td>
|
200
|
+
<td class="function_name">
|
201
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-get-base-size" title="gtk_icon_info_get_base_size ()">gtk_icon_info_get_base_size</a> <span class="c_punctuation">()</span>
|
202
|
+
</td>
|
203
|
+
</tr>
|
204
|
+
<tr>
|
205
|
+
<td class="function_type">
|
206
|
+
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
|
207
|
+
</td>
|
208
|
+
<td class="function_name">
|
209
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()">gtk_icon_info_get_builtin_pixbuf</a> <span class="c_punctuation">()</span>
|
210
|
+
</td>
|
211
|
+
</tr>
|
212
|
+
<tr>
|
213
|
+
<td class="function_type">
|
214
|
+
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
|
215
|
+
</td>
|
216
|
+
<td class="function_name">
|
217
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()">gtk_icon_info_load_icon</a> <span class="c_punctuation">()</span>
|
218
|
+
</td>
|
219
|
+
</tr>
|
220
|
+
<tr>
|
221
|
+
<td class="function_type">
|
222
|
+
<span class="returnvalue">void</span>
|
223
|
+
</td>
|
224
|
+
<td class="function_name">
|
225
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-set-raw-coordinates" title="gtk_icon_info_set_raw_coordinates ()">gtk_icon_info_set_raw_coordinates</a> <span class="c_punctuation">()</span>
|
226
|
+
</td>
|
227
|
+
</tr>
|
228
|
+
<tr>
|
229
|
+
<td class="function_type">
|
230
|
+
<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>
|
231
|
+
</td>
|
232
|
+
<td class="function_name">
|
233
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-get-embedded-rect" title="gtk_icon_info_get_embedded_rect ()">gtk_icon_info_get_embedded_rect</a> <span class="c_punctuation">()</span>
|
234
|
+
</td>
|
235
|
+
</tr>
|
236
|
+
<tr>
|
237
|
+
<td class="function_type">
|
238
|
+
<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>
|
239
|
+
</td>
|
240
|
+
<td class="function_name">
|
241
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-get-attach-points" title="gtk_icon_info_get_attach_points ()">gtk_icon_info_get_attach_points</a> <span class="c_punctuation">()</span>
|
242
|
+
</td>
|
243
|
+
</tr>
|
244
|
+
<tr>
|
245
|
+
<td class="function_type">const <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> *
|
246
|
+
</td>
|
247
|
+
<td class="function_name">
|
248
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-get-display-name" title="gtk_icon_info_get_display_name ()">gtk_icon_info_get_display_name</a> <span class="c_punctuation">()</span>
|
249
|
+
</td>
|
250
|
+
</tr>
|
251
|
+
</tbody>
|
252
|
+
</table></div>
|
253
|
+
</div>
|
254
|
+
<div class="refsect1">
|
255
|
+
<a name="GtkIconTheme.signals"></a><h2>Signals</h2>
|
256
|
+
<div class="informaltable"><table border="0">
|
257
|
+
<colgroup>
|
258
|
+
<col width="150px" class="signals_return">
|
259
|
+
<col width="300px" class="signals_name">
|
260
|
+
<col width="200px" class="signals_flags">
|
261
|
+
</colgroup>
|
262
|
+
<tbody><tr>
|
263
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
264
|
+
<td class="signal_name"><a class="link" href="GtkIconTheme.html#GtkIconTheme-changed" title="The “changed” signal">changed</a></td>
|
265
|
+
<td class="signal_flags">Run Last</td>
|
266
|
+
</tr></tbody>
|
267
|
+
</table></div>
|
268
|
+
</div>
|
269
|
+
<div class="refsect1">
|
270
|
+
<a name="GtkIconTheme.other"></a><h2>Types and Values</h2>
|
271
|
+
<div class="informaltable"><table width="100%" border="0">
|
272
|
+
<colgroup>
|
273
|
+
<col width="150px" class="name">
|
274
|
+
<col class="description">
|
275
|
+
</colgroup>
|
276
|
+
<tbody>
|
277
|
+
<tr>
|
278
|
+
<td class="datatype_keyword"> </td>
|
279
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo">GtkIconInfo</a></td>
|
280
|
+
</tr>
|
281
|
+
<tr>
|
282
|
+
<td class="datatype_keyword">struct</td>
|
283
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#GtkIconTheme-struct" title="struct GtkIconTheme">GtkIconTheme</a></td>
|
284
|
+
</tr>
|
285
|
+
<tr>
|
286
|
+
<td class="datatype_keyword">enum</td>
|
287
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags">GtkIconLookupFlags</a></td>
|
288
|
+
</tr>
|
289
|
+
<tr>
|
290
|
+
<td class="define_keyword">#define</td>
|
291
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#GTK-ICON-THEME-ERROR:CAPS" title="GTK_ICON_THEME_ERROR">GTK_ICON_THEME_ERROR</a></td>
|
292
|
+
</tr>
|
293
|
+
<tr>
|
294
|
+
<td class="datatype_keyword">enum</td>
|
295
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#GtkIconThemeError" title="enum GtkIconThemeError">GtkIconThemeError</a></td>
|
296
|
+
</tr>
|
297
|
+
<tr>
|
298
|
+
<td class="define_keyword">#define</td>
|
299
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path">gtk_icon_theme_set_search_path</a></td>
|
300
|
+
</tr>
|
301
|
+
<tr>
|
302
|
+
<td class="define_keyword">#define</td>
|
303
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-search-path" title="gtk_icon_theme_get_search_path">gtk_icon_theme_get_search_path</a></td>
|
304
|
+
</tr>
|
305
|
+
<tr>
|
306
|
+
<td class="define_keyword">#define</td>
|
307
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#gtk-icon-theme-append-search-path" title="gtk_icon_theme_append_search_path">gtk_icon_theme_append_search_path</a></td>
|
308
|
+
</tr>
|
309
|
+
<tr>
|
310
|
+
<td class="define_keyword">#define</td>
|
311
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#gtk-icon-theme-prepend-search-path" title="gtk_icon_theme_prepend_search_path">gtk_icon_theme_prepend_search_path</a></td>
|
312
|
+
</tr>
|
313
|
+
<tr>
|
314
|
+
<td class="define_keyword">#define</td>
|
315
|
+
<td class="function_name"><a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename">gtk_icon_info_get_filename</a></td>
|
316
|
+
</tr>
|
317
|
+
</tbody>
|
318
|
+
</table></div>
|
319
|
+
</div>
|
320
|
+
<div class="refsect1">
|
321
|
+
<a name="GtkIconTheme.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
322
|
+
<pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
323
|
+
<span class="lineart">╰──</span> GtkIconTheme
|
324
|
+
</pre>
|
325
|
+
</div>
|
326
|
+
<div class="refsect1">
|
327
|
+
<a name="GtkIconTheme.includes"></a><h2>Includes</h2>
|
328
|
+
<pre class="synopsis">#include <gtk/gtk.h>
|
329
|
+
</pre>
|
330
|
+
</div>
|
331
|
+
<div class="refsect1">
|
332
|
+
<a name="GtkIconTheme.description"></a><h2>Description</h2>
|
333
|
+
<p>
|
334
|
+
<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> provides a facility for looking up icons by name
|
335
|
+
and size. The main reason for using a name rather than simply
|
336
|
+
providing a filename is to allow different icons to be used
|
337
|
+
depending on what <em class="firstterm">icon theme</em> is selected
|
338
|
+
by the user. The operation of icon themes on Linux and Unix
|
339
|
+
follows the <a class="ulink" href="http://www.freedesktop.org/Standards/icon-theme-spec" target="_top">Icon
|
340
|
+
Theme Specification</a>. There is a default icon theme,
|
341
|
+
named <code class="literal">hicolor</code> where applications should install
|
342
|
+
their icons, but more additional application themes can be
|
343
|
+
installed as operating system vendors and users choose.
|
344
|
+
</p>
|
345
|
+
<p>
|
346
|
+
Named icons are similar to the <a class="xref" href="">???</a>
|
347
|
+
facility, and the distinction between the two may be a bit confusing.
|
348
|
+
A few things to keep in mind:
|
349
|
+
</p>
|
350
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
351
|
+
<li class="listitem"><p>
|
352
|
+
Stock images usually are used in conjunction with
|
353
|
+
<a class="xref" href="">???</a>., such as <a class="link" href="gtk2-Stock-Items.html#GTK-STOCK-OK:CAPS" title="GTK_STOCK_OK"><code class="literal">GTK_STOCK_OK</code></a> or
|
354
|
+
<a class="link" href="gtk2-Stock-Items.html#GTK-STOCK-OPEN:CAPS" title="GTK_STOCK_OPEN"><code class="literal">GTK_STOCK_OPEN</code></a>. Named icons are easier to set up and therefore
|
355
|
+
are more useful for new icons that an application wants to
|
356
|
+
add, such as application icons or window icons.
|
357
|
+
</p></li>
|
358
|
+
<li class="listitem"><p>
|
359
|
+
Stock images can only be loaded at the symbolic sizes defined
|
360
|
+
by the <a class="link" href="gtk2-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> enumeration, or by custom sizes defined
|
361
|
+
by <a class="link" href="gtk2-Themeable-Stock-Images.html#gtk-icon-size-register" title="gtk_icon_size_register ()"><code class="function">gtk_icon_size_register()</code></a>, while named icons are more flexible
|
362
|
+
and any pixel size can be specified.
|
363
|
+
</p></li>
|
364
|
+
<li class="listitem"><p>
|
365
|
+
Because stock images are closely tied to stock items, and thus
|
366
|
+
to actions in the user interface, stock images may come in
|
367
|
+
multiple variants for different widget states or writing
|
368
|
+
directions.
|
369
|
+
</p></li>
|
370
|
+
</ul></div>
|
371
|
+
<p>
|
372
|
+
A good rule of thumb is that if there is a stock image for what
|
373
|
+
you want to use, use it, otherwise use a named icon. It turns
|
374
|
+
out that internally stock images are generally defined in
|
375
|
+
terms of one or more named icons. (An example of the
|
376
|
+
more than one case is icons that depend on writing direction;
|
377
|
+
GTK_STOCK_GO_FORWARD uses the two themed icons
|
378
|
+
"gtk-stock-go-forward-ltr" and "gtk-stock-go-forward-rtl".)
|
379
|
+
</p>
|
380
|
+
<p>
|
381
|
+
In many cases, named themes are used indirectly, via <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
|
382
|
+
or stock items, rather than directly, but looking up icons
|
383
|
+
directly is also simple. The <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> object acts
|
384
|
+
as a database of all the icons in the current theme. You
|
385
|
+
can create new <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> objects, but its much more
|
386
|
+
efficient to use the standard icon theme for the <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>
|
387
|
+
so that the icon information is shared with other people
|
388
|
+
looking up icons. In the case where the default screen is
|
389
|
+
being used, looking up an icon can be as simple as:
|
390
|
+
</p>
|
391
|
+
<div class="informalexample">
|
392
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
393
|
+
<tbody>
|
394
|
+
<tr>
|
395
|
+
<td class="listing_lines" align="right"><pre>1
|
396
|
+
2
|
397
|
+
3
|
398
|
+
4
|
399
|
+
5
|
400
|
+
6
|
401
|
+
7
|
402
|
+
8
|
403
|
+
9
|
404
|
+
10
|
405
|
+
11
|
406
|
+
12
|
407
|
+
13
|
408
|
+
14
|
409
|
+
15
|
410
|
+
16
|
411
|
+
17
|
412
|
+
18
|
413
|
+
19</pre></td>
|
414
|
+
<td class="listing_code"><pre class="programlisting"><span class="usertype">GError</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">error </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>
|
415
|
+
<span class="usertype">GtkIconTheme</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">icon_theme</span><span class="symbol">;</span>
|
416
|
+
<span class="usertype">GdkPixbuf</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">pixbuf</span><span class="symbol">;</span>
|
417
|
+
<span class="normal">icon_theme </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkIconTheme.html#gtk-icon-theme-get-default">gtk_icon_theme_get_default</a></span><span class="normal"> </span><span class="symbol">();</span>
|
418
|
+
<span class="normal">pixbuf </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkIconTheme.html#gtk-icon-theme-load-icon">gtk_icon_theme_load_icon</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">icon_theme</span><span class="symbol">,</span>
|
419
|
+
<span class="normal"> </span><span class="string">"my-icon-name"</span><span class="symbol">,</span><span class="normal"> </span><span class="comment">/* icon name */</span>
|
420
|
+
<span class="normal"> </span><span class="number">48</span><span class="symbol">,</span><span class="normal"> </span><span class="comment">/* size */</span>
|
421
|
+
<span class="normal"> </span><span class="number">0</span><span class="symbol">,</span><span class="normal"> </span><span class="comment">/* flags */</span>
|
422
|
+
<span class="normal"> </span><span class="symbol">&</span><span class="normal">error</span><span class="symbol">);</span>
|
423
|
+
<span class="keyword">if</span><span class="normal"> </span><span class="symbol">(!</span><span class="normal">pixbuf</span><span class="symbol">)</span>
|
424
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
425
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html#g-warning">g_warning</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"Couldn't load icon: %s"</span><span class="symbol">,</span><span class="normal"> error</span><span class="symbol">-></span><span class="normal">message</span><span class="symbol">);</span>
|
426
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html#g-error-free">g_error_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">error</span><span class="symbol">);</span>
|
427
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
428
|
+
<span class="keyword">else</span>
|
429
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
430
|
+
<span class="normal"> </span><span class="comment">/* Use the pixbuf */</span>
|
431
|
+
<span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref">g_object_unref</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">pixbuf</span><span class="symbol">);</span>
|
432
|
+
<span class="normal"> </span><span class="cbracket">}</span></pre></td>
|
433
|
+
</tr>
|
434
|
+
</tbody>
|
435
|
+
</table>
|
436
|
+
</div>
|
437
|
+
|
438
|
+
</div>
|
439
|
+
<div class="refsect1">
|
440
|
+
<a name="GtkIconTheme.functions_details"></a><h2>Functions</h2>
|
441
|
+
<div class="refsect2">
|
442
|
+
<a name="gtk-icon-theme-new"></a><h3>gtk_icon_theme_new ()</h3>
|
443
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> *
|
444
|
+
gtk_icon_theme_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
445
|
+
<p>Creates a new icon theme object. Icon theme objects are used
|
446
|
+
to lookup up an icon by name in a particular icon theme.
|
447
|
+
Usually, you'll want to use <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-default" title="gtk_icon_theme_get_default ()"><code class="function">gtk_icon_theme_get_default()</code></a>
|
448
|
+
or <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title="gtk_icon_theme_get_for_screen ()"><code class="function">gtk_icon_theme_get_for_screen()</code></a> rather than creating
|
449
|
+
a new icon theme object for scratch.</p>
|
450
|
+
<div class="refsect3">
|
451
|
+
<a name="id-1.3.7.9.2.5"></a><h4>Returns</h4>
|
452
|
+
<p> the newly created <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> object.</p>
|
453
|
+
<p></p>
|
454
|
+
</div>
|
455
|
+
<p class="since">Since 2.4</p>
|
456
|
+
</div>
|
457
|
+
<hr>
|
458
|
+
<div class="refsect2">
|
459
|
+
<a name="gtk-icon-theme-get-default"></a><h3>gtk_icon_theme_get_default ()</h3>
|
460
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> *
|
461
|
+
gtk_icon_theme_get_default (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
462
|
+
<p>Gets the icon theme for the default screen. See
|
463
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title="gtk_icon_theme_get_for_screen ()"><code class="function">gtk_icon_theme_get_for_screen()</code></a>.</p>
|
464
|
+
<div class="refsect3">
|
465
|
+
<a name="id-1.3.7.9.3.5"></a><h4>Returns</h4>
|
466
|
+
<p> A unique <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> associated with
|
467
|
+
the default screen. This icon theme is associated with
|
468
|
+
the screen and can be used as long as the screen
|
469
|
+
is open. Do not ref or unref it. </p>
|
470
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
471
|
+
</div>
|
472
|
+
<p class="since">Since 2.4</p>
|
473
|
+
</div>
|
474
|
+
<hr>
|
475
|
+
<div class="refsect2">
|
476
|
+
<a name="gtk-icon-theme-get-for-screen"></a><h3>gtk_icon_theme_get_for_screen ()</h3>
|
477
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> *
|
478
|
+
gtk_icon_theme_get_for_screen (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
|
479
|
+
<p>Gets the icon theme object associated with <em class="parameter"><code>screen</code></em>
|
480
|
+
; if this
|
481
|
+
function has not previously been called for the given
|
482
|
+
screen, a new icon theme object will be created and
|
483
|
+
associated with the screen. Icon theme objects are
|
484
|
+
fairly expensive to create, so using this function
|
485
|
+
is usually a better choice than calling than <a class="link" href="GtkIconTheme.html#gtk-icon-theme-new" title="gtk_icon_theme_new ()"><code class="function">gtk_icon_theme_new()</code></a>
|
486
|
+
and setting the screen yourself; by using this function
|
487
|
+
a single icon theme object will be shared between users.</p>
|
488
|
+
<div class="refsect3">
|
489
|
+
<a name="id-1.3.7.9.4.5"></a><h4>Parameters</h4>
|
490
|
+
<div class="informaltable"><table width="100%" border="0">
|
491
|
+
<colgroup>
|
492
|
+
<col width="150px" class="parameters_name">
|
493
|
+
<col class="parameters_description">
|
494
|
+
<col width="200px" class="parameters_annotations">
|
495
|
+
</colgroup>
|
496
|
+
<tbody><tr>
|
497
|
+
<td class="parameter_name"><p>screen</p></td>
|
498
|
+
<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a></p></td>
|
499
|
+
<td class="parameter_annotations"> </td>
|
500
|
+
</tr></tbody>
|
501
|
+
</table></div>
|
502
|
+
</div>
|
503
|
+
<div class="refsect3">
|
504
|
+
<a name="id-1.3.7.9.4.6"></a><h4>Returns</h4>
|
505
|
+
<p> A unique <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> associated with
|
506
|
+
the given screen. This icon theme is associated with
|
507
|
+
the screen and can be used as long as the screen
|
508
|
+
is open. Do not ref or unref it. </p>
|
509
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
510
|
+
</div>
|
511
|
+
<p class="since">Since 2.4</p>
|
512
|
+
</div>
|
513
|
+
<hr>
|
514
|
+
<div class="refsect2">
|
515
|
+
<a name="gtk-icon-theme-set-screen"></a><h3>gtk_icon_theme_set_screen ()</h3>
|
516
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
517
|
+
gtk_icon_theme_set_screen (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
518
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
|
519
|
+
<p>Sets the screen for an icon theme; the screen is used
|
520
|
+
to track the user's currently configured icon theme,
|
521
|
+
which might be different for different screens.</p>
|
522
|
+
<div class="refsect3">
|
523
|
+
<a name="id-1.3.7.9.5.5"></a><h4>Parameters</h4>
|
524
|
+
<div class="informaltable"><table width="100%" border="0">
|
525
|
+
<colgroup>
|
526
|
+
<col width="150px" class="parameters_name">
|
527
|
+
<col class="parameters_description">
|
528
|
+
<col width="200px" class="parameters_annotations">
|
529
|
+
</colgroup>
|
530
|
+
<tbody>
|
531
|
+
<tr>
|
532
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
533
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
534
|
+
<td class="parameter_annotations"> </td>
|
535
|
+
</tr>
|
536
|
+
<tr>
|
537
|
+
<td class="parameter_name"><p>screen</p></td>
|
538
|
+
<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a></p></td>
|
539
|
+
<td class="parameter_annotations"> </td>
|
540
|
+
</tr>
|
541
|
+
</tbody>
|
542
|
+
</table></div>
|
543
|
+
</div>
|
544
|
+
<p class="since">Since 2.4</p>
|
545
|
+
</div>
|
546
|
+
<hr>
|
547
|
+
<div class="refsect2">
|
548
|
+
<a name="gtk-icon-theme-set-custom-theme"></a><h3>gtk_icon_theme_set_custom_theme ()</h3>
|
549
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
550
|
+
gtk_icon_theme_set_custom_theme (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
551
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *theme_name</code></em>);</pre>
|
552
|
+
<p>Sets the name of the icon theme that the <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> object uses
|
553
|
+
overriding system configuration. This function cannot be called
|
554
|
+
on the icon theme objects returned from <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-default" title="gtk_icon_theme_get_default ()"><code class="function">gtk_icon_theme_get_default()</code></a>
|
555
|
+
and <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title="gtk_icon_theme_get_for_screen ()"><code class="function">gtk_icon_theme_get_for_screen()</code></a>.</p>
|
556
|
+
<div class="refsect3">
|
557
|
+
<a name="id-1.3.7.9.6.5"></a><h4>Parameters</h4>
|
558
|
+
<div class="informaltable"><table width="100%" border="0">
|
559
|
+
<colgroup>
|
560
|
+
<col width="150px" class="parameters_name">
|
561
|
+
<col class="parameters_description">
|
562
|
+
<col width="200px" class="parameters_annotations">
|
563
|
+
</colgroup>
|
564
|
+
<tbody>
|
565
|
+
<tr>
|
566
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
567
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
568
|
+
<td class="parameter_annotations"> </td>
|
569
|
+
</tr>
|
570
|
+
<tr>
|
571
|
+
<td class="parameter_name"><p>theme_name</p></td>
|
572
|
+
<td class="parameter_description"><p>name of icon theme to use instead of configured theme,
|
573
|
+
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> to unset a previously set custom theme</p></td>
|
574
|
+
<td class="parameter_annotations"> </td>
|
575
|
+
</tr>
|
576
|
+
</tbody>
|
577
|
+
</table></div>
|
578
|
+
</div>
|
579
|
+
<p class="since">Since 2.4</p>
|
580
|
+
</div>
|
581
|
+
<hr>
|
582
|
+
<div class="refsect2">
|
583
|
+
<a name="gtk-icon-theme-has-icon"></a><h3>gtk_icon_theme_has_icon ()</h3>
|
584
|
+
<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>
|
585
|
+
gtk_icon_theme_has_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
586
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>);</pre>
|
587
|
+
<p>Checks whether an icon theme includes an icon
|
588
|
+
for a particular name.</p>
|
589
|
+
<div class="refsect3">
|
590
|
+
<a name="id-1.3.7.9.7.5"></a><h4>Parameters</h4>
|
591
|
+
<div class="informaltable"><table width="100%" border="0">
|
592
|
+
<colgroup>
|
593
|
+
<col width="150px" class="parameters_name">
|
594
|
+
<col class="parameters_description">
|
595
|
+
<col width="200px" class="parameters_annotations">
|
596
|
+
</colgroup>
|
597
|
+
<tbody>
|
598
|
+
<tr>
|
599
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
600
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
601
|
+
<td class="parameter_annotations"> </td>
|
602
|
+
</tr>
|
603
|
+
<tr>
|
604
|
+
<td class="parameter_name"><p>icon_name</p></td>
|
605
|
+
<td class="parameter_description"><p>the name of an icon</p></td>
|
606
|
+
<td class="parameter_annotations"> </td>
|
607
|
+
</tr>
|
608
|
+
</tbody>
|
609
|
+
</table></div>
|
610
|
+
</div>
|
611
|
+
<div class="refsect3">
|
612
|
+
<a name="id-1.3.7.9.7.6"></a><h4>Returns</h4>
|
613
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>icon_theme</code></em>
|
614
|
+
includes an
|
615
|
+
icon for <em class="parameter"><code>icon_name</code></em>
|
616
|
+
.</p>
|
617
|
+
<p></p>
|
618
|
+
</div>
|
619
|
+
<p class="since">Since 2.4</p>
|
620
|
+
</div>
|
621
|
+
<hr>
|
622
|
+
<div class="refsect2">
|
623
|
+
<a name="gtk-icon-theme-lookup-icon"></a><h3>gtk_icon_theme_lookup_icon ()</h3>
|
624
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
625
|
+
gtk_icon_theme_lookup_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
626
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>,
|
627
|
+
<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> size</code></em>,
|
628
|
+
<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags"><span class="type">GtkIconLookupFlags</span></a> flags</code></em>);</pre>
|
629
|
+
<p>Looks up a named icon and returns a structure containing
|
630
|
+
information such as the filename of the icon. The icon
|
631
|
+
can then be rendered into a pixbuf using
|
632
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()"><code class="function">gtk_icon_info_load_icon()</code></a>. (<a class="link" href="GtkIconTheme.html#gtk-icon-theme-load-icon" title="gtk_icon_theme_load_icon ()"><code class="function">gtk_icon_theme_load_icon()</code></a>
|
633
|
+
combines these two steps if all you need is the pixbuf.)</p>
|
634
|
+
<div class="refsect3">
|
635
|
+
<a name="id-1.3.7.9.8.5"></a><h4>Parameters</h4>
|
636
|
+
<div class="informaltable"><table width="100%" border="0">
|
637
|
+
<colgroup>
|
638
|
+
<col width="150px" class="parameters_name">
|
639
|
+
<col class="parameters_description">
|
640
|
+
<col width="200px" class="parameters_annotations">
|
641
|
+
</colgroup>
|
642
|
+
<tbody>
|
643
|
+
<tr>
|
644
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
645
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
646
|
+
<td class="parameter_annotations"> </td>
|
647
|
+
</tr>
|
648
|
+
<tr>
|
649
|
+
<td class="parameter_name"><p>icon_name</p></td>
|
650
|
+
<td class="parameter_description"><p>the name of the icon to lookup</p></td>
|
651
|
+
<td class="parameter_annotations"> </td>
|
652
|
+
</tr>
|
653
|
+
<tr>
|
654
|
+
<td class="parameter_name"><p>size</p></td>
|
655
|
+
<td class="parameter_description"><p>desired icon size</p></td>
|
656
|
+
<td class="parameter_annotations"> </td>
|
657
|
+
</tr>
|
658
|
+
<tr>
|
659
|
+
<td class="parameter_name"><p>flags</p></td>
|
660
|
+
<td class="parameter_description"><p>flags modifying the behavior of the icon lookup</p></td>
|
661
|
+
<td class="parameter_annotations"> </td>
|
662
|
+
</tr>
|
663
|
+
</tbody>
|
664
|
+
</table></div>
|
665
|
+
</div>
|
666
|
+
<div class="refsect3">
|
667
|
+
<a name="id-1.3.7.9.8.6"></a><h4>Returns</h4>
|
668
|
+
<p> a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing information
|
669
|
+
about the icon, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon wasn't found. Free with
|
670
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a></p>
|
671
|
+
<p></p>
|
672
|
+
</div>
|
673
|
+
<p class="since">Since 2.4</p>
|
674
|
+
</div>
|
675
|
+
<hr>
|
676
|
+
<div class="refsect2">
|
677
|
+
<a name="gtk-icon-theme-choose-icon"></a><h3>gtk_icon_theme_choose_icon ()</h3>
|
678
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
679
|
+
gtk_icon_theme_choose_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
680
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_names[]</code></em>,
|
681
|
+
<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> size</code></em>,
|
682
|
+
<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags"><span class="type">GtkIconLookupFlags</span></a> flags</code></em>);</pre>
|
683
|
+
<p>Looks up a named icon and returns a structure containing
|
684
|
+
information such as the filename of the icon. The icon
|
685
|
+
can then be rendered into a pixbuf using
|
686
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()"><code class="function">gtk_icon_info_load_icon()</code></a>. (<a class="link" href="GtkIconTheme.html#gtk-icon-theme-load-icon" title="gtk_icon_theme_load_icon ()"><code class="function">gtk_icon_theme_load_icon()</code></a>
|
687
|
+
combines these two steps if all you need is the pixbuf.)</p>
|
688
|
+
<p>If <em class="parameter"><code>icon_names</code></em>
|
689
|
+
contains more than one name, this function
|
690
|
+
tries them all in the given order before falling back to
|
691
|
+
inherited icon themes.</p>
|
692
|
+
<div class="refsect3">
|
693
|
+
<a name="id-1.3.7.9.9.6"></a><h4>Parameters</h4>
|
694
|
+
<div class="informaltable"><table width="100%" border="0">
|
695
|
+
<colgroup>
|
696
|
+
<col width="150px" class="parameters_name">
|
697
|
+
<col class="parameters_description">
|
698
|
+
<col width="200px" class="parameters_annotations">
|
699
|
+
</colgroup>
|
700
|
+
<tbody>
|
701
|
+
<tr>
|
702
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
703
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
704
|
+
<td class="parameter_annotations"> </td>
|
705
|
+
</tr>
|
706
|
+
<tr>
|
707
|
+
<td class="parameter_name"><p>icon_names</p></td>
|
708
|
+
<td class="parameter_description"><p> <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 of
|
709
|
+
icon names to lookup. </p></td>
|
710
|
+
<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>
|
711
|
+
</tr>
|
712
|
+
<tr>
|
713
|
+
<td class="parameter_name"><p>size</p></td>
|
714
|
+
<td class="parameter_description"><p>desired icon size</p></td>
|
715
|
+
<td class="parameter_annotations"> </td>
|
716
|
+
</tr>
|
717
|
+
<tr>
|
718
|
+
<td class="parameter_name"><p>flags</p></td>
|
719
|
+
<td class="parameter_description"><p>flags modifying the behavior of the icon lookup</p></td>
|
720
|
+
<td class="parameter_annotations"> </td>
|
721
|
+
</tr>
|
722
|
+
</tbody>
|
723
|
+
</table></div>
|
724
|
+
</div>
|
725
|
+
<div class="refsect3">
|
726
|
+
<a name="id-1.3.7.9.9.7"></a><h4>Returns</h4>
|
727
|
+
<p> a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing information
|
728
|
+
about the icon, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon wasn't found. Free with
|
729
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a></p>
|
730
|
+
<p></p>
|
731
|
+
</div>
|
732
|
+
<p class="since">Since 2.12</p>
|
733
|
+
</div>
|
734
|
+
<hr>
|
735
|
+
<div class="refsect2">
|
736
|
+
<a name="gtk-icon-theme-lookup-by-gicon"></a><h3>gtk_icon_theme_lookup_by_gicon ()</h3>
|
737
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
738
|
+
gtk_icon_theme_lookup_by_gicon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
739
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>,
|
740
|
+
<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> size</code></em>,
|
741
|
+
<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags"><span class="type">GtkIconLookupFlags</span></a> flags</code></em>);</pre>
|
742
|
+
<p>Looks up an icon and returns a structure containing
|
743
|
+
information such as the filename of the icon.
|
744
|
+
The icon can then be rendered into a pixbuf using
|
745
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()"><code class="function">gtk_icon_info_load_icon()</code></a>.</p>
|
746
|
+
<div class="refsect3">
|
747
|
+
<a name="id-1.3.7.9.10.5"></a><h4>Parameters</h4>
|
748
|
+
<div class="informaltable"><table width="100%" border="0">
|
749
|
+
<colgroup>
|
750
|
+
<col width="150px" class="parameters_name">
|
751
|
+
<col class="parameters_description">
|
752
|
+
<col width="200px" class="parameters_annotations">
|
753
|
+
</colgroup>
|
754
|
+
<tbody>
|
755
|
+
<tr>
|
756
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
757
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
758
|
+
<td class="parameter_annotations"> </td>
|
759
|
+
</tr>
|
760
|
+
<tr>
|
761
|
+
<td class="parameter_name"><p>icon</p></td>
|
762
|
+
<td class="parameter_description"><p>the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gio/GIcon.html"><span class="type">GIcon</span></a> to look up</p></td>
|
763
|
+
<td class="parameter_annotations"> </td>
|
764
|
+
</tr>
|
765
|
+
<tr>
|
766
|
+
<td class="parameter_name"><p>size</p></td>
|
767
|
+
<td class="parameter_description"><p>desired icon size</p></td>
|
768
|
+
<td class="parameter_annotations"> </td>
|
769
|
+
</tr>
|
770
|
+
<tr>
|
771
|
+
<td class="parameter_name"><p>flags</p></td>
|
772
|
+
<td class="parameter_description"><p>flags modifying the behavior of the icon lookup</p></td>
|
773
|
+
<td class="parameter_annotations"> </td>
|
774
|
+
</tr>
|
775
|
+
</tbody>
|
776
|
+
</table></div>
|
777
|
+
</div>
|
778
|
+
<div class="refsect3">
|
779
|
+
<a name="id-1.3.7.9.10.6"></a><h4>Returns</h4>
|
780
|
+
<p> a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing
|
781
|
+
information about the icon, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon
|
782
|
+
wasn't found. Free with <a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a></p>
|
783
|
+
<p></p>
|
784
|
+
</div>
|
785
|
+
<p class="since">Since 2.14</p>
|
786
|
+
</div>
|
787
|
+
<hr>
|
788
|
+
<div class="refsect2">
|
789
|
+
<a name="gtk-icon-theme-load-icon"></a><h3>gtk_icon_theme_load_icon ()</h3>
|
790
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
|
791
|
+
gtk_icon_theme_load_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
792
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>,
|
793
|
+
<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> size</code></em>,
|
794
|
+
<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags"><span class="type">GtkIconLookupFlags</span></a> flags</code></em>,
|
795
|
+
<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>
|
796
|
+
<p>Looks up an icon in an icon theme, scales it to the given size
|
797
|
+
and renders it into a pixbuf. This is a convenience function;
|
798
|
+
if more details about the icon are needed, use
|
799
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a> followed by <a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()"><code class="function">gtk_icon_info_load_icon()</code></a>.</p>
|
800
|
+
<p>Note that you probably want to listen for icon theme changes and
|
801
|
+
update the icon. This is usually done by connecting to the
|
802
|
+
GtkWidget::style-set signal. If for some reason you do not want to
|
803
|
+
update the icon when the icon theme changes, you should consider
|
804
|
+
using <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Image-Data-in-Memory.html#gdk-pixbuf-copy"><code class="function">gdk_pixbuf_copy()</code></a> to make a private copy of the pixbuf
|
805
|
+
returned by this function. Otherwise GTK+ may need to keep the old
|
806
|
+
icon theme loaded, which would be a waste of memory.</p>
|
807
|
+
<div class="refsect3">
|
808
|
+
<a name="id-1.3.7.9.11.6"></a><h4>Parameters</h4>
|
809
|
+
<div class="informaltable"><table width="100%" border="0">
|
810
|
+
<colgroup>
|
811
|
+
<col width="150px" class="parameters_name">
|
812
|
+
<col class="parameters_description">
|
813
|
+
<col width="200px" class="parameters_annotations">
|
814
|
+
</colgroup>
|
815
|
+
<tbody>
|
816
|
+
<tr>
|
817
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
818
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
819
|
+
<td class="parameter_annotations"> </td>
|
820
|
+
</tr>
|
821
|
+
<tr>
|
822
|
+
<td class="parameter_name"><p>icon_name</p></td>
|
823
|
+
<td class="parameter_description"><p>the name of the icon to lookup</p></td>
|
824
|
+
<td class="parameter_annotations"> </td>
|
825
|
+
</tr>
|
826
|
+
<tr>
|
827
|
+
<td class="parameter_name"><p>size</p></td>
|
828
|
+
<td class="parameter_description"><p>the desired icon size. The resulting icon may not be
|
829
|
+
exactly this size; see <a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()"><code class="function">gtk_icon_info_load_icon()</code></a>.</p></td>
|
830
|
+
<td class="parameter_annotations"> </td>
|
831
|
+
</tr>
|
832
|
+
<tr>
|
833
|
+
<td class="parameter_name"><p>flags</p></td>
|
834
|
+
<td class="parameter_description"><p>flags modifying the behavior of the icon lookup</p></td>
|
835
|
+
<td class="parameter_annotations"> </td>
|
836
|
+
</tr>
|
837
|
+
<tr>
|
838
|
+
<td class="parameter_name"><p>error</p></td>
|
839
|
+
<td class="parameter_description"><p> Location to store error information on failure, 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>
|
840
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
841
|
+
</tr>
|
842
|
+
</tbody>
|
843
|
+
</table></div>
|
844
|
+
</div>
|
845
|
+
<div class="refsect3">
|
846
|
+
<a name="id-1.3.7.9.11.7"></a><h4>Returns</h4>
|
847
|
+
<p> the rendered icon; this may be a newly
|
848
|
+
created icon or a new reference to an internal icon, so you must not modify
|
849
|
+
the icon. Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> to release your reference to the
|
850
|
+
icon. <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon isn't found. </p>
|
851
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
852
|
+
</div>
|
853
|
+
<p class="since">Since 2.4</p>
|
854
|
+
</div>
|
855
|
+
<hr>
|
856
|
+
<div class="refsect2">
|
857
|
+
<a name="gtk-icon-theme-list-contexts"></a><h3>gtk_icon_theme_list_contexts ()</h3>
|
858
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
|
859
|
+
gtk_icon_theme_list_contexts (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);</pre>
|
860
|
+
<p>Gets the list of contexts available within the current
|
861
|
+
hierarchy of icon themes</p>
|
862
|
+
<div class="refsect3">
|
863
|
+
<a name="id-1.3.7.9.12.5"></a><h4>Parameters</h4>
|
864
|
+
<div class="informaltable"><table width="100%" border="0">
|
865
|
+
<colgroup>
|
866
|
+
<col width="150px" class="parameters_name">
|
867
|
+
<col class="parameters_description">
|
868
|
+
<col width="200px" class="parameters_annotations">
|
869
|
+
</colgroup>
|
870
|
+
<tbody><tr>
|
871
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
872
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
873
|
+
<td class="parameter_annotations"> </td>
|
874
|
+
</tr></tbody>
|
875
|
+
</table></div>
|
876
|
+
</div>
|
877
|
+
<div class="refsect3">
|
878
|
+
<a name="id-1.3.7.9.12.6"></a><h4>Returns</h4>
|
879
|
+
<p> a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> list holding the names of all the
|
880
|
+
contexts in the theme. You must first free each element
|
881
|
+
in the list with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, then free the list itself
|
882
|
+
with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>. </p>
|
883
|
+
<p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
884
|
+
</div>
|
885
|
+
<p class="since">Since 2.12</p>
|
886
|
+
</div>
|
887
|
+
<hr>
|
888
|
+
<div class="refsect2">
|
889
|
+
<a name="gtk-icon-theme-list-icons"></a><h3>gtk_icon_theme_list_icons ()</h3>
|
890
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
|
891
|
+
gtk_icon_theme_list_icons (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
892
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *context</code></em>);</pre>
|
893
|
+
<p>Lists the icons in the current icon theme. Only a subset
|
894
|
+
of the icons can be listed by providing a context string.
|
895
|
+
The set of values for the context string is system dependent,
|
896
|
+
but will typically include such values as "Applications" and
|
897
|
+
"MimeTypes".</p>
|
898
|
+
<div class="refsect3">
|
899
|
+
<a name="id-1.3.7.9.13.5"></a><h4>Parameters</h4>
|
900
|
+
<div class="informaltable"><table width="100%" border="0">
|
901
|
+
<colgroup>
|
902
|
+
<col width="150px" class="parameters_name">
|
903
|
+
<col class="parameters_description">
|
904
|
+
<col width="200px" class="parameters_annotations">
|
905
|
+
</colgroup>
|
906
|
+
<tbody>
|
907
|
+
<tr>
|
908
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
909
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
910
|
+
<td class="parameter_annotations"> </td>
|
911
|
+
</tr>
|
912
|
+
<tr>
|
913
|
+
<td class="parameter_name"><p>context</p></td>
|
914
|
+
<td class="parameter_description"><p>a string identifying a particular type of icon,
|
915
|
+
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> to list all icons.</p></td>
|
916
|
+
<td class="parameter_annotations"> </td>
|
917
|
+
</tr>
|
918
|
+
</tbody>
|
919
|
+
</table></div>
|
920
|
+
</div>
|
921
|
+
<div class="refsect3">
|
922
|
+
<a name="id-1.3.7.9.13.6"></a><h4>Returns</h4>
|
923
|
+
<p> a <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> list
|
924
|
+
holding the names of all the icons in the theme. You must first
|
925
|
+
free each element in the list with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, then free the list
|
926
|
+
itself with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>. </p>
|
927
|
+
<p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
928
|
+
</div>
|
929
|
+
<p class="since">Since 2.4</p>
|
930
|
+
</div>
|
931
|
+
<hr>
|
932
|
+
<div class="refsect2">
|
933
|
+
<a name="gtk-icon-theme-get-icon-sizes"></a><h3>gtk_icon_theme_get_icon_sizes ()</h3>
|
934
|
+
<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> *
|
935
|
+
gtk_icon_theme_get_icon_sizes (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
936
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>);</pre>
|
937
|
+
<p>Returns an array of integers describing the sizes at which
|
938
|
+
the icon is available without scaling. A size of -1 means
|
939
|
+
that the icon is available in a scalable format. The array
|
940
|
+
is zero-terminated.</p>
|
941
|
+
<div class="refsect3">
|
942
|
+
<a name="id-1.3.7.9.14.5"></a><h4>Parameters</h4>
|
943
|
+
<div class="informaltable"><table width="100%" border="0">
|
944
|
+
<colgroup>
|
945
|
+
<col width="150px" class="parameters_name">
|
946
|
+
<col class="parameters_description">
|
947
|
+
<col width="200px" class="parameters_annotations">
|
948
|
+
</colgroup>
|
949
|
+
<tbody>
|
950
|
+
<tr>
|
951
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
952
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
953
|
+
<td class="parameter_annotations"> </td>
|
954
|
+
</tr>
|
955
|
+
<tr>
|
956
|
+
<td class="parameter_name"><p>icon_name</p></td>
|
957
|
+
<td class="parameter_description"><p>the name of an icon</p></td>
|
958
|
+
<td class="parameter_annotations"> </td>
|
959
|
+
</tr>
|
960
|
+
</tbody>
|
961
|
+
</table></div>
|
962
|
+
</div>
|
963
|
+
<div class="refsect3">
|
964
|
+
<a name="id-1.3.7.9.14.6"></a><h4>Returns</h4>
|
965
|
+
<p> An newly allocated array
|
966
|
+
describing the sizes at which the icon is available. The array
|
967
|
+
should be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when it is no longer needed. </p>
|
968
|
+
<p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1]</span></p>
|
969
|
+
</div>
|
970
|
+
<p class="since">Since 2.6</p>
|
971
|
+
</div>
|
972
|
+
<hr>
|
973
|
+
<div class="refsect2">
|
974
|
+
<a name="gtk-icon-theme-get-example-icon-name"></a><h3>gtk_icon_theme_get_example_icon_name ()</h3>
|
975
|
+
<pre class="programlisting"><span class="returnvalue">char</span> *
|
976
|
+
gtk_icon_theme_get_example_icon_name (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);</pre>
|
977
|
+
<p>Gets the name of an icon that is representative of the
|
978
|
+
current theme (for instance, to use when presenting
|
979
|
+
a list of themes to the user.)</p>
|
980
|
+
<div class="refsect3">
|
981
|
+
<a name="id-1.3.7.9.15.5"></a><h4>Parameters</h4>
|
982
|
+
<div class="informaltable"><table width="100%" border="0">
|
983
|
+
<colgroup>
|
984
|
+
<col width="150px" class="parameters_name">
|
985
|
+
<col class="parameters_description">
|
986
|
+
<col width="200px" class="parameters_annotations">
|
987
|
+
</colgroup>
|
988
|
+
<tbody><tr>
|
989
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
990
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
991
|
+
<td class="parameter_annotations"> </td>
|
992
|
+
</tr></tbody>
|
993
|
+
</table></div>
|
994
|
+
</div>
|
995
|
+
<div class="refsect3">
|
996
|
+
<a name="id-1.3.7.9.15.6"></a><h4>Returns</h4>
|
997
|
+
<p> the name of an example icon 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>.
|
998
|
+
Free with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</p>
|
999
|
+
<p></p>
|
1000
|
+
</div>
|
1001
|
+
<p class="since">Since 2.4</p>
|
1002
|
+
</div>
|
1003
|
+
<hr>
|
1004
|
+
<div class="refsect2">
|
1005
|
+
<a name="gtk-icon-theme-rescan-if-needed"></a><h3>gtk_icon_theme_rescan_if_needed ()</h3>
|
1006
|
+
<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>
|
1007
|
+
gtk_icon_theme_rescan_if_needed (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);</pre>
|
1008
|
+
<p>Checks to see if the icon theme has changed; if it has, any
|
1009
|
+
currently cached information is discarded and will be reloaded
|
1010
|
+
next time <em class="parameter"><code>icon_theme</code></em>
|
1011
|
+
is accessed.</p>
|
1012
|
+
<div class="refsect3">
|
1013
|
+
<a name="id-1.3.7.9.16.5"></a><h4>Parameters</h4>
|
1014
|
+
<div class="informaltable"><table width="100%" border="0">
|
1015
|
+
<colgroup>
|
1016
|
+
<col width="150px" class="parameters_name">
|
1017
|
+
<col class="parameters_description">
|
1018
|
+
<col width="200px" class="parameters_annotations">
|
1019
|
+
</colgroup>
|
1020
|
+
<tbody><tr>
|
1021
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
1022
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
1023
|
+
<td class="parameter_annotations"> </td>
|
1024
|
+
</tr></tbody>
|
1025
|
+
</table></div>
|
1026
|
+
</div>
|
1027
|
+
<div class="refsect3">
|
1028
|
+
<a name="id-1.3.7.9.16.6"></a><h4>Returns</h4>
|
1029
|
+
<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 icon theme has changed and needed
|
1030
|
+
to be reloaded.</p>
|
1031
|
+
<p></p>
|
1032
|
+
</div>
|
1033
|
+
<p class="since">Since 2.4</p>
|
1034
|
+
</div>
|
1035
|
+
<hr>
|
1036
|
+
<div class="refsect2">
|
1037
|
+
<a name="gtk-icon-theme-add-builtin-icon"></a><h3>gtk_icon_theme_add_builtin_icon ()</h3>
|
1038
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1039
|
+
gtk_icon_theme_add_builtin_icon (<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>,
|
1040
|
+
<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> size</code></em>,
|
1041
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
|
1042
|
+
<p>Registers a built-in icon for icon theme lookups. The idea
|
1043
|
+
of built-in icons is to allow an application or library
|
1044
|
+
that uses themed icons to function requiring files to
|
1045
|
+
be present in the file system. For instance, the default
|
1046
|
+
images for all of GTK+'s stock icons are registered
|
1047
|
+
as built-icons.</p>
|
1048
|
+
<p>In general, if you use <a class="link" href="GtkIconTheme.html#gtk-icon-theme-add-builtin-icon" title="gtk_icon_theme_add_builtin_icon ()"><code class="function">gtk_icon_theme_add_builtin_icon()</code></a>
|
1049
|
+
you should also install the icon in the icon theme, so
|
1050
|
+
that the icon is generally available.</p>
|
1051
|
+
<p>This function will generally be used with pixbufs loaded
|
1052
|
+
via <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Image-Data-in-Memory.html#gdk-pixbuf-new-from-inline"><code class="function">gdk_pixbuf_new_from_inline()</code></a>.</p>
|
1053
|
+
<div class="refsect3">
|
1054
|
+
<a name="id-1.3.7.9.17.7"></a><h4>Parameters</h4>
|
1055
|
+
<div class="informaltable"><table width="100%" border="0">
|
1056
|
+
<colgroup>
|
1057
|
+
<col width="150px" class="parameters_name">
|
1058
|
+
<col class="parameters_description">
|
1059
|
+
<col width="200px" class="parameters_annotations">
|
1060
|
+
</colgroup>
|
1061
|
+
<tbody>
|
1062
|
+
<tr>
|
1063
|
+
<td class="parameter_name"><p>icon_name</p></td>
|
1064
|
+
<td class="parameter_description"><p>the name of the icon to register</p></td>
|
1065
|
+
<td class="parameter_annotations"> </td>
|
1066
|
+
</tr>
|
1067
|
+
<tr>
|
1068
|
+
<td class="parameter_name"><p>size</p></td>
|
1069
|
+
<td class="parameter_description"><p>the size at which to register the icon (different
|
1070
|
+
images can be registered for the same icon name
|
1071
|
+
at different sizes.)</p></td>
|
1072
|
+
<td class="parameter_annotations"> </td>
|
1073
|
+
</tr>
|
1074
|
+
<tr>
|
1075
|
+
<td class="parameter_name"><p>pixbuf</p></td>
|
1076
|
+
<td class="parameter_description"><p><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> that contains the image to use
|
1077
|
+
for <em class="parameter"><code>icon_name</code></em>
|
1078
|
+
.</p></td>
|
1079
|
+
<td class="parameter_annotations"> </td>
|
1080
|
+
</tr>
|
1081
|
+
</tbody>
|
1082
|
+
</table></div>
|
1083
|
+
</div>
|
1084
|
+
<p class="since">Since 2.4</p>
|
1085
|
+
</div>
|
1086
|
+
<hr>
|
1087
|
+
<div class="refsect2">
|
1088
|
+
<a name="gtk-icon-info-copy"></a><h3>gtk_icon_info_copy ()</h3>
|
1089
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
1090
|
+
gtk_icon_info_copy (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1091
|
+
<p>Make a copy of a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a>.</p>
|
1092
|
+
<div class="refsect3">
|
1093
|
+
<a name="id-1.3.7.9.18.5"></a><h4>Parameters</h4>
|
1094
|
+
<div class="informaltable"><table width="100%" border="0">
|
1095
|
+
<colgroup>
|
1096
|
+
<col width="150px" class="parameters_name">
|
1097
|
+
<col class="parameters_description">
|
1098
|
+
<col width="200px" class="parameters_annotations">
|
1099
|
+
</colgroup>
|
1100
|
+
<tbody><tr>
|
1101
|
+
<td class="parameter_name"><p>icon_info</p></td>
|
1102
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a></p></td>
|
1103
|
+
<td class="parameter_annotations"> </td>
|
1104
|
+
</tr></tbody>
|
1105
|
+
</table></div>
|
1106
|
+
</div>
|
1107
|
+
<div class="refsect3">
|
1108
|
+
<a name="id-1.3.7.9.18.6"></a><h4>Returns</h4>
|
1109
|
+
<p> the new GtkIconInfo</p>
|
1110
|
+
<p></p>
|
1111
|
+
</div>
|
1112
|
+
<p class="since">Since 2.4</p>
|
1113
|
+
</div>
|
1114
|
+
<hr>
|
1115
|
+
<div class="refsect2">
|
1116
|
+
<a name="gtk-icon-info-free"></a><h3>gtk_icon_info_free ()</h3>
|
1117
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1118
|
+
gtk_icon_info_free (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1119
|
+
<p>Free a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> and associated information</p>
|
1120
|
+
<div class="refsect3">
|
1121
|
+
<a name="id-1.3.7.9.19.5"></a><h4>Parameters</h4>
|
1122
|
+
<div class="informaltable"><table width="100%" border="0">
|
1123
|
+
<colgroup>
|
1124
|
+
<col width="150px" class="parameters_name">
|
1125
|
+
<col class="parameters_description">
|
1126
|
+
<col width="200px" class="parameters_annotations">
|
1127
|
+
</colgroup>
|
1128
|
+
<tbody><tr>
|
1129
|
+
<td class="parameter_name"><p>icon_info</p></td>
|
1130
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a></p></td>
|
1131
|
+
<td class="parameter_annotations"> </td>
|
1132
|
+
</tr></tbody>
|
1133
|
+
</table></div>
|
1134
|
+
</div>
|
1135
|
+
<p class="since">Since 2.4</p>
|
1136
|
+
</div>
|
1137
|
+
<hr>
|
1138
|
+
<div class="refsect2">
|
1139
|
+
<a name="gtk-icon-info-new-for-pixbuf"></a><h3>gtk_icon_info_new_for_pixbuf ()</h3>
|
1140
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
1141
|
+
gtk_icon_info_new_for_pixbuf (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
1142
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
|
1143
|
+
<p>Creates a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> for a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>.</p>
|
1144
|
+
<div class="refsect3">
|
1145
|
+
<a name="id-1.3.7.9.20.5"></a><h4>Parameters</h4>
|
1146
|
+
<div class="informaltable"><table width="100%" border="0">
|
1147
|
+
<colgroup>
|
1148
|
+
<col width="150px" class="parameters_name">
|
1149
|
+
<col class="parameters_description">
|
1150
|
+
<col width="200px" class="parameters_annotations">
|
1151
|
+
</colgroup>
|
1152
|
+
<tbody>
|
1153
|
+
<tr>
|
1154
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
1155
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
1156
|
+
<td class="parameter_annotations"> </td>
|
1157
|
+
</tr>
|
1158
|
+
<tr>
|
1159
|
+
<td class="parameter_name"><p>pixbuf</p></td>
|
1160
|
+
<td class="parameter_description"><p>the pixbuf to wrap in a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a></p></td>
|
1161
|
+
<td class="parameter_annotations"> </td>
|
1162
|
+
</tr>
|
1163
|
+
</tbody>
|
1164
|
+
</table></div>
|
1165
|
+
</div>
|
1166
|
+
<div class="refsect3">
|
1167
|
+
<a name="id-1.3.7.9.20.6"></a><h4>Returns</h4>
|
1168
|
+
<p> a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a></p>
|
1169
|
+
<p></p>
|
1170
|
+
</div>
|
1171
|
+
<p class="since">Since 2.14</p>
|
1172
|
+
</div>
|
1173
|
+
<hr>
|
1174
|
+
<div class="refsect2">
|
1175
|
+
<a name="gtk-icon-info-get-base-size"></a><h3>gtk_icon_info_get_base_size ()</h3>
|
1176
|
+
<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>
|
1177
|
+
gtk_icon_info_get_base_size (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1178
|
+
<p>Gets the base size for the icon. The base size
|
1179
|
+
is a size for the icon that was specified by
|
1180
|
+
the icon theme creator. This may be different
|
1181
|
+
than the actual size of image; an example of
|
1182
|
+
this is small emblem icons that can be attached
|
1183
|
+
to a larger icon. These icons will be given
|
1184
|
+
the same base size as the larger icons to which
|
1185
|
+
they are attached.</p>
|
1186
|
+
<div class="refsect3">
|
1187
|
+
<a name="id-1.3.7.9.21.5"></a><h4>Parameters</h4>
|
1188
|
+
<div class="informaltable"><table width="100%" border="0">
|
1189
|
+
<colgroup>
|
1190
|
+
<col width="150px" class="parameters_name">
|
1191
|
+
<col class="parameters_description">
|
1192
|
+
<col width="200px" class="parameters_annotations">
|
1193
|
+
</colgroup>
|
1194
|
+
<tbody><tr>
|
1195
|
+
<td class="parameter_name"><p>icon_info</p></td>
|
1196
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a></p></td>
|
1197
|
+
<td class="parameter_annotations"> </td>
|
1198
|
+
</tr></tbody>
|
1199
|
+
</table></div>
|
1200
|
+
</div>
|
1201
|
+
<div class="refsect3">
|
1202
|
+
<a name="id-1.3.7.9.21.6"></a><h4>Returns</h4>
|
1203
|
+
<p> the base size, or 0, if no base
|
1204
|
+
size is known for the icon.</p>
|
1205
|
+
<p></p>
|
1206
|
+
</div>
|
1207
|
+
<p class="since">Since 2.4</p>
|
1208
|
+
</div>
|
1209
|
+
<hr>
|
1210
|
+
<div class="refsect2">
|
1211
|
+
<a name="gtk-icon-info-get-builtin-pixbuf"></a><h3>gtk_icon_info_get_builtin_pixbuf ()</h3>
|
1212
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
|
1213
|
+
gtk_icon_info_get_builtin_pixbuf (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1214
|
+
<p>Gets the built-in image for this icon, if any. To allow
|
1215
|
+
GTK+ to use built in icon images, you must pass the
|
1216
|
+
<a class="link" href="GtkIconTheme.html#GTK-ICON-LOOKUP-USE-BUILTIN:CAPS"><code class="literal">GTK_ICON_LOOKUP_USE_BUILTIN</code></a> to
|
1217
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a>.</p>
|
1218
|
+
<div class="refsect3">
|
1219
|
+
<a name="id-1.3.7.9.22.5"></a><h4>Parameters</h4>
|
1220
|
+
<div class="informaltable"><table width="100%" border="0">
|
1221
|
+
<colgroup>
|
1222
|
+
<col width="150px" class="parameters_name">
|
1223
|
+
<col class="parameters_description">
|
1224
|
+
<col width="200px" class="parameters_annotations">
|
1225
|
+
</colgroup>
|
1226
|
+
<tbody><tr>
|
1227
|
+
<td class="parameter_name"><p>icon_info</p></td>
|
1228
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure</p></td>
|
1229
|
+
<td class="parameter_annotations"> </td>
|
1230
|
+
</tr></tbody>
|
1231
|
+
</table></div>
|
1232
|
+
</div>
|
1233
|
+
<div class="refsect3">
|
1234
|
+
<a name="id-1.3.7.9.22.6"></a><h4>Returns</h4>
|
1235
|
+
<p> the built-in image pixbuf, 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>. No
|
1236
|
+
extra reference is added to the returned pixbuf, so if
|
1237
|
+
you want to keep it around, you must use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a>.
|
1238
|
+
The returned image must not be modified. </p>
|
1239
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1240
|
+
</div>
|
1241
|
+
<p class="since">Since 2.4</p>
|
1242
|
+
</div>
|
1243
|
+
<hr>
|
1244
|
+
<div class="refsect2">
|
1245
|
+
<a name="gtk-icon-info-load-icon"></a><h3>gtk_icon_info_load_icon ()</h3>
|
1246
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
|
1247
|
+
gtk_icon_info_load_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
1248
|
+
<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>
|
1249
|
+
<p>Renders an icon previously looked up in an icon theme using
|
1250
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a>; the size will be based on the size
|
1251
|
+
passed to <a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a>. Note that the resulting
|
1252
|
+
pixbuf may not be exactly this size; an icon theme may have icons
|
1253
|
+
that differ slightly from their nominal sizes, and in addition GTK+
|
1254
|
+
will avoid scaling icons that it considers sufficiently close to the
|
1255
|
+
requested size or for which the source image would have to be scaled
|
1256
|
+
up too far. (This maintains sharpness.). This behaviour can be changed
|
1257
|
+
by passing the <a class="link" href="GtkIconTheme.html#GTK-ICON-LOOKUP-FORCE-SIZE:CAPS"><code class="literal">GTK_ICON_LOOKUP_FORCE_SIZE</code></a> flag when obtaining
|
1258
|
+
the <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a>. If this flag has been specified, the pixbuf
|
1259
|
+
returned by this function will be scaled to the exact size.</p>
|
1260
|
+
<div class="refsect3">
|
1261
|
+
<a name="id-1.3.7.9.23.5"></a><h4>Parameters</h4>
|
1262
|
+
<div class="informaltable"><table width="100%" border="0">
|
1263
|
+
<colgroup>
|
1264
|
+
<col width="150px" class="parameters_name">
|
1265
|
+
<col class="parameters_description">
|
1266
|
+
<col width="200px" class="parameters_annotations">
|
1267
|
+
</colgroup>
|
1268
|
+
<tbody>
|
1269
|
+
<tr>
|
1270
|
+
<td class="parameter_name"><p>icon_info</p></td>
|
1271
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure from <a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a></p></td>
|
1272
|
+
<td class="parameter_annotations"> </td>
|
1273
|
+
</tr>
|
1274
|
+
<tr>
|
1275
|
+
<td class="parameter_name"><p>error</p></td>
|
1276
|
+
<td class="parameter_description"><p> location to store error information on failure,
|
1277
|
+
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>
|
1278
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1279
|
+
</tr>
|
1280
|
+
</tbody>
|
1281
|
+
</table></div>
|
1282
|
+
</div>
|
1283
|
+
<div class="refsect3">
|
1284
|
+
<a name="id-1.3.7.9.23.6"></a><h4>Returns</h4>
|
1285
|
+
<p> the rendered icon; this may be a newly
|
1286
|
+
created icon or a new reference to an internal icon, so you must
|
1287
|
+
not modify the icon. Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> to release your reference
|
1288
|
+
to the icon. </p>
|
1289
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1290
|
+
</div>
|
1291
|
+
<p class="since">Since 2.4</p>
|
1292
|
+
</div>
|
1293
|
+
<hr>
|
1294
|
+
<div class="refsect2">
|
1295
|
+
<a name="gtk-icon-info-set-raw-coordinates"></a><h3>gtk_icon_info_set_raw_coordinates ()</h3>
|
1296
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1297
|
+
gtk_icon_info_set_raw_coordinates (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
1298
|
+
<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> raw_coordinates</code></em>);</pre>
|
1299
|
+
<p>Sets whether the coordinates returned by <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-embedded-rect" title="gtk_icon_info_get_embedded_rect ()"><code class="function">gtk_icon_info_get_embedded_rect()</code></a>
|
1300
|
+
and <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-attach-points" title="gtk_icon_info_get_attach_points ()"><code class="function">gtk_icon_info_get_attach_points()</code></a> should be returned in their
|
1301
|
+
original form as specified in the icon theme, instead of scaled
|
1302
|
+
appropriately for the pixbuf returned by <a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()"><code class="function">gtk_icon_info_load_icon()</code></a>.</p>
|
1303
|
+
<p>Raw coordinates are somewhat strange; they are specified to be with
|
1304
|
+
respect to the unscaled pixmap for PNG and XPM icons, but for SVG
|
1305
|
+
icons, they are in a 1000x1000 coordinate space that is scaled
|
1306
|
+
to the final size of the icon. You can determine if the icon is an SVG
|
1307
|
+
icon by using <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename"><code class="function">gtk_icon_info_get_filename()</code></a>, and seeing if it 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>
|
1308
|
+
and ends in '.svg'.</p>
|
1309
|
+
<p>This function is provided primarily to allow compatibility wrappers
|
1310
|
+
for older API's, and is not expected to be useful for applications.</p>
|
1311
|
+
<div class="refsect3">
|
1312
|
+
<a name="id-1.3.7.9.24.7"></a><h4>Parameters</h4>
|
1313
|
+
<div class="informaltable"><table width="100%" border="0">
|
1314
|
+
<colgroup>
|
1315
|
+
<col width="150px" class="parameters_name">
|
1316
|
+
<col class="parameters_description">
|
1317
|
+
<col width="200px" class="parameters_annotations">
|
1318
|
+
</colgroup>
|
1319
|
+
<tbody>
|
1320
|
+
<tr>
|
1321
|
+
<td class="parameter_name"><p>icon_info</p></td>
|
1322
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a></p></td>
|
1323
|
+
<td class="parameter_annotations"> </td>
|
1324
|
+
</tr>
|
1325
|
+
<tr>
|
1326
|
+
<td class="parameter_name"><p>raw_coordinates</p></td>
|
1327
|
+
<td class="parameter_description"><p>whether the coordinates of embedded rectangles
|
1328
|
+
and attached points should be returned in their original
|
1329
|
+
(unscaled) form.</p></td>
|
1330
|
+
<td class="parameter_annotations"> </td>
|
1331
|
+
</tr>
|
1332
|
+
</tbody>
|
1333
|
+
</table></div>
|
1334
|
+
</div>
|
1335
|
+
<p class="since">Since 2.4</p>
|
1336
|
+
</div>
|
1337
|
+
<hr>
|
1338
|
+
<div class="refsect2">
|
1339
|
+
<a name="gtk-icon-info-get-embedded-rect"></a><h3>gtk_icon_info_get_embedded_rect ()</h3>
|
1340
|
+
<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>
|
1341
|
+
gtk_icon_info_get_embedded_rect (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
1342
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);</pre>
|
1343
|
+
<p>Gets the coordinates of a rectangle within the icon
|
1344
|
+
that can be used for display of information such
|
1345
|
+
as a preview of the contents of a text file.
|
1346
|
+
See <a class="link" href="GtkIconTheme.html#gtk-icon-info-set-raw-coordinates" title="gtk_icon_info_set_raw_coordinates ()"><code class="function">gtk_icon_info_set_raw_coordinates()</code></a> for further
|
1347
|
+
information about the coordinate system.</p>
|
1348
|
+
<div class="refsect3">
|
1349
|
+
<a name="id-1.3.7.9.25.5"></a><h4>Parameters</h4>
|
1350
|
+
<div class="informaltable"><table width="100%" border="0">
|
1351
|
+
<colgroup>
|
1352
|
+
<col width="150px" class="parameters_name">
|
1353
|
+
<col class="parameters_description">
|
1354
|
+
<col width="200px" class="parameters_annotations">
|
1355
|
+
</colgroup>
|
1356
|
+
<tbody>
|
1357
|
+
<tr>
|
1358
|
+
<td class="parameter_name"><p>icon_info</p></td>
|
1359
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a></p></td>
|
1360
|
+
<td class="parameter_annotations"> </td>
|
1361
|
+
</tr>
|
1362
|
+
<tr>
|
1363
|
+
<td class="parameter_name"><p>rectangle</p></td>
|
1364
|
+
<td class="parameter_description"><p> <a href="http://library.gnome.org/devel/gdk3/gdk2-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> in which to store embedded
|
1365
|
+
rectangle coordinates; coordinates are only stored
|
1366
|
+
when this function returns <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>. </p></td>
|
1367
|
+
<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>
|
1368
|
+
</tr>
|
1369
|
+
</tbody>
|
1370
|
+
</table></div>
|
1371
|
+
</div>
|
1372
|
+
<div class="refsect3">
|
1373
|
+
<a name="id-1.3.7.9.25.6"></a><h4>Returns</h4>
|
1374
|
+
<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 icon has an embedded rectangle</p>
|
1375
|
+
<p></p>
|
1376
|
+
</div>
|
1377
|
+
<p class="since">Since 2.4</p>
|
1378
|
+
</div>
|
1379
|
+
<hr>
|
1380
|
+
<div class="refsect2">
|
1381
|
+
<a name="gtk-icon-info-get-attach-points"></a><h3>gtk_icon_info_get_attach_points ()</h3>
|
1382
|
+
<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>
|
1383
|
+
gtk_icon_info_get_attach_points (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
1384
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Points-Rectangles-and-Regions.html#GdkPoint"><span class="type">GdkPoint</span></a> **points</code></em>,
|
1385
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_points</code></em>);</pre>
|
1386
|
+
<p>Fetches the set of attach points for an icon. An attach point
|
1387
|
+
is a location in the icon that can be used as anchor points for attaching
|
1388
|
+
emblems or overlays to the icon.</p>
|
1389
|
+
<div class="refsect3">
|
1390
|
+
<a name="id-1.3.7.9.26.5"></a><h4>Parameters</h4>
|
1391
|
+
<div class="informaltable"><table width="100%" border="0">
|
1392
|
+
<colgroup>
|
1393
|
+
<col width="150px" class="parameters_name">
|
1394
|
+
<col class="parameters_description">
|
1395
|
+
<col width="200px" class="parameters_annotations">
|
1396
|
+
</colgroup>
|
1397
|
+
<tbody>
|
1398
|
+
<tr>
|
1399
|
+
<td class="parameter_name"><p>icon_info</p></td>
|
1400
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a></p></td>
|
1401
|
+
<td class="parameter_annotations"> </td>
|
1402
|
+
</tr>
|
1403
|
+
<tr>
|
1404
|
+
<td class="parameter_name"><p>points</p></td>
|
1405
|
+
<td class="parameter_description"><p> (array length=n_points) (out): location to store pointer to an array of points, 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>
|
1406
|
+
free the array of points with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>. </p></td>
|
1407
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1408
|
+
</tr>
|
1409
|
+
<tr>
|
1410
|
+
<td class="parameter_name"><p>n_points</p></td>
|
1411
|
+
<td class="parameter_description"><p> location to store the number of points in <em class="parameter"><code>points</code></em>
|
1412
|
+
, 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>
|
1413
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1414
|
+
</tr>
|
1415
|
+
</tbody>
|
1416
|
+
</table></div>
|
1417
|
+
</div>
|
1418
|
+
<div class="refsect3">
|
1419
|
+
<a name="id-1.3.7.9.26.6"></a><h4>Returns</h4>
|
1420
|
+
<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 are any attach points for the icon.</p>
|
1421
|
+
<p></p>
|
1422
|
+
</div>
|
1423
|
+
<p class="since">Since 2.4</p>
|
1424
|
+
</div>
|
1425
|
+
<hr>
|
1426
|
+
<div class="refsect2">
|
1427
|
+
<a name="gtk-icon-info-get-display-name"></a><h3>gtk_icon_info_get_display_name ()</h3>
|
1428
|
+
<pre class="programlisting">const <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> *
|
1429
|
+
gtk_icon_info_get_display_name (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1430
|
+
<p>Gets the display name for an icon. A display name is a
|
1431
|
+
string to be used in place of the icon name in a user
|
1432
|
+
visible context like a list of icons.</p>
|
1433
|
+
<div class="refsect3">
|
1434
|
+
<a name="id-1.3.7.9.27.5"></a><h4>Parameters</h4>
|
1435
|
+
<div class="informaltable"><table width="100%" border="0">
|
1436
|
+
<colgroup>
|
1437
|
+
<col width="150px" class="parameters_name">
|
1438
|
+
<col class="parameters_description">
|
1439
|
+
<col width="200px" class="parameters_annotations">
|
1440
|
+
</colgroup>
|
1441
|
+
<tbody><tr>
|
1442
|
+
<td class="parameter_name"><p>icon_info</p></td>
|
1443
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a></p></td>
|
1444
|
+
<td class="parameter_annotations"> </td>
|
1445
|
+
</tr></tbody>
|
1446
|
+
</table></div>
|
1447
|
+
</div>
|
1448
|
+
<div class="refsect3">
|
1449
|
+
<a name="id-1.3.7.9.27.6"></a><h4>Returns</h4>
|
1450
|
+
<p> the display name for the icon 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
|
1451
|
+
the icon doesn't have a specified display name. This value
|
1452
|
+
is owned <em class="parameter"><code>icon_info</code></em>
|
1453
|
+
and must not be modified or free.</p>
|
1454
|
+
<p></p>
|
1455
|
+
</div>
|
1456
|
+
<p class="since">Since 2.4</p>
|
1457
|
+
</div>
|
1458
|
+
</div>
|
1459
|
+
<div class="refsect1">
|
1460
|
+
<a name="GtkIconTheme.other_details"></a><h2>Types and Values</h2>
|
1461
|
+
<div class="refsect2">
|
1462
|
+
<a name="GtkIconInfo"></a><h3>GtkIconInfo</h3>
|
1463
|
+
<pre class="programlisting">typedef struct _GtkIconInfo GtkIconInfo;</pre>
|
1464
|
+
<p>
|
1465
|
+
Contains information found when looking up an icon in
|
1466
|
+
an icon theme.
|
1467
|
+
</p>
|
1468
|
+
</div>
|
1469
|
+
<hr>
|
1470
|
+
<div class="refsect2">
|
1471
|
+
<a name="GtkIconTheme-struct"></a><h3>struct GtkIconTheme</h3>
|
1472
|
+
<pre class="programlisting">struct GtkIconTheme;</pre>
|
1473
|
+
<p>
|
1474
|
+
Acts as a database of information about an icon theme.
|
1475
|
+
Normally, you retrieve the icon theme for a particular
|
1476
|
+
screen using <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title="gtk_icon_theme_get_for_screen ()"><code class="function">gtk_icon_theme_get_for_screen()</code></a> and it
|
1477
|
+
will contain information about current icon theme for
|
1478
|
+
that screen, but you can also create a new <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a>
|
1479
|
+
object and set the icon theme name explicitely using
|
1480
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-custom-theme" title="gtk_icon_theme_set_custom_theme ()"><code class="function">gtk_icon_theme_set_custom_theme()</code></a>.
|
1481
|
+
</p>
|
1482
|
+
</div>
|
1483
|
+
<hr>
|
1484
|
+
<div class="refsect2">
|
1485
|
+
<a name="GtkIconLookupFlags"></a><h3>enum GtkIconLookupFlags</h3>
|
1486
|
+
<p>Used to specify options for <a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a></p>
|
1487
|
+
<div class="refsect3">
|
1488
|
+
<a name="id-1.3.7.10.4.4"></a><h4>Members</h4>
|
1489
|
+
<div class="informaltable"><table width="100%" border="0">
|
1490
|
+
<colgroup>
|
1491
|
+
<col width="300px" class="enum_members_name">
|
1492
|
+
<col class="enum_members_description">
|
1493
|
+
<col width="200px" class="enum_members_annotations">
|
1494
|
+
</colgroup>
|
1495
|
+
<tbody>
|
1496
|
+
<tr>
|
1497
|
+
<td class="enum_member_name"><p><a name="GTK-ICON-LOOKUP-NO-SVG:CAPS"></a>GTK_ICON_LOOKUP_NO_SVG</p></td>
|
1498
|
+
<td class="enum_member_description">
|
1499
|
+
<p>Never return SVG icons, even if gdk-pixbuf
|
1500
|
+
supports them. Cannot be used together with <a class="link" href="GtkIconTheme.html#GTK-ICON-LOOKUP-FORCE-SVG:CAPS"><code class="literal">GTK_ICON_LOOKUP_FORCE_SVG</code></a>.</p>
|
1501
|
+
</td>
|
1502
|
+
<td class="enum_member_annotations"> </td>
|
1503
|
+
</tr>
|
1504
|
+
<tr>
|
1505
|
+
<td class="enum_member_name"><p><a name="GTK-ICON-LOOKUP-FORCE-SVG:CAPS"></a>GTK_ICON_LOOKUP_FORCE_SVG</p></td>
|
1506
|
+
<td class="enum_member_description">
|
1507
|
+
<p>Return SVG icons, even if gdk-pixbuf
|
1508
|
+
doesn't support them.
|
1509
|
+
Cannot be used together with <a class="link" href="GtkIconTheme.html#GTK-ICON-LOOKUP-NO-SVG:CAPS"><code class="literal">GTK_ICON_LOOKUP_NO_SVG</code></a>.</p>
|
1510
|
+
</td>
|
1511
|
+
<td class="enum_member_annotations"> </td>
|
1512
|
+
</tr>
|
1513
|
+
<tr>
|
1514
|
+
<td class="enum_member_name"><p><a name="GTK-ICON-LOOKUP-USE-BUILTIN:CAPS"></a>GTK_ICON_LOOKUP_USE_BUILTIN</p></td>
|
1515
|
+
<td class="enum_member_description">
|
1516
|
+
<p>When passed to
|
1517
|
+
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a> includes builtin icons
|
1518
|
+
as well as files. For a builtin icon, <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename"><code class="function">gtk_icon_info_get_filename()</code></a>
|
1519
|
+
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> and you need to call <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()"><code class="function">gtk_icon_info_get_builtin_pixbuf()</code></a>.</p>
|
1520
|
+
</td>
|
1521
|
+
<td class="enum_member_annotations"> </td>
|
1522
|
+
</tr>
|
1523
|
+
<tr>
|
1524
|
+
<td class="enum_member_name"><p><a name="GTK-ICON-LOOKUP-GENERIC-FALLBACK:CAPS"></a>GTK_ICON_LOOKUP_GENERIC_FALLBACK</p></td>
|
1525
|
+
<td class="enum_member_description">
|
1526
|
+
<p>Try to shorten icon name at '-'
|
1527
|
+
characters before looking at inherited themes. For more general
|
1528
|
+
fallback, see <a class="link" href="GtkIconTheme.html#gtk-icon-theme-choose-icon" title="gtk_icon_theme_choose_icon ()"><code class="function">gtk_icon_theme_choose_icon()</code></a>. Since 2.12.</p>
|
1529
|
+
</td>
|
1530
|
+
<td class="enum_member_annotations"> </td>
|
1531
|
+
</tr>
|
1532
|
+
<tr>
|
1533
|
+
<td class="enum_member_name"><p><a name="GTK-ICON-LOOKUP-FORCE-SIZE:CAPS"></a>GTK_ICON_LOOKUP_FORCE_SIZE</p></td>
|
1534
|
+
<td class="enum_member_description">
|
1535
|
+
<p>Always return the icon scaled to the
|
1536
|
+
requested size. Since 2.14.</p>
|
1537
|
+
</td>
|
1538
|
+
<td class="enum_member_annotations"> </td>
|
1539
|
+
</tr>
|
1540
|
+
</tbody>
|
1541
|
+
</table></div>
|
1542
|
+
</div>
|
1543
|
+
</div>
|
1544
|
+
<hr>
|
1545
|
+
<div class="refsect2">
|
1546
|
+
<a name="GTK-ICON-THEME-ERROR:CAPS"></a><h3>GTK_ICON_THEME_ERROR</h3>
|
1547
|
+
<pre class="programlisting">#define GTK_ICON_THEME_ERROR gtk_icon_theme_error_quark ()
|
1548
|
+
</pre>
|
1549
|
+
<p>
|
1550
|
+
The <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> used for <a class="link" href="GtkIconTheme.html#GtkIconThemeError" title="enum GtkIconThemeError"><span class="type">GtkIconThemeError</span></a> errors.
|
1551
|
+
</p>
|
1552
|
+
</div>
|
1553
|
+
<hr>
|
1554
|
+
<div class="refsect2">
|
1555
|
+
<a name="GtkIconThemeError"></a><h3>enum GtkIconThemeError</h3>
|
1556
|
+
<p>Error codes for GtkIconTheme operations.</p>
|
1557
|
+
<div class="refsect3">
|
1558
|
+
<a name="id-1.3.7.10.6.4"></a><h4>Members</h4>
|
1559
|
+
<div class="informaltable"><table width="100%" border="0">
|
1560
|
+
<colgroup>
|
1561
|
+
<col width="300px" class="enum_members_name">
|
1562
|
+
<col class="enum_members_description">
|
1563
|
+
<col width="200px" class="enum_members_annotations">
|
1564
|
+
</colgroup>
|
1565
|
+
<tbody>
|
1566
|
+
<tr>
|
1567
|
+
<td class="enum_member_name"><p><a name="GTK-ICON-THEME-NOT-FOUND:CAPS"></a>GTK_ICON_THEME_NOT_FOUND</p></td>
|
1568
|
+
<td class="enum_member_description">
|
1569
|
+
<p>The icon specified does not exist in the theme</p>
|
1570
|
+
</td>
|
1571
|
+
<td class="enum_member_annotations"> </td>
|
1572
|
+
</tr>
|
1573
|
+
<tr>
|
1574
|
+
<td class="enum_member_name"><p><a name="GTK-ICON-THEME-FAILED:CAPS"></a>GTK_ICON_THEME_FAILED</p></td>
|
1575
|
+
<td class="enum_member_description">
|
1576
|
+
<p>An unspecified error occurred.</p>
|
1577
|
+
</td>
|
1578
|
+
<td class="enum_member_annotations"> </td>
|
1579
|
+
</tr>
|
1580
|
+
</tbody>
|
1581
|
+
</table></div>
|
1582
|
+
</div>
|
1583
|
+
</div>
|
1584
|
+
<hr>
|
1585
|
+
<div class="refsect2">
|
1586
|
+
<a name="gtk-icon-theme-set-search-path"></a><h3>gtk_icon_theme_set_search_path</h3>
|
1587
|
+
<pre class="programlisting">#define gtk_icon_theme_set_search_path gtk_icon_theme_set_search_path_utf8
|
1588
|
+
</pre>
|
1589
|
+
<p>Sets the search path for the icon theme object. When looking
|
1590
|
+
for an icon theme, GTK+ will search for a subdirectory of
|
1591
|
+
one or more of the directories in <em class="parameter"><code>path</code></em>
|
1592
|
+
with the same name
|
1593
|
+
as the icon theme. (Themes from multiple of the path elements
|
1594
|
+
are combined to allow themes to be extended by adding icons
|
1595
|
+
in the user's home directory.)</p>
|
1596
|
+
<p>In addition if an icon found isn't found either in the current
|
1597
|
+
icon theme or the default icon theme, and an image file with
|
1598
|
+
the right name is found directly in one of the elements of
|
1599
|
+
<em class="parameter"><code>path</code></em>
|
1600
|
+
, then that image will be used for the icon name.
|
1601
|
+
(This is legacy feature, and new icons should be put
|
1602
|
+
into the default icon theme, which is called DEFAULT_THEME_NAME,
|
1603
|
+
rather than directly on the icon path.)</p>
|
1604
|
+
<div class="refsect3">
|
1605
|
+
<a name="id-1.3.7.10.7.6"></a><h4>Parameters</h4>
|
1606
|
+
<div class="informaltable"><table width="100%" border="0">
|
1607
|
+
<colgroup>
|
1608
|
+
<col width="150px" class="parameters_name">
|
1609
|
+
<col class="parameters_description">
|
1610
|
+
<col width="200px" class="parameters_annotations">
|
1611
|
+
</colgroup>
|
1612
|
+
<tbody>
|
1613
|
+
<tr>
|
1614
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
1615
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
1616
|
+
<td class="parameter_annotations"> </td>
|
1617
|
+
</tr>
|
1618
|
+
<tr>
|
1619
|
+
<td class="parameter_name"><p>path</p></td>
|
1620
|
+
<td class="parameter_description"><p> array of
|
1621
|
+
directories that are searched for icon themes. </p></td>
|
1622
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_elements][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> filename]</span></td>
|
1623
|
+
</tr>
|
1624
|
+
<tr>
|
1625
|
+
<td class="parameter_name"><p>n_elements</p></td>
|
1626
|
+
<td class="parameter_description"><p>number of elements in <em class="parameter"><code>path</code></em>
|
1627
|
+
.</p></td>
|
1628
|
+
<td class="parameter_annotations"> </td>
|
1629
|
+
</tr>
|
1630
|
+
</tbody>
|
1631
|
+
</table></div>
|
1632
|
+
</div>
|
1633
|
+
<p class="since">Since 2.4</p>
|
1634
|
+
</div>
|
1635
|
+
<hr>
|
1636
|
+
<div class="refsect2">
|
1637
|
+
<a name="gtk-icon-theme-get-search-path"></a><h3>gtk_icon_theme_get_search_path</h3>
|
1638
|
+
<pre class="programlisting">#define gtk_icon_theme_get_search_path gtk_icon_theme_get_search_path_utf8
|
1639
|
+
</pre>
|
1640
|
+
<p>Gets the current search path. See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path"><code class="function">gtk_icon_theme_set_search_path()</code></a>.</p>
|
1641
|
+
<div class="refsect3">
|
1642
|
+
<a name="id-1.3.7.10.8.5"></a><h4>Parameters</h4>
|
1643
|
+
<div class="informaltable"><table width="100%" border="0">
|
1644
|
+
<colgroup>
|
1645
|
+
<col width="150px" class="parameters_name">
|
1646
|
+
<col class="parameters_description">
|
1647
|
+
<col width="200px" class="parameters_annotations">
|
1648
|
+
</colgroup>
|
1649
|
+
<tbody>
|
1650
|
+
<tr>
|
1651
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
1652
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
1653
|
+
<td class="parameter_annotations"> </td>
|
1654
|
+
</tr>
|
1655
|
+
<tr>
|
1656
|
+
<td class="parameter_name"><p>path</p></td>
|
1657
|
+
<td class="parameter_description"><p> (array length=n_elements) (out): location to store a list of icon theme path directories 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>
|
1658
|
+
The stored value should be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>. </p></td>
|
1659
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1660
|
+
</tr>
|
1661
|
+
<tr>
|
1662
|
+
<td class="parameter_name"><p>n_elements</p></td>
|
1663
|
+
<td class="parameter_description"><p>location to store number of elements
|
1664
|
+
in <em class="parameter"><code>path</code></em>
|
1665
|
+
, 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>
|
1666
|
+
<td class="parameter_annotations"> </td>
|
1667
|
+
</tr>
|
1668
|
+
</tbody>
|
1669
|
+
</table></div>
|
1670
|
+
</div>
|
1671
|
+
<p class="since">Since 2.4</p>
|
1672
|
+
</div>
|
1673
|
+
<hr>
|
1674
|
+
<div class="refsect2">
|
1675
|
+
<a name="gtk-icon-theme-append-search-path"></a><h3>gtk_icon_theme_append_search_path</h3>
|
1676
|
+
<pre class="programlisting">#define gtk_icon_theme_append_search_path gtk_icon_theme_append_search_path_utf8
|
1677
|
+
</pre>
|
1678
|
+
<p>Appends a directory to the search path.
|
1679
|
+
See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path"><code class="function">gtk_icon_theme_set_search_path()</code></a>.</p>
|
1680
|
+
<div class="refsect3">
|
1681
|
+
<a name="id-1.3.7.10.9.5"></a><h4>Parameters</h4>
|
1682
|
+
<div class="informaltable"><table width="100%" border="0">
|
1683
|
+
<colgroup>
|
1684
|
+
<col width="150px" class="parameters_name">
|
1685
|
+
<col class="parameters_description">
|
1686
|
+
<col width="200px" class="parameters_annotations">
|
1687
|
+
</colgroup>
|
1688
|
+
<tbody>
|
1689
|
+
<tr>
|
1690
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
1691
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
1692
|
+
<td class="parameter_annotations"> </td>
|
1693
|
+
</tr>
|
1694
|
+
<tr>
|
1695
|
+
<td class="parameter_name"><p>path</p></td>
|
1696
|
+
<td class="parameter_description"><p>directory name to append to the icon path</p></td>
|
1697
|
+
<td class="parameter_annotations"> </td>
|
1698
|
+
</tr>
|
1699
|
+
</tbody>
|
1700
|
+
</table></div>
|
1701
|
+
</div>
|
1702
|
+
<p class="since">Since 2.4</p>
|
1703
|
+
</div>
|
1704
|
+
<hr>
|
1705
|
+
<div class="refsect2">
|
1706
|
+
<a name="gtk-icon-theme-prepend-search-path"></a><h3>gtk_icon_theme_prepend_search_path</h3>
|
1707
|
+
<pre class="programlisting">#define gtk_icon_theme_prepend_search_path gtk_icon_theme_prepend_search_path_utf8
|
1708
|
+
</pre>
|
1709
|
+
<p>Prepends a directory to the search path.
|
1710
|
+
See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path"><code class="function">gtk_icon_theme_set_search_path()</code></a>.</p>
|
1711
|
+
<div class="refsect3">
|
1712
|
+
<a name="id-1.3.7.10.10.5"></a><h4>Parameters</h4>
|
1713
|
+
<div class="informaltable"><table width="100%" border="0">
|
1714
|
+
<colgroup>
|
1715
|
+
<col width="150px" class="parameters_name">
|
1716
|
+
<col class="parameters_description">
|
1717
|
+
<col width="200px" class="parameters_annotations">
|
1718
|
+
</colgroup>
|
1719
|
+
<tbody>
|
1720
|
+
<tr>
|
1721
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
1722
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a></p></td>
|
1723
|
+
<td class="parameter_annotations"> </td>
|
1724
|
+
</tr>
|
1725
|
+
<tr>
|
1726
|
+
<td class="parameter_name"><p>path</p></td>
|
1727
|
+
<td class="parameter_description"><p>directory name to prepend to the icon path</p></td>
|
1728
|
+
<td class="parameter_annotations"> </td>
|
1729
|
+
</tr>
|
1730
|
+
</tbody>
|
1731
|
+
</table></div>
|
1732
|
+
</div>
|
1733
|
+
<p class="since">Since 2.4</p>
|
1734
|
+
</div>
|
1735
|
+
<hr>
|
1736
|
+
<div class="refsect2">
|
1737
|
+
<a name="gtk-icon-info-get-filename"></a><h3>gtk_icon_info_get_filename</h3>
|
1738
|
+
<pre class="programlisting">#define gtk_icon_info_get_filename gtk_icon_info_get_filename_utf8
|
1739
|
+
</pre>
|
1740
|
+
<p>Gets the filename for the icon. If the
|
1741
|
+
<a class="link" href="GtkIconTheme.html#GTK-ICON-LOOKUP-USE-BUILTIN:CAPS"><code class="literal">GTK_ICON_LOOKUP_USE_BUILTIN</code></a> flag was passed
|
1742
|
+
to <a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a>, there may be
|
1743
|
+
no filename if a builtin icon is returned; in this
|
1744
|
+
case, you should use <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()"><code class="function">gtk_icon_info_get_builtin_pixbuf()</code></a>.</p>
|
1745
|
+
<div class="refsect3">
|
1746
|
+
<a name="id-1.3.7.10.11.5"></a><h4>Returns</h4>
|
1747
|
+
<p> the filename for the icon, 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>
|
1748
|
+
if <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()"><code class="function">gtk_icon_info_get_builtin_pixbuf()</code></a> should
|
1749
|
+
be used instead. The return value is owned by
|
1750
|
+
GTK+ and should not be modified or freed.</p>
|
1751
|
+
<p></p>
|
1752
|
+
</div>
|
1753
|
+
<p class="since">Since 2.4</p>
|
1754
|
+
</div>
|
1755
|
+
</div>
|
1756
|
+
<div class="refsect1">
|
1757
|
+
<a name="GtkIconTheme.signal-details"></a><h2>Signal Details</h2>
|
1758
|
+
<div class="refsect2">
|
1759
|
+
<a name="GtkIconTheme-changed"></a><h3>The <code class="literal">“changed”</code> signal</h3>
|
1760
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1761
|
+
user_function (<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme,
|
1762
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
1763
|
+
<p>Emitted when the current icon theme is switched or GTK+ detects
|
1764
|
+
that a change has occurred in the contents of the current
|
1765
|
+
icon theme.</p>
|
1766
|
+
<div class="refsect3">
|
1767
|
+
<a name="id-1.3.7.11.2.5"></a><h4>Parameters</h4>
|
1768
|
+
<div class="informaltable"><table width="100%" border="0">
|
1769
|
+
<colgroup>
|
1770
|
+
<col width="150px" class="parameters_name">
|
1771
|
+
<col class="parameters_description">
|
1772
|
+
<col width="200px" class="parameters_annotations">
|
1773
|
+
</colgroup>
|
1774
|
+
<tbody>
|
1775
|
+
<tr>
|
1776
|
+
<td class="parameter_name"><p>icon_theme</p></td>
|
1777
|
+
<td class="parameter_description"><p>the icon theme</p></td>
|
1778
|
+
<td class="parameter_annotations"> </td>
|
1779
|
+
</tr>
|
1780
|
+
<tr>
|
1781
|
+
<td class="parameter_name"><p>user_data</p></td>
|
1782
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
1783
|
+
<td class="parameter_annotations"> </td>
|
1784
|
+
</tr>
|
1785
|
+
</tbody>
|
1786
|
+
</table></div>
|
1787
|
+
</div>
|
1788
|
+
<p>Flags: Run Last</p>
|
1789
|
+
</div>
|
1790
|
+
</div>
|
1791
|
+
</div>
|
1792
|
+
<div class="footer">
|
1793
|
+
<hr>
|
1794
|
+
Generated by GTK-Doc V1.21.1</div>
|
1795
|
+
</body>
|
1796
|
+
</html>
|