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,3227 @@
|
|
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>GtkCellArea</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="TreeWidgetObjects.html" title="Tree, List and Icon Grid Widgets">
|
9
|
+
<link rel="prev" href="GtkCellLayout.html" title="GtkCellLayout">
|
10
|
+
<link rel="next" href="GtkCellAreaBox.html" title="GtkCellAreaBox">
|
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="GtkCellLayout.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="TreeWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">GTK+ 3 Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="GtkCellAreaBox.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="#GtkCellArea.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkCellArea.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkCellArea.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkCellArea.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
31
|
+
|
|
32
|
+
<a href="#GtkCellArea.properties" class="shortcut">Properties</a>
|
33
|
+
|
|
34
|
+
<a href="#GtkCellArea.signals" class="shortcut">Signals</a>
|
35
|
+
</td></tr>
|
36
|
+
</table>
|
37
|
+
<div class="refentry">
|
38
|
+
<a name="GtkCellArea"></a><div class="titlepage"></div>
|
39
|
+
<div class="refnamediv"><table width="100%"><tr>
|
40
|
+
<td valign="top">
|
41
|
+
<h2><span class="refentrytitle"><a name="GtkCellArea.top_of_page"></a>GtkCellArea</span></h2>
|
42
|
+
<p>GtkCellArea — An abstract class for laying out GtkCellRenderers</p>
|
43
|
+
</td>
|
44
|
+
<td valign="top" align="right"></td>
|
45
|
+
</tr></table></div>
|
46
|
+
<div class="refsynopsisdiv">
|
47
|
+
<a name="GtkCellArea.synopsis"></a><h2>Synopsis</h2>
|
48
|
+
<pre class="synopsis">
|
49
|
+
#include <gtk/gtk.h>
|
50
|
+
|
51
|
+
struct <a class="link" href="GtkCellArea.html#GtkCellArea-struct" title="struct GtkCellArea">GtkCellArea</a>;
|
52
|
+
struct <a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass">GtkCellAreaClass</a>;
|
53
|
+
<span class="returnvalue">gboolean</span> (<a class="link" href="GtkCellArea.html#GtkCellCallback" title="GtkCellCallback ()">*GtkCellCallback</a>) (<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
54
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
|
55
|
+
<span class="returnvalue">gboolean</span> (<a class="link" href="GtkCellArea.html#GtkCellAllocCallback" title="GtkCellAllocCallback ()">*GtkCellAllocCallback</a>) (<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
56
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
57
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_background</code></em>,
|
58
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
|
59
|
+
#define <a class="link" href="GtkCellArea.html#GTK-CELL-AREA-WARN-INVALID-CELL-PROPERTY-ID:CAPS" title="GTK_CELL_AREA_WARN_INVALID_CELL_PROPERTY_ID()">GTK_CELL_AREA_WARN_INVALID_CELL_PROPERTY_ID</a>(object,
|
60
|
+
property_id,
|
61
|
+
pspec)
|
62
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-add" title="gtk_cell_area_add ()">gtk_cell_area_add</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
63
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);
|
64
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-remove" title="gtk_cell_area_remove ()">gtk_cell_area_remove</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
65
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);
|
66
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-has-renderer" title="gtk_cell_area_has_renderer ()">gtk_cell_area_has_renderer</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
67
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);
|
68
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-foreach" title="gtk_cell_area_foreach ()">gtk_cell_area_foreach</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
69
|
+
<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellCallback" title="GtkCellCallback ()"><span class="type">GtkCellCallback</span></a> callback</code></em>,
|
70
|
+
<em class="parameter"><code><span class="type">gpointer</span> callback_data</code></em>);
|
71
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-foreach-alloc" title="gtk_cell_area_foreach_alloc ()">gtk_cell_area_foreach_alloc</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
72
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
73
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
74
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
75
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *background_area</code></em>,
|
76
|
+
<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellAllocCallback" title="GtkCellAllocCallback ()"><span class="type">GtkCellAllocCallback</span></a> callback</code></em>,
|
77
|
+
<em class="parameter"><code><span class="type">gpointer</span> callback_data</code></em>);
|
78
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-event" title="gtk_cell_area_event ()">gtk_cell_area_event</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
79
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
80
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
81
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>,
|
82
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
83
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> flags</code></em>);
|
84
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-render" title="gtk_cell_area_render ()">gtk_cell_area_render</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
85
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
86
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
87
|
+
<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>,
|
88
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *background_area</code></em>,
|
89
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
90
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> flags</code></em>,
|
91
|
+
<em class="parameter"><code><span class="type">gboolean</span> paint_focus</code></em>);
|
92
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-get-cell-allocation" title="gtk_cell_area_get_cell_allocation ()">gtk_cell_area_get_cell_allocation</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
93
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
94
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
95
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
96
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
97
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *allocation</code></em>);
|
98
|
+
<a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="returnvalue">GtkCellRenderer</span></a> * <a class="link" href="GtkCellArea.html#gtk-cell-area-get-cell-at-position" title="gtk_cell_area_get_cell_at_position ()">gtk_cell_area_get_cell_at_position</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
99
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
100
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
101
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
102
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
103
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>,
|
104
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *alloc_area</code></em>);
|
105
|
+
<a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="returnvalue">GtkCellAreaContext</span></a> * <a class="link" href="GtkCellArea.html#gtk-cell-area-create-context" title="gtk_cell_area_create_context ()">gtk_cell_area_create_context</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
|
106
|
+
<a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="returnvalue">GtkCellAreaContext</span></a> * <a class="link" href="GtkCellArea.html#gtk-cell-area-copy-context" title="gtk_cell_area_copy_context ()">gtk_cell_area_copy_context</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
107
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>);
|
108
|
+
<a class="link" href="GtkWidget.html#GtkSizeRequestMode" title="enum GtkSizeRequestMode"><span class="returnvalue">GtkSizeRequestMode</span></a> <a class="link" href="GtkCellArea.html#gtk-cell-area-get-request-mode" title="gtk_cell_area_get_request_mode ()">gtk_cell_area_get_request_mode</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
|
109
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-width" title="gtk_cell_area_get_preferred_width ()">gtk_cell_area_get_preferred_width</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
110
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
111
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
112
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_width</code></em>,
|
113
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_width</code></em>);
|
114
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-height-for-width" title="gtk_cell_area_get_preferred_height_for_width ()">gtk_cell_area_get_preferred_height_for_width</a>
|
115
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
116
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
117
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
118
|
+
<em class="parameter"><code><span class="type">gint</span> width</code></em>,
|
119
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_height</code></em>,
|
120
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_height</code></em>);
|
121
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-height" title="gtk_cell_area_get_preferred_height ()">gtk_cell_area_get_preferred_height</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
122
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
123
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
124
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_height</code></em>,
|
125
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_height</code></em>);
|
126
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-width-for-height" title="gtk_cell_area_get_preferred_width_for_height ()">gtk_cell_area_get_preferred_width_for_height</a>
|
127
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
128
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
129
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
130
|
+
<em class="parameter"><code><span class="type">gint</span> height</code></em>,
|
131
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_width</code></em>,
|
132
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_width</code></em>);
|
133
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="GtkCellArea.html#gtk-cell-area-get-current-path-string" title="gtk_cell_area_get_current_path_string ()">gtk_cell_area_get_current_path_string</a>
|
134
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
|
135
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-apply-attributes" title="gtk_cell_area_apply_attributes ()">gtk_cell_area_apply_attributes</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
136
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
137
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
138
|
+
<em class="parameter"><code><span class="type">gboolean</span> is_expander</code></em>,
|
139
|
+
<em class="parameter"><code><span class="type">gboolean</span> is_expanded</code></em>);
|
140
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-attribute-connect" title="gtk_cell_area_attribute_connect ()">gtk_cell_area_attribute_connect</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
141
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
142
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *attribute</code></em>,
|
143
|
+
<em class="parameter"><code><span class="type">gint</span> column</code></em>);
|
144
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-attribute-disconnect" title="gtk_cell_area_attribute_disconnect ()">gtk_cell_area_attribute_disconnect</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
145
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
146
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *attribute</code></em>);
|
147
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-class-install-cell-property" title="gtk_cell_area_class_install_cell_property ()">gtk_cell_area_class_install_cell_property</a>
|
148
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a> *aclass</code></em>,
|
149
|
+
<em class="parameter"><code><span class="type">guint</span> property_id</code></em>,
|
150
|
+
<em class="parameter"><code><span class="type">GParamSpec</span> *pspec</code></em>);
|
151
|
+
<span class="returnvalue">GParamSpec</span> * <a class="link" href="GtkCellArea.html#gtk-cell-area-class-find-cell-property" title="gtk_cell_area_class_find_cell_property ()">gtk_cell_area_class_find_cell_property</a>
|
152
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a> *aclass</code></em>,
|
153
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);
|
154
|
+
<span class="returnvalue">GParamSpec</span> ** <a class="link" href="GtkCellArea.html#gtk-cell-area-class-list-cell-properties" title="gtk_cell_area_class_list_cell_properties ()">gtk_cell_area_class_list_cell_properties</a>
|
155
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a> *aclass</code></em>,
|
156
|
+
<em class="parameter"><code><span class="type">guint</span> *n_properties</code></em>);
|
157
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-add-with-properties" title="gtk_cell_area_add_with_properties ()">gtk_cell_area_add_with_properties</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
158
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
159
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
160
|
+
<em class="parameter"><code>...</code></em>);
|
161
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-set" title="gtk_cell_area_cell_set ()">gtk_cell_area_cell_set</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
162
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
163
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
164
|
+
<em class="parameter"><code>...</code></em>);
|
165
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-get" title="gtk_cell_area_cell_get ()">gtk_cell_area_cell_get</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
166
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
167
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
168
|
+
<em class="parameter"><code>...</code></em>);
|
169
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-set-valist" title="gtk_cell_area_cell_set_valist ()">gtk_cell_area_cell_set_valist</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
170
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
171
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
|
172
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
|
173
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-get-valist" title="gtk_cell_area_cell_get_valist ()">gtk_cell_area_cell_get_valist</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
174
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
175
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
|
176
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
|
177
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-set-property" title="gtk_cell_area_cell_set_property ()">gtk_cell_area_cell_set_property</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
178
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
179
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
|
180
|
+
<em class="parameter"><code>const <span class="type">GValue</span> *value</code></em>);
|
181
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-get-property" title="gtk_cell_area_cell_get_property ()">gtk_cell_area_cell_get_property</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
182
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
183
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
|
184
|
+
<em class="parameter"><code><span class="type">GValue</span> *value</code></em>);
|
185
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-is-activatable" title="gtk_cell_area_is_activatable ()">gtk_cell_area_is_activatable</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
|
186
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-activate" title="gtk_cell_area_activate ()">gtk_cell_area_activate</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
187
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
188
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
189
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
190
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> flags</code></em>,
|
191
|
+
<em class="parameter"><code><span class="type">gboolean</span> edit_only</code></em>);
|
192
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-focus" title="gtk_cell_area_focus ()">gtk_cell_area_focus</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
193
|
+
<em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkDirectionType" title="enum GtkDirectionType"><span class="type">GtkDirectionType</span></a> direction</code></em>);
|
194
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-set-focus-cell" title="gtk_cell_area_set_focus_cell ()">gtk_cell_area_set_focus_cell</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
195
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);
|
196
|
+
<a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="returnvalue">GtkCellRenderer</span></a> * <a class="link" href="GtkCellArea.html#gtk-cell-area-get-focus-cell" title="gtk_cell_area_get_focus_cell ()">gtk_cell_area_get_focus_cell</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
|
197
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-add-focus-sibling" title="gtk_cell_area_add_focus_sibling ()">gtk_cell_area_add_focus_sibling</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
198
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
199
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *sibling</code></em>);
|
200
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-remove-focus-sibling" title="gtk_cell_area_remove_focus_sibling ()">gtk_cell_area_remove_focus_sibling</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
201
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
202
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *sibling</code></em>);
|
203
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-is-focus-sibling" title="gtk_cell_area_is_focus_sibling ()">gtk_cell_area_is_focus_sibling</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
204
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
205
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *sibling</code></em>);
|
206
|
+
const <span class="returnvalue">GList</span> * <a class="link" href="GtkCellArea.html#gtk-cell-area-get-focus-siblings" title="gtk_cell_area_get_focus_siblings ()">gtk_cell_area_get_focus_siblings</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
207
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);
|
208
|
+
<a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="returnvalue">GtkCellRenderer</span></a> * <a class="link" href="GtkCellArea.html#gtk-cell-area-get-focus-from-sibling" title="gtk_cell_area_get_focus_from_sibling ()">gtk_cell_area_get_focus_from_sibling</a>
|
209
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
210
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);
|
211
|
+
<a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="returnvalue">GtkCellRenderer</span></a> * <a class="link" href="GtkCellArea.html#gtk-cell-area-get-edited-cell" title="gtk_cell_area_get_edited_cell ()">gtk_cell_area_get_edited_cell</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
|
212
|
+
<a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="returnvalue">GtkCellEditable</span></a> * <a class="link" href="GtkCellArea.html#gtk-cell-area-get-edit-widget" title="gtk_cell_area_get_edit_widget ()">gtk_cell_area_get_edit_widget</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
|
213
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-activate-cell" title="gtk_cell_area_activate_cell ()">gtk_cell_area_activate_cell</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
214
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
215
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
216
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>,
|
217
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
218
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> flags</code></em>);
|
219
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-stop-editing" title="gtk_cell_area_stop_editing ()">gtk_cell_area_stop_editing</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
220
|
+
<em class="parameter"><code><span class="type">gboolean</span> canceled</code></em>);
|
221
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-inner-cell-area" title="gtk_cell_area_inner_cell_area ()">gtk_cell_area_inner_cell_area</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
222
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
223
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
224
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *inner_area</code></em>);
|
225
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCellArea.html#gtk-cell-area-request-renderer" title="gtk_cell_area_request_renderer ()">gtk_cell_area_request_renderer</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
226
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
227
|
+
<em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>,
|
228
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
229
|
+
<em class="parameter"><code><span class="type">gint</span> for_size</code></em>,
|
230
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_size</code></em>,
|
231
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_size</code></em>);
|
232
|
+
</pre>
|
233
|
+
</div>
|
234
|
+
<div class="refsect1">
|
235
|
+
<a name="GtkCellArea.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
236
|
+
<pre class="synopsis">
|
237
|
+
GObject
|
238
|
+
+----GInitiallyUnowned
|
239
|
+
+----GtkCellArea
|
240
|
+
+----<a class="link" href="GtkCellAreaBox.html" title="GtkCellAreaBox">GtkCellAreaBox</a>
|
241
|
+
</pre>
|
242
|
+
</div>
|
243
|
+
<div class="refsect1">
|
244
|
+
<a name="GtkCellArea.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
245
|
+
<p>
|
246
|
+
GtkCellArea implements
|
247
|
+
<a class="link" href="GtkCellLayout.html" title="GtkCellLayout">GtkCellLayout</a> and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
248
|
+
</div>
|
249
|
+
<div class="refsect1">
|
250
|
+
<a name="GtkCellArea.properties"></a><h2>Properties</h2>
|
251
|
+
<pre class="synopsis">
|
252
|
+
"<a class="link" href="GtkCellArea.html#GtkCellArea--edit-widget" title='The "edit-widget" property'>edit-widget</a>" <a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a>* : Read
|
253
|
+
"<a class="link" href="GtkCellArea.html#GtkCellArea--edited-cell" title='The "edited-cell" property'>edited-cell</a>" <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>* : Read
|
254
|
+
"<a class="link" href="GtkCellArea.html#GtkCellArea--focus-cell" title='The "focus-cell" property'>focus-cell</a>" <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>* : Read / Write
|
255
|
+
</pre>
|
256
|
+
</div>
|
257
|
+
<div class="refsect1">
|
258
|
+
<a name="GtkCellArea.signals"></a><h2>Signals</h2>
|
259
|
+
<pre class="synopsis">
|
260
|
+
"<a class="link" href="GtkCellArea.html#GtkCellArea-add-editable" title='The "add-editable" signal'>add-editable</a>" : <code class="literal">Run First</code>
|
261
|
+
"<a class="link" href="GtkCellArea.html#GtkCellArea-apply-attributes" title='The "apply-attributes" signal'>apply-attributes</a>" : <code class="literal">Run First</code>
|
262
|
+
"<a class="link" href="GtkCellArea.html#GtkCellArea-focus-changed" title='The "focus-changed" signal'>focus-changed</a>" : <code class="literal">Run First</code>
|
263
|
+
"<a class="link" href="GtkCellArea.html#GtkCellArea-remove-editable" title='The "remove-editable" signal'>remove-editable</a>" : <code class="literal">Run First</code>
|
264
|
+
</pre>
|
265
|
+
</div>
|
266
|
+
<div class="refsect1">
|
267
|
+
<a name="GtkCellArea.description"></a><h2>Description</h2>
|
268
|
+
<p>
|
269
|
+
The <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> is an abstract class for <a class="link" href="GtkCellLayout.html" title="GtkCellLayout"><span class="type">GtkCellLayout</span></a> widgets
|
270
|
+
(also referred to as "layouting widgets") to interface with an
|
271
|
+
arbitrary number of <a href="GtkCellRenderer.html"><span class="type">GtkCellRenderers</span></a> and interact with the user
|
272
|
+
for a given <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> row.
|
273
|
+
</p>
|
274
|
+
<p>
|
275
|
+
The cell area handles events, focus navigation, drawing and
|
276
|
+
size requests and allocations for a given row of data.
|
277
|
+
</p>
|
278
|
+
<p>
|
279
|
+
Usually users dont have to interact with the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> directly
|
280
|
+
unless they are implementing a cell-layouting widget themselves.
|
281
|
+
</p>
|
282
|
+
<p>
|
283
|
+
</p>
|
284
|
+
<div class="refsect2">
|
285
|
+
<a name="cell-area-geometry-management"></a><h3>Requesting area sizes</h3>
|
286
|
+
<p>
|
287
|
+
As outlined in <a class="link" href="GtkWidget.html#geometry-management" title="Height-for-width Geometry Management">GtkWidget's
|
288
|
+
geometry management section</a>, GTK+ uses a height-for-width
|
289
|
+
geometry management system to compute the sizes of widgets and user
|
290
|
+
interfaces. <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> uses the same semantics to calculate the
|
291
|
+
size of an area for an arbitrary number of <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> rows.
|
292
|
+
</p>
|
293
|
+
<p>
|
294
|
+
When requesting the size of a cell area one needs to calculate
|
295
|
+
the size for a handful of rows, and this will be done differently by
|
296
|
+
different layouting widgets. For instance a <a class="link" href="GtkTreeViewColumn.html" title="GtkTreeViewColumn"><span class="type">GtkTreeViewColumn</span></a>
|
297
|
+
always lines up the areas from top to bottom while a <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a>
|
298
|
+
on the other hand might enforce that all areas received the same
|
299
|
+
width and wrap the areas around, requesting height for more cell
|
300
|
+
areas when allocated less width.
|
301
|
+
</p>
|
302
|
+
<p>
|
303
|
+
It's also important for areas to maintain some cell
|
304
|
+
alignments with areas rendered for adjacent rows (cells can
|
305
|
+
appear "columnized" inside an area even when the size of
|
306
|
+
cells are different in each row). For this reason the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
307
|
+
uses a <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> object to store the alignments
|
308
|
+
and sizes along the way (as well as the overall largest minimum
|
309
|
+
and natural size for all the rows which have been calculated
|
310
|
+
with the said context).
|
311
|
+
</p>
|
312
|
+
<p>
|
313
|
+
The <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> is an opaque object specific to the
|
314
|
+
<a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> which created it (see <a class="link" href="GtkCellArea.html#gtk-cell-area-create-context" title="gtk_cell_area_create_context ()"><code class="function">gtk_cell_area_create_context()</code></a>).
|
315
|
+
The owning cell-layouting widget can create as many contexts as
|
316
|
+
it wishes to calculate sizes of rows which should receive the
|
317
|
+
same size in at least one orientation (horizontally or vertically),
|
318
|
+
However, it's important that the same <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> which
|
319
|
+
was used to request the sizes for a given <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> row be
|
320
|
+
used when rendering or processing events for that row.
|
321
|
+
</p>
|
322
|
+
<p>
|
323
|
+
In order to request the width of all the rows at the root level
|
324
|
+
of a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> one would do the following:
|
325
|
+
</p>
|
326
|
+
<div class="example">
|
327
|
+
<a name="idm140520352084752"></a><p class="title"><b>Example 67. Requesting the width of a handful of GtkTreeModel rows</b></p>
|
328
|
+
<div class="example-contents">
|
329
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
330
|
+
<tbody>
|
331
|
+
<tr>
|
332
|
+
<td class="listing_lines" align="right"><pre>1
|
333
|
+
2
|
334
|
+
3
|
335
|
+
4
|
336
|
+
5
|
337
|
+
6
|
338
|
+
7
|
339
|
+
8
|
340
|
+
9
|
341
|
+
10
|
342
|
+
11
|
343
|
+
12
|
344
|
+
13</pre></td>
|
345
|
+
<td class="listing_code"><pre class="programlisting"><span class="usertype">GtkTreeIter</span><span class="normal"> iter</span><span class="symbol">;</span>
|
346
|
+
<span class="usertype">gint</span><span class="normal"> minimum_width</span><span class="symbol">;</span>
|
347
|
+
<span class="usertype">gint</span><span class="normal"> natural_width</span><span class="symbol">;</span>
|
348
|
+
|
349
|
+
<span class="normal">valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter-first">gtk_tree_model_get_iter_first</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">);</span>
|
350
|
+
<span class="keyword">while</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">valid</span><span class="symbol">)</span>
|
351
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
352
|
+
<span class="normal"> </span><span class="function"><a href="GtkCellArea.html#gtk-cell-area-apply-attributes">gtk_cell_area_apply_attributes</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">area</span><span class="symbol">,</span><span class="normal"> model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> FALSE</span><span class="symbol">,</span><span class="normal"> FALSE</span><span class="symbol">);</span>
|
353
|
+
<span class="normal"> </span><span class="function"><a href="GtkCellArea.html#gtk-cell-area-get-preferred-width">gtk_cell_area_get_preferred_width</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">area</span><span class="symbol">,</span><span class="normal"> context</span><span class="symbol">,</span><span class="normal"> widget</span><span class="symbol">,</span><span class="normal"> <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS">NULL</a></span><span class="symbol">,</span><span class="normal"> <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS">NULL</a></span><span class="symbol">);</span>
|
354
|
+
|
355
|
+
<span class="normal"> valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-next">gtk_tree_model_iter_next</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">);</span>
|
356
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
357
|
+
<span class="function"><a href="GtkCellAreaContext.html#gtk-cell-area-context-get-preferred-width">gtk_cell_area_context_get_preferred_width</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">context</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">minimum_width</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">natural_width</span><span class="symbol">);</span></pre></td>
|
358
|
+
</tr>
|
359
|
+
</tbody>
|
360
|
+
</table>
|
361
|
+
</div>
|
362
|
+
|
363
|
+
</div>
|
364
|
+
<p><br class="example-break">
|
365
|
+
Note that in this example it's not important to observe the
|
366
|
+
returned minimum and natural width of the area for each row
|
367
|
+
unless the cell-layouting object is actually interested in the
|
368
|
+
widths of individual rows. The overall width is however stored
|
369
|
+
in the accompanying <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> object and can be consulted
|
370
|
+
at any time.
|
371
|
+
</p>
|
372
|
+
<p>
|
373
|
+
This can be useful since <a class="link" href="GtkCellLayout.html" title="GtkCellLayout"><span class="type">GtkCellLayout</span></a> widgets usually have to
|
374
|
+
support requesting and rendering rows in treemodels with an
|
375
|
+
exceedingly large amount of rows. The <a class="link" href="GtkCellLayout.html" title="GtkCellLayout"><span class="type">GtkCellLayout</span></a> widget in
|
376
|
+
that case would calculate the required width of the rows in an
|
377
|
+
idle or timeout source (see <code class="function">g_timeout_add()</code>) and when the widget
|
378
|
+
is requested its actual width in <a class="link" href="GtkWidget.html#GtkWidgetClass.get-preferred-width"><code class="function">GtkWidgetClass.get_preferred_width()</code></a>
|
379
|
+
it can simply consult the width accumulated so far in the
|
380
|
+
<a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> object.
|
381
|
+
</p>
|
382
|
+
<p>
|
383
|
+
A simple example where rows are rendered from top to bottom and
|
384
|
+
take up the full width of the layouting widget would look like:
|
385
|
+
</p>
|
386
|
+
<div class="example">
|
387
|
+
<a name="idm140520352076464"></a><p class="title"><b>Example 68. A typical <code class="function">get_preferred_width()</code> implementation</b></p>
|
388
|
+
<div class="example-contents">
|
389
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
390
|
+
<tbody>
|
391
|
+
<tr>
|
392
|
+
<td class="listing_lines" align="right"><pre>1
|
393
|
+
2
|
394
|
+
3
|
395
|
+
4
|
396
|
+
5
|
397
|
+
6
|
398
|
+
7
|
399
|
+
8
|
400
|
+
9
|
401
|
+
10
|
402
|
+
11
|
403
|
+
12</pre></td>
|
404
|
+
<td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> </span><span class="type">void</span>
|
405
|
+
<span class="function">foo_get_preferred_width</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">GtkWidget</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">widget</span><span class="symbol">,</span>
|
406
|
+
<span class="normal"> </span><span class="usertype">gint</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">minimum_size</span><span class="symbol">,</span>
|
407
|
+
<span class="normal"> </span><span class="usertype">gint</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">natural_size</span><span class="symbol">)</span>
|
408
|
+
<span class="cbracket">{</span>
|
409
|
+
<span class="normal"> </span><span class="usertype">Foo</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">foo </span><span class="symbol">=</span><span class="normal"> </span><span class="function">FOO</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">widget</span><span class="symbol">);</span>
|
410
|
+
<span class="normal"> </span><span class="usertype">FooPrivate</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">priv </span><span class="symbol">=</span><span class="normal"> foo</span><span class="symbol">-></span><span class="normal">priv</span><span class="symbol">;</span>
|
411
|
+
|
412
|
+
<span class="normal"> </span><span class="function">foo_ensure_at_least_one_handfull_of_rows_have_been_requested</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">foo</span><span class="symbol">);</span>
|
413
|
+
|
414
|
+
<span class="normal"> </span><span class="function"><a href="GtkCellAreaContext.html#gtk-cell-area-context-get-preferred-width">gtk_cell_area_context_get_preferred_width</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">priv</span><span class="symbol">-></span><span class="normal">context</span><span class="symbol">,</span><span class="normal"> minimum_size</span><span class="symbol">,</span><span class="normal"> natural_size</span><span class="symbol">);</span>
|
415
|
+
<span class="cbracket">}</span></pre></td>
|
416
|
+
</tr>
|
417
|
+
</tbody>
|
418
|
+
</table>
|
419
|
+
</div>
|
420
|
+
|
421
|
+
</div>
|
422
|
+
<p><br class="example-break">
|
423
|
+
In the above example the Foo widget has to make sure that some
|
424
|
+
row sizes have been calculated (the amount of rows that Foo judged
|
425
|
+
was appropriate to request space for in a single timeout iteration)
|
426
|
+
before simply returning the amount of space required by the area via
|
427
|
+
the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a>.
|
428
|
+
</p>
|
429
|
+
<p>
|
430
|
+
Requesting the height for width (or width for height) of an area is
|
431
|
+
a similar task except in this case the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> does not
|
432
|
+
store the data (actually, it does not know how much space the layouting
|
433
|
+
widget plans to allocate it for every row. It's up to the layouting
|
434
|
+
widget to render each row of data with the appropriate height and
|
435
|
+
width which was requested by the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>).
|
436
|
+
</p>
|
437
|
+
<p>
|
438
|
+
In order to request the height for width of all the rows at the
|
439
|
+
root level of a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> one would do the following:
|
440
|
+
</p>
|
441
|
+
<div class="example">
|
442
|
+
<a name="idm140520352069184"></a><p class="title"><b>Example 69. Requesting the height for width of a handful of GtkTreeModel rows</b></p>
|
443
|
+
<div class="example-contents">
|
444
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
445
|
+
<tbody>
|
446
|
+
<tr>
|
447
|
+
<td class="listing_lines" align="right"><pre>1
|
448
|
+
2
|
449
|
+
3
|
450
|
+
4
|
451
|
+
5
|
452
|
+
6
|
453
|
+
7
|
454
|
+
8
|
455
|
+
9
|
456
|
+
10
|
457
|
+
11
|
458
|
+
12
|
459
|
+
13
|
460
|
+
14
|
461
|
+
15
|
462
|
+
16
|
463
|
+
17
|
464
|
+
18
|
465
|
+
19
|
466
|
+
20
|
467
|
+
21</pre></td>
|
468
|
+
<td class="listing_code"><pre class="programlisting"><span class="usertype">GtkTreeIter</span><span class="normal"> iter</span><span class="symbol">;</span>
|
469
|
+
<span class="usertype">gint</span><span class="normal"> minimum_height</span><span class="symbol">;</span>
|
470
|
+
<span class="usertype">gint</span><span class="normal"> natural_height</span><span class="symbol">;</span>
|
471
|
+
<span class="usertype">gint</span><span class="normal"> full_minimum_height </span><span class="symbol">=</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
|
472
|
+
<span class="usertype">gint</span><span class="normal"> full_natural_height </span><span class="symbol">=</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
|
473
|
+
|
474
|
+
<span class="normal">valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter-first">gtk_tree_model_get_iter_first</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">);</span>
|
475
|
+
<span class="keyword">while</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">valid</span><span class="symbol">)</span>
|
476
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
477
|
+
<span class="normal"> </span><span class="function"><a href="GtkCellArea.html#gtk-cell-area-apply-attributes">gtk_cell_area_apply_attributes</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">area</span><span class="symbol">,</span><span class="normal"> model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> FALSE</span><span class="symbol">,</span><span class="normal"> FALSE</span><span class="symbol">);</span>
|
478
|
+
<span class="normal"> </span><span class="function"><a href="GtkCellArea.html#gtk-cell-area-get-preferred-height-for-width">gtk_cell_area_get_preferred_height_for_width</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">area</span><span class="symbol">,</span><span class="normal"> context</span><span class="symbol">,</span><span class="normal"> widget</span><span class="symbol">,</span>
|
479
|
+
<span class="normal"> width</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">minimum_height</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">natural_height</span><span class="symbol">);</span>
|
480
|
+
|
481
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">width_is_for_allocation</span><span class="symbol">)</span>
|
482
|
+
<span class="normal"> </span><span class="function">cache_row_height</span><span class="normal"> </span><span class="symbol">(&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> minimum_height</span><span class="symbol">,</span><span class="normal"> natural_height</span><span class="symbol">);</span>
|
483
|
+
|
484
|
+
<span class="normal"> full_minimum_height </span><span class="symbol">+=</span><span class="normal"> minimum_height</span><span class="symbol">;</span>
|
485
|
+
<span class="normal"> full_natural_height </span><span class="symbol">+=</span><span class="normal"> natural_height</span><span class="symbol">;</span>
|
486
|
+
|
487
|
+
<span class="normal"> valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-next">gtk_tree_model_iter_next</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">);</span>
|
488
|
+
<span class="normal"> </span><span class="cbracket">}</span></pre></td>
|
489
|
+
</tr>
|
490
|
+
</tbody>
|
491
|
+
</table>
|
492
|
+
</div>
|
493
|
+
|
494
|
+
</div>
|
495
|
+
<p><br class="example-break">
|
496
|
+
Note that in the above example we would need to cache the heights
|
497
|
+
returned for each row so that we would know what sizes to render the
|
498
|
+
areas for each row. However we would only want to really cache the
|
499
|
+
heights if the request is intended for the layouting widgets real
|
500
|
+
allocation.
|
501
|
+
</p>
|
502
|
+
<p>
|
503
|
+
In some cases the layouting widget is requested the height for an
|
504
|
+
arbitrary for_width, this is a special case for layouting widgets
|
505
|
+
who need to request size for tens of thousands of rows. For this
|
506
|
+
case it's only important that the layouting widget calculate
|
507
|
+
one reasonably sized chunk of rows and return that height
|
508
|
+
synchronously. The reasoning here is that any layouting widget is
|
509
|
+
at least capable of synchronously calculating enough height to fill
|
510
|
+
the screen height (or scrolled window height) in response to a single
|
511
|
+
call to <a class="link" href="GtkWidget.html#GtkWidgetClass.get-preferred-height-for-width"><code class="function">GtkWidgetClass.get_preferred_height_for_width()</code></a>. Returning
|
512
|
+
a perfect height for width that is larger than the screen area is
|
513
|
+
inconsequential since after the layouting receives an allocation
|
514
|
+
from a scrolled window it simply continues to drive the scrollbar
|
515
|
+
values while more and more height is required for the row heights
|
516
|
+
that are calculated in the background.
|
517
|
+
</p>
|
518
|
+
</div>
|
519
|
+
<p>
|
520
|
+
</p>
|
521
|
+
<hr>
|
522
|
+
<div class="refsect2">
|
523
|
+
<a name="cell-area-rendering"></a><h3>Rendering Areas</h3>
|
524
|
+
<p>
|
525
|
+
Once area sizes have been aquired at least for the rows in the
|
526
|
+
visible area of the layouting widget they can be rendered at
|
527
|
+
<a class="link" href="GtkWidget.html#GtkWidgetClass.draw"><code class="function">GtkWidgetClass.draw()</code></a> time.
|
528
|
+
</p>
|
529
|
+
<p>
|
530
|
+
A crude example of how to render all the rows at the root level
|
531
|
+
runs as follows:
|
532
|
+
</p>
|
533
|
+
<div class="example">
|
534
|
+
<a name="idm140520352061600"></a><p class="title"><b>Example 70. Requesting the width of a handful of GtkTreeModel rows</b></p>
|
535
|
+
<div class="example-contents">
|
536
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
537
|
+
<tbody>
|
538
|
+
<tr>
|
539
|
+
<td class="listing_lines" align="right"><pre>1
|
540
|
+
2
|
541
|
+
3
|
542
|
+
4
|
543
|
+
5
|
544
|
+
6
|
545
|
+
7
|
546
|
+
8
|
547
|
+
9
|
548
|
+
10
|
549
|
+
11
|
550
|
+
12
|
551
|
+
13
|
552
|
+
14
|
553
|
+
15
|
554
|
+
16
|
555
|
+
17
|
556
|
+
18
|
557
|
+
19
|
558
|
+
20
|
559
|
+
21
|
560
|
+
22</pre></td>
|
561
|
+
<td class="listing_code"><pre class="programlisting"><span class="usertype">GtkAllocation</span><span class="normal"> allocation</span><span class="symbol">;</span>
|
562
|
+
<span class="usertype">GdkRectangle</span><span class="normal"> cell_area </span><span class="symbol">=</span><span class="normal"> </span><span class="cbracket">{</span><span class="normal"> </span><span class="number">0</span><span class="symbol">,</span><span class="normal"> </span><span class="cbracket">}</span><span class="symbol">;</span>
|
563
|
+
<span class="usertype">GtkTreeIter</span><span class="normal"> iter</span><span class="symbol">;</span>
|
564
|
+
<span class="usertype">gint</span><span class="normal"> minimum_width</span><span class="symbol">;</span>
|
565
|
+
<span class="usertype">gint</span><span class="normal"> natural_width</span><span class="symbol">;</span>
|
566
|
+
|
567
|
+
<span class="function"><a href="GtkWidget.html#gtk-widget-get-allocation">gtk_widget_get_allocation</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">widget</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">allocation</span><span class="symbol">);</span>
|
568
|
+
<span class="normal">cell_area</span><span class="symbol">.</span><span class="normal">width </span><span class="symbol">=</span><span class="normal"> allocation</span><span class="symbol">.</span><span class="normal">width</span><span class="symbol">;</span>
|
569
|
+
|
570
|
+
<span class="normal">valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter-first">gtk_tree_model_get_iter_first</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">);</span>
|
571
|
+
<span class="keyword">while</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">valid</span><span class="symbol">)</span>
|
572
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
573
|
+
<span class="normal"> cell_area</span><span class="symbol">.</span><span class="normal">height </span><span class="symbol">=</span><span class="normal"> </span><span class="function">get_cached_height_for_row</span><span class="normal"> </span><span class="symbol">(&</span><span class="normal">iter</span><span class="symbol">);</span>
|
574
|
+
|
575
|
+
<span class="normal"> </span><span class="function"><a href="GtkCellArea.html#gtk-cell-area-apply-attributes">gtk_cell_area_apply_attributes</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">area</span><span class="symbol">,</span><span class="normal"> model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> FALSE</span><span class="symbol">,</span><span class="normal"> FALSE</span><span class="symbol">);</span>
|
576
|
+
<span class="normal"> </span><span class="function"><a href="GtkCellArea.html#gtk-cell-area-render">gtk_cell_area_render</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">area</span><span class="symbol">,</span><span class="normal"> context</span><span class="symbol">,</span><span class="normal"> widget</span><span class="symbol">,</span><span class="normal"> cr</span><span class="symbol">,</span>
|
577
|
+
<span class="normal"> </span><span class="symbol">&</span><span class="normal">cell_area</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">cell_area</span><span class="symbol">,</span><span class="normal"> state_flags</span><span class="symbol">,</span><span class="normal"> FALSE</span><span class="symbol">);</span>
|
578
|
+
|
579
|
+
<span class="normal"> cell_area</span><span class="symbol">.</span><span class="normal">y </span><span class="symbol">+=</span><span class="normal"> cell_area</span><span class="symbol">.</span><span class="normal">height</span><span class="symbol">;</span>
|
580
|
+
|
581
|
+
<span class="normal"> valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-next">gtk_tree_model_iter_next</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">);</span>
|
582
|
+
<span class="normal"> </span><span class="cbracket">}</span></pre></td>
|
583
|
+
</tr>
|
584
|
+
</tbody>
|
585
|
+
</table>
|
586
|
+
</div>
|
587
|
+
|
588
|
+
</div>
|
589
|
+
<p><br class="example-break">
|
590
|
+
Note that the cached height in this example really depends on how
|
591
|
+
the layouting widget works. The layouting widget might decide to
|
592
|
+
give every row its minimum or natural height or, if the model content
|
593
|
+
is expected to fit inside the layouting widget without scrolling, it
|
594
|
+
would make sense to calculate the allocation for each row at
|
595
|
+
<a class="link" href="GtkWidget.html#GtkWidget-size-allocate" title='The "size-allocate" signal'><span class="type">"size-allocate"</span></a> time 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>.
|
596
|
+
</p>
|
597
|
+
</div>
|
598
|
+
<p>
|
599
|
+
</p>
|
600
|
+
<hr>
|
601
|
+
<div class="refsect2">
|
602
|
+
<a name="cell-area-events-and-focus"></a><h3>Handling Events and Driving Keyboard Focus</h3>
|
603
|
+
<p>
|
604
|
+
Passing events to the area is as simple as handling events on any
|
605
|
+
normal widget and then passing them to the <a class="link" href="GtkCellArea.html#gtk-cell-area-event" title="gtk_cell_area_event ()"><code class="function">gtk_cell_area_event()</code></a>
|
606
|
+
API as they come in. Usually <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> is only interested in
|
607
|
+
button events, however some customized derived areas can be implemented
|
608
|
+
who are interested in handling other events. Handling an event can
|
609
|
+
trigger the <a class="link" href="GtkCellArea.html#GtkCellArea-focus-changed" title='The "focus-changed" signal'><span class="type">"focus-changed"</span></a> signal to fire; as well as
|
610
|
+
<a class="link" href="GtkCellArea.html#GtkCellArea-add-editable" title='The "add-editable" signal'><span class="type">"add-editable"</span></a> in the case that an editable cell was
|
611
|
+
clicked and needs to start editing. You can call
|
612
|
+
<a class="link" href="GtkCellArea.html#gtk-cell-area-stop-editing" title="gtk_cell_area_stop_editing ()"><code class="function">gtk_cell_area_stop_editing()</code></a> at any time to cancel any cell editing
|
613
|
+
that is currently in progress.
|
614
|
+
</p>
|
615
|
+
<p>
|
616
|
+
The <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> drives keyboard focus from cell to cell in a way
|
617
|
+
similar to <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>. For layouting widgets that support giving
|
618
|
+
focus to cells it's important to remember to pass <a class="link" href="GtkCellRenderer.html#GTK-CELL-RENDERER-FOCUSED:CAPS"><code class="literal">GTK_CELL_RENDERER_FOCUSED</code></a>
|
619
|
+
to the area functions for the row that has focus and to tell the
|
620
|
+
area to paint the focus at render time.
|
621
|
+
</p>
|
622
|
+
<p>
|
623
|
+
Layouting widgets that accept focus on cells should implement the
|
624
|
+
<a class="link" href="GtkWidget.html#GtkWidgetClass.focus"><code class="function">GtkWidgetClass.focus()</code></a> virtual method. The layouting widget is always
|
625
|
+
responsible for knowing where <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> rows are rendered inside
|
626
|
+
the widget, so at <a class="link" href="GtkWidget.html#GtkWidgetClass.focus"><code class="function">GtkWidgetClass.focus()</code></a> time the layouting widget
|
627
|
+
should use the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> methods to navigate focus inside the area
|
628
|
+
and then observe the GtkDirectionType to pass the focus to adjacent
|
629
|
+
rows and areas.
|
630
|
+
</p>
|
631
|
+
<p>
|
632
|
+
A basic example of how the <a class="link" href="GtkWidget.html#GtkWidgetClass.focus"><code class="function">GtkWidgetClass.focus()</code></a> virtual method
|
633
|
+
should be implemented:
|
634
|
+
</p>
|
635
|
+
<div class="example">
|
636
|
+
<a name="idm140520352042864"></a><p class="title"><b>Example 71. Implementing keyboard focus navigation</b></p>
|
637
|
+
<div class="example-contents">
|
638
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
639
|
+
<tbody>
|
640
|
+
<tr>
|
641
|
+
<td class="listing_lines" align="right"><pre>1
|
642
|
+
2
|
643
|
+
3
|
644
|
+
4
|
645
|
+
5
|
646
|
+
6
|
647
|
+
7
|
648
|
+
8
|
649
|
+
9
|
650
|
+
10
|
651
|
+
11
|
652
|
+
12
|
653
|
+
13
|
654
|
+
14
|
655
|
+
15
|
656
|
+
16
|
657
|
+
17
|
658
|
+
18
|
659
|
+
19
|
660
|
+
20
|
661
|
+
21
|
662
|
+
22
|
663
|
+
23
|
664
|
+
24
|
665
|
+
25
|
666
|
+
26
|
667
|
+
27
|
668
|
+
28
|
669
|
+
29
|
670
|
+
30
|
671
|
+
31
|
672
|
+
32
|
673
|
+
33
|
674
|
+
34
|
675
|
+
35
|
676
|
+
36
|
677
|
+
37
|
678
|
+
38
|
679
|
+
39
|
680
|
+
40
|
681
|
+
41
|
682
|
+
42
|
683
|
+
43
|
684
|
+
44
|
685
|
+
45
|
686
|
+
46
|
687
|
+
47
|
688
|
+
48
|
689
|
+
49
|
690
|
+
50
|
691
|
+
51
|
692
|
+
52
|
693
|
+
53
|
694
|
+
54
|
695
|
+
55</pre></td>
|
696
|
+
<td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> gboolean</span>
|
697
|
+
<span class="function">foo_focus</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">GtkWidget</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">widget</span><span class="symbol">,</span>
|
698
|
+
<span class="normal"> </span><span class="usertype">GtkDirectionType</span><span class="normal"> direction</span><span class="symbol">)</span>
|
699
|
+
<span class="cbracket">{</span>
|
700
|
+
<span class="normal"> </span><span class="usertype">Foo</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">foo </span><span class="symbol">=</span><span class="normal"> </span><span class="function">FOO</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">widget</span><span class="symbol">);</span>
|
701
|
+
<span class="normal"> </span><span class="usertype">FooPrivate</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">priv </span><span class="symbol">=</span><span class="normal"> foo</span><span class="symbol">-></span><span class="normal">priv</span><span class="symbol">;</span>
|
702
|
+
<span class="normal"> </span><span class="usertype">gint</span><span class="normal"> focus_row</span><span class="symbol">;</span>
|
703
|
+
<span class="normal"> </span><span class="usertype">gboolean</span><span class="normal"> have_focus </span><span class="symbol">=</span><span class="normal"> FALSE</span><span class="symbol">;</span>
|
704
|
+
|
705
|
+
<span class="normal"> focus_row </span><span class="symbol">=</span><span class="normal"> priv</span><span class="symbol">-></span><span class="normal">focus_row</span><span class="symbol">;</span>
|
706
|
+
|
707
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(!</span><span class="function"><a href="GtkWidget.html#gtk-widget-has-focus">gtk_widget_has_focus</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">widget</span><span class="symbol">))</span>
|
708
|
+
<span class="normal"> </span><span class="function"><a href="GtkWidget.html#gtk-widget-grab-focus">gtk_widget_grab_focus</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">widget</span><span class="symbol">);</span>
|
709
|
+
|
710
|
+
<span class="normal"> valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-nth-child">gtk_tree_model_iter_nth_child</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">priv</span><span class="symbol">-></span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS">NULL</a></span><span class="symbol">,</span><span class="normal"> priv</span><span class="symbol">-></span><span class="normal">focus_row</span><span class="symbol">);</span>
|
711
|
+
<span class="normal"> </span><span class="keyword">while</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">valid</span><span class="symbol">)</span>
|
712
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
713
|
+
<span class="normal"> </span><span class="function"><a href="GtkCellArea.html#gtk-cell-area-apply-attributes">gtk_cell_area_apply_attributes</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">priv</span><span class="symbol">-></span><span class="normal">area</span><span class="symbol">,</span><span class="normal"> priv</span><span class="symbol">-></span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> FALSE</span><span class="symbol">,</span><span class="normal"> FALSE</span><span class="symbol">);</span>
|
714
|
+
|
715
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="GtkCellArea.html#gtk-cell-area-focus">gtk_cell_area_focus</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">priv</span><span class="symbol">-></span><span class="normal">area</span><span class="symbol">,</span><span class="normal"> direction</span><span class="symbol">))</span>
|
716
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
717
|
+
<span class="normal"> priv</span><span class="symbol">-></span><span class="normal">focus_row </span><span class="symbol">=</span><span class="normal"> focus_row</span><span class="symbol">;</span>
|
718
|
+
<span class="normal"> have_focus </span><span class="symbol">=</span><span class="normal"> TRUE</span><span class="symbol">;</span>
|
719
|
+
<span class="normal"> </span><span class="keyword">break</span><span class="symbol">;</span>
|
720
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
721
|
+
<span class="normal"> </span><span class="keyword">else</span>
|
722
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
723
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">direction </span><span class="symbol">==</span><span class="normal"> <a href="gtk3-Standard-Enumerations.html#GTK-DIR-RIGHT:CAPS">GTK_DIR_RIGHT</a> </span><span class="symbol">||</span>
|
724
|
+
<span class="normal"> direction </span><span class="symbol">==</span><span class="normal"> <a href="gtk3-Standard-Enumerations.html#GTK-DIR-LEFT:CAPS">GTK_DIR_LEFT</a></span><span class="symbol">)</span>
|
725
|
+
<span class="normal"> </span><span class="keyword">break</span><span class="symbol">;</span>
|
726
|
+
<span class="normal"> </span><span class="keyword">else</span><span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">direction </span><span class="symbol">==</span><span class="normal"> <a href="gtk3-Standard-Enumerations.html#GTK-DIR-UP:CAPS">GTK_DIR_UP</a> </span><span class="symbol">||</span>
|
727
|
+
<span class="normal"> direction </span><span class="symbol">==</span><span class="normal"> <a href="gtk3-Standard-Enumerations.html#GTK-DIR-TAB-BACKWARD:CAPS">GTK_DIR_TAB_BACKWARD</a></span><span class="symbol">)</span>
|
728
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
729
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">focus_row </span><span class="symbol">==</span><span class="normal"> </span><span class="number">0</span><span class="symbol">)</span>
|
730
|
+
<span class="normal"> </span><span class="keyword">break</span><span class="symbol">;</span>
|
731
|
+
<span class="normal"> </span><span class="keyword">else</span>
|
732
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
733
|
+
<span class="normal"> focus_row</span><span class="symbol">--;</span>
|
734
|
+
<span class="normal"> valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-nth-child">gtk_tree_model_iter_nth_child</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">priv</span><span class="symbol">-></span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS">NULL</a></span><span class="symbol">,</span><span class="normal"> focus_row</span><span class="symbol">);</span>
|
735
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
736
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
737
|
+
<span class="normal"> </span><span class="keyword">else</span>
|
738
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
739
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">focus_row </span><span class="symbol">==</span><span class="normal"> last_row</span><span class="symbol">)</span>
|
740
|
+
<span class="normal"> </span><span class="keyword">break</span><span class="symbol">;</span>
|
741
|
+
<span class="normal"> </span><span class="keyword">else</span>
|
742
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
743
|
+
<span class="normal"> focus_row</span><span class="symbol">++;</span>
|
744
|
+
<span class="normal"> valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-next">gtk_tree_model_iter_next</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">priv</span><span class="symbol">-></span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&</span><span class="normal">iter</span><span class="symbol">);</span>
|
745
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
746
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
747
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
748
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
749
|
+
<span class="normal"> </span><span class="keyword">return</span><span class="normal"> have_focus</span><span class="symbol">;</span>
|
750
|
+
<span class="cbracket">}</span></pre></td>
|
751
|
+
</tr>
|
752
|
+
</tbody>
|
753
|
+
</table>
|
754
|
+
</div>
|
755
|
+
|
756
|
+
</div>
|
757
|
+
<p><br class="example-break">
|
758
|
+
Note that the layouting widget is responsible for matching the
|
759
|
+
GtkDirectionType values to the way it lays out its cells.
|
760
|
+
</p>
|
761
|
+
</div>
|
762
|
+
<p>
|
763
|
+
</p>
|
764
|
+
<hr>
|
765
|
+
<div class="refsect2">
|
766
|
+
<a name="cell-properties"></a><h3>Cell Properties</h3>
|
767
|
+
<p>
|
768
|
+
The <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> introduces <span class="emphasis"><em>cell properties</em></span>
|
769
|
+
for <a href="GtkCellRenderer.html"><span class="type">GtkCellRenderers</span></a> in very much the same way that <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a>
|
770
|
+
introduces <a class="link" href="GtkContainer.html#child-properties" title="Child properties">child properties</a>
|
771
|
+
for <a href="GtkWidget.html"><span class="type">GtkWidgets</span></a>. This provides some general interfaces for defining
|
772
|
+
the relationship cell areas have with their cells. For instance in a
|
773
|
+
<a class="link" href="GtkCellAreaBox.html" title="GtkCellAreaBox"><span class="type">GtkCellAreaBox</span></a> a cell might "expand" and receive extra space when
|
774
|
+
the area is allocated more than its full natural request, or a cell
|
775
|
+
might be configured to "align" with adjacent rows which were requested
|
776
|
+
and rendered with the same <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a>.
|
777
|
+
</p>
|
778
|
+
<p>
|
779
|
+
Use <a class="link" href="GtkCellArea.html#gtk-cell-area-class-install-cell-property" title="gtk_cell_area_class_install_cell_property ()"><code class="function">gtk_cell_area_class_install_cell_property()</code></a> to install cell
|
780
|
+
properties for a cell area class and <a class="link" href="GtkCellArea.html#gtk-cell-area-class-find-cell-property" title="gtk_cell_area_class_find_cell_property ()"><code class="function">gtk_cell_area_class_find_cell_property()</code></a>
|
781
|
+
or <a class="link" href="GtkCellArea.html#gtk-cell-area-class-list-cell-properties" title="gtk_cell_area_class_list_cell_properties ()"><code class="function">gtk_cell_area_class_list_cell_properties()</code></a> to get information about
|
782
|
+
existing cell properties.
|
783
|
+
</p>
|
784
|
+
<p>
|
785
|
+
To set the value of a cell property, use <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-set-property" title="gtk_cell_area_cell_set_property ()"><code class="function">gtk_cell_area_cell_set_property()</code></a>,
|
786
|
+
<a class="link" href="GtkCellArea.html#gtk-cell-area-cell-set" title="gtk_cell_area_cell_set ()"><code class="function">gtk_cell_area_cell_set()</code></a> or <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-set-valist" title="gtk_cell_area_cell_set_valist ()"><code class="function">gtk_cell_area_cell_set_valist()</code></a>. To obtain
|
787
|
+
the value of a cell property, use <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-get-property" title="gtk_cell_area_cell_get_property ()"><code class="function">gtk_cell_area_cell_get_property()</code></a>,
|
788
|
+
<a class="link" href="GtkCellArea.html#gtk-cell-area-cell-get" title="gtk_cell_area_cell_get ()"><code class="function">gtk_cell_area_cell_get()</code></a> or <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-get-valist" title="gtk_cell_area_cell_get_valist ()"><code class="function">gtk_cell_area_cell_get_valist()</code></a>.
|
789
|
+
</p>
|
790
|
+
</div>
|
791
|
+
<p>
|
792
|
+
</p>
|
793
|
+
</div>
|
794
|
+
<div class="refsect1">
|
795
|
+
<a name="GtkCellArea.details"></a><h2>Details</h2>
|
796
|
+
<div class="refsect2">
|
797
|
+
<a name="GtkCellArea-struct"></a><h3>struct GtkCellArea</h3>
|
798
|
+
<pre class="programlisting">struct GtkCellArea;</pre>
|
799
|
+
</div>
|
800
|
+
<hr>
|
801
|
+
<div class="refsect2">
|
802
|
+
<a name="GtkCellAreaClass"></a><h3>struct GtkCellAreaClass</h3>
|
803
|
+
<pre class="programlisting">struct GtkCellAreaClass {
|
804
|
+
/* Basic methods */
|
805
|
+
void (* add) (GtkCellArea *area,
|
806
|
+
GtkCellRenderer *renderer);
|
807
|
+
void (* remove) (GtkCellArea *area,
|
808
|
+
GtkCellRenderer *renderer);
|
809
|
+
void (* foreach) (GtkCellArea *area,
|
810
|
+
GtkCellCallback callback,
|
811
|
+
gpointer callback_data);
|
812
|
+
void (* foreach_alloc) (GtkCellArea *area,
|
813
|
+
GtkCellAreaContext *context,
|
814
|
+
GtkWidget *widget,
|
815
|
+
const GdkRectangle *cell_area,
|
816
|
+
const GdkRectangle *background_area,
|
817
|
+
GtkCellAllocCallback callback,
|
818
|
+
gpointer callback_data);
|
819
|
+
gint (* event) (GtkCellArea *area,
|
820
|
+
GtkCellAreaContext *context,
|
821
|
+
GtkWidget *widget,
|
822
|
+
GdkEvent *event,
|
823
|
+
const GdkRectangle *cell_area,
|
824
|
+
GtkCellRendererState flags);
|
825
|
+
void (* render) (GtkCellArea *area,
|
826
|
+
GtkCellAreaContext *context,
|
827
|
+
GtkWidget *widget,
|
828
|
+
cairo_t *cr,
|
829
|
+
const GdkRectangle *background_area,
|
830
|
+
const GdkRectangle *cell_area,
|
831
|
+
GtkCellRendererState flags,
|
832
|
+
gboolean paint_focus);
|
833
|
+
void (* apply_attributes) (GtkCellArea *area,
|
834
|
+
GtkTreeModel *tree_model,
|
835
|
+
GtkTreeIter *iter,
|
836
|
+
gboolean is_expander,
|
837
|
+
gboolean is_expanded);
|
838
|
+
|
839
|
+
/* Geometry */
|
840
|
+
GtkCellAreaContext *(* create_context) (GtkCellArea *area);
|
841
|
+
GtkCellAreaContext *(* copy_context) (GtkCellArea *area,
|
842
|
+
GtkCellAreaContext *context);
|
843
|
+
GtkSizeRequestMode (* get_request_mode) (GtkCellArea *area);
|
844
|
+
void (* get_preferred_width) (GtkCellArea *area,
|
845
|
+
GtkCellAreaContext *context,
|
846
|
+
GtkWidget *widget,
|
847
|
+
gint *minimum_width,
|
848
|
+
gint *natural_width);
|
849
|
+
void (* get_preferred_height_for_width) (GtkCellArea *area,
|
850
|
+
GtkCellAreaContext *context,
|
851
|
+
GtkWidget *widget,
|
852
|
+
gint width,
|
853
|
+
gint *minimum_height,
|
854
|
+
gint *natural_height);
|
855
|
+
void (* get_preferred_height) (GtkCellArea *area,
|
856
|
+
GtkCellAreaContext *context,
|
857
|
+
GtkWidget *widget,
|
858
|
+
gint *minimum_height,
|
859
|
+
gint *natural_height);
|
860
|
+
void (* get_preferred_width_for_height) (GtkCellArea *area,
|
861
|
+
GtkCellAreaContext *context,
|
862
|
+
GtkWidget *widget,
|
863
|
+
gint height,
|
864
|
+
gint *minimum_width,
|
865
|
+
gint *natural_width);
|
866
|
+
|
867
|
+
/* Cell Properties */
|
868
|
+
void (* set_cell_property) (GtkCellArea *area,
|
869
|
+
GtkCellRenderer *renderer,
|
870
|
+
guint property_id,
|
871
|
+
const GValue *value,
|
872
|
+
GParamSpec *pspec);
|
873
|
+
void (* get_cell_property) (GtkCellArea *area,
|
874
|
+
GtkCellRenderer *renderer,
|
875
|
+
guint property_id,
|
876
|
+
GValue *value,
|
877
|
+
GParamSpec *pspec);
|
878
|
+
|
879
|
+
/* Focus */
|
880
|
+
gboolean (* focus) (GtkCellArea *area,
|
881
|
+
GtkDirectionType direction);
|
882
|
+
gboolean (* is_activatable) (GtkCellArea *area);
|
883
|
+
gboolean (* activate) (GtkCellArea *area,
|
884
|
+
GtkCellAreaContext *context,
|
885
|
+
GtkWidget *widget,
|
886
|
+
const GdkRectangle *cell_area,
|
887
|
+
GtkCellRendererState flags,
|
888
|
+
gboolean edit_only);
|
889
|
+
};
|
890
|
+
</pre>
|
891
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
892
|
+
<colgroup>
|
893
|
+
<col align="left" valign="top">
|
894
|
+
<col>
|
895
|
+
</colgroup>
|
896
|
+
<tbody>
|
897
|
+
<tr>
|
898
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.add"></a>add</code></em> ()</span></p></td>
|
899
|
+
<td>adds a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to the area.</td>
|
900
|
+
</tr>
|
901
|
+
<tr>
|
902
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.remove"></a>remove</code></em> ()</span></p></td>
|
903
|
+
<td>removes a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> from the area.</td>
|
904
|
+
</tr>
|
905
|
+
<tr>
|
906
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.foreach"></a>foreach</code></em> ()</span></p></td>
|
907
|
+
<td>calls the <a class="link" href="GtkCellArea.html#GtkCellCallback" title="GtkCellCallback ()"><span class="type">GtkCellCallback</span></a> function on every <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> in
|
908
|
+
the area with the provided user data until the callback returns <code class="literal">TRUE</code>.</td>
|
909
|
+
</tr>
|
910
|
+
<tr>
|
911
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.foreach-alloc"></a>foreach_alloc</code></em> ()</span></p></td>
|
912
|
+
<td>Calls the <a class="link" href="GtkCellArea.html#GtkCellAllocCallback" title="GtkCellAllocCallback ()"><span class="type">GtkCellAllocCallback</span></a> function on every
|
913
|
+
<a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> in the area with the allocated area for the cell
|
914
|
+
and the provided user data until the callback returns <code class="literal">TRUE</code>.</td>
|
915
|
+
</tr>
|
916
|
+
<tr>
|
917
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.event"></a>event</code></em> ()</span></p></td>
|
918
|
+
<td>Handle an event in the area, this is generally used to activate
|
919
|
+
a cell at the event location for button events but can also be used
|
920
|
+
to generically pass events to <a href="GtkWidget.html"><span class="type">GtkWidgets</span></a> drawn onto the area.</td>
|
921
|
+
</tr>
|
922
|
+
<tr>
|
923
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.render"></a>render</code></em> ()</span></p></td>
|
924
|
+
<td>Actually render the area's cells to the specified rectangle,
|
925
|
+
<em class="parameter"><code>background_area</code></em> should be correctly distributed to the cells
|
926
|
+
corresponding background areas.</td>
|
927
|
+
</tr>
|
928
|
+
<tr>
|
929
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.apply-attributes"></a>apply_attributes</code></em> ()</span></p></td>
|
930
|
+
<td>Apply the cell attributes to the cells. This is
|
931
|
+
implemented as a signal and generally <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> subclasses don't
|
932
|
+
need to implement it since it is handled by the base class.</td>
|
933
|
+
</tr>
|
934
|
+
<tr>
|
935
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.create-context"></a>create_context</code></em> ()</span></p></td>
|
936
|
+
<td>Creates and returns a class specific <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a>
|
937
|
+
to store cell alignment and allocation details for a said <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
938
|
+
class.</td>
|
939
|
+
</tr>
|
940
|
+
<tr>
|
941
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.copy-context"></a>copy_context</code></em> ()</span></p></td>
|
942
|
+
<td>Creates a new <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> in the same state as
|
943
|
+
the passed <em class="parameter"><code>context</code></em> with any cell alignment data and allocations intact.</td>
|
944
|
+
</tr>
|
945
|
+
<tr>
|
946
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.get-request-mode"></a>get_request_mode</code></em> ()</span></p></td>
|
947
|
+
<td>This allows an area to tell its layouting widget whether
|
948
|
+
it prefers to be allocated in <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
|
949
|
+
<a class="link" href="GtkWidget.html#GTK-SIZE-REQUEST-WIDTH-FOR-HEIGHT:CAPS"><code class="literal">GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT</code></a> mode.</td>
|
950
|
+
</tr>
|
951
|
+
<tr>
|
952
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.get-preferred-width"></a>get_preferred_width</code></em> ()</span></p></td>
|
953
|
+
<td>Calculates the minimum and natural width of the
|
954
|
+
areas cells with the current attributes applied while considering
|
955
|
+
the particular layouting details of the said <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>. While
|
956
|
+
requests are performed over a series of rows, alignments and overall
|
957
|
+
minimum and natural sizes should be stored in the corresponding
|
958
|
+
<a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a>.</td>
|
959
|
+
</tr>
|
960
|
+
<tr>
|
961
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.get-preferred-height-for-width"></a>get_preferred_height_for_width</code></em> ()</span></p></td>
|
962
|
+
<td>Calculates the minimum and natural height
|
963
|
+
for the area if the passed <em class="parameter"><code>context</code></em> would be allocated the given width.
|
964
|
+
When implementing this virtual method it is safe to assume that <em class="parameter"><code>context</code></em>
|
965
|
+
has already stored the aligned cell widths for every <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> row
|
966
|
+
that <em class="parameter"><code>context</code></em> will be allocated for since this information was stored
|
967
|
+
at <a class="link" href="GtkCellArea.html#GtkCellAreaClass.get-preferred-width"><code class="function">GtkCellAreaClass.get_preferred_width()</code></a> time. This virtual method
|
968
|
+
should also store any necessary alignments of cell heights for the
|
969
|
+
case that the context is allocated a height.</td>
|
970
|
+
</tr>
|
971
|
+
<tr>
|
972
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.get-preferred-height"></a>get_preferred_height</code></em> ()</span></p></td>
|
973
|
+
<td>Calculates the minimum and natural height of the
|
974
|
+
areas cells with the current attributes applied. Essentially this is
|
975
|
+
the same as <a class="link" href="GtkCellArea.html#GtkCellAreaClass.get-preferred-width"><code class="function">GtkCellAreaClass.get_preferred_width()</code></a> only for areas
|
976
|
+
that are being requested as <a class="link" href="GtkWidget.html#GTK-SIZE-REQUEST-WIDTH-FOR-HEIGHT:CAPS"><code class="literal">GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT</code></a>.</td>
|
977
|
+
</tr>
|
978
|
+
<tr>
|
979
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.get-preferred-width-for-height"></a>get_preferred_width_for_height</code></em> ()</span></p></td>
|
980
|
+
<td>Calculates the minimum and natural width
|
981
|
+
for the area if the passed <em class="parameter"><code>context</code></em> would be allocated the given
|
982
|
+
height. The same as <a class="link" href="GtkCellArea.html#GtkCellAreaClass.get-preferred-height-for-width"><code class="function">GtkCellAreaClass.get_preferred_height_for_width()</code></a>
|
983
|
+
only for handling requests in the <a class="link" href="GtkWidget.html#GTK-SIZE-REQUEST-WIDTH-FOR-HEIGHT:CAPS"><code class="literal">GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT</code></a>
|
984
|
+
mode.</td>
|
985
|
+
</tr>
|
986
|
+
<tr>
|
987
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.set-cell-property"></a>set_cell_property</code></em> ()</span></p></td>
|
988
|
+
<td>This should be implemented to handle changes in child
|
989
|
+
cell properties for a given <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> that were previously
|
990
|
+
installed on the <a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a> with <a class="link" href="GtkCellArea.html#gtk-cell-area-class-install-cell-property" title="gtk_cell_area_class_install_cell_property ()"><code class="function">gtk_cell_area_class_install_cell_property()</code></a>.</td>
|
991
|
+
</tr>
|
992
|
+
<tr>
|
993
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.get-cell-property"></a>get_cell_property</code></em> ()</span></p></td>
|
994
|
+
<td>This should be implemented to report the values of
|
995
|
+
child cell properties for a given child <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>.</td>
|
996
|
+
</tr>
|
997
|
+
<tr>
|
998
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.focus"></a>focus</code></em> ()</span></p></td>
|
999
|
+
<td>This virtual method should be implemented to navigate focus from
|
1000
|
+
cell to cell inside the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>. The <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> should move
|
1001
|
+
focus from cell to cell inside the area and return <code class="literal">FALSE</code> if focus
|
1002
|
+
logically leaves the area with the following exceptions: When the
|
1003
|
+
area contains no activatable cells, the entire area recieves focus.
|
1004
|
+
Focus should not be given to cells that are actually "focus siblings"
|
1005
|
+
of other sibling cells (see <a class="link" href="GtkCellArea.html#gtk-cell-area-get-focus-from-sibling" title="gtk_cell_area_get_focus_from_sibling ()"><code class="function">gtk_cell_area_get_focus_from_sibling()</code></a>).
|
1006
|
+
Focus is set by calling <a class="link" href="GtkCellArea.html#gtk-cell-area-set-focus-cell" title="gtk_cell_area_set_focus_cell ()"><code class="function">gtk_cell_area_set_focus_cell()</code></a>.</td>
|
1007
|
+
</tr>
|
1008
|
+
<tr>
|
1009
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.is-activatable"></a>is_activatable</code></em> ()</span></p></td>
|
1010
|
+
<td>Returns whether the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> can respond to
|
1011
|
+
<a class="link" href="GtkCellArea.html#GtkCellAreaClass.activate"><code class="function">GtkCellAreaClass.activate()</code></a>, usually this does not need to be
|
1012
|
+
implemented since the base class takes care of this however it can
|
1013
|
+
be enhanced if the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> subclass can handle activation in
|
1014
|
+
other ways than activating its <a href="GtkCellRenderer.html"><span class="type">GtkCellRenderers</span></a>.</td>
|
1015
|
+
</tr>
|
1016
|
+
<tr>
|
1017
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkCellAreaClass.activate"></a>activate</code></em> ()</span></p></td>
|
1018
|
+
<td>This is called when the layouting widget rendering the
|
1019
|
+
<a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> activates the focus cell (see <a class="link" href="GtkCellArea.html#gtk-cell-area-get-focus-cell" title="gtk_cell_area_get_focus_cell ()"><code class="function">gtk_cell_area_get_focus_cell()</code></a>).</td>
|
1020
|
+
</tr>
|
1021
|
+
</tbody>
|
1022
|
+
</table></div>
|
1023
|
+
</div>
|
1024
|
+
<hr>
|
1025
|
+
<div class="refsect2">
|
1026
|
+
<a name="GtkCellCallback"></a><h3>GtkCellCallback ()</h3>
|
1027
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> (*GtkCellCallback) (<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
1028
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
|
1029
|
+
<p>
|
1030
|
+
The type of the callback functions used for iterating over
|
1031
|
+
the cell renderers of a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>, see <a class="link" href="GtkCellArea.html#gtk-cell-area-foreach" title="gtk_cell_area_foreach ()"><code class="function">gtk_cell_area_foreach()</code></a>.
|
1032
|
+
</p>
|
1033
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1034
|
+
<colgroup>
|
1035
|
+
<col align="left" valign="top">
|
1036
|
+
<col>
|
1037
|
+
</colgroup>
|
1038
|
+
<tbody>
|
1039
|
+
<tr>
|
1040
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
1041
|
+
<td>the cell renderer to operate on</td>
|
1042
|
+
</tr>
|
1043
|
+
<tr>
|
1044
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
1045
|
+
<td>user-supplied data. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
|
1046
|
+
</td>
|
1047
|
+
</tr>
|
1048
|
+
<tr>
|
1049
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1050
|
+
<td>
|
1051
|
+
<code class="literal">TRUE</code> to stop iterating over cells.</td>
|
1052
|
+
</tr>
|
1053
|
+
</tbody>
|
1054
|
+
</table></div>
|
1055
|
+
</div>
|
1056
|
+
<hr>
|
1057
|
+
<div class="refsect2">
|
1058
|
+
<a name="GtkCellAllocCallback"></a><h3>GtkCellAllocCallback ()</h3>
|
1059
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> (*GtkCellAllocCallback) (<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
1060
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
1061
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_background</code></em>,
|
1062
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
|
1063
|
+
<p>
|
1064
|
+
The type of the callback functions used for iterating over the
|
1065
|
+
cell renderers and their allocated areas inside a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>,
|
1066
|
+
see <a class="link" href="GtkCellArea.html#gtk-cell-area-foreach-alloc" title="gtk_cell_area_foreach_alloc ()"><code class="function">gtk_cell_area_foreach_alloc()</code></a>.
|
1067
|
+
</p>
|
1068
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1069
|
+
<colgroup>
|
1070
|
+
<col align="left" valign="top">
|
1071
|
+
<col>
|
1072
|
+
</colgroup>
|
1073
|
+
<tbody>
|
1074
|
+
<tr>
|
1075
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
1076
|
+
<td>the cell renderer to operate on</td>
|
1077
|
+
</tr>
|
1078
|
+
<tr>
|
1079
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
1080
|
+
<td>the area allocated to <em class="parameter"><code>renderer</code></em> inside the rectangle
|
1081
|
+
provided to <a class="link" href="GtkCellArea.html#gtk-cell-area-foreach-alloc" title="gtk_cell_area_foreach_alloc ()"><code class="function">gtk_cell_area_foreach_alloc()</code></a>.</td>
|
1082
|
+
</tr>
|
1083
|
+
<tr>
|
1084
|
+
<td><p><span class="term"><em class="parameter"><code>cell_background</code></em> :</span></p></td>
|
1085
|
+
<td>the background area for <em class="parameter"><code>renderer</code></em> inside the
|
1086
|
+
background area provided to <a class="link" href="GtkCellArea.html#gtk-cell-area-foreach-alloc" title="gtk_cell_area_foreach_alloc ()"><code class="function">gtk_cell_area_foreach_alloc()</code></a>.</td>
|
1087
|
+
</tr>
|
1088
|
+
<tr>
|
1089
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
1090
|
+
<td>user-supplied data. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
|
1091
|
+
</td>
|
1092
|
+
</tr>
|
1093
|
+
<tr>
|
1094
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1095
|
+
<td>
|
1096
|
+
<code class="literal">TRUE</code> to stop iterating over cells.</td>
|
1097
|
+
</tr>
|
1098
|
+
</tbody>
|
1099
|
+
</table></div>
|
1100
|
+
</div>
|
1101
|
+
<hr>
|
1102
|
+
<div class="refsect2">
|
1103
|
+
<a name="GTK-CELL-AREA-WARN-INVALID-CELL-PROPERTY-ID:CAPS"></a><h3>GTK_CELL_AREA_WARN_INVALID_CELL_PROPERTY_ID()</h3>
|
1104
|
+
<pre class="programlisting">#define GTK_CELL_AREA_WARN_INVALID_CELL_PROPERTY_ID(object, property_id, pspec)</pre>
|
1105
|
+
<p>
|
1106
|
+
This macro should be used to emit a standard warning about unexpected
|
1107
|
+
properties in <code class="function">set_cell_property()</code> and <code class="function">get_cell_property()</code> implementations.
|
1108
|
+
</p>
|
1109
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1110
|
+
<colgroup>
|
1111
|
+
<col align="left" valign="top">
|
1112
|
+
<col>
|
1113
|
+
</colgroup>
|
1114
|
+
<tbody>
|
1115
|
+
<tr>
|
1116
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
1117
|
+
<td>the <span class="type">GObject</span> on which <code class="function">set_cell_property()</code> or <code class="function">get_get_property()</code>
|
1118
|
+
was called</td>
|
1119
|
+
</tr>
|
1120
|
+
<tr>
|
1121
|
+
<td><p><span class="term"><em class="parameter"><code>property_id</code></em> :</span></p></td>
|
1122
|
+
<td>the numeric id of the property</td>
|
1123
|
+
</tr>
|
1124
|
+
<tr>
|
1125
|
+
<td><p><span class="term"><em class="parameter"><code>pspec</code></em> :</span></p></td>
|
1126
|
+
<td>the <span class="type">GParamSpec</span> of the property</td>
|
1127
|
+
</tr>
|
1128
|
+
</tbody>
|
1129
|
+
</table></div>
|
1130
|
+
</div>
|
1131
|
+
<hr>
|
1132
|
+
<div class="refsect2">
|
1133
|
+
<a name="gtk-cell-area-add"></a><h3>gtk_cell_area_add ()</h3>
|
1134
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_add (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1135
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);</pre>
|
1136
|
+
<p>
|
1137
|
+
Adds <em class="parameter"><code>renderer</code></em> to <em class="parameter"><code>area</code></em> with the default child cell properties.
|
1138
|
+
</p>
|
1139
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1140
|
+
<colgroup>
|
1141
|
+
<col align="left" valign="top">
|
1142
|
+
<col>
|
1143
|
+
</colgroup>
|
1144
|
+
<tbody>
|
1145
|
+
<tr>
|
1146
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1147
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1148
|
+
</td>
|
1149
|
+
</tr>
|
1150
|
+
<tr>
|
1151
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
1152
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to add to <em class="parameter"><code>area</code></em>
|
1153
|
+
</td>
|
1154
|
+
</tr>
|
1155
|
+
</tbody>
|
1156
|
+
</table></div>
|
1157
|
+
<p class="since">Since 3.0</p>
|
1158
|
+
</div>
|
1159
|
+
<hr>
|
1160
|
+
<div class="refsect2">
|
1161
|
+
<a name="gtk-cell-area-remove"></a><h3>gtk_cell_area_remove ()</h3>
|
1162
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_remove (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1163
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);</pre>
|
1164
|
+
<p>
|
1165
|
+
Removes <em class="parameter"><code>renderer</code></em> from <em class="parameter"><code>area</code></em>.
|
1166
|
+
</p>
|
1167
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1168
|
+
<colgroup>
|
1169
|
+
<col align="left" valign="top">
|
1170
|
+
<col>
|
1171
|
+
</colgroup>
|
1172
|
+
<tbody>
|
1173
|
+
<tr>
|
1174
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1175
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1176
|
+
</td>
|
1177
|
+
</tr>
|
1178
|
+
<tr>
|
1179
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
1180
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to remove from <em class="parameter"><code>area</code></em>
|
1181
|
+
</td>
|
1182
|
+
</tr>
|
1183
|
+
</tbody>
|
1184
|
+
</table></div>
|
1185
|
+
<p class="since">Since 3.0</p>
|
1186
|
+
</div>
|
1187
|
+
<hr>
|
1188
|
+
<div class="refsect2">
|
1189
|
+
<a name="gtk-cell-area-has-renderer"></a><h3>gtk_cell_area_has_renderer ()</h3>
|
1190
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_cell_area_has_renderer (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1191
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);</pre>
|
1192
|
+
<p>
|
1193
|
+
Checks if <em class="parameter"><code>area</code></em> contains <em class="parameter"><code>renderer</code></em>.
|
1194
|
+
</p>
|
1195
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1196
|
+
<colgroup>
|
1197
|
+
<col align="left" valign="top">
|
1198
|
+
<col>
|
1199
|
+
</colgroup>
|
1200
|
+
<tbody>
|
1201
|
+
<tr>
|
1202
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1203
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1204
|
+
</td>
|
1205
|
+
</tr>
|
1206
|
+
<tr>
|
1207
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
1208
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to check</td>
|
1209
|
+
</tr>
|
1210
|
+
<tr>
|
1211
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1212
|
+
<td>
|
1213
|
+
<code class="literal">TRUE</code> if <em class="parameter"><code>renderer</code></em> is in the <em class="parameter"><code>area</code></em>.</td>
|
1214
|
+
</tr>
|
1215
|
+
</tbody>
|
1216
|
+
</table></div>
|
1217
|
+
<p class="since">Since 3.0</p>
|
1218
|
+
</div>
|
1219
|
+
<hr>
|
1220
|
+
<div class="refsect2">
|
1221
|
+
<a name="gtk-cell-area-foreach"></a><h3>gtk_cell_area_foreach ()</h3>
|
1222
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_foreach (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1223
|
+
<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellCallback" title="GtkCellCallback ()"><span class="type">GtkCellCallback</span></a> callback</code></em>,
|
1224
|
+
<em class="parameter"><code><span class="type">gpointer</span> callback_data</code></em>);</pre>
|
1225
|
+
<p>
|
1226
|
+
Calls <em class="parameter"><code>callback</code></em> for every <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> in <em class="parameter"><code>area</code></em>.
|
1227
|
+
</p>
|
1228
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1229
|
+
<colgroup>
|
1230
|
+
<col align="left" valign="top">
|
1231
|
+
<col>
|
1232
|
+
</colgroup>
|
1233
|
+
<tbody>
|
1234
|
+
<tr>
|
1235
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1236
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1237
|
+
</td>
|
1238
|
+
</tr>
|
1239
|
+
<tr>
|
1240
|
+
<td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
|
1241
|
+
<td>the <a class="link" href="GtkCellArea.html#GtkCellCallback" title="GtkCellCallback ()"><span class="type">GtkCellCallback</span></a> to call. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
|
1242
|
+
</td>
|
1243
|
+
</tr>
|
1244
|
+
<tr>
|
1245
|
+
<td><p><span class="term"><em class="parameter"><code>callback_data</code></em> :</span></p></td>
|
1246
|
+
<td>user provided data pointer</td>
|
1247
|
+
</tr>
|
1248
|
+
</tbody>
|
1249
|
+
</table></div>
|
1250
|
+
<p class="since">Since 3.0</p>
|
1251
|
+
</div>
|
1252
|
+
<hr>
|
1253
|
+
<div class="refsect2">
|
1254
|
+
<a name="gtk-cell-area-foreach-alloc"></a><h3>gtk_cell_area_foreach_alloc ()</h3>
|
1255
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_foreach_alloc (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1256
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
1257
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
1258
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
1259
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *background_area</code></em>,
|
1260
|
+
<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellAllocCallback" title="GtkCellAllocCallback ()"><span class="type">GtkCellAllocCallback</span></a> callback</code></em>,
|
1261
|
+
<em class="parameter"><code><span class="type">gpointer</span> callback_data</code></em>);</pre>
|
1262
|
+
<p>
|
1263
|
+
Calls <em class="parameter"><code>callback</code></em> for every <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> in <em class="parameter"><code>area</code></em> with the
|
1264
|
+
allocated rectangle inside <em class="parameter"><code>cell_area</code></em>.
|
1265
|
+
</p>
|
1266
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1267
|
+
<colgroup>
|
1268
|
+
<col align="left" valign="top">
|
1269
|
+
<col>
|
1270
|
+
</colgroup>
|
1271
|
+
<tbody>
|
1272
|
+
<tr>
|
1273
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1274
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1275
|
+
</td>
|
1276
|
+
</tr>
|
1277
|
+
<tr>
|
1278
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1279
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> for this row of data.</td>
|
1280
|
+
</tr>
|
1281
|
+
<tr>
|
1282
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1283
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that <em class="parameter"><code>area</code></em> is rendering to</td>
|
1284
|
+
</tr>
|
1285
|
+
<tr>
|
1286
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
1287
|
+
<td>the <em class="parameter"><code>widget</code></em> relative coordinates and size for <em class="parameter"><code>area</code></em>
|
1288
|
+
</td>
|
1289
|
+
</tr>
|
1290
|
+
<tr>
|
1291
|
+
<td><p><span class="term"><em class="parameter"><code>background_area</code></em> :</span></p></td>
|
1292
|
+
<td>the <em class="parameter"><code>widget</code></em> relative coordinates of the background area</td>
|
1293
|
+
</tr>
|
1294
|
+
<tr>
|
1295
|
+
<td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
|
1296
|
+
<td>the <a class="link" href="GtkCellArea.html#GtkCellAllocCallback" title="GtkCellAllocCallback ()"><span class="type">GtkCellAllocCallback</span></a> to call. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
|
1297
|
+
</td>
|
1298
|
+
</tr>
|
1299
|
+
<tr>
|
1300
|
+
<td><p><span class="term"><em class="parameter"><code>callback_data</code></em> :</span></p></td>
|
1301
|
+
<td>user provided data pointer</td>
|
1302
|
+
</tr>
|
1303
|
+
</tbody>
|
1304
|
+
</table></div>
|
1305
|
+
<p class="since">Since 3.0</p>
|
1306
|
+
</div>
|
1307
|
+
<hr>
|
1308
|
+
<div class="refsect2">
|
1309
|
+
<a name="gtk-cell-area-event"></a><h3>gtk_cell_area_event ()</h3>
|
1310
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_cell_area_event (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1311
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
1312
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
1313
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>,
|
1314
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
1315
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> flags</code></em>);</pre>
|
1316
|
+
<p>
|
1317
|
+
Delegates event handling to a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>.
|
1318
|
+
</p>
|
1319
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1320
|
+
<colgroup>
|
1321
|
+
<col align="left" valign="top">
|
1322
|
+
<col>
|
1323
|
+
</colgroup>
|
1324
|
+
<tbody>
|
1325
|
+
<tr>
|
1326
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1327
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1328
|
+
</td>
|
1329
|
+
</tr>
|
1330
|
+
<tr>
|
1331
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1332
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> for this row of data.</td>
|
1333
|
+
</tr>
|
1334
|
+
<tr>
|
1335
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1336
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that <em class="parameter"><code>area</code></em> is rendering to</td>
|
1337
|
+
</tr>
|
1338
|
+
<tr>
|
1339
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
1340
|
+
<td>the <a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> to handle</td>
|
1341
|
+
</tr>
|
1342
|
+
<tr>
|
1343
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
1344
|
+
<td>the <em class="parameter"><code>widget</code></em> relative coordinates for <em class="parameter"><code>area</code></em>
|
1345
|
+
</td>
|
1346
|
+
</tr>
|
1347
|
+
<tr>
|
1348
|
+
<td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
|
1349
|
+
<td>the <a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> for <em class="parameter"><code>area</code></em> in this row.</td>
|
1350
|
+
</tr>
|
1351
|
+
<tr>
|
1352
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1353
|
+
<td>
|
1354
|
+
<code class="literal">TRUE</code> if the event was handled by <em class="parameter"><code>area</code></em>.</td>
|
1355
|
+
</tr>
|
1356
|
+
</tbody>
|
1357
|
+
</table></div>
|
1358
|
+
<p class="since">Since 3.0</p>
|
1359
|
+
</div>
|
1360
|
+
<hr>
|
1361
|
+
<div class="refsect2">
|
1362
|
+
<a name="gtk-cell-area-render"></a><h3>gtk_cell_area_render ()</h3>
|
1363
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_render (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1364
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
1365
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
1366
|
+
<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>,
|
1367
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *background_area</code></em>,
|
1368
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
1369
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> flags</code></em>,
|
1370
|
+
<em class="parameter"><code><span class="type">gboolean</span> paint_focus</code></em>);</pre>
|
1371
|
+
<p>
|
1372
|
+
Renders <em class="parameter"><code>area</code></em>'s cells according to <em class="parameter"><code>area</code></em>'s layout onto <em class="parameter"><code>widget</code></em> at
|
1373
|
+
the given coordinates.
|
1374
|
+
</p>
|
1375
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1376
|
+
<colgroup>
|
1377
|
+
<col align="left" valign="top">
|
1378
|
+
<col>
|
1379
|
+
</colgroup>
|
1380
|
+
<tbody>
|
1381
|
+
<tr>
|
1382
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1383
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1384
|
+
</td>
|
1385
|
+
</tr>
|
1386
|
+
<tr>
|
1387
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1388
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> for this row of data.</td>
|
1389
|
+
</tr>
|
1390
|
+
<tr>
|
1391
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1392
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that <em class="parameter"><code>area</code></em> is rendering to</td>
|
1393
|
+
</tr>
|
1394
|
+
<tr>
|
1395
|
+
<td><p><span class="term"><em class="parameter"><code>cr</code></em> :</span></p></td>
|
1396
|
+
<td>the <a href="/home/mclasen/gnome/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> to render with</td>
|
1397
|
+
</tr>
|
1398
|
+
<tr>
|
1399
|
+
<td><p><span class="term"><em class="parameter"><code>background_area</code></em> :</span></p></td>
|
1400
|
+
<td>the <em class="parameter"><code>widget</code></em> relative coordinates for <em class="parameter"><code>area</code></em>'s background</td>
|
1401
|
+
</tr>
|
1402
|
+
<tr>
|
1403
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
1404
|
+
<td>the <em class="parameter"><code>widget</code></em> relative coordinates for <em class="parameter"><code>area</code></em>
|
1405
|
+
</td>
|
1406
|
+
</tr>
|
1407
|
+
<tr>
|
1408
|
+
<td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
|
1409
|
+
<td>the <a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> for <em class="parameter"><code>area</code></em> in this row.</td>
|
1410
|
+
</tr>
|
1411
|
+
<tr>
|
1412
|
+
<td><p><span class="term"><em class="parameter"><code>paint_focus</code></em> :</span></p></td>
|
1413
|
+
<td>whether <em class="parameter"><code>area</code></em> should paint focus on focused cells for focused rows or not.</td>
|
1414
|
+
</tr>
|
1415
|
+
</tbody>
|
1416
|
+
</table></div>
|
1417
|
+
<p class="since">Since 3.0</p>
|
1418
|
+
</div>
|
1419
|
+
<hr>
|
1420
|
+
<div class="refsect2">
|
1421
|
+
<a name="gtk-cell-area-get-cell-allocation"></a><h3>gtk_cell_area_get_cell_allocation ()</h3>
|
1422
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_get_cell_allocation (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1423
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
1424
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
1425
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
1426
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
1427
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *allocation</code></em>);</pre>
|
1428
|
+
<p>
|
1429
|
+
Derives the allocation of <em class="parameter"><code>renderer</code></em> inside <em class="parameter"><code>area</code></em> if <em class="parameter"><code>area</code></em>
|
1430
|
+
were to be renderered in <em class="parameter"><code>cell_area</code></em>.
|
1431
|
+
</p>
|
1432
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1433
|
+
<colgroup>
|
1434
|
+
<col align="left" valign="top">
|
1435
|
+
<col>
|
1436
|
+
</colgroup>
|
1437
|
+
<tbody>
|
1438
|
+
<tr>
|
1439
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1440
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1441
|
+
</td>
|
1442
|
+
</tr>
|
1443
|
+
<tr>
|
1444
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1445
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> used to hold sizes for <em class="parameter"><code>area</code></em>.</td>
|
1446
|
+
</tr>
|
1447
|
+
<tr>
|
1448
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1449
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that <em class="parameter"><code>area</code></em> is rendering on</td>
|
1450
|
+
</tr>
|
1451
|
+
<tr>
|
1452
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
1453
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to get the allocation for</td>
|
1454
|
+
</tr>
|
1455
|
+
<tr>
|
1456
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
1457
|
+
<td>the whole allocated area for <em class="parameter"><code>area</code></em> in <em class="parameter"><code>widget</code></em>
|
1458
|
+
for this row</td>
|
1459
|
+
</tr>
|
1460
|
+
<tr>
|
1461
|
+
<td><p><span class="term"><em class="parameter"><code>allocation</code></em> :</span></p></td>
|
1462
|
+
<td>where to store the allocation for <em class="parameter"><code>renderer</code></em>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1463
|
+
</td>
|
1464
|
+
</tr>
|
1465
|
+
</tbody>
|
1466
|
+
</table></div>
|
1467
|
+
<p class="since">Since 3.0</p>
|
1468
|
+
</div>
|
1469
|
+
<hr>
|
1470
|
+
<div class="refsect2">
|
1471
|
+
<a name="gtk-cell-area-get-cell-at-position"></a><h3>gtk_cell_area_get_cell_at_position ()</h3>
|
1472
|
+
<pre class="programlisting"><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="returnvalue">GtkCellRenderer</span></a> * gtk_cell_area_get_cell_at_position (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1473
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
1474
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
1475
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
1476
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
1477
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>,
|
1478
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *alloc_area</code></em>);</pre>
|
1479
|
+
<p>
|
1480
|
+
Gets the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> at <em class="parameter"><code>x</code></em> and <em class="parameter"><code>y</code></em> coordinates inside <em class="parameter"><code>area</code></em> and optionally
|
1481
|
+
returns the full cell allocation for it inside <em class="parameter"><code>cell_area</code></em>.
|
1482
|
+
</p>
|
1483
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1484
|
+
<colgroup>
|
1485
|
+
<col align="left" valign="top">
|
1486
|
+
<col>
|
1487
|
+
</colgroup>
|
1488
|
+
<tbody>
|
1489
|
+
<tr>
|
1490
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1491
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1492
|
+
</td>
|
1493
|
+
</tr>
|
1494
|
+
<tr>
|
1495
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1496
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> used to hold sizes for <em class="parameter"><code>area</code></em>.</td>
|
1497
|
+
</tr>
|
1498
|
+
<tr>
|
1499
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1500
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that <em class="parameter"><code>area</code></em> is rendering on</td>
|
1501
|
+
</tr>
|
1502
|
+
<tr>
|
1503
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
1504
|
+
<td>the whole allocated area for <em class="parameter"><code>area</code></em> in <em class="parameter"><code>widget</code></em>
|
1505
|
+
for this row</td>
|
1506
|
+
</tr>
|
1507
|
+
<tr>
|
1508
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1509
|
+
<td>the x position</td>
|
1510
|
+
</tr>
|
1511
|
+
<tr>
|
1512
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1513
|
+
<td>the y position</td>
|
1514
|
+
</tr>
|
1515
|
+
<tr>
|
1516
|
+
<td><p><span class="term"><em class="parameter"><code>alloc_area</code></em> :</span></p></td>
|
1517
|
+
<td>where to store the inner allocated area of the
|
1518
|
+
returned cell renderer, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1519
|
+
</td>
|
1520
|
+
</tr>
|
1521
|
+
<tr>
|
1522
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1523
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> at <em class="parameter"><code>x</code></em> and <em class="parameter"><code>y</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1524
|
+
</td>
|
1525
|
+
</tr>
|
1526
|
+
</tbody>
|
1527
|
+
</table></div>
|
1528
|
+
<p class="since">Since 3.0</p>
|
1529
|
+
</div>
|
1530
|
+
<hr>
|
1531
|
+
<div class="refsect2">
|
1532
|
+
<a name="gtk-cell-area-create-context"></a><h3>gtk_cell_area_create_context ()</h3>
|
1533
|
+
<pre class="programlisting"><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="returnvalue">GtkCellAreaContext</span></a> * gtk_cell_area_create_context (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
|
1534
|
+
<p>
|
1535
|
+
Creates a <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> to be used with <em class="parameter"><code>area</code></em> for
|
1536
|
+
all purposes. <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> stores geometry information
|
1537
|
+
for rows for which it was operated on, it is important to use
|
1538
|
+
the same context for the same row of data at all times (i.e.
|
1539
|
+
one should render and handle events with the same <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a>
|
1540
|
+
which was used to request the size of those rows of data).
|
1541
|
+
</p>
|
1542
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1543
|
+
<colgroup>
|
1544
|
+
<col align="left" valign="top">
|
1545
|
+
<col>
|
1546
|
+
</colgroup>
|
1547
|
+
<tbody>
|
1548
|
+
<tr>
|
1549
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1550
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1551
|
+
</td>
|
1552
|
+
</tr>
|
1553
|
+
<tr>
|
1554
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1555
|
+
<td>a newly created <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> which can be used with <em class="parameter"><code>area</code></em>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1556
|
+
</td>
|
1557
|
+
</tr>
|
1558
|
+
</tbody>
|
1559
|
+
</table></div>
|
1560
|
+
<p class="since">Since 3.0</p>
|
1561
|
+
</div>
|
1562
|
+
<hr>
|
1563
|
+
<div class="refsect2">
|
1564
|
+
<a name="gtk-cell-area-copy-context"></a><h3>gtk_cell_area_copy_context ()</h3>
|
1565
|
+
<pre class="programlisting"><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="returnvalue">GtkCellAreaContext</span></a> * gtk_cell_area_copy_context (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1566
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>);</pre>
|
1567
|
+
<p>
|
1568
|
+
This is sometimes needed for cases where rows need to share
|
1569
|
+
alignments in one orientation but may be separately grouped
|
1570
|
+
in the opposing orientation.
|
1571
|
+
</p>
|
1572
|
+
<p>
|
1573
|
+
For instance, <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> creates all icons (rows) to have
|
1574
|
+
the same width and the cells theirin to have the same
|
1575
|
+
horizontal alignments. However each row of icons may have
|
1576
|
+
a separate collective height. <a class="link" href="GtkIconView.html" title="GtkIconView"><span class="type">GtkIconView</span></a> uses this to
|
1577
|
+
request the heights of each row based on a context which
|
1578
|
+
was already used to request all the row widths that are
|
1579
|
+
to be displayed.
|
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>area</code></em> :</span></p></td>
|
1589
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1590
|
+
</td>
|
1591
|
+
</tr>
|
1592
|
+
<tr>
|
1593
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1594
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> to copy</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 created <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> copy of <em class="parameter"><code>context</code></em>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1599
|
+
</td>
|
1600
|
+
</tr>
|
1601
|
+
</tbody>
|
1602
|
+
</table></div>
|
1603
|
+
<p class="since">Since 3.0</p>
|
1604
|
+
</div>
|
1605
|
+
<hr>
|
1606
|
+
<div class="refsect2">
|
1607
|
+
<a name="gtk-cell-area-get-request-mode"></a><h3>gtk_cell_area_get_request_mode ()</h3>
|
1608
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html#GtkSizeRequestMode" title="enum GtkSizeRequestMode"><span class="returnvalue">GtkSizeRequestMode</span></a> gtk_cell_area_get_request_mode (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
|
1609
|
+
<p>
|
1610
|
+
Gets whether the area prefers a height-for-width layout
|
1611
|
+
or a width-for-height layout.
|
1612
|
+
</p>
|
1613
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1614
|
+
<colgroup>
|
1615
|
+
<col align="left" valign="top">
|
1616
|
+
<col>
|
1617
|
+
</colgroup>
|
1618
|
+
<tbody>
|
1619
|
+
<tr>
|
1620
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1621
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1622
|
+
</td>
|
1623
|
+
</tr>
|
1624
|
+
<tr>
|
1625
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1626
|
+
<td>The <a class="link" href="GtkWidget.html#GtkSizeRequestMode" title="enum GtkSizeRequestMode"><span class="type">GtkSizeRequestMode</span></a> preferred by <em class="parameter"><code>area</code></em>.</td>
|
1627
|
+
</tr>
|
1628
|
+
</tbody>
|
1629
|
+
</table></div>
|
1630
|
+
<p class="since">Since 3.0</p>
|
1631
|
+
</div>
|
1632
|
+
<hr>
|
1633
|
+
<div class="refsect2">
|
1634
|
+
<a name="gtk-cell-area-get-preferred-width"></a><h3>gtk_cell_area_get_preferred_width ()</h3>
|
1635
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_get_preferred_width (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1636
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
1637
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
1638
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_width</code></em>,
|
1639
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_width</code></em>);</pre>
|
1640
|
+
<p>
|
1641
|
+
Retrieves a cell area's initial minimum and natural width.
|
1642
|
+
</p>
|
1643
|
+
<p>
|
1644
|
+
<em class="parameter"><code>area</code></em> will store some geometrical information in <em class="parameter"><code>context</code></em> along the way,
|
1645
|
+
when requesting sizes over an arbitrary number of rows, its not important
|
1646
|
+
to check the <em class="parameter"><code>minimum_width</code></em> and <em class="parameter"><code>natural_width</code></em> of this call but rather to
|
1647
|
+
consult <a class="link" href="GtkCellAreaContext.html#gtk-cell-area-context-get-preferred-width" title="gtk_cell_area_context_get_preferred_width ()"><code class="function">gtk_cell_area_context_get_preferred_width()</code></a> after a series of
|
1648
|
+
requests.
|
1649
|
+
</p>
|
1650
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1651
|
+
<colgroup>
|
1652
|
+
<col align="left" valign="top">
|
1653
|
+
<col>
|
1654
|
+
</colgroup>
|
1655
|
+
<tbody>
|
1656
|
+
<tr>
|
1657
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1658
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1659
|
+
</td>
|
1660
|
+
</tr>
|
1661
|
+
<tr>
|
1662
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1663
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> to perform this request with</td>
|
1664
|
+
</tr>
|
1665
|
+
<tr>
|
1666
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1667
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> where <em class="parameter"><code>area</code></em> will be rendering</td>
|
1668
|
+
</tr>
|
1669
|
+
<tr>
|
1670
|
+
<td><p><span class="term"><em class="parameter"><code>minimum_width</code></em> :</span></p></td>
|
1671
|
+
<td>location to store the minimum width, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1672
|
+
</td>
|
1673
|
+
</tr>
|
1674
|
+
<tr>
|
1675
|
+
<td><p><span class="term"><em class="parameter"><code>natural_width</code></em> :</span></p></td>
|
1676
|
+
<td>location to store the natural width, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1677
|
+
</td>
|
1678
|
+
</tr>
|
1679
|
+
</tbody>
|
1680
|
+
</table></div>
|
1681
|
+
<p class="since">Since 3.0</p>
|
1682
|
+
</div>
|
1683
|
+
<hr>
|
1684
|
+
<div class="refsect2">
|
1685
|
+
<a name="gtk-cell-area-get-preferred-height-for-width"></a><h3>gtk_cell_area_get_preferred_height_for_width ()</h3>
|
1686
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_get_preferred_height_for_width
|
1687
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1688
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
1689
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
1690
|
+
<em class="parameter"><code><span class="type">gint</span> width</code></em>,
|
1691
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_height</code></em>,
|
1692
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_height</code></em>);</pre>
|
1693
|
+
<p>
|
1694
|
+
Retrieves a cell area's minimum and natural height if it would be given
|
1695
|
+
the specified <em class="parameter"><code>width</code></em>.
|
1696
|
+
</p>
|
1697
|
+
<p>
|
1698
|
+
<em class="parameter"><code>area</code></em> stores some geometrical information in <em class="parameter"><code>context</code></em> along the way
|
1699
|
+
while calling <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-width" title="gtk_cell_area_get_preferred_width ()"><code class="function">gtk_cell_area_get_preferred_width()</code></a>. It's important to
|
1700
|
+
perform a series of <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-width" title="gtk_cell_area_get_preferred_width ()"><code class="function">gtk_cell_area_get_preferred_width()</code></a> requests with
|
1701
|
+
<em class="parameter"><code>context</code></em> first and then call <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-height-for-width" title="gtk_cell_area_get_preferred_height_for_width ()"><code class="function">gtk_cell_area_get_preferred_height_for_width()</code></a>
|
1702
|
+
on each cell area individually to get the height for width of each
|
1703
|
+
fully requested row.
|
1704
|
+
</p>
|
1705
|
+
<p>
|
1706
|
+
If at some point, the width of a single row changes, it should be
|
1707
|
+
requested with <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-width" title="gtk_cell_area_get_preferred_width ()"><code class="function">gtk_cell_area_get_preferred_width()</code></a> again and then
|
1708
|
+
the full width of the requested rows checked again with
|
1709
|
+
<a class="link" href="GtkCellAreaContext.html#gtk-cell-area-context-get-preferred-width" title="gtk_cell_area_context_get_preferred_width ()"><code class="function">gtk_cell_area_context_get_preferred_width()</code></a>.
|
1710
|
+
</p>
|
1711
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1712
|
+
<colgroup>
|
1713
|
+
<col align="left" valign="top">
|
1714
|
+
<col>
|
1715
|
+
</colgroup>
|
1716
|
+
<tbody>
|
1717
|
+
<tr>
|
1718
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1719
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1720
|
+
</td>
|
1721
|
+
</tr>
|
1722
|
+
<tr>
|
1723
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1724
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> which has already been requested for widths.</td>
|
1725
|
+
</tr>
|
1726
|
+
<tr>
|
1727
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1728
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> where <em class="parameter"><code>area</code></em> will be rendering</td>
|
1729
|
+
</tr>
|
1730
|
+
<tr>
|
1731
|
+
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
1732
|
+
<td>the width for which to check the height of this area</td>
|
1733
|
+
</tr>
|
1734
|
+
<tr>
|
1735
|
+
<td><p><span class="term"><em class="parameter"><code>minimum_height</code></em> :</span></p></td>
|
1736
|
+
<td>location to store the minimum height, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1737
|
+
</td>
|
1738
|
+
</tr>
|
1739
|
+
<tr>
|
1740
|
+
<td><p><span class="term"><em class="parameter"><code>natural_height</code></em> :</span></p></td>
|
1741
|
+
<td>location to store the natural height, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1742
|
+
</td>
|
1743
|
+
</tr>
|
1744
|
+
</tbody>
|
1745
|
+
</table></div>
|
1746
|
+
<p class="since">Since 3.0</p>
|
1747
|
+
</div>
|
1748
|
+
<hr>
|
1749
|
+
<div class="refsect2">
|
1750
|
+
<a name="gtk-cell-area-get-preferred-height"></a><h3>gtk_cell_area_get_preferred_height ()</h3>
|
1751
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_get_preferred_height (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1752
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
1753
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
1754
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_height</code></em>,
|
1755
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_height</code></em>);</pre>
|
1756
|
+
<p>
|
1757
|
+
Retrieves a cell area's initial minimum and natural height.
|
1758
|
+
</p>
|
1759
|
+
<p>
|
1760
|
+
<em class="parameter"><code>area</code></em> will store some geometrical information in <em class="parameter"><code>context</code></em> along the way,
|
1761
|
+
when requesting sizes over an arbitrary number of rows, its not important
|
1762
|
+
to check the <em class="parameter"><code>minimum_height</code></em> and <em class="parameter"><code>natural_height</code></em> of this call but rather to
|
1763
|
+
consult <a class="link" href="GtkCellAreaContext.html#gtk-cell-area-context-get-preferred-height" title="gtk_cell_area_context_get_preferred_height ()"><code class="function">gtk_cell_area_context_get_preferred_height()</code></a> after a series of
|
1764
|
+
requests.
|
1765
|
+
</p>
|
1766
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1767
|
+
<colgroup>
|
1768
|
+
<col align="left" valign="top">
|
1769
|
+
<col>
|
1770
|
+
</colgroup>
|
1771
|
+
<tbody>
|
1772
|
+
<tr>
|
1773
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1774
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1775
|
+
</td>
|
1776
|
+
</tr>
|
1777
|
+
<tr>
|
1778
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1779
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> to perform this request with</td>
|
1780
|
+
</tr>
|
1781
|
+
<tr>
|
1782
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1783
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> where <em class="parameter"><code>area</code></em> will be rendering</td>
|
1784
|
+
</tr>
|
1785
|
+
<tr>
|
1786
|
+
<td><p><span class="term"><em class="parameter"><code>minimum_height</code></em> :</span></p></td>
|
1787
|
+
<td>location to store the minimum height, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1788
|
+
</td>
|
1789
|
+
</tr>
|
1790
|
+
<tr>
|
1791
|
+
<td><p><span class="term"><em class="parameter"><code>natural_height</code></em> :</span></p></td>
|
1792
|
+
<td>location to store the natural height, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1793
|
+
</td>
|
1794
|
+
</tr>
|
1795
|
+
</tbody>
|
1796
|
+
</table></div>
|
1797
|
+
<p class="since">Since 3.0</p>
|
1798
|
+
</div>
|
1799
|
+
<hr>
|
1800
|
+
<div class="refsect2">
|
1801
|
+
<a name="gtk-cell-area-get-preferred-width-for-height"></a><h3>gtk_cell_area_get_preferred_width_for_height ()</h3>
|
1802
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_get_preferred_width_for_height
|
1803
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1804
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
1805
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
1806
|
+
<em class="parameter"><code><span class="type">gint</span> height</code></em>,
|
1807
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_width</code></em>,
|
1808
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_width</code></em>);</pre>
|
1809
|
+
<p>
|
1810
|
+
Retrieves a cell area's minimum and natural width if it would be given
|
1811
|
+
the specified <em class="parameter"><code>height</code></em>.
|
1812
|
+
</p>
|
1813
|
+
<p>
|
1814
|
+
<em class="parameter"><code>area</code></em> stores some geometrical information in <em class="parameter"><code>context</code></em> along the way
|
1815
|
+
while calling <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-height" title="gtk_cell_area_get_preferred_height ()"><code class="function">gtk_cell_area_get_preferred_height()</code></a>. It's important to
|
1816
|
+
perform a series of <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-height" title="gtk_cell_area_get_preferred_height ()"><code class="function">gtk_cell_area_get_preferred_height()</code></a> requests with
|
1817
|
+
<em class="parameter"><code>context</code></em> first and then call <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-width-for-height" title="gtk_cell_area_get_preferred_width_for_height ()"><code class="function">gtk_cell_area_get_preferred_width_for_height()</code></a>
|
1818
|
+
on each cell area individually to get the height for width of each
|
1819
|
+
fully requested row.
|
1820
|
+
</p>
|
1821
|
+
<p>
|
1822
|
+
If at some point, the height of a single row changes, it should be
|
1823
|
+
requested with <a class="link" href="GtkCellArea.html#gtk-cell-area-get-preferred-height" title="gtk_cell_area_get_preferred_height ()"><code class="function">gtk_cell_area_get_preferred_height()</code></a> again and then
|
1824
|
+
the full height of the requested rows checked again with
|
1825
|
+
<a class="link" href="GtkCellAreaContext.html#gtk-cell-area-context-get-preferred-height" title="gtk_cell_area_context_get_preferred_height ()"><code class="function">gtk_cell_area_context_get_preferred_height()</code></a>.
|
1826
|
+
</p>
|
1827
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1828
|
+
<colgroup>
|
1829
|
+
<col align="left" valign="top">
|
1830
|
+
<col>
|
1831
|
+
</colgroup>
|
1832
|
+
<tbody>
|
1833
|
+
<tr>
|
1834
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1835
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1836
|
+
</td>
|
1837
|
+
</tr>
|
1838
|
+
<tr>
|
1839
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1840
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> which has already been requested for widths.</td>
|
1841
|
+
</tr>
|
1842
|
+
<tr>
|
1843
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1844
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> where <em class="parameter"><code>area</code></em> will be rendering</td>
|
1845
|
+
</tr>
|
1846
|
+
<tr>
|
1847
|
+
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
1848
|
+
<td>the height for which to check the width of this area</td>
|
1849
|
+
</tr>
|
1850
|
+
<tr>
|
1851
|
+
<td><p><span class="term"><em class="parameter"><code>minimum_width</code></em> :</span></p></td>
|
1852
|
+
<td>location to store the minimum width, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1853
|
+
</td>
|
1854
|
+
</tr>
|
1855
|
+
<tr>
|
1856
|
+
<td><p><span class="term"><em class="parameter"><code>natural_width</code></em> :</span></p></td>
|
1857
|
+
<td>location to store the natural width, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1858
|
+
</td>
|
1859
|
+
</tr>
|
1860
|
+
</tbody>
|
1861
|
+
</table></div>
|
1862
|
+
<p class="since">Since 3.0</p>
|
1863
|
+
</div>
|
1864
|
+
<hr>
|
1865
|
+
<div class="refsect2">
|
1866
|
+
<a name="gtk-cell-area-get-current-path-string"></a><h3>gtk_cell_area_get_current_path_string ()</h3>
|
1867
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_cell_area_get_current_path_string
|
1868
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
|
1869
|
+
<p>
|
1870
|
+
Gets the current <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> string for the currently
|
1871
|
+
applied <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, this is implicitly updated when
|
1872
|
+
<a class="link" href="GtkCellArea.html#gtk-cell-area-apply-attributes" title="gtk_cell_area_apply_attributes ()"><code class="function">gtk_cell_area_apply_attributes()</code></a> is called and can be
|
1873
|
+
used to interact with renderers from <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1874
|
+
subclasses.
|
1875
|
+
</p>
|
1876
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1877
|
+
<colgroup>
|
1878
|
+
<col align="left" valign="top">
|
1879
|
+
<col>
|
1880
|
+
</colgroup>
|
1881
|
+
<tbody>
|
1882
|
+
<tr>
|
1883
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1884
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1885
|
+
</td>
|
1886
|
+
</tr>
|
1887
|
+
<tr>
|
1888
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1889
|
+
<td>The current <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> string for the current
|
1890
|
+
attributes applied to <em class="parameter"><code>area</code></em>. This string belongs to the area and
|
1891
|
+
should not be freed.</td>
|
1892
|
+
</tr>
|
1893
|
+
</tbody>
|
1894
|
+
</table></div>
|
1895
|
+
<p class="since">Since 3.0</p>
|
1896
|
+
</div>
|
1897
|
+
<hr>
|
1898
|
+
<div class="refsect2">
|
1899
|
+
<a name="gtk-cell-area-apply-attributes"></a><h3>gtk_cell_area_apply_attributes ()</h3>
|
1900
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_apply_attributes (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1901
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
|
1902
|
+
<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
|
1903
|
+
<em class="parameter"><code><span class="type">gboolean</span> is_expander</code></em>,
|
1904
|
+
<em class="parameter"><code><span class="type">gboolean</span> is_expanded</code></em>);</pre>
|
1905
|
+
<p>
|
1906
|
+
Applies any connected attributes to the renderers in
|
1907
|
+
<em class="parameter"><code>area</code></em> by pulling the values from <em class="parameter"><code>tree_model</code></em>.
|
1908
|
+
</p>
|
1909
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1910
|
+
<colgroup>
|
1911
|
+
<col align="left" valign="top">
|
1912
|
+
<col>
|
1913
|
+
</colgroup>
|
1914
|
+
<tbody>
|
1915
|
+
<tr>
|
1916
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1917
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1918
|
+
</td>
|
1919
|
+
</tr>
|
1920
|
+
<tr>
|
1921
|
+
<td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
|
1922
|
+
<td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> to pull values from</td>
|
1923
|
+
</tr>
|
1924
|
+
<tr>
|
1925
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1926
|
+
<td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> in <em class="parameter"><code>tree_model</code></em> to apply values for</td>
|
1927
|
+
</tr>
|
1928
|
+
<tr>
|
1929
|
+
<td><p><span class="term"><em class="parameter"><code>is_expander</code></em> :</span></p></td>
|
1930
|
+
<td>whether <em class="parameter"><code>iter</code></em> has children</td>
|
1931
|
+
</tr>
|
1932
|
+
<tr>
|
1933
|
+
<td><p><span class="term"><em class="parameter"><code>is_expanded</code></em> :</span></p></td>
|
1934
|
+
<td>whether <em class="parameter"><code>iter</code></em> is expanded in the view and
|
1935
|
+
children are visible</td>
|
1936
|
+
</tr>
|
1937
|
+
</tbody>
|
1938
|
+
</table></div>
|
1939
|
+
<p class="since">Since 3.0</p>
|
1940
|
+
</div>
|
1941
|
+
<hr>
|
1942
|
+
<div class="refsect2">
|
1943
|
+
<a name="gtk-cell-area-attribute-connect"></a><h3>gtk_cell_area_attribute_connect ()</h3>
|
1944
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_attribute_connect (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1945
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
1946
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *attribute</code></em>,
|
1947
|
+
<em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
|
1948
|
+
<p>
|
1949
|
+
Connects an <em class="parameter"><code>attribute</code></em> to apply values from <em class="parameter"><code>column</code></em> for the
|
1950
|
+
<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> in use.
|
1951
|
+
</p>
|
1952
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1953
|
+
<colgroup>
|
1954
|
+
<col align="left" valign="top">
|
1955
|
+
<col>
|
1956
|
+
</colgroup>
|
1957
|
+
<tbody>
|
1958
|
+
<tr>
|
1959
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1960
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1961
|
+
</td>
|
1962
|
+
</tr>
|
1963
|
+
<tr>
|
1964
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
1965
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to connect an attribute for</td>
|
1966
|
+
</tr>
|
1967
|
+
<tr>
|
1968
|
+
<td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
|
1969
|
+
<td>the attribute name</td>
|
1970
|
+
</tr>
|
1971
|
+
<tr>
|
1972
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1973
|
+
<td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> column to fetch attribute values from</td>
|
1974
|
+
</tr>
|
1975
|
+
</tbody>
|
1976
|
+
</table></div>
|
1977
|
+
<p class="since">Since 3.0</p>
|
1978
|
+
</div>
|
1979
|
+
<hr>
|
1980
|
+
<div class="refsect2">
|
1981
|
+
<a name="gtk-cell-area-attribute-disconnect"></a><h3>gtk_cell_area_attribute_disconnect ()</h3>
|
1982
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_attribute_disconnect (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
1983
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
1984
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *attribute</code></em>);</pre>
|
1985
|
+
<p>
|
1986
|
+
Disconnects <em class="parameter"><code>attribute</code></em> for the <em class="parameter"><code>renderer</code></em> in <em class="parameter"><code>area</code></em> so that
|
1987
|
+
attribute will no longer be updated with values from the
|
1988
|
+
model.
|
1989
|
+
</p>
|
1990
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1991
|
+
<colgroup>
|
1992
|
+
<col align="left" valign="top">
|
1993
|
+
<col>
|
1994
|
+
</colgroup>
|
1995
|
+
<tbody>
|
1996
|
+
<tr>
|
1997
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
1998
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
1999
|
+
</td>
|
2000
|
+
</tr>
|
2001
|
+
<tr>
|
2002
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2003
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to disconnect an attribute for</td>
|
2004
|
+
</tr>
|
2005
|
+
<tr>
|
2006
|
+
<td><p><span class="term"><em class="parameter"><code>attribute</code></em> :</span></p></td>
|
2007
|
+
<td>the attribute name</td>
|
2008
|
+
</tr>
|
2009
|
+
</tbody>
|
2010
|
+
</table></div>
|
2011
|
+
<p class="since">Since 3.0</p>
|
2012
|
+
</div>
|
2013
|
+
<hr>
|
2014
|
+
<div class="refsect2">
|
2015
|
+
<a name="gtk-cell-area-class-install-cell-property"></a><h3>gtk_cell_area_class_install_cell_property ()</h3>
|
2016
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_class_install_cell_property
|
2017
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a> *aclass</code></em>,
|
2018
|
+
<em class="parameter"><code><span class="type">guint</span> property_id</code></em>,
|
2019
|
+
<em class="parameter"><code><span class="type">GParamSpec</span> *pspec</code></em>);</pre>
|
2020
|
+
<p>
|
2021
|
+
Installs a cell property on a cell area class.
|
2022
|
+
</p>
|
2023
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2024
|
+
<colgroup>
|
2025
|
+
<col align="left" valign="top">
|
2026
|
+
<col>
|
2027
|
+
</colgroup>
|
2028
|
+
<tbody>
|
2029
|
+
<tr>
|
2030
|
+
<td><p><span class="term"><em class="parameter"><code>aclass</code></em> :</span></p></td>
|
2031
|
+
<td>a <a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a>
|
2032
|
+
</td>
|
2033
|
+
</tr>
|
2034
|
+
<tr>
|
2035
|
+
<td><p><span class="term"><em class="parameter"><code>property_id</code></em> :</span></p></td>
|
2036
|
+
<td>the id for the property</td>
|
2037
|
+
</tr>
|
2038
|
+
<tr>
|
2039
|
+
<td><p><span class="term"><em class="parameter"><code>pspec</code></em> :</span></p></td>
|
2040
|
+
<td>the <span class="type">GParamSpec</span> for the property</td>
|
2041
|
+
</tr>
|
2042
|
+
</tbody>
|
2043
|
+
</table></div>
|
2044
|
+
<p class="since">Since 3.0</p>
|
2045
|
+
</div>
|
2046
|
+
<hr>
|
2047
|
+
<div class="refsect2">
|
2048
|
+
<a name="gtk-cell-area-class-find-cell-property"></a><h3>gtk_cell_area_class_find_cell_property ()</h3>
|
2049
|
+
<pre class="programlisting"><span class="returnvalue">GParamSpec</span> * gtk_cell_area_class_find_cell_property
|
2050
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a> *aclass</code></em>,
|
2051
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);</pre>
|
2052
|
+
<p>
|
2053
|
+
Finds a cell property of a cell area class by name.
|
2054
|
+
</p>
|
2055
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2056
|
+
<colgroup>
|
2057
|
+
<col align="left" valign="top">
|
2058
|
+
<col>
|
2059
|
+
</colgroup>
|
2060
|
+
<tbody>
|
2061
|
+
<tr>
|
2062
|
+
<td><p><span class="term"><em class="parameter"><code>aclass</code></em> :</span></p></td>
|
2063
|
+
<td>a <a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a>
|
2064
|
+
</td>
|
2065
|
+
</tr>
|
2066
|
+
<tr>
|
2067
|
+
<td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
|
2068
|
+
<td>the name of the child property to find</td>
|
2069
|
+
</tr>
|
2070
|
+
<tr>
|
2071
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2072
|
+
<td>the <span class="type">GParamSpec</span> of the child property
|
2073
|
+
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>aclass</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>
|
2074
|
+
</td>
|
2075
|
+
</tr>
|
2076
|
+
</tbody>
|
2077
|
+
</table></div>
|
2078
|
+
<p class="since">Since 3.0</p>
|
2079
|
+
</div>
|
2080
|
+
<hr>
|
2081
|
+
<div class="refsect2">
|
2082
|
+
<a name="gtk-cell-area-class-list-cell-properties"></a><h3>gtk_cell_area_class_list_cell_properties ()</h3>
|
2083
|
+
<pre class="programlisting"><span class="returnvalue">GParamSpec</span> ** gtk_cell_area_class_list_cell_properties
|
2084
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a> *aclass</code></em>,
|
2085
|
+
<em class="parameter"><code><span class="type">guint</span> *n_properties</code></em>);</pre>
|
2086
|
+
<p>
|
2087
|
+
Returns all cell properties of a cell area class.
|
2088
|
+
</p>
|
2089
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2090
|
+
<colgroup>
|
2091
|
+
<col align="left" valign="top">
|
2092
|
+
<col>
|
2093
|
+
</colgroup>
|
2094
|
+
<tbody>
|
2095
|
+
<tr>
|
2096
|
+
<td><p><span class="term"><em class="parameter"><code>aclass</code></em> :</span></p></td>
|
2097
|
+
<td>a <a class="link" href="GtkCellArea.html#GtkCellAreaClass" title="struct GtkCellAreaClass"><span class="type">GtkCellAreaClass</span></a>
|
2098
|
+
</td>
|
2099
|
+
</tr>
|
2100
|
+
<tr>
|
2101
|
+
<td><p><span class="term"><em class="parameter"><code>n_properties</code></em> :</span></p></td>
|
2102
|
+
<td>location to return the number of cell properties found</td>
|
2103
|
+
</tr>
|
2104
|
+
<tr>
|
2105
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2106
|
+
<td>a newly
|
2107
|
+
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>*. The array
|
2108
|
+
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>
|
2109
|
+
</td>
|
2110
|
+
</tr>
|
2111
|
+
</tbody>
|
2112
|
+
</table></div>
|
2113
|
+
<p class="since">Since 3.0</p>
|
2114
|
+
</div>
|
2115
|
+
<hr>
|
2116
|
+
<div class="refsect2">
|
2117
|
+
<a name="gtk-cell-area-add-with-properties"></a><h3>gtk_cell_area_add_with_properties ()</h3>
|
2118
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_add_with_properties (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2119
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2120
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
2121
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
2122
|
+
<p>
|
2123
|
+
Adds <em class="parameter"><code>renderer</code></em> to <em class="parameter"><code>area</code></em>, setting cell properties at the same time.
|
2124
|
+
See <a class="link" href="GtkCellArea.html#gtk-cell-area-add" title="gtk_cell_area_add ()"><code class="function">gtk_cell_area_add()</code></a> and <a class="link" href="GtkCellArea.html#gtk-cell-area-cell-set" title="gtk_cell_area_cell_set ()"><code class="function">gtk_cell_area_cell_set()</code></a> for more details.
|
2125
|
+
</p>
|
2126
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2127
|
+
<colgroup>
|
2128
|
+
<col align="left" valign="top">
|
2129
|
+
<col>
|
2130
|
+
</colgroup>
|
2131
|
+
<tbody>
|
2132
|
+
<tr>
|
2133
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2134
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2135
|
+
</td>
|
2136
|
+
</tr>
|
2137
|
+
<tr>
|
2138
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2139
|
+
<td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to be placed inside <em class="parameter"><code>area</code></em>
|
2140
|
+
</td>
|
2141
|
+
</tr>
|
2142
|
+
<tr>
|
2143
|
+
<td><p><span class="term"><em class="parameter"><code>first_prop_name</code></em> :</span></p></td>
|
2144
|
+
<td>the name of the first cell property to set</td>
|
2145
|
+
</tr>
|
2146
|
+
<tr>
|
2147
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2148
|
+
<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
|
2149
|
+
with <em class="parameter"><code>first_prop_name</code></em>
|
2150
|
+
</td>
|
2151
|
+
</tr>
|
2152
|
+
</tbody>
|
2153
|
+
</table></div>
|
2154
|
+
<p class="since">Since 3.0</p>
|
2155
|
+
</div>
|
2156
|
+
<hr>
|
2157
|
+
<div class="refsect2">
|
2158
|
+
<a name="gtk-cell-area-cell-set"></a><h3>gtk_cell_area_cell_set ()</h3>
|
2159
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_cell_set (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2160
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2161
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
2162
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
2163
|
+
<p>
|
2164
|
+
Sets one or more cell properties for <em class="parameter"><code>cell</code></em> in <em class="parameter"><code>area</code></em>.
|
2165
|
+
</p>
|
2166
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2167
|
+
<colgroup>
|
2168
|
+
<col align="left" valign="top">
|
2169
|
+
<col>
|
2170
|
+
</colgroup>
|
2171
|
+
<tbody>
|
2172
|
+
<tr>
|
2173
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2174
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2175
|
+
</td>
|
2176
|
+
</tr>
|
2177
|
+
<tr>
|
2178
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2179
|
+
<td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> which is a cell inside <em class="parameter"><code>area</code></em>
|
2180
|
+
</td>
|
2181
|
+
</tr>
|
2182
|
+
<tr>
|
2183
|
+
<td><p><span class="term"><em class="parameter"><code>first_prop_name</code></em> :</span></p></td>
|
2184
|
+
<td>the name of the first cell property to set</td>
|
2185
|
+
</tr>
|
2186
|
+
<tr>
|
2187
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2188
|
+
<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
|
2189
|
+
with <em class="parameter"><code>first_prop_name</code></em>
|
2190
|
+
</td>
|
2191
|
+
</tr>
|
2192
|
+
</tbody>
|
2193
|
+
</table></div>
|
2194
|
+
<p class="since">Since 3.0</p>
|
2195
|
+
</div>
|
2196
|
+
<hr>
|
2197
|
+
<div class="refsect2">
|
2198
|
+
<a name="gtk-cell-area-cell-get"></a><h3>gtk_cell_area_cell_get ()</h3>
|
2199
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_cell_get (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2200
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2201
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_prop_name</code></em>,
|
2202
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
2203
|
+
<p>
|
2204
|
+
Gets the values of one or more cell properties for <em class="parameter"><code>renderer</code></em> in <em class="parameter"><code>area</code></em>.
|
2205
|
+
</p>
|
2206
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2207
|
+
<colgroup>
|
2208
|
+
<col align="left" valign="top">
|
2209
|
+
<col>
|
2210
|
+
</colgroup>
|
2211
|
+
<tbody>
|
2212
|
+
<tr>
|
2213
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2214
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2215
|
+
</td>
|
2216
|
+
</tr>
|
2217
|
+
<tr>
|
2218
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2219
|
+
<td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> which is inside <em class="parameter"><code>area</code></em>
|
2220
|
+
</td>
|
2221
|
+
</tr>
|
2222
|
+
<tr>
|
2223
|
+
<td><p><span class="term"><em class="parameter"><code>first_prop_name</code></em> :</span></p></td>
|
2224
|
+
<td>the name of the first cell property to get</td>
|
2225
|
+
</tr>
|
2226
|
+
<tr>
|
2227
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
2228
|
+
<td>return location for the first cell property, followed
|
2229
|
+
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>
|
2230
|
+
</td>
|
2231
|
+
</tr>
|
2232
|
+
</tbody>
|
2233
|
+
</table></div>
|
2234
|
+
<p class="since">Since 3.0</p>
|
2235
|
+
</div>
|
2236
|
+
<hr>
|
2237
|
+
<div class="refsect2">
|
2238
|
+
<a name="gtk-cell-area-cell-set-valist"></a><h3>gtk_cell_area_cell_set_valist ()</h3>
|
2239
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_cell_set_valist (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2240
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2241
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
|
2242
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
2243
|
+
<p>
|
2244
|
+
Sets one or more cell properties for <em class="parameter"><code>renderer</code></em> in <em class="parameter"><code>area</code></em>.
|
2245
|
+
</p>
|
2246
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2247
|
+
<colgroup>
|
2248
|
+
<col align="left" valign="top">
|
2249
|
+
<col>
|
2250
|
+
</colgroup>
|
2251
|
+
<tbody>
|
2252
|
+
<tr>
|
2253
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2254
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2255
|
+
</td>
|
2256
|
+
</tr>
|
2257
|
+
<tr>
|
2258
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2259
|
+
<td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> which inside <em class="parameter"><code>area</code></em>
|
2260
|
+
</td>
|
2261
|
+
</tr>
|
2262
|
+
<tr>
|
2263
|
+
<td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
|
2264
|
+
<td>the name of the first cell property to set</td>
|
2265
|
+
</tr>
|
2266
|
+
<tr>
|
2267
|
+
<td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
|
2268
|
+
<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
|
2269
|
+
with <em class="parameter"><code>first_prop_name</code></em>
|
2270
|
+
</td>
|
2271
|
+
</tr>
|
2272
|
+
</tbody>
|
2273
|
+
</table></div>
|
2274
|
+
<p class="since">Since 3.0</p>
|
2275
|
+
</div>
|
2276
|
+
<hr>
|
2277
|
+
<div class="refsect2">
|
2278
|
+
<a name="gtk-cell-area-cell-get-valist"></a><h3>gtk_cell_area_cell_get_valist ()</h3>
|
2279
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_cell_get_valist (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2280
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2281
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
|
2282
|
+
<em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
|
2283
|
+
<p>
|
2284
|
+
Gets the values of one or more cell properties for <em class="parameter"><code>renderer</code></em> in <em class="parameter"><code>area</code></em>.
|
2285
|
+
</p>
|
2286
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2287
|
+
<colgroup>
|
2288
|
+
<col align="left" valign="top">
|
2289
|
+
<col>
|
2290
|
+
</colgroup>
|
2291
|
+
<tbody>
|
2292
|
+
<tr>
|
2293
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2294
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2295
|
+
</td>
|
2296
|
+
</tr>
|
2297
|
+
<tr>
|
2298
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2299
|
+
<td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> inside <em class="parameter"><code>area</code></em>
|
2300
|
+
</td>
|
2301
|
+
</tr>
|
2302
|
+
<tr>
|
2303
|
+
<td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
|
2304
|
+
<td>the name of the first property to get</td>
|
2305
|
+
</tr>
|
2306
|
+
<tr>
|
2307
|
+
<td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
|
2308
|
+
<td>return location for the first property, followed
|
2309
|
+
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>
|
2310
|
+
</td>
|
2311
|
+
</tr>
|
2312
|
+
</tbody>
|
2313
|
+
</table></div>
|
2314
|
+
<p class="since">Since 3.0</p>
|
2315
|
+
</div>
|
2316
|
+
<hr>
|
2317
|
+
<div class="refsect2">
|
2318
|
+
<a name="gtk-cell-area-cell-set-property"></a><h3>gtk_cell_area_cell_set_property ()</h3>
|
2319
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_cell_set_property (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2320
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2321
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
|
2322
|
+
<em class="parameter"><code>const <span class="type">GValue</span> *value</code></em>);</pre>
|
2323
|
+
<p>
|
2324
|
+
Sets a cell property for <em class="parameter"><code>renderer</code></em> in <em class="parameter"><code>area</code></em>.
|
2325
|
+
</p>
|
2326
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2327
|
+
<colgroup>
|
2328
|
+
<col align="left" valign="top">
|
2329
|
+
<col>
|
2330
|
+
</colgroup>
|
2331
|
+
<tbody>
|
2332
|
+
<tr>
|
2333
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2334
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2335
|
+
</td>
|
2336
|
+
</tr>
|
2337
|
+
<tr>
|
2338
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2339
|
+
<td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> inside <em class="parameter"><code>area</code></em>
|
2340
|
+
</td>
|
2341
|
+
</tr>
|
2342
|
+
<tr>
|
2343
|
+
<td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
|
2344
|
+
<td>the name of the cell property to set</td>
|
2345
|
+
</tr>
|
2346
|
+
<tr>
|
2347
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2348
|
+
<td>the value to set the cell property to</td>
|
2349
|
+
</tr>
|
2350
|
+
</tbody>
|
2351
|
+
</table></div>
|
2352
|
+
<p class="since">Since 3.0</p>
|
2353
|
+
</div>
|
2354
|
+
<hr>
|
2355
|
+
<div class="refsect2">
|
2356
|
+
<a name="gtk-cell-area-cell-get-property"></a><h3>gtk_cell_area_cell_get_property ()</h3>
|
2357
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_cell_get_property (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2358
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2359
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>,
|
2360
|
+
<em class="parameter"><code><span class="type">GValue</span> *value</code></em>);</pre>
|
2361
|
+
<p>
|
2362
|
+
Gets the value of a cell property for <em class="parameter"><code>renderer</code></em> in <em class="parameter"><code>area</code></em>.
|
2363
|
+
</p>
|
2364
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2365
|
+
<colgroup>
|
2366
|
+
<col align="left" valign="top">
|
2367
|
+
<col>
|
2368
|
+
</colgroup>
|
2369
|
+
<tbody>
|
2370
|
+
<tr>
|
2371
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2372
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2373
|
+
</td>
|
2374
|
+
</tr>
|
2375
|
+
<tr>
|
2376
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2377
|
+
<td>a <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> inside <em class="parameter"><code>area</code></em>
|
2378
|
+
</td>
|
2379
|
+
</tr>
|
2380
|
+
<tr>
|
2381
|
+
<td><p><span class="term"><em class="parameter"><code>property_name</code></em> :</span></p></td>
|
2382
|
+
<td>the name of the property to get</td>
|
2383
|
+
</tr>
|
2384
|
+
<tr>
|
2385
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
2386
|
+
<td>a location to return the value</td>
|
2387
|
+
</tr>
|
2388
|
+
</tbody>
|
2389
|
+
</table></div>
|
2390
|
+
<p class="since">Since 3.0</p>
|
2391
|
+
</div>
|
2392
|
+
<hr>
|
2393
|
+
<div class="refsect2">
|
2394
|
+
<a name="gtk-cell-area-is-activatable"></a><h3>gtk_cell_area_is_activatable ()</h3>
|
2395
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_cell_area_is_activatable (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
|
2396
|
+
<p>
|
2397
|
+
Returns whether the area can do anything when activated,
|
2398
|
+
after applying new attributes to <em class="parameter"><code>area</code></em>.
|
2399
|
+
</p>
|
2400
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2401
|
+
<colgroup>
|
2402
|
+
<col align="left" valign="top">
|
2403
|
+
<col>
|
2404
|
+
</colgroup>
|
2405
|
+
<tbody>
|
2406
|
+
<tr>
|
2407
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2408
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2409
|
+
</td>
|
2410
|
+
</tr>
|
2411
|
+
<tr>
|
2412
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2413
|
+
<td>whether <em class="parameter"><code>area</code></em> can do anything when activated.</td>
|
2414
|
+
</tr>
|
2415
|
+
</tbody>
|
2416
|
+
</table></div>
|
2417
|
+
<p class="since">Since 3.0</p>
|
2418
|
+
</div>
|
2419
|
+
<hr>
|
2420
|
+
<div class="refsect2">
|
2421
|
+
<a name="gtk-cell-area-activate"></a><h3>gtk_cell_area_activate ()</h3>
|
2422
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_cell_area_activate (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2423
|
+
<em class="parameter"><code><a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> *context</code></em>,
|
2424
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
2425
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
2426
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> flags</code></em>,
|
2427
|
+
<em class="parameter"><code><span class="type">gboolean</span> edit_only</code></em>);</pre>
|
2428
|
+
<p>
|
2429
|
+
Activates <em class="parameter"><code>area</code></em>, usually by activating the currently focused
|
2430
|
+
cell, however some subclasses which embed widgets in the area
|
2431
|
+
can also activate a widget if it currently has the focus.
|
2432
|
+
</p>
|
2433
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2434
|
+
<colgroup>
|
2435
|
+
<col align="left" valign="top">
|
2436
|
+
<col>
|
2437
|
+
</colgroup>
|
2438
|
+
<tbody>
|
2439
|
+
<tr>
|
2440
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2441
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2442
|
+
</td>
|
2443
|
+
</tr>
|
2444
|
+
<tr>
|
2445
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
2446
|
+
<td>the <a class="link" href="GtkCellAreaContext.html" title="GtkCellAreaContext"><span class="type">GtkCellAreaContext</span></a> in context with the current row data</td>
|
2447
|
+
</tr>
|
2448
|
+
<tr>
|
2449
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
2450
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that <em class="parameter"><code>area</code></em> is rendering on</td>
|
2451
|
+
</tr>
|
2452
|
+
<tr>
|
2453
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
2454
|
+
<td>the size and location of <em class="parameter"><code>area</code></em> relative to <em class="parameter"><code>widget</code></em>'s allocation</td>
|
2455
|
+
</tr>
|
2456
|
+
<tr>
|
2457
|
+
<td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
|
2458
|
+
<td>the <a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> flags for <em class="parameter"><code>area</code></em> for this row of data.</td>
|
2459
|
+
</tr>
|
2460
|
+
<tr>
|
2461
|
+
<td><p><span class="term"><em class="parameter"><code>edit_only</code></em> :</span></p></td>
|
2462
|
+
<td>if <code class="literal">TRUE</code> then only cell renderers that are <a class="link" href="GtkCellRenderer.html#GTK-CELL-RENDERER-MODE-EDITABLE:CAPS"><code class="literal">GTK_CELL_RENDERER_MODE_EDITABLE</code></a>
|
2463
|
+
will be activated.</td>
|
2464
|
+
</tr>
|
2465
|
+
<tr>
|
2466
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2467
|
+
<td>Whether <em class="parameter"><code>area</code></em> was successfully activated.</td>
|
2468
|
+
</tr>
|
2469
|
+
</tbody>
|
2470
|
+
</table></div>
|
2471
|
+
<p class="since">Since 3.0</p>
|
2472
|
+
</div>
|
2473
|
+
<hr>
|
2474
|
+
<div class="refsect2">
|
2475
|
+
<a name="gtk-cell-area-focus"></a><h3>gtk_cell_area_focus ()</h3>
|
2476
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_cell_area_focus (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2477
|
+
<em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkDirectionType" title="enum GtkDirectionType"><span class="type">GtkDirectionType</span></a> direction</code></em>);</pre>
|
2478
|
+
<p>
|
2479
|
+
This should be called by the <em class="parameter"><code>area</code></em>'s owning layout widget
|
2480
|
+
when focus is to be passed to <em class="parameter"><code>area</code></em>, or moved within <em class="parameter"><code>area</code></em>
|
2481
|
+
for a given <em class="parameter"><code>direction</code></em> and row data.
|
2482
|
+
</p>
|
2483
|
+
<p>
|
2484
|
+
Implementing <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> classes should implement this
|
2485
|
+
method to receive and navigate focus in its own way particular
|
2486
|
+
to how it lays out cells.
|
2487
|
+
</p>
|
2488
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2489
|
+
<colgroup>
|
2490
|
+
<col align="left" valign="top">
|
2491
|
+
<col>
|
2492
|
+
</colgroup>
|
2493
|
+
<tbody>
|
2494
|
+
<tr>
|
2495
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2496
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2497
|
+
</td>
|
2498
|
+
</tr>
|
2499
|
+
<tr>
|
2500
|
+
<td><p><span class="term"><em class="parameter"><code>direction</code></em> :</span></p></td>
|
2501
|
+
<td>the <a class="link" href="gtk3-Standard-Enumerations.html#GtkDirectionType" title="enum GtkDirectionType"><span class="type">GtkDirectionType</span></a>
|
2502
|
+
</td>
|
2503
|
+
</tr>
|
2504
|
+
<tr>
|
2505
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2506
|
+
<td>
|
2507
|
+
<code class="literal">TRUE</code> if focus remains inside <em class="parameter"><code>area</code></em> as a result of this call.</td>
|
2508
|
+
</tr>
|
2509
|
+
</tbody>
|
2510
|
+
</table></div>
|
2511
|
+
<p class="since">Since 3.0</p>
|
2512
|
+
</div>
|
2513
|
+
<hr>
|
2514
|
+
<div class="refsect2">
|
2515
|
+
<a name="gtk-cell-area-set-focus-cell"></a><h3>gtk_cell_area_set_focus_cell ()</h3>
|
2516
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_set_focus_cell (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2517
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);</pre>
|
2518
|
+
<p>
|
2519
|
+
Explicitly sets the currently focused cell to <em class="parameter"><code>renderer</code></em>.
|
2520
|
+
</p>
|
2521
|
+
<p>
|
2522
|
+
This is generally called by implementations of
|
2523
|
+
<a class="link" href="GtkCellArea.html#GtkCellAreaClass.focus"><code class="function">GtkCellAreaClass.focus()</code></a> or <a class="link" href="GtkCellArea.html#GtkCellAreaClass.event"><code class="function">GtkCellAreaClass.event()</code></a>,
|
2524
|
+
however it can also be used to implement functions such
|
2525
|
+
as <a class="link" href="GtkTreeView.html#gtk-tree-view-set-cursor-on-cell" title="gtk_tree_view_set_cursor_on_cell ()"><code class="function">gtk_tree_view_set_cursor_on_cell()</code></a>.
|
2526
|
+
</p>
|
2527
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2528
|
+
<colgroup>
|
2529
|
+
<col align="left" valign="top">
|
2530
|
+
<col>
|
2531
|
+
</colgroup>
|
2532
|
+
<tbody>
|
2533
|
+
<tr>
|
2534
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2535
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2536
|
+
</td>
|
2537
|
+
</tr>
|
2538
|
+
<tr>
|
2539
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2540
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to give focus to</td>
|
2541
|
+
</tr>
|
2542
|
+
</tbody>
|
2543
|
+
</table></div>
|
2544
|
+
<p class="since">Since 3.0</p>
|
2545
|
+
</div>
|
2546
|
+
<hr>
|
2547
|
+
<div class="refsect2">
|
2548
|
+
<a name="gtk-cell-area-get-focus-cell"></a><h3>gtk_cell_area_get_focus_cell ()</h3>
|
2549
|
+
<pre class="programlisting"><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="returnvalue">GtkCellRenderer</span></a> * gtk_cell_area_get_focus_cell (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
|
2550
|
+
<p>
|
2551
|
+
Retrieves the currently focused cell for <em class="parameter"><code>area</code></em>
|
2552
|
+
</p>
|
2553
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2554
|
+
<colgroup>
|
2555
|
+
<col align="left" valign="top">
|
2556
|
+
<col>
|
2557
|
+
</colgroup>
|
2558
|
+
<tbody>
|
2559
|
+
<tr>
|
2560
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2561
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2562
|
+
</td>
|
2563
|
+
</tr>
|
2564
|
+
<tr>
|
2565
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2566
|
+
<td>the currently focused cell in <em class="parameter"><code>area</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2567
|
+
</td>
|
2568
|
+
</tr>
|
2569
|
+
</tbody>
|
2570
|
+
</table></div>
|
2571
|
+
<p class="since">Since 3.0</p>
|
2572
|
+
</div>
|
2573
|
+
<hr>
|
2574
|
+
<div class="refsect2">
|
2575
|
+
<a name="gtk-cell-area-add-focus-sibling"></a><h3>gtk_cell_area_add_focus_sibling ()</h3>
|
2576
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_add_focus_sibling (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2577
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2578
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *sibling</code></em>);</pre>
|
2579
|
+
<p>
|
2580
|
+
Adds <em class="parameter"><code>sibling</code></em> to <em class="parameter"><code>renderer</code></em>'s focusable area, focus will be drawn
|
2581
|
+
around <em class="parameter"><code>renderer</code></em> and all of its siblings if <em class="parameter"><code>renderer</code></em> can
|
2582
|
+
focus for a given row.
|
2583
|
+
</p>
|
2584
|
+
<p>
|
2585
|
+
Events handled by focus siblings can also activate the given
|
2586
|
+
focusable <em class="parameter"><code>renderer</code></em>.
|
2587
|
+
</p>
|
2588
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2589
|
+
<colgroup>
|
2590
|
+
<col align="left" valign="top">
|
2591
|
+
<col>
|
2592
|
+
</colgroup>
|
2593
|
+
<tbody>
|
2594
|
+
<tr>
|
2595
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2596
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2597
|
+
</td>
|
2598
|
+
</tr>
|
2599
|
+
<tr>
|
2600
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2601
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> expected to have focus</td>
|
2602
|
+
</tr>
|
2603
|
+
<tr>
|
2604
|
+
<td><p><span class="term"><em class="parameter"><code>sibling</code></em> :</span></p></td>
|
2605
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to add to <em class="parameter"><code>renderer</code></em>'s focus area</td>
|
2606
|
+
</tr>
|
2607
|
+
</tbody>
|
2608
|
+
</table></div>
|
2609
|
+
<p class="since">Since 3.0</p>
|
2610
|
+
</div>
|
2611
|
+
<hr>
|
2612
|
+
<div class="refsect2">
|
2613
|
+
<a name="gtk-cell-area-remove-focus-sibling"></a><h3>gtk_cell_area_remove_focus_sibling ()</h3>
|
2614
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_remove_focus_sibling (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2615
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2616
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *sibling</code></em>);</pre>
|
2617
|
+
<p>
|
2618
|
+
Removes <em class="parameter"><code>sibling</code></em> from <em class="parameter"><code>renderer</code></em>'s focus sibling list
|
2619
|
+
(see <a class="link" href="GtkCellArea.html#gtk-cell-area-add-focus-sibling" title="gtk_cell_area_add_focus_sibling ()"><code class="function">gtk_cell_area_add_focus_sibling()</code></a>).
|
2620
|
+
</p>
|
2621
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2622
|
+
<colgroup>
|
2623
|
+
<col align="left" valign="top">
|
2624
|
+
<col>
|
2625
|
+
</colgroup>
|
2626
|
+
<tbody>
|
2627
|
+
<tr>
|
2628
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2629
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2630
|
+
</td>
|
2631
|
+
</tr>
|
2632
|
+
<tr>
|
2633
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2634
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> expected to have focus</td>
|
2635
|
+
</tr>
|
2636
|
+
<tr>
|
2637
|
+
<td><p><span class="term"><em class="parameter"><code>sibling</code></em> :</span></p></td>
|
2638
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to remove from <em class="parameter"><code>renderer</code></em>'s focus area</td>
|
2639
|
+
</tr>
|
2640
|
+
</tbody>
|
2641
|
+
</table></div>
|
2642
|
+
<p class="since">Since 3.0</p>
|
2643
|
+
</div>
|
2644
|
+
<hr>
|
2645
|
+
<div class="refsect2">
|
2646
|
+
<a name="gtk-cell-area-is-focus-sibling"></a><h3>gtk_cell_area_is_focus_sibling ()</h3>
|
2647
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_cell_area_is_focus_sibling (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2648
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2649
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *sibling</code></em>);</pre>
|
2650
|
+
<p>
|
2651
|
+
Returns whether <em class="parameter"><code>sibling</code></em> is one of <em class="parameter"><code>renderer</code></em>'s focus siblings
|
2652
|
+
(see <a class="link" href="GtkCellArea.html#gtk-cell-area-add-focus-sibling" title="gtk_cell_area_add_focus_sibling ()"><code class="function">gtk_cell_area_add_focus_sibling()</code></a>).
|
2653
|
+
</p>
|
2654
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2655
|
+
<colgroup>
|
2656
|
+
<col align="left" valign="top">
|
2657
|
+
<col>
|
2658
|
+
</colgroup>
|
2659
|
+
<tbody>
|
2660
|
+
<tr>
|
2661
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2662
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2663
|
+
</td>
|
2664
|
+
</tr>
|
2665
|
+
<tr>
|
2666
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2667
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> expected to have focus</td>
|
2668
|
+
</tr>
|
2669
|
+
<tr>
|
2670
|
+
<td><p><span class="term"><em class="parameter"><code>sibling</code></em> :</span></p></td>
|
2671
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to check against <em class="parameter"><code>renderer</code></em>'s sibling list</td>
|
2672
|
+
</tr>
|
2673
|
+
<tr>
|
2674
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2675
|
+
<td>
|
2676
|
+
<code class="literal">TRUE</code> if <em class="parameter"><code>sibling</code></em> is a focus sibling of <em class="parameter"><code>renderer</code></em>
|
2677
|
+
</td>
|
2678
|
+
</tr>
|
2679
|
+
</tbody>
|
2680
|
+
</table></div>
|
2681
|
+
<p class="since">Since 3.0</p>
|
2682
|
+
</div>
|
2683
|
+
<hr>
|
2684
|
+
<div class="refsect2">
|
2685
|
+
<a name="gtk-cell-area-get-focus-siblings"></a><h3>gtk_cell_area_get_focus_siblings ()</h3>
|
2686
|
+
<pre class="programlisting">const <span class="returnvalue">GList</span> * gtk_cell_area_get_focus_siblings (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2687
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);</pre>
|
2688
|
+
<p>
|
2689
|
+
Gets the focus sibling cell renderers for <em class="parameter"><code>renderer</code></em>.
|
2690
|
+
</p>
|
2691
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2692
|
+
<colgroup>
|
2693
|
+
<col align="left" valign="top">
|
2694
|
+
<col>
|
2695
|
+
</colgroup>
|
2696
|
+
<tbody>
|
2697
|
+
<tr>
|
2698
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2699
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2700
|
+
</td>
|
2701
|
+
</tr>
|
2702
|
+
<tr>
|
2703
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2704
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> expected to have focus</td>
|
2705
|
+
</tr>
|
2706
|
+
<tr>
|
2707
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2708
|
+
<td>A <span class="type">GList</span> of <a href="GtkCellRenderer.html"><span class="type">GtkCellRenderers</span></a>.
|
2709
|
+
The returned list is internal and should not be freed. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkCellRenderer][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2710
|
+
</td>
|
2711
|
+
</tr>
|
2712
|
+
</tbody>
|
2713
|
+
</table></div>
|
2714
|
+
<p class="since">Since 3.0</p>
|
2715
|
+
</div>
|
2716
|
+
<hr>
|
2717
|
+
<div class="refsect2">
|
2718
|
+
<a name="gtk-cell-area-get-focus-from-sibling"></a><h3>gtk_cell_area_get_focus_from_sibling ()</h3>
|
2719
|
+
<pre class="programlisting"><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="returnvalue">GtkCellRenderer</span></a> * gtk_cell_area_get_focus_from_sibling
|
2720
|
+
(<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2721
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>);</pre>
|
2722
|
+
<p>
|
2723
|
+
Gets the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> which is expected to be focusable
|
2724
|
+
for which <em class="parameter"><code>renderer</code></em> is, or may be a sibling.
|
2725
|
+
</p>
|
2726
|
+
<p>
|
2727
|
+
This is handy for <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> subclasses when handling events,
|
2728
|
+
after determining the renderer at the event location it can
|
2729
|
+
then chose to activate the focus cell for which the event
|
2730
|
+
cell may have been a sibling.
|
2731
|
+
</p>
|
2732
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2733
|
+
<colgroup>
|
2734
|
+
<col align="left" valign="top">
|
2735
|
+
<col>
|
2736
|
+
</colgroup>
|
2737
|
+
<tbody>
|
2738
|
+
<tr>
|
2739
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2740
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2741
|
+
</td>
|
2742
|
+
</tr>
|
2743
|
+
<tr>
|
2744
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2745
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>
|
2746
|
+
</td>
|
2747
|
+
</tr>
|
2748
|
+
<tr>
|
2749
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2750
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> for which <em class="parameter"><code>renderer</code></em>
|
2751
|
+
is a sibling, 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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2752
|
+
</td>
|
2753
|
+
</tr>
|
2754
|
+
</tbody>
|
2755
|
+
</table></div>
|
2756
|
+
<p class="since">Since 3.0</p>
|
2757
|
+
</div>
|
2758
|
+
<hr>
|
2759
|
+
<div class="refsect2">
|
2760
|
+
<a name="gtk-cell-area-get-edited-cell"></a><h3>gtk_cell_area_get_edited_cell ()</h3>
|
2761
|
+
<pre class="programlisting"><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="returnvalue">GtkCellRenderer</span></a> * gtk_cell_area_get_edited_cell (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
|
2762
|
+
<p>
|
2763
|
+
Gets the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> in <em class="parameter"><code>area</code></em> that is currently
|
2764
|
+
being edited.
|
2765
|
+
</p>
|
2766
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2767
|
+
<colgroup>
|
2768
|
+
<col align="left" valign="top">
|
2769
|
+
<col>
|
2770
|
+
</colgroup>
|
2771
|
+
<tbody>
|
2772
|
+
<tr>
|
2773
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2774
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2775
|
+
</td>
|
2776
|
+
</tr>
|
2777
|
+
<tr>
|
2778
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2779
|
+
<td>The currently edited <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2780
|
+
</td>
|
2781
|
+
</tr>
|
2782
|
+
</tbody>
|
2783
|
+
</table></div>
|
2784
|
+
<p class="since">Since 3.0</p>
|
2785
|
+
</div>
|
2786
|
+
<hr>
|
2787
|
+
<div class="refsect2">
|
2788
|
+
<a name="gtk-cell-area-get-edit-widget"></a><h3>gtk_cell_area_get_edit_widget ()</h3>
|
2789
|
+
<pre class="programlisting"><a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="returnvalue">GtkCellEditable</span></a> * gtk_cell_area_get_edit_widget (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
|
2790
|
+
<p>
|
2791
|
+
Gets the <a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a> widget currently used
|
2792
|
+
to edit the currently edited cell.
|
2793
|
+
</p>
|
2794
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2795
|
+
<colgroup>
|
2796
|
+
<col align="left" valign="top">
|
2797
|
+
<col>
|
2798
|
+
</colgroup>
|
2799
|
+
<tbody>
|
2800
|
+
<tr>
|
2801
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2802
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2803
|
+
</td>
|
2804
|
+
</tr>
|
2805
|
+
<tr>
|
2806
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2807
|
+
<td>The currently active <a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a> widget. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2808
|
+
</td>
|
2809
|
+
</tr>
|
2810
|
+
</tbody>
|
2811
|
+
</table></div>
|
2812
|
+
<p class="since">Since 3.0</p>
|
2813
|
+
</div>
|
2814
|
+
<hr>
|
2815
|
+
<div class="refsect2">
|
2816
|
+
<a name="gtk-cell-area-activate-cell"></a><h3>gtk_cell_area_activate_cell ()</h3>
|
2817
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_cell_area_activate_cell (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2818
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
2819
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2820
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>,
|
2821
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
2822
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> flags</code></em>);</pre>
|
2823
|
+
<p>
|
2824
|
+
This is used by <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> subclasses when handling events
|
2825
|
+
to activate cells, the base <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> class activates cells
|
2826
|
+
for keyboard events for free in its own GtkCellArea-><code class="function">activate()</code>
|
2827
|
+
implementation.
|
2828
|
+
</p>
|
2829
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2830
|
+
<colgroup>
|
2831
|
+
<col align="left" valign="top">
|
2832
|
+
<col>
|
2833
|
+
</colgroup>
|
2834
|
+
<tbody>
|
2835
|
+
<tr>
|
2836
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2837
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2838
|
+
</td>
|
2839
|
+
</tr>
|
2840
|
+
<tr>
|
2841
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
2842
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that <em class="parameter"><code>area</code></em> is rendering onto</td>
|
2843
|
+
</tr>
|
2844
|
+
<tr>
|
2845
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2846
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> in <em class="parameter"><code>area</code></em> to activate</td>
|
2847
|
+
</tr>
|
2848
|
+
<tr>
|
2849
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
2850
|
+
<td>the <a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> for which cell activation should occur</td>
|
2851
|
+
</tr>
|
2852
|
+
<tr>
|
2853
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
2854
|
+
<td>the <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> in <em class="parameter"><code>widget</code></em> relative coordinates
|
2855
|
+
of <em class="parameter"><code>renderer</code></em> for the current row.</td>
|
2856
|
+
</tr>
|
2857
|
+
<tr>
|
2858
|
+
<td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
|
2859
|
+
<td>the <a class="link" href="GtkCellRenderer.html#GtkCellRendererState" title="enum GtkCellRendererState"><span class="type">GtkCellRendererState</span></a> for <em class="parameter"><code>renderer</code></em>
|
2860
|
+
</td>
|
2861
|
+
</tr>
|
2862
|
+
<tr>
|
2863
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2864
|
+
<td>whether cell activation was successful</td>
|
2865
|
+
</tr>
|
2866
|
+
</tbody>
|
2867
|
+
</table></div>
|
2868
|
+
<p class="since">Since 3.0</p>
|
2869
|
+
</div>
|
2870
|
+
<hr>
|
2871
|
+
<div class="refsect2">
|
2872
|
+
<a name="gtk-cell-area-stop-editing"></a><h3>gtk_cell_area_stop_editing ()</h3>
|
2873
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_stop_editing (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2874
|
+
<em class="parameter"><code><span class="type">gboolean</span> canceled</code></em>);</pre>
|
2875
|
+
<p>
|
2876
|
+
Explicitly stops the editing of the currently edited cell.
|
2877
|
+
</p>
|
2878
|
+
<p>
|
2879
|
+
If <em class="parameter"><code>canceled</code></em> is <code class="literal">TRUE</code>, the currently edited cell renderer
|
2880
|
+
will emit the ::editing-canceled signal, otherwise the
|
2881
|
+
the ::editing-done signal will be emitted on the current
|
2882
|
+
edit widget.
|
2883
|
+
</p>
|
2884
|
+
<p>
|
2885
|
+
See <a class="link" href="GtkCellArea.html#gtk-cell-area-get-edited-cell" title="gtk_cell_area_get_edited_cell ()"><code class="function">gtk_cell_area_get_edited_cell()</code></a> and <a class="link" href="GtkCellArea.html#gtk-cell-area-get-edit-widget" title="gtk_cell_area_get_edit_widget ()"><code class="function">gtk_cell_area_get_edit_widget()</code></a>.
|
2886
|
+
</p>
|
2887
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2888
|
+
<colgroup>
|
2889
|
+
<col align="left" valign="top">
|
2890
|
+
<col>
|
2891
|
+
</colgroup>
|
2892
|
+
<tbody>
|
2893
|
+
<tr>
|
2894
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2895
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2896
|
+
</td>
|
2897
|
+
</tr>
|
2898
|
+
<tr>
|
2899
|
+
<td><p><span class="term"><em class="parameter"><code>canceled</code></em> :</span></p></td>
|
2900
|
+
<td>whether editing was canceled.</td>
|
2901
|
+
</tr>
|
2902
|
+
</tbody>
|
2903
|
+
</table></div>
|
2904
|
+
<p class="since">Since 3.0</p>
|
2905
|
+
</div>
|
2906
|
+
<hr>
|
2907
|
+
<div class="refsect2">
|
2908
|
+
<a name="gtk-cell-area-inner-cell-area"></a><h3>gtk_cell_area_inner_cell_area ()</h3>
|
2909
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_inner_cell_area (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2910
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
2911
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area</code></em>,
|
2912
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *inner_area</code></em>);</pre>
|
2913
|
+
<p>
|
2914
|
+
This is a convenience function for <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> implementations
|
2915
|
+
to get the inner area where a given <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> will be
|
2916
|
+
rendered. It removes any padding previously added by <a class="link" href="GtkCellArea.html#gtk-cell-area-request-renderer" title="gtk_cell_area_request_renderer ()"><code class="function">gtk_cell_area_request_renderer()</code></a>.
|
2917
|
+
</p>
|
2918
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2919
|
+
<colgroup>
|
2920
|
+
<col align="left" valign="top">
|
2921
|
+
<col>
|
2922
|
+
</colgroup>
|
2923
|
+
<tbody>
|
2924
|
+
<tr>
|
2925
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2926
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2927
|
+
</td>
|
2928
|
+
</tr>
|
2929
|
+
<tr>
|
2930
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
2931
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that <em class="parameter"><code>area</code></em> is rendering onto</td>
|
2932
|
+
</tr>
|
2933
|
+
<tr>
|
2934
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
2935
|
+
<td>the <em class="parameter"><code>widget</code></em> relative coordinates where one of <em class="parameter"><code>area</code></em>'s cells
|
2936
|
+
is to be placed</td>
|
2937
|
+
</tr>
|
2938
|
+
<tr>
|
2939
|
+
<td><p><span class="term"><em class="parameter"><code>inner_area</code></em> :</span></p></td>
|
2940
|
+
<td>the return location for the inner cell area. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2941
|
+
</td>
|
2942
|
+
</tr>
|
2943
|
+
</tbody>
|
2944
|
+
</table></div>
|
2945
|
+
<p class="since">Since 3.0</p>
|
2946
|
+
</div>
|
2947
|
+
<hr>
|
2948
|
+
<div class="refsect2">
|
2949
|
+
<a name="gtk-cell-area-request-renderer"></a><h3>gtk_cell_area_request_renderer ()</h3>
|
2950
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_cell_area_request_renderer (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>,
|
2951
|
+
<em class="parameter"><code><a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer</code></em>,
|
2952
|
+
<em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>,
|
2953
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
2954
|
+
<em class="parameter"><code><span class="type">gint</span> for_size</code></em>,
|
2955
|
+
<em class="parameter"><code><span class="type">gint</span> *minimum_size</code></em>,
|
2956
|
+
<em class="parameter"><code><span class="type">gint</span> *natural_size</code></em>);</pre>
|
2957
|
+
<p>
|
2958
|
+
This is a convenience function for <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> implementations
|
2959
|
+
to request size for cell renderers. It's important to use this
|
2960
|
+
function to request size and then use <a class="link" href="GtkCellArea.html#gtk-cell-area-inner-cell-area" title="gtk_cell_area_inner_cell_area ()"><code class="function">gtk_cell_area_inner_cell_area()</code></a>
|
2961
|
+
at render and event time since this function will add padding
|
2962
|
+
around the cell for focus painting.
|
2963
|
+
</p>
|
2964
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2965
|
+
<colgroup>
|
2966
|
+
<col align="left" valign="top">
|
2967
|
+
<col>
|
2968
|
+
</colgroup>
|
2969
|
+
<tbody>
|
2970
|
+
<tr>
|
2971
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
2972
|
+
<td>a <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>
|
2973
|
+
</td>
|
2974
|
+
</tr>
|
2975
|
+
<tr>
|
2976
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
2977
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> to request size for</td>
|
2978
|
+
</tr>
|
2979
|
+
<tr>
|
2980
|
+
<td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
|
2981
|
+
<td>the <a class="link" href="gtk3-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> in which to request size</td>
|
2982
|
+
</tr>
|
2983
|
+
<tr>
|
2984
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
2985
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that <em class="parameter"><code>area</code></em> is rendering onto</td>
|
2986
|
+
</tr>
|
2987
|
+
<tr>
|
2988
|
+
<td><p><span class="term"><em class="parameter"><code>for_size</code></em> :</span></p></td>
|
2989
|
+
<td>the allocation contextual size to request for, or -1 if
|
2990
|
+
the base request for the orientation is to be returned.</td>
|
2991
|
+
</tr>
|
2992
|
+
<tr>
|
2993
|
+
<td><p><span class="term"><em class="parameter"><code>minimum_size</code></em> :</span></p></td>
|
2994
|
+
<td>location to store the minimum size, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
2995
|
+
</td>
|
2996
|
+
</tr>
|
2997
|
+
<tr>
|
2998
|
+
<td><p><span class="term"><em class="parameter"><code>natural_size</code></em> :</span></p></td>
|
2999
|
+
<td>location to store the natural size, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
3000
|
+
</td>
|
3001
|
+
</tr>
|
3002
|
+
</tbody>
|
3003
|
+
</table></div>
|
3004
|
+
<p class="since">Since 3.0</p>
|
3005
|
+
</div>
|
3006
|
+
</div>
|
3007
|
+
<div class="refsect1">
|
3008
|
+
<a name="GtkCellArea.property-details"></a><h2>Property Details</h2>
|
3009
|
+
<div class="refsect2">
|
3010
|
+
<a name="GtkCellArea--edit-widget"></a><h3>The <code class="literal">"edit-widget"</code> property</h3>
|
3011
|
+
<pre class="programlisting"> "edit-widget" <a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a>* : Read</pre>
|
3012
|
+
<p>
|
3013
|
+
The widget currently editing the edited cell
|
3014
|
+
</p>
|
3015
|
+
<p>
|
3016
|
+
This property is read-only and only changes as
|
3017
|
+
a result of a call <a class="link" href="GtkCellArea.html#gtk-cell-area-activate-cell" title="gtk_cell_area_activate_cell ()"><code class="function">gtk_cell_area_activate_cell()</code></a>.
|
3018
|
+
</p>
|
3019
|
+
<p class="since">Since 3.0</p>
|
3020
|
+
</div>
|
3021
|
+
<hr>
|
3022
|
+
<div class="refsect2">
|
3023
|
+
<a name="GtkCellArea--edited-cell"></a><h3>The <code class="literal">"edited-cell"</code> property</h3>
|
3024
|
+
<pre class="programlisting"> "edited-cell" <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>* : Read</pre>
|
3025
|
+
<p>
|
3026
|
+
The cell in the area that is currently edited
|
3027
|
+
</p>
|
3028
|
+
<p>
|
3029
|
+
This property is read-only and only changes as
|
3030
|
+
a result of a call <a class="link" href="GtkCellArea.html#gtk-cell-area-activate-cell" title="gtk_cell_area_activate_cell ()"><code class="function">gtk_cell_area_activate_cell()</code></a>.
|
3031
|
+
</p>
|
3032
|
+
<p class="since">Since 3.0</p>
|
3033
|
+
</div>
|
3034
|
+
<hr>
|
3035
|
+
<div class="refsect2">
|
3036
|
+
<a name="GtkCellArea--focus-cell"></a><h3>The <code class="literal">"focus-cell"</code> property</h3>
|
3037
|
+
<pre class="programlisting"> "focus-cell" <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>* : Read / Write</pre>
|
3038
|
+
<p>
|
3039
|
+
The cell in the area that currently has focus
|
3040
|
+
</p>
|
3041
|
+
<p class="since">Since 3.0</p>
|
3042
|
+
</div>
|
3043
|
+
</div>
|
3044
|
+
<div class="refsect1">
|
3045
|
+
<a name="GtkCellArea.signal-details"></a><h2>Signal Details</h2>
|
3046
|
+
<div class="refsect2">
|
3047
|
+
<a name="GtkCellArea-add-editable"></a><h3>The <code class="literal">"add-editable"</code> signal</h3>
|
3048
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area,
|
3049
|
+
<a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer,
|
3050
|
+
<a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a> *editable,
|
3051
|
+
<a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *cell_area,
|
3052
|
+
<span class="type">gchar</span> *path,
|
3053
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
|
3054
|
+
<p>
|
3055
|
+
Indicates that editing has started on <em class="parameter"><code>renderer</code></em> and that <em class="parameter"><code>editable</code></em>
|
3056
|
+
should be added to the owning cell-layouting widget at <em class="parameter"><code>cell_area</code></em>.
|
3057
|
+
</p>
|
3058
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3059
|
+
<colgroup>
|
3060
|
+
<col align="left" valign="top">
|
3061
|
+
<col>
|
3062
|
+
</colgroup>
|
3063
|
+
<tbody>
|
3064
|
+
<tr>
|
3065
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
3066
|
+
<td>the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> where editing started</td>
|
3067
|
+
</tr>
|
3068
|
+
<tr>
|
3069
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
3070
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> that started the edited</td>
|
3071
|
+
</tr>
|
3072
|
+
<tr>
|
3073
|
+
<td><p><span class="term"><em class="parameter"><code>editable</code></em> :</span></p></td>
|
3074
|
+
<td>the <a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a> widget to add</td>
|
3075
|
+
</tr>
|
3076
|
+
<tr>
|
3077
|
+
<td><p><span class="term"><em class="parameter"><code>cell_area</code></em> :</span></p></td>
|
3078
|
+
<td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> relative <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> coordinates
|
3079
|
+
where <em class="parameter"><code>editable</code></em> should be added</td>
|
3080
|
+
</tr>
|
3081
|
+
<tr>
|
3082
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
3083
|
+
<td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> string this edit was initiated for</td>
|
3084
|
+
</tr>
|
3085
|
+
<tr>
|
3086
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3087
|
+
<td>user data set when the signal handler was connected.</td>
|
3088
|
+
</tr>
|
3089
|
+
</tbody>
|
3090
|
+
</table></div>
|
3091
|
+
<p class="since">Since 3.0</p>
|
3092
|
+
</div>
|
3093
|
+
<hr>
|
3094
|
+
<div class="refsect2">
|
3095
|
+
<a name="GtkCellArea-apply-attributes"></a><h3>The <code class="literal">"apply-attributes"</code> signal</h3>
|
3096
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area,
|
3097
|
+
<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model,
|
3098
|
+
<a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
|
3099
|
+
<span class="type">gboolean</span> is_expander,
|
3100
|
+
<span class="type">gboolean</span> is_expanded,
|
3101
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
|
3102
|
+
<p>
|
3103
|
+
This signal is emitted whenever applying attributes to <em class="parameter"><code>area</code></em> from <em class="parameter"><code>model</code></em>
|
3104
|
+
</p>
|
3105
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3106
|
+
<colgroup>
|
3107
|
+
<col align="left" valign="top">
|
3108
|
+
<col>
|
3109
|
+
</colgroup>
|
3110
|
+
<tbody>
|
3111
|
+
<tr>
|
3112
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
3113
|
+
<td>the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> to apply the attributes to</td>
|
3114
|
+
</tr>
|
3115
|
+
<tr>
|
3116
|
+
<td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
|
3117
|
+
<td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> to apply the attributes from</td>
|
3118
|
+
</tr>
|
3119
|
+
<tr>
|
3120
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
3121
|
+
<td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> indicating which row to apply the attributes of</td>
|
3122
|
+
</tr>
|
3123
|
+
<tr>
|
3124
|
+
<td><p><span class="term"><em class="parameter"><code>is_expander</code></em> :</span></p></td>
|
3125
|
+
<td>whether the view shows children for this row</td>
|
3126
|
+
</tr>
|
3127
|
+
<tr>
|
3128
|
+
<td><p><span class="term"><em class="parameter"><code>is_expanded</code></em> :</span></p></td>
|
3129
|
+
<td>whether the view is currently showing the children of this row</td>
|
3130
|
+
</tr>
|
3131
|
+
<tr>
|
3132
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3133
|
+
<td>user data set when the signal handler was connected.</td>
|
3134
|
+
</tr>
|
3135
|
+
</tbody>
|
3136
|
+
</table></div>
|
3137
|
+
<p class="since">Since 3.0</p>
|
3138
|
+
</div>
|
3139
|
+
<hr>
|
3140
|
+
<div class="refsect2">
|
3141
|
+
<a name="GtkCellArea-focus-changed"></a><h3>The <code class="literal">"focus-changed"</code> signal</h3>
|
3142
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area,
|
3143
|
+
<a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer,
|
3144
|
+
<span class="type">gchar</span> *path,
|
3145
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
|
3146
|
+
<p>
|
3147
|
+
Indicates that focus changed on this <em class="parameter"><code>area</code></em>. This signal
|
3148
|
+
is emitted either as a result of focus handling or event
|
3149
|
+
handling.
|
3150
|
+
</p>
|
3151
|
+
<p>
|
3152
|
+
It's possible that the signal is emitted even if the
|
3153
|
+
currently focused renderer did not change, this is
|
3154
|
+
because focus may change to the same renderer in the
|
3155
|
+
same cell area for a different row of data.
|
3156
|
+
</p>
|
3157
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3158
|
+
<colgroup>
|
3159
|
+
<col align="left" valign="top">
|
3160
|
+
<col>
|
3161
|
+
</colgroup>
|
3162
|
+
<tbody>
|
3163
|
+
<tr>
|
3164
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
3165
|
+
<td>the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> where focus changed</td>
|
3166
|
+
</tr>
|
3167
|
+
<tr>
|
3168
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
3169
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> that has focus</td>
|
3170
|
+
</tr>
|
3171
|
+
<tr>
|
3172
|
+
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
3173
|
+
<td>the current <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> string set for <em class="parameter"><code>area</code></em>
|
3174
|
+
</td>
|
3175
|
+
</tr>
|
3176
|
+
<tr>
|
3177
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3178
|
+
<td>user data set when the signal handler was connected.</td>
|
3179
|
+
</tr>
|
3180
|
+
</tbody>
|
3181
|
+
</table></div>
|
3182
|
+
<p class="since">Since 3.0</p>
|
3183
|
+
</div>
|
3184
|
+
<hr>
|
3185
|
+
<div class="refsect2">
|
3186
|
+
<a name="GtkCellArea-remove-editable"></a><h3>The <code class="literal">"remove-editable"</code> signal</h3>
|
3187
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area,
|
3188
|
+
<a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> *renderer,
|
3189
|
+
<a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a> *editable,
|
3190
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
|
3191
|
+
<p>
|
3192
|
+
Indicates that editing finished on <em class="parameter"><code>renderer</code></em> and that <em class="parameter"><code>editable</code></em>
|
3193
|
+
should be removed from the owning cell-layouting widget.
|
3194
|
+
</p>
|
3195
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3196
|
+
<colgroup>
|
3197
|
+
<col align="left" valign="top">
|
3198
|
+
<col>
|
3199
|
+
</colgroup>
|
3200
|
+
<tbody>
|
3201
|
+
<tr>
|
3202
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
3203
|
+
<td>the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> where editing finished</td>
|
3204
|
+
</tr>
|
3205
|
+
<tr>
|
3206
|
+
<td><p><span class="term"><em class="parameter"><code>renderer</code></em> :</span></p></td>
|
3207
|
+
<td>the <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a> that finished editeding</td>
|
3208
|
+
</tr>
|
3209
|
+
<tr>
|
3210
|
+
<td><p><span class="term"><em class="parameter"><code>editable</code></em> :</span></p></td>
|
3211
|
+
<td>the <a class="link" href="GtkCellEditable.html" title="GtkCellEditable"><span class="type">GtkCellEditable</span></a> widget to remove</td>
|
3212
|
+
</tr>
|
3213
|
+
<tr>
|
3214
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3215
|
+
<td>user data set when the signal handler was connected.</td>
|
3216
|
+
</tr>
|
3217
|
+
</tbody>
|
3218
|
+
</table></div>
|
3219
|
+
<p class="since">Since 3.0</p>
|
3220
|
+
</div>
|
3221
|
+
</div>
|
3222
|
+
</div>
|
3223
|
+
<div class="footer">
|
3224
|
+
<hr>
|
3225
|
+
Generated by GTK-Doc V1.18.1</div>
|
3226
|
+
</body>
|
3227
|
+
</html>
|