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,2083 @@
|
|
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>X Window System Interaction</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="gdk3-Cairo-Interaction.html" title="Cairo Interaction">
|
10
|
+
<link rel="next" href="gdk3-Application-launching.html" title="Application launching">
|
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="gdk3-Cairo-Interaction.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-Application-launching.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="#gdk3-X-Window-System-Interaction.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#gdk3-X-Window-System-Interaction.description" class="shortcut">Description</a>
|
27
|
+
</td></tr>
|
28
|
+
</table>
|
29
|
+
<div class="refentry">
|
30
|
+
<a name="gdk3-X-Window-System-Interaction"></a><div class="titlepage"></div>
|
31
|
+
<div class="refnamediv"><table width="100%"><tr>
|
32
|
+
<td valign="top">
|
33
|
+
<h2><span class="refentrytitle"><a name="gdk3-X-Window-System-Interaction.top_of_page"></a>X Window System Interaction</span></h2>
|
34
|
+
<p>X Window System Interaction — X backend-specific functions</p>
|
35
|
+
</td>
|
36
|
+
<td valign="top" align="right"></td>
|
37
|
+
</tr></table></div>
|
38
|
+
<div class="refsynopsisdiv">
|
39
|
+
<a name="gdk3-X-Window-System-Interaction.synopsis"></a><h2>Synopsis</h2>
|
40
|
+
<pre class="synopsis">
|
41
|
+
#include <gdk/gdkx.h>
|
42
|
+
|
43
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-ROOT-WINDOW:CAPS" title="GDK_ROOT_WINDOW">GDK_ROOT_WINDOW</a>
|
44
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-WINDOW-XID:CAPS" title="GDK_WINDOW_XID()">GDK_WINDOW_XID</a> (win)
|
45
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-DISPLAY-XDISPLAY:CAPS" title="GDK_DISPLAY_XDISPLAY()">GDK_DISPLAY_XDISPLAY</a> (display)
|
46
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-SCREEN-XDISPLAY:CAPS" title="GDK_SCREEN_XDISPLAY()">GDK_SCREEN_XDISPLAY</a> (screen)
|
47
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-SCREEN-XNUMBER:CAPS" title="GDK_SCREEN_XNUMBER()">GDK_SCREEN_XNUMBER</a> (screen)
|
48
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-SCREEN-XSCREEN:CAPS" title="GDK_SCREEN_XSCREEN()">GDK_SCREEN_XSCREEN</a> (screen)
|
49
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-CURSOR-XCURSOR:CAPS" title="GDK_CURSOR_XCURSOR()">GDK_CURSOR_XCURSOR</a> (cursor)
|
50
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-CURSOR-XDISPLAY:CAPS" title="GDK_CURSOR_XDISPLAY()">GDK_CURSOR_XDISPLAY</a> (cursor)
|
51
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-POINTER-TO-XID:CAPS" title="GDK_POINTER_TO_XID()">GDK_POINTER_TO_XID</a> (pointer)
|
52
|
+
#define <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-XID-TO-POINTER:CAPS" title="GDK_XID_TO_POINTER()">GDK_XID_TO_POINTER</a> (pointer)
|
53
|
+
<a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-lookup-xdisplay" title="gdk_x11_lookup_xdisplay ()">gdk_x11_lookup_xdisplay</a> (<em class="parameter"><code><span class="type">Display</span> *xdisplay</code></em>);
|
54
|
+
<span class="returnvalue">guint32</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-get-server-time" title="gdk_x11_get_server_time ()">gdk_x11_get_server_time</a> (<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);
|
55
|
+
<span class="returnvalue">gint</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-device-get-id" title="gdk_x11_device_get_id ()">gdk_x11_device_get_id</a> (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);
|
56
|
+
<a class="link" href="GdkDevice.html" title="GdkDevice"><span class="returnvalue">GdkDevice</span></a> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-device-manager-lookup" title="gdk_x11_device_manager_lookup ()">gdk_x11_device_manager_lookup</a> (<em class="parameter"><code><a class="link" href="GdkDeviceManager.html" title="GdkDeviceManager"><span class="type">GdkDeviceManager</span></a> *device_manager</code></em>,
|
57
|
+
<em class="parameter"><code><span class="type">gint</span> device_id</code></em>);
|
58
|
+
<span class="returnvalue">guint32</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-get-user-time" title="gdk_x11_display_get_user_time ()">gdk_x11_display_get_user_time</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
|
59
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-broadcast-startup-message" title="gdk_x11_display_broadcast_startup_message ()">gdk_x11_display_broadcast_startup_message</a>
|
60
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
61
|
+
<em class="parameter"><code>const <span class="type">char</span> *message_type</code></em>,
|
62
|
+
<em class="parameter"><code>...</code></em>);
|
63
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-get-startup-notification-id" title="gdk_x11_display_get_startup_notification_id ()">gdk_x11_display_get_startup_notification_id</a>
|
64
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
|
65
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-set-startup-notification-id" title="gdk_x11_display_set_startup_notification_id ()">gdk_x11_display_set_startup_notification_id</a>
|
66
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
67
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *startup_id</code></em>);
|
68
|
+
<span class="returnvalue">Display</span> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-get-xdisplay" title="gdk_x11_display_get_xdisplay ()">gdk_x11_display_get_xdisplay</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
|
69
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-grab" title="gdk_x11_display_grab ()">gdk_x11_display_grab</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
|
70
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-ungrab" title="gdk_x11_display_ungrab ()">gdk_x11_display_ungrab</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
|
71
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-error-trap-push" title="gdk_x11_display_error_trap_push ()">gdk_x11_display_error_trap_push</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
|
72
|
+
<span class="returnvalue">gint</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-error-trap-pop" title="gdk_x11_display_error_trap_pop ()">gdk_x11_display_error_trap_pop</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
|
73
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-error-trap-pop-ignored" title="gdk_x11_display_error_trap_pop_ignored ()">gdk_x11_display_error_trap_pop_ignored</a>
|
74
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
|
75
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-set-cursor-theme" title="gdk_x11_display_set_cursor_theme ()">gdk_x11_display_set_cursor_theme</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
76
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *theme</code></em>,
|
77
|
+
<em class="parameter"><code>const <span class="type">gint</span> size</code></em>);
|
78
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-register-standard-event-type" title="gdk_x11_register_standard_event_type ()">gdk_x11_register_standard_event_type</a>
|
79
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
80
|
+
<em class="parameter"><code><span class="type">gint</span> event_base</code></em>,
|
81
|
+
<em class="parameter"><code><span class="type">gint</span> n_events</code></em>);
|
82
|
+
<span class="returnvalue">int</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-screen-get-screen-number" title="gdk_x11_screen_get_screen_number ()">gdk_x11_screen_get_screen_number</a> (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);
|
83
|
+
<span class="returnvalue">Screen</span> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-screen-get-xscreen" title="gdk_x11_screen_get_xscreen ()">gdk_x11_screen_get_xscreen</a> (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);
|
84
|
+
const <span class="returnvalue">char</span> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-screen-get-window-manager-name" title="gdk_x11_screen_get_window_manager_name ()">gdk_x11_screen_get_window_manager_name</a>
|
85
|
+
(<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);
|
86
|
+
<span class="returnvalue">XID</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-screen-get-monitor-output" title="gdk_x11_screen_get_monitor_output ()">gdk_x11_screen_get_monitor_output</a> (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
|
87
|
+
<em class="parameter"><code><span class="type">gint</span> monitor_num</code></em>);
|
88
|
+
<a class="link" href="gdk3-Visuals.html#GdkVisual"><span class="returnvalue">GdkVisual</span></a> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-screen-lookup-visual" title="gdk_x11_screen_lookup_visual ()">gdk_x11_screen_lookup_visual</a> (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
|
89
|
+
<em class="parameter"><code><span class="type">VisualID</span> xvisualid</code></em>);
|
90
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-screen-supports-net-wm-hint" title="gdk_x11_screen_supports_net_wm_hint ()">gdk_x11_screen_supports_net_wm_hint</a> (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
|
91
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> property</code></em>);
|
92
|
+
<a class="link" href="gdk3-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-window-foreign-new-for-display" title="gdk_x11_window_foreign_new_for_display ()">gdk_x11_window_foreign_new_for_display</a>
|
93
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
94
|
+
<em class="parameter"><code><span class="type">Window</span> window</code></em>);
|
95
|
+
<a class="link" href="gdk3-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-window-lookup-for-display" title="gdk_x11_window_lookup_for_display ()">gdk_x11_window_lookup_for_display</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
96
|
+
<em class="parameter"><code><span class="type">Window</span> window</code></em>);
|
97
|
+
<span class="returnvalue">Window</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-window-get-xid" title="gdk_x11_window_get_xid ()">gdk_x11_window_get_xid</a> (<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);
|
98
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-window-set-hide-titlebar-when-maximized" title="gdk_x11_window_set_hide_titlebar_when_maximized ()">gdk_x11_window_set_hide_titlebar_when_maximized</a>
|
99
|
+
(<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
100
|
+
<em class="parameter"><code><span class="type">gboolean</span> hide_titlebar_when_maximized</code></em>);
|
101
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-window-set-theme-variant" title="gdk_x11_window_set_theme_variant ()">gdk_x11_window_set_theme_variant</a> (<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
102
|
+
<em class="parameter"><code><span class="type">char</span> *variant</code></em>);
|
103
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-window-set-user-time" title="gdk_x11_window_set_user_time ()">gdk_x11_window_set_user_time</a> (<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
104
|
+
<em class="parameter"><code><span class="type">guint32</span> timestamp</code></em>);
|
105
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-window-move-to-current-desktop" title="gdk_x11_window_move_to_current_desktop ()">gdk_x11_window_move_to_current_desktop</a>
|
106
|
+
(<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);
|
107
|
+
<span class="returnvalue">Window</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-get-default-root-xwindow" title="gdk_x11_get_default_root_xwindow ()">gdk_x11_get_default_root_xwindow</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
108
|
+
<span class="returnvalue">gint</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-get-default-screen" title="gdk_x11_get_default_screen ()">gdk_x11_get_default_screen</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
109
|
+
<span class="returnvalue">Display</span> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-get-default-xdisplay" title="gdk_x11_get_default_xdisplay ()">gdk_x11_get_default_xdisplay</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
110
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-grab-server" title="gdk_x11_grab_server ()">gdk_x11_grab_server</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
111
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-ungrab-server" title="gdk_x11_ungrab_server ()">gdk_x11_ungrab_server</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
112
|
+
<span class="returnvalue">Cursor</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-cursor-get-xcursor" title="gdk_x11_cursor_get_xcursor ()">gdk_x11_cursor_get_xcursor</a> (<em class="parameter"><code><a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);
|
113
|
+
<span class="returnvalue">Display</span> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-cursor-get-xdisplay" title="gdk_x11_cursor_get_xdisplay ()">gdk_x11_cursor_get_xdisplay</a> (<em class="parameter"><code><a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);
|
114
|
+
<span class="returnvalue">gint</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-keymap-get-group-for-state" title="gdk_x11_keymap_get_group_for_state ()">gdk_x11_keymap_get_group_for_state</a> (<em class="parameter"><code><a class="link" href="gdk3-Keyboard-Handling.html#GdkKeymap"><span class="type">GdkKeymap</span></a> *keymap</code></em>,
|
115
|
+
<em class="parameter"><code><span class="type">guint</span> state</code></em>);
|
116
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-keymap-key-is-modifier" title="gdk_x11_keymap_key_is_modifier ()">gdk_x11_keymap_key_is_modifier</a> (<em class="parameter"><code><a class="link" href="gdk3-Keyboard-Handling.html#GdkKeymap"><span class="type">GdkKeymap</span></a> *keymap</code></em>,
|
117
|
+
<em class="parameter"><code><span class="type">guint</span> keycode</code></em>);
|
118
|
+
<span class="returnvalue">Visual</span> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-visual-get-xvisual" title="gdk_x11_visual_get_xvisual ()">gdk_x11_visual_get_xvisual</a> (<em class="parameter"><code><a class="link" href="gdk3-Visuals.html#GdkVisual"><span class="type">GdkVisual</span></a> *visual</code></em>);
|
119
|
+
<span class="returnvalue">Atom</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom" title="gdk_x11_atom_to_xatom ()">gdk_x11_atom_to_xatom</a> (<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> atom</code></em>);
|
120
|
+
<span class="returnvalue">Atom</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom-for-display" title="gdk_x11_atom_to_xatom_for_display ()">gdk_x11_atom_to_xatom_for_display</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
121
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> atom</code></em>);
|
122
|
+
<a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom" title="gdk_x11_xatom_to_atom ()">gdk_x11_xatom_to_atom</a> (<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);
|
123
|
+
<a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom-for-display" title="gdk_x11_xatom_to_atom_for_display ()">gdk_x11_xatom_to_atom_for_display</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
124
|
+
<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);
|
125
|
+
<span class="returnvalue">Atom</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name" title="gdk_x11_get_xatom_by_name ()">gdk_x11_get_xatom_by_name</a> (<em class="parameter"><code>const <span class="type">gchar</span> *atom_name</code></em>);
|
126
|
+
<span class="returnvalue">Atom</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name-for-display" title="gdk_x11_get_xatom_by_name_for_display ()">gdk_x11_get_xatom_by_name_for_display</a>
|
127
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
128
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *atom_name</code></em>);
|
129
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-get-xatom-name" title="gdk_x11_get_xatom_name ()">gdk_x11_get_xatom_name</a> (<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);
|
130
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-get-xatom-name-for-display" title="gdk_x11_get_xatom_name_for_display ()">gdk_x11_get_xatom_name_for_display</a> (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
131
|
+
<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);
|
132
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-set-sm-client-id" title="gdk_x11_set_sm_client_id ()">gdk_x11_set_sm_client_id</a> (<em class="parameter"><code>const <span class="type">gchar</span> *sm_client_id</code></em>);
|
133
|
+
<span class="returnvalue">gint</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-text-property-to-text-list" title="gdk_x11_display_text_property_to_text_list ()">gdk_x11_display_text_property_to_text_list</a>
|
134
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
135
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> encoding</code></em>,
|
136
|
+
<em class="parameter"><code><span class="type">gint</span> format</code></em>,
|
137
|
+
<em class="parameter"><code>const <span class="type">guchar</span> *text</code></em>,
|
138
|
+
<em class="parameter"><code><span class="type">gint</span> length</code></em>,
|
139
|
+
<em class="parameter"><code><span class="type">gchar</span> ***list</code></em>);
|
140
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-free-text-list" title="gdk_x11_free_text_list ()">gdk_x11_free_text_list</a> (<em class="parameter"><code><span class="type">gchar</span> **list</code></em>);
|
141
|
+
<span class="returnvalue">gint</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-string-to-compound-text" title="gdk_x11_display_string_to_compound_text ()">gdk_x11_display_string_to_compound_text</a>
|
142
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
143
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>,
|
144
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> *encoding</code></em>,
|
145
|
+
<em class="parameter"><code><span class="type">gint</span> *format</code></em>,
|
146
|
+
<em class="parameter"><code><span class="type">guchar</span> **ctext</code></em>,
|
147
|
+
<em class="parameter"><code><span class="type">gint</span> *length</code></em>);
|
148
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-utf8-to-compound-text" title="gdk_x11_display_utf8_to_compound_text ()">gdk_x11_display_utf8_to_compound_text</a>
|
149
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
150
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>,
|
151
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> *encoding</code></em>,
|
152
|
+
<em class="parameter"><code><span class="type">gint</span> *format</code></em>,
|
153
|
+
<em class="parameter"><code><span class="type">guchar</span> **ctext</code></em>,
|
154
|
+
<em class="parameter"><code><span class="type">gint</span> *length</code></em>);
|
155
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-free-compound-text" title="gdk_x11_free_compound_text ()">gdk_x11_free_compound_text</a> (<em class="parameter"><code><span class="type">guchar</span> *ctext</code></em>);
|
156
|
+
</pre>
|
157
|
+
</div>
|
158
|
+
<div class="refsect1">
|
159
|
+
<a name="gdk3-X-Window-System-Interaction.description"></a><h2>Description</h2>
|
160
|
+
<p>
|
161
|
+
The functions in this section are specific to the GDK X11 backend.
|
162
|
+
To use them, you need to include the <code class="literal"><gdk/gdkx.h></code>
|
163
|
+
header and use the X11-specific pkg-config files to build your
|
164
|
+
application (either <code class="literal">gdk-x11-3.0</code> or
|
165
|
+
<code class="literal">gtk+-x11-3.0</code>).
|
166
|
+
</p>
|
167
|
+
<p>
|
168
|
+
To make your code compile with other GDK backends, guard backend-specific
|
169
|
+
calls by an ifdef as follows. Since GDK may be built with multiple
|
170
|
+
backends, you should also check for the backend that is in use (e.g. by
|
171
|
+
using the <code class="function">GDK_IS_X11_DISPLAY()</code> macro).
|
172
|
+
</p>
|
173
|
+
<div class="informalexample">
|
174
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
175
|
+
<tbody>
|
176
|
+
<tr>
|
177
|
+
<td class="listing_lines" align="right"><pre>1
|
178
|
+
2
|
179
|
+
3
|
180
|
+
4
|
181
|
+
5
|
182
|
+
6
|
183
|
+
7
|
184
|
+
8
|
185
|
+
9
|
186
|
+
10
|
187
|
+
11
|
188
|
+
12
|
189
|
+
13
|
190
|
+
14
|
191
|
+
15</pre></td>
|
192
|
+
<td class="listing_code"><pre class="programlisting"><span class="preproc">#ifdef</span><span class="normal"> <a href="gdk3-General.html#GDK-WINDOWING-X11:CAPS">GDK_WINDOWING_X11</a></span>
|
193
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="function">GDK_IS_X11_DISPLAY</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">display</span><span class="symbol">))</span>
|
194
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
195
|
+
<span class="normal"> </span><span class="comment">/* make X11-specific calls here */</span>
|
196
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
197
|
+
<span class="normal"> </span><span class="keyword">else</span>
|
198
|
+
<span class="preproc">#endif</span>
|
199
|
+
<span class="preproc">#ifdef</span><span class="normal"> GDK_WINDOWING_QUARTZ</span>
|
200
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="function">GDK_IS_QUARTZ_DISPLAY</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">display</span><span class="symbol">))</span>
|
201
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
202
|
+
<span class="normal"> </span><span class="comment">/* make Quartz-specific calls here &ast/</span>
|
203
|
+
<span class="comment"> }</span>
|
204
|
+
<span class="comment"> else</span>
|
205
|
+
<span class="comment">#endif</span>
|
206
|
+
<span class="comment"> g_error ("Unsupported GDK backend");</span></pre></td>
|
207
|
+
</tr>
|
208
|
+
</tbody>
|
209
|
+
</table>
|
210
|
+
</div>
|
211
|
+
|
212
|
+
<p>
|
213
|
+
</p>
|
214
|
+
</div>
|
215
|
+
<div class="refsect1">
|
216
|
+
<a name="gdk3-X-Window-System-Interaction.details"></a><h2>Details</h2>
|
217
|
+
<div class="refsect2">
|
218
|
+
<a name="GDK-ROOT-WINDOW:CAPS"></a><h3>GDK_ROOT_WINDOW</h3>
|
219
|
+
<pre class="programlisting">#define GDK_ROOT_WINDOW() (gdk_x11_get_default_root_xwindow ())
|
220
|
+
</pre>
|
221
|
+
<p>
|
222
|
+
Obtains the Xlib window id of the root window of the current screen.
|
223
|
+
</p>
|
224
|
+
</div>
|
225
|
+
<hr>
|
226
|
+
<div class="refsect2">
|
227
|
+
<a name="GDK-WINDOW-XID:CAPS"></a><h3>GDK_WINDOW_XID()</h3>
|
228
|
+
<pre class="programlisting">#define GDK_WINDOW_XID(win)</pre>
|
229
|
+
<p>
|
230
|
+
Returns the X window belonging to a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.
|
231
|
+
</p>
|
232
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
233
|
+
<colgroup>
|
234
|
+
<col align="left" valign="top">
|
235
|
+
<col>
|
236
|
+
</colgroup>
|
237
|
+
<tbody>
|
238
|
+
<tr>
|
239
|
+
<td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
|
240
|
+
<td>a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.</td>
|
241
|
+
</tr>
|
242
|
+
<tr>
|
243
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
244
|
+
<td>the Xlib <span class="type">Window</span> of <em class="parameter"><code>win</code></em>.</td>
|
245
|
+
</tr>
|
246
|
+
</tbody>
|
247
|
+
</table></div>
|
248
|
+
</div>
|
249
|
+
<hr>
|
250
|
+
<div class="refsect2">
|
251
|
+
<a name="GDK-DISPLAY-XDISPLAY:CAPS"></a><h3>GDK_DISPLAY_XDISPLAY()</h3>
|
252
|
+
<pre class="programlisting">#define GDK_DISPLAY_XDISPLAY(display)</pre>
|
253
|
+
</div>
|
254
|
+
<hr>
|
255
|
+
<div class="refsect2">
|
256
|
+
<a name="GDK-SCREEN-XDISPLAY:CAPS"></a><h3>GDK_SCREEN_XDISPLAY()</h3>
|
257
|
+
<pre class="programlisting">#define GDK_SCREEN_XDISPLAY(screen)</pre>
|
258
|
+
<p>
|
259
|
+
Returns the display of a X11 <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
|
260
|
+
</p>
|
261
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
262
|
+
<colgroup>
|
263
|
+
<col align="left" valign="top">
|
264
|
+
<col>
|
265
|
+
</colgroup>
|
266
|
+
<tbody>
|
267
|
+
<tr>
|
268
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
269
|
+
<td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>
|
270
|
+
</td>
|
271
|
+
</tr>
|
272
|
+
<tr>
|
273
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
274
|
+
<td>an Xlib <span class="type">Display*</span>
|
275
|
+
</td>
|
276
|
+
</tr>
|
277
|
+
</tbody>
|
278
|
+
</table></div>
|
279
|
+
</div>
|
280
|
+
<hr>
|
281
|
+
<div class="refsect2">
|
282
|
+
<a name="GDK-SCREEN-XNUMBER:CAPS"></a><h3>GDK_SCREEN_XNUMBER()</h3>
|
283
|
+
<pre class="programlisting">#define GDK_SCREEN_XNUMBER(screen) (gdk_x11_screen_get_screen_number (screen))
|
284
|
+
</pre>
|
285
|
+
<p>
|
286
|
+
Returns the index of a X11 <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
|
287
|
+
</p>
|
288
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
289
|
+
<colgroup>
|
290
|
+
<col align="left" valign="top">
|
291
|
+
<col>
|
292
|
+
</colgroup>
|
293
|
+
<tbody>
|
294
|
+
<tr>
|
295
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
296
|
+
<td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>
|
297
|
+
</td>
|
298
|
+
</tr>
|
299
|
+
<tr>
|
300
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
301
|
+
<td>the position of <em class="parameter"><code>screen</code></em> among the screens of its display</td>
|
302
|
+
</tr>
|
303
|
+
</tbody>
|
304
|
+
</table></div>
|
305
|
+
</div>
|
306
|
+
<hr>
|
307
|
+
<div class="refsect2">
|
308
|
+
<a name="GDK-SCREEN-XSCREEN:CAPS"></a><h3>GDK_SCREEN_XSCREEN()</h3>
|
309
|
+
<pre class="programlisting">#define GDK_SCREEN_XSCREEN(screen) (gdk_x11_screen_get_xscreen (screen))
|
310
|
+
</pre>
|
311
|
+
<p>
|
312
|
+
Returns the screen of a X11 <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
|
313
|
+
</p>
|
314
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
315
|
+
<colgroup>
|
316
|
+
<col align="left" valign="top">
|
317
|
+
<col>
|
318
|
+
</colgroup>
|
319
|
+
<tbody>
|
320
|
+
<tr>
|
321
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
322
|
+
<td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>
|
323
|
+
</td>
|
324
|
+
</tr>
|
325
|
+
<tr>
|
326
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
327
|
+
<td>an Xlib <span class="type">Screen*</span>
|
328
|
+
</td>
|
329
|
+
</tr>
|
330
|
+
</tbody>
|
331
|
+
</table></div>
|
332
|
+
</div>
|
333
|
+
<hr>
|
334
|
+
<div class="refsect2">
|
335
|
+
<a name="GDK-CURSOR-XCURSOR:CAPS"></a><h3>GDK_CURSOR_XCURSOR()</h3>
|
336
|
+
<pre class="programlisting">#define GDK_CURSOR_XCURSOR(cursor) (gdk_x11_cursor_get_xcursor (cursor))
|
337
|
+
</pre>
|
338
|
+
<p>
|
339
|
+
Returns the X cursor belonging to a <a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a>.
|
340
|
+
</p>
|
341
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
342
|
+
<colgroup>
|
343
|
+
<col align="left" valign="top">
|
344
|
+
<col>
|
345
|
+
</colgroup>
|
346
|
+
<tbody>
|
347
|
+
<tr>
|
348
|
+
<td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
|
349
|
+
<td>a <a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a>.</td>
|
350
|
+
</tr>
|
351
|
+
<tr>
|
352
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
353
|
+
<td>an Xlib <span class="type">Cursor</span>.</td>
|
354
|
+
</tr>
|
355
|
+
</tbody>
|
356
|
+
</table></div>
|
357
|
+
</div>
|
358
|
+
<hr>
|
359
|
+
<div class="refsect2">
|
360
|
+
<a name="GDK-CURSOR-XDISPLAY:CAPS"></a><h3>GDK_CURSOR_XDISPLAY()</h3>
|
361
|
+
<pre class="programlisting">#define GDK_CURSOR_XDISPLAY(cursor) (gdk_x11_cursor_get_xdisplay (cursor))
|
362
|
+
</pre>
|
363
|
+
<p>
|
364
|
+
Returns the display of a <a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a>.
|
365
|
+
</p>
|
366
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
367
|
+
<colgroup>
|
368
|
+
<col align="left" valign="top">
|
369
|
+
<col>
|
370
|
+
</colgroup>
|
371
|
+
<tbody>
|
372
|
+
<tr>
|
373
|
+
<td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
|
374
|
+
<td>a <a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a>.</td>
|
375
|
+
</tr>
|
376
|
+
<tr>
|
377
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
378
|
+
<td>an Xlib <span class="type">Display*</span>.</td>
|
379
|
+
</tr>
|
380
|
+
</tbody>
|
381
|
+
</table></div>
|
382
|
+
</div>
|
383
|
+
<hr>
|
384
|
+
<div class="refsect2">
|
385
|
+
<a name="GDK-POINTER-TO-XID:CAPS"></a><h3>GDK_POINTER_TO_XID()</h3>
|
386
|
+
<pre class="programlisting">#define GDK_POINTER_TO_XID(pointer) GPOINTER_TO_UINT(pointer)
|
387
|
+
</pre>
|
388
|
+
<p>
|
389
|
+
Converts a <em class="parameter"><code>gpointer</code></em> back to an XID that was previously converted
|
390
|
+
using <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-XID-TO-POINTER:CAPS" title="GDK_XID_TO_POINTER()"><code class="function">GDK_XID_TO_POINTER()</code></a>.
|
391
|
+
</p>
|
392
|
+
</div>
|
393
|
+
<hr>
|
394
|
+
<div class="refsect2">
|
395
|
+
<a name="GDK-XID-TO-POINTER:CAPS"></a><h3>GDK_XID_TO_POINTER()</h3>
|
396
|
+
<pre class="programlisting">#define GDK_XID_TO_POINTER(pointer) GUINT_TO_POINTER(pointer)
|
397
|
+
</pre>
|
398
|
+
<p>
|
399
|
+
Converts an XID into a <em class="parameter"><code>gpointer</code></em>. This is useful with data structures
|
400
|
+
that use pointer arguments such as <span class="type">GHashTable</span>. Use <a class="link" href="gdk3-X-Window-System-Interaction.html#GDK-POINTER-TO-XID:CAPS" title="GDK_POINTER_TO_XID()"><code class="function">GDK_POINTER_TO_XID()</code></a>
|
401
|
+
to convert the argument back to an XID.
|
402
|
+
</p>
|
403
|
+
</div>
|
404
|
+
<hr>
|
405
|
+
<div class="refsect2">
|
406
|
+
<a name="gdk-x11-lookup-xdisplay"></a><h3>gdk_x11_lookup_xdisplay ()</h3>
|
407
|
+
<pre class="programlisting"><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> * gdk_x11_lookup_xdisplay (<em class="parameter"><code><span class="type">Display</span> *xdisplay</code></em>);</pre>
|
408
|
+
<p>
|
409
|
+
Find the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> corresponding to <em class="parameter"><code>display</code></em>, if any exists.
|
410
|
+
</p>
|
411
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
412
|
+
<colgroup>
|
413
|
+
<col align="left" valign="top">
|
414
|
+
<col>
|
415
|
+
</colgroup>
|
416
|
+
<tbody>
|
417
|
+
<tr>
|
418
|
+
<td><p><span class="term"><em class="parameter"><code>xdisplay</code></em> :</span></p></td>
|
419
|
+
<td>a pointer to an X Display</td>
|
420
|
+
</tr>
|
421
|
+
<tr>
|
422
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
423
|
+
<td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>, if found, otherwise <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>
|
424
|
+
</td>
|
425
|
+
</tr>
|
426
|
+
</tbody>
|
427
|
+
</table></div>
|
428
|
+
<p class="since">Since 2.2</p>
|
429
|
+
</div>
|
430
|
+
<hr>
|
431
|
+
<div class="refsect2">
|
432
|
+
<a name="gdk-x11-get-server-time"></a><h3>gdk_x11_get_server_time ()</h3>
|
433
|
+
<pre class="programlisting"><span class="returnvalue">guint32</span> gdk_x11_get_server_time (<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
|
434
|
+
<p>
|
435
|
+
Routine to get the current X server time stamp.
|
436
|
+
</p>
|
437
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
438
|
+
<colgroup>
|
439
|
+
<col align="left" valign="top">
|
440
|
+
<col>
|
441
|
+
</colgroup>
|
442
|
+
<tbody>
|
443
|
+
<tr>
|
444
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
445
|
+
<td>a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>, used for communication
|
446
|
+
with the server. The window must have
|
447
|
+
GDK_PROPERTY_CHANGE_MASK in its events mask or a hang will
|
448
|
+
result. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Window]</span>
|
449
|
+
</td>
|
450
|
+
</tr>
|
451
|
+
<tr>
|
452
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
453
|
+
<td>the time stamp.</td>
|
454
|
+
</tr>
|
455
|
+
</tbody>
|
456
|
+
</table></div>
|
457
|
+
</div>
|
458
|
+
<hr>
|
459
|
+
<div class="refsect2">
|
460
|
+
<a name="gdk-x11-device-get-id"></a><h3>gdk_x11_device_get_id ()</h3>
|
461
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gdk_x11_device_get_id (<em class="parameter"><code><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
|
462
|
+
<p>
|
463
|
+
Returns the device ID as seen by XInput2.
|
464
|
+
</p>
|
465
|
+
<p>
|
466
|
+
</p>
|
467
|
+
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
468
|
+
<h3 class="title">Note</h3>
|
469
|
+
If <a class="link" href="GdkDeviceManager.html#gdk-disable-multidevice" title="gdk_disable_multidevice ()"><code class="function">gdk_disable_multidevice()</code></a> has been called, this function
|
470
|
+
will respectively return 2/3 for the core pointer and keyboard,
|
471
|
+
(matching the IDs for the Virtual Core Pointer and Keyboard in
|
472
|
+
XInput 2), but calling this function on any slave devices (i.e.
|
473
|
+
those managed via XInput 1.x), will return 0.
|
474
|
+
</div>
|
475
|
+
<p>
|
476
|
+
</p>
|
477
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
478
|
+
<colgroup>
|
479
|
+
<col align="left" valign="top">
|
480
|
+
<col>
|
481
|
+
</colgroup>
|
482
|
+
<tbody>
|
483
|
+
<tr>
|
484
|
+
<td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
|
485
|
+
<td>a <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a>
|
486
|
+
</td>
|
487
|
+
</tr>
|
488
|
+
<tr>
|
489
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
490
|
+
<td>the XInput2 device ID.</td>
|
491
|
+
</tr>
|
492
|
+
</tbody>
|
493
|
+
</table></div>
|
494
|
+
<p class="since">Since 3.2</p>
|
495
|
+
</div>
|
496
|
+
<hr>
|
497
|
+
<div class="refsect2">
|
498
|
+
<a name="gdk-x11-device-manager-lookup"></a><h3>gdk_x11_device_manager_lookup ()</h3>
|
499
|
+
<pre class="programlisting"><a class="link" href="GdkDevice.html" title="GdkDevice"><span class="returnvalue">GdkDevice</span></a> * gdk_x11_device_manager_lookup (<em class="parameter"><code><a class="link" href="GdkDeviceManager.html" title="GdkDeviceManager"><span class="type">GdkDeviceManager</span></a> *device_manager</code></em>,
|
500
|
+
<em class="parameter"><code><span class="type">gint</span> device_id</code></em>);</pre>
|
501
|
+
<p>
|
502
|
+
Returns the <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> that wraps the given device ID.
|
503
|
+
</p>
|
504
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
505
|
+
<colgroup>
|
506
|
+
<col align="left" valign="top">
|
507
|
+
<col>
|
508
|
+
</colgroup>
|
509
|
+
<tbody>
|
510
|
+
<tr>
|
511
|
+
<td><p><span class="term"><em class="parameter"><code>device_manager</code></em> :</span></p></td>
|
512
|
+
<td>a <a class="link" href="GdkDeviceManager.html" title="GdkDeviceManager"><span class="type">GdkDeviceManager</span></a>
|
513
|
+
</td>
|
514
|
+
</tr>
|
515
|
+
<tr>
|
516
|
+
<td><p><span class="term"><em class="parameter"><code>device_id</code></em> :</span></p></td>
|
517
|
+
<td>a device ID, as understood by the XInput2 protocol</td>
|
518
|
+
</tr>
|
519
|
+
<tr>
|
520
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
521
|
+
<td>(allow-none): The <a class="link" href="GdkDevice.html" title="GdkDevice"><span class="type">GdkDevice</span></a> wrapping the device ID,
|
522
|
+
or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if the given ID doesn't currently represent a device. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
523
|
+
</td>
|
524
|
+
</tr>
|
525
|
+
</tbody>
|
526
|
+
</table></div>
|
527
|
+
<p class="since">Since 3.2</p>
|
528
|
+
</div>
|
529
|
+
<hr>
|
530
|
+
<div class="refsect2">
|
531
|
+
<a name="gdk-x11-display-get-user-time"></a><h3>gdk_x11_display_get_user_time ()</h3>
|
532
|
+
<pre class="programlisting"><span class="returnvalue">guint32</span> gdk_x11_display_get_user_time (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
|
533
|
+
<p>
|
534
|
+
Returns the timestamp of the last user interaction on
|
535
|
+
<em class="parameter"><code>display</code></em>. The timestamp is taken from events caused
|
536
|
+
by user interaction such as key presses or pointer
|
537
|
+
movements. See <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-window-set-user-time" title="gdk_x11_window_set_user_time ()"><code class="function">gdk_x11_window_set_user_time()</code></a>.
|
538
|
+
</p>
|
539
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
540
|
+
<colgroup>
|
541
|
+
<col align="left" valign="top">
|
542
|
+
<col>
|
543
|
+
</colgroup>
|
544
|
+
<tbody>
|
545
|
+
<tr>
|
546
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
547
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
548
|
+
</td>
|
549
|
+
</tr>
|
550
|
+
<tr>
|
551
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
552
|
+
<td>the timestamp of the last user interaction</td>
|
553
|
+
</tr>
|
554
|
+
</tbody>
|
555
|
+
</table></div>
|
556
|
+
<p class="since">Since 2.8</p>
|
557
|
+
</div>
|
558
|
+
<hr>
|
559
|
+
<div class="refsect2">
|
560
|
+
<a name="gdk-x11-display-broadcast-startup-message"></a><h3>gdk_x11_display_broadcast_startup_message ()</h3>
|
561
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_display_broadcast_startup_message
|
562
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
563
|
+
<em class="parameter"><code>const <span class="type">char</span> *message_type</code></em>,
|
564
|
+
<em class="parameter"><code>...</code></em>);</pre>
|
565
|
+
<p>
|
566
|
+
Sends a startup notification message of type <em class="parameter"><code>message_type</code></em> to
|
567
|
+
<em class="parameter"><code>display</code></em>.
|
568
|
+
</p>
|
569
|
+
<p>
|
570
|
+
This is a convenience function for use by code that implements the
|
571
|
+
freedesktop startup notification specification. Applications should
|
572
|
+
not normally need to call it directly. See the <a class="ulink" href="http://standards.freedesktop.org/startup-notification-spec/startup-notification-latest.txt" target="_top">Startup
|
573
|
+
Notification Protocol specification</a> for
|
574
|
+
definitions of the message types and keys that can be used.
|
575
|
+
</p>
|
576
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
577
|
+
<colgroup>
|
578
|
+
<col align="left" valign="top">
|
579
|
+
<col>
|
580
|
+
</colgroup>
|
581
|
+
<tbody>
|
582
|
+
<tr>
|
583
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
584
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
585
|
+
</td>
|
586
|
+
</tr>
|
587
|
+
<tr>
|
588
|
+
<td><p><span class="term"><em class="parameter"><code>message_type</code></em> :</span></p></td>
|
589
|
+
<td>startup notification message type ("new", "change",
|
590
|
+
or "remove")</td>
|
591
|
+
</tr>
|
592
|
+
<tr>
|
593
|
+
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
594
|
+
<td>a list of key/value pairs (as strings), terminated by a
|
595
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> key. (A <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> value for a key will cause that key to be
|
596
|
+
skipped in the output.)</td>
|
597
|
+
</tr>
|
598
|
+
</tbody>
|
599
|
+
</table></div>
|
600
|
+
<p class="since">Since 2.12</p>
|
601
|
+
</div>
|
602
|
+
<hr>
|
603
|
+
<div class="refsect2">
|
604
|
+
<a name="gdk-x11-display-get-startup-notification-id"></a><h3>gdk_x11_display_get_startup_notification_id ()</h3>
|
605
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gdk_x11_display_get_startup_notification_id
|
606
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
|
607
|
+
<p>
|
608
|
+
Gets the startup notification ID for a display.
|
609
|
+
</p>
|
610
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
611
|
+
<colgroup>
|
612
|
+
<col align="left" valign="top">
|
613
|
+
<col>
|
614
|
+
</colgroup>
|
615
|
+
<tbody>
|
616
|
+
<tr>
|
617
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
618
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
619
|
+
</td>
|
620
|
+
</tr>
|
621
|
+
<tr>
|
622
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
623
|
+
<td>the startup notification ID for <em class="parameter"><code>display</code></em>
|
624
|
+
</td>
|
625
|
+
</tr>
|
626
|
+
</tbody>
|
627
|
+
</table></div>
|
628
|
+
<p class="since">Since 2.12</p>
|
629
|
+
</div>
|
630
|
+
<hr>
|
631
|
+
<div class="refsect2">
|
632
|
+
<a name="gdk-x11-display-set-startup-notification-id"></a><h3>gdk_x11_display_set_startup_notification_id ()</h3>
|
633
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_display_set_startup_notification_id
|
634
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
635
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *startup_id</code></em>);</pre>
|
636
|
+
<p>
|
637
|
+
Sets the startup notification ID for a display.
|
638
|
+
</p>
|
639
|
+
<p>
|
640
|
+
This is usually taken from the value of the DESKTOP_STARTUP_ID
|
641
|
+
environment variable, but in some cases (such as the application not
|
642
|
+
being launched using <code class="function">exec()</code>) it can come from other sources.
|
643
|
+
</p>
|
644
|
+
<p>
|
645
|
+
If the ID contains the string "_TIME" then the portion following that
|
646
|
+
string is taken to be the X11 timestamp of the event that triggered
|
647
|
+
the application to be launched and the GDK current event time is set
|
648
|
+
accordingly.
|
649
|
+
</p>
|
650
|
+
<p>
|
651
|
+
The startup ID is also what is used to signal that the startup is
|
652
|
+
complete (for example, when opening a window or when calling
|
653
|
+
<a class="link" href="gdk3-General.html#gdk-notify-startup-complete" title="gdk_notify_startup_complete ()"><code class="function">gdk_notify_startup_complete()</code></a>).
|
654
|
+
</p>
|
655
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
656
|
+
<colgroup>
|
657
|
+
<col align="left" valign="top">
|
658
|
+
<col>
|
659
|
+
</colgroup>
|
660
|
+
<tbody>
|
661
|
+
<tr>
|
662
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
663
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
664
|
+
</td>
|
665
|
+
</tr>
|
666
|
+
<tr>
|
667
|
+
<td><p><span class="term"><em class="parameter"><code>startup_id</code></em> :</span></p></td>
|
668
|
+
<td>the startup notification ID (must be valid utf8)</td>
|
669
|
+
</tr>
|
670
|
+
</tbody>
|
671
|
+
</table></div>
|
672
|
+
<p class="since">Since 3.0</p>
|
673
|
+
</div>
|
674
|
+
<hr>
|
675
|
+
<div class="refsect2">
|
676
|
+
<a name="gdk-x11-display-get-xdisplay"></a><h3>gdk_x11_display_get_xdisplay ()</h3>
|
677
|
+
<pre class="programlisting"><span class="returnvalue">Display</span> * gdk_x11_display_get_xdisplay (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
|
678
|
+
<p>
|
679
|
+
Returns the X display of a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>.
|
680
|
+
</p>
|
681
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
682
|
+
<colgroup>
|
683
|
+
<col align="left" valign="top">
|
684
|
+
<col>
|
685
|
+
</colgroup>
|
686
|
+
<tbody>
|
687
|
+
<tr>
|
688
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
689
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
690
|
+
</td>
|
691
|
+
</tr>
|
692
|
+
<tr>
|
693
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
694
|
+
<td>an X display. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
695
|
+
</td>
|
696
|
+
</tr>
|
697
|
+
</tbody>
|
698
|
+
</table></div>
|
699
|
+
<p class="since">Since 2.2</p>
|
700
|
+
</div>
|
701
|
+
<hr>
|
702
|
+
<div class="refsect2">
|
703
|
+
<a name="gdk-x11-display-grab"></a><h3>gdk_x11_display_grab ()</h3>
|
704
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_display_grab (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
|
705
|
+
<p>
|
706
|
+
Call <code class="function">XGrabServer()</code> on <em class="parameter"><code>display</code></em>.
|
707
|
+
To ungrab the display again, use <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-ungrab" title="gdk_x11_display_ungrab ()"><code class="function">gdk_x11_display_ungrab()</code></a>.
|
708
|
+
</p>
|
709
|
+
<p>
|
710
|
+
<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-grab" title="gdk_x11_display_grab ()"><code class="function">gdk_x11_display_grab()</code></a>/<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-ungrab" title="gdk_x11_display_ungrab ()"><code class="function">gdk_x11_display_ungrab()</code></a> calls can be nested.
|
711
|
+
</p>
|
712
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
713
|
+
<colgroup>
|
714
|
+
<col align="left" valign="top">
|
715
|
+
<col>
|
716
|
+
</colgroup>
|
717
|
+
<tbody><tr>
|
718
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
719
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
720
|
+
</td>
|
721
|
+
</tr></tbody>
|
722
|
+
</table></div>
|
723
|
+
<p class="since">Since 2.2</p>
|
724
|
+
</div>
|
725
|
+
<hr>
|
726
|
+
<div class="refsect2">
|
727
|
+
<a name="gdk-x11-display-ungrab"></a><h3>gdk_x11_display_ungrab ()</h3>
|
728
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_display_ungrab (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
|
729
|
+
<p>
|
730
|
+
Ungrab <em class="parameter"><code>display</code></em> after it has been grabbed with
|
731
|
+
<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-grab" title="gdk_x11_display_grab ()"><code class="function">gdk_x11_display_grab()</code></a>.
|
732
|
+
</p>
|
733
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
734
|
+
<colgroup>
|
735
|
+
<col align="left" valign="top">
|
736
|
+
<col>
|
737
|
+
</colgroup>
|
738
|
+
<tbody><tr>
|
739
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
740
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
741
|
+
</td>
|
742
|
+
</tr></tbody>
|
743
|
+
</table></div>
|
744
|
+
<p class="since">Since 2.2</p>
|
745
|
+
</div>
|
746
|
+
<hr>
|
747
|
+
<div class="refsect2">
|
748
|
+
<a name="gdk-x11-display-error-trap-push"></a><h3>gdk_x11_display_error_trap_push ()</h3>
|
749
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_display_error_trap_push (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
|
750
|
+
<p>
|
751
|
+
Begins a range of X requests on <em class="parameter"><code>display</code></em> for which X error events
|
752
|
+
will be ignored. Unignored errors (when no trap is pushed) will abort
|
753
|
+
the application. Use <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-error-trap-pop" title="gdk_x11_display_error_trap_pop ()"><code class="function">gdk_x11_display_error_trap_pop()</code></a> or
|
754
|
+
<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-error-trap-pop-ignored" title="gdk_x11_display_error_trap_pop_ignored ()"><code class="function">gdk_x11_display_error_trap_pop_ignored()</code></a>to lift a trap pushed
|
755
|
+
with this function.
|
756
|
+
</p>
|
757
|
+
<p>
|
758
|
+
See also <a class="link" href="gdk3-General.html#gdk-error-trap-push" title="gdk_error_trap_push ()"><code class="function">gdk_error_trap_push()</code></a> to push a trap on all displays.
|
759
|
+
</p>
|
760
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
761
|
+
<colgroup>
|
762
|
+
<col align="left" valign="top">
|
763
|
+
<col>
|
764
|
+
</colgroup>
|
765
|
+
<tbody><tr>
|
766
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
767
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
768
|
+
</td>
|
769
|
+
</tr></tbody>
|
770
|
+
</table></div>
|
771
|
+
<p class="since">Since 3.0</p>
|
772
|
+
</div>
|
773
|
+
<hr>
|
774
|
+
<div class="refsect2">
|
775
|
+
<a name="gdk-x11-display-error-trap-pop"></a><h3>gdk_x11_display_error_trap_pop ()</h3>
|
776
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gdk_x11_display_error_trap_pop (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
|
777
|
+
<p>
|
778
|
+
Pops the error trap pushed by <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-error-trap-push" title="gdk_x11_display_error_trap_push ()"><code class="function">gdk_x11_display_error_trap_push()</code></a>.
|
779
|
+
Will <code class="function">XSync()</code> if necessary and will always block until
|
780
|
+
the error is known to have occurred or not occurred,
|
781
|
+
so the error code can be returned.
|
782
|
+
</p>
|
783
|
+
<p>
|
784
|
+
If you don't need to use the return value,
|
785
|
+
<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-error-trap-pop-ignored" title="gdk_x11_display_error_trap_pop_ignored ()"><code class="function">gdk_x11_display_error_trap_pop_ignored()</code></a> would be more efficient.
|
786
|
+
</p>
|
787
|
+
<p>
|
788
|
+
See <a class="link" href="gdk3-General.html#gdk-error-trap-pop" title="gdk_error_trap_pop ()"><code class="function">gdk_error_trap_pop()</code></a> for the all-displays-at-once
|
789
|
+
equivalent.
|
790
|
+
</p>
|
791
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
792
|
+
<colgroup>
|
793
|
+
<col align="left" valign="top">
|
794
|
+
<col>
|
795
|
+
</colgroup>
|
796
|
+
<tbody>
|
797
|
+
<tr>
|
798
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
799
|
+
<td>the display. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
800
|
+
</td>
|
801
|
+
</tr>
|
802
|
+
<tr>
|
803
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
804
|
+
<td>X error code or 0 on success</td>
|
805
|
+
</tr>
|
806
|
+
</tbody>
|
807
|
+
</table></div>
|
808
|
+
<p class="since">Since 3.0</p>
|
809
|
+
</div>
|
810
|
+
<hr>
|
811
|
+
<div class="refsect2">
|
812
|
+
<a name="gdk-x11-display-error-trap-pop-ignored"></a><h3>gdk_x11_display_error_trap_pop_ignored ()</h3>
|
813
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_display_error_trap_pop_ignored
|
814
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
|
815
|
+
<p>
|
816
|
+
Pops the error trap pushed by <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-error-trap-push" title="gdk_x11_display_error_trap_push ()"><code class="function">gdk_x11_display_error_trap_push()</code></a>.
|
817
|
+
Does not block to see if an error occurred; merely records the
|
818
|
+
range of requests to ignore errors for, and ignores those errors
|
819
|
+
if they arrive asynchronously.
|
820
|
+
</p>
|
821
|
+
<p>
|
822
|
+
See <a class="link" href="gdk3-General.html#gdk-error-trap-pop-ignored" title="gdk_error_trap_pop_ignored ()"><code class="function">gdk_error_trap_pop_ignored()</code></a> for the all-displays-at-once
|
823
|
+
equivalent.
|
824
|
+
</p>
|
825
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
826
|
+
<colgroup>
|
827
|
+
<col align="left" valign="top">
|
828
|
+
<col>
|
829
|
+
</colgroup>
|
830
|
+
<tbody><tr>
|
831
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
832
|
+
<td>the display. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
833
|
+
</td>
|
834
|
+
</tr></tbody>
|
835
|
+
</table></div>
|
836
|
+
<p class="since">Since 3.0</p>
|
837
|
+
</div>
|
838
|
+
<hr>
|
839
|
+
<div class="refsect2">
|
840
|
+
<a name="gdk-x11-display-set-cursor-theme"></a><h3>gdk_x11_display_set_cursor_theme ()</h3>
|
841
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_display_set_cursor_theme (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
842
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *theme</code></em>,
|
843
|
+
<em class="parameter"><code>const <span class="type">gint</span> size</code></em>);</pre>
|
844
|
+
<p>
|
845
|
+
Sets the cursor theme from which the images for cursor
|
846
|
+
should be taken.
|
847
|
+
</p>
|
848
|
+
<p>
|
849
|
+
If the windowing system supports it, existing cursors created
|
850
|
+
with <a class="link" href="gdk3-Cursors.html#gdk-cursor-new" title="gdk_cursor_new ()"><code class="function">gdk_cursor_new()</code></a>, <a class="link" href="gdk3-Cursors.html#gdk-cursor-new-for-display" title="gdk_cursor_new_for_display ()"><code class="function">gdk_cursor_new_for_display()</code></a> and
|
851
|
+
<code class="function">gdk_cursor_new_for_name()</code> are updated to reflect the theme
|
852
|
+
change. Custom cursors constructed with
|
853
|
+
<a class="link" href="gdk3-Cursors.html#gdk-cursor-new-from-pixbuf" title="gdk_cursor_new_from_pixbuf ()"><code class="function">gdk_cursor_new_from_pixbuf()</code></a> will have to be handled
|
854
|
+
by the application (GTK+ applications can learn about
|
855
|
+
cursor theme changes by listening for change notification
|
856
|
+
for the corresponding <span class="type">GtkSetting</span>).
|
857
|
+
</p>
|
858
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
859
|
+
<colgroup>
|
860
|
+
<col align="left" valign="top">
|
861
|
+
<col>
|
862
|
+
</colgroup>
|
863
|
+
<tbody>
|
864
|
+
<tr>
|
865
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
866
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
867
|
+
</td>
|
868
|
+
</tr>
|
869
|
+
<tr>
|
870
|
+
<td><p><span class="term"><em class="parameter"><code>theme</code></em> :</span></p></td>
|
871
|
+
<td>the name of the cursor theme to use, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> to unset
|
872
|
+
a previously set value</td>
|
873
|
+
</tr>
|
874
|
+
<tr>
|
875
|
+
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
876
|
+
<td>the cursor size to use, or 0 to keep the previous size</td>
|
877
|
+
</tr>
|
878
|
+
</tbody>
|
879
|
+
</table></div>
|
880
|
+
<p class="since">Since 2.8</p>
|
881
|
+
</div>
|
882
|
+
<hr>
|
883
|
+
<div class="refsect2">
|
884
|
+
<a name="gdk-x11-register-standard-event-type"></a><h3>gdk_x11_register_standard_event_type ()</h3>
|
885
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_register_standard_event_type
|
886
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
887
|
+
<em class="parameter"><code><span class="type">gint</span> event_base</code></em>,
|
888
|
+
<em class="parameter"><code><span class="type">gint</span> n_events</code></em>);</pre>
|
889
|
+
<p>
|
890
|
+
Registers interest in receiving extension events with type codes
|
891
|
+
between <em class="parameter"><code>event_base</code></em> and <code class="literal">event_base + n_events - 1</code>.
|
892
|
+
The registered events must have the window field in the same place
|
893
|
+
as core X events (this is not the case for e.g. XKB extension events).
|
894
|
+
</p>
|
895
|
+
<p>
|
896
|
+
If an event type is registered, events of this type will go through
|
897
|
+
global and window-specific filters (see <a class="link" href="gdk3-Windows.html#gdk-window-add-filter" title="gdk_window_add_filter ()"><code class="function">gdk_window_add_filter()</code></a>).
|
898
|
+
Unregistered events will only go through global filters.
|
899
|
+
GDK may register the events of some X extensions on its own.
|
900
|
+
</p>
|
901
|
+
<p>
|
902
|
+
This function should only be needed in unusual circumstances, e.g.
|
903
|
+
when filtering XInput extension events on the root window.
|
904
|
+
</p>
|
905
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
906
|
+
<colgroup>
|
907
|
+
<col align="left" valign="top">
|
908
|
+
<col>
|
909
|
+
</colgroup>
|
910
|
+
<tbody>
|
911
|
+
<tr>
|
912
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
913
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
|
914
|
+
</td>
|
915
|
+
</tr>
|
916
|
+
<tr>
|
917
|
+
<td><p><span class="term"><em class="parameter"><code>event_base</code></em> :</span></p></td>
|
918
|
+
<td>first event type code to register</td>
|
919
|
+
</tr>
|
920
|
+
<tr>
|
921
|
+
<td><p><span class="term"><em class="parameter"><code>n_events</code></em> :</span></p></td>
|
922
|
+
<td>number of event type codes to register</td>
|
923
|
+
</tr>
|
924
|
+
</tbody>
|
925
|
+
</table></div>
|
926
|
+
<p class="since">Since 2.4</p>
|
927
|
+
</div>
|
928
|
+
<hr>
|
929
|
+
<div class="refsect2">
|
930
|
+
<a name="gdk-x11-screen-get-screen-number"></a><h3>gdk_x11_screen_get_screen_number ()</h3>
|
931
|
+
<pre class="programlisting"><span class="returnvalue">int</span> gdk_x11_screen_get_screen_number (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
|
932
|
+
<p>
|
933
|
+
Returns the index of a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
|
934
|
+
</p>
|
935
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
936
|
+
<colgroup>
|
937
|
+
<col align="left" valign="top">
|
938
|
+
<col>
|
939
|
+
</colgroup>
|
940
|
+
<tbody>
|
941
|
+
<tr>
|
942
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
943
|
+
<td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Screen]</span>
|
944
|
+
</td>
|
945
|
+
</tr>
|
946
|
+
<tr>
|
947
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
948
|
+
<td>the position of <em class="parameter"><code>screen</code></em> among the screens
|
949
|
+
of its display</td>
|
950
|
+
</tr>
|
951
|
+
</tbody>
|
952
|
+
</table></div>
|
953
|
+
<p class="since">Since 2.2</p>
|
954
|
+
</div>
|
955
|
+
<hr>
|
956
|
+
<div class="refsect2">
|
957
|
+
<a name="gdk-x11-screen-get-xscreen"></a><h3>gdk_x11_screen_get_xscreen ()</h3>
|
958
|
+
<pre class="programlisting"><span class="returnvalue">Screen</span> * gdk_x11_screen_get_xscreen (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
|
959
|
+
<p>
|
960
|
+
Returns the screen of a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
|
961
|
+
</p>
|
962
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
963
|
+
<colgroup>
|
964
|
+
<col align="left" valign="top">
|
965
|
+
<col>
|
966
|
+
</colgroup>
|
967
|
+
<tbody>
|
968
|
+
<tr>
|
969
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
970
|
+
<td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Screen]</span>
|
971
|
+
</td>
|
972
|
+
</tr>
|
973
|
+
<tr>
|
974
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
975
|
+
<td>an Xlib <span class="type">Screen*</span>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
976
|
+
</td>
|
977
|
+
</tr>
|
978
|
+
</tbody>
|
979
|
+
</table></div>
|
980
|
+
<p class="since">Since 2.2</p>
|
981
|
+
</div>
|
982
|
+
<hr>
|
983
|
+
<div class="refsect2">
|
984
|
+
<a name="gdk-x11-screen-get-window-manager-name"></a><h3>gdk_x11_screen_get_window_manager_name ()</h3>
|
985
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> * gdk_x11_screen_get_window_manager_name
|
986
|
+
(<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
|
987
|
+
<p>
|
988
|
+
Returns the name of the window manager for <em class="parameter"><code>screen</code></em>.
|
989
|
+
</p>
|
990
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
991
|
+
<colgroup>
|
992
|
+
<col align="left" valign="top">
|
993
|
+
<col>
|
994
|
+
</colgroup>
|
995
|
+
<tbody>
|
996
|
+
<tr>
|
997
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
998
|
+
<td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Screen]</span>
|
999
|
+
</td>
|
1000
|
+
</tr>
|
1001
|
+
<tr>
|
1002
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1003
|
+
<td>the name of the window manager screen <em class="parameter"><code>screen</code></em>, or
|
1004
|
+
"unknown" if the window manager is unknown. The string is owned by GDK
|
1005
|
+
and should not be freed.</td>
|
1006
|
+
</tr>
|
1007
|
+
</tbody>
|
1008
|
+
</table></div>
|
1009
|
+
<p class="since">Since 2.2</p>
|
1010
|
+
</div>
|
1011
|
+
<hr>
|
1012
|
+
<div class="refsect2">
|
1013
|
+
<a name="gdk-x11-screen-get-monitor-output"></a><h3>gdk_x11_screen_get_monitor_output ()</h3>
|
1014
|
+
<pre class="programlisting"><span class="returnvalue">XID</span> gdk_x11_screen_get_monitor_output (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
|
1015
|
+
<em class="parameter"><code><span class="type">gint</span> monitor_num</code></em>);</pre>
|
1016
|
+
<p>
|
1017
|
+
Gets the XID of the specified output/monitor.
|
1018
|
+
If the X server does not support version 1.2 of the RANDR
|
1019
|
+
extension, 0 is returned.
|
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>screen</code></em> :</span></p></td>
|
1029
|
+
<td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Screen]</span>
|
1030
|
+
</td>
|
1031
|
+
</tr>
|
1032
|
+
<tr>
|
1033
|
+
<td><p><span class="term"><em class="parameter"><code>monitor_num</code></em> :</span></p></td>
|
1034
|
+
<td>number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)</td>
|
1035
|
+
</tr>
|
1036
|
+
<tr>
|
1037
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1038
|
+
<td>the XID of the monitor</td>
|
1039
|
+
</tr>
|
1040
|
+
</tbody>
|
1041
|
+
</table></div>
|
1042
|
+
<p class="since">Since 2.14</p>
|
1043
|
+
</div>
|
1044
|
+
<hr>
|
1045
|
+
<div class="refsect2">
|
1046
|
+
<a name="gdk-x11-screen-lookup-visual"></a><h3>gdk_x11_screen_lookup_visual ()</h3>
|
1047
|
+
<pre class="programlisting"><a class="link" href="gdk3-Visuals.html#GdkVisual"><span class="returnvalue">GdkVisual</span></a> * gdk_x11_screen_lookup_visual (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
|
1048
|
+
<em class="parameter"><code><span class="type">VisualID</span> xvisualid</code></em>);</pre>
|
1049
|
+
<p>
|
1050
|
+
Looks up the <a class="link" href="gdk3-Visuals.html#GdkVisual"><span class="type">GdkVisual</span></a> for a particular screen and X Visual ID.
|
1051
|
+
</p>
|
1052
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1053
|
+
<colgroup>
|
1054
|
+
<col align="left" valign="top">
|
1055
|
+
<col>
|
1056
|
+
</colgroup>
|
1057
|
+
<tbody>
|
1058
|
+
<tr>
|
1059
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
1060
|
+
<td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Screen]</span>
|
1061
|
+
</td>
|
1062
|
+
</tr>
|
1063
|
+
<tr>
|
1064
|
+
<td><p><span class="term"><em class="parameter"><code>xvisualid</code></em> :</span></p></td>
|
1065
|
+
<td>an X Visual ID.</td>
|
1066
|
+
</tr>
|
1067
|
+
<tr>
|
1068
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1069
|
+
<td>the <a class="link" href="gdk3-Visuals.html#GdkVisual"><span class="type">GdkVisual</span></a> (owned by the screen
|
1070
|
+
object), or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if the visual ID wasn't found. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1071
|
+
</td>
|
1072
|
+
</tr>
|
1073
|
+
</tbody>
|
1074
|
+
</table></div>
|
1075
|
+
<p class="since">Since 2.2</p>
|
1076
|
+
</div>
|
1077
|
+
<hr>
|
1078
|
+
<div class="refsect2">
|
1079
|
+
<a name="gdk-x11-screen-supports-net-wm-hint"></a><h3>gdk_x11_screen_supports_net_wm_hint ()</h3>
|
1080
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gdk_x11_screen_supports_net_wm_hint (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
|
1081
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> property</code></em>);</pre>
|
1082
|
+
<p>
|
1083
|
+
This function is specific to the X11 backend of GDK, and indicates
|
1084
|
+
whether the window manager supports a certain hint from the
|
1085
|
+
Extended Window Manager Hints Specification. You can find this
|
1086
|
+
specification on
|
1087
|
+
<a class="ulink" href="http://www.freedesktop.org" target="_top">http://www.freedesktop.org</a>.
|
1088
|
+
</p>
|
1089
|
+
<p>
|
1090
|
+
When using this function, keep in mind that the window manager
|
1091
|
+
can change over time; so you shouldn't use this function in
|
1092
|
+
a way that impacts persistent application state. A common bug
|
1093
|
+
is that your application can start up before the window manager
|
1094
|
+
does when the user logs in, and before the window manager starts
|
1095
|
+
<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-screen-supports-net-wm-hint" title="gdk_x11_screen_supports_net_wm_hint ()"><code class="function">gdk_x11_screen_supports_net_wm_hint()</code></a> will return <code class="literal">FALSE</code> for every property.
|
1096
|
+
You can monitor the window_manager_changed signal on <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> to detect
|
1097
|
+
a window manager change.
|
1098
|
+
</p>
|
1099
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1100
|
+
<colgroup>
|
1101
|
+
<col align="left" valign="top">
|
1102
|
+
<col>
|
1103
|
+
</colgroup>
|
1104
|
+
<tbody>
|
1105
|
+
<tr>
|
1106
|
+
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
1107
|
+
<td>the relevant <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Screen]</span>
|
1108
|
+
</td>
|
1109
|
+
</tr>
|
1110
|
+
<tr>
|
1111
|
+
<td><p><span class="term"><em class="parameter"><code>property</code></em> :</span></p></td>
|
1112
|
+
<td>a property atom.</td>
|
1113
|
+
</tr>
|
1114
|
+
<tr>
|
1115
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1116
|
+
<td>
|
1117
|
+
<code class="literal">TRUE</code> if the window manager supports <em class="parameter"><code>property</code></em>
|
1118
|
+
</td>
|
1119
|
+
</tr>
|
1120
|
+
</tbody>
|
1121
|
+
</table></div>
|
1122
|
+
<p class="since">Since 2.2</p>
|
1123
|
+
</div>
|
1124
|
+
<hr>
|
1125
|
+
<div class="refsect2">
|
1126
|
+
<a name="gdk-x11-window-foreign-new-for-display"></a><h3>gdk_x11_window_foreign_new_for_display ()</h3>
|
1127
|
+
<pre class="programlisting"><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * gdk_x11_window_foreign_new_for_display
|
1128
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
1129
|
+
<em class="parameter"><code><span class="type">Window</span> window</code></em>);</pre>
|
1130
|
+
<p>
|
1131
|
+
Wraps a native window in a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>. The function will try to
|
1132
|
+
look up the window using <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-window-lookup-for-display" title="gdk_x11_window_lookup_for_display ()"><code class="function">gdk_x11_window_lookup_for_display()</code></a> first.
|
1133
|
+
If it does not find it there, it will create a new window.
|
1134
|
+
</p>
|
1135
|
+
<p>
|
1136
|
+
This may fail if the window has been destroyed. If the window
|
1137
|
+
was already known to GDK, a new reference to the existing
|
1138
|
+
<a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> is returned.
|
1139
|
+
</p>
|
1140
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1141
|
+
<colgroup>
|
1142
|
+
<col align="left" valign="top">
|
1143
|
+
<col>
|
1144
|
+
</colgroup>
|
1145
|
+
<tbody>
|
1146
|
+
<tr>
|
1147
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
1148
|
+
<td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where the window handle comes from.</td>
|
1149
|
+
</tr>
|
1150
|
+
<tr>
|
1151
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1152
|
+
<td>an XLib <span class="type">Window</span>
|
1153
|
+
</td>
|
1154
|
+
</tr>
|
1155
|
+
<tr>
|
1156
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1157
|
+
<td>a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> wrapper for the native
|
1158
|
+
window, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if the window has been destroyed. The wrapper
|
1159
|
+
will be newly created, if one doesn't exist already. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1160
|
+
</td>
|
1161
|
+
</tr>
|
1162
|
+
</tbody>
|
1163
|
+
</table></div>
|
1164
|
+
<p class="since">Since 2.24</p>
|
1165
|
+
</div>
|
1166
|
+
<hr>
|
1167
|
+
<div class="refsect2">
|
1168
|
+
<a name="gdk-x11-window-lookup-for-display"></a><h3>gdk_x11_window_lookup_for_display ()</h3>
|
1169
|
+
<pre class="programlisting"><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * gdk_x11_window_lookup_for_display (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
1170
|
+
<em class="parameter"><code><span class="type">Window</span> window</code></em>);</pre>
|
1171
|
+
<p>
|
1172
|
+
Looks up the <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> that wraps the given native window handle.
|
1173
|
+
</p>
|
1174
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1175
|
+
<colgroup>
|
1176
|
+
<col align="left" valign="top">
|
1177
|
+
<col>
|
1178
|
+
</colgroup>
|
1179
|
+
<tbody>
|
1180
|
+
<tr>
|
1181
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
1182
|
+
<td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> corresponding to the
|
1183
|
+
window handle. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Window]</span>
|
1184
|
+
</td>
|
1185
|
+
</tr>
|
1186
|
+
<tr>
|
1187
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1188
|
+
<td>an XLib <span class="type">Window</span>
|
1189
|
+
</td>
|
1190
|
+
</tr>
|
1191
|
+
<tr>
|
1192
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1193
|
+
<td>the <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> wrapper for the native
|
1194
|
+
window, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if there is none. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1195
|
+
</td>
|
1196
|
+
</tr>
|
1197
|
+
</tbody>
|
1198
|
+
</table></div>
|
1199
|
+
<p class="since">Since 2.24</p>
|
1200
|
+
</div>
|
1201
|
+
<hr>
|
1202
|
+
<div class="refsect2">
|
1203
|
+
<a name="gdk-x11-window-get-xid"></a><h3>gdk_x11_window_get_xid ()</h3>
|
1204
|
+
<pre class="programlisting"><span class="returnvalue">Window</span> gdk_x11_window_get_xid (<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
|
1205
|
+
<p>
|
1206
|
+
Returns the X resource (window) belonging to a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.
|
1207
|
+
</p>
|
1208
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1209
|
+
<colgroup>
|
1210
|
+
<col align="left" valign="top">
|
1211
|
+
<col>
|
1212
|
+
</colgroup>
|
1213
|
+
<tbody>
|
1214
|
+
<tr>
|
1215
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1216
|
+
<td>a native <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Window]</span>
|
1217
|
+
</td>
|
1218
|
+
</tr>
|
1219
|
+
<tr>
|
1220
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1221
|
+
<td>the ID of <em class="parameter"><code>drawable</code></em>'s X resource.</td>
|
1222
|
+
</tr>
|
1223
|
+
</tbody>
|
1224
|
+
</table></div>
|
1225
|
+
</div>
|
1226
|
+
<hr>
|
1227
|
+
<div class="refsect2">
|
1228
|
+
<a name="gdk-x11-window-set-hide-titlebar-when-maximized"></a><h3>gdk_x11_window_set_hide_titlebar_when_maximized ()</h3>
|
1229
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_window_set_hide_titlebar_when_maximized
|
1230
|
+
(<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
1231
|
+
<em class="parameter"><code><span class="type">gboolean</span> hide_titlebar_when_maximized</code></em>);</pre>
|
1232
|
+
<p>
|
1233
|
+
Set a hint for the window manager, requesting that the titlebar
|
1234
|
+
should be hidden when the window is maximized.
|
1235
|
+
</p>
|
1236
|
+
<p>
|
1237
|
+
Note that this property is automatically updated by GTK+, so this
|
1238
|
+
function should only be used by applications which do not use GTK+
|
1239
|
+
to create toplevel windows.
|
1240
|
+
</p>
|
1241
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1242
|
+
<colgroup>
|
1243
|
+
<col align="left" valign="top">
|
1244
|
+
<col>
|
1245
|
+
</colgroup>
|
1246
|
+
<tbody>
|
1247
|
+
<tr>
|
1248
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1249
|
+
<td>a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Window]</span>
|
1250
|
+
</td>
|
1251
|
+
</tr>
|
1252
|
+
<tr>
|
1253
|
+
<td><p><span class="term"><em class="parameter"><code>hide_titlebar_when_maximized</code></em> :</span></p></td>
|
1254
|
+
<td>whether to hide the titlebar when
|
1255
|
+
maximized</td>
|
1256
|
+
</tr>
|
1257
|
+
</tbody>
|
1258
|
+
</table></div>
|
1259
|
+
<p class="since">Since 3.4</p>
|
1260
|
+
</div>
|
1261
|
+
<hr>
|
1262
|
+
<div class="refsect2">
|
1263
|
+
<a name="gdk-x11-window-set-theme-variant"></a><h3>gdk_x11_window_set_theme_variant ()</h3>
|
1264
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_window_set_theme_variant (<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
1265
|
+
<em class="parameter"><code><span class="type">char</span> *variant</code></em>);</pre>
|
1266
|
+
<p>
|
1267
|
+
GTK+ applications can request a dark theme variant. In order to
|
1268
|
+
make other applications - namely window managers using GTK+ for
|
1269
|
+
themeing - aware of this choice, GTK+ uses this function to
|
1270
|
+
export the requested theme variant as _GTK_THEME_VARIANT property
|
1271
|
+
on toplevel windows.
|
1272
|
+
</p>
|
1273
|
+
<p>
|
1274
|
+
Note that this property is automatically updated by GTK+, so this
|
1275
|
+
function should only be used by applications which do not use GTK+
|
1276
|
+
to create toplevel windows.
|
1277
|
+
</p>
|
1278
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1279
|
+
<colgroup>
|
1280
|
+
<col align="left" valign="top">
|
1281
|
+
<col>
|
1282
|
+
</colgroup>
|
1283
|
+
<tbody>
|
1284
|
+
<tr>
|
1285
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1286
|
+
<td>a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Window]</span>
|
1287
|
+
</td>
|
1288
|
+
</tr>
|
1289
|
+
<tr>
|
1290
|
+
<td><p><span class="term"><em class="parameter"><code>variant</code></em> :</span></p></td>
|
1291
|
+
<td>the theme variant to export</td>
|
1292
|
+
</tr>
|
1293
|
+
</tbody>
|
1294
|
+
</table></div>
|
1295
|
+
<p class="since">Since 3.2</p>
|
1296
|
+
</div>
|
1297
|
+
<hr>
|
1298
|
+
<div class="refsect2">
|
1299
|
+
<a name="gdk-x11-window-set-user-time"></a><h3>gdk_x11_window_set_user_time ()</h3>
|
1300
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_window_set_user_time (<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
|
1301
|
+
<em class="parameter"><code><span class="type">guint32</span> timestamp</code></em>);</pre>
|
1302
|
+
<p>
|
1303
|
+
The application can use this call to update the _NET_WM_USER_TIME
|
1304
|
+
property on a toplevel window. This property stores an Xserver
|
1305
|
+
time which represents the time of the last user input event
|
1306
|
+
received for this window. This property may be used by the window
|
1307
|
+
manager to alter the focus, stacking, and/or placement behavior of
|
1308
|
+
windows when they are mapped depending on whether the new window
|
1309
|
+
was created by a user action or is a "pop-up" window activated by a
|
1310
|
+
timer or some other event.
|
1311
|
+
</p>
|
1312
|
+
<p>
|
1313
|
+
Note that this property is automatically updated by GDK, so this
|
1314
|
+
function should only be used by applications which handle input
|
1315
|
+
events bypassing GDK.
|
1316
|
+
</p>
|
1317
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1318
|
+
<colgroup>
|
1319
|
+
<col align="left" valign="top">
|
1320
|
+
<col>
|
1321
|
+
</colgroup>
|
1322
|
+
<tbody>
|
1323
|
+
<tr>
|
1324
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1325
|
+
<td>A toplevel <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Window]</span>
|
1326
|
+
</td>
|
1327
|
+
</tr>
|
1328
|
+
<tr>
|
1329
|
+
<td><p><span class="term"><em class="parameter"><code>timestamp</code></em> :</span></p></td>
|
1330
|
+
<td>An XServer timestamp to which the property should be set</td>
|
1331
|
+
</tr>
|
1332
|
+
</tbody>
|
1333
|
+
</table></div>
|
1334
|
+
<p class="since">Since 2.6</p>
|
1335
|
+
</div>
|
1336
|
+
<hr>
|
1337
|
+
<div class="refsect2">
|
1338
|
+
<a name="gdk-x11-window-move-to-current-desktop"></a><h3>gdk_x11_window_move_to_current_desktop ()</h3>
|
1339
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_window_move_to_current_desktop
|
1340
|
+
(<em class="parameter"><code><a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
|
1341
|
+
<p>
|
1342
|
+
Moves the window to the correct workspace when running under a
|
1343
|
+
window manager that supports multiple workspaces, as described
|
1344
|
+
in the <a class="ulink" href="http://www.freedesktop.org/Standards/wm-spec" target="_top">Extended
|
1345
|
+
Window Manager Hints</a>. Will not do anything if the
|
1346
|
+
window is already on all workspaces.
|
1347
|
+
</p>
|
1348
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1349
|
+
<colgroup>
|
1350
|
+
<col align="left" valign="top">
|
1351
|
+
<col>
|
1352
|
+
</colgroup>
|
1353
|
+
<tbody><tr>
|
1354
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1355
|
+
<td>a <a class="link" href="gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Window]</span>
|
1356
|
+
</td>
|
1357
|
+
</tr></tbody>
|
1358
|
+
</table></div>
|
1359
|
+
<p class="since">Since 2.8</p>
|
1360
|
+
</div>
|
1361
|
+
<hr>
|
1362
|
+
<div class="refsect2">
|
1363
|
+
<a name="gdk-x11-get-default-root-xwindow"></a><h3>gdk_x11_get_default_root_xwindow ()</h3>
|
1364
|
+
<pre class="programlisting"><span class="returnvalue">Window</span> gdk_x11_get_default_root_xwindow (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1365
|
+
<p>
|
1366
|
+
Gets the root window of the default screen
|
1367
|
+
(see <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-get-default-screen" title="gdk_x11_get_default_screen ()"><code class="function">gdk_x11_get_default_screen()</code></a>).
|
1368
|
+
</p>
|
1369
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1370
|
+
<colgroup>
|
1371
|
+
<col align="left" valign="top">
|
1372
|
+
<col>
|
1373
|
+
</colgroup>
|
1374
|
+
<tbody><tr>
|
1375
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1376
|
+
<td>an Xlib <span class="type">Window</span>.</td>
|
1377
|
+
</tr></tbody>
|
1378
|
+
</table></div>
|
1379
|
+
</div>
|
1380
|
+
<hr>
|
1381
|
+
<div class="refsect2">
|
1382
|
+
<a name="gdk-x11-get-default-screen"></a><h3>gdk_x11_get_default_screen ()</h3>
|
1383
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gdk_x11_get_default_screen (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1384
|
+
<p>
|
1385
|
+
Gets the default GTK+ screen number.
|
1386
|
+
</p>
|
1387
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1388
|
+
<colgroup>
|
1389
|
+
<col align="left" valign="top">
|
1390
|
+
<col>
|
1391
|
+
</colgroup>
|
1392
|
+
<tbody><tr>
|
1393
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1394
|
+
<td>returns the screen number specified by
|
1395
|
+
the --display command line option or the DISPLAY environment
|
1396
|
+
variable when <a class="link" href="gdk3-General.html#gdk-init" title="gdk_init ()"><code class="function">gdk_init()</code></a> calls <code class="function">XOpenDisplay()</code>.</td>
|
1397
|
+
</tr></tbody>
|
1398
|
+
</table></div>
|
1399
|
+
</div>
|
1400
|
+
<hr>
|
1401
|
+
<div class="refsect2">
|
1402
|
+
<a name="gdk-x11-get-default-xdisplay"></a><h3>gdk_x11_get_default_xdisplay ()</h3>
|
1403
|
+
<pre class="programlisting"><span class="returnvalue">Display</span> * gdk_x11_get_default_xdisplay (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1404
|
+
<p>
|
1405
|
+
Gets the default GTK+ display.
|
1406
|
+
</p>
|
1407
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1408
|
+
<colgroup>
|
1409
|
+
<col align="left" valign="top">
|
1410
|
+
<col>
|
1411
|
+
</colgroup>
|
1412
|
+
<tbody><tr>
|
1413
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1414
|
+
<td>the Xlib <span class="type">Display*</span> for
|
1415
|
+
the display specified in the <code class="option">--display</code> command
|
1416
|
+
line option or the <code class="envar">DISPLAY</code> environment variable. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1417
|
+
</td>
|
1418
|
+
</tr></tbody>
|
1419
|
+
</table></div>
|
1420
|
+
</div>
|
1421
|
+
<hr>
|
1422
|
+
<div class="refsect2">
|
1423
|
+
<a name="gdk-x11-grab-server"></a><h3>gdk_x11_grab_server ()</h3>
|
1424
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_grab_server (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1425
|
+
<p>
|
1426
|
+
Call <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-grab" title="gdk_x11_display_grab ()"><code class="function">gdk_x11_display_grab()</code></a> on the default display.
|
1427
|
+
To ungrab the server again, use <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-ungrab-server" title="gdk_x11_ungrab_server ()"><code class="function">gdk_x11_ungrab_server()</code></a>.
|
1428
|
+
</p>
|
1429
|
+
<p>
|
1430
|
+
<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-grab-server" title="gdk_x11_grab_server ()"><code class="function">gdk_x11_grab_server()</code></a>/<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-ungrab-server" title="gdk_x11_ungrab_server ()"><code class="function">gdk_x11_ungrab_server()</code></a> calls can be nested.
|
1431
|
+
</p>
|
1432
|
+
</div>
|
1433
|
+
<hr>
|
1434
|
+
<div class="refsect2">
|
1435
|
+
<a name="gdk-x11-ungrab-server"></a><h3>gdk_x11_ungrab_server ()</h3>
|
1436
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_ungrab_server (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1437
|
+
<p>
|
1438
|
+
Ungrab the default display after it has been grabbed with
|
1439
|
+
<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-grab-server" title="gdk_x11_grab_server ()"><code class="function">gdk_x11_grab_server()</code></a>.
|
1440
|
+
</p>
|
1441
|
+
</div>
|
1442
|
+
<hr>
|
1443
|
+
<div class="refsect2">
|
1444
|
+
<a name="gdk-x11-cursor-get-xcursor"></a><h3>gdk_x11_cursor_get_xcursor ()</h3>
|
1445
|
+
<pre class="programlisting"><span class="returnvalue">Cursor</span> gdk_x11_cursor_get_xcursor (<em class="parameter"><code><a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);</pre>
|
1446
|
+
<p>
|
1447
|
+
Returns the X cursor belonging to a <a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a>.
|
1448
|
+
</p>
|
1449
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1450
|
+
<colgroup>
|
1451
|
+
<col align="left" valign="top">
|
1452
|
+
<col>
|
1453
|
+
</colgroup>
|
1454
|
+
<tbody>
|
1455
|
+
<tr>
|
1456
|
+
<td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
|
1457
|
+
<td>a <a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Cursor]</span>
|
1458
|
+
</td>
|
1459
|
+
</tr>
|
1460
|
+
<tr>
|
1461
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1462
|
+
<td>an Xlib <span class="type">Cursor</span>.</td>
|
1463
|
+
</tr>
|
1464
|
+
</tbody>
|
1465
|
+
</table></div>
|
1466
|
+
</div>
|
1467
|
+
<hr>
|
1468
|
+
<div class="refsect2">
|
1469
|
+
<a name="gdk-x11-cursor-get-xdisplay"></a><h3>gdk_x11_cursor_get_xdisplay ()</h3>
|
1470
|
+
<pre class="programlisting"><span class="returnvalue">Display</span> * gdk_x11_cursor_get_xdisplay (<em class="parameter"><code><a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);</pre>
|
1471
|
+
<p>
|
1472
|
+
Returns the display of a <a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a>.
|
1473
|
+
</p>
|
1474
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1475
|
+
<colgroup>
|
1476
|
+
<col align="left" valign="top">
|
1477
|
+
<col>
|
1478
|
+
</colgroup>
|
1479
|
+
<tbody>
|
1480
|
+
<tr>
|
1481
|
+
<td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
|
1482
|
+
<td>a <a class="link" href="gdk3-Cursors.html#GdkCursor"><span class="type">GdkCursor</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Cursor]</span>
|
1483
|
+
</td>
|
1484
|
+
</tr>
|
1485
|
+
<tr>
|
1486
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1487
|
+
<td>an Xlib <span class="type">Display*</span>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1488
|
+
</td>
|
1489
|
+
</tr>
|
1490
|
+
</tbody>
|
1491
|
+
</table></div>
|
1492
|
+
</div>
|
1493
|
+
<hr>
|
1494
|
+
<div class="refsect2">
|
1495
|
+
<a name="gdk-x11-keymap-get-group-for-state"></a><h3>gdk_x11_keymap_get_group_for_state ()</h3>
|
1496
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gdk_x11_keymap_get_group_for_state (<em class="parameter"><code><a class="link" href="gdk3-Keyboard-Handling.html#GdkKeymap"><span class="type">GdkKeymap</span></a> *keymap</code></em>,
|
1497
|
+
<em class="parameter"><code><span class="type">guint</span> state</code></em>);</pre>
|
1498
|
+
<p>
|
1499
|
+
Extracts the group from the state field sent in an X Key event.
|
1500
|
+
This is only needed for code processing raw X events, since <a class="link" href="gdk3-Event-Structures.html#GdkEventKey" title="struct GdkEventKey"><span class="type">GdkEventKey</span></a>
|
1501
|
+
directly includes an is_modifier field.
|
1502
|
+
</p>
|
1503
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1504
|
+
<colgroup>
|
1505
|
+
<col align="left" valign="top">
|
1506
|
+
<col>
|
1507
|
+
</colgroup>
|
1508
|
+
<tbody>
|
1509
|
+
<tr>
|
1510
|
+
<td><p><span class="term"><em class="parameter"><code>keymap</code></em> :</span></p></td>
|
1511
|
+
<td>a <span class="type">GdkX11Keymap</span>
|
1512
|
+
</td>
|
1513
|
+
</tr>
|
1514
|
+
<tr>
|
1515
|
+
<td><p><span class="term"><em class="parameter"><code>state</code></em> :</span></p></td>
|
1516
|
+
<td>raw state returned from X</td>
|
1517
|
+
</tr>
|
1518
|
+
<tr>
|
1519
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1520
|
+
<td>the index of the active keyboard group for the event</td>
|
1521
|
+
</tr>
|
1522
|
+
</tbody>
|
1523
|
+
</table></div>
|
1524
|
+
<p class="since">Since 3.6</p>
|
1525
|
+
</div>
|
1526
|
+
<hr>
|
1527
|
+
<div class="refsect2">
|
1528
|
+
<a name="gdk-x11-keymap-key-is-modifier"></a><h3>gdk_x11_keymap_key_is_modifier ()</h3>
|
1529
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gdk_x11_keymap_key_is_modifier (<em class="parameter"><code><a class="link" href="gdk3-Keyboard-Handling.html#GdkKeymap"><span class="type">GdkKeymap</span></a> *keymap</code></em>,
|
1530
|
+
<em class="parameter"><code><span class="type">guint</span> keycode</code></em>);</pre>
|
1531
|
+
<p>
|
1532
|
+
Determines whether a particular key code represents a key that
|
1533
|
+
is a modifier. That is, it's a key that normally just affects
|
1534
|
+
the keyboard state and the behavior of other keys rather than
|
1535
|
+
producing a direct effect itself. This is only needed for code
|
1536
|
+
processing raw X events, since <a class="link" href="gdk3-Event-Structures.html#GdkEventKey" title="struct GdkEventKey"><span class="type">GdkEventKey</span></a> directly includes
|
1537
|
+
an is_modifier field.
|
1538
|
+
</p>
|
1539
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1540
|
+
<colgroup>
|
1541
|
+
<col align="left" valign="top">
|
1542
|
+
<col>
|
1543
|
+
</colgroup>
|
1544
|
+
<tbody>
|
1545
|
+
<tr>
|
1546
|
+
<td><p><span class="term"><em class="parameter"><code>keymap</code></em> :</span></p></td>
|
1547
|
+
<td>a <span class="type">GdkX11Keymap</span>
|
1548
|
+
</td>
|
1549
|
+
</tr>
|
1550
|
+
<tr>
|
1551
|
+
<td><p><span class="term"><em class="parameter"><code>keycode</code></em> :</span></p></td>
|
1552
|
+
<td>the hardware keycode from a key event</td>
|
1553
|
+
</tr>
|
1554
|
+
<tr>
|
1555
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1556
|
+
<td>
|
1557
|
+
<code class="literal">TRUE</code> if the hardware keycode is a modifier key</td>
|
1558
|
+
</tr>
|
1559
|
+
</tbody>
|
1560
|
+
</table></div>
|
1561
|
+
<p class="since">Since 3.6</p>
|
1562
|
+
</div>
|
1563
|
+
<hr>
|
1564
|
+
<div class="refsect2">
|
1565
|
+
<a name="gdk-x11-visual-get-xvisual"></a><h3>gdk_x11_visual_get_xvisual ()</h3>
|
1566
|
+
<pre class="programlisting"><span class="returnvalue">Visual</span> * gdk_x11_visual_get_xvisual (<em class="parameter"><code><a class="link" href="gdk3-Visuals.html#GdkVisual"><span class="type">GdkVisual</span></a> *visual</code></em>);</pre>
|
1567
|
+
<p>
|
1568
|
+
Returns the X visual belonging to a <a class="link" href="gdk3-Visuals.html#GdkVisual"><span class="type">GdkVisual</span></a>.
|
1569
|
+
</p>
|
1570
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1571
|
+
<colgroup>
|
1572
|
+
<col align="left" valign="top">
|
1573
|
+
<col>
|
1574
|
+
</colgroup>
|
1575
|
+
<tbody>
|
1576
|
+
<tr>
|
1577
|
+
<td><p><span class="term"><em class="parameter"><code>visual</code></em> :</span></p></td>
|
1578
|
+
<td>a <a class="link" href="gdk3-Visuals.html#GdkVisual"><span class="type">GdkVisual</span></a>.</td>
|
1579
|
+
</tr>
|
1580
|
+
<tr>
|
1581
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1582
|
+
<td>an Xlib <span class="type">Visual*</span>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1583
|
+
</td>
|
1584
|
+
</tr>
|
1585
|
+
</tbody>
|
1586
|
+
</table></div>
|
1587
|
+
</div>
|
1588
|
+
<hr>
|
1589
|
+
<div class="refsect2">
|
1590
|
+
<a name="gdk-x11-atom-to-xatom"></a><h3>gdk_x11_atom_to_xatom ()</h3>
|
1591
|
+
<pre class="programlisting"><span class="returnvalue">Atom</span> gdk_x11_atom_to_xatom (<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> atom</code></em>);</pre>
|
1592
|
+
<p>
|
1593
|
+
Converts from a <a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> to the X atom for the default GDK display
|
1594
|
+
with the same string value.
|
1595
|
+
</p>
|
1596
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1597
|
+
<colgroup>
|
1598
|
+
<col align="left" valign="top">
|
1599
|
+
<col>
|
1600
|
+
</colgroup>
|
1601
|
+
<tbody>
|
1602
|
+
<tr>
|
1603
|
+
<td><p><span class="term"><em class="parameter"><code>atom</code></em> :</span></p></td>
|
1604
|
+
<td>A <a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>
|
1605
|
+
</td>
|
1606
|
+
</tr>
|
1607
|
+
<tr>
|
1608
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1609
|
+
<td>the X atom corresponding to <em class="parameter"><code>atom</code></em>.</td>
|
1610
|
+
</tr>
|
1611
|
+
</tbody>
|
1612
|
+
</table></div>
|
1613
|
+
</div>
|
1614
|
+
<hr>
|
1615
|
+
<div class="refsect2">
|
1616
|
+
<a name="gdk-x11-atom-to-xatom-for-display"></a><h3>gdk_x11_atom_to_xatom_for_display ()</h3>
|
1617
|
+
<pre class="programlisting"><span class="returnvalue">Atom</span> gdk_x11_atom_to_xatom_for_display (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
1618
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> atom</code></em>);</pre>
|
1619
|
+
<p>
|
1620
|
+
Converts from a <a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> to the X atom for a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
|
1621
|
+
with the same string value. The special value <a class="link" href="gdk3-Properties-and-Atoms.html#GDK-NONE:CAPS" title="GDK_NONE"><code class="literal">GDK_NONE</code></a>
|
1622
|
+
is converted to <code class="literal">None</code>.
|
1623
|
+
</p>
|
1624
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1625
|
+
<colgroup>
|
1626
|
+
<col align="left" valign="top">
|
1627
|
+
<col>
|
1628
|
+
</colgroup>
|
1629
|
+
<tbody>
|
1630
|
+
<tr>
|
1631
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
1632
|
+
<td>A <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
|
1633
|
+
</td>
|
1634
|
+
</tr>
|
1635
|
+
<tr>
|
1636
|
+
<td><p><span class="term"><em class="parameter"><code>atom</code></em> :</span></p></td>
|
1637
|
+
<td>A <a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>, or <a class="link" href="gdk3-Properties-and-Atoms.html#GDK-NONE:CAPS" title="GDK_NONE"><code class="literal">GDK_NONE</code></a>
|
1638
|
+
</td>
|
1639
|
+
</tr>
|
1640
|
+
<tr>
|
1641
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1642
|
+
<td>the X atom corresponding to <em class="parameter"><code>atom</code></em>, or <code class="literal">None</code>
|
1643
|
+
</td>
|
1644
|
+
</tr>
|
1645
|
+
</tbody>
|
1646
|
+
</table></div>
|
1647
|
+
<p class="since">Since 2.2</p>
|
1648
|
+
</div>
|
1649
|
+
<hr>
|
1650
|
+
<div class="refsect2">
|
1651
|
+
<a name="gdk-x11-xatom-to-atom"></a><h3>gdk_x11_xatom_to_atom ()</h3>
|
1652
|
+
<pre class="programlisting"><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a> gdk_x11_xatom_to_atom (<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);</pre>
|
1653
|
+
<p>
|
1654
|
+
Convert from an X atom for the default display to the corresponding
|
1655
|
+
<a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>.
|
1656
|
+
</p>
|
1657
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1658
|
+
<colgroup>
|
1659
|
+
<col align="left" valign="top">
|
1660
|
+
<col>
|
1661
|
+
</colgroup>
|
1662
|
+
<tbody>
|
1663
|
+
<tr>
|
1664
|
+
<td><p><span class="term"><em class="parameter"><code>xatom</code></em> :</span></p></td>
|
1665
|
+
<td>an X atom for the default GDK display</td>
|
1666
|
+
</tr>
|
1667
|
+
<tr>
|
1668
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1669
|
+
<td>the corresponding G<span class="type">dkAtom</span>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1670
|
+
</td>
|
1671
|
+
</tr>
|
1672
|
+
</tbody>
|
1673
|
+
</table></div>
|
1674
|
+
</div>
|
1675
|
+
<hr>
|
1676
|
+
<div class="refsect2">
|
1677
|
+
<a name="gdk-x11-xatom-to-atom-for-display"></a><h3>gdk_x11_xatom_to_atom_for_display ()</h3>
|
1678
|
+
<pre class="programlisting"><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a> gdk_x11_xatom_to_atom_for_display (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
1679
|
+
<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);</pre>
|
1680
|
+
<p>
|
1681
|
+
Convert from an X atom for a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> to the corresponding
|
1682
|
+
<a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>.
|
1683
|
+
</p>
|
1684
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1685
|
+
<colgroup>
|
1686
|
+
<col align="left" valign="top">
|
1687
|
+
<col>
|
1688
|
+
</colgroup>
|
1689
|
+
<tbody>
|
1690
|
+
<tr>
|
1691
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
1692
|
+
<td>A <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
|
1693
|
+
</td>
|
1694
|
+
</tr>
|
1695
|
+
<tr>
|
1696
|
+
<td><p><span class="term"><em class="parameter"><code>xatom</code></em> :</span></p></td>
|
1697
|
+
<td>an X atom</td>
|
1698
|
+
</tr>
|
1699
|
+
<tr>
|
1700
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1701
|
+
<td>the corresponding <a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1702
|
+
</td>
|
1703
|
+
</tr>
|
1704
|
+
</tbody>
|
1705
|
+
</table></div>
|
1706
|
+
<p class="since">Since 2.2</p>
|
1707
|
+
</div>
|
1708
|
+
<hr>
|
1709
|
+
<div class="refsect2">
|
1710
|
+
<a name="gdk-x11-get-xatom-by-name"></a><h3>gdk_x11_get_xatom_by_name ()</h3>
|
1711
|
+
<pre class="programlisting"><span class="returnvalue">Atom</span> gdk_x11_get_xatom_by_name (<em class="parameter"><code>const <span class="type">gchar</span> *atom_name</code></em>);</pre>
|
1712
|
+
<p>
|
1713
|
+
Returns the X atom for GDK's default display corresponding to <em class="parameter"><code>atom_name</code></em>.
|
1714
|
+
This function caches the result, so if called repeatedly it is much
|
1715
|
+
faster than <code class="function">XInternAtom()</code>, which is a round trip to the server each time.
|
1716
|
+
</p>
|
1717
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1718
|
+
<colgroup>
|
1719
|
+
<col align="left" valign="top">
|
1720
|
+
<col>
|
1721
|
+
</colgroup>
|
1722
|
+
<tbody>
|
1723
|
+
<tr>
|
1724
|
+
<td><p><span class="term"><em class="parameter"><code>atom_name</code></em> :</span></p></td>
|
1725
|
+
<td>a string</td>
|
1726
|
+
</tr>
|
1727
|
+
<tr>
|
1728
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1729
|
+
<td>a X atom for GDK's default display.</td>
|
1730
|
+
</tr>
|
1731
|
+
</tbody>
|
1732
|
+
</table></div>
|
1733
|
+
</div>
|
1734
|
+
<hr>
|
1735
|
+
<div class="refsect2">
|
1736
|
+
<a name="gdk-x11-get-xatom-by-name-for-display"></a><h3>gdk_x11_get_xatom_by_name_for_display ()</h3>
|
1737
|
+
<pre class="programlisting"><span class="returnvalue">Atom</span> gdk_x11_get_xatom_by_name_for_display
|
1738
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
1739
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *atom_name</code></em>);</pre>
|
1740
|
+
<p>
|
1741
|
+
Returns the X atom for a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> corresponding to <em class="parameter"><code>atom_name</code></em>.
|
1742
|
+
This function caches the result, so if called repeatedly it is much
|
1743
|
+
faster than <code class="function">XInternAtom()</code>, which is a round trip to the server each time.
|
1744
|
+
</p>
|
1745
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1746
|
+
<colgroup>
|
1747
|
+
<col align="left" valign="top">
|
1748
|
+
<col>
|
1749
|
+
</colgroup>
|
1750
|
+
<tbody>
|
1751
|
+
<tr>
|
1752
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
1753
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
|
1754
|
+
</td>
|
1755
|
+
</tr>
|
1756
|
+
<tr>
|
1757
|
+
<td><p><span class="term"><em class="parameter"><code>atom_name</code></em> :</span></p></td>
|
1758
|
+
<td>a string</td>
|
1759
|
+
</tr>
|
1760
|
+
<tr>
|
1761
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1762
|
+
<td>a X atom for a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
|
1763
|
+
</td>
|
1764
|
+
</tr>
|
1765
|
+
</tbody>
|
1766
|
+
</table></div>
|
1767
|
+
<p class="since">Since 2.2</p>
|
1768
|
+
</div>
|
1769
|
+
<hr>
|
1770
|
+
<div class="refsect2">
|
1771
|
+
<a name="gdk-x11-get-xatom-name"></a><h3>gdk_x11_get_xatom_name ()</h3>
|
1772
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gdk_x11_get_xatom_name (<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);</pre>
|
1773
|
+
<p>
|
1774
|
+
Returns the name of an X atom for GDK's default display. This
|
1775
|
+
function is meant mainly for debugging, so for convenience, unlike
|
1776
|
+
<code class="function"><code class="function">XAtomName()</code></code> and <a class="link" href="gdk3-Properties-and-Atoms.html#gdk-atom-name" title="gdk_atom_name ()"><code class="function">gdk_atom_name()</code></a>, the result
|
1777
|
+
doesn't need to be freed. Also, this function will never return <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>,
|
1778
|
+
even if <em class="parameter"><code>xatom</code></em> is invalid.
|
1779
|
+
</p>
|
1780
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1781
|
+
<colgroup>
|
1782
|
+
<col align="left" valign="top">
|
1783
|
+
<col>
|
1784
|
+
</colgroup>
|
1785
|
+
<tbody>
|
1786
|
+
<tr>
|
1787
|
+
<td><p><span class="term"><em class="parameter"><code>xatom</code></em> :</span></p></td>
|
1788
|
+
<td>an X atom for GDK's default display</td>
|
1789
|
+
</tr>
|
1790
|
+
<tr>
|
1791
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1792
|
+
<td>name of the X atom; this string is owned by GTK+,
|
1793
|
+
so it shouldn't be modifed or freed.</td>
|
1794
|
+
</tr>
|
1795
|
+
</tbody>
|
1796
|
+
</table></div>
|
1797
|
+
</div>
|
1798
|
+
<hr>
|
1799
|
+
<div class="refsect2">
|
1800
|
+
<a name="gdk-x11-get-xatom-name-for-display"></a><h3>gdk_x11_get_xatom_name_for_display ()</h3>
|
1801
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gdk_x11_get_xatom_name_for_display (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
1802
|
+
<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);</pre>
|
1803
|
+
<p>
|
1804
|
+
Returns the name of an X atom for its display. This
|
1805
|
+
function is meant mainly for debugging, so for convenience, unlike
|
1806
|
+
<code class="function">XAtomName()</code> and <a class="link" href="gdk3-Properties-and-Atoms.html#gdk-atom-name" title="gdk_atom_name ()"><code class="function">gdk_atom_name()</code></a>, the result doesn't need to
|
1807
|
+
be freed.
|
1808
|
+
</p>
|
1809
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1810
|
+
<colgroup>
|
1811
|
+
<col align="left" valign="top">
|
1812
|
+
<col>
|
1813
|
+
</colgroup>
|
1814
|
+
<tbody>
|
1815
|
+
<tr>
|
1816
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
1817
|
+
<td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where <em class="parameter"><code>xatom</code></em> is defined</td>
|
1818
|
+
</tr>
|
1819
|
+
<tr>
|
1820
|
+
<td><p><span class="term"><em class="parameter"><code>xatom</code></em> :</span></p></td>
|
1821
|
+
<td>an X atom</td>
|
1822
|
+
</tr>
|
1823
|
+
<tr>
|
1824
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1825
|
+
<td>name of the X atom; this string is owned by GDK,
|
1826
|
+
so it shouldn't be modifed or freed.</td>
|
1827
|
+
</tr>
|
1828
|
+
</tbody>
|
1829
|
+
</table></div>
|
1830
|
+
<p class="since">Since 2.2</p>
|
1831
|
+
</div>
|
1832
|
+
<hr>
|
1833
|
+
<div class="refsect2">
|
1834
|
+
<a name="gdk-x11-set-sm-client-id"></a><h3>gdk_x11_set_sm_client_id ()</h3>
|
1835
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_set_sm_client_id (<em class="parameter"><code>const <span class="type">gchar</span> *sm_client_id</code></em>);</pre>
|
1836
|
+
<p>
|
1837
|
+
Sets the <code class="literal">SM_CLIENT_ID</code> property on the application's leader window so that
|
1838
|
+
the window manager can save the application's state using the X11R6 ICCCM
|
1839
|
+
session management protocol.
|
1840
|
+
</p>
|
1841
|
+
<p>
|
1842
|
+
See the X Session Management Library documentation for more information on
|
1843
|
+
session management and the Inter-Client Communication Conventions Manual
|
1844
|
+
</p>
|
1845
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1846
|
+
<colgroup>
|
1847
|
+
<col align="left" valign="top">
|
1848
|
+
<col>
|
1849
|
+
</colgroup>
|
1850
|
+
<tbody><tr>
|
1851
|
+
<td><p><span class="term"><em class="parameter"><code>sm_client_id</code></em> :</span></p></td>
|
1852
|
+
<td>the client id assigned by the session manager when the
|
1853
|
+
connection was opened, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> to remove the property.</td>
|
1854
|
+
</tr></tbody>
|
1855
|
+
</table></div>
|
1856
|
+
<p class="since">Since 2.24</p>
|
1857
|
+
</div>
|
1858
|
+
<hr>
|
1859
|
+
<div class="refsect2">
|
1860
|
+
<a name="gdk-x11-display-text-property-to-text-list"></a><h3>gdk_x11_display_text_property_to_text_list ()</h3>
|
1861
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gdk_x11_display_text_property_to_text_list
|
1862
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
1863
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> encoding</code></em>,
|
1864
|
+
<em class="parameter"><code><span class="type">gint</span> format</code></em>,
|
1865
|
+
<em class="parameter"><code>const <span class="type">guchar</span> *text</code></em>,
|
1866
|
+
<em class="parameter"><code><span class="type">gint</span> length</code></em>,
|
1867
|
+
<em class="parameter"><code><span class="type">gchar</span> ***list</code></em>);</pre>
|
1868
|
+
<p>
|
1869
|
+
Convert a text string from the encoding as it is stored
|
1870
|
+
in a property into an array of strings in the encoding of
|
1871
|
+
the current locale. (The elements of the array represent the
|
1872
|
+
nul-separated elements of the original text string.)
|
1873
|
+
</p>
|
1874
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1875
|
+
<colgroup>
|
1876
|
+
<col align="left" valign="top">
|
1877
|
+
<col>
|
1878
|
+
</colgroup>
|
1879
|
+
<tbody>
|
1880
|
+
<tr>
|
1881
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
1882
|
+
<td>The <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where the encoding is defined. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
1883
|
+
</td>
|
1884
|
+
</tr>
|
1885
|
+
<tr>
|
1886
|
+
<td><p><span class="term"><em class="parameter"><code>encoding</code></em> :</span></p></td>
|
1887
|
+
<td>an atom representing the encoding. The most
|
1888
|
+
common values for this are STRING, or COMPOUND_TEXT.
|
1889
|
+
This is value used as the type for the property</td>
|
1890
|
+
</tr>
|
1891
|
+
<tr>
|
1892
|
+
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
1893
|
+
<td>the format of the property</td>
|
1894
|
+
</tr>
|
1895
|
+
<tr>
|
1896
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1897
|
+
<td>The text data</td>
|
1898
|
+
</tr>
|
1899
|
+
<tr>
|
1900
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
1901
|
+
<td>The number of items to transform</td>
|
1902
|
+
</tr>
|
1903
|
+
<tr>
|
1904
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1905
|
+
<td>location to store an array of strings in
|
1906
|
+
the encoding of the current locale. This array should be
|
1907
|
+
freed using <a href="http://library.gnome.org/devel/gdk3/gdk2-Properties-and-Atoms.html#gdk-free-text-list"><code class="function">gdk_free_text_list()</code></a>.</td>
|
1908
|
+
</tr>
|
1909
|
+
<tr>
|
1910
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1911
|
+
<td>the number of strings stored in list, or 0,
|
1912
|
+
if the conversion failed</td>
|
1913
|
+
</tr>
|
1914
|
+
</tbody>
|
1915
|
+
</table></div>
|
1916
|
+
<p class="since">Since 2.24</p>
|
1917
|
+
</div>
|
1918
|
+
<hr>
|
1919
|
+
<div class="refsect2">
|
1920
|
+
<a name="gdk-x11-free-text-list"></a><h3>gdk_x11_free_text_list ()</h3>
|
1921
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_free_text_list (<em class="parameter"><code><span class="type">gchar</span> **list</code></em>);</pre>
|
1922
|
+
<p>
|
1923
|
+
Frees the array of strings created by
|
1924
|
+
<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-text-property-to-text-list" title="gdk_x11_display_text_property_to_text_list ()"><code class="function">gdk_x11_display_text_property_to_text_list()</code></a>.
|
1925
|
+
</p>
|
1926
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1927
|
+
<colgroup>
|
1928
|
+
<col align="left" valign="top">
|
1929
|
+
<col>
|
1930
|
+
</colgroup>
|
1931
|
+
<tbody><tr>
|
1932
|
+
<td><p><span class="term"><em class="parameter"><code>list</code></em> :</span></p></td>
|
1933
|
+
<td>the value stored in the <em class="parameter"><code>list</code></em> parameter by
|
1934
|
+
a call to <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-text-property-to-text-list" title="gdk_x11_display_text_property_to_text_list ()"><code class="function">gdk_x11_display_text_property_to_text_list()</code></a>.</td>
|
1935
|
+
</tr></tbody>
|
1936
|
+
</table></div>
|
1937
|
+
<p class="since">Since 2.24</p>
|
1938
|
+
</div>
|
1939
|
+
<hr>
|
1940
|
+
<div class="refsect2">
|
1941
|
+
<a name="gdk-x11-display-string-to-compound-text"></a><h3>gdk_x11_display_string_to_compound_text ()</h3>
|
1942
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gdk_x11_display_string_to_compound_text
|
1943
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
1944
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>,
|
1945
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> *encoding</code></em>,
|
1946
|
+
<em class="parameter"><code><span class="type">gint</span> *format</code></em>,
|
1947
|
+
<em class="parameter"><code><span class="type">guchar</span> **ctext</code></em>,
|
1948
|
+
<em class="parameter"><code><span class="type">gint</span> *length</code></em>);</pre>
|
1949
|
+
<p>
|
1950
|
+
Convert a string from the encoding of the current
|
1951
|
+
locale into a form suitable for storing in a window property.
|
1952
|
+
</p>
|
1953
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1954
|
+
<colgroup>
|
1955
|
+
<col align="left" valign="top">
|
1956
|
+
<col>
|
1957
|
+
</colgroup>
|
1958
|
+
<tbody>
|
1959
|
+
<tr>
|
1960
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
1961
|
+
<td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where the encoding is defined. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
1962
|
+
</td>
|
1963
|
+
</tr>
|
1964
|
+
<tr>
|
1965
|
+
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
|
1966
|
+
<td>a nul-terminated string</td>
|
1967
|
+
</tr>
|
1968
|
+
<tr>
|
1969
|
+
<td><p><span class="term"><em class="parameter"><code>encoding</code></em> :</span></p></td>
|
1970
|
+
<td>location to store the encoding atom
|
1971
|
+
(to be used as the type for the property). <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>]</span>
|
1972
|
+
</td>
|
1973
|
+
</tr>
|
1974
|
+
<tr>
|
1975
|
+
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
1976
|
+
<td>location to store the format of the property. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1977
|
+
</td>
|
1978
|
+
</tr>
|
1979
|
+
<tr>
|
1980
|
+
<td><p><span class="term"><em class="parameter"><code>ctext</code></em> :</span></p></td>
|
1981
|
+
<td>location to store newly
|
1982
|
+
allocated data for the property. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length]</span>
|
1983
|
+
</td>
|
1984
|
+
</tr>
|
1985
|
+
<tr>
|
1986
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
1987
|
+
<td>the length of <em class="parameter"><code>ctext</code></em>, in bytes</td>
|
1988
|
+
</tr>
|
1989
|
+
<tr>
|
1990
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1991
|
+
<td>0 upon success, non-zero upon failure</td>
|
1992
|
+
</tr>
|
1993
|
+
</tbody>
|
1994
|
+
</table></div>
|
1995
|
+
<p class="since">Since 2.24</p>
|
1996
|
+
</div>
|
1997
|
+
<hr>
|
1998
|
+
<div class="refsect2">
|
1999
|
+
<a name="gdk-x11-display-utf8-to-compound-text"></a><h3>gdk_x11_display_utf8_to_compound_text ()</h3>
|
2000
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gdk_x11_display_utf8_to_compound_text
|
2001
|
+
(<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
|
2002
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>,
|
2003
|
+
<em class="parameter"><code><a class="link" href="gdk3-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> *encoding</code></em>,
|
2004
|
+
<em class="parameter"><code><span class="type">gint</span> *format</code></em>,
|
2005
|
+
<em class="parameter"><code><span class="type">guchar</span> **ctext</code></em>,
|
2006
|
+
<em class="parameter"><code><span class="type">gint</span> *length</code></em>);</pre>
|
2007
|
+
<p>
|
2008
|
+
Converts from UTF-8 to compound text.
|
2009
|
+
</p>
|
2010
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2011
|
+
<colgroup>
|
2012
|
+
<col align="left" valign="top">
|
2013
|
+
<col>
|
2014
|
+
</colgroup>
|
2015
|
+
<tbody>
|
2016
|
+
<tr>
|
2017
|
+
<td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
|
2018
|
+
<td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GdkX11Display]</span>
|
2019
|
+
</td>
|
2020
|
+
</tr>
|
2021
|
+
<tr>
|
2022
|
+
<td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
|
2023
|
+
<td>a UTF-8 string</td>
|
2024
|
+
</tr>
|
2025
|
+
<tr>
|
2026
|
+
<td><p><span class="term"><em class="parameter"><code>encoding</code></em> :</span></p></td>
|
2027
|
+
<td>location to store resulting encoding. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2028
|
+
</td>
|
2029
|
+
</tr>
|
2030
|
+
<tr>
|
2031
|
+
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
2032
|
+
<td>location to store format of the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2033
|
+
</td>
|
2034
|
+
</tr>
|
2035
|
+
<tr>
|
2036
|
+
<td><p><span class="term"><em class="parameter"><code>ctext</code></em> :</span></p></td>
|
2037
|
+
<td>location to store the data of the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length]</span>
|
2038
|
+
</td>
|
2039
|
+
</tr>
|
2040
|
+
<tr>
|
2041
|
+
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
2042
|
+
<td>location to store the length of the data
|
2043
|
+
stored in <em class="parameter"><code>ctext</code></em>
|
2044
|
+
</td>
|
2045
|
+
</tr>
|
2046
|
+
<tr>
|
2047
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2048
|
+
<td>
|
2049
|
+
<code class="literal">TRUE</code> if the conversion succeeded,
|
2050
|
+
otherwise <code class="literal">FALSE</code>
|
2051
|
+
</td>
|
2052
|
+
</tr>
|
2053
|
+
</tbody>
|
2054
|
+
</table></div>
|
2055
|
+
<p class="since">Since 2.24</p>
|
2056
|
+
</div>
|
2057
|
+
<hr>
|
2058
|
+
<div class="refsect2">
|
2059
|
+
<a name="gdk-x11-free-compound-text"></a><h3>gdk_x11_free_compound_text ()</h3>
|
2060
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_x11_free_compound_text (<em class="parameter"><code><span class="type">guchar</span> *ctext</code></em>);</pre>
|
2061
|
+
<p>
|
2062
|
+
Frees the data returned from <a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-string-to-compound-text" title="gdk_x11_display_string_to_compound_text ()"><code class="function">gdk_x11_display_string_to_compound_text()</code></a>.
|
2063
|
+
</p>
|
2064
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2065
|
+
<colgroup>
|
2066
|
+
<col align="left" valign="top">
|
2067
|
+
<col>
|
2068
|
+
</colgroup>
|
2069
|
+
<tbody><tr>
|
2070
|
+
<td><p><span class="term"><em class="parameter"><code>ctext</code></em> :</span></p></td>
|
2071
|
+
<td>The pointer stored in <em class="parameter"><code>ctext</code></em> from a call to
|
2072
|
+
<a class="link" href="gdk3-X-Window-System-Interaction.html#gdk-x11-display-string-to-compound-text" title="gdk_x11_display_string_to_compound_text ()"><code class="function">gdk_x11_display_string_to_compound_text()</code></a>.</td>
|
2073
|
+
</tr></tbody>
|
2074
|
+
</table></div>
|
2075
|
+
<p class="since">Since 2.24</p>
|
2076
|
+
</div>
|
2077
|
+
</div>
|
2078
|
+
</div>
|
2079
|
+
<div class="footer">
|
2080
|
+
<hr>
|
2081
|
+
Generated by GTK-Doc V1.18.1</div>
|
2082
|
+
</body>
|
2083
|
+
</html>
|