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,29 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
+
<!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
|
3
|
+
<book xmlns="http://www.devhelp.net/book" title="GAIL Reference Manual" link="index.html" author="" name="gail-libgail-util3" version="2" language="c">
|
4
|
+
<chapters>
|
5
|
+
<sub name="GAIL libgail-util Library" link="libgail-util-main.html">
|
6
|
+
<sub name="GailTextUtil" link="gail-libgail-util3-GailTextUtil.html"/>
|
7
|
+
<sub name="GailMisc" link="gail-libgail-util3-GailMisc.html"/>
|
8
|
+
</sub>
|
9
|
+
</chapters>
|
10
|
+
<functions>
|
11
|
+
<keyword type="struct" name="struct GailTextUtil" link="gail-libgail-util3-GailTextUtil.html#GailTextUtil"/>
|
12
|
+
<keyword type="enum" name="enum GailOffsetType" link="gail-libgail-util3-GailTextUtil.html#GailOffsetType"/>
|
13
|
+
<keyword type="function" name="gail_text_util_new ()" link="gail-libgail-util3-GailTextUtil.html#gail-text-util-new"/>
|
14
|
+
<keyword type="function" name="gail_text_util_text_setup ()" link="gail-libgail-util3-GailTextUtil.html#gail-text-util-text-setup"/>
|
15
|
+
<keyword type="function" name="gail_text_util_buffer_setup ()" link="gail-libgail-util3-GailTextUtil.html#gail-text-util-buffer-setup"/>
|
16
|
+
<keyword type="function" name="gail_text_util_get_text ()" link="gail-libgail-util3-GailTextUtil.html#gail-text-util-get-text"/>
|
17
|
+
<keyword type="function" name="gail_text_util_get_substring ()" link="gail-libgail-util3-GailTextUtil.html#gail-text-util-get-substring"/>
|
18
|
+
<keyword type="function" name="gail_misc_add_attribute ()" link="gail-libgail-util3-GailMisc.html#gail-misc-add-attribute"/>
|
19
|
+
<keyword type="function" name="gail_misc_layout_get_run_attributes ()" link="gail-libgail-util3-GailMisc.html#gail-misc-layout-get-run-attributes"/>
|
20
|
+
<keyword type="function" name="gail_misc_get_default_attributes ()" link="gail-libgail-util3-GailMisc.html#gail-misc-get-default-attributes"/>
|
21
|
+
<keyword type="function" name="gail_misc_get_extents_from_pango_rectangle ()" link="gail-libgail-util3-GailMisc.html#gail-misc-get-extents-from-pango-rectangle"/>
|
22
|
+
<keyword type="function" name="gail_misc_get_index_at_point_in_layout ()" link="gail-libgail-util3-GailMisc.html#gail-misc-get-index-at-point-in-layout"/>
|
23
|
+
<keyword type="function" name="gail_misc_get_origins ()" link="gail-libgail-util3-GailMisc.html#gail-misc-get-origins"/>
|
24
|
+
<keyword type="function" name="gail_misc_buffer_get_run_attributes ()" link="gail-libgail-util3-GailMisc.html#gail-misc-buffer-get-run-attributes"/>
|
25
|
+
<keyword type="constant" name="GAIL_BEFORE_OFFSET" link="gail-libgail-util3-GailTextUtil.html#GAIL-BEFORE-OFFSET:CAPS"/>
|
26
|
+
<keyword type="constant" name="GAIL_AT_OFFSET" link="gail-libgail-util3-GailTextUtil.html#GAIL-AT-OFFSET:CAPS"/>
|
27
|
+
<keyword type="constant" name="GAIL_AFTER_OFFSET" link="gail-libgail-util3-GailTextUtil.html#GAIL-AFTER-OFFSET:CAPS"/>
|
28
|
+
</functions>
|
29
|
+
</book>
|
Binary file
|
@@ -0,0 +1,45 @@
|
|
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>GAIL Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
|
7
|
+
<link rel="home" href="index.html" title="GAIL Reference Manual">
|
8
|
+
<link rel="next" href="libgail-util-main.html" title="GAIL libgail-util Library">
|
9
|
+
<meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
|
10
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
11
|
+
</head>
|
12
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
13
|
+
<div class="book">
|
14
|
+
<div class="titlepage">
|
15
|
+
<div>
|
16
|
+
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GAIL Reference Manual</p></th></tr></table></div>
|
17
|
+
<div><p class="releaseinfo">
|
18
|
+
Version 3.6.4
|
19
|
+
|
20
|
+
The latest version of this documentation can be found on-line at
|
21
|
+
<a class="ulink" href="http://developer.gnome.org/gail-libgail-util/unstable/" target="_top">http://developer.gnome.org/gail-libgail-util/unstable/</a>.
|
22
|
+
</p></div>
|
23
|
+
</div>
|
24
|
+
<hr>
|
25
|
+
</div>
|
26
|
+
<div class="toc"><dl class="toc">
|
27
|
+
<dt><span class="chapter"><a href="libgail-util-main.html">GAIL libgail-util Library</a></span></dt>
|
28
|
+
<dd><dl>
|
29
|
+
<dt>
|
30
|
+
<span class="refentrytitle"><a href="gail-libgail-util3-GailTextUtil.html">GailTextUtil</a></span><span class="refpurpose">GailTextUtil is a utility class which can be used to
|
31
|
+
implement some of the <span class="type">AtkText</span> functions for accessible objects
|
32
|
+
which implement <span class="type">AtkText</span>.</span>
|
33
|
+
</dt>
|
34
|
+
<dt>
|
35
|
+
<span class="refentrytitle"><a href="gail-libgail-util3-GailMisc.html">GailMisc</a></span><span class="refpurpose"> — GailMisc is a set of utility functions which may be
|
36
|
+
useful to implementors of Atk interfaces for custom widgets.</span>
|
37
|
+
</dt>
|
38
|
+
</dl></dd>
|
39
|
+
</dl></div>
|
40
|
+
</div>
|
41
|
+
<div class="footer">
|
42
|
+
<hr>
|
43
|
+
Generated by GTK-Doc V1.18.1</div>
|
44
|
+
</body>
|
45
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<ONLINE href="http://developer.gnome.org/gail-libgail-util/unstable/">
|
2
|
+
<ANCHOR id="gail-libgail-util3-GailTextUtil" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html">
|
3
|
+
<ANCHOR id="gail-libgail-util3-GailTextUtil.synopsis" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#gail-libgail-util3-GailTextUtil.synopsis">
|
4
|
+
<ANCHOR id="gail-libgail-util3-GailTextUtil.description" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#gail-libgail-util3-GailTextUtil.description">
|
5
|
+
<ANCHOR id="gail-libgail-util3-GailTextUtil.details" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#gail-libgail-util3-GailTextUtil.details">
|
6
|
+
<ANCHOR id="GailTextUtil" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#GailTextUtil">
|
7
|
+
<ANCHOR id="GailOffsetType" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#GailOffsetType">
|
8
|
+
<ANCHOR id="GAIL-BEFORE-OFFSET:CAPS" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#GAIL-BEFORE-OFFSET:CAPS">
|
9
|
+
<ANCHOR id="GAIL-AT-OFFSET:CAPS" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#GAIL-AT-OFFSET:CAPS">
|
10
|
+
<ANCHOR id="GAIL-AFTER-OFFSET:CAPS" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#GAIL-AFTER-OFFSET:CAPS">
|
11
|
+
<ANCHOR id="gail-text-util-new" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#gail-text-util-new">
|
12
|
+
<ANCHOR id="gail-text-util-text-setup" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#gail-text-util-text-setup">
|
13
|
+
<ANCHOR id="gail-text-util-buffer-setup" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#gail-text-util-buffer-setup">
|
14
|
+
<ANCHOR id="gail-text-util-get-text" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#gail-text-util-get-text">
|
15
|
+
<ANCHOR id="gail-text-util-get-substring" href="gail-libgail-util3/gail-libgail-util3-GailTextUtil.html#gail-text-util-get-substring">
|
16
|
+
<ANCHOR id="gail-libgail-util3-GailMisc" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html">
|
17
|
+
<ANCHOR id="gail-libgail-util3-GailMisc.synopsis" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-libgail-util3-GailMisc.synopsis">
|
18
|
+
<ANCHOR id="gail-libgail-util3-GailMisc.description" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-libgail-util3-GailMisc.description">
|
19
|
+
<ANCHOR id="gail-libgail-util3-GailMisc.details" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-libgail-util3-GailMisc.details">
|
20
|
+
<ANCHOR id="gail-misc-add-attribute" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-misc-add-attribute">
|
21
|
+
<ANCHOR id="gail-misc-layout-get-run-attributes" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-misc-layout-get-run-attributes">
|
22
|
+
<ANCHOR id="gail-misc-get-default-attributes" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-misc-get-default-attributes">
|
23
|
+
<ANCHOR id="gail-misc-get-extents-from-pango-rectangle" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-misc-get-extents-from-pango-rectangle">
|
24
|
+
<ANCHOR id="gail-misc-get-index-at-point-in-layout" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-misc-get-index-at-point-in-layout">
|
25
|
+
<ANCHOR id="gail-misc-get-origins" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-misc-get-origins">
|
26
|
+
<ANCHOR id="gail-misc-buffer-get-run-attributes" href="gail-libgail-util3/gail-libgail-util3-GailMisc.html#gail-misc-buffer-get-run-attributes">
|
Binary file
|
@@ -0,0 +1,41 @@
|
|
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>GAIL libgail-util Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
|
7
|
+
<link rel="home" href="index.html" title="GAIL Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="GAIL Reference Manual">
|
9
|
+
<link rel="prev" href="index.html" title="GAIL Reference Manual">
|
10
|
+
<link rel="next" href="gail-libgail-util3-GailTextUtil.html" title="GailTextUtil">
|
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"><tr valign="middle">
|
16
|
+
<td><a accesskey="p" href="index.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
17
|
+
<td> </td>
|
18
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
19
|
+
<th width="100%" align="center">GAIL Reference Manual</th>
|
20
|
+
<td><a accesskey="n" href="gail-libgail-util3-GailTextUtil.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="chapter">
|
23
|
+
<div class="titlepage"><div><div><h1 class="title">
|
24
|
+
<a name="libgail-util-main"></a>GAIL libgail-util Library</h1></div></div></div>
|
25
|
+
<div class="toc"><dl class="toc">
|
26
|
+
<dt>
|
27
|
+
<span class="refentrytitle"><a href="gail-libgail-util3-GailTextUtil.html">GailTextUtil</a></span><span class="refpurpose">GailTextUtil is a utility class which can be used to
|
28
|
+
implement some of the <span class="type">AtkText</span> functions for accessible objects
|
29
|
+
which implement <span class="type">AtkText</span>.</span>
|
30
|
+
</dt>
|
31
|
+
<dt>
|
32
|
+
<span class="refentrytitle"><a href="gail-libgail-util3-GailMisc.html">GailMisc</a></span><span class="refpurpose"> — GailMisc is a set of utility functions which may be
|
33
|
+
useful to implementors of Atk interfaces for custom widgets.</span>
|
34
|
+
</dt>
|
35
|
+
</dl></div>
|
36
|
+
</div>
|
37
|
+
<div class="footer">
|
38
|
+
<hr>
|
39
|
+
Generated by GTK-Doc V1.18.1</div>
|
40
|
+
</body>
|
41
|
+
</html>
|
Binary file
|
@@ -0,0 +1,266 @@
|
|
1
|
+
.synopsis, .classsynopsis
|
2
|
+
{
|
3
|
+
/* tango:aluminium 1/2 */
|
4
|
+
background: #eeeeec;
|
5
|
+
border: solid 1px #d3d7cf;
|
6
|
+
padding: 0.5em;
|
7
|
+
}
|
8
|
+
.programlisting
|
9
|
+
{
|
10
|
+
/* tango:sky blue 0/1 */
|
11
|
+
background: #e6f3ff;
|
12
|
+
border: solid 1px #729fcf;
|
13
|
+
padding: 0.5em;
|
14
|
+
}
|
15
|
+
.variablelist
|
16
|
+
{
|
17
|
+
padding: 4px;
|
18
|
+
margin-left: 3em;
|
19
|
+
}
|
20
|
+
.variablelist td:first-child
|
21
|
+
{
|
22
|
+
vertical-align: top;
|
23
|
+
}
|
24
|
+
|
25
|
+
@media screen {
|
26
|
+
sup a.footnote
|
27
|
+
{
|
28
|
+
position: relative;
|
29
|
+
top: 0em ! important;
|
30
|
+
|
31
|
+
}
|
32
|
+
/* this is needed so that the local anchors are displayed below the naviagtion */
|
33
|
+
div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
|
34
|
+
{
|
35
|
+
display: inline-block;
|
36
|
+
position: relative;
|
37
|
+
top:-5em;
|
38
|
+
}
|
39
|
+
/* this seems to be a bug in the xsl style sheets when generating indexes */
|
40
|
+
div.index div.index
|
41
|
+
{
|
42
|
+
top: 0em;
|
43
|
+
}
|
44
|
+
/* make space for the fixed navigation bar and add space at the bottom so that
|
45
|
+
* link targets appear somewhat close to top
|
46
|
+
*/
|
47
|
+
body
|
48
|
+
{
|
49
|
+
padding-top: 3.2em;
|
50
|
+
padding-bottom: 20em;
|
51
|
+
}
|
52
|
+
/* style and size the navigation bar */
|
53
|
+
table.navigation#top
|
54
|
+
{
|
55
|
+
position: fixed;
|
56
|
+
/* tango:scarlet red 0/1 */
|
57
|
+
background: #ffe6e6;
|
58
|
+
border: solid 1px #ef2929;
|
59
|
+
margin-top: 0;
|
60
|
+
margin-bottom: 0;
|
61
|
+
top: 0;
|
62
|
+
left: 0;
|
63
|
+
height: 3em;
|
64
|
+
z-index: 10;
|
65
|
+
}
|
66
|
+
.navigation a, .navigation a:visited
|
67
|
+
{
|
68
|
+
/* tango:scarlet red 3 */
|
69
|
+
color: #a40000;
|
70
|
+
}
|
71
|
+
.navigation a:hover
|
72
|
+
{
|
73
|
+
/* tango:scarlet red 1 */
|
74
|
+
color: #ef2929;
|
75
|
+
}
|
76
|
+
td.shortcuts
|
77
|
+
{
|
78
|
+
/* tango:scarlet red 1 */
|
79
|
+
color: #ef2929;
|
80
|
+
font-size: 80%;
|
81
|
+
white-space: nowrap;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
@media print {
|
85
|
+
table.navigation {
|
86
|
+
visibility: collapse;
|
87
|
+
display: none;
|
88
|
+
}
|
89
|
+
div.titlepage table.navigation {
|
90
|
+
visibility: visible;
|
91
|
+
display: table;
|
92
|
+
/* tango:scarlet red 0/1 */
|
93
|
+
background: #ffe6e6;
|
94
|
+
border: solid 1px #ef2929;
|
95
|
+
margin-top: 0;
|
96
|
+
margin-bottom: 0;
|
97
|
+
top: 0;
|
98
|
+
left: 0;
|
99
|
+
height: 3em;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
.navigation .title
|
104
|
+
{
|
105
|
+
font-size: 200%;
|
106
|
+
}
|
107
|
+
|
108
|
+
div.gallery-float
|
109
|
+
{
|
110
|
+
float: left;
|
111
|
+
padding: 10px;
|
112
|
+
}
|
113
|
+
div.gallery-float img
|
114
|
+
{
|
115
|
+
border-style: none;
|
116
|
+
}
|
117
|
+
div.gallery-spacer
|
118
|
+
{
|
119
|
+
clear: both;
|
120
|
+
}
|
121
|
+
|
122
|
+
a, a:visited
|
123
|
+
{
|
124
|
+
text-decoration: none;
|
125
|
+
/* tango:sky blue 2 */
|
126
|
+
color: #3465a4;
|
127
|
+
}
|
128
|
+
a:hover
|
129
|
+
{
|
130
|
+
text-decoration: underline;
|
131
|
+
/* tango:sky blue 1 */
|
132
|
+
color: #729fcf;
|
133
|
+
}
|
134
|
+
|
135
|
+
div.table table
|
136
|
+
{
|
137
|
+
border-collapse: collapse;
|
138
|
+
border-spacing: 0px;
|
139
|
+
/* tango:aluminium 3 */
|
140
|
+
border: solid 1px #babdb6;
|
141
|
+
}
|
142
|
+
|
143
|
+
div.table table td, div.table table th
|
144
|
+
{
|
145
|
+
/* tango:aluminium 3 */
|
146
|
+
border: solid 1px #babdb6;
|
147
|
+
padding: 3px;
|
148
|
+
vertical-align: top;
|
149
|
+
}
|
150
|
+
|
151
|
+
div.table table th
|
152
|
+
{
|
153
|
+
/* tango:aluminium 2 */
|
154
|
+
background-color: #d3d7cf;
|
155
|
+
}
|
156
|
+
|
157
|
+
hr
|
158
|
+
{
|
159
|
+
/* tango:aluminium 3 */
|
160
|
+
color: #babdb6;
|
161
|
+
background: #babdb6;
|
162
|
+
border: none 0px;
|
163
|
+
height: 1px;
|
164
|
+
clear: both;
|
165
|
+
}
|
166
|
+
|
167
|
+
.footer
|
168
|
+
{
|
169
|
+
padding-top: 3.5em;
|
170
|
+
/* tango:aluminium 3 */
|
171
|
+
color: #babdb6;
|
172
|
+
text-align: center;
|
173
|
+
font-size: 80%;
|
174
|
+
}
|
175
|
+
|
176
|
+
.warning
|
177
|
+
{
|
178
|
+
/* tango:orange 0/1 */
|
179
|
+
background: #ffeed9;
|
180
|
+
border-color: #ffb04f;
|
181
|
+
}
|
182
|
+
.note
|
183
|
+
{
|
184
|
+
/* tango:chameleon 0/0.5 */
|
185
|
+
background: #d8ffb2;
|
186
|
+
border-color: #abf562;
|
187
|
+
}
|
188
|
+
.note, .warning
|
189
|
+
{
|
190
|
+
padding: 0.5em;
|
191
|
+
border-width: 1px;
|
192
|
+
border-style: solid;
|
193
|
+
}
|
194
|
+
.note h3, .warning h3
|
195
|
+
{
|
196
|
+
margin-top: 0.0em
|
197
|
+
}
|
198
|
+
.note p, .warning p
|
199
|
+
{
|
200
|
+
margin-bottom: 0.0em
|
201
|
+
}
|
202
|
+
|
203
|
+
/* blob links */
|
204
|
+
h2 .extralinks, h3 .extralinks
|
205
|
+
{
|
206
|
+
float: right;
|
207
|
+
/* tango:aluminium 3 */
|
208
|
+
color: #babdb6;
|
209
|
+
font-size: 80%;
|
210
|
+
font-weight: normal;
|
211
|
+
}
|
212
|
+
|
213
|
+
.annotation
|
214
|
+
{
|
215
|
+
/* tango:aluminium 5 */
|
216
|
+
color: #555753;
|
217
|
+
font-size: 80%;
|
218
|
+
font-weight: normal;
|
219
|
+
}
|
220
|
+
|
221
|
+
/* code listings */
|
222
|
+
|
223
|
+
.listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */
|
224
|
+
.listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */
|
225
|
+
.listing_code .programlisting .function { color: #000000; font-weight: bold; }
|
226
|
+
.listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */
|
227
|
+
.listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */
|
228
|
+
.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
|
229
|
+
.listing_code .programlisting .normal { color: #000000; }
|
230
|
+
.listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */
|
231
|
+
.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
|
232
|
+
.listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */
|
233
|
+
.listing_code .programlisting .type { color: #000000; }
|
234
|
+
.listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */
|
235
|
+
.listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */
|
236
|
+
|
237
|
+
.listing_frame {
|
238
|
+
/* tango:sky blue 1 */
|
239
|
+
border: solid 1px #729fcf;
|
240
|
+
padding: 0px;
|
241
|
+
}
|
242
|
+
|
243
|
+
.listing_lines, .listing_code {
|
244
|
+
margin-top: 0px;
|
245
|
+
margin-bottom: 0px;
|
246
|
+
padding: 0.5em;
|
247
|
+
}
|
248
|
+
.listing_lines {
|
249
|
+
/* tango:sky blue 0.5 */
|
250
|
+
background: #a6c5e3;
|
251
|
+
/* tango:aluminium 6 */
|
252
|
+
color: #2e3436;
|
253
|
+
}
|
254
|
+
.listing_code {
|
255
|
+
/* tango:sky blue 0 */
|
256
|
+
background: #e6f3ff;
|
257
|
+
}
|
258
|
+
.listing_code .programlisting {
|
259
|
+
/* override from previous */
|
260
|
+
border: none 0px;
|
261
|
+
padding: 0px;
|
262
|
+
}
|
263
|
+
.listing_lines pre, .listing_code pre {
|
264
|
+
margin: 0px;
|
265
|
+
}
|
266
|
+
|
Binary file
|
@@ -0,0 +1,1532 @@
|
|
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>GdkDevice</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
|
7
|
+
<link rel="home" href="index.html" title="GDK 3 Reference Manual">
|
8
|
+
<link rel="up" href="reference.html" title="API Reference">
|
9
|
+
<link rel="prev" href="GdkDeviceManager.html" title="GdkDeviceManager">
|
10
|
+
<link rel="next" href="gdk3-Points-Rectangles-and-Regions.html" title="Points and Rectangles">
|
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="GdkDeviceManager.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="reference.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">GDK 3 Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="gdk3-Points-Rectangles-and-Regions.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="#GdkDevice.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GdkDevice.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GdkDevice.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GdkDevice.properties" class="shortcut">Properties</a>
|
31
|
+
|
|
32
|
+
<a href="#GdkDevice.signals" class="shortcut">Signals</a>
|
33
|
+
</td></tr>
|
34
|
+
</table>
|
35
|
+
<div class="refentry">
|
36
|
+
<a name="GdkDevice"></a><div class="titlepage"></div>
|
37
|
+
<div class="refnamediv"><table width="100%"><tr>
|
38
|
+
<td valign="top">
|
39
|
+
<h2><span class="refentrytitle"><a name="GdkDevice.top_of_page"></a>GdkDevice</span></h2>
|
40
|
+
<p>GdkDevice — Object representing an input device</p>
|
41
|
+
</td>
|
42
|
+
<td valign="top" align="right"></td>
|
43
|
+
</tr></table></div>
|
44
|
+
<div class="refsynopsisdiv">
|
45
|
+
<a name="GdkDevice.synopsis"></a><h2>Synopsis</h2>
|
46
|
+
<pre class="synopsis">
|
47
|
+
#include <gdk/gdk.h>
|
48
|
+
|
49
|
+
<a class="link" href="GdkDevice.html#GdkDevice-struct" title="GdkDevice">GdkDevice</a>;
|
50
|
+
enum <a class="link" href="GdkDevice.html#GdkInputSource" title="enum GdkInputSource">GdkInputSource</a>;
|
51
|
+
enum <a class="link" href="GdkDevice.html#GdkInputMode" title="enum GdkInputMode">GdkInputMode</a>;
|
52
|
+
enum <a class="link" href="GdkDevice.html#GdkAxisUse" title="enum GdkAxisUse">GdkAxisUse</a>;
|
53
|
+
enum <a class="link" href="GdkDevice.html#GdkDeviceType" title="enum GdkDeviceType">GdkDeviceType</a>;
|
54
|
+
enum <a class="link" href="GdkDevice.html#GdkGrabOwnership" title="enum GdkGrabOwnership">GdkGrabOwnership</a>;
|
55
|
+
|
56
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="GdkDevice.html#gdk-device-get-name" title="gdk_device_get_name ()">gdk_device_get_name</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
57
|
+
<a class="link" href="GdkDevice.html#GdkInputSource" title="enum GdkInputSource"><span class="returnvalue">GdkInputSource</span></a> <a class="link" href="GdkDevice.html#gdk-device-get-source" title="gdk_device_get_source ()">gdk_device_get_source</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
58
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GdkDevice.html#gdk-device-set-mode" title="gdk_device_set_mode ()">gdk_device_set_mode</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
59
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkInputMode" title="enum GdkInputMode"><span class="type">GdkInputMode</span></a> mode</code></em>);
|
60
|
+
<a class="link" href="GdkDevice.html#GdkInputMode" title="enum GdkInputMode"><span class="returnvalue">GdkInputMode</span></a> <a class="link" href="GdkDevice.html#gdk-device-get-mode" title="gdk_device_get_mode ()">gdk_device_get_mode</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
61
|
+
<span class="returnvalue">void</span> <a class="link" href="GdkDevice.html#gdk-device-set-key" title="gdk_device_set_key ()">gdk_device_set_key</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
62
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
63
|
+
<em class="parameter"><code><span class="type">guint</span> keyval</code></em>,
|
64
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a> modifiers</code></em>);
|
65
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GdkDevice.html#gdk-device-get-key" title="gdk_device_get_key ()">gdk_device_get_key</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
66
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
67
|
+
<em class="parameter"><code><span class="type">guint</span> *keyval</code></em>,
|
68
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a> *modifiers</code></em>);
|
69
|
+
<span class="returnvalue">void</span> <a class="link" href="GdkDevice.html#gdk-device-set-axis-use" title="gdk_device_set_axis_use ()">gdk_device_set_axis_use</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
70
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
71
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkAxisUse" title="enum GdkAxisUse"><span class="type">GdkAxisUse</span></a> use</code></em>);
|
72
|
+
<a class="link" href="GdkDevice.html#GdkAxisUse" title="enum GdkAxisUse"><span class="returnvalue">GdkAxisUse</span></a> <a class="link" href="GdkDevice.html#gdk-device-get-axis-use" title="gdk_device_get_axis_use ()">gdk_device_get_axis_use</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
73
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>);
|
74
|
+
<a class="link" href="GdkDevice.html" title="GdkDevice"><span class="returnvalue">GdkDevice</span></a> * <a class="link" href="GdkDevice.html#gdk-device-get-associated-device" title="gdk_device_get_associated_device ()">gdk_device_get_associated_device</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
75
|
+
<span class="returnvalue">GList</span> * <a class="link" href="GdkDevice.html#gdk-device-list-slave-devices" title="gdk_device_list_slave_devices ()">gdk_device_list_slave_devices</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
76
|
+
<a class="link" href="GdkDevice.html#GdkDeviceType" title="enum GdkDeviceType"><span class="returnvalue">GdkDeviceType</span></a> <a class="link" href="GdkDevice.html#gdk-device-get-device-type" title="gdk_device_get_device_type ()">gdk_device_get_device_type</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
77
|
+
<a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> * <a class="link" href="GdkDevice.html#gdk-device-get-display" title="gdk_device_get_display ()">gdk_device_get_display</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
78
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GdkDevice.html#gdk-device-get-has-cursor" title="gdk_device_get_has_cursor ()">gdk_device_get_has_cursor</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
79
|
+
<span class="returnvalue">gint</span> <a class="link" href="GdkDevice.html#gdk-device-get-n-axes" title="gdk_device_get_n_axes ()">gdk_device_get_n_axes</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
80
|
+
<span class="returnvalue">gint</span> <a class="link" href="GdkDevice.html#gdk-device-get-n-keys" title="gdk_device_get_n_keys ()">gdk_device_get_n_keys</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
81
|
+
<span class="returnvalue">void</span> <a class="link" href="GdkDevice.html#gdk-device-warp" title="gdk_device_warp ()">gdk_device_warp</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
82
|
+
<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
|
83
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
84
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
85
|
+
|
86
|
+
<a class="link" href="gdk3-General.html#GdkGrabStatus" title="enum GdkGrabStatus"><span class="returnvalue">GdkGrabStatus</span></a> <a class="link" href="GdkDevice.html#gdk-device-grab" title="gdk_device_grab ()">gdk_device_grab</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
87
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
88
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkGrabOwnership" title="enum GdkGrabOwnership"><span class="type">GdkGrabOwnership</span></a> grab_ownership</code></em>,
|
89
|
+
<em class="parameter"><code><span class="type">gboolean</span> owner_events</code></em>,
|
90
|
+
<em class="parameter"><code><a class="link" href="gdk3-Events.html#GdkEventMask" title="enum GdkEventMask"><span class="type">GdkEventMask</span></a> event_mask</code></em>,
|
91
|
+
<em class="parameter"><code><a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>,
|
92
|
+
<em class="parameter"><code><span class="type">guint32</span> time_</code></em>);
|
93
|
+
<span class="returnvalue">void</span> <a class="link" href="GdkDevice.html#gdk-device-ungrab" title="gdk_device_ungrab ()">gdk_device_ungrab</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
94
|
+
<em class="parameter"><code><span class="type">guint32</span> time_</code></em>);
|
95
|
+
|
96
|
+
<span class="returnvalue">void</span> <a class="link" href="GdkDevice.html#gdk-device-get-state" title="gdk_device_get_state ()">gdk_device_get_state</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
97
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
98
|
+
<em class="parameter"><code><span class="type">gdouble</span> *axes</code></em>,
|
99
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a> *mask</code></em>);
|
100
|
+
<span class="returnvalue">void</span> <a class="link" href="GdkDevice.html#gdk-device-get-position" title="gdk_device_get_position ()">gdk_device_get_position</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
101
|
+
<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> **screen</code></em>,
|
102
|
+
<em class="parameter"><code><span class="type">gint</span> *x</code></em>,
|
103
|
+
<em class="parameter"><code><span class="type">gint</span> *y</code></em>);
|
104
|
+
<a class="link" href="gdk3-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * <a class="link" href="GdkDevice.html#gdk-device-get-window-at-position" title="gdk_device_get_window_at_position ()">gdk_device_get_window_at_position</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
105
|
+
<em class="parameter"><code><span class="type">gint</span> *win_x</code></em>,
|
106
|
+
<em class="parameter"><code><span class="type">gint</span> *win_y</code></em>);
|
107
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GdkDevice.html#gdk-device-get-history" title="gdk_device_get_history ()">gdk_device_get_history</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
108
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
109
|
+
<em class="parameter"><code><span class="type">guint32</span> start</code></em>,
|
110
|
+
<em class="parameter"><code><span class="type">guint32</span> stop</code></em>,
|
111
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkTimeCoord" title="struct GdkTimeCoord"><span class="type">GdkTimeCoord</span></a> ***events</code></em>,
|
112
|
+
<em class="parameter"><code><span class="type">gint</span> *n_events</code></em>);
|
113
|
+
<span class="returnvalue">void</span> <a class="link" href="GdkDevice.html#gdk-device-free-history" title="gdk_device_free_history ()">gdk_device_free_history</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkTimeCoord" title="struct GdkTimeCoord"><span class="type">GdkTimeCoord</span></a> **events</code></em>,
|
114
|
+
<em class="parameter"><code><span class="type">gint</span> n_events</code></em>);
|
115
|
+
struct <a class="link" href="GdkDevice.html#GdkTimeCoord" title="struct GdkTimeCoord">GdkTimeCoord</a>;
|
116
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GdkDevice.html#gdk-device-get-axis" title="gdk_device_get_axis ()">gdk_device_get_axis</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
117
|
+
<em class="parameter"><code><span class="type">gdouble</span> *axes</code></em>,
|
118
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkAxisUse" title="enum GdkAxisUse"><span class="type">GdkAxisUse</span></a> use</code></em>,
|
119
|
+
<em class="parameter"><code><span class="type">gdouble</span> *value</code></em>);
|
120
|
+
<span class="returnvalue">GList</span> * <a class="link" href="GdkDevice.html#gdk-device-list-axes" title="gdk_device_list_axes ()">gdk_device_list_axes</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
121
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GdkDevice.html#gdk-device-get-axis-value" title="gdk_device_get_axis_value ()">gdk_device_get_axis_value</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
122
|
+
<em class="parameter"><code><span class="type">gdouble</span> *axes</code></em>,
|
123
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> axis_label</code></em>,
|
124
|
+
<em class="parameter"><code><span class="type">gdouble</span> *value</code></em>);
|
125
|
+
</pre>
|
126
|
+
</div>
|
127
|
+
<div class="refsect1">
|
128
|
+
<a name="GdkDevice.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
129
|
+
<pre class="synopsis">
|
130
|
+
GObject
|
131
|
+
+----GdkDevice
|
132
|
+
</pre>
|
133
|
+
</div>
|
134
|
+
<div class="refsect1">
|
135
|
+
<a name="GdkDevice.properties"></a><h2>Properties</h2>
|
136
|
+
<pre class="synopsis">
|
137
|
+
"<a class="link" href="GdkDevice.html#GdkDevice--associated-device" title='The "associated-device" property'>associated-device</a>" <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>* : Read
|
138
|
+
"<a class="link" href="GdkDevice.html#GdkDevice--device-manager" title='The "device-manager" property'>device-manager</a>" <a class="link" href="GdkDeviceManager.html" title="GdkDeviceManager"><span class="type">GdkDeviceManager</span></a>* : Read / Write / Construct Only
|
139
|
+
"<a class="link" href="GdkDevice.html#GdkDevice--display" title='The "display" property'>display</a>" <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>* : Read / Write / Construct Only
|
140
|
+
"<a class="link" href="GdkDevice.html#GdkDevice--has-cursor" title='The "has-cursor" property'>has-cursor</a>" <span class="type">gboolean</span> : Read / Write / Construct Only
|
141
|
+
"<a class="link" href="GdkDevice.html#GdkDevice--input-mode" title='The "input-mode" property'>input-mode</a>" <a class="link" href="GdkDevice.html#GdkInputMode" title="enum GdkInputMode"><span class="type">GdkInputMode</span></a> : Read / Write
|
142
|
+
"<a class="link" href="GdkDevice.html#GdkDevice--input-source" title='The "input-source" property'>input-source</a>" <a class="link" href="GdkDevice.html#GdkInputSource" title="enum GdkInputSource"><span class="type">GdkInputSource</span></a> : Read / Write / Construct Only
|
143
|
+
"<a class="link" href="GdkDevice.html#GdkDevice--n-axes" title='The "n-axes" property'>n-axes</a>" <span class="type">guint</span> : Read
|
144
|
+
"<a class="link" href="GdkDevice.html#GdkDevice--name" title='The "name" property'>name</a>" <span class="type">gchar</span>* : Read / Write / Construct Only
|
145
|
+
"<a class="link" href="GdkDevice.html#GdkDevice--type" title='The "type" property'>type</a>" <a class="link" href="GdkDevice.html#GdkDeviceType" title="enum GdkDeviceType"><span class="type">GdkDeviceType</span></a> : Read / Write / Construct Only
|
146
|
+
</pre>
|
147
|
+
</div>
|
148
|
+
<div class="refsect1">
|
149
|
+
<a name="GdkDevice.signals"></a><h2>Signals</h2>
|
150
|
+
<pre class="synopsis">
|
151
|
+
"<a class="link" href="GdkDevice.html#GdkDevice-changed" title='The "changed" signal'>changed</a>" : <code class="literal">Run Last</code>
|
152
|
+
</pre>
|
153
|
+
</div>
|
154
|
+
<div class="refsect1">
|
155
|
+
<a name="GdkDevice.description"></a><h2>Description</h2>
|
156
|
+
<p>
|
157
|
+
The <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> object represents a single input device, such
|
158
|
+
as a keyboard, a mouse, a touchpad, etc.
|
159
|
+
</p>
|
160
|
+
<p>
|
161
|
+
See the <a class="link" href="GdkDeviceManager.html" title="GdkDeviceManager"><span class="type">GdkDeviceManager</span></a> documentation for more information
|
162
|
+
about the various kinds of master and slave devices, and their
|
163
|
+
relationships.
|
164
|
+
</p>
|
165
|
+
</div>
|
166
|
+
<div class="refsect1">
|
167
|
+
<a name="GdkDevice.details"></a><h2>Details</h2>
|
168
|
+
<div class="refsect2">
|
169
|
+
<a name="GdkDevice-struct"></a><h3>GdkDevice</h3>
|
170
|
+
<pre class="programlisting">typedef struct _GdkDevice GdkDevice;</pre>
|
171
|
+
</div>
|
172
|
+
<hr>
|
173
|
+
<div class="refsect2">
|
174
|
+
<a name="GdkInputSource"></a><h3>enum GdkInputSource</h3>
|
175
|
+
<pre class="programlisting">typedef enum {
|
176
|
+
GDK_SOURCE_MOUSE,
|
177
|
+
GDK_SOURCE_PEN,
|
178
|
+
GDK_SOURCE_ERASER,
|
179
|
+
GDK_SOURCE_CURSOR,
|
180
|
+
GDK_SOURCE_KEYBOARD,
|
181
|
+
GDK_SOURCE_TOUCHSCREEN,
|
182
|
+
GDK_SOURCE_TOUCHPAD
|
183
|
+
} GdkInputSource;
|
184
|
+
</pre>
|
185
|
+
<p>
|
186
|
+
An enumeration describing the type of an input device in general terms.
|
187
|
+
</p>
|
188
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
189
|
+
<colgroup>
|
190
|
+
<col align="left" valign="top">
|
191
|
+
<col>
|
192
|
+
</colgroup>
|
193
|
+
<tbody>
|
194
|
+
<tr>
|
195
|
+
<td><p><a name="GDK-SOURCE-MOUSE:CAPS"></a><span class="term"><code class="literal">GDK_SOURCE_MOUSE</code></span></p></td>
|
196
|
+
<td>the device is a mouse. (This will be reported for the core
|
197
|
+
pointer, even if it is something else, such as a trackball.)
|
198
|
+
</td>
|
199
|
+
</tr>
|
200
|
+
<tr>
|
201
|
+
<td><p><a name="GDK-SOURCE-PEN:CAPS"></a><span class="term"><code class="literal">GDK_SOURCE_PEN</code></span></p></td>
|
202
|
+
<td>the device is a stylus of a graphics tablet or similar device.
|
203
|
+
</td>
|
204
|
+
</tr>
|
205
|
+
<tr>
|
206
|
+
<td><p><a name="GDK-SOURCE-ERASER:CAPS"></a><span class="term"><code class="literal">GDK_SOURCE_ERASER</code></span></p></td>
|
207
|
+
<td>the device is an eraser. Typically, this would be the other end
|
208
|
+
of a stylus on a graphics tablet.
|
209
|
+
</td>
|
210
|
+
</tr>
|
211
|
+
<tr>
|
212
|
+
<td><p><a name="GDK-SOURCE-CURSOR:CAPS"></a><span class="term"><code class="literal">GDK_SOURCE_CURSOR</code></span></p></td>
|
213
|
+
<td>the device is a graphics tablet "puck" or similar device.
|
214
|
+
</td>
|
215
|
+
</tr>
|
216
|
+
<tr>
|
217
|
+
<td><p><a name="GDK-SOURCE-KEYBOARD:CAPS"></a><span class="term"><code class="literal">GDK_SOURCE_KEYBOARD</code></span></p></td>
|
218
|
+
<td>the device is a keyboard.
|
219
|
+
</td>
|
220
|
+
</tr>
|
221
|
+
<tr>
|
222
|
+
<td><p><a name="GDK-SOURCE-TOUCHSCREEN:CAPS"></a><span class="term"><code class="literal">GDK_SOURCE_TOUCHSCREEN</code></span></p></td>
|
223
|
+
<td>the device is a direct-input touch device, such
|
224
|
+
as a touchscreen or tablet. This device type has been added in 3.4.
|
225
|
+
</td>
|
226
|
+
</tr>
|
227
|
+
<tr>
|
228
|
+
<td><p><a name="GDK-SOURCE-TOUCHPAD:CAPS"></a><span class="term"><code class="literal">GDK_SOURCE_TOUCHPAD</code></span></p></td>
|
229
|
+
<td>the device is an indirect touch device, such
|
230
|
+
as a touchpad. This device type has been added in 3.4.
|
231
|
+
</td>
|
232
|
+
</tr>
|
233
|
+
</tbody>
|
234
|
+
</table></div>
|
235
|
+
</div>
|
236
|
+
<hr>
|
237
|
+
<div class="refsect2">
|
238
|
+
<a name="GdkInputMode"></a><h3>enum GdkInputMode</h3>
|
239
|
+
<pre class="programlisting">typedef enum {
|
240
|
+
GDK_MODE_DISABLED,
|
241
|
+
GDK_MODE_SCREEN,
|
242
|
+
GDK_MODE_WINDOW
|
243
|
+
} GdkInputMode;
|
244
|
+
</pre>
|
245
|
+
<p>
|
246
|
+
An enumeration that describes the mode of an input device.
|
247
|
+
</p>
|
248
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
249
|
+
<colgroup>
|
250
|
+
<col align="left" valign="top">
|
251
|
+
<col>
|
252
|
+
</colgroup>
|
253
|
+
<tbody>
|
254
|
+
<tr>
|
255
|
+
<td><p><a name="GDK-MODE-DISABLED:CAPS"></a><span class="term"><code class="literal">GDK_MODE_DISABLED</code></span></p></td>
|
256
|
+
<td>the device is disabled and will not report any events.
|
257
|
+
</td>
|
258
|
+
</tr>
|
259
|
+
<tr>
|
260
|
+
<td><p><a name="GDK-MODE-SCREEN:CAPS"></a><span class="term"><code class="literal">GDK_MODE_SCREEN</code></span></p></td>
|
261
|
+
<td>the device is enabled. The device's coordinate space
|
262
|
+
maps to the entire screen.
|
263
|
+
</td>
|
264
|
+
</tr>
|
265
|
+
<tr>
|
266
|
+
<td><p><a name="GDK-MODE-WINDOW:CAPS"></a><span class="term"><code class="literal">GDK_MODE_WINDOW</code></span></p></td>
|
267
|
+
<td>the device is enabled. The device's coordinate space
|
268
|
+
is mapped to a single window. The manner in which this window
|
269
|
+
is chosen is undefined, but it will typically be the same
|
270
|
+
way in which the focus window for key events is determined.
|
271
|
+
</td>
|
272
|
+
</tr>
|
273
|
+
</tbody>
|
274
|
+
</table></div>
|
275
|
+
</div>
|
276
|
+
<hr>
|
277
|
+
<div class="refsect2">
|
278
|
+
<a name="GdkAxisUse"></a><h3>enum GdkAxisUse</h3>
|
279
|
+
<pre class="programlisting">typedef enum {
|
280
|
+
GDK_AXIS_IGNORE,
|
281
|
+
GDK_AXIS_X,
|
282
|
+
GDK_AXIS_Y,
|
283
|
+
GDK_AXIS_PRESSURE,
|
284
|
+
GDK_AXIS_XTILT,
|
285
|
+
GDK_AXIS_YTILT,
|
286
|
+
GDK_AXIS_WHEEL,
|
287
|
+
GDK_AXIS_LAST
|
288
|
+
} GdkAxisUse;
|
289
|
+
</pre>
|
290
|
+
<p>
|
291
|
+
An enumeration describing the way in which a device
|
292
|
+
axis (valuator) maps onto the predefined valuator
|
293
|
+
types that GTK+ understands.
|
294
|
+
</p>
|
295
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
296
|
+
<colgroup>
|
297
|
+
<col align="left" valign="top">
|
298
|
+
<col>
|
299
|
+
</colgroup>
|
300
|
+
<tbody>
|
301
|
+
<tr>
|
302
|
+
<td><p><a name="GDK-AXIS-IGNORE:CAPS"></a><span class="term"><code class="literal">GDK_AXIS_IGNORE</code></span></p></td>
|
303
|
+
<td>the axis is ignored.
|
304
|
+
</td>
|
305
|
+
</tr>
|
306
|
+
<tr>
|
307
|
+
<td><p><a name="GDK-AXIS-X:CAPS"></a><span class="term"><code class="literal">GDK_AXIS_X</code></span></p></td>
|
308
|
+
<td>the axis is used as the x axis.
|
309
|
+
</td>
|
310
|
+
</tr>
|
311
|
+
<tr>
|
312
|
+
<td><p><a name="GDK-AXIS-Y:CAPS"></a><span class="term"><code class="literal">GDK_AXIS_Y</code></span></p></td>
|
313
|
+
<td>the axis is used as the y axis.
|
314
|
+
</td>
|
315
|
+
</tr>
|
316
|
+
<tr>
|
317
|
+
<td><p><a name="GDK-AXIS-PRESSURE:CAPS"></a><span class="term"><code class="literal">GDK_AXIS_PRESSURE</code></span></p></td>
|
318
|
+
<td>the axis is used for pressure information.
|
319
|
+
</td>
|
320
|
+
</tr>
|
321
|
+
<tr>
|
322
|
+
<td><p><a name="GDK-AXIS-XTILT:CAPS"></a><span class="term"><code class="literal">GDK_AXIS_XTILT</code></span></p></td>
|
323
|
+
<td>the axis is used for x tilt information.
|
324
|
+
</td>
|
325
|
+
</tr>
|
326
|
+
<tr>
|
327
|
+
<td><p><a name="GDK-AXIS-YTILT:CAPS"></a><span class="term"><code class="literal">GDK_AXIS_YTILT</code></span></p></td>
|
328
|
+
<td>the axis is used for y tilt information.
|
329
|
+
</td>
|
330
|
+
</tr>
|
331
|
+
<tr>
|
332
|
+
<td><p><a name="GDK-AXIS-WHEEL:CAPS"></a><span class="term"><code class="literal">GDK_AXIS_WHEEL</code></span></p></td>
|
333
|
+
<td>the axis is used for wheel information.
|
334
|
+
</td>
|
335
|
+
</tr>
|
336
|
+
<tr>
|
337
|
+
<td><p><a name="GDK-AXIS-LAST:CAPS"></a><span class="term"><code class="literal">GDK_AXIS_LAST</code></span></p></td>
|
338
|
+
<td>a constant equal to the numerically highest axis value.
|
339
|
+
</td>
|
340
|
+
</tr>
|
341
|
+
</tbody>
|
342
|
+
</table></div>
|
343
|
+
</div>
|
344
|
+
<hr>
|
345
|
+
<div class="refsect2">
|
346
|
+
<a name="GdkDeviceType"></a><h3>enum GdkDeviceType</h3>
|
347
|
+
<pre class="programlisting">typedef enum {
|
348
|
+
GDK_DEVICE_TYPE_MASTER,
|
349
|
+
GDK_DEVICE_TYPE_SLAVE,
|
350
|
+
GDK_DEVICE_TYPE_FLOATING
|
351
|
+
} GdkDeviceType;
|
352
|
+
</pre>
|
353
|
+
<p>
|
354
|
+
Indicates the device type. See <a class="link" href="GdkDeviceManager.html#GdkDeviceManager.description" title="Description">above</a>
|
355
|
+
for more information about the meaning of these device types.
|
356
|
+
</p>
|
357
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
358
|
+
<colgroup>
|
359
|
+
<col align="left" valign="top">
|
360
|
+
<col>
|
361
|
+
</colgroup>
|
362
|
+
<tbody>
|
363
|
+
<tr>
|
364
|
+
<td><p><a name="GDK-DEVICE-TYPE-MASTER:CAPS"></a><span class="term"><code class="literal">GDK_DEVICE_TYPE_MASTER</code></span></p></td>
|
365
|
+
<td>Device is a master (or virtual) device. There will
|
366
|
+
be an associated focus indicator on the screen.
|
367
|
+
</td>
|
368
|
+
</tr>
|
369
|
+
<tr>
|
370
|
+
<td><p><a name="GDK-DEVICE-TYPE-SLAVE:CAPS"></a><span class="term"><code class="literal">GDK_DEVICE_TYPE_SLAVE</code></span></p></td>
|
371
|
+
<td>Device is a slave (or physical) device.
|
372
|
+
</td>
|
373
|
+
</tr>
|
374
|
+
<tr>
|
375
|
+
<td><p><a name="GDK-DEVICE-TYPE-FLOATING:CAPS"></a><span class="term"><code class="literal">GDK_DEVICE_TYPE_FLOATING</code></span></p></td>
|
376
|
+
<td>Device is a physical device, currently not attached to
|
377
|
+
any virtual device.
|
378
|
+
</td>
|
379
|
+
</tr>
|
380
|
+
</tbody>
|
381
|
+
</table></div>
|
382
|
+
</div>
|
383
|
+
<hr>
|
384
|
+
<div class="refsect2">
|
385
|
+
<a name="GdkGrabOwnership"></a><h3>enum GdkGrabOwnership</h3>
|
386
|
+
<pre class="programlisting">typedef enum {
|
387
|
+
GDK_OWNERSHIP_NONE,
|
388
|
+
GDK_OWNERSHIP_WINDOW,
|
389
|
+
GDK_OWNERSHIP_APPLICATION
|
390
|
+
} GdkGrabOwnership;
|
391
|
+
</pre>
|
392
|
+
<p>
|
393
|
+
Defines how device grabs interact with other devices.
|
394
|
+
</p>
|
395
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
396
|
+
<colgroup>
|
397
|
+
<col align="left" valign="top">
|
398
|
+
<col>
|
399
|
+
</colgroup>
|
400
|
+
<tbody>
|
401
|
+
<tr>
|
402
|
+
<td><p><a name="GDK-OWNERSHIP-NONE:CAPS"></a><span class="term"><code class="literal">GDK_OWNERSHIP_NONE</code></span></p></td>
|
403
|
+
<td>All other devices' events are allowed.
|
404
|
+
</td>
|
405
|
+
</tr>
|
406
|
+
<tr>
|
407
|
+
<td><p><a name="GDK-OWNERSHIP-WINDOW:CAPS"></a><span class="term"><code class="literal">GDK_OWNERSHIP_WINDOW</code></span></p></td>
|
408
|
+
<td>Other devices' events are blocked for the grab window.
|
409
|
+
</td>
|
410
|
+
</tr>
|
411
|
+
<tr>
|
412
|
+
<td><p><a name="GDK-OWNERSHIP-APPLICATION:CAPS"></a><span class="term"><code class="literal">GDK_OWNERSHIP_APPLICATION</code></span></p></td>
|
413
|
+
<td>Other devices' events are blocked for the whole application.
|
414
|
+
</td>
|
415
|
+
</tr>
|
416
|
+
</tbody>
|
417
|
+
</table></div>
|
418
|
+
</div>
|
419
|
+
<hr>
|
420
|
+
<div class="refsect2">
|
421
|
+
<a name="gdk-device-get-name"></a><h3>gdk_device_get_name ()</h3>
|
422
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gdk_device_get_name (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
423
|
+
<p>
|
424
|
+
Determines the name of the device.
|
425
|
+
</p>
|
426
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
427
|
+
<colgroup>
|
428
|
+
<col align="left" valign="top">
|
429
|
+
<col>
|
430
|
+
</colgroup>
|
431
|
+
<tbody>
|
432
|
+
<tr>
|
433
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
434
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
435
|
+
</td>
|
436
|
+
</tr>
|
437
|
+
<tr>
|
438
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
439
|
+
<td>a name</td>
|
440
|
+
</tr>
|
441
|
+
</tbody>
|
442
|
+
</table></div>
|
443
|
+
<p class="since">Since 2.20</p>
|
444
|
+
</div>
|
445
|
+
<hr>
|
446
|
+
<div class="refsect2">
|
447
|
+
<a name="gdk-device-get-source"></a><h3>gdk_device_get_source ()</h3>
|
448
|
+
<pre class="programlisting"><a class="link" href="GdkDevice.html#GdkInputSource" title="enum GdkInputSource"><span class="returnvalue">GdkInputSource</span></a> gdk_device_get_source (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
449
|
+
<p>
|
450
|
+
Determines the type of the device.
|
451
|
+
</p>
|
452
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
453
|
+
<colgroup>
|
454
|
+
<col align="left" valign="top">
|
455
|
+
<col>
|
456
|
+
</colgroup>
|
457
|
+
<tbody>
|
458
|
+
<tr>
|
459
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
460
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
461
|
+
</td>
|
462
|
+
</tr>
|
463
|
+
<tr>
|
464
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
465
|
+
<td>a <a class="link" href="GdkDevice.html#GdkInputSource" title="enum GdkInputSource"><span class="type">GdkInputSource</span></a>
|
466
|
+
</td>
|
467
|
+
</tr>
|
468
|
+
</tbody>
|
469
|
+
</table></div>
|
470
|
+
<p class="since">Since 2.20</p>
|
471
|
+
</div>
|
472
|
+
<hr>
|
473
|
+
<div class="refsect2">
|
474
|
+
<a name="gdk-device-set-mode"></a><h3>gdk_device_set_mode ()</h3>
|
475
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gdk_device_set_mode (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
476
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkInputMode" title="enum GdkInputMode"><span class="type">GdkInputMode</span></a> mode</code></em>);</pre>
|
477
|
+
<p>
|
478
|
+
Sets a the mode of an input device. The mode controls if the
|
479
|
+
device is active and whether the device's range is mapped to the
|
480
|
+
entire screen or to a single window.
|
481
|
+
</p>
|
482
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
483
|
+
<colgroup>
|
484
|
+
<col align="left" valign="top">
|
485
|
+
<col>
|
486
|
+
</colgroup>
|
487
|
+
<tbody>
|
488
|
+
<tr>
|
489
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
490
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>.</td>
|
491
|
+
</tr>
|
492
|
+
<tr>
|
493
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
494
|
+
<td>the input mode.</td>
|
495
|
+
</tr>
|
496
|
+
<tr>
|
497
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
498
|
+
<td>
|
499
|
+
<code class="literal">TRUE</code> if the mode was successfully changed.</td>
|
500
|
+
</tr>
|
501
|
+
</tbody>
|
502
|
+
</table></div>
|
503
|
+
</div>
|
504
|
+
<hr>
|
505
|
+
<div class="refsect2">
|
506
|
+
<a name="gdk-device-get-mode"></a><h3>gdk_device_get_mode ()</h3>
|
507
|
+
<pre class="programlisting"><a class="link" href="GdkDevice.html#GdkInputMode" title="enum GdkInputMode"><span class="returnvalue">GdkInputMode</span></a> gdk_device_get_mode (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
508
|
+
<p>
|
509
|
+
Determines the mode of the device.
|
510
|
+
</p>
|
511
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
512
|
+
<colgroup>
|
513
|
+
<col align="left" valign="top">
|
514
|
+
<col>
|
515
|
+
</colgroup>
|
516
|
+
<tbody>
|
517
|
+
<tr>
|
518
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
519
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
520
|
+
</td>
|
521
|
+
</tr>
|
522
|
+
<tr>
|
523
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
524
|
+
<td>a <a class="link" href="GdkDevice.html#GdkInputSource" title="enum GdkInputSource"><span class="type">GdkInputSource</span></a>
|
525
|
+
</td>
|
526
|
+
</tr>
|
527
|
+
</tbody>
|
528
|
+
</table></div>
|
529
|
+
<p class="since">Since 2.20</p>
|
530
|
+
</div>
|
531
|
+
<hr>
|
532
|
+
<div class="refsect2">
|
533
|
+
<a name="gdk-device-set-key"></a><h3>gdk_device_set_key ()</h3>
|
534
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_device_set_key (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
535
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
536
|
+
<em class="parameter"><code><span class="type">guint</span> keyval</code></em>,
|
537
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a> modifiers</code></em>);</pre>
|
538
|
+
<p>
|
539
|
+
Specifies the X key event to generate when a macro button of a device
|
540
|
+
is pressed.
|
541
|
+
</p>
|
542
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
543
|
+
<colgroup>
|
544
|
+
<col align="left" valign="top">
|
545
|
+
<col>
|
546
|
+
</colgroup>
|
547
|
+
<tbody>
|
548
|
+
<tr>
|
549
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
550
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
551
|
+
</td>
|
552
|
+
</tr>
|
553
|
+
<tr>
|
554
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
555
|
+
<td>the index of the macro button to set</td>
|
556
|
+
</tr>
|
557
|
+
<tr>
|
558
|
+
<td><p><span class="term"><em class="parameter"><code>keyval</code></em> :</span></p></td>
|
559
|
+
<td>the keyval to generate</td>
|
560
|
+
</tr>
|
561
|
+
<tr>
|
562
|
+
<td><p><span class="term"><em class="parameter"><code>modifiers</code></em> :</span></p></td>
|
563
|
+
<td>the modifiers to set</td>
|
564
|
+
</tr>
|
565
|
+
</tbody>
|
566
|
+
</table></div>
|
567
|
+
</div>
|
568
|
+
<hr>
|
569
|
+
<div class="refsect2">
|
570
|
+
<a name="gdk-device-get-key"></a><h3>gdk_device_get_key ()</h3>
|
571
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gdk_device_get_key (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
572
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
573
|
+
<em class="parameter"><code><span class="type">guint</span> *keyval</code></em>,
|
574
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a> *modifiers</code></em>);</pre>
|
575
|
+
<p>
|
576
|
+
If <em class="parameter"><code>index_</code></em> has a valid keyval, this function will return <code class="literal">TRUE</code>
|
577
|
+
and fill in <em class="parameter"><code>keyval</code></em> and <em class="parameter"><code>modifiers</code></em> with the keyval settings.
|
578
|
+
</p>
|
579
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
580
|
+
<colgroup>
|
581
|
+
<col align="left" valign="top">
|
582
|
+
<col>
|
583
|
+
</colgroup>
|
584
|
+
<tbody>
|
585
|
+
<tr>
|
586
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
587
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>.</td>
|
588
|
+
</tr>
|
589
|
+
<tr>
|
590
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
591
|
+
<td>the index of the macro button to get.</td>
|
592
|
+
</tr>
|
593
|
+
<tr>
|
594
|
+
<td><p><span class="term"><em class="parameter"><code>keyval</code></em> :</span></p></td>
|
595
|
+
<td>return value for the keyval. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
596
|
+
</td>
|
597
|
+
</tr>
|
598
|
+
<tr>
|
599
|
+
<td><p><span class="term"><em class="parameter"><code>modifiers</code></em> :</span></p></td>
|
600
|
+
<td>return value for modifiers. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
601
|
+
</td>
|
602
|
+
</tr>
|
603
|
+
<tr>
|
604
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
605
|
+
<td>
|
606
|
+
<code class="literal">TRUE</code> if keyval is set for <em class="parameter"><code>index</code></em>.</td>
|
607
|
+
</tr>
|
608
|
+
</tbody>
|
609
|
+
</table></div>
|
610
|
+
<p class="since">Since 2.20</p>
|
611
|
+
</div>
|
612
|
+
<hr>
|
613
|
+
<div class="refsect2">
|
614
|
+
<a name="gdk-device-set-axis-use"></a><h3>gdk_device_set_axis_use ()</h3>
|
615
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_device_set_axis_use (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
616
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>,
|
617
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkAxisUse" title="enum GdkAxisUse"><span class="type">GdkAxisUse</span></a> use</code></em>);</pre>
|
618
|
+
<p>
|
619
|
+
Specifies how an axis of a device is used.
|
620
|
+
</p>
|
621
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
622
|
+
<colgroup>
|
623
|
+
<col align="left" valign="top">
|
624
|
+
<col>
|
625
|
+
</colgroup>
|
626
|
+
<tbody>
|
627
|
+
<tr>
|
628
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
629
|
+
<td>a pointer <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
630
|
+
</td>
|
631
|
+
</tr>
|
632
|
+
<tr>
|
633
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
634
|
+
<td>the index of the axis</td>
|
635
|
+
</tr>
|
636
|
+
<tr>
|
637
|
+
<td><p><span class="term"><em class="parameter"><code>use</code></em> :</span></p></td>
|
638
|
+
<td>specifies how the axis is used</td>
|
639
|
+
</tr>
|
640
|
+
</tbody>
|
641
|
+
</table></div>
|
642
|
+
</div>
|
643
|
+
<hr>
|
644
|
+
<div class="refsect2">
|
645
|
+
<a name="gdk-device-get-axis-use"></a><h3>gdk_device_get_axis_use ()</h3>
|
646
|
+
<pre class="programlisting"><a class="link" href="GdkDevice.html#GdkAxisUse" title="enum GdkAxisUse"><span class="returnvalue">GdkAxisUse</span></a> gdk_device_get_axis_use (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
647
|
+
<em class="parameter"><code><span class="type">guint</span> index_</code></em>);</pre>
|
648
|
+
<p>
|
649
|
+
Returns the axis use for <em class="parameter"><code>index_</code></em>.
|
650
|
+
</p>
|
651
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
652
|
+
<colgroup>
|
653
|
+
<col align="left" valign="top">
|
654
|
+
<col>
|
655
|
+
</colgroup>
|
656
|
+
<tbody>
|
657
|
+
<tr>
|
658
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
659
|
+
<td>a pointer <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>.</td>
|
660
|
+
</tr>
|
661
|
+
<tr>
|
662
|
+
<td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
|
663
|
+
<td>the index of the axis.</td>
|
664
|
+
</tr>
|
665
|
+
<tr>
|
666
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
667
|
+
<td>a <a class="link" href="GdkDevice.html#GdkAxisUse" title="enum GdkAxisUse"><span class="type">GdkAxisUse</span></a> specifying how the axis is used.</td>
|
668
|
+
</tr>
|
669
|
+
</tbody>
|
670
|
+
</table></div>
|
671
|
+
<p class="since">Since 2.20</p>
|
672
|
+
</div>
|
673
|
+
<hr>
|
674
|
+
<div class="refsect2">
|
675
|
+
<a name="gdk-device-get-associated-device"></a><h3>gdk_device_get_associated_device ()</h3>
|
676
|
+
<pre class="programlisting"><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="returnvalue">GdkDevice</span></a> * gdk_device_get_associated_device (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
677
|
+
<p>
|
678
|
+
Returns the associated device to <em class="parameter"><code>device</code></em>, if <em class="parameter"><code>device</code></em> is of type
|
679
|
+
<a class="link" href="GdkDevice.html#GDK-DEVICE-TYPE-MASTER:CAPS"><code class="literal">GDK_DEVICE_TYPE_MASTER</code></a>, it will return the paired pointer or
|
680
|
+
keyboard.
|
681
|
+
</p>
|
682
|
+
<p>
|
683
|
+
If <em class="parameter"><code>device</code></em> is of type <a class="link" href="GdkDevice.html#GDK-DEVICE-TYPE-SLAVE:CAPS"><code class="literal">GDK_DEVICE_TYPE_SLAVE</code></a>, it will return
|
684
|
+
the master device to which <em class="parameter"><code>device</code></em> is attached to.
|
685
|
+
</p>
|
686
|
+
<p>
|
687
|
+
If <em class="parameter"><code>device</code></em> is of type <a class="link" href="GdkDevice.html#GDK-DEVICE-TYPE-FLOATING:CAPS"><code class="literal">GDK_DEVICE_TYPE_FLOATING</code></a>, <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> will be
|
688
|
+
returned, as there is no associated device.
|
689
|
+
</p>
|
690
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
691
|
+
<colgroup>
|
692
|
+
<col align="left" valign="top">
|
693
|
+
<col>
|
694
|
+
</colgroup>
|
695
|
+
<tbody>
|
696
|
+
<tr>
|
697
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
698
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
699
|
+
</td>
|
700
|
+
</tr>
|
701
|
+
<tr>
|
702
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
703
|
+
<td>The associated device, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
704
|
+
</td>
|
705
|
+
</tr>
|
706
|
+
</tbody>
|
707
|
+
</table></div>
|
708
|
+
<p class="since">Since 3.0</p>
|
709
|
+
</div>
|
710
|
+
<hr>
|
711
|
+
<div class="refsect2">
|
712
|
+
<a name="gdk-device-list-slave-devices"></a><h3>gdk_device_list_slave_devices ()</h3>
|
713
|
+
<pre class="programlisting"><span class="returnvalue">GList</span> * gdk_device_list_slave_devices (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
714
|
+
<p>
|
715
|
+
If the device if of type <a class="link" href="GdkDevice.html#GDK-DEVICE-TYPE-MASTER:CAPS"><code class="literal">GDK_DEVICE_TYPE_MASTER</code></a>, it will return
|
716
|
+
the list of slave devices attached to it, otherwise it will return
|
717
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
|
718
|
+
</p>
|
719
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
720
|
+
<colgroup>
|
721
|
+
<col align="left" valign="top">
|
722
|
+
<col>
|
723
|
+
</colgroup>
|
724
|
+
<tbody>
|
725
|
+
<tr>
|
726
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
727
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
728
|
+
</td>
|
729
|
+
</tr>
|
730
|
+
<tr>
|
731
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
732
|
+
<td>the list of
|
733
|
+
slave devices, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. The list must be freed with
|
734
|
+
<code class="function">g_list_free()</code>, the contents of the list are owned by GTK+
|
735
|
+
and should not be freed. <span class="annotation">[<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GdkDevice]</span>
|
736
|
+
</td>
|
737
|
+
</tr>
|
738
|
+
</tbody>
|
739
|
+
</table></div>
|
740
|
+
</div>
|
741
|
+
<hr>
|
742
|
+
<div class="refsect2">
|
743
|
+
<a name="gdk-device-get-device-type"></a><h3>gdk_device_get_device_type ()</h3>
|
744
|
+
<pre class="programlisting"><a class="link" href="GdkDevice.html#GdkDeviceType" title="enum GdkDeviceType"><span class="returnvalue">GdkDeviceType</span></a> gdk_device_get_device_type (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
745
|
+
<p>
|
746
|
+
Returns the device type for <em class="parameter"><code>device</code></em>.
|
747
|
+
</p>
|
748
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
749
|
+
<colgroup>
|
750
|
+
<col align="left" valign="top">
|
751
|
+
<col>
|
752
|
+
</colgroup>
|
753
|
+
<tbody>
|
754
|
+
<tr>
|
755
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
756
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
757
|
+
</td>
|
758
|
+
</tr>
|
759
|
+
<tr>
|
760
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
761
|
+
<td>the <a class="link" href="GdkDevice.html#GdkDeviceType" title="enum GdkDeviceType"><span class="type">GdkDeviceType</span></a> for <em class="parameter"><code>device</code></em>.</td>
|
762
|
+
</tr>
|
763
|
+
</tbody>
|
764
|
+
</table></div>
|
765
|
+
<p class="since">Since 3.0</p>
|
766
|
+
</div>
|
767
|
+
<hr>
|
768
|
+
<div class="refsect2">
|
769
|
+
<a name="gdk-device-get-display"></a><h3>gdk_device_get_display ()</h3>
|
770
|
+
<pre class="programlisting"><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> * gdk_device_get_display (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
771
|
+
<p>
|
772
|
+
Returns the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> to which <em class="parameter"><code>device</code></em> pertains.
|
773
|
+
</p>
|
774
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
775
|
+
<colgroup>
|
776
|
+
<col align="left" valign="top">
|
777
|
+
<col>
|
778
|
+
</colgroup>
|
779
|
+
<tbody>
|
780
|
+
<tr>
|
781
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
782
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
783
|
+
</td>
|
784
|
+
</tr>
|
785
|
+
<tr>
|
786
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
787
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. This memory is owned
|
788
|
+
by GTK+, and must not be freed or unreffed. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
789
|
+
</td>
|
790
|
+
</tr>
|
791
|
+
</tbody>
|
792
|
+
</table></div>
|
793
|
+
<p class="since">Since 3.0</p>
|
794
|
+
</div>
|
795
|
+
<hr>
|
796
|
+
<div class="refsect2">
|
797
|
+
<a name="gdk-device-get-has-cursor"></a><h3>gdk_device_get_has_cursor ()</h3>
|
798
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gdk_device_get_has_cursor (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
799
|
+
<p>
|
800
|
+
Determines whether the pointer follows device motion.
|
801
|
+
</p>
|
802
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
803
|
+
<colgroup>
|
804
|
+
<col align="left" valign="top">
|
805
|
+
<col>
|
806
|
+
</colgroup>
|
807
|
+
<tbody>
|
808
|
+
<tr>
|
809
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
810
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
811
|
+
</td>
|
812
|
+
</tr>
|
813
|
+
<tr>
|
814
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
815
|
+
<td>
|
816
|
+
<code class="literal">TRUE</code> if the pointer follows device motion</td>
|
817
|
+
</tr>
|
818
|
+
</tbody>
|
819
|
+
</table></div>
|
820
|
+
<p class="since">Since 2.20</p>
|
821
|
+
</div>
|
822
|
+
<hr>
|
823
|
+
<div class="refsect2">
|
824
|
+
<a name="gdk-device-get-n-axes"></a><h3>gdk_device_get_n_axes ()</h3>
|
825
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gdk_device_get_n_axes (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
826
|
+
<p>
|
827
|
+
Returns the number of axes the device currently has.
|
828
|
+
</p>
|
829
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
830
|
+
<colgroup>
|
831
|
+
<col align="left" valign="top">
|
832
|
+
<col>
|
833
|
+
</colgroup>
|
834
|
+
<tbody>
|
835
|
+
<tr>
|
836
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
837
|
+
<td>a pointer <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
838
|
+
</td>
|
839
|
+
</tr>
|
840
|
+
<tr>
|
841
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
842
|
+
<td>the number of axes.</td>
|
843
|
+
</tr>
|
844
|
+
</tbody>
|
845
|
+
</table></div>
|
846
|
+
<p class="since">Since 3.0</p>
|
847
|
+
</div>
|
848
|
+
<hr>
|
849
|
+
<div class="refsect2">
|
850
|
+
<a name="gdk-device-get-n-keys"></a><h3>gdk_device_get_n_keys ()</h3>
|
851
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gdk_device_get_n_keys (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
852
|
+
<p>
|
853
|
+
Returns the number of keys the device currently has.
|
854
|
+
</p>
|
855
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
856
|
+
<colgroup>
|
857
|
+
<col align="left" valign="top">
|
858
|
+
<col>
|
859
|
+
</colgroup>
|
860
|
+
<tbody>
|
861
|
+
<tr>
|
862
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
863
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
864
|
+
</td>
|
865
|
+
</tr>
|
866
|
+
<tr>
|
867
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
868
|
+
<td>the number of keys.</td>
|
869
|
+
</tr>
|
870
|
+
</tbody>
|
871
|
+
</table></div>
|
872
|
+
<p class="since">Since 2.24</p>
|
873
|
+
</div>
|
874
|
+
<hr>
|
875
|
+
<div class="refsect2">
|
876
|
+
<a name="gdk-device-warp"></a><h3>gdk_device_warp ()</h3>
|
877
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_device_warp (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
878
|
+
<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
|
879
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
880
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
881
|
+
<p>
|
882
|
+
Warps <em class="parameter"><code>device</code></em> in <em class="parameter"><code>display</code></em> to the point <em class="parameter"><code>x</code></em>,<em class="parameter"><code>y</code></em> on
|
883
|
+
the screen <em class="parameter"><code>screen</code></em>, unless the device is confined
|
884
|
+
to a window by a grab, in which case it will be moved
|
885
|
+
as far as allowed by the grab. Warping the pointer
|
886
|
+
creates events as if the user had moved the mouse
|
887
|
+
instantaneously to the destination.
|
888
|
+
</p>
|
889
|
+
<p>
|
890
|
+
Note that the pointer should normally be under the
|
891
|
+
control of the user. This function was added to cover
|
892
|
+
some rare use cases like keyboard navigation support
|
893
|
+
for the color picker in the <a href="http://library.gnome.org/devel/gtk3/GtkColorSelectionDialog.html"><span class="type">GtkColorSelectionDialog</span></a>.
|
894
|
+
</p>
|
895
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
896
|
+
<colgroup>
|
897
|
+
<col align="left" valign="top">
|
898
|
+
<col>
|
899
|
+
</colgroup>
|
900
|
+
<tbody>
|
901
|
+
<tr>
|
902
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
903
|
+
<td>the device to warp.</td>
|
904
|
+
</tr>
|
905
|
+
<tr>
|
906
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
907
|
+
<td>the screen to warp <em class="parameter"><code>device</code></em> to.</td>
|
908
|
+
</tr>
|
909
|
+
<tr>
|
910
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
911
|
+
<td>the X coordinate of the destination.</td>
|
912
|
+
</tr>
|
913
|
+
<tr>
|
914
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
915
|
+
<td>the Y coordinate of the destination.</td>
|
916
|
+
</tr>
|
917
|
+
</tbody>
|
918
|
+
</table></div>
|
919
|
+
<p class="since">Since 3.0</p>
|
920
|
+
</div>
|
921
|
+
<hr>
|
922
|
+
<div class="refsect2">
|
923
|
+
<a name="gdk-device-grab"></a><h3>gdk_device_grab ()</h3>
|
924
|
+
<pre class="programlisting"><a class="link" href="gdk3-General.html#GdkGrabStatus" title="enum GdkGrabStatus"><span class="returnvalue">GdkGrabStatus</span></a> gdk_device_grab (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
925
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
926
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkGrabOwnership" title="enum GdkGrabOwnership"><span class="type">GdkGrabOwnership</span></a> grab_ownership</code></em>,
|
927
|
+
<em class="parameter"><code><span class="type">gboolean</span> owner_events</code></em>,
|
928
|
+
<em class="parameter"><code><a class="link" href="gdk3-Events.html#GdkEventMask" title="enum GdkEventMask"><span class="type">GdkEventMask</span></a> event_mask</code></em>,
|
929
|
+
<em class="parameter"><code><a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>,
|
930
|
+
<em class="parameter"><code><span class="type">guint32</span> time_</code></em>);</pre>
|
931
|
+
<p>
|
932
|
+
Grabs the device so that all events coming from this device are passed to
|
933
|
+
this application until the device is ungrabbed with <a class="link" href="GdkDevice.html#gdk-device-ungrab" title="gdk_device_ungrab ()"><code class="function">gdk_device_ungrab()</code></a>,
|
934
|
+
or the window becomes unviewable. This overrides any previous grab on the device
|
935
|
+
by this client.
|
936
|
+
</p>
|
937
|
+
<p>
|
938
|
+
Device grabs are used for operations which need complete control over the
|
939
|
+
given device events (either pointer or keyboard). For example in GTK+ this
|
940
|
+
is used for Drag and Drop operations, popup menus and such.
|
941
|
+
</p>
|
942
|
+
<p>
|
943
|
+
Note that if the event mask of an X window has selected both button press
|
944
|
+
and button release events, then a button press event will cause an automatic
|
945
|
+
pointer grab until the button is released. X does this automatically since
|
946
|
+
most applications expect to receive button press and release events in pairs.
|
947
|
+
It is equivalent to a pointer grab on the window with <em class="parameter"><code>owner_events</code></em> set to
|
948
|
+
<code class="literal">TRUE</code>.
|
949
|
+
</p>
|
950
|
+
<p>
|
951
|
+
If you set up anything at the time you take the grab that needs to be
|
952
|
+
cleaned up when the grab ends, you should handle the <a class="link" href="gdk3-Event-Structures.html#GdkEventGrabBroken" title="struct GdkEventGrabBroken"><span class="type">GdkEventGrabBroken</span></a>
|
953
|
+
events that are emitted when the grab ends unvoluntarily.
|
954
|
+
</p>
|
955
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
956
|
+
<colgroup>
|
957
|
+
<col align="left" valign="top">
|
958
|
+
<col>
|
959
|
+
</colgroup>
|
960
|
+
<tbody>
|
961
|
+
<tr>
|
962
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
963
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>. To get the device you can use <code class="function">gtk_get_current_event_device()</code>
|
964
|
+
or <a class="link" href="gdk3-Events.html#gdk-event-get-device" title="gdk_event_get_device ()"><code class="function">gdk_event_get_device()</code></a> if the grab is in reaction to an event. Also, you can use
|
965
|
+
<a class="link" href="GdkDeviceManager.html#gdk-device-manager-get-client-pointer" title="gdk_device_manager_get_client_pointer ()"><code class="function">gdk_device_manager_get_client_pointer()</code></a> but only in code that isn't triggered by a
|
966
|
+
<a class="link" href="gdk3-Event-Structures.html#GdkEvent" title="union GdkEvent"><span class="type">GdkEvent</span></a> and there aren't other means to get a meaningful <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> to operate on.</td>
|
967
|
+
</tr>
|
968
|
+
<tr>
|
969
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
970
|
+
<td>the <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> which will own the grab (the grab window)</td>
|
971
|
+
</tr>
|
972
|
+
<tr>
|
973
|
+
<td><p><span class="term"><em class="parameter"><code>grab_ownership</code></em> :</span></p></td>
|
974
|
+
<td>specifies the grab ownership.</td>
|
975
|
+
</tr>
|
976
|
+
<tr>
|
977
|
+
<td><p><span class="term"><em class="parameter"><code>owner_events</code></em> :</span></p></td>
|
978
|
+
<td>if <code class="literal">FALSE</code> then all device events are reported with respect to
|
979
|
+
<em class="parameter"><code>window</code></em> and are only reported if selected by <em class="parameter"><code>event_mask</code></em>. If
|
980
|
+
<code class="literal">TRUE</code> then pointer events for this application are reported
|
981
|
+
as normal, but pointer events outside this application are
|
982
|
+
reported with respect to <em class="parameter"><code>window</code></em> and only if selected by
|
983
|
+
<em class="parameter"><code>event_mask</code></em>. In either mode, unreported events are discarded.</td>
|
984
|
+
</tr>
|
985
|
+
<tr>
|
986
|
+
<td><p><span class="term"><em class="parameter"><code>event_mask</code></em> :</span></p></td>
|
987
|
+
<td>specifies the event mask, which is used in accordance with
|
988
|
+
<em class="parameter"><code>owner_events</code></em>.</td>
|
989
|
+
</tr>
|
990
|
+
<tr>
|
991
|
+
<td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
|
992
|
+
<td>the cursor to display while the grab is active if the device is
|
993
|
+
a pointer. If this is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> then the normal cursors are used for
|
994
|
+
<em class="parameter"><code>window</code></em> and its descendants, and the cursor for <em class="parameter"><code>window</code></em> is used
|
995
|
+
elsewhere. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
996
|
+
</td>
|
997
|
+
</tr>
|
998
|
+
<tr>
|
999
|
+
<td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
|
1000
|
+
<td>the timestamp of the event which led to this pointer grab. This
|
1001
|
+
usually comes from the <a class="link" href="gdk3-Event-Structures.html#GdkEvent" title="union GdkEvent"><span class="type">GdkEvent</span></a> struct, though <a class="link" href="gdk3-Events.html#GDK-CURRENT-TIME:CAPS" title="GDK_CURRENT_TIME"><code class="literal">GDK_CURRENT_TIME</code></a>
|
1002
|
+
can be used if the time isn't known.</td>
|
1003
|
+
</tr>
|
1004
|
+
<tr>
|
1005
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1006
|
+
<td>
|
1007
|
+
<a class="link" href="gdk3-General.html#GDK-GRAB-SUCCESS:CAPS"><code class="literal">GDK_GRAB_SUCCESS</code></a> if the grab was successful.</td>
|
1008
|
+
</tr>
|
1009
|
+
</tbody>
|
1010
|
+
</table></div>
|
1011
|
+
<p class="since">Since 3.0</p>
|
1012
|
+
</div>
|
1013
|
+
<hr>
|
1014
|
+
<div class="refsect2">
|
1015
|
+
<a name="gdk-device-ungrab"></a><h3>gdk_device_ungrab ()</h3>
|
1016
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_device_ungrab (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
1017
|
+
<em class="parameter"><code><span class="type">guint32</span> time_</code></em>);</pre>
|
1018
|
+
<p>
|
1019
|
+
Release any grab on <em class="parameter"><code>device</code></em>.
|
1020
|
+
</p>
|
1021
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1022
|
+
<colgroup>
|
1023
|
+
<col align="left" valign="top">
|
1024
|
+
<col>
|
1025
|
+
</colgroup>
|
1026
|
+
<tbody>
|
1027
|
+
<tr>
|
1028
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
1029
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
1030
|
+
</td>
|
1031
|
+
</tr>
|
1032
|
+
<tr>
|
1033
|
+
<td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
|
1034
|
+
<td>a timestap (e.g. <a class="link" href="gdk3-Events.html#GDK-CURRENT-TIME:CAPS" title="GDK_CURRENT_TIME"><code class="literal">GDK_CURRENT_TIME</code></a>).</td>
|
1035
|
+
</tr>
|
1036
|
+
</tbody>
|
1037
|
+
</table></div>
|
1038
|
+
<p class="since">Since 3.0</p>
|
1039
|
+
</div>
|
1040
|
+
<hr>
|
1041
|
+
<div class="refsect2">
|
1042
|
+
<a name="gdk-device-get-state"></a><h3>gdk_device_get_state ()</h3>
|
1043
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_device_get_state (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
1044
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
1045
|
+
<em class="parameter"><code><span class="type">gdouble</span> *axes</code></em>,
|
1046
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a> *mask</code></em>);</pre>
|
1047
|
+
<p>
|
1048
|
+
Gets the current state of a pointer device relative to <em class="parameter"><code>window</code></em>. As a slave
|
1049
|
+
device coordinates are those of its master pointer, This
|
1050
|
+
function may not be called on devices of type <a class="link" href="GdkDevice.html#GDK-DEVICE-TYPE-SLAVE:CAPS"><code class="literal">GDK_DEVICE_TYPE_SLAVE</code></a>,
|
1051
|
+
unless there is an ongoing grab on them, see <a class="link" href="GdkDevice.html#gdk-device-grab" title="gdk_device_grab ()"><code class="function">gdk_device_grab()</code></a>.
|
1052
|
+
</p>
|
1053
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1054
|
+
<colgroup>
|
1055
|
+
<col align="left" valign="top">
|
1056
|
+
<col>
|
1057
|
+
</colgroup>
|
1058
|
+
<tbody>
|
1059
|
+
<tr>
|
1060
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
1061
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>.</td>
|
1062
|
+
</tr>
|
1063
|
+
<tr>
|
1064
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1065
|
+
<td>a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.</td>
|
1066
|
+
</tr>
|
1067
|
+
<tr>
|
1068
|
+
<td><p><span class="term"><em class="parameter"><code>axes</code></em> :</span></p></td>
|
1069
|
+
<td>an array of doubles to store the values of the axes of <em class="parameter"><code>device</code></em> in,
|
1070
|
+
or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.</td>
|
1071
|
+
</tr>
|
1072
|
+
<tr>
|
1073
|
+
<td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
|
1074
|
+
<td>location to store the modifiers, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.</td>
|
1075
|
+
</tr>
|
1076
|
+
</tbody>
|
1077
|
+
</table></div>
|
1078
|
+
</div>
|
1079
|
+
<hr>
|
1080
|
+
<div class="refsect2">
|
1081
|
+
<a name="gdk-device-get-position"></a><h3>gdk_device_get_position ()</h3>
|
1082
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_device_get_position (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
1083
|
+
<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> **screen</code></em>,
|
1084
|
+
<em class="parameter"><code><span class="type">gint</span> *x</code></em>,
|
1085
|
+
<em class="parameter"><code><span class="type">gint</span> *y</code></em>);</pre>
|
1086
|
+
<p>
|
1087
|
+
Gets the current location of <em class="parameter"><code>device</code></em>. As a slave device
|
1088
|
+
coordinates are those of its master pointer, This function
|
1089
|
+
may not be called on devices of type <a class="link" href="GdkDevice.html#GDK-DEVICE-TYPE-SLAVE:CAPS"><code class="literal">GDK_DEVICE_TYPE_SLAVE</code></a>,
|
1090
|
+
unless there is an ongoing grab on them, see <a class="link" href="GdkDevice.html#gdk-device-grab" title="gdk_device_grab ()"><code class="function">gdk_device_grab()</code></a>.
|
1091
|
+
</p>
|
1092
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1093
|
+
<colgroup>
|
1094
|
+
<col align="left" valign="top">
|
1095
|
+
<col>
|
1096
|
+
</colgroup>
|
1097
|
+
<tbody>
|
1098
|
+
<tr>
|
1099
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
1100
|
+
<td>pointer device to query status about.</td>
|
1101
|
+
</tr>
|
1102
|
+
<tr>
|
1103
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
1104
|
+
<td>location to store the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>
|
1105
|
+
the <em class="parameter"><code>device</code></em> is on, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1106
|
+
</td>
|
1107
|
+
</tr>
|
1108
|
+
<tr>
|
1109
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1110
|
+
<td>location to store root window X coordinate of <em class="parameter"><code>device</code></em>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1111
|
+
</td>
|
1112
|
+
</tr>
|
1113
|
+
<tr>
|
1114
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1115
|
+
<td>location to store root window Y coordinate of <em class="parameter"><code>device</code></em>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1116
|
+
</td>
|
1117
|
+
</tr>
|
1118
|
+
</tbody>
|
1119
|
+
</table></div>
|
1120
|
+
<p class="since">Since 3.0</p>
|
1121
|
+
</div>
|
1122
|
+
<hr>
|
1123
|
+
<div class="refsect2">
|
1124
|
+
<a name="gdk-device-get-window-at-position"></a><h3>gdk_device_get_window_at_position ()</h3>
|
1125
|
+
<pre class="programlisting"><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * gdk_device_get_window_at_position (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
1126
|
+
<em class="parameter"><code><span class="type">gint</span> *win_x</code></em>,
|
1127
|
+
<em class="parameter"><code><span class="type">gint</span> *win_y</code></em>);</pre>
|
1128
|
+
<p>
|
1129
|
+
Obtains the window underneath <em class="parameter"><code>device</code></em>, returning the location of the device in <em class="parameter"><code>win_x</code></em> and <em class="parameter"><code>win_y</code></em>. Returns
|
1130
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if the window tree under <em class="parameter"><code>device</code></em> is not known to GDK (for example, belongs to another application).
|
1131
|
+
</p>
|
1132
|
+
<p>
|
1133
|
+
As a slave device coordinates are those of its master pointer, This
|
1134
|
+
function may not be called on devices of type <a class="link" href="GdkDevice.html#GDK-DEVICE-TYPE-SLAVE:CAPS"><code class="literal">GDK_DEVICE_TYPE_SLAVE</code></a>,
|
1135
|
+
unless there is an ongoing grab on them, see <a class="link" href="GdkDevice.html#gdk-device-grab" title="gdk_device_grab ()"><code class="function">gdk_device_grab()</code></a>.
|
1136
|
+
</p>
|
1137
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1138
|
+
<colgroup>
|
1139
|
+
<col align="left" valign="top">
|
1140
|
+
<col>
|
1141
|
+
</colgroup>
|
1142
|
+
<tbody>
|
1143
|
+
<tr>
|
1144
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
1145
|
+
<td>pointer <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> to query info to.</td>
|
1146
|
+
</tr>
|
1147
|
+
<tr>
|
1148
|
+
<td><p><span class="term"><em class="parameter"><code>win_x</code></em> :</span></p></td>
|
1149
|
+
<td>return location for the X coordinate of the device location,
|
1150
|
+
relative to the window origin, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1151
|
+
</td>
|
1152
|
+
</tr>
|
1153
|
+
<tr>
|
1154
|
+
<td><p><span class="term"><em class="parameter"><code>win_y</code></em> :</span></p></td>
|
1155
|
+
<td>return location for the Y coordinate of the device location,
|
1156
|
+
relative to the window origin, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1157
|
+
</td>
|
1158
|
+
</tr>
|
1159
|
+
<tr>
|
1160
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1161
|
+
<td>the <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> under the device position, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1162
|
+
</td>
|
1163
|
+
</tr>
|
1164
|
+
</tbody>
|
1165
|
+
</table></div>
|
1166
|
+
<p class="since">Since 3.0</p>
|
1167
|
+
</div>
|
1168
|
+
<hr>
|
1169
|
+
<div class="refsect2">
|
1170
|
+
<a name="gdk-device-get-history"></a><h3>gdk_device_get_history ()</h3>
|
1171
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gdk_device_get_history (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
1172
|
+
<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
1173
|
+
<em class="parameter"><code><span class="type">guint32</span> start</code></em>,
|
1174
|
+
<em class="parameter"><code><span class="type">guint32</span> stop</code></em>,
|
1175
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkTimeCoord" title="struct GdkTimeCoord"><span class="type">GdkTimeCoord</span></a> ***events</code></em>,
|
1176
|
+
<em class="parameter"><code><span class="type">gint</span> *n_events</code></em>);</pre>
|
1177
|
+
<p>
|
1178
|
+
Obtains the motion history for a pointer device; given a starting and
|
1179
|
+
ending timestamp, return all events in the motion history for
|
1180
|
+
the device in the given range of time. Some windowing systems
|
1181
|
+
do not support motion history, in which case, <code class="literal">FALSE</code> will
|
1182
|
+
be returned. (This is not distinguishable from the case where
|
1183
|
+
motion history is supported and no events were found.)
|
1184
|
+
</p>
|
1185
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1186
|
+
<colgroup>
|
1187
|
+
<col align="left" valign="top">
|
1188
|
+
<col>
|
1189
|
+
</colgroup>
|
1190
|
+
<tbody>
|
1191
|
+
<tr>
|
1192
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
1193
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
1194
|
+
</td>
|
1195
|
+
</tr>
|
1196
|
+
<tr>
|
1197
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1198
|
+
<td>the window with respect to which which the event coordinates will be reported</td>
|
1199
|
+
</tr>
|
1200
|
+
<tr>
|
1201
|
+
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
1202
|
+
<td>starting timestamp for range of events to return</td>
|
1203
|
+
</tr>
|
1204
|
+
<tr>
|
1205
|
+
<td><p><span class="term"><em class="parameter"><code>stop</code></em> :</span></p></td>
|
1206
|
+
<td>ending timestamp for the range of events to return</td>
|
1207
|
+
</tr>
|
1208
|
+
<tr>
|
1209
|
+
<td><p><span class="term"><em class="parameter"><code>events</code></em> :</span></p></td>
|
1210
|
+
<td>location to store a newly-allocated array of <a class="link" href="GdkDevice.html#GdkTimeCoord" title="struct GdkTimeCoord"><span class="type">GdkTimeCoord</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_events][<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>
|
1211
|
+
</td>
|
1212
|
+
</tr>
|
1213
|
+
<tr>
|
1214
|
+
<td><p><span class="term"><em class="parameter"><code>n_events</code></em> :</span></p></td>
|
1215
|
+
<td>location to store the length of <em class="parameter"><code>events</code></em>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
|
1216
|
+
</td>
|
1217
|
+
</tr>
|
1218
|
+
<tr>
|
1219
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1220
|
+
<td>
|
1221
|
+
<code class="literal">TRUE</code> if the windowing system supports motion history and
|
1222
|
+
at least one event was found.</td>
|
1223
|
+
</tr>
|
1224
|
+
</tbody>
|
1225
|
+
</table></div>
|
1226
|
+
</div>
|
1227
|
+
<hr>
|
1228
|
+
<div class="refsect2">
|
1229
|
+
<a name="gdk-device-free-history"></a><h3>gdk_device_free_history ()</h3>
|
1230
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_device_free_history (<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkTimeCoord" title="struct GdkTimeCoord"><span class="type">GdkTimeCoord</span></a> **events</code></em>,
|
1231
|
+
<em class="parameter"><code><span class="type">gint</span> n_events</code></em>);</pre>
|
1232
|
+
<p>
|
1233
|
+
Frees an array of <a class="link" href="GdkDevice.html#GdkTimeCoord" title="struct GdkTimeCoord"><span class="type">GdkTimeCoord</span></a> that was returned by <a class="link" href="GdkDevice.html#gdk-device-get-history" title="gdk_device_get_history ()"><code class="function">gdk_device_get_history()</code></a>.
|
1234
|
+
</p>
|
1235
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1236
|
+
<colgroup>
|
1237
|
+
<col align="left" valign="top">
|
1238
|
+
<col>
|
1239
|
+
</colgroup>
|
1240
|
+
<tbody>
|
1241
|
+
<tr>
|
1242
|
+
<td><p><span class="term"><em class="parameter"><code>events</code></em> :</span></p></td>
|
1243
|
+
<td>an array of <a class="link" href="GdkDevice.html#GdkTimeCoord" title="struct GdkTimeCoord"><span class="type">GdkTimeCoord</span></a>.</td>
|
1244
|
+
</tr>
|
1245
|
+
<tr>
|
1246
|
+
<td><p><span class="term"><em class="parameter"><code>n_events</code></em> :</span></p></td>
|
1247
|
+
<td>the length of the array.</td>
|
1248
|
+
</tr>
|
1249
|
+
</tbody>
|
1250
|
+
</table></div>
|
1251
|
+
</div>
|
1252
|
+
<hr>
|
1253
|
+
<div class="refsect2">
|
1254
|
+
<a name="GdkTimeCoord"></a><h3>struct GdkTimeCoord</h3>
|
1255
|
+
<pre class="programlisting">struct GdkTimeCoord {
|
1256
|
+
guint32 time;
|
1257
|
+
gdouble axes[GDK_MAX_TIMECOORD_AXES];
|
1258
|
+
};
|
1259
|
+
</pre>
|
1260
|
+
<p>
|
1261
|
+
The <a class="link" href="GdkDevice.html#GdkTimeCoord" title="struct GdkTimeCoord"><span class="type">GdkTimeCoord</span></a> structure stores a single event in a motion history.
|
1262
|
+
</p>
|
1263
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1264
|
+
<colgroup>
|
1265
|
+
<col align="left" valign="top">
|
1266
|
+
<col>
|
1267
|
+
</colgroup>
|
1268
|
+
<tbody>
|
1269
|
+
<tr>
|
1270
|
+
<td><p><span class="term"><span class="type">guint32</span> <em class="structfield"><code><a name="GdkTimeCoord.time"></a>time</code></em>;</span></p></td>
|
1271
|
+
<td>The timestamp for this event.</td>
|
1272
|
+
</tr>
|
1273
|
+
<tr>
|
1274
|
+
<td><p><span class="term"><span class="type">gdouble</span> <em class="structfield"><code><a name="GdkTimeCoord.axes"></a>axes</code></em>[GDK_MAX_TIMECOORD_AXES];</span></p></td>
|
1275
|
+
<td>the values of the device's axes.</td>
|
1276
|
+
</tr>
|
1277
|
+
</tbody>
|
1278
|
+
</table></div>
|
1279
|
+
</div>
|
1280
|
+
<hr>
|
1281
|
+
<div class="refsect2">
|
1282
|
+
<a name="gdk-device-get-axis"></a><h3>gdk_device_get_axis ()</h3>
|
1283
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gdk_device_get_axis (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
1284
|
+
<em class="parameter"><code><span class="type">gdouble</span> *axes</code></em>,
|
1285
|
+
<em class="parameter"><code><a class="link" href="GdkDevice.html#GdkAxisUse" title="enum GdkAxisUse"><span class="type">GdkAxisUse</span></a> use</code></em>,
|
1286
|
+
<em class="parameter"><code><span class="type">gdouble</span> *value</code></em>);</pre>
|
1287
|
+
<p>
|
1288
|
+
Interprets an array of double as axis values for a given device,
|
1289
|
+
and locates the value in the array for a given axis use.
|
1290
|
+
</p>
|
1291
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1292
|
+
<colgroup>
|
1293
|
+
<col align="left" valign="top">
|
1294
|
+
<col>
|
1295
|
+
</colgroup>
|
1296
|
+
<tbody>
|
1297
|
+
<tr>
|
1298
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
1299
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
1300
|
+
</td>
|
1301
|
+
</tr>
|
1302
|
+
<tr>
|
1303
|
+
<td><p><span class="term"><em class="parameter"><code>axes</code></em> :</span></p></td>
|
1304
|
+
<td>pointer to an array of axes. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>]</span>
|
1305
|
+
</td>
|
1306
|
+
</tr>
|
1307
|
+
<tr>
|
1308
|
+
<td><p><span class="term"><em class="parameter"><code>use</code></em> :</span></p></td>
|
1309
|
+
<td>the use to look for</td>
|
1310
|
+
</tr>
|
1311
|
+
<tr>
|
1312
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
1313
|
+
<td>location to store the found value. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1314
|
+
</td>
|
1315
|
+
</tr>
|
1316
|
+
<tr>
|
1317
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1318
|
+
<td>
|
1319
|
+
<code class="literal">TRUE</code> if the given axis use was found, otherwise <code class="literal">FALSE</code>
|
1320
|
+
</td>
|
1321
|
+
</tr>
|
1322
|
+
</tbody>
|
1323
|
+
</table></div>
|
1324
|
+
</div>
|
1325
|
+
<hr>
|
1326
|
+
<div class="refsect2">
|
1327
|
+
<a name="gdk-device-list-axes"></a><h3>gdk_device_list_axes ()</h3>
|
1328
|
+
<pre class="programlisting"><span class="returnvalue">GList</span> * gdk_device_list_axes (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
1329
|
+
<p>
|
1330
|
+
Returns a <span class="type">GList</span> of <a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>s, containing the labels for
|
1331
|
+
the axes that <em class="parameter"><code>device</code></em> currently has.
|
1332
|
+
</p>
|
1333
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1334
|
+
<colgroup>
|
1335
|
+
<col align="left" valign="top">
|
1336
|
+
<col>
|
1337
|
+
</colgroup>
|
1338
|
+
<tbody>
|
1339
|
+
<tr>
|
1340
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
1341
|
+
<td>a pointer <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
1342
|
+
</td>
|
1343
|
+
</tr>
|
1344
|
+
<tr>
|
1345
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1346
|
+
<td>A <span class="type">GList</span> of <a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>s, free with <code class="function">g_list_free()</code>. <span class="annotation">[<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GdkAtom]</span>
|
1347
|
+
</td>
|
1348
|
+
</tr>
|
1349
|
+
</tbody>
|
1350
|
+
</table></div>
|
1351
|
+
<p class="since">Since 3.0</p>
|
1352
|
+
</div>
|
1353
|
+
<hr>
|
1354
|
+
<div class="refsect2">
|
1355
|
+
<a name="gdk-device-get-axis-value"></a><h3>gdk_device_get_axis_value ()</h3>
|
1356
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gdk_device_get_axis_value (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>,
|
1357
|
+
<em class="parameter"><code><span class="type">gdouble</span> *axes</code></em>,
|
1358
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> axis_label</code></em>,
|
1359
|
+
<em class="parameter"><code><span class="type">gdouble</span> *value</code></em>);</pre>
|
1360
|
+
<p>
|
1361
|
+
Interprets an array of double as axis values for a given device,
|
1362
|
+
and locates the value in the array for a given axis label, as returned
|
1363
|
+
by <a class="link" href="GdkDevice.html#gdk-device-list-axes" title="gdk_device_list_axes ()"><code class="function">gdk_device_list_axes()</code></a>
|
1364
|
+
</p>
|
1365
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1366
|
+
<colgroup>
|
1367
|
+
<col align="left" valign="top">
|
1368
|
+
<col>
|
1369
|
+
</colgroup>
|
1370
|
+
<tbody>
|
1371
|
+
<tr>
|
1372
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
1373
|
+
<td>a pointer <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>.</td>
|
1374
|
+
</tr>
|
1375
|
+
<tr>
|
1376
|
+
<td><p><span class="term"><em class="parameter"><code>axes</code></em> :</span></p></td>
|
1377
|
+
<td>pointer to an array of axes. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>]</span>
|
1378
|
+
</td>
|
1379
|
+
</tr>
|
1380
|
+
<tr>
|
1381
|
+
<td><p><span class="term"><em class="parameter"><code>axis_label</code></em> :</span></p></td>
|
1382
|
+
<td>
|
1383
|
+
<a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> with the axis label.</td>
|
1384
|
+
</tr>
|
1385
|
+
<tr>
|
1386
|
+
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
|
1387
|
+
<td>location to store the found value.</td>
|
1388
|
+
</tr>
|
1389
|
+
<tr>
|
1390
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1391
|
+
<td>
|
1392
|
+
<code class="literal">TRUE</code> if the given axis use was found, otherwise <code class="literal">FALSE</code>.</td>
|
1393
|
+
</tr>
|
1394
|
+
</tbody>
|
1395
|
+
</table></div>
|
1396
|
+
<p class="since">Since 3.0</p>
|
1397
|
+
</div>
|
1398
|
+
</div>
|
1399
|
+
<div class="refsect1">
|
1400
|
+
<a name="GdkDevice.property-details"></a><h2>Property Details</h2>
|
1401
|
+
<div class="refsect2">
|
1402
|
+
<a name="GdkDevice--associated-device"></a><h3>The <code class="literal">"associated-device"</code> property</h3>
|
1403
|
+
<pre class="programlisting"> "associated-device" <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>* : Read</pre>
|
1404
|
+
<p>
|
1405
|
+
Associated pointer or keyboard with this device, if any. Devices of type <a class="link" href="GdkDevice.html#GDK-DEVICE-TYPE-MASTER:CAPS"><span class="type">GDK_DEVICE_TYPE_MASTER</span></a>
|
1406
|
+
always come in keyboard/pointer pairs. Other device types will have a <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> associated device.
|
1407
|
+
</p>
|
1408
|
+
<p class="since">Since 3.0</p>
|
1409
|
+
</div>
|
1410
|
+
<hr>
|
1411
|
+
<div class="refsect2">
|
1412
|
+
<a name="GdkDevice--device-manager"></a><h3>The <code class="literal">"device-manager"</code> property</h3>
|
1413
|
+
<pre class="programlisting"> "device-manager" <a class="link" href="GdkDeviceManager.html" title="GdkDeviceManager"><span class="type">GdkDeviceManager</span></a>* : Read / Write / Construct Only</pre>
|
1414
|
+
<p>
|
1415
|
+
The <a class="link" href="GdkDeviceManager.html" title="GdkDeviceManager"><span class="type">GdkDeviceManager</span></a> the <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> pertains to.
|
1416
|
+
</p>
|
1417
|
+
<p class="since">Since 3.0</p>
|
1418
|
+
</div>
|
1419
|
+
<hr>
|
1420
|
+
<div class="refsect2">
|
1421
|
+
<a name="GdkDevice--display"></a><h3>The <code class="literal">"display"</code> property</h3>
|
1422
|
+
<pre class="programlisting"> "display" <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>* : Read / Write / Construct Only</pre>
|
1423
|
+
<p>
|
1424
|
+
The <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> the <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> pertains to.
|
1425
|
+
</p>
|
1426
|
+
<p class="since">Since 3.0</p>
|
1427
|
+
</div>
|
1428
|
+
<hr>
|
1429
|
+
<div class="refsect2">
|
1430
|
+
<a name="GdkDevice--has-cursor"></a><h3>The <code class="literal">"has-cursor"</code> property</h3>
|
1431
|
+
<pre class="programlisting"> "has-cursor" <span class="type">gboolean</span> : Read / Write / Construct Only</pre>
|
1432
|
+
<p>
|
1433
|
+
Whether the device is represented by a cursor on the screen. Devices of type
|
1434
|
+
<a class="link" href="GdkDevice.html#GDK-DEVICE-TYPE-MASTER:CAPS"><code class="literal">GDK_DEVICE_TYPE_MASTER</code></a> will have <code class="literal">TRUE</code> here.
|
1435
|
+
</p>
|
1436
|
+
<p>Default value: FALSE</p>
|
1437
|
+
<p class="since">Since 3.0</p>
|
1438
|
+
</div>
|
1439
|
+
<hr>
|
1440
|
+
<div class="refsect2">
|
1441
|
+
<a name="GdkDevice--input-mode"></a><h3>The <code class="literal">"input-mode"</code> property</h3>
|
1442
|
+
<pre class="programlisting"> "input-mode" <a class="link" href="GdkDevice.html#GdkInputMode" title="enum GdkInputMode"><span class="type">GdkInputMode</span></a> : Read / Write</pre>
|
1443
|
+
<p>
|
1444
|
+
Input mode for the device.
|
1445
|
+
</p>
|
1446
|
+
<p>Default value: GDK_MODE_DISABLED</p>
|
1447
|
+
<p class="since">Since 3.0</p>
|
1448
|
+
</div>
|
1449
|
+
<hr>
|
1450
|
+
<div class="refsect2">
|
1451
|
+
<a name="GdkDevice--input-source"></a><h3>The <code class="literal">"input-source"</code> property</h3>
|
1452
|
+
<pre class="programlisting"> "input-source" <a class="link" href="GdkDevice.html#GdkInputSource" title="enum GdkInputSource"><span class="type">GdkInputSource</span></a> : Read / Write / Construct Only</pre>
|
1453
|
+
<p>
|
1454
|
+
Source type for the device.
|
1455
|
+
</p>
|
1456
|
+
<p>Default value: GDK_SOURCE_MOUSE</p>
|
1457
|
+
<p class="since">Since 3.0</p>
|
1458
|
+
</div>
|
1459
|
+
<hr>
|
1460
|
+
<div class="refsect2">
|
1461
|
+
<a name="GdkDevice--n-axes"></a><h3>The <code class="literal">"n-axes"</code> property</h3>
|
1462
|
+
<pre class="programlisting"> "n-axes" <span class="type">guint</span> : Read</pre>
|
1463
|
+
<p>
|
1464
|
+
Number of axes in the device.
|
1465
|
+
</p>
|
1466
|
+
<p>Default value: 0</p>
|
1467
|
+
<p class="since">Since 3.0</p>
|
1468
|
+
</div>
|
1469
|
+
<hr>
|
1470
|
+
<div class="refsect2">
|
1471
|
+
<a name="GdkDevice--name"></a><h3>The <code class="literal">"name"</code> property</h3>
|
1472
|
+
<pre class="programlisting"> "name" <span class="type">gchar</span>* : Read / Write / Construct Only</pre>
|
1473
|
+
<p>
|
1474
|
+
The device name.
|
1475
|
+
</p>
|
1476
|
+
<p>Default value: NULL</p>
|
1477
|
+
<p class="since">Since 3.0</p>
|
1478
|
+
</div>
|
1479
|
+
<hr>
|
1480
|
+
<div class="refsect2">
|
1481
|
+
<a name="GdkDevice--type"></a><h3>The <code class="literal">"type"</code> property</h3>
|
1482
|
+
<pre class="programlisting"> "type" <a class="link" href="GdkDevice.html#GdkDeviceType" title="enum GdkDeviceType"><span class="type">GdkDeviceType</span></a> : Read / Write / Construct Only</pre>
|
1483
|
+
<p>
|
1484
|
+
Device role in the device manager.
|
1485
|
+
</p>
|
1486
|
+
<p>Default value: GDK_DEVICE_TYPE_MASTER</p>
|
1487
|
+
<p class="since">Since 3.0</p>
|
1488
|
+
</div>
|
1489
|
+
</div>
|
1490
|
+
<div class="refsect1">
|
1491
|
+
<a name="GdkDevice.signal-details"></a><h2>Signal Details</h2>
|
1492
|
+
<div class="refsect2">
|
1493
|
+
<a name="GdkDevice-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
|
1494
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device,
|
1495
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
1496
|
+
<p>
|
1497
|
+
The ::changed signal is emitted either when the <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
1498
|
+
has changed the number of either axes or keys. For example
|
1499
|
+
In X this will normally happen when the slave device routing
|
1500
|
+
events through the master device changes (for example, user
|
1501
|
+
switches from the USB mouse to a tablet), in that case the
|
1502
|
+
master device will change to reflect the new slave device
|
1503
|
+
axes and keys.
|
1504
|
+
</p>
|
1505
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1506
|
+
<colgroup>
|
1507
|
+
<col align="left" valign="top">
|
1508
|
+
<col>
|
1509
|
+
</colgroup>
|
1510
|
+
<tbody>
|
1511
|
+
<tr>
|
1512
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
1513
|
+
<td>the <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> that changed.</td>
|
1514
|
+
</tr>
|
1515
|
+
<tr>
|
1516
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
1517
|
+
<td>user data set when the signal handler was connected.</td>
|
1518
|
+
</tr>
|
1519
|
+
</tbody>
|
1520
|
+
</table></div>
|
1521
|
+
</div>
|
1522
|
+
</div>
|
1523
|
+
<div class="refsect1">
|
1524
|
+
<a name="GdkDevice.see-also"></a><h2>See Also</h2>
|
1525
|
+
<a class="link" href="GdkDeviceManager.html" title="GdkDeviceManager"><span class="type">GdkDeviceManager</span></a>
|
1526
|
+
</div>
|
1527
|
+
</div>
|
1528
|
+
<div class="footer">
|
1529
|
+
<hr>
|
1530
|
+
Generated by GTK-Doc V1.18.1</div>
|
1531
|
+
</body>
|
1532
|
+
</html>
|