gdk3 1.2.0-x86-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.
- data/Rakefile +53 -0
- data/ext/gdk3/depend +11 -0
- data/ext/gdk3/extconf.rb +127 -0
- data/ext/gdk3/gdk3.def +12 -0
- data/ext/gdk3/init.c +35 -0
- data/ext/gdk3/rbgdk.c +540 -0
- data/ext/gdk3/rbgdk3.h +71 -0
- data/ext/gdk3/rbgdk3conversions.h +118 -0
- data/ext/gdk3/rbgdk3private.h +93 -0
- data/ext/gdk3/rbgdkatom.c +122 -0
- data/ext/gdk3/rbgdkcairo.c +95 -0
- data/ext/gdk3/rbgdkcolor.c +137 -0
- data/ext/gdk3/rbgdkconst.c +33 -0
- data/ext/gdk3/rbgdkcursor.c +99 -0
- data/ext/gdk3/rbgdkdevice.c +197 -0
- data/ext/gdk3/rbgdkdisplay.c +482 -0
- data/ext/gdk3/rbgdkdisplaymanager.c +55 -0
- data/ext/gdk3/rbgdkdragcontext.c +191 -0
- data/ext/gdk3/rbgdkdraw.c +520 -0
- data/ext/gdk3/rbgdkevent.c +926 -0
- data/ext/gdk3/rbgdkgeometry.c +252 -0
- data/ext/gdk3/rbgdkkeymap.c +151 -0
- data/ext/gdk3/rbgdkkeyval.c +108 -0
- data/ext/gdk3/rbgdkpango.c +197 -0
- data/ext/gdk3/rbgdkpangorenderer.c +144 -0
- data/ext/gdk3/rbgdkpixbuf.c +176 -0
- data/ext/gdk3/rbgdkproperty.c +305 -0
- data/ext/gdk3/rbgdkrectangle.c +140 -0
- data/ext/gdk3/rbgdkrgb.c +199 -0
- data/ext/gdk3/rbgdkrgba.c +142 -0
- data/ext/gdk3/rbgdkscreen.c +443 -0
- data/ext/gdk3/rbgdkselection.c +146 -0
- data/ext/gdk3/rbgdkthreads.c +77 -0
- data/ext/gdk3/rbgdktimecoord.c +133 -0
- data/ext/gdk3/rbgdkvisual.c +251 -0
- data/ext/gdk3/rbgdkwindow.c +1044 -0
- data/ext/gdk3/rbgdkwindowattr.c +191 -0
- data/ext/gdk3/rbgdkx11.c +102 -0
- data/ext/gdk3/rbgdkx11x11window.c +66 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gdk3.so +0 -0
- data/lib/1.9/gdk3.so +0 -0
- data/lib/gdk3.rb +3 -0
- data/lib/gdk3/base.rb +50 -0
- data/lib/gdk3/deprecated.rb +152 -0
- data/vendor/local/bin/gtk-launch.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-3.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe.manifest +17 -0
- data/vendor/local/bin/gtk3-demo-application.exe +0 -0
- data/vendor/local/bin/gtk3-demo.exe +0 -0
- data/vendor/local/bin/gtk3-widget-factory.exe +0 -0
- data/vendor/local/bin/libgailutil-3-0.dll +0 -0
- data/vendor/local/bin/libgdk-3-0.dll +0 -0
- data/vendor/local/bin/libgtk-3-0.dll +0 -0
- data/vendor/local/etc/gtk-3.0/im-multipress.conf +22 -0
- data/vendor/local/etc/gtk-3.0/settings.ini +2 -0
- data/vendor/local/include/gail-3.0/libgail-util/gail-util.h +2 -0
- data/vendor/local/include/gail-3.0/libgail-util/gailmisc.h +76 -0
- data/vendor/local/include/gail-3.0/libgail-util/gailtextutil.h +85 -0
- data/vendor/local/include/gtk-3.0/gdk/gdk.h +61 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkapplaunchcontext.h +60 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkcairo.h +63 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkcolor.h +77 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkconfig.h +22 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkcursor.h +240 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdevice.h +237 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdevicemanager.h +44 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdisplay.h +141 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdisplaymanager.h +55 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdnd.h +153 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkenumtypes.h +105 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkevents.h +1277 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkkeys.h +142 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms-compat.h +2300 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms.h +2309 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkmain.h +122 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkpango.h +56 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkpixbuf.h +52 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkprivate.h +40 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkproperty.h +91 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkrectangle.h +51 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkrgba.h +62 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkscreen.h +100 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkselection.h +208 -0
- data/vendor/local/include/gtk-3.0/gdk/gdktestutils.h +58 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkthreads.h +105 -0
- data/vendor/local/include/gtk-3.0/gdk/gdktypes.h +421 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkversionmacros.h +220 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkvisual.h +123 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkwin32.h +105 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkwindow.h +884 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32cursor.h +54 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32display.h +54 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32displaymanager.h +47 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32dnd.h +47 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32keys.h +47 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32screen.h +54 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32window.h +54 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h +157 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h +80 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkfontsel.h +165 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h +100 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbbox.h +65 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbox.h +67 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhpaned.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscale.h +68 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhseparator.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhsv.h +106 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkrc.h +322 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkstyle.h +703 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktable.h +162 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h +74 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbbox.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbox.h +65 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvpaned.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscale.h +74 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvseparator.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/gtk.h +253 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaboutdialog.h +169 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaccelgroup.h +209 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaccellabel.h +105 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaccelmap.h +93 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaccessible.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaction.h +166 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkactionable.h +77 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkactiongroup.h +238 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkactivatable.h +85 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkadjustment.h +121 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkalignment.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkappchooser.h +49 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkappchooserbutton.h +89 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkappchooserdialog.h +78 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkappchooserwidget.h +103 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkapplication.h +128 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkapplicationwindow.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkarrow.h +81 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaspectframe.h +84 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkassistant.h +188 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbbox.h +90 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbin.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbindings.h +189 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkborder.h +66 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbox.h +112 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbuildable.h +173 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbuilder.h +179 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbutton.h +130 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcalendar.h +169 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellarea.h +482 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellareabox.h +87 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellareacontext.h +135 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcelleditable.h +62 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcelllayout.h +135 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderer.h +280 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendereraccel.h +84 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderercombo.h +65 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h +68 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererprogress.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspin.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspinner.h +67 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertext.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertoggle.h +82 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellview.h +95 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcheckbutton.h +80 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcheckmenuitem.h +98 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkclipboard.h +237 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorbutton.h +108 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooser.h +87 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserdialog.h +68 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserwidget.h +71 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorutils.h +48 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcombobox.h +147 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcomboboxtext.h +88 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcontainer.h +227 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcssprovider.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcsssection.h +97 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkdebug.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkdialog.h +181 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkdnd.h +212 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkdrawingarea.h +74 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkeditable.h +113 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkentry.h +304 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkentrybuffer.h +133 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkentrycompletion.h +154 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkenums.h +1041 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkeventbox.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkexpander.h +107 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilechooser.h +247 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserbutton.h +81 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserdialog.h +69 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserwidget.h +65 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilefilter.h +116 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfixed.h +91 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfontbutton.h +99 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfontchooser.h +118 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserdialog.h +67 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserwidget.h +71 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkframe.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkgradient.h +66 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkgrid.h +110 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkiconfactory.h +183 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkicontheme.h +233 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkiconview.h +266 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimage.h +168 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimagemenuitem.h +90 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimcontext.h +126 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimcontextinfo.h +44 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimcontextsimple.h +74 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimmodule.h +34 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimmulticontext.h +73 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkinfobar.h +116 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkinvisible.h +77 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklabel.h +176 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklayout.h +108 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklevelbar.h +127 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklinkbutton.h +100 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkliststore.h +133 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklockbutton.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmain.h +172 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenu.h +215 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenubar.h +90 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenubutton.h +94 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenuitem.h +128 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenushell.h +123 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenutoolbutton.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmessagedialog.h +132 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmisc.h +89 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmodules.h +58 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmountoperation.h +81 -0
- data/vendor/local/include/gtk-3.0/gtk/gtknotebook.h +250 -0
- data/vendor/local/include/gtk-3.0/gtk/gtknumerableicon.h +87 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkoffscreenwindow.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkorientable.h +58 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkoverlay.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkpagesetup.h +106 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkpaned.h +105 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkpapersize.h +140 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkplug.h +97 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprintcontext.h +69 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprintoperation.h +280 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprintoperationpreview.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprintsettings.h +248 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprogressbar.h +97 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkradioaction.h +89 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkradiobutton.h +92 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkradiomenuitem.h +91 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkradiotoolbutton.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrange.h +167 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentaction.h +78 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooser.h +203 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserdialog.h +78 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentchoosermenu.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserwidget.h +68 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentfilter.h +125 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentmanager.h +234 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscale.h +114 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscalebutton.h +99 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscrollable.h +60 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscrollbar.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscrolledwindow.h +136 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksearchentry.h +73 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkselection.h +192 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkseparator.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkseparatormenuitem.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkseparatortoolitem.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksettings.h +127 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkshow.h +37 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksizegroup.h +95 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksizerequest.h +57 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksocket.h +84 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkspinbutton.h +213 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkspinner.h +71 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstatusbar.h +101 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstatusicon.h +147 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstock.h +1029 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstylecontext.h +1014 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstyleproperties.h +117 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstyleprovider.h +126 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkswitch.h +93 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksymboliccolor.h +57 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktestutils.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextattributes.h +180 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextbuffer.h +408 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextbufferrichtext.h +126 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextchild.h +83 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextdisplay.h +101 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextiter.h +306 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextlayout.h +433 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextmark.h +103 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktexttag.h +115 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktexttagtable.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextview.h +298 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkthemingengine.h +260 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoggleaction.h +92 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktogglebutton.h +93 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoggletoolbutton.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolbar.h +135 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolbutton.h +97 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolitem.h +124 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolitemgroup.h +104 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolpalette.h +140 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolshell.h +89 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktooltip.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreednd.h +123 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreemodel.h +305 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreemodelfilter.h +144 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreemodelsort.h +84 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreeselection.h +146 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreesortable.h +123 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreestore.h +147 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreeview.h +501 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreeviewcolumn.h +224 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktypebuiltins.h +307 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktypes.h +56 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkuimanager.h +171 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkversion.h +102 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkviewport.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkvolumebutton.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkwidget.h +896 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkwidgetpath.h +132 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkwindow.h +351 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkx.h +28 -0
- data/vendor/local/lib/gailutil.def +14 -0
- data/vendor/local/lib/gdk-win32-3.0.def +514 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules.cache +40 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.la +41 -0
- data/vendor/local/lib/gtk-win32-3.0.def +3790 -0
- data/vendor/local/lib/libgailutil-3.dll.a +0 -0
- data/vendor/local/lib/libgailutil-3.la +41 -0
- data/vendor/local/lib/libgdk-3.dll.a +0 -0
- data/vendor/local/lib/libgdk-3.la +41 -0
- data/vendor/local/lib/libgtk-3.dll.a +0 -0
- data/vendor/local/lib/libgtk-3.la +41 -0
- data/vendor/local/lib/pkgconfig/gail-3.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/gdk-3.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/gdk-win32-3.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/gtk+-3.0.pc +16 -0
- data/vendor/local/lib/pkgconfig/gtk+-win32-3.0.pc +16 -0
- data/vendor/local/share/aclocal/gtk-3.0.m4 +219 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/glib-2.0/schemas/org.gtk.Demo.gschema.xml +17 -0
- data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml +13 -0
- data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml +66 -0
- data/vendor/local/share/gtk-3.0/demo/alphatest.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/apple-red.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/application.c +485 -0
- data/vendor/local/share/gtk-3.0/demo/application.ui +104 -0
- data/vendor/local/share/gtk-3.0/demo/appwindow.c +570 -0
- data/vendor/local/share/gtk-3.0/demo/assistant.c +201 -0
- data/vendor/local/share/gtk-3.0/demo/background.jpg +0 -0
- data/vendor/local/share/gtk-3.0/demo/builder.c +74 -0
- data/vendor/local/share/gtk-3.0/demo/button_box.c +127 -0
- data/vendor/local/share/gtk-3.0/demo/changedisplay.c +654 -0
- data/vendor/local/share/gtk-3.0/demo/clipboard.c +326 -0
- data/vendor/local/share/gtk-3.0/demo/colorsel.c +133 -0
- data/vendor/local/share/gtk-3.0/demo/combobox.c +473 -0
- data/vendor/local/share/gtk-3.0/demo/css_accordion.c +78 -0
- data/vendor/local/share/gtk-3.0/demo/css_accordion.css +52 -0
- data/vendor/local/share/gtk-3.0/demo/css_basics.c +122 -0
- data/vendor/local/share/gtk-3.0/demo/css_basics.css +22 -0
- data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.c +171 -0
- data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.css +136 -0
- data/vendor/local/share/gtk-3.0/demo/css_pixbufs.c +127 -0
- data/vendor/local/share/gtk-3.0/demo/css_pixbufs.css +76 -0
- data/vendor/local/share/gtk-3.0/demo/css_shadows.c +147 -0
- data/vendor/local/share/gtk-3.0/demo/css_shadows.css +44 -0
- data/vendor/local/share/gtk-3.0/demo/cssview.css +41 -0
- data/vendor/local/share/gtk-3.0/demo/demo.ui +266 -0
- data/vendor/local/share/gtk-3.0/demo/dialog.c +175 -0
- data/vendor/local/share/gtk-3.0/demo/drawingarea.c +296 -0
- data/vendor/local/share/gtk-3.0/demo/editable_cells.c +392 -0
- data/vendor/local/share/gtk-3.0/demo/entry_buffer.c +66 -0
- data/vendor/local/share/gtk-3.0/demo/entry_completion.c +98 -0
- data/vendor/local/share/gtk-3.0/demo/expander.c +59 -0
- data/vendor/local/share/gtk-3.0/demo/fancy.css +65 -0
- data/vendor/local/share/gtk-3.0/demo/floppybuddy.gif +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-applets.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-calendar.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-foot.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-fs-directory.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-fs-regular.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-gimp.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-gmush.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-gsame.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnu-keys.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gtk-logo-24.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gtk-logo-48.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gtk-logo-rgb.gif +0 -0
- data/vendor/local/share/gtk-3.0/demo/hypertext.c +291 -0
- data/vendor/local/share/gtk-3.0/demo/iconview.c +371 -0
- data/vendor/local/share/gtk-3.0/demo/iconview_edit.c +158 -0
- data/vendor/local/share/gtk-3.0/demo/images.c +472 -0
- data/vendor/local/share/gtk-3.0/demo/infobar.c +109 -0
- data/vendor/local/share/gtk-3.0/demo/links.c +90 -0
- data/vendor/local/share/gtk-3.0/demo/list_store.c +325 -0
- data/vendor/local/share/gtk-3.0/demo/menus.c +171 -0
- data/vendor/local/share/gtk-3.0/demo/menus.ui +107 -0
- data/vendor/local/share/gtk-3.0/demo/offscreen_window.c +615 -0
- data/vendor/local/share/gtk-3.0/demo/offscreen_window2.c +526 -0
- data/vendor/local/share/gtk-3.0/demo/overlay.c +181 -0
- data/vendor/local/share/gtk-3.0/demo/panes.c +205 -0
- data/vendor/local/share/gtk-3.0/demo/pickers.c +89 -0
- data/vendor/local/share/gtk-3.0/demo/pixbufs.c +261 -0
- data/vendor/local/share/gtk-3.0/demo/printing.c +199 -0
- data/vendor/local/share/gtk-3.0/demo/reset.css +68 -0
- data/vendor/local/share/gtk-3.0/demo/rotated_text.c +236 -0
- data/vendor/local/share/gtk-3.0/demo/search_entry.c +322 -0
- data/vendor/local/share/gtk-3.0/demo/sizegroup.c +164 -0
- data/vendor/local/share/gtk-3.0/demo/spinner.c +95 -0
- data/vendor/local/share/gtk-3.0/demo/stock_browser.c +535 -0
- data/vendor/local/share/gtk-3.0/demo/textscroll.c +201 -0
- data/vendor/local/share/gtk-3.0/demo/textview.c +634 -0
- data/vendor/local/share/gtk-3.0/demo/theming.ui +319 -0
- data/vendor/local/share/gtk-3.0/demo/theming_custom_css.c +66 -0
- data/vendor/local/share/gtk-3.0/demo/theming_style_classes.c +58 -0
- data/vendor/local/share/gtk-3.0/demo/toolpalette.c +794 -0
- data/vendor/local/share/gtk-3.0/demo/transparent.c +248 -0
- data/vendor/local/share/gtk-3.0/demo/tree_store.c +450 -0
- data/vendor/local/share/gtk-3.0/demo/ui_manager.c +235 -0
- data/vendor/local/share/gtk-3.0/gtkbuilder.rng +305 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailMisc.html +434 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailTextUtil.html +291 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3.devhelp2 +29 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.html +45 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.sgml +26 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/libgail-util-main.html +41 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkDevice.html +1532 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkDeviceManager.html +445 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplay.html +1482 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplayManager.html +354 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkScreen.html +1213 -0
- data/vendor/local/share/gtk-doc/html/gdk3/X_cursor.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/annotation-glossary.html +98 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-0.html +298 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-2.html +71 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-4.html +130 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-6.html +42 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-deprecated.html +158 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-full.html +2711 -0
- data/vendor/local/share/gtk-doc/html/gdk3/arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/boat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bogosity.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bottom_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bottom_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bottom_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bottom_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/box_spiral.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/center_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/circle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/clock.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/coffee_mug.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/cross_reverse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/crosshair.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/diamond_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/dot.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/dotbox.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/draft_large.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/draft_small.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/draped_box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/exchange.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/fleur.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Application-launching.html +379 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cairo-Interaction.html +453 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Colors.html +296 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cursors.html +1055 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Drag-and-Drop.html +949 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Event-Structures.html +1873 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Events.html +1839 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-General.html +952 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Keyboard-Handling.html +1180 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pango-Interaction.html +427 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pixbufs.html +206 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Points-Rectangles-and-Regions.html +199 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Properties-and-Atoms.html +598 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-RGBA-Colors.html +326 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Selections.html +622 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Testing.html +230 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Threads.html +1050 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Visuals.html +777 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Windows.html +6690 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-X-Window-System-Interaction.html +2083 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3.devhelp2 +1042 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gobbler.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gumby.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/hand1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/hand2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/heart.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/icon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/index.html +120 -0
- data/vendor/local/share/gtk-doc/html/gdk3/index.sgml +1162 -0
- data/vendor/local/share/gtk-doc/html/gdk3/iron_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/left_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/left_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/left_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/leftbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/ll_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/lr_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/man.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/middlebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/mouse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/pencil.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/pirate.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/plus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/question_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/reference.html +113 -0
- data/vendor/local/share/gtk-doc/html/gdk3/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/right_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/right_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/right_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/rightbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/rtl_logo.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sailboat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_down_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_h_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_right_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_up_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_v_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/shuttle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sizing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/spider.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/spraycan.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/star.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gdk3/target.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/tcross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/trek.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/ul_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/umbrella.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/ur_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/watch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/xterm.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/AbstractObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Actions.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Application.html +42 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ApplicationChoosing.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Builder.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ButtonWidgets.html +62 -0
- data/vendor/local/share/gtk-doc/html/gtk3/DisplayWidgets.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAboutDialog.html +1501 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAccelLabel.html +400 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAccessible.html +200 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAction.html +1580 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkActionGroup.html +1389 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkActionable.html +425 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkActivatable.html +876 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAdjustment.html +845 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAlignment.html +411 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooser.html +212 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserButton.html +518 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserDialog.html +297 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserWidget.html +712 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkApplication.html +1877 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkApplicationWindow.html +788 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkArrow.html +208 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAspectFrame.html +241 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAssistant.html +1389 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkBin.html +132 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkBox.html +683 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkBuildable.html +677 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkBuilder.html +1354 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkButton.html +1292 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkButtonBox.html +432 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCalendar.html +1031 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellArea.html +3227 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaBox.html +369 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaContext.html +675 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellEditable.html +286 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellLayout.html +750 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRenderer.html +1596 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererAccel.html +275 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererCombo.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererPixbuf.html +203 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererProgress.html +202 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpin.html +159 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpinner.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererText.html +653 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererToggle.html +372 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellView.html +729 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckButton.html +198 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckMenuItem.html +462 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorButton.html +607 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooser.html +370 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserDialog.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserWidget.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelection.html +889 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelectionDialog.html +200 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBox.html +1893 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBoxText.html +519 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkContainer.html +1692 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCssProvider.html +2108 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkDialog.html +1288 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkDrawingArea.html +234 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEditable.html +723 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEntry.html +3957 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryBuffer.html +627 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryCompletion.html +1331 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEventBox.html +305 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkExpander.html +851 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooser.html +3403 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserButton.html +486 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserDialog.html +396 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserWidget.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileFilter.html +595 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFixed.html +253 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontButton.html +609 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooser.html +605 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserDialog.html +137 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserWidget.html +125 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelection.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelectionDialog.html +400 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFrame.html +464 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkGrid.html +701 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHBox.html +147 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHButtonBox.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHPaned.html +115 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHSV.html +445 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHScale.html +172 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHScrollbar.html +128 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHSeparator.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHandleBox.html +514 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContext.html +1027 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContextSimple.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIMMulticontext.html +183 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIconTheme.html +1755 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIconView.html +2896 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkImage.html +1349 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkImageMenuItem.html +486 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkInfoBar.html +764 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkInvisible.html +205 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLabel.html +2208 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLayout.html +518 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLevelBar.html +782 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLinkButton.html +369 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkListStore.html +1159 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLockButton.html +259 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenu.html +1527 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuBar.html +369 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuButton.html +535 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuItem.html +940 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuShell.html +904 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuToolButton.html +387 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMessageDialog.html +814 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMisc.html +296 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkNotebook.html +2219 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkNumerableIcon.html +557 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkOffscreenWindow.html +187 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkOverlay.html +229 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetup.html +1031 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetupUnixDialog.html +254 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPaned.html +783 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPaperSize.html +905 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPlug.html +388 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintContext.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintJob.html +1133 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintSettings.html +2948 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintUnixDialog.html +919 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrinter.html +1003 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkProgressBar.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioAction.html +451 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioButton.html +586 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioMenuItem.html +436 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioToolButton.html +316 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRange.html +1365 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentAction.html +279 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooser.html +1415 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserDialog.html +247 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserMenu.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserWidget.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentFilter.html +685 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentManager.html +1641 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScale.html +726 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScaleButton.html +546 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollable.html +452 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollbar.html +194 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScrolledWindow.html +1106 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSearchEntry.html +118 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparator.html +114 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorMenuItem.html +107 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorToolItem.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSettings.html +1357 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSizeGroup.html +487 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSocket.html +360 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinButton.html +1380 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinner.html +173 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusIcon.html +1743 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusbar.html +441 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStyle.html +2534 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleContext.html +4505 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleProvider.html +324 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSwitch.html +248 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTable.html +897 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTearoffMenuItem.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextBuffer.html +3895 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextIter.html +3183 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextMark.html +342 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTag.html +1124 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTagTable.html +410 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextView.html +3390 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkThemingEngine.html +1197 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleAction.html +335 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleButton.html +518 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleToolButton.html +268 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolButton.html +677 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItem.html +1139 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItemGroup.html +755 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolPalette.html +1037 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolShell.html +425 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolbar.html +946 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTooltip.html +432 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModel.html +2814 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelFilter.html +742 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelSort.html +591 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSelection.html +891 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSortable.html +481 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeStore.html +1108 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeView.html +4864 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeViewColumn.html +2067 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkUIManager.html +1467 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVBox.html +162 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVButtonBox.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVPaned.html +115 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVScale.html +176 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVScrollbar.html +132 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVSeparator.html +120 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkViewport.html +387 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVolumeButton.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkWidget.html +12811 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkWindow.html +4647 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkWindowGroup.html +250 -0
- data/vendor/local/share/gtk-doc/html/gtk3/LayoutContainers.html +91 -0
- data/vendor/local/share/gtk-doc/html/gtk3/MenusAndCombos.html +93 -0
- data/vendor/local/share/gtk-doc/html/gtk3/MiscObjects.html +69 -0
- data/vendor/local/share/gtk-doc/html/gtk3/NumericEntry.html +60 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Ornaments.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk3/PlugSocket.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Printing.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk3/RecentDocuments.html +51 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ScrollingWidgets.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtk3/SelectorWidgets.html +86 -0
- data/vendor/local/share/gtk-doc/html/gtk3/TextWidget.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk3/TextWidgetObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk3/TreeWidget.html +556 -0
- data/vendor/local/share/gtk-doc/html/gtk3/TreeWidgetObjects.html +115 -0
- data/vendor/local/share/gtk-doc/html/gtk3/WindowWidgets.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtk3/aboutdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/accel-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/annotation-glossary.html +110 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-0.html +1901 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-2.html +378 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-4.html +322 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-6.html +332 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-deprecated.html +1006 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-full.html +22583 -0
- data/vendor/local/share/gtk-doc/html/gtk3/appchooserbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/appchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/application-exit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/arrows.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/assistant.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/background.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-gnome.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-osx.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-xfce.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/border1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/border2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/border3.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/box-expand.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/box-packing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch02.html +252 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch03.html +178 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch24s02.html +1407 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch26s02.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch28s02.html +117 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch28s03.html +70 -0
- data/vendor/local/share/gtk-doc/html/gtk3/chap-drawing-model.html +461 -0
- data/vendor/local/share/gtk-doc/html/gtk3/check-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/checklist-gdkeventexpose-region.html +82 -0
- data/vendor/local/share/gtk-doc/html/gtk3/checklist-modifiers.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk3/checklist-named-icons.html +40 -0
- data/vendor/local/share/gtk-doc/html/gtk3/checks.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/color-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/colorchooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/colorsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/combo-box-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/combo-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-information.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-password.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-question.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-new.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-open.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-print-preview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-print.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-properties.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-revert-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-revert-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-save-as.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-save.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/down-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/down-end.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/down-start.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/drive-harddisk.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ease-in-out.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ease-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ease-out.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ease.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-clear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-copy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-cut.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-delete.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-find-replace.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-find.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-paste.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-select-all.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/expanders.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/extensions.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/figure-hierarchical-drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/figure-windowed-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/file-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/filechooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/focus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/folder.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/font-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/fontchooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/fontsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-justify-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-justify-fill.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-justify-left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-justify-right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-text-bold.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-text-italic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-text-strikethrough.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-text-underline.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/frame-gap.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/frame.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/frames.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/glossary.html +312 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-bottom.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-first-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-first-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-jump-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-jump-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-last-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-last-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-next-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-next-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-previous-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-previous-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-top.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gradient1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gradient2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gradient3.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gradient4.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/grid-packing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-apply.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-broadway.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-building.html +459 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-cancel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-caps-lock-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-color-picker.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-compiling.html +161 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-connect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-convert.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-disconnect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd-multiple.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-edit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-font.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-getting-started.html +1095 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-index.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-launch.html +72 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-2-to-3.html +688 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkGrid.html +102 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-bonus-points.html +136 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-checklist.html +221 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-css.html +437 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parser-extensions.html +69 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parsing.html +82 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-checklist.html +164 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-smclient-GtkApplication.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-theme-GtkStyleContext-engines.html +133 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-unique-GtkApplication.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-no.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-ok.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-osx.html +54 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-page-setup.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-preferences.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-query-immodules-3.0.html +110 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-question-index.html +1395 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-resources.html +146 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-running.html +427 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-select-color.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-update-icon-cache.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-windows.html +93 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-x11.html +122 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-yes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk.html +187 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Accelerator-Maps.html +674 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Bindings.html +920 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Clipboards.html +1622 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Drag-and-Drop.html +1483 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Feature-Test-Macros.html +346 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Filesystem-utilities.html +368 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-General.html +1325 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkGradient.html +346 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkStyleProperties.html +590 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkSymbolicColor.html +420 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkTreeView-drag-and-drop.html +452 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkWidgetPath.html +1361 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-High-level-Printing-API.html +2748 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Keyboard-Accelerators.html +1143 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Orientable.html +173 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Resource-Files.html +2004 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Selections.html +1844 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Standard-Enumerations.html +1753 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Stock-Items.html +1587 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Testing.html +646 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Themeable-Stock-Images.html +1730 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3.devhelp2 +6619 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtkbase.html +76 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtkobjects.html +670 -0
- data/vendor/local/share/gtk-doc/html/gtk3/handles.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/hello-world.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/help-about.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/help-contents.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/icon-view.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/image-missing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/image.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/index.html +903 -0
- data/vendor/local/share/gtk-doc/html/gtk3/index.sgml +8183 -0
- data/vendor/local/share/gtk-doc/html/gtk3/label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-btlr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-btrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-lrbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-lrtb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-rlbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-rltb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-tblr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-tbrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/left-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/left-end.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/left-start.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/levelbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/linear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/link-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/list-add.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/list-and-tree.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/list-remove.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lock-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-locked.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-sorry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-unlocked.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lockbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-floppy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-optical.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-playback-pause.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-playback-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-record.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/menu-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/menubar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/messagedialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/migrating.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtk3/multiline-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/network-idle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/notebook.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/numerableicon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/numerableicon2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/options.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/pagesetupdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/panes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printer-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printer-info.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printer-paused.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printer-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/process-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/progressbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/pt06.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk3/radio-group.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/recentchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/right-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/right-end.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/right-start.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/scales.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/scrolledwindow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/search-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/separator.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/slices.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/sliders.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/spinbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/spinner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/statusbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gtk3/switch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/system-run.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/text-x-generic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/theming.html +75 -0
- data/vendor/local/share/gtk-doc/html/gtk3/toggle-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/toolbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/toolpalette.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/tools-check-spelling.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/tree-view-coordinates.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/up-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/up-end.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/up-start.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-fullscreen.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-refresh.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-restore.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-sort-ascending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-sort-descending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/volumebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/widget-hvalign.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/window-close.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/window-default.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/window.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/zoom-fit-best.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/zoom-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/zoom-original.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/zoom-out.png +0 -0
- data/vendor/local/share/license/gtk+/AUTHORS +65 -0
- data/vendor/local/share/license/gtk+/COPYING +481 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/en/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/en/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/man/man1/gtk-launch.1 +53 -0
- data/vendor/local/share/man/man1/gtk-query-immodules-3.0.1 +75 -0
- data/vendor/local/share/man/man1/gtk-update-icon-cache.1 +88 -0
- data/vendor/local/share/themes/Default/gtk-3.0/gtk-keys.css +3 -0
- data/vendor/local/share/themes/Emacs/gtk-3.0/gtk-keys.css +121 -0
- metadata +1449 -0
@@ -0,0 +1,1692 @@
|
|
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>GtkContainer</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
|
8
|
+
<link rel="up" href="AbstractObjects.html" title="Abstract Base Classes">
|
9
|
+
<link rel="prev" href="GtkWidget.html" title="GtkWidget">
|
10
|
+
<link rel="next" href="GtkBin.html" title="GtkBin">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.18.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="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="GtkWidget.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="AbstractObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">GTK+ 3 Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="GtkBin.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a href="#GtkContainer.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkContainer.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkContainer.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkContainer.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
31
|
+
|
|
32
|
+
<a href="#GtkContainer.properties" class="shortcut">Properties</a>
|
33
|
+
|
|
34
|
+
<a href="#GtkContainer.signals" class="shortcut">Signals</a>
|
35
|
+
</td></tr>
|
36
|
+
</table>
|
37
|
+
<div class="refentry">
|
38
|
+
<a name="GtkContainer"></a><div class="titlepage"></div>
|
39
|
+
<div class="refnamediv"><table width="100%"><tr>
|
40
|
+
<td valign="top">
|
41
|
+
<h2><span class="refentrytitle"><a name="GtkContainer.top_of_page"></a>GtkContainer</span></h2>
|
42
|
+
<p>GtkContainer — Base class for widgets which contain other widgets</p>
|
43
|
+
</td>
|
44
|
+
<td valign="top" align="right"></td>
|
45
|
+
</tr></table></div>
|
46
|
+
<div class="refsynopsisdiv">
|
47
|
+
<a name="GtkContainer.synopsis"></a><h2>Synopsis</h2>
|
48
|
+
<pre class="synopsis">
|
49
|
+
#include <gtk/gtk.h>
|
50
|
+
|
51
|
+
struct <a class="link" href="GtkContainer.html#GtkContainer-struct" title="struct GtkContainer">GtkContainer</a>;
|
52
|
+
#define <a class="link" href="GtkContainer.html#GTK-IS-RESIZE-CONTAINER:CAPS" title="GTK_IS_RESIZE_CONTAINER()">GTK_IS_RESIZE_CONTAINER</a> (widget)
|
53
|
+
#define <a class="link" href="GtkContainer.html#GTK-CONTAINER-WARN-INVALID-CHILD-PROPERTY-ID:CAPS" title="GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID()">GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID</a>(object,
|
54
|
+
property_id,
|
55
|
+
pspec)
|
56
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-add" title="gtk_container_add ()">gtk_container_add</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
57
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
|
58
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-remove" title="gtk_container_remove ()">gtk_container_remove</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
59
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
|
60
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-add-with-properties" title="gtk_container_add_with_properties ()">gtk_container_add_with_properties</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
61
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
62
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
63
|
+
<em class="parameter"><code>...</code></em>);
|
64
|
+
<a class="link" href="gtk3-Standard-Enumerations.html#GtkResizeMode" title="enum GtkResizeMode"><span class="returnvalue">GtkResizeMode</span></a> <a class="link" href="GtkContainer.html#gtk-container-get-resize-mode" title="gtk_container_get_resize_mode ()">gtk_container_get_resize_mode</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
65
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-set-resize-mode" title="gtk_container_set_resize_mode ()">gtk_container_set_resize_mode</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
66
|
+
<em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkResizeMode" title="enum GtkResizeMode"><span class="type">GtkResizeMode</span></a> resize_mode</code></em>);
|
67
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-check-resize" title="gtk_container_check_resize ()">gtk_container_check_resize</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
68
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-foreach" title="gtk_container_foreach ()">gtk_container_foreach</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
69
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html#GtkCallback" title="GtkCallback ()"><span class="type">GtkCallback</span></a> callback</code></em>,
|
70
|
+
<em class="parameter"><code><span class="type">gpointer</span> callback_data</code></em>);
|
71
|
+
<span class="returnvalue">GList</span> * <a class="link" href="GtkContainer.html#gtk-container-get-children" title="gtk_container_get_children ()">gtk_container_get_children</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
72
|
+
<a class="link" href="gtk3-GtkWidgetPath.html#GtkWidgetPath" title="GtkWidgetPath"><span class="returnvalue">GtkWidgetPath</span></a> * <a class="link" href="GtkContainer.html#gtk-container-get-path-for-child" title="gtk_container_get_path_for_child ()">gtk_container_get_path_for_child</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
73
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);
|
74
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-set-reallocate-redraws" title="gtk_container_set_reallocate_redraws ()">gtk_container_set_reallocate_redraws</a>
|
75
|
+
(<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
76
|
+
<em class="parameter"><code><span class="type">gboolean</span> needs_redraws</code></em>);
|
77
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkContainer.html#gtk-container-get-focus-child" title="gtk_container_get_focus_child ()">gtk_container_get_focus_child</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
78
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-set-focus-child" title="gtk_container_set_focus_child ()">gtk_container_set_focus_child</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
79
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);
|
80
|
+
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkContainer.html#gtk-container-get-focus-vadjustment" title="gtk_container_get_focus_vadjustment ()">gtk_container_get_focus_vadjustment</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
81
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-set-focus-vadjustment" title="gtk_container_set_focus_vadjustment ()">gtk_container_set_focus_vadjustment</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
82
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);
|
83
|
+
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkContainer.html#gtk-container-get-focus-hadjustment" title="gtk_container_get_focus_hadjustment ()">gtk_container_get_focus_hadjustment</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
84
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-set-focus-hadjustment" title="gtk_container_set_focus_hadjustment ()">gtk_container_set_focus_hadjustment</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
85
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);
|
86
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-resize-children" title="gtk_container_resize_children ()">gtk_container_resize_children</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
87
|
+
<span class="returnvalue">GType</span> <a class="link" href="GtkContainer.html#gtk-container-child-type" title="gtk_container_child_type ()">gtk_container_child_type</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
88
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-child-get" title="gtk_container_child_get ()">gtk_container_child_get</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
89
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
90
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
91
|
+
<em class="parameter"><code>...</code></em>);
|
92
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-child-set" title="gtk_container_child_set ()">gtk_container_child_set</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
93
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
94
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
95
|
+
<em class="parameter"><code>...</code></em>);
|
96
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-child-get-property" title="gtk_container_child_get_property ()">gtk_container_child_get_property</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
97
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
98
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
|
99
|
+
<em class="parameter"><code><span class="type">GValue</span> *value</code></em>);
|
100
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-child-set-property" title="gtk_container_child_set_property ()">gtk_container_child_set_property</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
101
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
102
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
|
103
|
+
<em class="parameter"><code>const <span class="type">GValue</span> *value</code></em>);
|
104
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-child-get-valist" title="gtk_container_child_get_valist ()">gtk_container_child_get_valist</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
105
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
106
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
|
107
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
|
108
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-child-set-valist" title="gtk_container_child_set_valist ()">gtk_container_child_set_valist</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
109
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
110
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
|
111
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
|
112
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-child-notify" title="gtk_container_child_notify ()">gtk_container_child_notify</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
113
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
114
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *child_property</code></em>);
|
115
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-forall" title="gtk_container_forall ()">gtk_container_forall</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
116
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html#GtkCallback" title="GtkCallback ()"><span class="type">GtkCallback</span></a> callback</code></em>,
|
117
|
+
<em class="parameter"><code><span class="type">gpointer</span> callback_data</code></em>);
|
118
|
+
<span class="returnvalue">guint</span> <a class="link" href="GtkContainer.html#gtk-container-get-border-width" title="gtk_container_get_border_width ()">gtk_container_get_border_width</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
119
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-set-border-width" title="gtk_container_set_border_width ()">gtk_container_set_border_width</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
120
|
+
<em class="parameter"><code><span class="type">guint</span> border_width</code></em>);
|
121
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-propagate-draw" title="gtk_container_propagate_draw ()">gtk_container_propagate_draw</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
122
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
123
|
+
<em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>);
|
124
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkContainer.html#gtk-container-get-focus-chain" title="gtk_container_get_focus_chain ()">gtk_container_get_focus_chain</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
125
|
+
<em class="parameter"><code><span class="type">GList</span> **focusable_widgets</code></em>);
|
126
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-set-focus-chain" title="gtk_container_set_focus_chain ()">gtk_container_set_focus_chain</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
127
|
+
<em class="parameter"><code><span class="type">GList</span> *focusable_widgets</code></em>);
|
128
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-unset-focus-chain" title="gtk_container_unset_focus_chain ()">gtk_container_unset_focus_chain</a> (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);
|
129
|
+
<span class="returnvalue">GParamSpec</span> * <a class="link" href="GtkContainer.html#gtk-container-class-find-child-property" title="gtk_container_class_find_child_property ()">gtk_container_class_find_child_property</a>
|
130
|
+
(<em class="parameter"><code><span class="type">GObjectClass</span> *cclass</code></em>,
|
131
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);
|
132
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-class-install-child-property" title="gtk_container_class_install_child_property ()">gtk_container_class_install_child_property</a>
|
133
|
+
(<em class="parameter"><code><span class="type">GtkContainerClass</span> *cclass</code></em>,
|
134
|
+
<em class="parameter"><code><span class="type">guint</span> property_id</code></em>,
|
135
|
+
<em class="parameter"><code><span class="type">GParamSpec</span> *pspec</code></em>);
|
136
|
+
<span class="returnvalue">GParamSpec</span> ** <a class="link" href="GtkContainer.html#gtk-container-class-list-child-properties" title="gtk_container_class_list_child_properties ()">gtk_container_class_list_child_properties</a>
|
137
|
+
(<em class="parameter"><code><span class="type">GObjectClass</span> *cclass</code></em>,
|
138
|
+
<em class="parameter"><code><span class="type">guint</span> *n_properties</code></em>);
|
139
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkContainer.html#gtk-container-class-handle-border-width" title="gtk_container_class_handle_border_width ()">gtk_container_class_handle_border_width</a>
|
140
|
+
(<em class="parameter"><code><span class="type">GtkContainerClass</span> *klass</code></em>);
|
141
|
+
</pre>
|
142
|
+
</div>
|
143
|
+
<div class="refsect1">
|
144
|
+
<a name="GtkContainer.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
145
|
+
<pre class="synopsis">
|
146
|
+
GObject
|
147
|
+
+----GInitiallyUnowned
|
148
|
+
+----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
|
149
|
+
+----GtkContainer
|
150
|
+
+----<a class="link" href="GtkBin.html" title="GtkBin">GtkBin</a>
|
151
|
+
+----<a class="link" href="GtkBox.html" title="GtkBox">GtkBox</a>
|
152
|
+
+----<a class="link" href="GtkFixed.html" title="GtkFixed">GtkFixed</a>
|
153
|
+
+----<a class="link" href="GtkGrid.html" title="GtkGrid">GtkGrid</a>
|
154
|
+
+----<a class="link" href="GtkPaned.html" title="GtkPaned">GtkPaned</a>
|
155
|
+
+----<a class="link" href="GtkIconView.html" title="GtkIconView">GtkIconView</a>
|
156
|
+
+----<a class="link" href="GtkLayout.html" title="GtkLayout">GtkLayout</a>
|
157
|
+
+----<a class="link" href="GtkMenuShell.html" title="GtkMenuShell">GtkMenuShell</a>
|
158
|
+
+----<a class="link" href="GtkNotebook.html" title="GtkNotebook">GtkNotebook</a>
|
159
|
+
+----<a class="link" href="GtkSocket.html" title="GtkSocket">GtkSocket</a>
|
160
|
+
+----<a class="link" href="GtkTable.html" title="GtkTable">GtkTable</a>
|
161
|
+
+----<a class="link" href="GtkTextView.html" title="GtkTextView">GtkTextView</a>
|
162
|
+
+----<a class="link" href="GtkToolbar.html" title="GtkToolbar">GtkToolbar</a>
|
163
|
+
+----<a class="link" href="GtkToolItemGroup.html" title="GtkToolItemGroup">GtkToolItemGroup</a>
|
164
|
+
+----<a class="link" href="GtkToolPalette.html" title="GtkToolPalette">GtkToolPalette</a>
|
165
|
+
+----<a class="link" href="GtkTreeView.html" title="GtkTreeView">GtkTreeView</a>
|
166
|
+
</pre>
|
167
|
+
</div>
|
168
|
+
<div class="refsect1">
|
169
|
+
<a name="GtkContainer.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
170
|
+
<p>
|
171
|
+
GtkContainer implements
|
172
|
+
AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
173
|
+
</div>
|
174
|
+
<div class="refsect1">
|
175
|
+
<a name="GtkContainer.properties"></a><h2>Properties</h2>
|
176
|
+
<pre class="synopsis">
|
177
|
+
"<a class="link" href="GtkContainer.html#GtkContainer--border-width" title='The "border-width" property'>border-width</a>" <span class="type">guint</span> : Read / Write
|
178
|
+
"<a class="link" href="GtkContainer.html#GtkContainer--child" title='The "child" property'>child</a>" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Write
|
179
|
+
"<a class="link" href="GtkContainer.html#GtkContainer--resize-mode" title='The "resize-mode" property'>resize-mode</a>" <a class="link" href="gtk3-Standard-Enumerations.html#GtkResizeMode" title="enum GtkResizeMode"><span class="type">GtkResizeMode</span></a> : Read / Write
|
180
|
+
</pre>
|
181
|
+
</div>
|
182
|
+
<div class="refsect1">
|
183
|
+
<a name="GtkContainer.signals"></a><h2>Signals</h2>
|
184
|
+
<pre class="synopsis">
|
185
|
+
"<a class="link" href="GtkContainer.html#GtkContainer-add" title='The "add" signal'>add</a>" : <code class="literal">Run First</code>
|
186
|
+
"<a class="link" href="GtkContainer.html#GtkContainer-check-resize" title='The "check-resize" signal'>check-resize</a>" : <code class="literal">Run Last</code>
|
187
|
+
"<a class="link" href="GtkContainer.html#GtkContainer-remove" title='The "remove" signal'>remove</a>" : <code class="literal">Run First</code>
|
188
|
+
"<a class="link" href="GtkContainer.html#GtkContainer-set-focus-child" title='The "set-focus-child" signal'>set-focus-child</a>" : <code class="literal">Run First</code>
|
189
|
+
</pre>
|
190
|
+
</div>
|
191
|
+
<div class="refsect1">
|
192
|
+
<a name="GtkContainer.description"></a><h2>Description</h2>
|
193
|
+
<p>
|
194
|
+
A GTK+ user interface is constructed by nesting widgets inside widgets.
|
195
|
+
Container widgets are the inner nodes in the resulting tree of widgets:
|
196
|
+
they contain other widgets. So, for example, you might have a <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a>
|
197
|
+
containing a <a class="link" href="GtkFrame.html" title="GtkFrame"><span class="type">GtkFrame</span></a> containing a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>. If you wanted an image instead
|
198
|
+
of a textual label inside the frame, you might replace the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget
|
199
|
+
with a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget.
|
200
|
+
</p>
|
201
|
+
<p>
|
202
|
+
There are two major kinds of container widgets in GTK+. Both are subclasses
|
203
|
+
of the abstract GtkContainer base class.
|
204
|
+
</p>
|
205
|
+
<p>
|
206
|
+
The first type of container widget has a single child widget and derives
|
207
|
+
from <a class="link" href="GtkBin.html" title="GtkBin"><span class="type">GtkBin</span></a>. These containers are <span class="emphasis"><em>decorators</em></span>, which
|
208
|
+
add some kind of functionality to the child. For example, a <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> makes
|
209
|
+
its child into a clickable button; a <a class="link" href="GtkFrame.html" title="GtkFrame"><span class="type">GtkFrame</span></a> draws a frame around its child
|
210
|
+
and a <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a> places its child widget inside a top-level window.
|
211
|
+
</p>
|
212
|
+
<p>
|
213
|
+
The second type of container can have more than one child; its purpose is to
|
214
|
+
manage <span class="emphasis"><em>layout</em></span>. This means that these containers assign
|
215
|
+
sizes and positions to their children. For example, a <a class="link" href="GtkHBox.html" title="GtkHBox"><span class="type">GtkHBox</span></a> arranges its
|
216
|
+
children in a horizontal row, and a <a class="link" href="GtkGrid.html" title="GtkGrid"><span class="type">GtkGrid</span></a> arranges the widgets it contains
|
217
|
+
in a two-dimensional grid.
|
218
|
+
</p>
|
219
|
+
<p>
|
220
|
+
</p>
|
221
|
+
<div class="refsect2">
|
222
|
+
<a name="container-geometry-management"></a><h3>Height for width geometry management</h3>
|
223
|
+
<p>
|
224
|
+
GTK+ uses a height-for-width (and width-for-height) geometry management system.
|
225
|
+
Height-for-width means that a widget can change how much vertical space it needs,
|
226
|
+
depending on the amount of horizontal space that it is given (and similar for
|
227
|
+
width-for-height).
|
228
|
+
</p>
|
229
|
+
<p>
|
230
|
+
There are some things to keep in mind when implementing container widgets
|
231
|
+
that make use of GTK+'s height for width geometry management system. First,
|
232
|
+
it's important to note that a container must prioritize one of its
|
233
|
+
dimensions, that is to say that a widget or container can only have a
|
234
|
+
<a class="link" href="GtkWidget.html#GtkSizeRequestMode" title="enum GtkSizeRequestMode"><span class="type">GtkSizeRequestMode</span></a> that is <a class="link" href="GtkWidget.html#GTK-SIZE-REQUEST-HEIGHT-FOR-WIDTH:CAPS"><code class="literal">GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH</code></a> or
|
235
|
+
<a class="link" href="GtkWidget.html#GTK-SIZE-REQUEST-WIDTH-FOR-HEIGHT:CAPS"><code class="literal">GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT</code></a>. However, every widget and container
|
236
|
+
must be able to respond to the APIs for both dimensions, i.e. even if a
|
237
|
+
widget has a request mode that is height-for-width, it is possible that
|
238
|
+
its parent will request its sizes using the width-for-height APIs.
|
239
|
+
</p>
|
240
|
+
<p>
|
241
|
+
To ensure that everything works properly, here are some guidelines to follow
|
242
|
+
when implementing height-for-width (or width-for-height) containers.
|
243
|
+
</p>
|
244
|
+
<p>
|
245
|
+
Each request mode involves 2 virtual methods. Height-for-width apis run
|
246
|
+
through <a class="link" href="GtkWidget.html#gtk-widget-get-preferred-width" title="gtk_widget_get_preferred_width ()"><code class="function">gtk_widget_get_preferred_width()</code></a> and then through <a class="link" href="GtkWidget.html#gtk-widget-get-preferred-height-for-width" title="gtk_widget_get_preferred_height_for_width ()"><code class="function">gtk_widget_get_preferred_height_for_width()</code></a>.
|
247
|
+
When handling requests in the opposite <a class="link" href="GtkWidget.html#GtkSizeRequestMode" title="enum GtkSizeRequestMode"><span class="type">GtkSizeRequestMode</span></a> it is important that
|
248
|
+
every widget request at least enough space to display all of its content at all times.
|
249
|
+
</p>
|
250
|
+
<p>
|
251
|
+
When <a class="link" href="GtkWidget.html#gtk-widget-get-preferred-height" title="gtk_widget_get_preferred_height ()"><code class="function">gtk_widget_get_preferred_height()</code></a> is called on a container that is height-for-width,
|
252
|
+
the container must return the height for its minimum width. This is easily achieved by
|
253
|
+
simply calling the reverse apis implemented for itself as follows:
|
254
|
+
</p>
|
255
|
+
<p>
|
256
|
+
</p>
|
257
|
+
<pre class="programlisting">
|
258
|
+
static void
|
259
|
+
foo_container_get_preferred_height (GtkWidget *widget, gint *min_height, gint *nat_height)
|
260
|
+
{
|
261
|
+
if (i_am_in_height_for_width_mode)
|
262
|
+
{
|
263
|
+
gint min_width;
|
264
|
+
|
265
|
+
GTK_WIDGET_GET_CLASS (widget)->get_preferred_width (widget, &min_width, NULL);
|
266
|
+
GTK_WIDGET_GET_CLASS (widget)->get_preferred_height_for_width (widget, min_width,
|
267
|
+
min_height, nat_height);
|
268
|
+
}
|
269
|
+
else
|
270
|
+
{
|
271
|
+
... many containers support both request modes, execute the real width-for-height
|
272
|
+
request here by returning the collective heights of all widgets that are
|
273
|
+
stacked vertically (or whatever is appropriate for this container) ...
|
274
|
+
}
|
275
|
+
}
|
276
|
+
</pre>
|
277
|
+
<p>
|
278
|
+
</p>
|
279
|
+
<p>
|
280
|
+
Similarly, when <a class="link" href="GtkWidget.html#gtk-widget-get-preferred-width-for-height" title="gtk_widget_get_preferred_width_for_height ()"><code class="function">gtk_widget_get_preferred_width_for_height()</code></a> is called for a container or widget
|
281
|
+
that is height-for-width, it then only needs to return the base minimum width like so:
|
282
|
+
</p>
|
283
|
+
<p>
|
284
|
+
</p>
|
285
|
+
<pre class="programlisting">
|
286
|
+
static void
|
287
|
+
foo_container_get_preferred_width_for_height (GtkWidget *widget, gint for_height,
|
288
|
+
gint *min_width, gint *nat_width)
|
289
|
+
{
|
290
|
+
if (i_am_in_height_for_width_mode)
|
291
|
+
{
|
292
|
+
GTK_WIDGET_GET_CLASS (widget)->get_preferred_width (widget, min_width, nat_width);
|
293
|
+
}
|
294
|
+
else
|
295
|
+
{
|
296
|
+
... execute the real width-for-height request here based on the required width
|
297
|
+
of the children collectively if the container were to be allocated the said height ...
|
298
|
+
}
|
299
|
+
}
|
300
|
+
</pre>
|
301
|
+
<p>
|
302
|
+
</p>
|
303
|
+
<p>
|
304
|
+
Height for width requests are generally implemented in terms of a virtual allocation
|
305
|
+
of widgets in the input orientation. Assuming an height-for-width request mode, a container
|
306
|
+
would implement the <code class="function"><code class="function">get_preferred_height_for_width()</code></code> virtual function by first calling
|
307
|
+
<a class="link" href="GtkWidget.html#gtk-widget-get-preferred-width" title="gtk_widget_get_preferred_width ()"><code class="function">gtk_widget_get_preferred_width()</code></a> for each of its children.
|
308
|
+
</p>
|
309
|
+
<p>
|
310
|
+
For each potential group of children that are lined up horizontally, the values returned by
|
311
|
+
<a class="link" href="GtkWidget.html#gtk-widget-get-preferred-width" title="gtk_widget_get_preferred_width ()"><code class="function">gtk_widget_get_preferred_width()</code></a> should be collected in an array of <a class="link" href="GtkWidget.html#GtkRequestedSize" title="struct GtkRequestedSize"><span class="type">GtkRequestedSize</span></a> structures.
|
312
|
+
Any child spacing should be removed from the input <em class="parameter"><code>for_width</code></em> and then the collective size should be
|
313
|
+
allocated using the <a class="link" href="GtkWidget.html#gtk-distribute-natural-allocation" title="gtk_distribute_natural_allocation ()"><code class="function">gtk_distribute_natural_allocation()</code></a> convenience function.
|
314
|
+
</p>
|
315
|
+
<p>
|
316
|
+
The container will then move on to request the preferred height for each child by using
|
317
|
+
<a class="link" href="GtkWidget.html#gtk-widget-get-preferred-height-for-width" title="gtk_widget_get_preferred_height_for_width ()"><code class="function">gtk_widget_get_preferred_height_for_width()</code></a> and using the sizes stored in the <a class="link" href="GtkWidget.html#GtkRequestedSize" title="struct GtkRequestedSize"><span class="type">GtkRequestedSize</span></a> array.
|
318
|
+
</p>
|
319
|
+
<p>
|
320
|
+
To allocate a height-for-width container, it's again important
|
321
|
+
to consider that a container must prioritize one dimension over the other. So if
|
322
|
+
a container is a height-for-width container it must first allocate all widgets horizontally
|
323
|
+
using a <a class="link" href="GtkWidget.html#GtkRequestedSize" title="struct GtkRequestedSize"><span class="type">GtkRequestedSize</span></a> array and <a class="link" href="GtkWidget.html#gtk-distribute-natural-allocation" title="gtk_distribute_natural_allocation ()"><code class="function">gtk_distribute_natural_allocation()</code></a> and then add any
|
324
|
+
extra space (if and where appropriate) for the widget to expand.
|
325
|
+
</p>
|
326
|
+
<p>
|
327
|
+
After adding all the expand space, the container assumes it was allocated sufficient
|
328
|
+
height to fit all of its content. At this time, the container must use the total horizontal sizes
|
329
|
+
of each widget to request the height-for-width of each of its children and store the requests in a
|
330
|
+
<a class="link" href="GtkWidget.html#GtkRequestedSize" title="struct GtkRequestedSize"><span class="type">GtkRequestedSize</span></a> array for any widgets that stack vertically (for tabular containers this can
|
331
|
+
be generalized into the heights and widths of rows and columns).
|
332
|
+
The vertical space must then again be distributed using <a class="link" href="GtkWidget.html#gtk-distribute-natural-allocation" title="gtk_distribute_natural_allocation ()"><code class="function">gtk_distribute_natural_allocation()</code></a>
|
333
|
+
while this time considering the allocated height of the widget minus any vertical spacing
|
334
|
+
that the container adds. Then vertical expand space should be added where appropriate and available
|
335
|
+
and the container should go on to actually allocating the child widgets.
|
336
|
+
</p>
|
337
|
+
<p>
|
338
|
+
See <a class="link" href="GtkWidget.html#geometry-management" title="Height-for-width Geometry Management">GtkWidget's geometry management section</a>
|
339
|
+
to learn more about implementing height-for-width geometry management for widgets.
|
340
|
+
</p>
|
341
|
+
</div>
|
342
|
+
<p>
|
343
|
+
</p>
|
344
|
+
<hr>
|
345
|
+
<div class="refsect2">
|
346
|
+
<a name="child-properties"></a><h3>Child properties</h3>
|
347
|
+
<p>
|
348
|
+
GtkContainer introduces <span class="emphasis"><em>child properties</em></span>.
|
349
|
+
These are object properties that are not specific
|
350
|
+
to either the container or the contained widget, but rather to their relation.
|
351
|
+
Typical examples of child properties are the position or pack-type of a widget
|
352
|
+
which is contained in a <a class="link" href="GtkBox.html" title="GtkBox"><span class="type">GtkBox</span></a>.
|
353
|
+
</p>
|
354
|
+
<p>
|
355
|
+
Use <a class="link" href="GtkContainer.html#gtk-container-class-install-child-property" title="gtk_container_class_install_child_property ()"><code class="function">gtk_container_class_install_child_property()</code></a> to install child properties
|
356
|
+
for a container class and <a class="link" href="GtkContainer.html#gtk-container-class-find-child-property" title="gtk_container_class_find_child_property ()"><code class="function">gtk_container_class_find_child_property()</code></a> or
|
357
|
+
<a class="link" href="GtkContainer.html#gtk-container-class-list-child-properties" title="gtk_container_class_list_child_properties ()"><code class="function">gtk_container_class_list_child_properties()</code></a> to get information about existing
|
358
|
+
child properties.
|
359
|
+
</p>
|
360
|
+
<p>
|
361
|
+
To set the value of a child property, use <a class="link" href="GtkContainer.html#gtk-container-child-set-property" title="gtk_container_child_set_property ()"><code class="function">gtk_container_child_set_property()</code></a>,
|
362
|
+
<a class="link" href="GtkContainer.html#gtk-container-child-set" title="gtk_container_child_set ()"><code class="function">gtk_container_child_set()</code></a> or <a class="link" href="GtkContainer.html#gtk-container-child-set-valist" title="gtk_container_child_set_valist ()"><code class="function">gtk_container_child_set_valist()</code></a>.
|
363
|
+
To obtain the value of a child property, use
|
364
|
+
<a class="link" href="GtkContainer.html#gtk-container-child-get-property" title="gtk_container_child_get_property ()"><code class="function">gtk_container_child_get_property()</code></a>, <a class="link" href="GtkContainer.html#gtk-container-child-get" title="gtk_container_child_get ()"><code class="function">gtk_container_child_get()</code></a> or
|
365
|
+
<a class="link" href="GtkContainer.html#gtk-container-child-get-valist" title="gtk_container_child_get_valist ()"><code class="function">gtk_container_child_get_valist()</code></a>. To emit notification about child property
|
366
|
+
changes, use <a class="link" href="GtkWidget.html#gtk-widget-child-notify" title="gtk_widget_child_notify ()"><code class="function">gtk_widget_child_notify()</code></a>.
|
367
|
+
</p>
|
368
|
+
</div>
|
369
|
+
<p>
|
370
|
+
</p>
|
371
|
+
<hr>
|
372
|
+
<div class="refsect2">
|
373
|
+
<a name="GtkContainer-BUILDER-UI"></a><h3>GtkContainer as GtkBuildable</h3>
|
374
|
+
<p>
|
375
|
+
The GtkContainer implementation of the GtkBuildable interface
|
376
|
+
supports a <packing> element for children, which can
|
377
|
+
contain multiple <property> elements that specify
|
378
|
+
child properties for the child.
|
379
|
+
</p>
|
380
|
+
<div class="example">
|
381
|
+
<a name="idm140520308689792"></a><p class="title"><b>Example 106. Child properties in UI definitions</b></p>
|
382
|
+
<div class="example-contents">
|
383
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
384
|
+
<tbody>
|
385
|
+
<tr>
|
386
|
+
<td class="listing_lines" align="right"><pre>1
|
387
|
+
2
|
388
|
+
3
|
389
|
+
4
|
390
|
+
5
|
391
|
+
6
|
392
|
+
7
|
393
|
+
8</pre></td>
|
394
|
+
<td class="listing_code"><pre class="programlisting"><span class="symbol"><</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkVBox"</span><span class="symbol">></span>
|
395
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="normal">child</span><span class="symbol">></span>
|
396
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkLabel"</span><span class="symbol">/></span>
|
397
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="normal">packing</span><span class="symbol">></span>
|
398
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">property</span><span class="normal"> name</span><span class="symbol">=</span><span class="string">"pack-type"</span><span class="symbol">></span><span class="normal">start</span><span class="symbol"></</span><span class="normal">property</span><span class="symbol">></span>
|
399
|
+
<span class="normal"> </span><span class="symbol"></</span><span class="normal">packing</span><span class="symbol">></span>
|
400
|
+
<span class="normal"> </span><span class="symbol"></</span><span class="normal">child</span><span class="symbol">></span>
|
401
|
+
<span class="symbol"></</span><span class="normal">object</span><span class="symbol">></span></pre></td>
|
402
|
+
</tr>
|
403
|
+
</tbody>
|
404
|
+
</table>
|
405
|
+
</div>
|
406
|
+
|
407
|
+
</div>
|
408
|
+
<p><br class="example-break">
|
409
|
+
Since 2.16, child properties can also be marked as translatable using
|
410
|
+
the same "translatable", "comments" and "context" attributes that are used
|
411
|
+
for regular properties.
|
412
|
+
</p>
|
413
|
+
</div>
|
414
|
+
<p>
|
415
|
+
</p>
|
416
|
+
</div>
|
417
|
+
<div class="refsect1">
|
418
|
+
<a name="GtkContainer.details"></a><h2>Details</h2>
|
419
|
+
<div class="refsect2">
|
420
|
+
<a name="GtkContainer-struct"></a><h3>struct GtkContainer</h3>
|
421
|
+
<pre class="programlisting">struct GtkContainer;</pre>
|
422
|
+
</div>
|
423
|
+
<hr>
|
424
|
+
<div class="refsect2">
|
425
|
+
<a name="GTK-IS-RESIZE-CONTAINER:CAPS"></a><h3>GTK_IS_RESIZE_CONTAINER()</h3>
|
426
|
+
<pre class="programlisting">#define GTK_IS_RESIZE_CONTAINER(widget)</pre>
|
427
|
+
</div>
|
428
|
+
<hr>
|
429
|
+
<div class="refsect2">
|
430
|
+
<a name="GTK-CONTAINER-WARN-INVALID-CHILD-PROPERTY-ID:CAPS"></a><h3>GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID()</h3>
|
431
|
+
<pre class="programlisting">#define GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID(object, property_id, pspec)</pre>
|
432
|
+
<p>
|
433
|
+
This macro should be used to emit a standard warning about unexpected
|
434
|
+
properties in <code class="function">set_child_property()</code> and <code class="function">get_child_property()</code> implementations.
|
435
|
+
</p>
|
436
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
437
|
+
<colgroup>
|
438
|
+
<col align="left" valign="top">
|
439
|
+
<col>
|
440
|
+
</colgroup>
|
441
|
+
<tbody>
|
442
|
+
<tr>
|
443
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
444
|
+
<td>the <span class="type">GObject</span> on which <code class="function">set_child_property()</code> or <code class="function">get_child_property()</code>
|
445
|
+
was called</td>
|
446
|
+
</tr>
|
447
|
+
<tr>
|
448
|
+
<td><p><span class="term"><em class="parameter"><code>property_id</code></em> :</span></p></td>
|
449
|
+
<td>the numeric id of the property</td>
|
450
|
+
</tr>
|
451
|
+
<tr>
|
452
|
+
<td><p><span class="term"><em class="parameter"><code>pspec</code></em> :</span></p></td>
|
453
|
+
<td>the <span class="type">GParamSpec</span> of the property</td>
|
454
|
+
</tr>
|
455
|
+
</tbody>
|
456
|
+
</table></div>
|
457
|
+
</div>
|
458
|
+
<hr>
|
459
|
+
<div class="refsect2">
|
460
|
+
<a name="gtk-container-add"></a><h3>gtk_container_add ()</h3>
|
461
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_add (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
462
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
|
463
|
+
<p>
|
464
|
+
Adds <em class="parameter"><code>widget</code></em> to <em class="parameter"><code>container</code></em>. Typically used for simple containers
|
465
|
+
such as <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a>, <a class="link" href="GtkFrame.html" title="GtkFrame"><span class="type">GtkFrame</span></a>, or <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>; for more complicated
|
466
|
+
layout containers such as <a class="link" href="GtkBox.html" title="GtkBox"><span class="type">GtkBox</span></a> or <a class="link" href="GtkGrid.html" title="GtkGrid"><span class="type">GtkGrid</span></a>, this function will
|
467
|
+
pick default packing parameters that may not be correct. So
|
468
|
+
consider functions such as <a class="link" href="GtkBox.html#gtk-box-pack-start" title="gtk_box_pack_start ()"><code class="function">gtk_box_pack_start()</code></a> and
|
469
|
+
<a class="link" href="GtkGrid.html#gtk-grid-attach" title="gtk_grid_attach ()"><code class="function">gtk_grid_attach()</code></a> as an alternative to <a class="link" href="GtkContainer.html#gtk-container-add" title="gtk_container_add ()"><code class="function">gtk_container_add()</code></a> in
|
470
|
+
those cases. A widget may be added to only one container at a time;
|
471
|
+
you can't place the same widget inside two different containers.
|
472
|
+
</p>
|
473
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
474
|
+
<colgroup>
|
475
|
+
<col align="left" valign="top">
|
476
|
+
<col>
|
477
|
+
</colgroup>
|
478
|
+
<tbody>
|
479
|
+
<tr>
|
480
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
481
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
482
|
+
</td>
|
483
|
+
</tr>
|
484
|
+
<tr>
|
485
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
486
|
+
<td>a widget to be placed inside <em class="parameter"><code>container</code></em>
|
487
|
+
</td>
|
488
|
+
</tr>
|
489
|
+
</tbody>
|
490
|
+
</table></div>
|
491
|
+
</div>
|
492
|
+
<hr>
|
493
|
+
<div class="refsect2">
|
494
|
+
<a name="gtk-container-remove"></a><h3>gtk_container_remove ()</h3>
|
495
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_remove (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
496
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
|
497
|
+
<p>
|
498
|
+
Removes <em class="parameter"><code>widget</code></em> from <em class="parameter"><code>container</code></em>. <em class="parameter"><code>widget</code></em> must be inside <em class="parameter"><code>container</code></em>.
|
499
|
+
Note that <em class="parameter"><code>container</code></em> will own a reference to <em class="parameter"><code>widget</code></em>, and that this
|
500
|
+
may be the last reference held; so removing a widget from its
|
501
|
+
container can destroy that widget. If you want to use <em class="parameter"><code>widget</code></em>
|
502
|
+
again, you need to add a reference to it while it's not inside
|
503
|
+
a container, using <code class="function">g_object_ref()</code>. If you don't want to use <em class="parameter"><code>widget</code></em>
|
504
|
+
again it's usually more efficient to simply destroy it directly
|
505
|
+
using <a class="link" href="GtkWidget.html#gtk-widget-destroy" title="gtk_widget_destroy ()"><code class="function">gtk_widget_destroy()</code></a> since this will remove it from the
|
506
|
+
container and help break any circular reference count cycles.
|
507
|
+
</p>
|
508
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
509
|
+
<colgroup>
|
510
|
+
<col align="left" valign="top">
|
511
|
+
<col>
|
512
|
+
</colgroup>
|
513
|
+
<tbody>
|
514
|
+
<tr>
|
515
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
516
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
517
|
+
</td>
|
518
|
+
</tr>
|
519
|
+
<tr>
|
520
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
521
|
+
<td>a current child of <em class="parameter"><code>container</code></em>
|
522
|
+
</td>
|
523
|
+
</tr>
|
524
|
+
</tbody>
|
525
|
+
</table></div>
|
526
|
+
</div>
|
527
|
+
<hr>
|
528
|
+
<div class="refsect2">
|
529
|
+
<a name="gtk-container-add-with-properties"></a><h3>gtk_container_add_with_properties ()</h3>
|
530
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_add_with_properties (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
531
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
532
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
533
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
534
|
+
<p>
|
535
|
+
Adds <em class="parameter"><code>widget</code></em> to <em class="parameter"><code>container</code></em>, setting child properties at the same time.
|
536
|
+
See <a class="link" href="GtkContainer.html#gtk-container-add" title="gtk_container_add ()"><code class="function">gtk_container_add()</code></a> and <a class="link" href="GtkContainer.html#gtk-container-child-set" title="gtk_container_child_set ()"><code class="function">gtk_container_child_set()</code></a> for more details.
|
537
|
+
</p>
|
538
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
539
|
+
<colgroup>
|
540
|
+
<col align="left" valign="top">
|
541
|
+
<col>
|
542
|
+
</colgroup>
|
543
|
+
<tbody>
|
544
|
+
<tr>
|
545
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
546
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
547
|
+
</td>
|
548
|
+
</tr>
|
549
|
+
<tr>
|
550
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
551
|
+
<td>a widget to be placed inside <em class="parameter"><code>container</code></em>
|
552
|
+
</td>
|
553
|
+
</tr>
|
554
|
+
<tr>
|
555
|
+
<td><p><span class="term"><em class="parameter"><code>first_prop_name</code></em> :</span></p></td>
|
556
|
+
<td>the name of the first child property to set</td>
|
557
|
+
</tr>
|
558
|
+
<tr>
|
559
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
560
|
+
<td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>-terminated list of property names and values, starting
|
561
|
+
with <em class="parameter"><code>first_prop_name</code></em>
|
562
|
+
</td>
|
563
|
+
</tr>
|
564
|
+
</tbody>
|
565
|
+
</table></div>
|
566
|
+
</div>
|
567
|
+
<hr>
|
568
|
+
<div class="refsect2">
|
569
|
+
<a name="gtk-container-get-resize-mode"></a><h3>gtk_container_get_resize_mode ()</h3>
|
570
|
+
<pre class="programlisting"><a class="link" href="gtk3-Standard-Enumerations.html#GtkResizeMode" title="enum GtkResizeMode"><span class="returnvalue">GtkResizeMode</span></a> gtk_container_get_resize_mode (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
571
|
+
<p>
|
572
|
+
Returns the resize mode for the container. See
|
573
|
+
<a class="link" href="GtkContainer.html#gtk-container-set-resize-mode" title="gtk_container_set_resize_mode ()"><code class="function">gtk_container_set_resize_mode()</code></a>.
|
574
|
+
</p>
|
575
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
576
|
+
<colgroup>
|
577
|
+
<col align="left" valign="top">
|
578
|
+
<col>
|
579
|
+
</colgroup>
|
580
|
+
<tbody>
|
581
|
+
<tr>
|
582
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
583
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
584
|
+
</td>
|
585
|
+
</tr>
|
586
|
+
<tr>
|
587
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
588
|
+
<td>the current resize mode</td>
|
589
|
+
</tr>
|
590
|
+
</tbody>
|
591
|
+
</table></div>
|
592
|
+
</div>
|
593
|
+
<hr>
|
594
|
+
<div class="refsect2">
|
595
|
+
<a name="gtk-container-set-resize-mode"></a><h3>gtk_container_set_resize_mode ()</h3>
|
596
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_set_resize_mode (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
597
|
+
<em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkResizeMode" title="enum GtkResizeMode"><span class="type">GtkResizeMode</span></a> resize_mode</code></em>);</pre>
|
598
|
+
<p>
|
599
|
+
Sets the resize mode for the container.
|
600
|
+
</p>
|
601
|
+
<p>
|
602
|
+
The resize mode of a container determines whether a resize request
|
603
|
+
will be passed to the container's parent, queued for later execution
|
604
|
+
or executed immediately.
|
605
|
+
</p>
|
606
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
607
|
+
<colgroup>
|
608
|
+
<col align="left" valign="top">
|
609
|
+
<col>
|
610
|
+
</colgroup>
|
611
|
+
<tbody>
|
612
|
+
<tr>
|
613
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
614
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
615
|
+
</td>
|
616
|
+
</tr>
|
617
|
+
<tr>
|
618
|
+
<td><p><span class="term"><em class="parameter"><code>resize_mode</code></em> :</span></p></td>
|
619
|
+
<td>the new resize mode</td>
|
620
|
+
</tr>
|
621
|
+
</tbody>
|
622
|
+
</table></div>
|
623
|
+
</div>
|
624
|
+
<hr>
|
625
|
+
<div class="refsect2">
|
626
|
+
<a name="gtk-container-check-resize"></a><h3>gtk_container_check_resize ()</h3>
|
627
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_check_resize (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
628
|
+
</div>
|
629
|
+
<hr>
|
630
|
+
<div class="refsect2">
|
631
|
+
<a name="gtk-container-foreach"></a><h3>gtk_container_foreach ()</h3>
|
632
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_foreach (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
633
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html#GtkCallback" title="GtkCallback ()"><span class="type">GtkCallback</span></a> callback</code></em>,
|
634
|
+
<em class="parameter"><code><span class="type">gpointer</span> callback_data</code></em>);</pre>
|
635
|
+
<p>
|
636
|
+
Invokes <em class="parameter"><code>callback</code></em> on each non-internal child of <em class="parameter"><code>container</code></em>. See
|
637
|
+
<a class="link" href="GtkContainer.html#gtk-container-forall" title="gtk_container_forall ()"><code class="function">gtk_container_forall()</code></a> for details on what constitutes an
|
638
|
+
"internal" child. Most applications should use
|
639
|
+
<a class="link" href="GtkContainer.html#gtk-container-foreach" title="gtk_container_foreach ()"><code class="function">gtk_container_foreach()</code></a>, rather than <a class="link" href="GtkContainer.html#gtk-container-forall" title="gtk_container_forall ()"><code class="function">gtk_container_forall()</code></a>.
|
640
|
+
</p>
|
641
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
642
|
+
<colgroup>
|
643
|
+
<col align="left" valign="top">
|
644
|
+
<col>
|
645
|
+
</colgroup>
|
646
|
+
<tbody>
|
647
|
+
<tr>
|
648
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
649
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
650
|
+
</td>
|
651
|
+
</tr>
|
652
|
+
<tr>
|
653
|
+
<td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
|
654
|
+
<td>a callback. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
|
655
|
+
</td>
|
656
|
+
</tr>
|
657
|
+
<tr>
|
658
|
+
<td><p><span class="term"><em class="parameter"><code>callback_data</code></em> :</span></p></td>
|
659
|
+
<td>callback user data</td>
|
660
|
+
</tr>
|
661
|
+
</tbody>
|
662
|
+
</table></div>
|
663
|
+
</div>
|
664
|
+
<hr>
|
665
|
+
<div class="refsect2">
|
666
|
+
<a name="gtk-container-get-children"></a><h3>gtk_container_get_children ()</h3>
|
667
|
+
<pre class="programlisting"><span class="returnvalue">GList</span> * gtk_container_get_children (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
668
|
+
<p>
|
669
|
+
Returns the container's non-internal children. See
|
670
|
+
<a class="link" href="GtkContainer.html#gtk-container-forall" title="gtk_container_forall ()"><code class="function">gtk_container_forall()</code></a> for details on what constitutes an "internal" child.
|
671
|
+
</p>
|
672
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
673
|
+
<colgroup>
|
674
|
+
<col align="left" valign="top">
|
675
|
+
<col>
|
676
|
+
</colgroup>
|
677
|
+
<tbody>
|
678
|
+
<tr>
|
679
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
680
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
681
|
+
</td>
|
682
|
+
</tr>
|
683
|
+
<tr>
|
684
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
685
|
+
<td>a newly-allocated list of the container's non-internal children. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkWidget][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
|
686
|
+
</td>
|
687
|
+
</tr>
|
688
|
+
</tbody>
|
689
|
+
</table></div>
|
690
|
+
</div>
|
691
|
+
<hr>
|
692
|
+
<div class="refsect2">
|
693
|
+
<a name="gtk-container-get-path-for-child"></a><h3>gtk_container_get_path_for_child ()</h3>
|
694
|
+
<pre class="programlisting"><a class="link" href="gtk3-GtkWidgetPath.html#GtkWidgetPath" title="GtkWidgetPath"><span class="returnvalue">GtkWidgetPath</span></a> * gtk_container_get_path_for_child (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
695
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
|
696
|
+
<p>
|
697
|
+
Returns a newly created widget path representing all the widget hierarchy
|
698
|
+
from the toplevel down to and including <em class="parameter"><code>child</code></em>.
|
699
|
+
</p>
|
700
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
701
|
+
<colgroup>
|
702
|
+
<col align="left" valign="top">
|
703
|
+
<col>
|
704
|
+
</colgroup>
|
705
|
+
<tbody>
|
706
|
+
<tr>
|
707
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
708
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
709
|
+
</td>
|
710
|
+
</tr>
|
711
|
+
<tr>
|
712
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
713
|
+
<td>a child of <em class="parameter"><code>container</code></em>
|
714
|
+
</td>
|
715
|
+
</tr>
|
716
|
+
<tr>
|
717
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
718
|
+
<td>A newly created <a class="link" href="gtk3-GtkWidgetPath.html#GtkWidgetPath" title="GtkWidgetPath"><span class="type">GtkWidgetPath</span></a>
|
719
|
+
</td>
|
720
|
+
</tr>
|
721
|
+
</tbody>
|
722
|
+
</table></div>
|
723
|
+
</div>
|
724
|
+
<hr>
|
725
|
+
<div class="refsect2">
|
726
|
+
<a name="gtk-container-set-reallocate-redraws"></a><h3>gtk_container_set_reallocate_redraws ()</h3>
|
727
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_set_reallocate_redraws
|
728
|
+
(<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
729
|
+
<em class="parameter"><code><span class="type">gboolean</span> needs_redraws</code></em>);</pre>
|
730
|
+
<p>
|
731
|
+
Sets the <em class="parameter"><code>reallocate_redraws</code></em> flag of the container to the given value.
|
732
|
+
</p>
|
733
|
+
<p>
|
734
|
+
Containers requesting reallocation redraws get automatically
|
735
|
+
redrawn if any of their children changed allocation.
|
736
|
+
</p>
|
737
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
738
|
+
<colgroup>
|
739
|
+
<col align="left" valign="top">
|
740
|
+
<col>
|
741
|
+
</colgroup>
|
742
|
+
<tbody>
|
743
|
+
<tr>
|
744
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
745
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
746
|
+
</td>
|
747
|
+
</tr>
|
748
|
+
<tr>
|
749
|
+
<td><p><span class="term"><em class="parameter"><code>needs_redraws</code></em> :</span></p></td>
|
750
|
+
<td>the new value for the container's <em class="parameter"><code>reallocate_redraws</code></em> flag</td>
|
751
|
+
</tr>
|
752
|
+
</tbody>
|
753
|
+
</table></div>
|
754
|
+
</div>
|
755
|
+
<hr>
|
756
|
+
<div class="refsect2">
|
757
|
+
<a name="gtk-container-get-focus-child"></a><h3>gtk_container_get_focus_child ()</h3>
|
758
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_container_get_focus_child (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
759
|
+
<p>
|
760
|
+
Returns the current focus child widget inside <em class="parameter"><code>container</code></em>. This is not the
|
761
|
+
currently focused widget. That can be obtained by calling
|
762
|
+
<a class="link" href="GtkWindow.html#gtk-window-get-focus" title="gtk_window_get_focus ()"><code class="function">gtk_window_get_focus()</code></a>.
|
763
|
+
</p>
|
764
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
765
|
+
<colgroup>
|
766
|
+
<col align="left" valign="top">
|
767
|
+
<col>
|
768
|
+
</colgroup>
|
769
|
+
<tbody>
|
770
|
+
<tr>
|
771
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
772
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
773
|
+
</td>
|
774
|
+
</tr>
|
775
|
+
<tr>
|
776
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
777
|
+
<td>The child widget which will receive the
|
778
|
+
focus inside <em class="parameter"><code>container</code></em> when the <em class="parameter"><code>conatiner</code></em> is focussed,
|
779
|
+
or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if none is set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
780
|
+
</td>
|
781
|
+
</tr>
|
782
|
+
</tbody>
|
783
|
+
</table></div>
|
784
|
+
<p class="since">Since 2.14</p>
|
785
|
+
</div>
|
786
|
+
<hr>
|
787
|
+
<div class="refsect2">
|
788
|
+
<a name="gtk-container-set-focus-child"></a><h3>gtk_container_set_focus_child ()</h3>
|
789
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_set_focus_child (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
790
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
|
791
|
+
<p>
|
792
|
+
Sets, or unsets if <em class="parameter"><code>child</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the focused child of <em class="parameter"><code>container</code></em>.
|
793
|
+
</p>
|
794
|
+
<p>
|
795
|
+
This function emits the GtkContainer::set_focus_child signal of
|
796
|
+
<em class="parameter"><code>container</code></em>. Implementations of <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> can override the
|
797
|
+
default behaviour by overriding the class closure of this signal.
|
798
|
+
</p>
|
799
|
+
<p>
|
800
|
+
This is function is mostly meant to be used by widgets. Applications can use
|
801
|
+
<a class="link" href="GtkWidget.html#gtk-widget-grab-focus" title="gtk_widget_grab_focus ()"><code class="function">gtk_widget_grab_focus()</code></a> to manualy set the focus to a specific widget.
|
802
|
+
</p>
|
803
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
804
|
+
<colgroup>
|
805
|
+
<col align="left" valign="top">
|
806
|
+
<col>
|
807
|
+
</colgroup>
|
808
|
+
<tbody>
|
809
|
+
<tr>
|
810
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
811
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
812
|
+
</td>
|
813
|
+
</tr>
|
814
|
+
<tr>
|
815
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
816
|
+
<td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
817
|
+
</td>
|
818
|
+
</tr>
|
819
|
+
</tbody>
|
820
|
+
</table></div>
|
821
|
+
</div>
|
822
|
+
<hr>
|
823
|
+
<div class="refsect2">
|
824
|
+
<a name="gtk-container-get-focus-vadjustment"></a><h3>gtk_container_get_focus_vadjustment ()</h3>
|
825
|
+
<pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_container_get_focus_vadjustment (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
826
|
+
<p>
|
827
|
+
Retrieves the vertical focus adjustment for the container. See
|
828
|
+
<a class="link" href="GtkContainer.html#gtk-container-set-focus-vadjustment" title="gtk_container_set_focus_vadjustment ()"><code class="function">gtk_container_set_focus_vadjustment()</code></a>.
|
829
|
+
</p>
|
830
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
831
|
+
<colgroup>
|
832
|
+
<col align="left" valign="top">
|
833
|
+
<col>
|
834
|
+
</colgroup>
|
835
|
+
<tbody>
|
836
|
+
<tr>
|
837
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
838
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
839
|
+
</td>
|
840
|
+
</tr>
|
841
|
+
<tr>
|
842
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
843
|
+
<td>the vertical focus adjustment, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if
|
844
|
+
none has been set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
845
|
+
</td>
|
846
|
+
</tr>
|
847
|
+
</tbody>
|
848
|
+
</table></div>
|
849
|
+
</div>
|
850
|
+
<hr>
|
851
|
+
<div class="refsect2">
|
852
|
+
<a name="gtk-container-set-focus-vadjustment"></a><h3>gtk_container_set_focus_vadjustment ()</h3>
|
853
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_set_focus_vadjustment (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
854
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
855
|
+
<p>
|
856
|
+
Hooks up an adjustment to focus handling in a container, so when a
|
857
|
+
child of the container is focused, the adjustment is scrolled to
|
858
|
+
show that widget. This function sets the vertical alignment. See
|
859
|
+
<a class="link" href="GtkScrolledWindow.html#gtk-scrolled-window-get-vadjustment" title="gtk_scrolled_window_get_vadjustment ()"><code class="function">gtk_scrolled_window_get_vadjustment()</code></a> for a typical way of obtaining
|
860
|
+
the adjustment and <a class="link" href="GtkContainer.html#gtk-container-set-focus-hadjustment" title="gtk_container_set_focus_hadjustment ()"><code class="function">gtk_container_set_focus_hadjustment()</code></a> for setting
|
861
|
+
the horizontal adjustment.
|
862
|
+
</p>
|
863
|
+
<p>
|
864
|
+
The adjustments have to be in pixel units and in the same coordinate
|
865
|
+
system as the allocation for immediate children of the container.
|
866
|
+
</p>
|
867
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
868
|
+
<colgroup>
|
869
|
+
<col align="left" valign="top">
|
870
|
+
<col>
|
871
|
+
</colgroup>
|
872
|
+
<tbody>
|
873
|
+
<tr>
|
874
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
875
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
876
|
+
</td>
|
877
|
+
</tr>
|
878
|
+
<tr>
|
879
|
+
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
880
|
+
<td>an adjustment which should be adjusted when the focus
|
881
|
+
is moved among the descendents of <em class="parameter"><code>container</code></em>
|
882
|
+
</td>
|
883
|
+
</tr>
|
884
|
+
</tbody>
|
885
|
+
</table></div>
|
886
|
+
</div>
|
887
|
+
<hr>
|
888
|
+
<div class="refsect2">
|
889
|
+
<a name="gtk-container-get-focus-hadjustment"></a><h3>gtk_container_get_focus_hadjustment ()</h3>
|
890
|
+
<pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_container_get_focus_hadjustment (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
891
|
+
<p>
|
892
|
+
Retrieves the horizontal focus adjustment for the container. See
|
893
|
+
<a class="link" href="GtkContainer.html#gtk-container-set-focus-hadjustment" title="gtk_container_set_focus_hadjustment ()"><code class="function">gtk_container_set_focus_hadjustment()</code></a>.
|
894
|
+
</p>
|
895
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
896
|
+
<colgroup>
|
897
|
+
<col align="left" valign="top">
|
898
|
+
<col>
|
899
|
+
</colgroup>
|
900
|
+
<tbody>
|
901
|
+
<tr>
|
902
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
903
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
904
|
+
</td>
|
905
|
+
</tr>
|
906
|
+
<tr>
|
907
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
908
|
+
<td>the horizontal focus adjustment, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if
|
909
|
+
none has been set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
910
|
+
</td>
|
911
|
+
</tr>
|
912
|
+
</tbody>
|
913
|
+
</table></div>
|
914
|
+
</div>
|
915
|
+
<hr>
|
916
|
+
<div class="refsect2">
|
917
|
+
<a name="gtk-container-set-focus-hadjustment"></a><h3>gtk_container_set_focus_hadjustment ()</h3>
|
918
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_set_focus_hadjustment (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
919
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
920
|
+
<p>
|
921
|
+
Hooks up an adjustment to focus handling in a container, so when a child
|
922
|
+
of the container is focused, the adjustment is scrolled to show that
|
923
|
+
widget. This function sets the horizontal alignment.
|
924
|
+
See <a class="link" href="GtkScrolledWindow.html#gtk-scrolled-window-get-hadjustment" title="gtk_scrolled_window_get_hadjustment ()"><code class="function">gtk_scrolled_window_get_hadjustment()</code></a> for a typical way of obtaining
|
925
|
+
the adjustment and <a class="link" href="GtkContainer.html#gtk-container-set-focus-vadjustment" title="gtk_container_set_focus_vadjustment ()"><code class="function">gtk_container_set_focus_vadjustment()</code></a> for setting
|
926
|
+
the vertical adjustment.
|
927
|
+
</p>
|
928
|
+
<p>
|
929
|
+
The adjustments have to be in pixel units and in the same coordinate
|
930
|
+
system as the allocation for immediate children of the container.
|
931
|
+
</p>
|
932
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
933
|
+
<colgroup>
|
934
|
+
<col align="left" valign="top">
|
935
|
+
<col>
|
936
|
+
</colgroup>
|
937
|
+
<tbody>
|
938
|
+
<tr>
|
939
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
940
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
941
|
+
</td>
|
942
|
+
</tr>
|
943
|
+
<tr>
|
944
|
+
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
945
|
+
<td>an adjustment which should be adjusted when the focus is
|
946
|
+
moved among the descendents of <em class="parameter"><code>container</code></em>
|
947
|
+
</td>
|
948
|
+
</tr>
|
949
|
+
</tbody>
|
950
|
+
</table></div>
|
951
|
+
</div>
|
952
|
+
<hr>
|
953
|
+
<div class="refsect2">
|
954
|
+
<a name="gtk-container-resize-children"></a><h3>gtk_container_resize_children ()</h3>
|
955
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_resize_children (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
956
|
+
</div>
|
957
|
+
<hr>
|
958
|
+
<div class="refsect2">
|
959
|
+
<a name="gtk-container-child-type"></a><h3>gtk_container_child_type ()</h3>
|
960
|
+
<pre class="programlisting"><span class="returnvalue">GType</span> gtk_container_child_type (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
961
|
+
<p>
|
962
|
+
Returns the type of the children supported by the container.
|
963
|
+
</p>
|
964
|
+
<p>
|
965
|
+
Note that this may return <code class="literal">G_TYPE_NONE</code> to indicate that no more
|
966
|
+
children can be added, e.g. for a <a class="link" href="GtkPaned.html" title="GtkPaned"><span class="type">GtkPaned</span></a> which already has two
|
967
|
+
children.
|
968
|
+
</p>
|
969
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
970
|
+
<colgroup>
|
971
|
+
<col align="left" valign="top">
|
972
|
+
<col>
|
973
|
+
</colgroup>
|
974
|
+
<tbody>
|
975
|
+
<tr>
|
976
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
977
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
978
|
+
</td>
|
979
|
+
</tr>
|
980
|
+
<tr>
|
981
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
982
|
+
<td>a <span class="type">GType</span>.</td>
|
983
|
+
</tr>
|
984
|
+
</tbody>
|
985
|
+
</table></div>
|
986
|
+
</div>
|
987
|
+
<hr>
|
988
|
+
<div class="refsect2">
|
989
|
+
<a name="gtk-container-child-get"></a><h3>gtk_container_child_get ()</h3>
|
990
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_child_get (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
991
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
992
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
993
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
994
|
+
<p>
|
995
|
+
Gets the values of one or more child properties for <em class="parameter"><code>child</code></em> and <em class="parameter"><code>container</code></em>.
|
996
|
+
</p>
|
997
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
998
|
+
<colgroup>
|
999
|
+
<col align="left" valign="top">
|
1000
|
+
<col>
|
1001
|
+
</colgroup>
|
1002
|
+
<tbody>
|
1003
|
+
<tr>
|
1004
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1005
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1006
|
+
</td>
|
1007
|
+
</tr>
|
1008
|
+
<tr>
|
1009
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1010
|
+
<td>a widget which is a child of <em class="parameter"><code>container</code></em>
|
1011
|
+
</td>
|
1012
|
+
</tr>
|
1013
|
+
<tr>
|
1014
|
+
<td><p><span class="term"><em class="parameter"><code>first_prop_name</code></em> :</span></p></td>
|
1015
|
+
<td>the name of the first property to get</td>
|
1016
|
+
</tr>
|
1017
|
+
<tr>
|
1018
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1019
|
+
<td>return location for the first property, followed
|
1020
|
+
optionally by more name/return location pairs, followed by <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
|
1021
|
+
</td>
|
1022
|
+
</tr>
|
1023
|
+
</tbody>
|
1024
|
+
</table></div>
|
1025
|
+
</div>
|
1026
|
+
<hr>
|
1027
|
+
<div class="refsect2">
|
1028
|
+
<a name="gtk-container-child-set"></a><h3>gtk_container_child_set ()</h3>
|
1029
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_child_set (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1030
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1031
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
1032
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
1033
|
+
<p>
|
1034
|
+
Sets one or more child properties for <em class="parameter"><code>child</code></em> and <em class="parameter"><code>container</code></em>.
|
1035
|
+
</p>
|
1036
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1037
|
+
<colgroup>
|
1038
|
+
<col align="left" valign="top">
|
1039
|
+
<col>
|
1040
|
+
</colgroup>
|
1041
|
+
<tbody>
|
1042
|
+
<tr>
|
1043
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1044
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1045
|
+
</td>
|
1046
|
+
</tr>
|
1047
|
+
<tr>
|
1048
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1049
|
+
<td>a widget which is a child of <em class="parameter"><code>container</code></em>
|
1050
|
+
</td>
|
1051
|
+
</tr>
|
1052
|
+
<tr>
|
1053
|
+
<td><p><span class="term"><em class="parameter"><code>first_prop_name</code></em> :</span></p></td>
|
1054
|
+
<td>the name of the first property to set</td>
|
1055
|
+
</tr>
|
1056
|
+
<tr>
|
1057
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1058
|
+
<td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>-terminated list of property names and values, starting
|
1059
|
+
with <em class="parameter"><code>first_prop_name</code></em>
|
1060
|
+
</td>
|
1061
|
+
</tr>
|
1062
|
+
</tbody>
|
1063
|
+
</table></div>
|
1064
|
+
</div>
|
1065
|
+
<hr>
|
1066
|
+
<div class="refsect2">
|
1067
|
+
<a name="gtk-container-child-get-property"></a><h3>gtk_container_child_get_property ()</h3>
|
1068
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_child_get_property (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1069
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1070
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
|
1071
|
+
<em class="parameter"><code><span class="type">GValue</span> *value</code></em>);</pre>
|
1072
|
+
<p>
|
1073
|
+
Gets the value of a child property for <em class="parameter"><code>child</code></em> and <em class="parameter"><code>container</code></em>.
|
1074
|
+
</p>
|
1075
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1076
|
+
<colgroup>
|
1077
|
+
<col align="left" valign="top">
|
1078
|
+
<col>
|
1079
|
+
</colgroup>
|
1080
|
+
<tbody>
|
1081
|
+
<tr>
|
1082
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1083
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1084
|
+
</td>
|
1085
|
+
</tr>
|
1086
|
+
<tr>
|
1087
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1088
|
+
<td>a widget which is a child of <em class="parameter"><code>container</code></em>
|
1089
|
+
</td>
|
1090
|
+
</tr>
|
1091
|
+
<tr>
|
1092
|
+
<td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
|
1093
|
+
<td>the name of the property to get</td>
|
1094
|
+
</tr>
|
1095
|
+
<tr>
|
1096
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
1097
|
+
<td>a location to return the value</td>
|
1098
|
+
</tr>
|
1099
|
+
</tbody>
|
1100
|
+
</table></div>
|
1101
|
+
</div>
|
1102
|
+
<hr>
|
1103
|
+
<div class="refsect2">
|
1104
|
+
<a name="gtk-container-child-set-property"></a><h3>gtk_container_child_set_property ()</h3>
|
1105
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_child_set_property (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1106
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1107
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
|
1108
|
+
<em class="parameter"><code>const <span class="type">GValue</span> *value</code></em>);</pre>
|
1109
|
+
<p>
|
1110
|
+
Sets a child property for <em class="parameter"><code>child</code></em> and <em class="parameter"><code>container</code></em>.
|
1111
|
+
</p>
|
1112
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1113
|
+
<colgroup>
|
1114
|
+
<col align="left" valign="top">
|
1115
|
+
<col>
|
1116
|
+
</colgroup>
|
1117
|
+
<tbody>
|
1118
|
+
<tr>
|
1119
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1120
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1121
|
+
</td>
|
1122
|
+
</tr>
|
1123
|
+
<tr>
|
1124
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1125
|
+
<td>a widget which is a child of <em class="parameter"><code>container</code></em>
|
1126
|
+
</td>
|
1127
|
+
</tr>
|
1128
|
+
<tr>
|
1129
|
+
<td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
|
1130
|
+
<td>the name of the property to set</td>
|
1131
|
+
</tr>
|
1132
|
+
<tr>
|
1133
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
1134
|
+
<td>the value to set the property to</td>
|
1135
|
+
</tr>
|
1136
|
+
</tbody>
|
1137
|
+
</table></div>
|
1138
|
+
</div>
|
1139
|
+
<hr>
|
1140
|
+
<div class="refsect2">
|
1141
|
+
<a name="gtk-container-child-get-valist"></a><h3>gtk_container_child_get_valist ()</h3>
|
1142
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_child_get_valist (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1143
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1144
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
|
1145
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
1146
|
+
<p>
|
1147
|
+
Gets the values of one or more child properties for <em class="parameter"><code>child</code></em> and <em class="parameter"><code>container</code></em>.
|
1148
|
+
</p>
|
1149
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1150
|
+
<colgroup>
|
1151
|
+
<col align="left" valign="top">
|
1152
|
+
<col>
|
1153
|
+
</colgroup>
|
1154
|
+
<tbody>
|
1155
|
+
<tr>
|
1156
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1157
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1158
|
+
</td>
|
1159
|
+
</tr>
|
1160
|
+
<tr>
|
1161
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1162
|
+
<td>a widget which is a child of <em class="parameter"><code>container</code></em>
|
1163
|
+
</td>
|
1164
|
+
</tr>
|
1165
|
+
<tr>
|
1166
|
+
<td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
|
1167
|
+
<td>the name of the first property to get</td>
|
1168
|
+
</tr>
|
1169
|
+
<tr>
|
1170
|
+
<td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
|
1171
|
+
<td>return location for the first property, followed
|
1172
|
+
optionally by more name/return location pairs, followed by <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
|
1173
|
+
</td>
|
1174
|
+
</tr>
|
1175
|
+
</tbody>
|
1176
|
+
</table></div>
|
1177
|
+
</div>
|
1178
|
+
<hr>
|
1179
|
+
<div class="refsect2">
|
1180
|
+
<a name="gtk-container-child-set-valist"></a><h3>gtk_container_child_set_valist ()</h3>
|
1181
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_child_set_valist (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1182
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1183
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
|
1184
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
1185
|
+
<p>
|
1186
|
+
Sets one or more child properties for <em class="parameter"><code>child</code></em> and <em class="parameter"><code>container</code></em>.
|
1187
|
+
</p>
|
1188
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1189
|
+
<colgroup>
|
1190
|
+
<col align="left" valign="top">
|
1191
|
+
<col>
|
1192
|
+
</colgroup>
|
1193
|
+
<tbody>
|
1194
|
+
<tr>
|
1195
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1196
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1197
|
+
</td>
|
1198
|
+
</tr>
|
1199
|
+
<tr>
|
1200
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1201
|
+
<td>a widget which is a child of <em class="parameter"><code>container</code></em>
|
1202
|
+
</td>
|
1203
|
+
</tr>
|
1204
|
+
<tr>
|
1205
|
+
<td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
|
1206
|
+
<td>the name of the first property to set</td>
|
1207
|
+
</tr>
|
1208
|
+
<tr>
|
1209
|
+
<td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
|
1210
|
+
<td>a <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>-terminated list of property names and values, starting
|
1211
|
+
with <em class="parameter"><code>first_prop_name</code></em>
|
1212
|
+
</td>
|
1213
|
+
</tr>
|
1214
|
+
</tbody>
|
1215
|
+
</table></div>
|
1216
|
+
</div>
|
1217
|
+
<hr>
|
1218
|
+
<div class="refsect2">
|
1219
|
+
<a name="gtk-container-child-notify"></a><h3>gtk_container_child_notify ()</h3>
|
1220
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_child_notify (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1221
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1222
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *child_property</code></em>);</pre>
|
1223
|
+
<p>
|
1224
|
+
Emits a <a class="link" href="GtkWidget.html#GtkWidget-child-notify" title='The "child-notify" signal'><span class="type">"child-notify"</span></a> signal for the
|
1225
|
+
<a class="link" href="GtkContainer.html#child-properties" title="Child properties">child property</a>
|
1226
|
+
<em class="parameter"><code>child_property</code></em> on widget.
|
1227
|
+
</p>
|
1228
|
+
<p>
|
1229
|
+
This is an analogue of <code class="function">g_object_notify()</code> for child properties.
|
1230
|
+
</p>
|
1231
|
+
<p>
|
1232
|
+
Also see <a class="link" href="GtkWidget.html#gtk-widget-child-notify" title="gtk_widget_child_notify ()"><code class="function">gtk_widget_child_notify()</code></a>.
|
1233
|
+
</p>
|
1234
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1235
|
+
<colgroup>
|
1236
|
+
<col align="left" valign="top">
|
1237
|
+
<col>
|
1238
|
+
</colgroup>
|
1239
|
+
<tbody>
|
1240
|
+
<tr>
|
1241
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1242
|
+
<td>the <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1243
|
+
</td>
|
1244
|
+
</tr>
|
1245
|
+
<tr>
|
1246
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1247
|
+
<td>the child widget</td>
|
1248
|
+
</tr>
|
1249
|
+
<tr>
|
1250
|
+
<td><p><span class="term"><em class="parameter"><code>child_property</code></em> :</span></p></td>
|
1251
|
+
<td>the name of a child property installed on
|
1252
|
+
the class of <em class="parameter"><code>container</code></em>
|
1253
|
+
</td>
|
1254
|
+
</tr>
|
1255
|
+
</tbody>
|
1256
|
+
</table></div>
|
1257
|
+
<p class="since">Since 3.2</p>
|
1258
|
+
</div>
|
1259
|
+
<hr>
|
1260
|
+
<div class="refsect2">
|
1261
|
+
<a name="gtk-container-forall"></a><h3>gtk_container_forall ()</h3>
|
1262
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_forall (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1263
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html#GtkCallback" title="GtkCallback ()"><span class="type">GtkCallback</span></a> callback</code></em>,
|
1264
|
+
<em class="parameter"><code><span class="type">gpointer</span> callback_data</code></em>);</pre>
|
1265
|
+
<p>
|
1266
|
+
Invokes <em class="parameter"><code>callback</code></em> on each child of <em class="parameter"><code>container</code></em>, including children
|
1267
|
+
that are considered "internal" (implementation details of the
|
1268
|
+
container). "Internal" children generally weren't added by the user
|
1269
|
+
of the container, but were added by the container implementation
|
1270
|
+
itself. Most applications should use <a class="link" href="GtkContainer.html#gtk-container-foreach" title="gtk_container_foreach ()"><code class="function">gtk_container_foreach()</code></a>,
|
1271
|
+
rather than <a class="link" href="GtkContainer.html#gtk-container-forall" title="gtk_container_forall ()"><code class="function">gtk_container_forall()</code></a>.
|
1272
|
+
</p>
|
1273
|
+
<p>
|
1274
|
+
Virtual: forall
|
1275
|
+
</p>
|
1276
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1277
|
+
<colgroup>
|
1278
|
+
<col align="left" valign="top">
|
1279
|
+
<col>
|
1280
|
+
</colgroup>
|
1281
|
+
<tbody>
|
1282
|
+
<tr>
|
1283
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1284
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1285
|
+
</td>
|
1286
|
+
</tr>
|
1287
|
+
<tr>
|
1288
|
+
<td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
|
1289
|
+
<td>a callback. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>][<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> callback_data]</span>
|
1290
|
+
</td>
|
1291
|
+
</tr>
|
1292
|
+
<tr>
|
1293
|
+
<td><p><span class="term"><em class="parameter"><code>callback_data</code></em> :</span></p></td>
|
1294
|
+
<td>callback user data</td>
|
1295
|
+
</tr>
|
1296
|
+
</tbody>
|
1297
|
+
</table></div>
|
1298
|
+
</div>
|
1299
|
+
<hr>
|
1300
|
+
<div class="refsect2">
|
1301
|
+
<a name="gtk-container-get-border-width"></a><h3>gtk_container_get_border_width ()</h3>
|
1302
|
+
<pre class="programlisting"><span class="returnvalue">guint</span> gtk_container_get_border_width (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
1303
|
+
<p>
|
1304
|
+
Retrieves the border width of the container. See
|
1305
|
+
<a class="link" href="GtkContainer.html#gtk-container-set-border-width" title="gtk_container_set_border_width ()"><code class="function">gtk_container_set_border_width()</code></a>.
|
1306
|
+
</p>
|
1307
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1308
|
+
<colgroup>
|
1309
|
+
<col align="left" valign="top">
|
1310
|
+
<col>
|
1311
|
+
</colgroup>
|
1312
|
+
<tbody>
|
1313
|
+
<tr>
|
1314
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1315
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1316
|
+
</td>
|
1317
|
+
</tr>
|
1318
|
+
<tr>
|
1319
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1320
|
+
<td>the current border width</td>
|
1321
|
+
</tr>
|
1322
|
+
</tbody>
|
1323
|
+
</table></div>
|
1324
|
+
</div>
|
1325
|
+
<hr>
|
1326
|
+
<div class="refsect2">
|
1327
|
+
<a name="gtk-container-set-border-width"></a><h3>gtk_container_set_border_width ()</h3>
|
1328
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_set_border_width (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1329
|
+
<em class="parameter"><code><span class="type">guint</span> border_width</code></em>);</pre>
|
1330
|
+
<p>
|
1331
|
+
Sets the border width of the container.
|
1332
|
+
</p>
|
1333
|
+
<p>
|
1334
|
+
The border width of a container is the amount of space to leave
|
1335
|
+
around the outside of the container. The only exception to this is
|
1336
|
+
<a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a>; because toplevel windows can't leave space outside,
|
1337
|
+
they leave the space inside. The border is added on all sides of
|
1338
|
+
the container. To add space to only one side, one approach is to
|
1339
|
+
create a <a class="link" href="GtkAlignment.html" title="GtkAlignment"><span class="type">GtkAlignment</span></a> widget, call <a class="link" href="GtkWidget.html#gtk-widget-set-size-request" title="gtk_widget_set_size_request ()"><code class="function">gtk_widget_set_size_request()</code></a>
|
1340
|
+
to give it a size, and place it on the side of the container as
|
1341
|
+
a spacer.
|
1342
|
+
</p>
|
1343
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1344
|
+
<colgroup>
|
1345
|
+
<col align="left" valign="top">
|
1346
|
+
<col>
|
1347
|
+
</colgroup>
|
1348
|
+
<tbody>
|
1349
|
+
<tr>
|
1350
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1351
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1352
|
+
</td>
|
1353
|
+
</tr>
|
1354
|
+
<tr>
|
1355
|
+
<td><p><span class="term"><em class="parameter"><code>border_width</code></em> :</span></p></td>
|
1356
|
+
<td>amount of blank space to leave <span class="emphasis"><em>outside</em></span>
|
1357
|
+
the container. Valid values are in the range 0-65535 pixels.</td>
|
1358
|
+
</tr>
|
1359
|
+
</tbody>
|
1360
|
+
</table></div>
|
1361
|
+
</div>
|
1362
|
+
<hr>
|
1363
|
+
<div class="refsect2">
|
1364
|
+
<a name="gtk-container-propagate-draw"></a><h3>gtk_container_propagate_draw ()</h3>
|
1365
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_propagate_draw (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1366
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1367
|
+
<em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>);</pre>
|
1368
|
+
<p>
|
1369
|
+
When a container receives a call to the draw function, it must send
|
1370
|
+
synthetic <a class="link" href="GtkWidget.html#GtkWidget-draw" title='The "draw" signal'><span class="type">"draw"</span></a> calls to all children that don't have their
|
1371
|
+
own <a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindows</span></a>. This function provides a convenient way of doing this.
|
1372
|
+
A container, when it receives a call to its <a class="link" href="GtkWidget.html#GtkWidget-draw" title='The "draw" signal'><span class="type">"draw"</span></a> function,
|
1373
|
+
calls <a class="link" href="GtkContainer.html#gtk-container-propagate-draw" title="gtk_container_propagate_draw ()"><code class="function">gtk_container_propagate_draw()</code></a> once for each child, passing in
|
1374
|
+
the <em class="parameter"><code>cr</code></em> the container received.
|
1375
|
+
</p>
|
1376
|
+
<p>
|
1377
|
+
<a class="link" href="GtkContainer.html#gtk-container-propagate-draw" title="gtk_container_propagate_draw ()"><code class="function">gtk_container_propagate_draw()</code></a> takes care of translating the origin of <em class="parameter"><code>cr</code></em>,
|
1378
|
+
and deciding whether the draw needs to be sent to the child. It is a
|
1379
|
+
convenient and optimized way of getting the same effect as calling
|
1380
|
+
<a class="link" href="GtkWidget.html#gtk-widget-draw" title="gtk_widget_draw ()"><code class="function">gtk_widget_draw()</code></a> on the child directly.
|
1381
|
+
</p>
|
1382
|
+
<p>
|
1383
|
+
In most cases, a container can simply either inherit the
|
1384
|
+
<a class="link" href="GtkWidget.html#GtkWidget-draw" title='The "draw" signal'><span class="type">"draw"</span></a> implementation from <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>, or do some drawing
|
1385
|
+
and then chain to the ::draw implementation from <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>.
|
1386
|
+
</p>
|
1387
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1388
|
+
<colgroup>
|
1389
|
+
<col align="left" valign="top">
|
1390
|
+
<col>
|
1391
|
+
</colgroup>
|
1392
|
+
<tbody>
|
1393
|
+
<tr>
|
1394
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1395
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1396
|
+
</td>
|
1397
|
+
</tr>
|
1398
|
+
<tr>
|
1399
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1400
|
+
<td>a child of <em class="parameter"><code>container</code></em>
|
1401
|
+
</td>
|
1402
|
+
</tr>
|
1403
|
+
<tr>
|
1404
|
+
<td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
|
1405
|
+
<td>Cairo context as passed to the container. If you want to use <em class="parameter"><code>cr</code></em>
|
1406
|
+
in container's draw function, consider using <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-save"><code class="function">cairo_save()</code></a> and
|
1407
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-restore"><code class="function">cairo_restore()</code></a> before calling this function.</td>
|
1408
|
+
</tr>
|
1409
|
+
</tbody>
|
1410
|
+
</table></div>
|
1411
|
+
</div>
|
1412
|
+
<hr>
|
1413
|
+
<div class="refsect2">
|
1414
|
+
<a name="gtk-container-get-focus-chain"></a><h3>gtk_container_get_focus_chain ()</h3>
|
1415
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_container_get_focus_chain (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1416
|
+
<em class="parameter"><code><span class="type">GList</span> **focusable_widgets</code></em>);</pre>
|
1417
|
+
<p>
|
1418
|
+
Retrieves the focus chain of the container, if one has been
|
1419
|
+
set explicitly. If no focus chain has been explicitly
|
1420
|
+
set, GTK+ computes the focus chain based on the positions
|
1421
|
+
of the children. In that case, GTK+ stores <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> in
|
1422
|
+
<em class="parameter"><code>focusable_widgets</code></em> and returns <code class="literal">FALSE</code>.
|
1423
|
+
</p>
|
1424
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1425
|
+
<colgroup>
|
1426
|
+
<col align="left" valign="top">
|
1427
|
+
<col>
|
1428
|
+
</colgroup>
|
1429
|
+
<tbody>
|
1430
|
+
<tr>
|
1431
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1432
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1433
|
+
</td>
|
1434
|
+
</tr>
|
1435
|
+
<tr>
|
1436
|
+
<td><p><span class="term"><em class="parameter"><code>focusable_widgets</code></em> :</span></p></td>
|
1437
|
+
<td>location
|
1438
|
+
to store the focus chain of the
|
1439
|
+
container, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. You should free this list
|
1440
|
+
using <code class="function">g_list_free()</code> when you are done with it, however
|
1441
|
+
no additional reference count is added to the
|
1442
|
+
individual widgets in the focus chain. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkWidget][<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
|
1443
|
+
</td>
|
1444
|
+
</tr>
|
1445
|
+
<tr>
|
1446
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1447
|
+
<td>
|
1448
|
+
<code class="literal">TRUE</code> if the focus chain of the container
|
1449
|
+
has been set explicitly.</td>
|
1450
|
+
</tr>
|
1451
|
+
</tbody>
|
1452
|
+
</table></div>
|
1453
|
+
</div>
|
1454
|
+
<hr>
|
1455
|
+
<div class="refsect2">
|
1456
|
+
<a name="gtk-container-set-focus-chain"></a><h3>gtk_container_set_focus_chain ()</h3>
|
1457
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_set_focus_chain (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>,
|
1458
|
+
<em class="parameter"><code><span class="type">GList</span> *focusable_widgets</code></em>);</pre>
|
1459
|
+
<p>
|
1460
|
+
Sets a focus chain, overriding the one computed automatically by GTK+.
|
1461
|
+
</p>
|
1462
|
+
<p>
|
1463
|
+
In principle each widget in the chain should be a descendant of the
|
1464
|
+
container, but this is not enforced by this method, since it's allowed
|
1465
|
+
to set the focus chain before you pack the widgets, or have a widget
|
1466
|
+
in the chain that isn't always packed. The necessary checks are done
|
1467
|
+
when the focus chain is actually traversed.
|
1468
|
+
</p>
|
1469
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1470
|
+
<colgroup>
|
1471
|
+
<col align="left" valign="top">
|
1472
|
+
<col>
|
1473
|
+
</colgroup>
|
1474
|
+
<tbody>
|
1475
|
+
<tr>
|
1476
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1477
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1478
|
+
</td>
|
1479
|
+
</tr>
|
1480
|
+
<tr>
|
1481
|
+
<td><p><span class="term"><em class="parameter"><code>focusable_widgets</code></em> :</span></p></td>
|
1482
|
+
<td>the new focus chain. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkWidget]</span>
|
1483
|
+
</td>
|
1484
|
+
</tr>
|
1485
|
+
</tbody>
|
1486
|
+
</table></div>
|
1487
|
+
</div>
|
1488
|
+
<hr>
|
1489
|
+
<div class="refsect2">
|
1490
|
+
<a name="gtk-container-unset-focus-chain"></a><h3>gtk_container_unset_focus_chain ()</h3>
|
1491
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_unset_focus_chain (<em class="parameter"><code><a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container</code></em>);</pre>
|
1492
|
+
<p>
|
1493
|
+
Removes a focus chain explicitly set with <a class="link" href="GtkContainer.html#gtk-container-set-focus-chain" title="gtk_container_set_focus_chain ()"><code class="function">gtk_container_set_focus_chain()</code></a>.
|
1494
|
+
</p>
|
1495
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1496
|
+
<colgroup>
|
1497
|
+
<col align="left" valign="top">
|
1498
|
+
<col>
|
1499
|
+
</colgroup>
|
1500
|
+
<tbody><tr>
|
1501
|
+
<td><p><span class="term"><em class="parameter"><code>container</code></em> :</span></p></td>
|
1502
|
+
<td>a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
1503
|
+
</td>
|
1504
|
+
</tr></tbody>
|
1505
|
+
</table></div>
|
1506
|
+
</div>
|
1507
|
+
<hr>
|
1508
|
+
<div class="refsect2">
|
1509
|
+
<a name="gtk-container-class-find-child-property"></a><h3>gtk_container_class_find_child_property ()</h3>
|
1510
|
+
<pre class="programlisting"><span class="returnvalue">GParamSpec</span> * gtk_container_class_find_child_property
|
1511
|
+
(<em class="parameter"><code><span class="type">GObjectClass</span> *cclass</code></em>,
|
1512
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);</pre>
|
1513
|
+
<p>
|
1514
|
+
Finds a child property of a container class by name.
|
1515
|
+
</p>
|
1516
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1517
|
+
<colgroup>
|
1518
|
+
<col align="left" valign="top">
|
1519
|
+
<col>
|
1520
|
+
</colgroup>
|
1521
|
+
<tbody>
|
1522
|
+
<tr>
|
1523
|
+
<td><p><span class="term"><em class="parameter"><code>cclass</code></em> :</span></p></td>
|
1524
|
+
<td>a <span class="type">GtkContainerClass</span>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GtkContainerClass]</span>
|
1525
|
+
</td>
|
1526
|
+
</tr>
|
1527
|
+
<tr>
|
1528
|
+
<td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
|
1529
|
+
<td>the name of the child property to find</td>
|
1530
|
+
</tr>
|
1531
|
+
<tr>
|
1532
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1533
|
+
<td>the <span class="type">GParamSpec</span> of the child property
|
1534
|
+
or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>class</code></em> has no child property with that name. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1535
|
+
</td>
|
1536
|
+
</tr>
|
1537
|
+
</tbody>
|
1538
|
+
</table></div>
|
1539
|
+
</div>
|
1540
|
+
<hr>
|
1541
|
+
<div class="refsect2">
|
1542
|
+
<a name="gtk-container-class-install-child-property"></a><h3>gtk_container_class_install_child_property ()</h3>
|
1543
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_class_install_child_property
|
1544
|
+
(<em class="parameter"><code><span class="type">GtkContainerClass</span> *cclass</code></em>,
|
1545
|
+
<em class="parameter"><code><span class="type">guint</span> property_id</code></em>,
|
1546
|
+
<em class="parameter"><code><span class="type">GParamSpec</span> *pspec</code></em>);</pre>
|
1547
|
+
<p>
|
1548
|
+
Installs a child property on a container class.
|
1549
|
+
</p>
|
1550
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1551
|
+
<colgroup>
|
1552
|
+
<col align="left" valign="top">
|
1553
|
+
<col>
|
1554
|
+
</colgroup>
|
1555
|
+
<tbody>
|
1556
|
+
<tr>
|
1557
|
+
<td><p><span class="term"><em class="parameter"><code>cclass</code></em> :</span></p></td>
|
1558
|
+
<td>a <span class="type">GtkContainerClass</span>
|
1559
|
+
</td>
|
1560
|
+
</tr>
|
1561
|
+
<tr>
|
1562
|
+
<td><p><span class="term"><em class="parameter"><code>property_id</code></em> :</span></p></td>
|
1563
|
+
<td>the id for the property</td>
|
1564
|
+
</tr>
|
1565
|
+
<tr>
|
1566
|
+
<td><p><span class="term"><em class="parameter"><code>pspec</code></em> :</span></p></td>
|
1567
|
+
<td>the <span class="type">GParamSpec</span> for the property</td>
|
1568
|
+
</tr>
|
1569
|
+
</tbody>
|
1570
|
+
</table></div>
|
1571
|
+
</div>
|
1572
|
+
<hr>
|
1573
|
+
<div class="refsect2">
|
1574
|
+
<a name="gtk-container-class-list-child-properties"></a><h3>gtk_container_class_list_child_properties ()</h3>
|
1575
|
+
<pre class="programlisting"><span class="returnvalue">GParamSpec</span> ** gtk_container_class_list_child_properties
|
1576
|
+
(<em class="parameter"><code><span class="type">GObjectClass</span> *cclass</code></em>,
|
1577
|
+
<em class="parameter"><code><span class="type">guint</span> *n_properties</code></em>);</pre>
|
1578
|
+
<p>
|
1579
|
+
Returns all child properties of a container class.
|
1580
|
+
</p>
|
1581
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1582
|
+
<colgroup>
|
1583
|
+
<col align="left" valign="top">
|
1584
|
+
<col>
|
1585
|
+
</colgroup>
|
1586
|
+
<tbody>
|
1587
|
+
<tr>
|
1588
|
+
<td><p><span class="term"><em class="parameter"><code>cclass</code></em> :</span></p></td>
|
1589
|
+
<td>a <span class="type">GtkContainerClass</span>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GtkContainerClass]</span>
|
1590
|
+
</td>
|
1591
|
+
</tr>
|
1592
|
+
<tr>
|
1593
|
+
<td><p><span class="term"><em class="parameter"><code>n_properties</code></em> :</span></p></td>
|
1594
|
+
<td>location to return the number of child properties found</td>
|
1595
|
+
</tr>
|
1596
|
+
<tr>
|
1597
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1598
|
+
<td>a newly allocated <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>-terminated array of <span class="type">GParamSpec</span>*.
|
1599
|
+
The array must be freed with <code class="function">g_free()</code>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_properties][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
|
1600
|
+
</td>
|
1601
|
+
</tr>
|
1602
|
+
</tbody>
|
1603
|
+
</table></div>
|
1604
|
+
</div>
|
1605
|
+
<hr>
|
1606
|
+
<div class="refsect2">
|
1607
|
+
<a name="gtk-container-class-handle-border-width"></a><h3>gtk_container_class_handle_border_width ()</h3>
|
1608
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_container_class_handle_border_width
|
1609
|
+
(<em class="parameter"><code><span class="type">GtkContainerClass</span> *klass</code></em>);</pre>
|
1610
|
+
<p>
|
1611
|
+
Modifies a subclass of <span class="type">GtkContainerClass</span> to automatically add and
|
1612
|
+
remove the border-width setting on GtkContainer. This allows the
|
1613
|
+
subclass to ignore the border width in its size request and
|
1614
|
+
allocate methods. The intent is for a subclass to invoke this
|
1615
|
+
in its class_init function.
|
1616
|
+
</p>
|
1617
|
+
<p>
|
1618
|
+
<a class="link" href="GtkContainer.html#gtk-container-class-handle-border-width" title="gtk_container_class_handle_border_width ()"><code class="function">gtk_container_class_handle_border_width()</code></a> is necessary because it
|
1619
|
+
would break API too badly to make this behavior the default. So
|
1620
|
+
subclasses must "opt in" to the parent class handling border_width
|
1621
|
+
for them.
|
1622
|
+
</p>
|
1623
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1624
|
+
<colgroup>
|
1625
|
+
<col align="left" valign="top">
|
1626
|
+
<col>
|
1627
|
+
</colgroup>
|
1628
|
+
<tbody><tr>
|
1629
|
+
<td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
|
1630
|
+
<td>the class struct of a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> subclass</td>
|
1631
|
+
</tr></tbody>
|
1632
|
+
</table></div>
|
1633
|
+
</div>
|
1634
|
+
</div>
|
1635
|
+
<div class="refsect1">
|
1636
|
+
<a name="GtkContainer.property-details"></a><h2>Property Details</h2>
|
1637
|
+
<div class="refsect2">
|
1638
|
+
<a name="GtkContainer--border-width"></a><h3>The <code class="literal">"border-width"</code> property</h3>
|
1639
|
+
<pre class="programlisting"> "border-width" <span class="type">guint</span> : Read / Write</pre>
|
1640
|
+
<p>The width of the empty border outside the containers children.</p>
|
1641
|
+
<p>Allowed values: <= 65535</p>
|
1642
|
+
<p>Default value: 0</p>
|
1643
|
+
</div>
|
1644
|
+
<hr>
|
1645
|
+
<div class="refsect2">
|
1646
|
+
<a name="GtkContainer--child"></a><h3>The <code class="literal">"child"</code> property</h3>
|
1647
|
+
<pre class="programlisting"> "child" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Write</pre>
|
1648
|
+
<p>Can be used to add a new child to the container.</p>
|
1649
|
+
</div>
|
1650
|
+
<hr>
|
1651
|
+
<div class="refsect2">
|
1652
|
+
<a name="GtkContainer--resize-mode"></a><h3>The <code class="literal">"resize-mode"</code> property</h3>
|
1653
|
+
<pre class="programlisting"> "resize-mode" <a class="link" href="gtk3-Standard-Enumerations.html#GtkResizeMode" title="enum GtkResizeMode"><span class="type">GtkResizeMode</span></a> : Read / Write</pre>
|
1654
|
+
<p>Specify how resize events are handled.</p>
|
1655
|
+
<p>Default value: GTK_RESIZE_PARENT</p>
|
1656
|
+
</div>
|
1657
|
+
</div>
|
1658
|
+
<div class="refsect1">
|
1659
|
+
<a name="GtkContainer.signal-details"></a><h2>Signal Details</h2>
|
1660
|
+
<div class="refsect2">
|
1661
|
+
<a name="GtkContainer-add"></a><h3>The <code class="literal">"add"</code> signal</h3>
|
1662
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container,
|
1663
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget,
|
1664
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
|
1665
|
+
</div>
|
1666
|
+
<hr>
|
1667
|
+
<div class="refsect2">
|
1668
|
+
<a name="GtkContainer-check-resize"></a><h3>The <code class="literal">"check-resize"</code> signal</h3>
|
1669
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container,
|
1670
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
1671
|
+
</div>
|
1672
|
+
<hr>
|
1673
|
+
<div class="refsect2">
|
1674
|
+
<a name="GtkContainer-remove"></a><h3>The <code class="literal">"remove"</code> signal</h3>
|
1675
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container,
|
1676
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget,
|
1677
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
|
1678
|
+
</div>
|
1679
|
+
<hr>
|
1680
|
+
<div class="refsect2">
|
1681
|
+
<a name="GtkContainer-set-focus-child"></a><h3>The <code class="literal">"set-focus-child"</code> signal</h3>
|
1682
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> *container,
|
1683
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget,
|
1684
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
|
1685
|
+
</div>
|
1686
|
+
</div>
|
1687
|
+
</div>
|
1688
|
+
<div class="footer">
|
1689
|
+
<hr>
|
1690
|
+
Generated by GTK-Doc V1.18.1</div>
|
1691
|
+
</body>
|
1692
|
+
</html>
|