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,1027 @@
|
|
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>GtkIMContext</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
|
8
|
+
<link rel="up" href="AbstractObjects.html" title="Abstract Base Classes">
|
9
|
+
<link rel="prev" href="GtkRange.html" title="GtkRange">
|
10
|
+
<link rel="next" href="PlugSocket.html" title="Cross-process Embedding">
|
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="GtkRange.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="AbstractObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">GTK+ 3 Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="PlugSocket.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="#GtkIMContext.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkIMContext.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkIMContext.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkIMContext.properties" class="shortcut">Properties</a>
|
31
|
+
|
|
32
|
+
<a href="#GtkIMContext.signals" class="shortcut">Signals</a>
|
33
|
+
</td></tr>
|
34
|
+
</table>
|
35
|
+
<div class="refentry">
|
36
|
+
<a name="GtkIMContext"></a><div class="titlepage"></div>
|
37
|
+
<div class="refnamediv"><table width="100%"><tr>
|
38
|
+
<td valign="top">
|
39
|
+
<h2><span class="refentrytitle"><a name="GtkIMContext.top_of_page"></a>GtkIMContext</span></h2>
|
40
|
+
<p>GtkIMContext — Base class for input method contexts</p>
|
41
|
+
</td>
|
42
|
+
<td valign="top" align="right"></td>
|
43
|
+
</tr></table></div>
|
44
|
+
<div class="refsynopsisdiv">
|
45
|
+
<a name="GtkIMContext.synopsis"></a><h2>Synopsis</h2>
|
46
|
+
<pre class="synopsis">
|
47
|
+
#include <gtk/gtk.h>
|
48
|
+
#include <gtk/gtkimmodule.h>
|
49
|
+
|
50
|
+
struct <a class="link" href="GtkIMContext.html#GtkIMContext-struct" title="struct GtkIMContext">GtkIMContext</a>;
|
51
|
+
struct <a class="link" href="GtkIMContext.html#GtkIMContextClass" title="struct GtkIMContextClass">GtkIMContextClass</a>;
|
52
|
+
struct <a class="link" href="GtkIMContext.html#GtkIMContextInfo" title="struct GtkIMContextInfo">GtkIMContextInfo</a>;
|
53
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkIMContext.html#gtk-im-context-set-client-window" title="gtk_im_context_set_client_window ()">gtk_im_context_set_client_window</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
54
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);
|
55
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkIMContext.html#gtk-im-context-get-preedit-string" title="gtk_im_context_get_preedit_string ()">gtk_im_context_get_preedit_string</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
56
|
+
<em class="parameter"><code><span class="type">gchar</span> **str</code></em>,
|
57
|
+
<em class="parameter"><code><span class="type">PangoAttrList</span> **attrs</code></em>,
|
58
|
+
<em class="parameter"><code><span class="type">gint</span> *cursor_pos</code></em>);
|
59
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkIMContext.html#gtk-im-context-filter-keypress" title="gtk_im_context_filter_keypress ()">gtk_im_context_filter_keypress</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
60
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);
|
61
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkIMContext.html#gtk-im-context-focus-in" title="gtk_im_context_focus_in ()">gtk_im_context_focus_in</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>);
|
62
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkIMContext.html#gtk-im-context-focus-out" title="gtk_im_context_focus_out ()">gtk_im_context_focus_out</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>);
|
63
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkIMContext.html#gtk-im-context-reset" title="gtk_im_context_reset ()">gtk_im_context_reset</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>);
|
64
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkIMContext.html#gtk-im-context-set-cursor-location" title="gtk_im_context_set_cursor_location ()">gtk_im_context_set_cursor_location</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
65
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *area</code></em>);
|
66
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkIMContext.html#gtk-im-context-set-use-preedit" title="gtk_im_context_set_use_preedit ()">gtk_im_context_set_use_preedit</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
67
|
+
<em class="parameter"><code><span class="type">gboolean</span> use_preedit</code></em>);
|
68
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkIMContext.html#gtk-im-context-set-surrounding" title="gtk_im_context_set_surrounding ()">gtk_im_context_set_surrounding</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
69
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
|
70
|
+
<em class="parameter"><code><span class="type">gint</span> len</code></em>,
|
71
|
+
<em class="parameter"><code><span class="type">gint</span> cursor_index</code></em>);
|
72
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkIMContext.html#gtk-im-context-get-surrounding" title="gtk_im_context_get_surrounding ()">gtk_im_context_get_surrounding</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
73
|
+
<em class="parameter"><code><span class="type">gchar</span> **text</code></em>,
|
74
|
+
<em class="parameter"><code><span class="type">gint</span> *cursor_index</code></em>);
|
75
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkIMContext.html#gtk-im-context-delete-surrounding" title="gtk_im_context_delete_surrounding ()">gtk_im_context_delete_surrounding</a> (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
76
|
+
<em class="parameter"><code><span class="type">gint</span> offset</code></em>,
|
77
|
+
<em class="parameter"><code><span class="type">gint</span> n_chars</code></em>);
|
78
|
+
</pre>
|
79
|
+
</div>
|
80
|
+
<div class="refsect1">
|
81
|
+
<a name="GtkIMContext.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
82
|
+
<pre class="synopsis">
|
83
|
+
GObject
|
84
|
+
+----GtkIMContext
|
85
|
+
+----<a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple">GtkIMContextSimple</a>
|
86
|
+
+----<a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext">GtkIMMulticontext</a>
|
87
|
+
</pre>
|
88
|
+
</div>
|
89
|
+
<div class="refsect1">
|
90
|
+
<a name="GtkIMContext.properties"></a><h2>Properties</h2>
|
91
|
+
<pre class="synopsis">
|
92
|
+
"<a class="link" href="GtkIMContext.html#GtkIMContext--input-hints" title='The "input-hints" property'>input-hints</a>" <a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> : Read / Write
|
93
|
+
"<a class="link" href="GtkIMContext.html#GtkIMContext--input-purpose" title='The "input-purpose" property'>input-purpose</a>" <a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> : Read / Write
|
94
|
+
</pre>
|
95
|
+
</div>
|
96
|
+
<div class="refsect1">
|
97
|
+
<a name="GtkIMContext.signals"></a><h2>Signals</h2>
|
98
|
+
<pre class="synopsis">
|
99
|
+
"<a class="link" href="GtkIMContext.html#GtkIMContext-commit" title='The "commit" signal'>commit</a>" : <code class="literal">Run Last</code>
|
100
|
+
"<a class="link" href="GtkIMContext.html#GtkIMContext-delete-surrounding" title='The "delete-surrounding" signal'>delete-surrounding</a>" : <code class="literal">Run Last</code>
|
101
|
+
"<a class="link" href="GtkIMContext.html#GtkIMContext-preedit-changed" title='The "preedit-changed" signal'>preedit-changed</a>" : <code class="literal">Run Last</code>
|
102
|
+
"<a class="link" href="GtkIMContext.html#GtkIMContext-preedit-end" title='The "preedit-end" signal'>preedit-end</a>" : <code class="literal">Run Last</code>
|
103
|
+
"<a class="link" href="GtkIMContext.html#GtkIMContext-preedit-start" title='The "preedit-start" signal'>preedit-start</a>" : <code class="literal">Run Last</code>
|
104
|
+
"<a class="link" href="GtkIMContext.html#GtkIMContext-retrieve-surrounding" title='The "retrieve-surrounding" signal'>retrieve-surrounding</a>" : <code class="literal">Run Last</code>
|
105
|
+
</pre>
|
106
|
+
</div>
|
107
|
+
<div class="refsect1">
|
108
|
+
<a name="GtkIMContext.description"></a><h2>Description</h2>
|
109
|
+
<p>
|
110
|
+
<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> defines the interface for GTK+ input methods. An input method
|
111
|
+
is used by GTK+ text input widgets like <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> to map from key events to
|
112
|
+
Unicode character strings.
|
113
|
+
</p>
|
114
|
+
<p>
|
115
|
+
The user may change the current input method via a context menu, unless the
|
116
|
+
<a class="link" href="GtkSettings.html#GtkSettings--gtk-show-input-method-menu" title='The "gtk-show-input-method-menu" property'><span class="type">"gtk-show-input-method-menu"</span></a> GtkSettings property is set to FALSE.
|
117
|
+
The default input method can be set programmatically via the
|
118
|
+
<a class="link" href="GtkSettings.html#GtkSettings--gtk-im-module" title='The "gtk-im-module" property'><span class="type">"gtk-im-module"</span></a> GtkSettings property. Alternatively, you may set
|
119
|
+
the GTK_IM_MODULE environment variable as documented in <a class="link" href="gtk-running.html" title="Running GTK+ Applications"><span class="type">gtk-running</span></a>.
|
120
|
+
</p>
|
121
|
+
<p>
|
122
|
+
The <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> <a class="link" href="GtkEntry.html#GtkEntry--im-module" title='The "im-module" property'><span class="type">"im-module"</span></a> and <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> <a class="link" href="GtkTextView.html#GtkTextView--im-module" title='The "im-module" property'><span class="type">"im-module"</span></a>
|
123
|
+
properties may also be used to set input methods for specific widget
|
124
|
+
instances. For instance, a certain entry widget might be expected to contain
|
125
|
+
certain characters which would be easier to input with a certain input
|
126
|
+
method.
|
127
|
+
</p>
|
128
|
+
<p>
|
129
|
+
An input method may consume multiple key events in sequence and finally
|
130
|
+
output the composed result. This is called preediting, and an input method
|
131
|
+
may provide feedback about this process by displaying the intermediate
|
132
|
+
composition states as preedit text. For instance, the default GTK+ input
|
133
|
+
method implements the input of arbitrary Unicode code points by holding down
|
134
|
+
the Control and Shift keys and then typing "U" followed by the hexadecimal
|
135
|
+
digits of the code point. When releasing the Control and Shift keys,
|
136
|
+
preediting ends and the character is inserted as text. Ctrl+Shift+u20AC for
|
137
|
+
example results in the € sign.
|
138
|
+
</p>
|
139
|
+
<p>
|
140
|
+
Additional input methods can be made available for use by GTK+ widgets as
|
141
|
+
loadable modules. An input method module is a small shared library which
|
142
|
+
implements a subclass of <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> or <a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a> and exports
|
143
|
+
these four functions:
|
144
|
+
</p>
|
145
|
+
<p>
|
146
|
+
</p>
|
147
|
+
<div class="informalexample">
|
148
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
149
|
+
<tbody>
|
150
|
+
<tr>
|
151
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
152
|
+
<td class="listing_code"><pre class="programlisting"><span class="type">void</span><span class="normal"> </span><span class="function">im_module_init</span><span class="symbol">(<</span><span class="usertype">GTKDOCLINK</span><span class="normal"> HREF</span><span class="symbol">=</span><span class="string">"GTypeModule"</span><span class="symbol">></span><span class="usertype">GTypeModule</GTKDOCLINK></span><span class="normal"> </span><span class="symbol">*</span><span class="normal">module</span><span class="symbol">);</span></pre></td>
|
153
|
+
</tr>
|
154
|
+
</tbody>
|
155
|
+
</table>
|
156
|
+
</div>
|
157
|
+
|
158
|
+
<p>
|
159
|
+
This function should register the <span class="type">GType</span> of the <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> subclass which
|
160
|
+
implements the input method by means of <code class="function">g_type_module_register_type()</code>. Note
|
161
|
+
that <code class="function">g_type_register_static()</code> cannot be used as the type needs to be
|
162
|
+
registered dynamically.
|
163
|
+
</p>
|
164
|
+
<p>
|
165
|
+
</p>
|
166
|
+
<div class="informalexample">
|
167
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
168
|
+
<tbody>
|
169
|
+
<tr>
|
170
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
171
|
+
<td class="listing_code"><pre class="programlisting"><span class="type">void</span><span class="normal"> </span><span class="function">im_module_exit</span><span class="symbol">(</span><span class="type">void</span><span class="symbol">);</span></pre></td>
|
172
|
+
</tr>
|
173
|
+
</tbody>
|
174
|
+
</table>
|
175
|
+
</div>
|
176
|
+
|
177
|
+
<p>
|
178
|
+
Here goes any cleanup code your input method might require on module unload.
|
179
|
+
</p>
|
180
|
+
<p>
|
181
|
+
</p>
|
182
|
+
<div class="informalexample">
|
183
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
184
|
+
<tbody>
|
185
|
+
<tr>
|
186
|
+
<td class="listing_lines" align="right"><pre>1
|
187
|
+
2
|
188
|
+
3
|
189
|
+
4
|
190
|
+
5</pre></td>
|
191
|
+
<td class="listing_code"><pre class="programlisting"><span class="type">void</span><span class="normal"> </span><span class="function">im_module_list</span><span class="symbol">(</span><span class="keyword">const</span><span class="normal"> </span><span class="symbol"><</span><span class="usertype">a</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"link"</span><span class="normal"> href</span><span class="symbol">=</span><span class="string">"GtkIMContext.html#GtkIMContextInfo"</span><span class="normal"> title</span><span class="symbol">=</span><span class="string">"struct GtkIMContextInfo"</span><span class="symbol">></span><span class="usertype">GtkIMContextInfo</a></span><span class="normal"> </span><span class="symbol">***</span><span class="normal">contexts</span><span class="symbol">,</span><span class="normal"> </span><span class="type">int</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">n_contexts</span><span class="symbol">)</span>
|
192
|
+
<span class="cbracket">{</span>
|
193
|
+
<span class="normal"> </span><span class="symbol">*</span><span class="normal">contexts </span><span class="symbol">=</span><span class="normal"> info_list</span><span class="symbol">;</span>
|
194
|
+
<span class="normal"> </span><span class="symbol">*</span><span class="normal">n_contexts </span><span class="symbol">=</span><span class="normal"> </span><span class="function">G_N_ELEMENTS</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">info_list</span><span class="symbol">);</span>
|
195
|
+
<span class="cbracket">}</span></pre></td>
|
196
|
+
</tr>
|
197
|
+
</tbody>
|
198
|
+
</table>
|
199
|
+
</div>
|
200
|
+
|
201
|
+
<p>
|
202
|
+
This function returns the list of input methods provided by the module. The
|
203
|
+
example implementation above shows a common solution and simply returns a
|
204
|
+
pointer to statically defined array of <a class="link" href="GtkIMContext.html#GtkIMContextInfo" title="struct GtkIMContextInfo"><span class="type">GtkIMContextInfo</span></a> items for each
|
205
|
+
provided input method.
|
206
|
+
</p>
|
207
|
+
<p>
|
208
|
+
</p>
|
209
|
+
<div class="informalexample">
|
210
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
211
|
+
<tbody>
|
212
|
+
<tr>
|
213
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
214
|
+
<td class="listing_code"><pre class="programlisting"><span class="symbol"><</span><span class="usertype">a</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"link"</span><span class="normal"> href</span><span class="symbol">=</span><span class="string">"GtkIMContext.html"</span><span class="normal"> title</span><span class="symbol">=</span><span class="string">"GtkIMContext"</span><span class="symbol">></span><span class="usertype">GtkIMContext</a> * im_module_create(const <GTKDOCLINK HREF="gchar">gchar</GTKDOCLINK></span><span class="normal"> </span><span class="symbol">*</span><span class="normal">context_id</span><span class="symbol">);</span></pre></td>
|
215
|
+
</tr>
|
216
|
+
</tbody>
|
217
|
+
</table>
|
218
|
+
</div>
|
219
|
+
|
220
|
+
<p>
|
221
|
+
This function should return a pointer to a newly created instance of the
|
222
|
+
<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> subclass identified by <em class="parameter"><code>context_id</code></em>. The context ID is the same
|
223
|
+
as specified in the <a class="link" href="GtkIMContext.html#GtkIMContextInfo" title="struct GtkIMContextInfo"><span class="type">GtkIMContextInfo</span></a> array returned by <code class="function">im_module_list()</code>.
|
224
|
+
</p>
|
225
|
+
<p>
|
226
|
+
After a new loadable input method module has been installed on the system,
|
227
|
+
the configuration file <code class="filename">gtk.immodules</code> needs to be
|
228
|
+
regenerated by <a class="link" href="gtk-query-immodules-3.0.html" title="gtk-query-immodules-3.0">gtk-query-immodules-3.0</a>,
|
229
|
+
in order for the new input method to become available to GTK+ applications.
|
230
|
+
</p>
|
231
|
+
</div>
|
232
|
+
<div class="refsect1">
|
233
|
+
<a name="GtkIMContext.details"></a><h2>Details</h2>
|
234
|
+
<div class="refsect2">
|
235
|
+
<a name="GtkIMContext-struct"></a><h3>struct GtkIMContext</h3>
|
236
|
+
<pre class="programlisting">struct GtkIMContext;</pre>
|
237
|
+
</div>
|
238
|
+
<hr>
|
239
|
+
<div class="refsect2">
|
240
|
+
<a name="GtkIMContextClass"></a><h3>struct GtkIMContextClass</h3>
|
241
|
+
<pre class="programlisting">struct GtkIMContextClass {
|
242
|
+
/* Signals */
|
243
|
+
void (*preedit_start) (GtkIMContext *context);
|
244
|
+
void (*preedit_end) (GtkIMContext *context);
|
245
|
+
void (*preedit_changed) (GtkIMContext *context);
|
246
|
+
void (*commit) (GtkIMContext *context, const gchar *str);
|
247
|
+
gboolean (*retrieve_surrounding) (GtkIMContext *context);
|
248
|
+
gboolean (*delete_surrounding) (GtkIMContext *context,
|
249
|
+
gint offset,
|
250
|
+
gint n_chars);
|
251
|
+
|
252
|
+
/* Virtual functions */
|
253
|
+
void (*set_client_window) (GtkIMContext *context,
|
254
|
+
GdkWindow *window);
|
255
|
+
void (*get_preedit_string) (GtkIMContext *context,
|
256
|
+
gchar **str,
|
257
|
+
PangoAttrList **attrs,
|
258
|
+
gint *cursor_pos);
|
259
|
+
gboolean (*filter_keypress) (GtkIMContext *context,
|
260
|
+
GdkEventKey *event);
|
261
|
+
void (*focus_in) (GtkIMContext *context);
|
262
|
+
void (*focus_out) (GtkIMContext *context);
|
263
|
+
void (*reset) (GtkIMContext *context);
|
264
|
+
void (*set_cursor_location) (GtkIMContext *context,
|
265
|
+
GdkRectangle *area);
|
266
|
+
void (*set_use_preedit) (GtkIMContext *context,
|
267
|
+
gboolean use_preedit);
|
268
|
+
void (*set_surrounding) (GtkIMContext *context,
|
269
|
+
const gchar *text,
|
270
|
+
gint len,
|
271
|
+
gint cursor_index);
|
272
|
+
gboolean (*get_surrounding) (GtkIMContext *context,
|
273
|
+
gchar **text,
|
274
|
+
gint *cursor_index);
|
275
|
+
};
|
276
|
+
</pre>
|
277
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
278
|
+
<colgroup>
|
279
|
+
<col align="left" valign="top">
|
280
|
+
<col>
|
281
|
+
</colgroup>
|
282
|
+
<tbody>
|
283
|
+
<tr>
|
284
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.preedit-start"></a>preedit_start</code></em> ()</span></p></td>
|
285
|
+
<td>Default handler of the <a class="link" href="GtkIMContext.html#GtkIMContext-preedit-start" title='The "preedit-start" signal'><span class="type">"preedit-start"</span></a> signal.</td>
|
286
|
+
</tr>
|
287
|
+
<tr>
|
288
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.preedit-end"></a>preedit_end</code></em> ()</span></p></td>
|
289
|
+
<td>Default handler of the <a class="link" href="GtkIMContext.html#GtkIMContext-preedit-end" title='The "preedit-end" signal'><span class="type">"preedit-end"</span></a> signal.</td>
|
290
|
+
</tr>
|
291
|
+
<tr>
|
292
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.preedit-changed"></a>preedit_changed</code></em> ()</span></p></td>
|
293
|
+
<td>Default handler of the <a class="link" href="GtkIMContext.html#GtkIMContext-preedit-changed" title='The "preedit-changed" signal'><span class="type">"preedit-changed"</span></a>
|
294
|
+
signal.</td>
|
295
|
+
</tr>
|
296
|
+
<tr>
|
297
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.commit"></a>commit</code></em> ()</span></p></td>
|
298
|
+
<td>Default handler of the <a class="link" href="GtkIMContext.html#GtkIMContext-commit" title='The "commit" signal'><span class="type">"commit"</span></a> signal.</td>
|
299
|
+
</tr>
|
300
|
+
<tr>
|
301
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.retrieve-surrounding"></a>retrieve_surrounding</code></em> ()</span></p></td>
|
302
|
+
<td>Default handler of the
|
303
|
+
<a class="link" href="GtkIMContext.html#GtkIMContext-retrieve-surrounding" title='The "retrieve-surrounding" signal'><span class="type">"retrieve-surrounding"</span></a> signal.</td>
|
304
|
+
</tr>
|
305
|
+
<tr>
|
306
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.delete-surrounding"></a>delete_surrounding</code></em> ()</span></p></td>
|
307
|
+
<td>Default handler of the
|
308
|
+
<a class="link" href="GtkIMContext.html#GtkIMContext-delete-surrounding" title='The "delete-surrounding" signal'><span class="type">"delete-surrounding"</span></a> signal.</td>
|
309
|
+
</tr>
|
310
|
+
<tr>
|
311
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.set-client-window"></a>set_client_window</code></em> ()</span></p></td>
|
312
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-set-client-window" title="gtk_im_context_set_client_window ()"><code class="function">gtk_im_context_set_client_window()</code></a> when the
|
313
|
+
input window where the entered text will appear changes. Override this to
|
314
|
+
keep track of the current input window, for instance for the purpose of
|
315
|
+
positioning a status display of your input method.</td>
|
316
|
+
</tr>
|
317
|
+
<tr>
|
318
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.get-preedit-string"></a>get_preedit_string</code></em> ()</span></p></td>
|
319
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-get-preedit-string" title="gtk_im_context_get_preedit_string ()"><code class="function">gtk_im_context_get_preedit_string()</code></a> to
|
320
|
+
retrieve the text currently being preedited for display at the cursor
|
321
|
+
position. Any input method which composes complex characters or any
|
322
|
+
other compositions from multiple sequential key presses should override
|
323
|
+
this method to provide feedback.</td>
|
324
|
+
</tr>
|
325
|
+
<tr>
|
326
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.filter-keypress"></a>filter_keypress</code></em> ()</span></p></td>
|
327
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-filter-keypress" title="gtk_im_context_filter_keypress ()"><code class="function">gtk_im_context_filter_keypress()</code></a> on every
|
328
|
+
key press or release event. Every non-trivial input method needs to
|
329
|
+
override this in order to implement the mapping from key events to text.
|
330
|
+
A return value of <code class="literal">TRUE</code> indicates to the caller that the event was
|
331
|
+
consumed by the input method. In that case, the <a class="link" href="GtkIMContext.html#GtkIMContext-commit" title='The "commit" signal'><span class="type">"commit"</span></a>
|
332
|
+
signal should be emitted upon completion of a key sequence to pass the
|
333
|
+
resulting text back to the input widget. Alternatively, <code class="literal">FALSE</code> may be
|
334
|
+
returned to indicate that the event wasn't handled by the input method.
|
335
|
+
If a builtin mapping exists for the key, it is used to produce a
|
336
|
+
character.</td>
|
337
|
+
</tr>
|
338
|
+
<tr>
|
339
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.focus-in"></a>focus_in</code></em> ()</span></p></td>
|
340
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-focus-in" title="gtk_im_context_focus_in ()"><code class="function">gtk_im_context_focus_in()</code></a> when the input widget
|
341
|
+
has gained focus. May be overridden to keep track of the current focus.</td>
|
342
|
+
</tr>
|
343
|
+
<tr>
|
344
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.focus-out"></a>focus_out</code></em> ()</span></p></td>
|
345
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-focus-out" title="gtk_im_context_focus_out ()"><code class="function">gtk_im_context_focus_out()</code></a> when the input widget
|
346
|
+
has lost focus. May be overridden to keep track of the current focus.</td>
|
347
|
+
</tr>
|
348
|
+
<tr>
|
349
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.reset"></a>reset</code></em> ()</span></p></td>
|
350
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-reset" title="gtk_im_context_reset ()"><code class="function">gtk_im_context_reset()</code></a> to signal a change such as a
|
351
|
+
change in cursor position. An input method that implements preediting
|
352
|
+
should override this method to clear the preedit state on reset.</td>
|
353
|
+
</tr>
|
354
|
+
<tr>
|
355
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.set-cursor-location"></a>set_cursor_location</code></em> ()</span></p></td>
|
356
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-set-cursor-location" title="gtk_im_context_set_cursor_location ()"><code class="function">gtk_im_context_set_cursor_location()</code></a>
|
357
|
+
to inform the input method of the current cursor location relative to
|
358
|
+
the client window. May be overridden to implement the display of popup
|
359
|
+
windows at the cursor position.</td>
|
360
|
+
</tr>
|
361
|
+
<tr>
|
362
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.set-use-preedit"></a>set_use_preedit</code></em> ()</span></p></td>
|
363
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-set-use-preedit" title="gtk_im_context_set_use_preedit ()"><code class="function">gtk_im_context_set_use_preedit()</code></a> to control
|
364
|
+
the use of the preedit string. Override this to display feedback by some
|
365
|
+
other means if turned off.</td>
|
366
|
+
</tr>
|
367
|
+
<tr>
|
368
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.set-surrounding"></a>set_surrounding</code></em> ()</span></p></td>
|
369
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-set-surrounding" title="gtk_im_context_set_surrounding ()"><code class="function">gtk_im_context_set_surrounding()</code></a> in response
|
370
|
+
to signal <a class="link" href="GtkIMContext.html#GtkIMContext-retrieve-surrounding" title='The "retrieve-surrounding" signal'><span class="type">"retrieve-surrounding"</span></a> to update the input
|
371
|
+
method's idea of the context around the cursor. It is not necessary to
|
372
|
+
override this method even with input methods which implement
|
373
|
+
context-dependent behavior. The base implementation is sufficient for
|
374
|
+
<a class="link" href="GtkIMContext.html#gtk-im-context-get-surrounding" title="gtk_im_context_get_surrounding ()"><code class="function">gtk_im_context_get_surrounding()</code></a> to work.</td>
|
375
|
+
</tr>
|
376
|
+
<tr>
|
377
|
+
<td><p><span class="term"><em class="structfield"><code><a name="GtkIMContextClass.get-surrounding"></a>get_surrounding</code></em> ()</span></p></td>
|
378
|
+
<td>Called via <a class="link" href="GtkIMContext.html#gtk-im-context-get-surrounding" title="gtk_im_context_get_surrounding ()"><code class="function">gtk_im_context_get_surrounding()</code></a> to update
|
379
|
+
the context around the cursor location. It is not necessary to override
|
380
|
+
this method even with input methods which implement context-dependent
|
381
|
+
behavior. The base implementation emits
|
382
|
+
<a class="link" href="GtkIMContext.html#GtkIMContext-retrieve-surrounding" title='The "retrieve-surrounding" signal'><span class="type">"retrieve-surrounding"</span></a> and records the context received
|
383
|
+
by the subsequent invocation of <em class="parameter"><code>get_surrounding</code></em>.</td>
|
384
|
+
</tr>
|
385
|
+
</tbody>
|
386
|
+
</table></div>
|
387
|
+
</div>
|
388
|
+
<hr>
|
389
|
+
<div class="refsect2">
|
390
|
+
<a name="GtkIMContextInfo"></a><h3>struct GtkIMContextInfo</h3>
|
391
|
+
<pre class="programlisting">struct GtkIMContextInfo {
|
392
|
+
const gchar *context_id;
|
393
|
+
const gchar *context_name;
|
394
|
+
const gchar *domain;
|
395
|
+
const gchar *domain_dirname;
|
396
|
+
const gchar *default_locales;
|
397
|
+
};
|
398
|
+
</pre>
|
399
|
+
<p>
|
400
|
+
Bookkeeping information about a loadable input method.
|
401
|
+
</p>
|
402
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
403
|
+
<colgroup>
|
404
|
+
<col align="left" valign="top">
|
405
|
+
<col>
|
406
|
+
</colgroup>
|
407
|
+
<tbody>
|
408
|
+
<tr>
|
409
|
+
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkIMContextInfo.context-id"></a>context_id</code></em>;</span></p></td>
|
410
|
+
<td>The unique identification string of the input method.</td>
|
411
|
+
</tr>
|
412
|
+
<tr>
|
413
|
+
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkIMContextInfo.context-name"></a>context_name</code></em>;</span></p></td>
|
414
|
+
<td>The human-readable name of the input method.</td>
|
415
|
+
</tr>
|
416
|
+
<tr>
|
417
|
+
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkIMContextInfo.domain"></a>domain</code></em>;</span></p></td>
|
418
|
+
<td>Translation domain to be used with <code class="function">dgettext()</code>
|
419
|
+
</td>
|
420
|
+
</tr>
|
421
|
+
<tr>
|
422
|
+
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkIMContextInfo.domain-dirname"></a>domain_dirname</code></em>;</span></p></td>
|
423
|
+
<td>Name of locale directory for use with <code class="function">bindtextdomain()</code>
|
424
|
+
</td>
|
425
|
+
</tr>
|
426
|
+
<tr>
|
427
|
+
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkIMContextInfo.default-locales"></a>default_locales</code></em>;</span></p></td>
|
428
|
+
<td>A colon-separated list of locales where this input method
|
429
|
+
should be the default. The asterisk "*" sets the default for all locales.</td>
|
430
|
+
</tr>
|
431
|
+
</tbody>
|
432
|
+
</table></div>
|
433
|
+
</div>
|
434
|
+
<hr>
|
435
|
+
<div class="refsect2">
|
436
|
+
<a name="gtk-im-context-set-client-window"></a><h3>gtk_im_context_set_client_window ()</h3>
|
437
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_set_client_window (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
438
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
|
439
|
+
<p>
|
440
|
+
Set the client window for the input context; this is the
|
441
|
+
<a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> in which the input appears. This window is
|
442
|
+
used in order to correctly position status windows, and may
|
443
|
+
also be used for purposes internal to the input method.
|
444
|
+
</p>
|
445
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
446
|
+
<colgroup>
|
447
|
+
<col align="left" valign="top">
|
448
|
+
<col>
|
449
|
+
</colgroup>
|
450
|
+
<tbody>
|
451
|
+
<tr>
|
452
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
453
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
454
|
+
</td>
|
455
|
+
</tr>
|
456
|
+
<tr>
|
457
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
458
|
+
<td>the client window. This may be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> to indicate
|
459
|
+
that the previous client window no longer exists. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
460
|
+
</td>
|
461
|
+
</tr>
|
462
|
+
</tbody>
|
463
|
+
</table></div>
|
464
|
+
</div>
|
465
|
+
<hr>
|
466
|
+
<div class="refsect2">
|
467
|
+
<a name="gtk-im-context-get-preedit-string"></a><h3>gtk_im_context_get_preedit_string ()</h3>
|
468
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_get_preedit_string (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
469
|
+
<em class="parameter"><code><span class="type">gchar</span> **str</code></em>,
|
470
|
+
<em class="parameter"><code><span class="type">PangoAttrList</span> **attrs</code></em>,
|
471
|
+
<em class="parameter"><code><span class="type">gint</span> *cursor_pos</code></em>);</pre>
|
472
|
+
<p>
|
473
|
+
Retrieve the current preedit string for the input context,
|
474
|
+
and a list of attributes to apply to the string.
|
475
|
+
This string should be displayed inserted at the insertion
|
476
|
+
point.
|
477
|
+
</p>
|
478
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
479
|
+
<colgroup>
|
480
|
+
<col align="left" valign="top">
|
481
|
+
<col>
|
482
|
+
</colgroup>
|
483
|
+
<tbody>
|
484
|
+
<tr>
|
485
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
486
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
487
|
+
</td>
|
488
|
+
</tr>
|
489
|
+
<tr>
|
490
|
+
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
|
491
|
+
<td>location to store the retrieved
|
492
|
+
string. The string retrieved must be freed with <code class="function">g_free()</code>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
493
|
+
</td>
|
494
|
+
</tr>
|
495
|
+
<tr>
|
496
|
+
<td><p><span class="term"><em class="parameter"><code>attrs</code></em> :</span></p></td>
|
497
|
+
<td>location to store the retrieved
|
498
|
+
attribute list. When you are done with this list, you
|
499
|
+
must unreference it with <code class="function">pango_attr_list_unref()</code>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
500
|
+
</td>
|
501
|
+
</tr>
|
502
|
+
<tr>
|
503
|
+
<td><p><span class="term"><em class="parameter"><code>cursor_pos</code></em> :</span></p></td>
|
504
|
+
<td>location to store position of cursor (in characters)
|
505
|
+
within the preedit string. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
506
|
+
</td>
|
507
|
+
</tr>
|
508
|
+
</tbody>
|
509
|
+
</table></div>
|
510
|
+
</div>
|
511
|
+
<hr>
|
512
|
+
<div class="refsect2">
|
513
|
+
<a name="gtk-im-context-filter-keypress"></a><h3>gtk_im_context_filter_keypress ()</h3>
|
514
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_im_context_filter_keypress (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
515
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);</pre>
|
516
|
+
<p>
|
517
|
+
Allow an input method to internally handle key press and release
|
518
|
+
events. If this function returns <code class="literal">TRUE</code>, then no further processing
|
519
|
+
should be done for this key event.
|
520
|
+
</p>
|
521
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
522
|
+
<colgroup>
|
523
|
+
<col align="left" valign="top">
|
524
|
+
<col>
|
525
|
+
</colgroup>
|
526
|
+
<tbody>
|
527
|
+
<tr>
|
528
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
529
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
530
|
+
</td>
|
531
|
+
</tr>
|
532
|
+
<tr>
|
533
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
534
|
+
<td>the key event</td>
|
535
|
+
</tr>
|
536
|
+
<tr>
|
537
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
538
|
+
<td>
|
539
|
+
<code class="literal">TRUE</code> if the input method handled the key event.</td>
|
540
|
+
</tr>
|
541
|
+
</tbody>
|
542
|
+
</table></div>
|
543
|
+
</div>
|
544
|
+
<hr>
|
545
|
+
<div class="refsect2">
|
546
|
+
<a name="gtk-im-context-focus-in"></a><h3>gtk_im_context_focus_in ()</h3>
|
547
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_focus_in (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>);</pre>
|
548
|
+
<p>
|
549
|
+
Notify the input method that the widget to which this
|
550
|
+
input context corresponds has gained focus. The input method
|
551
|
+
may, for example, change the displayed feedback to reflect
|
552
|
+
this change.
|
553
|
+
</p>
|
554
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
555
|
+
<colgroup>
|
556
|
+
<col align="left" valign="top">
|
557
|
+
<col>
|
558
|
+
</colgroup>
|
559
|
+
<tbody><tr>
|
560
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
561
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
562
|
+
</td>
|
563
|
+
</tr></tbody>
|
564
|
+
</table></div>
|
565
|
+
</div>
|
566
|
+
<hr>
|
567
|
+
<div class="refsect2">
|
568
|
+
<a name="gtk-im-context-focus-out"></a><h3>gtk_im_context_focus_out ()</h3>
|
569
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_focus_out (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>);</pre>
|
570
|
+
<p>
|
571
|
+
Notify the input method that the widget to which this
|
572
|
+
input context corresponds has lost focus. The input method
|
573
|
+
may, for example, change the displayed feedback or reset the contexts
|
574
|
+
state to reflect this change.
|
575
|
+
</p>
|
576
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
577
|
+
<colgroup>
|
578
|
+
<col align="left" valign="top">
|
579
|
+
<col>
|
580
|
+
</colgroup>
|
581
|
+
<tbody><tr>
|
582
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
583
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
584
|
+
</td>
|
585
|
+
</tr></tbody>
|
586
|
+
</table></div>
|
587
|
+
</div>
|
588
|
+
<hr>
|
589
|
+
<div class="refsect2">
|
590
|
+
<a name="gtk-im-context-reset"></a><h3>gtk_im_context_reset ()</h3>
|
591
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_reset (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>);</pre>
|
592
|
+
<p>
|
593
|
+
Notify the input method that a change such as a change in cursor
|
594
|
+
position has been made. This will typically cause the input
|
595
|
+
method to clear the preedit state.
|
596
|
+
</p>
|
597
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
598
|
+
<colgroup>
|
599
|
+
<col align="left" valign="top">
|
600
|
+
<col>
|
601
|
+
</colgroup>
|
602
|
+
<tbody><tr>
|
603
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
604
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
605
|
+
</td>
|
606
|
+
</tr></tbody>
|
607
|
+
</table></div>
|
608
|
+
</div>
|
609
|
+
<hr>
|
610
|
+
<div class="refsect2">
|
611
|
+
<a name="gtk-im-context-set-cursor-location"></a><h3>gtk_im_context_set_cursor_location ()</h3>
|
612
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_set_cursor_location (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
613
|
+
<em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *area</code></em>);</pre>
|
614
|
+
<p>
|
615
|
+
Notify the input method that a change in cursor
|
616
|
+
position has been made. The location is relative to the client
|
617
|
+
window.
|
618
|
+
</p>
|
619
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
620
|
+
<colgroup>
|
621
|
+
<col align="left" valign="top">
|
622
|
+
<col>
|
623
|
+
</colgroup>
|
624
|
+
<tbody>
|
625
|
+
<tr>
|
626
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
627
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
628
|
+
</td>
|
629
|
+
</tr>
|
630
|
+
<tr>
|
631
|
+
<td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
|
632
|
+
<td>new location</td>
|
633
|
+
</tr>
|
634
|
+
</tbody>
|
635
|
+
</table></div>
|
636
|
+
</div>
|
637
|
+
<hr>
|
638
|
+
<div class="refsect2">
|
639
|
+
<a name="gtk-im-context-set-use-preedit"></a><h3>gtk_im_context_set_use_preedit ()</h3>
|
640
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_set_use_preedit (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
641
|
+
<em class="parameter"><code><span class="type">gboolean</span> use_preedit</code></em>);</pre>
|
642
|
+
<p>
|
643
|
+
Sets whether the IM context should use the preedit string
|
644
|
+
to display feedback. If <em class="parameter"><code>use_preedit</code></em> is FALSE (default
|
645
|
+
is TRUE), then the IM context may use some other method to display
|
646
|
+
feedback, such as displaying it in a child of the root window.
|
647
|
+
</p>
|
648
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
649
|
+
<colgroup>
|
650
|
+
<col align="left" valign="top">
|
651
|
+
<col>
|
652
|
+
</colgroup>
|
653
|
+
<tbody>
|
654
|
+
<tr>
|
655
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
656
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
657
|
+
</td>
|
658
|
+
</tr>
|
659
|
+
<tr>
|
660
|
+
<td><p><span class="term"><em class="parameter"><code>use_preedit</code></em> :</span></p></td>
|
661
|
+
<td>whether the IM context should use the preedit string.</td>
|
662
|
+
</tr>
|
663
|
+
</tbody>
|
664
|
+
</table></div>
|
665
|
+
</div>
|
666
|
+
<hr>
|
667
|
+
<div class="refsect2">
|
668
|
+
<a name="gtk-im-context-set-surrounding"></a><h3>gtk_im_context_set_surrounding ()</h3>
|
669
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_set_surrounding (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
670
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
|
671
|
+
<em class="parameter"><code><span class="type">gint</span> len</code></em>,
|
672
|
+
<em class="parameter"><code><span class="type">gint</span> cursor_index</code></em>);</pre>
|
673
|
+
<p>
|
674
|
+
Sets surrounding context around the insertion point and preedit
|
675
|
+
string. This function is expected to be called in response to the
|
676
|
+
GtkIMContext::retrieve_surrounding signal, and will likely have no
|
677
|
+
effect if called at other times.
|
678
|
+
</p>
|
679
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
680
|
+
<colgroup>
|
681
|
+
<col align="left" valign="top">
|
682
|
+
<col>
|
683
|
+
</colgroup>
|
684
|
+
<tbody>
|
685
|
+
<tr>
|
686
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
687
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
688
|
+
</td>
|
689
|
+
</tr>
|
690
|
+
<tr>
|
691
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
692
|
+
<td>text surrounding the insertion point, as UTF-8.
|
693
|
+
the preedit string should not be included within
|
694
|
+
<em class="parameter"><code>text</code></em>.</td>
|
695
|
+
</tr>
|
696
|
+
<tr>
|
697
|
+
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
698
|
+
<td>the length of <em class="parameter"><code>text</code></em>, or -1 if <em class="parameter"><code>text</code></em> is nul-terminated</td>
|
699
|
+
</tr>
|
700
|
+
<tr>
|
701
|
+
<td><p><span class="term"><em class="parameter"><code>cursor_index</code></em> :</span></p></td>
|
702
|
+
<td>the byte index of the insertion cursor within <em class="parameter"><code>text</code></em>.</td>
|
703
|
+
</tr>
|
704
|
+
</tbody>
|
705
|
+
</table></div>
|
706
|
+
</div>
|
707
|
+
<hr>
|
708
|
+
<div class="refsect2">
|
709
|
+
<a name="gtk-im-context-get-surrounding"></a><h3>gtk_im_context_get_surrounding ()</h3>
|
710
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_im_context_get_surrounding (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
711
|
+
<em class="parameter"><code><span class="type">gchar</span> **text</code></em>,
|
712
|
+
<em class="parameter"><code><span class="type">gint</span> *cursor_index</code></em>);</pre>
|
713
|
+
<p>
|
714
|
+
Retrieves context around the insertion point. Input methods
|
715
|
+
typically want context in order to constrain input text based on
|
716
|
+
existing text; this is important for languages such as Thai where
|
717
|
+
only some sequences of characters are allowed.
|
718
|
+
</p>
|
719
|
+
<p>
|
720
|
+
This function is implemented by emitting the
|
721
|
+
GtkIMContext::retrieve_surrounding signal on the input method; in
|
722
|
+
response to this signal, a widget should provide as much context as
|
723
|
+
is available, up to an entire paragraph, by calling
|
724
|
+
<a class="link" href="GtkIMContext.html#gtk-im-context-set-surrounding" title="gtk_im_context_set_surrounding ()"><code class="function">gtk_im_context_set_surrounding()</code></a>. Note that there is no obligation
|
725
|
+
for a widget to respond to the ::retrieve_surrounding signal, so input
|
726
|
+
methods must be prepared to function without context.
|
727
|
+
</p>
|
728
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
729
|
+
<colgroup>
|
730
|
+
<col align="left" valign="top">
|
731
|
+
<col>
|
732
|
+
</colgroup>
|
733
|
+
<tbody>
|
734
|
+
<tr>
|
735
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
736
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
737
|
+
</td>
|
738
|
+
</tr>
|
739
|
+
<tr>
|
740
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
741
|
+
<td>location to store a UTF-8 encoded
|
742
|
+
string of text holding context around the insertion point.
|
743
|
+
If the function returns <code class="literal">TRUE</code>, then you must free the result
|
744
|
+
stored in this location with <code class="function">g_free()</code>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
745
|
+
</td>
|
746
|
+
</tr>
|
747
|
+
<tr>
|
748
|
+
<td><p><span class="term"><em class="parameter"><code>cursor_index</code></em> :</span></p></td>
|
749
|
+
<td>location to store byte index of the insertion
|
750
|
+
cursor within <em class="parameter"><code>text</code></em>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
751
|
+
</td>
|
752
|
+
</tr>
|
753
|
+
<tr>
|
754
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
755
|
+
<td>
|
756
|
+
<code class="literal">TRUE</code> if surrounding text was provided; in this case
|
757
|
+
you must free the result stored in *text.</td>
|
758
|
+
</tr>
|
759
|
+
</tbody>
|
760
|
+
</table></div>
|
761
|
+
</div>
|
762
|
+
<hr>
|
763
|
+
<div class="refsect2">
|
764
|
+
<a name="gtk-im-context-delete-surrounding"></a><h3>gtk_im_context_delete_surrounding ()</h3>
|
765
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_im_context_delete_surrounding (<em class="parameter"><code><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context</code></em>,
|
766
|
+
<em class="parameter"><code><span class="type">gint</span> offset</code></em>,
|
767
|
+
<em class="parameter"><code><span class="type">gint</span> n_chars</code></em>);</pre>
|
768
|
+
<p>
|
769
|
+
Asks the widget that the input context is attached to to delete
|
770
|
+
characters around the cursor position by emitting the
|
771
|
+
GtkIMContext::delete_surrounding signal. Note that <em class="parameter"><code>offset</code></em> and <em class="parameter"><code>n_chars</code></em>
|
772
|
+
are in characters not in bytes which differs from the usage other
|
773
|
+
places in <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>.
|
774
|
+
</p>
|
775
|
+
<p>
|
776
|
+
In order to use this function, you should first call
|
777
|
+
<a class="link" href="GtkIMContext.html#gtk-im-context-get-surrounding" title="gtk_im_context_get_surrounding ()"><code class="function">gtk_im_context_get_surrounding()</code></a> to get the current context, and
|
778
|
+
call this function immediately afterwards to make sure that you
|
779
|
+
know what you are deleting. You should also account for the fact
|
780
|
+
that even if the signal was handled, the input context might not
|
781
|
+
have deleted all the characters that were requested to be deleted.
|
782
|
+
</p>
|
783
|
+
<p>
|
784
|
+
This function is used by an input method that wants to make
|
785
|
+
subsitutions in the existing text in response to new input. It is
|
786
|
+
not useful for applications.
|
787
|
+
</p>
|
788
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
789
|
+
<colgroup>
|
790
|
+
<col align="left" valign="top">
|
791
|
+
<col>
|
792
|
+
</colgroup>
|
793
|
+
<tbody>
|
794
|
+
<tr>
|
795
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
796
|
+
<td>a <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>
|
797
|
+
</td>
|
798
|
+
</tr>
|
799
|
+
<tr>
|
800
|
+
<td><p><span class="term"><em class="parameter"><code>offset</code></em> :</span></p></td>
|
801
|
+
<td>offset from cursor position in chars;
|
802
|
+
a negative value means start before the cursor.</td>
|
803
|
+
</tr>
|
804
|
+
<tr>
|
805
|
+
<td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
|
806
|
+
<td>number of characters to delete.</td>
|
807
|
+
</tr>
|
808
|
+
<tr>
|
809
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
810
|
+
<td>
|
811
|
+
<code class="literal">TRUE</code> if the signal was handled.</td>
|
812
|
+
</tr>
|
813
|
+
</tbody>
|
814
|
+
</table></div>
|
815
|
+
</div>
|
816
|
+
</div>
|
817
|
+
<div class="refsect1">
|
818
|
+
<a name="GtkIMContext.property-details"></a><h2>Property Details</h2>
|
819
|
+
<div class="refsect2">
|
820
|
+
<a name="GtkIMContext--input-hints"></a><h3>The <code class="literal">"input-hints"</code> property</h3>
|
821
|
+
<pre class="programlisting"> "input-hints" <a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> : Read / Write</pre>
|
822
|
+
<p>Hints for the text field behaviour.</p>
|
823
|
+
</div>
|
824
|
+
<hr>
|
825
|
+
<div class="refsect2">
|
826
|
+
<a name="GtkIMContext--input-purpose"></a><h3>The <code class="literal">"input-purpose"</code> property</h3>
|
827
|
+
<pre class="programlisting"> "input-purpose" <a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> : Read / Write</pre>
|
828
|
+
<p>Purpose of the text field.</p>
|
829
|
+
<p>Default value: GTK_INPUT_PURPOSE_FREE_FORM</p>
|
830
|
+
</div>
|
831
|
+
</div>
|
832
|
+
<div class="refsect1">
|
833
|
+
<a name="GtkIMContext.signal-details"></a><h2>Signal Details</h2>
|
834
|
+
<div class="refsect2">
|
835
|
+
<a name="GtkIMContext-commit"></a><h3>The <code class="literal">"commit"</code> signal</h3>
|
836
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context,
|
837
|
+
<span class="type">gchar</span> *str,
|
838
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
839
|
+
<p>
|
840
|
+
The ::commit signal is emitted when a complete input sequence
|
841
|
+
has been entered by the user. This can be a single character
|
842
|
+
immediately after a key press or the final result of preediting.
|
843
|
+
</p>
|
844
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
845
|
+
<colgroup>
|
846
|
+
<col align="left" valign="top">
|
847
|
+
<col>
|
848
|
+
</colgroup>
|
849
|
+
<tbody>
|
850
|
+
<tr>
|
851
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
852
|
+
<td>the object on which the signal is emitted</td>
|
853
|
+
</tr>
|
854
|
+
<tr>
|
855
|
+
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
|
856
|
+
<td>the completed character(s) entered by the user</td>
|
857
|
+
</tr>
|
858
|
+
<tr>
|
859
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
860
|
+
<td>user data set when the signal handler was connected.</td>
|
861
|
+
</tr>
|
862
|
+
</tbody>
|
863
|
+
</table></div>
|
864
|
+
</div>
|
865
|
+
<hr>
|
866
|
+
<div class="refsect2">
|
867
|
+
<a name="GtkIMContext-delete-surrounding"></a><h3>The <code class="literal">"delete-surrounding"</code> signal</h3>
|
868
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> user_function (<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context,
|
869
|
+
<span class="type">gint</span> offset,
|
870
|
+
<span class="type">gint</span> n_chars,
|
871
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
872
|
+
<p>
|
873
|
+
The ::delete-surrounding signal is emitted when the input method
|
874
|
+
needs to delete all or part of the context surrounding the cursor.
|
875
|
+
</p>
|
876
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
877
|
+
<colgroup>
|
878
|
+
<col align="left" valign="top">
|
879
|
+
<col>
|
880
|
+
</colgroup>
|
881
|
+
<tbody>
|
882
|
+
<tr>
|
883
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
884
|
+
<td>the object on which the signal is emitted</td>
|
885
|
+
</tr>
|
886
|
+
<tr>
|
887
|
+
<td><p><span class="term"><em class="parameter"><code>offset</code></em> :</span></p></td>
|
888
|
+
<td>the character offset from the cursor position of the text
|
889
|
+
to be deleted. A negative value indicates a position before
|
890
|
+
the cursor.</td>
|
891
|
+
</tr>
|
892
|
+
<tr>
|
893
|
+
<td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
|
894
|
+
<td>the number of characters to be deleted</td>
|
895
|
+
</tr>
|
896
|
+
<tr>
|
897
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
898
|
+
<td>user data set when the signal handler was connected.</td>
|
899
|
+
</tr>
|
900
|
+
<tr>
|
901
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
902
|
+
<td>
|
903
|
+
<code class="literal">TRUE</code> if the signal was handled.</td>
|
904
|
+
</tr>
|
905
|
+
</tbody>
|
906
|
+
</table></div>
|
907
|
+
</div>
|
908
|
+
<hr>
|
909
|
+
<div class="refsect2">
|
910
|
+
<a name="GtkIMContext-preedit-changed"></a><h3>The <code class="literal">"preedit-changed"</code> signal</h3>
|
911
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context,
|
912
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
913
|
+
<p>
|
914
|
+
The ::preedit-changed signal is emitted whenever the preedit sequence
|
915
|
+
currently being entered has changed. It is also emitted at the end of
|
916
|
+
a preedit sequence, in which case
|
917
|
+
<a class="link" href="GtkIMContext.html#gtk-im-context-get-preedit-string" title="gtk_im_context_get_preedit_string ()"><code class="function">gtk_im_context_get_preedit_string()</code></a> returns the empty string.
|
918
|
+
</p>
|
919
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
920
|
+
<colgroup>
|
921
|
+
<col align="left" valign="top">
|
922
|
+
<col>
|
923
|
+
</colgroup>
|
924
|
+
<tbody>
|
925
|
+
<tr>
|
926
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
927
|
+
<td>the object on which the signal is emitted</td>
|
928
|
+
</tr>
|
929
|
+
<tr>
|
930
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
931
|
+
<td>user data set when the signal handler was connected.</td>
|
932
|
+
</tr>
|
933
|
+
</tbody>
|
934
|
+
</table></div>
|
935
|
+
</div>
|
936
|
+
<hr>
|
937
|
+
<div class="refsect2">
|
938
|
+
<a name="GtkIMContext-preedit-end"></a><h3>The <code class="literal">"preedit-end"</code> signal</h3>
|
939
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context,
|
940
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
941
|
+
<p>
|
942
|
+
The ::preedit-end signal is emitted when a preediting sequence
|
943
|
+
has been completed or canceled.
|
944
|
+
</p>
|
945
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
946
|
+
<colgroup>
|
947
|
+
<col align="left" valign="top">
|
948
|
+
<col>
|
949
|
+
</colgroup>
|
950
|
+
<tbody>
|
951
|
+
<tr>
|
952
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
953
|
+
<td>the object on which the signal is emitted</td>
|
954
|
+
</tr>
|
955
|
+
<tr>
|
956
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
957
|
+
<td>user data set when the signal handler was connected.</td>
|
958
|
+
</tr>
|
959
|
+
</tbody>
|
960
|
+
</table></div>
|
961
|
+
</div>
|
962
|
+
<hr>
|
963
|
+
<div class="refsect2">
|
964
|
+
<a name="GtkIMContext-preedit-start"></a><h3>The <code class="literal">"preedit-start"</code> signal</h3>
|
965
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context,
|
966
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
967
|
+
<p>
|
968
|
+
The ::preedit-start signal is emitted when a new preediting sequence
|
969
|
+
starts.
|
970
|
+
</p>
|
971
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
972
|
+
<colgroup>
|
973
|
+
<col align="left" valign="top">
|
974
|
+
<col>
|
975
|
+
</colgroup>
|
976
|
+
<tbody>
|
977
|
+
<tr>
|
978
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
979
|
+
<td>the object on which the signal is emitted</td>
|
980
|
+
</tr>
|
981
|
+
<tr>
|
982
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
983
|
+
<td>user data set when the signal handler was connected.</td>
|
984
|
+
</tr>
|
985
|
+
</tbody>
|
986
|
+
</table></div>
|
987
|
+
</div>
|
988
|
+
<hr>
|
989
|
+
<div class="refsect2">
|
990
|
+
<a name="GtkIMContext-retrieve-surrounding"></a><h3>The <code class="literal">"retrieve-surrounding"</code> signal</h3>
|
991
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> user_function (<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a> *context,
|
992
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
993
|
+
<p>
|
994
|
+
The ::retrieve-surrounding signal is emitted when the input method
|
995
|
+
requires the context surrounding the cursor. The callback should set
|
996
|
+
the input method surrounding context by calling the
|
997
|
+
<a class="link" href="GtkIMContext.html#gtk-im-context-set-surrounding" title="gtk_im_context_set_surrounding ()"><code class="function">gtk_im_context_set_surrounding()</code></a> method.
|
998
|
+
</p>
|
999
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1000
|
+
<colgroup>
|
1001
|
+
<col align="left" valign="top">
|
1002
|
+
<col>
|
1003
|
+
</colgroup>
|
1004
|
+
<tbody>
|
1005
|
+
<tr>
|
1006
|
+
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
1007
|
+
<td>the object on which the signal is emitted</td>
|
1008
|
+
</tr>
|
1009
|
+
<tr>
|
1010
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
1011
|
+
<td>user data set when the signal handler was connected.</td>
|
1012
|
+
</tr>
|
1013
|
+
<tr>
|
1014
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1015
|
+
<td>
|
1016
|
+
<code class="literal">TRUE</code> if the signal was handled.</td>
|
1017
|
+
</tr>
|
1018
|
+
</tbody>
|
1019
|
+
</table></div>
|
1020
|
+
</div>
|
1021
|
+
</div>
|
1022
|
+
</div>
|
1023
|
+
<div class="footer">
|
1024
|
+
<hr>
|
1025
|
+
Generated by GTK-Doc V1.18.1</div>
|
1026
|
+
</body>
|
1027
|
+
</html>
|