gtk2 1.0.3-x86-mingw32 → 1.1.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 +66 -1
- data/ext/gtk2/extconf.rb +0 -96
- data/ext/gtk2/global.h +274 -13
- data/ext/gtk2/gtk2.def +5 -3
- data/ext/gtk2/init.c +263 -19
- data/ext/gtk2/rbgdk.c +245 -89
- data/ext/gtk2/rbgdk.h +32 -6
- data/ext/gtk2/rbgdkatom.c +38 -28
- data/ext/gtk2/rbgdkcairo.c +32 -42
- data/ext/gtk2/rbgdkcolor.c +52 -42
- data/ext/gtk2/rbgdkcolormap.c +42 -37
- data/ext/gtk2/rbgdkconst.c +23 -13
- data/ext/gtk2/rbgdkconversions.h +19 -6
- data/ext/gtk2/rbgdkcursor.c +37 -25
- data/ext/gtk2/rbgdkdevice.c +77 -67
- data/ext/gtk2/rbgdkdisplay.c +158 -150
- data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
- data/ext/gtk2/rbgdkdragcontext.c +121 -70
- data/ext/gtk2/rbgdkdraw.c +252 -160
- data/ext/gtk2/rbgdkevent.c +30 -20
- data/ext/gtk2/rbgdkgc.c +123 -116
- data/ext/gtk2/rbgdkgeometry.c +77 -68
- data/ext/gtk2/rbgdkimage.c +58 -47
- data/ext/gtk2/rbgdkinput.c +33 -26
- data/ext/gtk2/rbgdkkeymap.c +38 -27
- data/ext/gtk2/rbgdkkeyval.c +44 -32
- data/ext/gtk2/rbgdkpango.c +66 -39
- data/ext/gtk2/rbgdkpangorenderer.c +63 -35
- data/ext/gtk2/rbgdkpixbuf.c +36 -25
- data/ext/gtk2/rbgdkpixmap.c +65 -49
- data/ext/gtk2/rbgdkproperty.c +66 -60
- data/ext/gtk2/rbgdkrectangle.c +54 -46
- data/ext/gtk2/rbgdkregion.c +144 -79
- data/ext/gtk2/rbgdkrgb.c +74 -58
- data/ext/gtk2/rbgdkscreen.c +103 -97
- data/ext/gtk2/rbgdkselection.c +49 -39
- data/ext/gtk2/rbgdkthreads.c +32 -19
- data/ext/gtk2/rbgdktimecoord.c +60 -38
- data/ext/gtk2/rbgdkvisual.c +79 -71
- data/ext/gtk2/rbgdkwindow.c +284 -305
- data/ext/gtk2/rbgdkwindowattr.c +69 -58
- data/ext/gtk2/rbgdkx11.c +41 -28
- data/ext/gtk2/rbgtk.c +498 -19
- data/ext/gtk2/rbgtk.h +35 -20
- data/ext/gtk2/rbgtkaboutdialog.c +33 -80
- data/ext/gtk2/rbgtkaccelerator.c +36 -23
- data/ext/gtk2/rbgtkaccelgroup.c +50 -40
- data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
- data/ext/gtk2/rbgtkaccelkey.c +40 -28
- data/ext/gtk2/rbgtkaccellabel.c +30 -18
- data/ext/gtk2/rbgtkaccelmap.c +55 -42
- data/ext/gtk2/rbgtkaccessible.c +25 -14
- data/ext/gtk2/rbgtkaction.c +68 -68
- data/ext/gtk2/rbgtkactiongroup.c +317 -195
- data/ext/gtk2/rbgtkadjustment.c +33 -46
- data/ext/gtk2/rbgtkalignment.c +36 -24
- data/ext/gtk2/rbgtkallocation.c +53 -42
- data/ext/gtk2/rbgtkarrow.c +34 -22
- data/ext/gtk2/rbgtkaspectframe.c +32 -20
- data/ext/gtk2/rbgtkassistant.c +81 -61
- data/ext/gtk2/rbgtkbbox.c +32 -20
- data/ext/gtk2/rbgtkbin.c +28 -16
- data/ext/gtk2/rbgtkbindingset.c +42 -35
- data/ext/gtk2/rbgtkborder.c +34 -23
- data/ext/gtk2/rbgtkbox.c +40 -29
- data/ext/gtk2/rbgtkbuildable.c +57 -45
- data/ext/gtk2/rbgtkbuilder.c +53 -38
- data/ext/gtk2/rbgtkbutton.c +41 -55
- data/ext/gtk2/rbgtkcalendar.c +51 -40
- data/ext/gtk2/rbgtkcelleditable.c +28 -17
- data/ext/gtk2/rbgtkcelllayout.c +41 -30
- data/ext/gtk2/rbgtkcellrenderer.c +43 -32
- data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
- data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
- data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
- data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
- data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
- data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
- data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
- data/ext/gtk2/rbgtkcellview.c +34 -33
- data/ext/gtk2/rbgtkcheckbutton.c +28 -16
- data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
- data/ext/gtk2/rbgtkclipboard.c +123 -77
- data/ext/gtk2/rbgtkcolorbutton.c +26 -31
- data/ext/gtk2/rbgtkcolorsel.c +109 -55
- data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
- data/ext/gtk2/rbgtkcombo.c +43 -32
- data/ext/gtk2/rbgtkcombobox.c +44 -83
- data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
- data/ext/gtk2/rbgtkconst.c +23 -13
- data/ext/gtk2/rbgtkcontainer.c +153 -100
- data/ext/gtk2/rbgtkconversions.h +19 -6
- data/ext/gtk2/rbgtkcurve.c +46 -36
- data/ext/gtk2/rbgtkdialog.c +104 -70
- data/ext/gtk2/rbgtkdrag.c +173 -121
- data/ext/gtk2/rbgtkdrawingarea.c +28 -16
- data/ext/gtk2/rbgtkeditable.c +63 -51
- data/ext/gtk2/rbgtkentry.c +48 -85
- data/ext/gtk2/rbgtkentrycompletion.c +42 -55
- data/ext/gtk2/rbgtkeventbox.c +28 -16
- data/ext/gtk2/rbgtkexpander.c +26 -35
- data/ext/gtk2/rbgtkfilechooser.c +87 -143
- data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
- data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
- data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
- data/ext/gtk2/rbgtkfilefilter.c +45 -35
- data/ext/gtk2/rbgtkfilesel.c +54 -43
- data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
- data/ext/gtk2/rbgtkfixed.c +36 -25
- data/ext/gtk2/rbgtkfontbutton.c +26 -37
- data/ext/gtk2/rbgtkfontselection.c +27 -15
- data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
- data/ext/gtk2/rbgtkframe.c +39 -28
- data/ext/gtk2/rbgtkgamma.c +32 -20
- data/ext/gtk2/rbgtkhandlebox.c +31 -19
- data/ext/gtk2/rbgtkhbbox.c +28 -16
- data/ext/gtk2/rbgtkhbox.c +29 -17
- data/ext/gtk2/rbgtkhpaned.c +28 -16
- data/ext/gtk2/rbgtkhruler.c +28 -16
- data/ext/gtk2/rbgtkhscale.c +28 -16
- data/ext/gtk2/rbgtkhscrollbar.c +28 -16
- data/ext/gtk2/rbgtkhseparator.c +28 -16
- data/ext/gtk2/rbgtkiconfactory.c +35 -23
- data/ext/gtk2/rbgtkiconinfo.c +42 -30
- data/ext/gtk2/rbgtkiconset.c +31 -19
- data/ext/gtk2/rbgtkiconsize.c +38 -25
- data/ext/gtk2/rbgtkiconsource.c +62 -50
- data/ext/gtk2/rbgtkicontheme.c +95 -95
- data/ext/gtk2/rbgtkiconview.c +87 -121
- data/ext/gtk2/rbgtkimage.c +31 -40
- data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
- data/ext/gtk2/rbgtkimcontext.c +46 -34
- data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
- data/ext/gtk2/rbgtkimmulticontext.c +26 -14
- data/ext/gtk2/rbgtkinputdialog.c +28 -16
- data/ext/gtk2/rbgtkinvisible.c +24 -18
- data/ext/gtk2/rbgtkitem.c +32 -20
- data/ext/gtk2/rbgtkitemfactory.c +65 -57
- data/ext/gtk2/rbgtklabel.c +46 -57
- data/ext/gtk2/rbgtklayout.c +40 -29
- data/ext/gtk2/rbgtklinkbutton.c +26 -15
- data/ext/gtk2/rbgtkliststore.c +145 -102
- data/ext/gtk2/rbgtkmacros.h +19 -6
- data/ext/gtk2/rbgtkmenu.c +47 -59
- data/ext/gtk2/rbgtkmenubar.c +30 -30
- data/ext/gtk2/rbgtkmenuitem.c +34 -41
- data/ext/gtk2/rbgtkmenushell.c +43 -42
- data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
- data/ext/gtk2/rbgtkmessagedialog.c +31 -25
- data/ext/gtk2/rbgtkmisc.c +33 -22
- data/ext/gtk2/rbgtknotebook.c +98 -134
- data/ext/gtk2/rbgtkobject.c +46 -81
- data/ext/gtk2/rbgtkoptionmenu.c +35 -23
- data/ext/gtk2/rbgtkpagesetup.c +64 -54
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
- data/ext/gtk2/rbgtkpaned.c +46 -36
- data/ext/gtk2/rbgtkpapersize.c +60 -54
- data/ext/gtk2/rbgtkplug.c +32 -20
- data/ext/gtk2/rbgtkprintcontext.c +43 -35
- data/ext/gtk2/rbgtkprinter.c +36 -37
- data/ext/gtk2/rbgtkprintjob.c +36 -37
- data/ext/gtk2/rbgtkprintoperation.c +44 -33
- data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
- data/ext/gtk2/rbgtkprintsettings.c +248 -192
- data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
- data/ext/gtk2/rbgtkprogress.c +23 -13
- data/ext/gtk2/rbgtkprogressbar.c +47 -46
- data/ext/gtk2/rbgtkradioaction.c +84 -39
- data/ext/gtk2/rbgtkradiobutton.c +33 -21
- data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
- data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
- data/ext/gtk2/rbgtkrange.c +36 -56
- data/ext/gtk2/rbgtkrc.c +61 -49
- data/ext/gtk2/rbgtkrcstyle.c +59 -48
- data/ext/gtk2/rbgtkrecentaction.c +28 -16
- data/ext/gtk2/rbgtkrecentchooser.c +58 -92
- data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
- data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
- data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
- data/ext/gtk2/rbgtkrecentdata.c +47 -36
- data/ext/gtk2/rbgtkrecentfilter.c +55 -46
- data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
- data/ext/gtk2/rbgtkrecentinfo.c +66 -56
- data/ext/gtk2/rbgtkrecentmanager.c +47 -43
- data/ext/gtk2/rbgtkruler.c +35 -30
- data/ext/gtk2/rbgtkscale.c +29 -18
- data/ext/gtk2/rbgtkscalebutton.c +27 -27
- data/ext/gtk2/rbgtkscrollbar.c +23 -13
- data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
- data/ext/gtk2/rbgtkselection.c +87 -67
- data/ext/gtk2/rbgtkselectiondata.c +74 -65
- data/ext/gtk2/rbgtkseparator.c +23 -13
- data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
- data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
- data/ext/gtk2/rbgtksettings.c +123 -103
- data/ext/gtk2/rbgtksizegroup.c +33 -30
- data/ext/gtk2/rbgtksocket.c +32 -20
- data/ext/gtk2/rbgtkspinbutton.c +48 -38
- data/ext/gtk2/rbgtkspinner.c +27 -14
- data/ext/gtk2/rbgtkstatusbar.c +36 -31
- data/ext/gtk2/rbgtkstatusicon.c +31 -44
- data/ext/gtk2/rbgtkstock.c +137 -125
- data/ext/gtk2/rbgtkstyle.c +177 -161
- data/ext/gtk2/rbgtktable.c +58 -47
- data/ext/gtk2/rbgtktargetlist.c +56 -36
- data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
- data/ext/gtk2/rbgtktextappearance.c +44 -34
- data/ext/gtk2/rbgtktextattributes.c +54 -42
- data/ext/gtk2/rbgtktextbuffer.c +188 -191
- data/ext/gtk2/rbgtktextchild.c +29 -18
- data/ext/gtk2/rbgtktextiter.c +153 -145
- data/ext/gtk2/rbgtktextmark.c +33 -30
- data/ext/gtk2/rbgtktexttag.c +34 -22
- data/ext/gtk2/rbgtktexttagtable.c +36 -25
- data/ext/gtk2/rbgtktextview.c +85 -73
- data/ext/gtk2/rbgtktoggleaction.c +27 -22
- data/ext/gtk2/rbgtktogglebutton.c +37 -26
- data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
- data/ext/gtk2/rbgtktoolbar.c +66 -69
- data/ext/gtk2/rbgtktoolbutton.c +27 -40
- data/ext/gtk2/rbgtktoolitem.c +60 -62
- data/ext/gtk2/rbgtktooltip.c +36 -25
- data/ext/gtk2/rbgtktooltips.c +42 -34
- data/ext/gtk2/rbgtktreedragdest.c +20 -11
- data/ext/gtk2/rbgtktreedragsource.c +20 -11
- data/ext/gtk2/rbgtktreeiter.c +58 -47
- data/ext/gtk2/rbgtktreemodel.c +83 -65
- data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
- data/ext/gtk2/rbgtktreemodelsort.c +38 -27
- data/ext/gtk2/rbgtktreepath.c +55 -44
- data/ext/gtk2/rbgtktreerowreference.c +60 -42
- data/ext/gtk2/rbgtktreeselection.c +61 -52
- data/ext/gtk2/rbgtktreesortable.c +52 -42
- data/ext/gtk2/rbgtktreestore.c +88 -67
- data/ext/gtk2/rbgtktreeview.c +157 -185
- data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
- data/ext/gtk2/rbgtkuimanager.c +61 -61
- data/ext/gtk2/rbgtkvbbox.c +28 -16
- data/ext/gtk2/rbgtkvbox.c +29 -17
- data/ext/gtk2/rbgtkviewport.c +28 -16
- data/ext/gtk2/rbgtkvolumebutton.c +28 -16
- data/ext/gtk2/rbgtkvpaned.c +28 -16
- data/ext/gtk2/rbgtkvruler.c +28 -16
- data/ext/gtk2/rbgtkvscale.c +28 -16
- data/ext/gtk2/rbgtkvscrollbar.c +28 -16
- data/ext/gtk2/rbgtkvseparator.c +28 -16
- data/ext/gtk2/rbgtkwidget.c +284 -296
- data/ext/gtk2/rbgtkwindow.c +156 -214
- data/ext/gtk2/rbgtkwindowgroup.c +35 -24
- data/lib/1.8/gtk2.so +0 -0
- data/lib/1.9/gtk2.so +0 -0
- data/sample/testgtk/labels.rb +1 -0
- data/sample/testgtk/testgtk.rb +2 -0
- data/vendor/local/bin/gtk-builder-convert +29 -2
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
- data/vendor/local/lib/gailutil.lib +0 -0
- data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gail.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
- data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
- data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
- data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
- data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
- data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
- data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
- data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
- data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
- data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
- data/vendor/local/share/icons/hicolor/index.theme +1662 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
- data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
- metadata +29 -31
- data/ChangeLog +0 -6902
- data/ext/gtk2/rbgtkmain.c +0 -493
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
| @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            <?xml version="1.0" encoding="utf-8" standalone="no"?>
         | 
| 2 2 | 
             
            <!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
         | 
| 3 | 
            -
            <book xmlns="http://www.devhelp.net/book" title="GDK Reference Manual" link="index.html" author="" name="gdk">
         | 
| 3 | 
            +
            <book xmlns="http://www.devhelp.net/book" title="GDK 2 Reference Manual" link="index.html" author="" name="gdk">
         | 
| 4 4 | 
             
              <chapters>
         | 
| 5 5 | 
             
                <sub name="API Reference" link="reference.html">
         | 
| 6 6 | 
             
                  <sub name="General" link="gdk-General.html"/>
         | 
| @@ -31,7 +31,6 @@ | |
| 31 31 | 
             
                  <sub name="Input Devices" link="gdk-Input-Devices.html"/>
         | 
| 32 32 | 
             
                  <sub name="Pango Interaction" link="gdk-Pango-Interaction.html"/>
         | 
| 33 33 | 
             
                  <sub name="Cairo Interaction" link="gdk-Cairo-Interaction.html"/>
         | 
| 34 | 
            -
                  <sub name="X Window System Interaction" link="gdk-X-Window-System-Interaction.html"/>
         | 
| 35 34 | 
             
                  <sub name="Application launching" link="gdk-Application-launching.html"/>
         | 
| 36 35 | 
             
                  <sub name="Testing" link="gdk-Testing.html"/>
         | 
| 37 36 | 
             
                </sub>
         | 
| @@ -106,7 +105,7 @@ | |
| 106 105 | 
             
                <function name="gdk_display_set_double_click_distance ()" link="GdkDisplay.html#gdk-display-set-double-click-distance"/>
         | 
| 107 106 | 
             
                <function name="gdk_display_get_pointer ()" link="GdkDisplay.html#gdk-display-get-pointer"/>
         | 
| 108 107 | 
             
                <function name="gdk_display_get_window_at_pointer ()" link="GdkDisplay.html#gdk-display-get-window-at-pointer"/>
         | 
| 109 | 
            -
                <function name="GdkDisplayPointerHooks" link="GdkDisplay.html#GdkDisplayPointerHooks"/>
         | 
| 108 | 
            +
                <function name="struct GdkDisplayPointerHooks" link="GdkDisplay.html#GdkDisplayPointerHooks"/>
         | 
| 110 109 | 
             
                <function name="gdk_display_set_pointer_hooks ()" link="GdkDisplay.html#gdk-display-set-pointer-hooks"/>
         | 
| 111 110 | 
             
                <function name="gdk_display_warp_pointer ()" link="GdkDisplay.html#gdk-display-warp-pointer"/>
         | 
| 112 111 | 
             
                <function name="gdk_display_supports_cursor_color ()" link="GdkDisplay.html#gdk-display-supports-cursor-color"/>
         | 
| @@ -175,8 +174,8 @@ | |
| 175 174 | 
             
                <function name="The "composited-changed" signal" link="GdkScreen.html#GdkScreen-composited-changed"/>
         | 
| 176 175 | 
             
                <function name="The "monitors-changed" signal" link="GdkScreen.html#GdkScreen-monitors-changed"/>
         | 
| 177 176 | 
             
                <function name="The "size-changed" signal" link="GdkScreen.html#GdkScreen-size-changed"/>
         | 
| 178 | 
            -
                <function name="GdkPoint" link="gdk-Points-Rectangles-and-Regions.html#GdkPoint"/>
         | 
| 179 | 
            -
                <function name="GdkRectangle" link="gdk-Points-Rectangles-and-Regions.html#GdkRectangle"/>
         | 
| 177 | 
            +
                <function name="struct GdkPoint" link="gdk-Points-Rectangles-and-Regions.html#GdkPoint"/>
         | 
| 178 | 
            +
                <function name="struct GdkRectangle" link="gdk-Points-Rectangles-and-Regions.html#GdkRectangle"/>
         | 
| 180 179 | 
             
                <function name="gdk_rectangle_intersect ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-rectangle-intersect"/>
         | 
| 181 180 | 
             
                <function name="gdk_rectangle_union ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-rectangle-union"/>
         | 
| 182 181 | 
             
                <function name="GdkRegion" link="gdk-Points-Rectangles-and-Regions.html#GdkRegion"/>
         | 
| @@ -201,11 +200,11 @@ | |
| 201 200 | 
             
                <function name="gdk_region_union ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-region-union"/>
         | 
| 202 201 | 
             
                <function name="gdk_region_subtract ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-region-subtract"/>
         | 
| 203 202 | 
             
                <function name="gdk_region_xor ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-region-xor"/>
         | 
| 204 | 
            -
                <function name="GdkSpan" link="gdk-Points-Rectangles-and-Regions.html#GdkSpan"/>
         | 
| 203 | 
            +
                <function name="struct GdkSpan" link="gdk-Points-Rectangles-and-Regions.html#GdkSpan"/>
         | 
| 205 204 | 
             
                <function name="GdkSpanFunc ()" link="gdk-Points-Rectangles-and-Regions.html#GdkSpanFunc"/>
         | 
| 206 205 | 
             
                <function name="gdk_region_spans_intersect_foreach ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-region-spans-intersect-foreach"/>
         | 
| 207 206 | 
             
                <function name="GdkGC" link="gdk-Graphics-Contexts.html#GdkGC-struct"/>
         | 
| 208 | 
            -
                <function name="GdkGCValues" link="gdk-Graphics-Contexts.html#GdkGCValues"/>
         | 
| 207 | 
            +
                <function name="struct GdkGCValues" link="gdk-Graphics-Contexts.html#GdkGCValues"/>
         | 
| 209 208 | 
             
                <function name="enum GdkGCValuesMask" link="gdk-Graphics-Contexts.html#GdkGCValuesMask"/>
         | 
| 210 209 | 
             
                <function name="enum GdkFunction" link="gdk-Graphics-Contexts.html#GdkFunction"/>
         | 
| 211 210 | 
             
                <function name="gdk_gc_new ()" link="gdk-Graphics-Contexts.html#gdk-gc-new"/>
         | 
| @@ -263,12 +262,12 @@ | |
| 263 262 | 
             
                <function name="gdk_draw_lines ()" link="gdk-Drawing-Primitives.html#gdk-draw-lines"/>
         | 
| 264 263 | 
             
                <function name="gdk_draw_pixbuf ()" link="gdk-Drawing-Primitives.html#gdk-draw-pixbuf"/>
         | 
| 265 264 | 
             
                <function name="gdk_draw_segments ()" link="gdk-Drawing-Primitives.html#gdk-draw-segments"/>
         | 
| 266 | 
            -
                <function name="GdkSegment" link="gdk-Drawing-Primitives.html#GdkSegment"/>
         | 
| 265 | 
            +
                <function name="struct GdkSegment" link="gdk-Drawing-Primitives.html#GdkSegment"/>
         | 
| 267 266 | 
             
                <function name="gdk_draw_rectangle ()" link="gdk-Drawing-Primitives.html#gdk-draw-rectangle"/>
         | 
| 268 267 | 
             
                <function name="gdk_draw_arc ()" link="gdk-Drawing-Primitives.html#gdk-draw-arc"/>
         | 
| 269 268 | 
             
                <function name="gdk_draw_polygon ()" link="gdk-Drawing-Primitives.html#gdk-draw-polygon"/>
         | 
| 270 269 | 
             
                <function name="gdk_draw_trapezoids ()" link="gdk-Drawing-Primitives.html#gdk-draw-trapezoids"/>
         | 
| 271 | 
            -
                <function name="GdkTrapezoid" link="gdk-Drawing-Primitives.html#GdkTrapezoid"/>
         | 
| 270 | 
            +
                <function name="struct GdkTrapezoid" link="gdk-Drawing-Primitives.html#GdkTrapezoid"/>
         | 
| 272 271 | 
             
                <function name="gdk_draw_glyphs ()" link="gdk-Drawing-Primitives.html#gdk-draw-glyphs"/>
         | 
| 273 272 | 
             
                <function name="gdk_draw_glyphs_transformed ()" link="gdk-Drawing-Primitives.html#gdk-draw-glyphs-transformed"/>
         | 
| 274 273 | 
             
                <function name="gdk_draw_layout_line ()" link="gdk-Drawing-Primitives.html#gdk-draw-layout-line"/>
         | 
| @@ -291,6 +290,7 @@ | |
| 291 290 | 
             
                <function name="gdk_pixmap_colormap_create_from_xpm ()" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-colormap-create-from-xpm"/>
         | 
| 292 291 | 
             
                <function name="gdk_pixmap_create_from_xpm_d ()" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-create-from-xpm-d"/>
         | 
| 293 292 | 
             
                <function name="gdk_pixmap_colormap_create_from_xpm_d ()" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-colormap-create-from-xpm-d"/>
         | 
| 293 | 
            +
                <function name="gdk_pixmap_get_size ()" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-get-size"/>
         | 
| 294 294 | 
             
                <function name="gdk_pixmap_ref" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-ref"/>
         | 
| 295 295 | 
             
                <function name="gdk_pixmap_unref" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-unref"/>
         | 
| 296 296 | 
             
                <function name="GdkBitmap" link="gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"/>
         | 
| @@ -306,7 +306,7 @@ | |
| 306 306 | 
             
                <function name="enum GdkRgbDither" link="gdk-GdkRGB.html#GdkRgbDither"/>
         | 
| 307 307 | 
             
                <function name="gdk_rgb_cmap_new ()" link="gdk-GdkRGB.html#gdk-rgb-cmap-new"/>
         | 
| 308 308 | 
             
                <function name="gdk_rgb_cmap_free ()" link="gdk-GdkRGB.html#gdk-rgb-cmap-free"/>
         | 
| 309 | 
            -
                <function name="GdkRgbCmap" link="gdk-GdkRGB.html#GdkRgbCmap"/>
         | 
| 309 | 
            +
                <function name="struct GdkRgbCmap" link="gdk-GdkRGB.html#GdkRgbCmap"/>
         | 
| 310 310 | 
             
                <function name="gdk_rgb_gc_set_foreground ()" link="gdk-GdkRGB.html#gdk-rgb-gc-set-foreground"/>
         | 
| 311 311 | 
             
                <function name="gdk_rgb_gc_set_background ()" link="gdk-GdkRGB.html#gdk-rgb-gc-set-background"/>
         | 
| 312 312 | 
             
                <function name="gdk_rgb_xpixel_from_rgb ()" link="gdk-GdkRGB.html#gdk-rgb-xpixel-from-rgb"/>
         | 
| @@ -448,16 +448,21 @@ | |
| 448 448 | 
             
                <function name="enum GdkWindowType" link="gdk-Windows.html#GdkWindowType"/>
         | 
| 449 449 | 
             
                <function name="enum GdkWindowClass" link="gdk-Windows.html#GdkWindowClass"/>
         | 
| 450 450 | 
             
                <function name="enum GdkWindowHints" link="gdk-Windows.html#GdkWindowHints"/>
         | 
| 451 | 
            -
                <function name="GdkGeometry" link="gdk-Windows.html#GdkGeometry"/>
         | 
| 451 | 
            +
                <function name="struct GdkGeometry" link="gdk-Windows.html#GdkGeometry"/>
         | 
| 452 452 | 
             
                <function name="enum GdkGravity" link="gdk-Windows.html#GdkGravity"/>
         | 
| 453 453 | 
             
                <function name="enum GdkWindowEdge" link="gdk-Windows.html#GdkWindowEdge"/>
         | 
| 454 454 | 
             
                <function name="enum GdkWindowTypeHint" link="gdk-Windows.html#GdkWindowTypeHint"/>
         | 
| 455 | 
            -
                <function name="GdkWindowAttr" link="gdk-Windows.html#GdkWindowAttr"/>
         | 
| 455 | 
            +
                <function name="struct GdkWindowAttr" link="gdk-Windows.html#GdkWindowAttr"/>
         | 
| 456 456 | 
             
                <function name="enum GdkWindowAttributesType" link="gdk-Windows.html#GdkWindowAttributesType"/>
         | 
| 457 457 | 
             
                <function name="gdk_window_new ()" link="gdk-Windows.html#gdk-window-new"/>
         | 
| 458 458 | 
             
                <function name="gdk_window_destroy ()" link="gdk-Windows.html#gdk-window-destroy"/>
         | 
| 459 459 | 
             
                <function name="gdk_window_ref" link="gdk-Windows.html#gdk-window-ref"/>
         | 
| 460 460 | 
             
                <function name="gdk_window_unref" link="gdk-Windows.html#gdk-window-unref"/>
         | 
| 461 | 
            +
                <function name="gdk_window_get_display ()" link="gdk-Windows.html#gdk-window-get-display"/>
         | 
| 462 | 
            +
                <function name="gdk_window_get_screen ()" link="gdk-Windows.html#gdk-window-get-screen"/>
         | 
| 463 | 
            +
                <function name="gdk_window_get_visual ()" link="gdk-Windows.html#gdk-window-get-visual"/>
         | 
| 464 | 
            +
                <function name="gdk_window_get_width ()" link="gdk-Windows.html#gdk-window-get-width"/>
         | 
| 465 | 
            +
                <function name="gdk_window_get_height ()" link="gdk-Windows.html#gdk-window-get-height"/>
         | 
| 461 466 | 
             
                <function name="gdk_window_get_window_type ()" link="gdk-Windows.html#gdk-window-get-window-type"/>
         | 
| 462 467 | 
             
                <function name="gdk_window_at_pointer ()" link="gdk-Windows.html#gdk-window-at-pointer"/>
         | 
| 463 468 | 
             
                <function name="gdk_window_show ()" link="gdk-Windows.html#gdk-window-show"/>
         | 
| @@ -564,7 +569,6 @@ | |
| 564 569 | 
             
                <function name="gdk_window_get_root_origin ()" link="gdk-Windows.html#gdk-window-get-root-origin"/>
         | 
| 565 570 | 
             
                <function name="gdk_window_get_frame_extents ()" link="gdk-Windows.html#gdk-window-get-frame-extents"/>
         | 
| 566 571 | 
             
                <function name="gdk_window_get_size" link="gdk-Windows.html#gdk-window-get-size"/>
         | 
| 567 | 
            -
                <function name="gdk_window_get_visual" link="gdk-Windows.html#gdk-window-get-visual"/>
         | 
| 568 572 | 
             
                <function name="gdk_window_get_colormap" link="gdk-Windows.html#gdk-window-get-colormap"/>
         | 
| 569 573 | 
             
                <function name="gdk_window_get_type" link="gdk-Windows.html#gdk-window-get-type"/>
         | 
| 570 574 | 
             
                <function name="gdk_window_get_origin ()" link="gdk-Windows.html#gdk-window-get-origin"/>
         | 
| @@ -596,7 +600,7 @@ | |
| 596 600 | 
             
                <function name="enum GdkWMFunction" link="gdk-Windows.html#GdkWMFunction"/>
         | 
| 597 601 | 
             
                <function name="gdk_window_get_toplevels ()" link="gdk-Windows.html#gdk-window-get-toplevels"/>
         | 
| 598 602 | 
             
                <function name="gdk_get_default_root_window ()" link="gdk-Windows.html#gdk-get-default-root-window"/>
         | 
| 599 | 
            -
                <function name="GdkPointerHooks" link="gdk-Windows.html#GdkPointerHooks"/>
         | 
| 603 | 
            +
                <function name="struct GdkPointerHooks" link="gdk-Windows.html#GdkPointerHooks"/>
         | 
| 600 604 | 
             
                <function name="gdk_set_pointer_hooks ()" link="gdk-Windows.html#gdk-set-pointer-hooks"/>
         | 
| 601 605 | 
             
                <function name="gdk_offscreen_window_get_pixmap ()" link="gdk-Windows.html#gdk-offscreen-window-get-pixmap"/>
         | 
| 602 606 | 
             
                <function name="gdk_offscreen_window_set_embedder ()" link="gdk-Windows.html#gdk-offscreen-window-set-embedder"/>
         | 
| @@ -639,27 +643,27 @@ | |
| 639 643 | 
             
                <function name="gdk_event_get_screen ()" link="gdk-Events.html#gdk-event-get-screen"/>
         | 
| 640 644 | 
             
                <function name="gdk_setting_get ()" link="gdk-Events.html#gdk-setting-get"/>
         | 
| 641 645 | 
             
                <function name="union GdkEvent" link="gdk-Event-Structures.html#GdkEvent"/>
         | 
| 642 | 
            -
                <function name="GdkEventAny" link="gdk-Event-Structures.html#GdkEventAny"/>
         | 
| 643 | 
            -
                <function name="GdkEventKey" link="gdk-Event-Structures.html#GdkEventKey"/>
         | 
| 644 | 
            -
                <function name="GdkEventButton" link="gdk-Event-Structures.html#GdkEventButton"/>
         | 
| 645 | 
            -
                <function name="GdkEventScroll" link="gdk-Event-Structures.html#GdkEventScroll"/>
         | 
| 646 | 
            -
                <function name="GdkEventMotion" link="gdk-Event-Structures.html#GdkEventMotion"/>
         | 
| 647 | 
            -
                <function name="GdkEventExpose" link="gdk-Event-Structures.html#GdkEventExpose"/>
         | 
| 648 | 
            -
                <function name="GdkEventVisibility" link="gdk-Event-Structures.html#GdkEventVisibility"/>
         | 
| 649 | 
            -
                <function name="GdkEventCrossing" link="gdk-Event-Structures.html#GdkEventCrossing"/>
         | 
| 650 | 
            -
                <function name="GdkEventFocus" link="gdk-Event-Structures.html#GdkEventFocus"/>
         | 
| 651 | 
            -
                <function name="GdkEventConfigure" link="gdk-Event-Structures.html#GdkEventConfigure"/>
         | 
| 652 | 
            -
                <function name="GdkEventProperty" link="gdk-Event-Structures.html#GdkEventProperty"/>
         | 
| 653 | 
            -
                <function name="GdkEventSelection" link="gdk-Event-Structures.html#GdkEventSelection"/>
         | 
| 646 | 
            +
                <function name="struct GdkEventAny" link="gdk-Event-Structures.html#GdkEventAny"/>
         | 
| 647 | 
            +
                <function name="struct GdkEventKey" link="gdk-Event-Structures.html#GdkEventKey"/>
         | 
| 648 | 
            +
                <function name="struct GdkEventButton" link="gdk-Event-Structures.html#GdkEventButton"/>
         | 
| 649 | 
            +
                <function name="struct GdkEventScroll" link="gdk-Event-Structures.html#GdkEventScroll"/>
         | 
| 650 | 
            +
                <function name="struct GdkEventMotion" link="gdk-Event-Structures.html#GdkEventMotion"/>
         | 
| 651 | 
            +
                <function name="struct GdkEventExpose" link="gdk-Event-Structures.html#GdkEventExpose"/>
         | 
| 652 | 
            +
                <function name="struct GdkEventVisibility" link="gdk-Event-Structures.html#GdkEventVisibility"/>
         | 
| 653 | 
            +
                <function name="struct GdkEventCrossing" link="gdk-Event-Structures.html#GdkEventCrossing"/>
         | 
| 654 | 
            +
                <function name="struct GdkEventFocus" link="gdk-Event-Structures.html#GdkEventFocus"/>
         | 
| 655 | 
            +
                <function name="struct GdkEventConfigure" link="gdk-Event-Structures.html#GdkEventConfigure"/>
         | 
| 656 | 
            +
                <function name="struct GdkEventProperty" link="gdk-Event-Structures.html#GdkEventProperty"/>
         | 
| 657 | 
            +
                <function name="struct GdkEventSelection" link="gdk-Event-Structures.html#GdkEventSelection"/>
         | 
| 654 658 | 
             
                <function name="GdkNativeWindow" link="gdk-Event-Structures.html#GdkNativeWindow"/>
         | 
| 655 | 
            -
                <function name="GdkEventDND" link="gdk-Event-Structures.html#GdkEventDND"/>
         | 
| 656 | 
            -
                <function name="GdkEventProximity" link="gdk-Event-Structures.html#GdkEventProximity"/>
         | 
| 657 | 
            -
                <function name="GdkEventClient" link="gdk-Event-Structures.html#GdkEventClient"/>
         | 
| 658 | 
            -
                <function name="GdkEventNoExpose" link="gdk-Event-Structures.html#GdkEventNoExpose"/>
         | 
| 659 | 
            -
                <function name="GdkEventWindowState" link="gdk-Event-Structures.html#GdkEventWindowState"/>
         | 
| 660 | 
            -
                <function name="GdkEventSetting" link="gdk-Event-Structures.html#GdkEventSetting"/>
         | 
| 661 | 
            -
                <function name="GdkEventOwnerChange" link="gdk-Event-Structures.html#GdkEventOwnerChange"/>
         | 
| 662 | 
            -
                <function name="GdkEventGrabBroken" link="gdk-Event-Structures.html#GdkEventGrabBroken"/>
         | 
| 659 | 
            +
                <function name="struct GdkEventDND" link="gdk-Event-Structures.html#GdkEventDND"/>
         | 
| 660 | 
            +
                <function name="struct GdkEventProximity" link="gdk-Event-Structures.html#GdkEventProximity"/>
         | 
| 661 | 
            +
                <function name="struct GdkEventClient" link="gdk-Event-Structures.html#GdkEventClient"/>
         | 
| 662 | 
            +
                <function name="struct GdkEventNoExpose" link="gdk-Event-Structures.html#GdkEventNoExpose"/>
         | 
| 663 | 
            +
                <function name="struct GdkEventWindowState" link="gdk-Event-Structures.html#GdkEventWindowState"/>
         | 
| 664 | 
            +
                <function name="struct GdkEventSetting" link="gdk-Event-Structures.html#GdkEventSetting"/>
         | 
| 665 | 
            +
                <function name="struct GdkEventOwnerChange" link="gdk-Event-Structures.html#GdkEventOwnerChange"/>
         | 
| 666 | 
            +
                <function name="struct GdkEventGrabBroken" link="gdk-Event-Structures.html#GdkEventGrabBroken"/>
         | 
| 663 667 | 
             
                <function name="enum GdkScrollDirection" link="gdk-Event-Structures.html#GdkScrollDirection"/>
         | 
| 664 668 | 
             
                <function name="enum GdkVisibilityState" link="gdk-Event-Structures.html#GdkVisibilityState"/>
         | 
| 665 669 | 
             
                <function name="enum GdkCrossingMode" link="gdk-Event-Structures.html#GdkCrossingMode"/>
         | 
| @@ -668,8 +672,8 @@ | |
| 668 672 | 
             
                <function name="enum GdkWindowState" link="gdk-Event-Structures.html#GdkWindowState"/>
         | 
| 669 673 | 
             
                <function name="enum GdkSettingAction" link="gdk-Event-Structures.html#GdkSettingAction"/>
         | 
| 670 674 | 
             
                <function name="enum GdkOwnerChange" link="gdk-Event-Structures.html#GdkOwnerChange"/>
         | 
| 671 | 
            -
                <function name="GdkKeymap" link="gdk-Keyboard-Handling.html#GdkKeymap-struct"/>
         | 
| 672 | 
            -
                <function name="GdkKeymapKey" link="gdk-Keyboard-Handling.html#GdkKeymapKey"/>
         | 
| 675 | 
            +
                <function name="struct GdkKeymap" link="gdk-Keyboard-Handling.html#GdkKeymap-struct"/>
         | 
| 676 | 
            +
                <function name="struct GdkKeymapKey" link="gdk-Keyboard-Handling.html#GdkKeymapKey"/>
         | 
| 673 677 | 
             
                <function name="gdk_keymap_get_default ()" link="gdk-Keyboard-Handling.html#gdk-keymap-get-default"/>
         | 
| 674 678 | 
             
                <function name="gdk_keymap_get_for_display ()" link="gdk-Keyboard-Handling.html#gdk-keymap-get-for-display"/>
         | 
| 675 679 | 
             
                <function name="gdk_keymap_lookup_key ()" link="gdk-Keyboard-Handling.html#gdk-keymap-lookup-key"/>
         | 
| @@ -740,7 +744,7 @@ | |
| 740 744 | 
             
                <function name="gdk_drag_get_protocol_for_display ()" link="gdk-Drag-and-Drop.html#gdk-drag-get-protocol-for-display"/>
         | 
| 741 745 | 
             
                <function name="enum GdkDragProtocol" link="gdk-Drag-and-Drop.html#GdkDragProtocol"/>
         | 
| 742 746 | 
             
                <function name="gdk_drag_context_unref ()" link="gdk-Drag-and-Drop.html#gdk-drag-context-unref"/>
         | 
| 743 | 
            -
                <function name="GdkDragContext" link="gdk-Drag-and-Drop.html#GdkDragContext"/>
         | 
| 747 | 
            +
                <function name="struct GdkDragContext" link="gdk-Drag-and-Drop.html#GdkDragContext"/>
         | 
| 744 748 | 
             
                <function name="enum GdkDragAction" link="gdk-Drag-and-Drop.html#GdkDragAction"/>
         | 
| 745 749 | 
             
                <function name="gdk_drag_status ()" link="gdk-Drag-and-Drop.html#gdk-drag-status"/>
         | 
| 746 750 | 
             
                <function name="gdk_drag_drop_succeeded ()" link="gdk-Drag-and-Drop.html#gdk-drag-drop-succeeded"/>
         | 
| @@ -785,11 +789,11 @@ | |
| 785 789 | 
             
                <function name="GdkDestroyNotify ()" link="gdk-Input.html#GdkDestroyNotify"/>
         | 
| 786 790 | 
             
                <function name="gdk_input_add ()" link="gdk-Input.html#gdk-input-add"/>
         | 
| 787 791 | 
             
                <function name="gdk_input_remove ()" link="gdk-Input.html#gdk-input-remove"/>
         | 
| 788 | 
            -
                <function name="GdkDevice" link="gdk-Input-Devices.html#GdkDevice"/>
         | 
| 792 | 
            +
                <function name="struct GdkDevice" link="gdk-Input-Devices.html#GdkDevice"/>
         | 
| 789 793 | 
             
                <function name="enum GdkInputSource" link="gdk-Input-Devices.html#GdkInputSource"/>
         | 
| 790 794 | 
             
                <function name="enum GdkInputMode" link="gdk-Input-Devices.html#GdkInputMode"/>
         | 
| 791 | 
            -
                <function name="GdkDeviceKey" link="gdk-Input-Devices.html#GdkDeviceKey"/>
         | 
| 792 | 
            -
                <function name="GdkDeviceAxis" link="gdk-Input-Devices.html#GdkDeviceAxis"/>
         | 
| 795 | 
            +
                <function name="struct GdkDeviceKey" link="gdk-Input-Devices.html#GdkDeviceKey"/>
         | 
| 796 | 
            +
                <function name="struct GdkDeviceAxis" link="gdk-Input-Devices.html#GdkDeviceAxis"/>
         | 
| 793 797 | 
             
                <function name="enum GdkAxisUse" link="gdk-Input-Devices.html#GdkAxisUse"/>
         | 
| 794 798 | 
             
                <function name="gdk_devices_list ()" link="gdk-Input-Devices.html#gdk-devices-list"/>
         | 
| 795 799 | 
             
                <function name="gdk_device_get_name ()" link="gdk-Input-Devices.html#gdk-device-get-name"/>
         | 
| @@ -805,13 +809,13 @@ | |
| 805 809 | 
             
                <function name="gdk_device_get_state ()" link="gdk-Input-Devices.html#gdk-device-get-state"/>
         | 
| 806 810 | 
             
                <function name="gdk_device_get_history ()" link="gdk-Input-Devices.html#gdk-device-get-history"/>
         | 
| 807 811 | 
             
                <function name="gdk_device_free_history ()" link="gdk-Input-Devices.html#gdk-device-free-history"/>
         | 
| 808 | 
            -
                <function name="GdkTimeCoord" link="gdk-Input-Devices.html#GdkTimeCoord"/>
         | 
| 812 | 
            +
                <function name="struct GdkTimeCoord" link="gdk-Input-Devices.html#GdkTimeCoord"/>
         | 
| 809 813 | 
             
                <function name="gdk_device_get_axis ()" link="gdk-Input-Devices.html#gdk-device-get-axis"/>
         | 
| 810 814 | 
             
                <function name="gdk_device_get_n_axes ()" link="gdk-Input-Devices.html#gdk-device-get-n-axes"/>
         | 
| 811 815 | 
             
                <function name="gdk_input_set_extension_events ()" link="gdk-Input-Devices.html#gdk-input-set-extension-events"/>
         | 
| 812 816 | 
             
                <function name="enum GdkExtensionMode" link="gdk-Input-Devices.html#GdkExtensionMode"/>
         | 
| 813 | 
            -
                <function name="GdkPangoRenderer" link="gdk-Pango-Interaction.html#GdkPangoRenderer-struct"/>
         | 
| 814 | 
            -
                <function name="GdkPangoRendererClass" link="gdk-Pango-Interaction.html#GdkPangoRendererClass"/>
         | 
| 817 | 
            +
                <function name="struct GdkPangoRenderer" link="gdk-Pango-Interaction.html#GdkPangoRenderer-struct"/>
         | 
| 818 | 
            +
                <function name="struct GdkPangoRendererClass" link="gdk-Pango-Interaction.html#GdkPangoRendererClass"/>
         | 
| 815 819 | 
             
                <function name="gdk_pango_renderer_new ()" link="gdk-Pango-Interaction.html#gdk-pango-renderer-new"/>
         | 
| 816 820 | 
             
                <function name="gdk_pango_renderer_get_default ()" link="gdk-Pango-Interaction.html#gdk-pango-renderer-get-default"/>
         | 
| 817 821 | 
             
                <function name="gdk_pango_renderer_set_drawable ()" link="gdk-Pango-Interaction.html#gdk-pango-renderer-set-drawable"/>
         | 
| @@ -821,9 +825,9 @@ | |
| 821 825 | 
             
                <function name="gdk_pango_context_get ()" link="gdk-Pango-Interaction.html#gdk-pango-context-get"/>
         | 
| 822 826 | 
             
                <function name="gdk_pango_context_get_for_screen ()" link="gdk-Pango-Interaction.html#gdk-pango-context-get-for-screen"/>
         | 
| 823 827 | 
             
                <function name="gdk_pango_context_set_colormap ()" link="gdk-Pango-Interaction.html#gdk-pango-context-set-colormap"/>
         | 
| 824 | 
            -
                <function name="GdkPangoAttrEmbossed" link="gdk-Pango-Interaction.html#GdkPangoAttrEmbossed"/>
         | 
| 825 | 
            -
                <function name="GdkPangoAttrEmbossColor" link="gdk-Pango-Interaction.html#GdkPangoAttrEmbossColor"/>
         | 
| 826 | 
            -
                <function name="GdkPangoAttrStipple" link="gdk-Pango-Interaction.html#GdkPangoAttrStipple"/>
         | 
| 828 | 
            +
                <function name="struct GdkPangoAttrEmbossed" link="gdk-Pango-Interaction.html#GdkPangoAttrEmbossed"/>
         | 
| 829 | 
            +
                <function name="struct GdkPangoAttrEmbossColor" link="gdk-Pango-Interaction.html#GdkPangoAttrEmbossColor"/>
         | 
| 830 | 
            +
                <function name="struct GdkPangoAttrStipple" link="gdk-Pango-Interaction.html#GdkPangoAttrStipple"/>
         | 
| 827 831 | 
             
                <function name="gdk_pango_attr_emboss_color_new ()" link="gdk-Pango-Interaction.html#gdk-pango-attr-emboss-color-new"/>
         | 
| 828 832 | 
             
                <function name="gdk_pango_attr_embossed_new ()" link="gdk-Pango-Interaction.html#gdk-pango-attr-embossed-new"/>
         | 
| 829 833 | 
             
                <function name="gdk_pango_attr_stipple_new ()" link="gdk-Pango-Interaction.html#gdk-pango-attr-stipple-new"/>
         | 
| @@ -835,97 +839,10 @@ | |
| 835 839 | 
             
                <function name="gdk_cairo_set_source_color ()" link="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color"/>
         | 
| 836 840 | 
             
                <function name="gdk_cairo_set_source_pixbuf ()" link="gdk-Cairo-Interaction.html#gdk-cairo-set-source-pixbuf"/>
         | 
| 837 841 | 
             
                <function name="gdk_cairo_set_source_pixmap ()" link="gdk-Cairo-Interaction.html#gdk-cairo-set-source-pixmap"/>
         | 
| 842 | 
            +
                <function name="gdk_cairo_set_source_window ()" link="gdk-Cairo-Interaction.html#gdk-cairo-set-source-window"/>
         | 
| 838 843 | 
             
                <function name="gdk_cairo_rectangle ()" link="gdk-Cairo-Interaction.html#gdk-cairo-rectangle"/>
         | 
| 839 844 | 
             
                <function name="gdk_cairo_region ()" link="gdk-Cairo-Interaction.html#gdk-cairo-region"/>
         | 
| 840 845 | 
             
                <function name="gdk_cairo_reset_clip ()" link="gdk-Cairo-Interaction.html#gdk-cairo-reset-clip"/>
         | 
| 841 | 
            -
                <function name="GDK_ROOT_WINDOW" link="gdk-X-Window-System-Interaction.html#GDK-ROOT-WINDOW:CAPS"/>
         | 
| 842 | 
            -
                <function name="GDK_ROOT_PARENT" link="gdk-X-Window-System-Interaction.html#GDK-ROOT-PARENT:CAPS"/>
         | 
| 843 | 
            -
                <function name="GDK_DISPLAY" link="gdk-X-Window-System-Interaction.html#GDK-DISPLAY:CAPS"/>
         | 
| 844 | 
            -
                <function name="GDK_WINDOW_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XDISPLAY:CAPS"/>
         | 
| 845 | 
            -
                <function name="GDK_WINDOW_XID()" link="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XID:CAPS"/>
         | 
| 846 | 
            -
                <function name="GDK_PIXMAP_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XDISPLAY:CAPS"/>
         | 
| 847 | 
            -
                <function name="GDK_PIXMAP_XID()" link="gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XID:CAPS"/>
         | 
| 848 | 
            -
                <function name="GDK_DISPLAY_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-DISPLAY-XDISPLAY:CAPS"/>
         | 
| 849 | 
            -
                <function name="GDK_DRAWABLE_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XDISPLAY:CAPS"/>
         | 
| 850 | 
            -
                <function name="GDK_DRAWABLE_XID()" link="gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XID:CAPS"/>
         | 
| 851 | 
            -
                <function name="GDK_IMAGE_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-IMAGE-XDISPLAY:CAPS"/>
         | 
| 852 | 
            -
                <function name="GDK_IMAGE_XIMAGE()" link="gdk-X-Window-System-Interaction.html#GDK-IMAGE-XIMAGE:CAPS"/>
         | 
| 853 | 
            -
                <function name="GDK_GC_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-GC-XDISPLAY:CAPS"/>
         | 
| 854 | 
            -
                <function name="GDK_COLORMAP_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XDISPLAY:CAPS"/>
         | 
| 855 | 
            -
                <function name="GDK_COLORMAP_XCOLORMAP()" link="gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XCOLORMAP:CAPS"/>
         | 
| 856 | 
            -
                <function name="GDK_SCREEN_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XDISPLAY:CAPS"/>
         | 
| 857 | 
            -
                <function name="GDK_SCREEN_XNUMBER()" link="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XNUMBER:CAPS"/>
         | 
| 858 | 
            -
                <function name="GDK_SCREEN_XSCREEN()" link="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XSCREEN:CAPS"/>
         | 
| 859 | 
            -
                <function name="GDK_VISUAL_XVISUAL()" link="gdk-X-Window-System-Interaction.html#GDK-VISUAL-XVISUAL:CAPS"/>
         | 
| 860 | 
            -
                <function name="GDK_FONT_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-FONT-XDISPLAY:CAPS"/>
         | 
| 861 | 
            -
                <function name="GDK_FONT_XFONT()" link="gdk-X-Window-System-Interaction.html#GDK-FONT-XFONT:CAPS"/>
         | 
| 862 | 
            -
                <function name="GDK_CURSOR_XCURSOR()" link="gdk-X-Window-System-Interaction.html#GDK-CURSOR-XCURSOR:CAPS"/>
         | 
| 863 | 
            -
                <function name="GDK_CURSOR_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-CURSOR-XDISPLAY:CAPS"/>
         | 
| 864 | 
            -
                <function name="GDK_GC_XGC()" link="gdk-X-Window-System-Interaction.html#GDK-GC-XGC:CAPS"/>
         | 
| 865 | 
            -
                <function name="GDK_GC_GET_XGC()" link="gdk-X-Window-System-Interaction.html#GDK-GC-GET-XGC:CAPS"/>
         | 
| 866 | 
            -
                <function name="GDK_WINDOW_XWINDOW" link="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XWINDOW:CAPS"/>
         | 
| 867 | 
            -
                <function name="gdkx_visual_get ()" link="gdk-X-Window-System-Interaction.html#gdkx-visual-get"/>
         | 
| 868 | 
            -
                <function name="gdkx_colormap_get ()" link="gdk-X-Window-System-Interaction.html#gdkx-colormap-get"/>
         | 
| 869 | 
            -
                <function name="gdk_pixmap_foreign_new ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new"/>
         | 
| 870 | 
            -
                <function name="gdk_pixmap_foreign_new_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-display"/>
         | 
| 871 | 
            -
                <function name="gdk_pixmap_foreign_new_for_screen ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-screen"/>
         | 
| 872 | 
            -
                <function name="gdk_window_foreign_new ()" link="gdk-X-Window-System-Interaction.html#gdk-window-foreign-new"/>
         | 
| 873 | 
            -
                <function name="gdk_window_foreign_new_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-window-foreign-new-for-display"/>
         | 
| 874 | 
            -
                <function name="gdk_xid_table_lookup ()" link="gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup"/>
         | 
| 875 | 
            -
                <function name="gdk_xid_table_lookup_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup-for-display"/>
         | 
| 876 | 
            -
                <function name="gdk_window_lookup ()" link="gdk-X-Window-System-Interaction.html#gdk-window-lookup"/>
         | 
| 877 | 
            -
                <function name="gdk_window_lookup_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-window-lookup-for-display"/>
         | 
| 878 | 
            -
                <function name="gdk_pixmap_lookup ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup"/>
         | 
| 879 | 
            -
                <function name="gdk_pixmap_lookup_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup-for-display"/>
         | 
| 880 | 
            -
                <function name="gdk_font_lookup()" link="gdk-X-Window-System-Interaction.html#gdk-font-lookup"/>
         | 
| 881 | 
            -
                <function name="gdk_font_lookup_for_display()" link="gdk-X-Window-System-Interaction.html#gdk-font-lookup-for-display"/>
         | 
| 882 | 
            -
                <function name="gdk_x11_lookup_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-lookup-xdisplay"/>
         | 
| 883 | 
            -
                <function name="gdk_x11_get_server_time ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-server-time"/>
         | 
| 884 | 
            -
                <function name="gdk_net_wm_supports ()" link="gdk-X-Window-System-Interaction.html#gdk-net-wm-supports"/>
         | 
| 885 | 
            -
                <function name="gdk_x11_screen_supports_net_wm_hint ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-supports-net-wm-hint"/>
         | 
| 886 | 
            -
                <function name="gdk_x11_screen_get_window_manager_name ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-window-manager-name"/>
         | 
| 887 | 
            -
                <function name="gdk_x11_screen_get_monitor_output ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-monitor-output"/>
         | 
| 888 | 
            -
                <function name="gdk_x11_screen_lookup_visual ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-lookup-visual"/>
         | 
| 889 | 
            -
                <function name="gdk_x11_window_set_user_time ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-window-set-user-time"/>
         | 
| 890 | 
            -
                <function name="gdk_x11_window_move_to_current_desktop ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-window-move-to-current-desktop"/>
         | 
| 891 | 
            -
                <function name="gdk_x11_display_get_user_time ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-user-time"/>
         | 
| 892 | 
            -
                <function name="gdk_x11_colormap_foreign_new ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-foreign-new"/>
         | 
| 893 | 
            -
                <function name="gdk_x11_colormap_get_xcolormap ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xcolormap"/>
         | 
| 894 | 
            -
                <function name="gdk_x11_colormap_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xdisplay"/>
         | 
| 895 | 
            -
                <function name="gdk_x11_cursor_get_xcursor ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xcursor"/>
         | 
| 896 | 
            -
                <function name="gdk_x11_cursor_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xdisplay"/>
         | 
| 897 | 
            -
                <function name="gdk_x11_display_broadcast_startup_message ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-broadcast-startup-message"/>
         | 
| 898 | 
            -
                <function name="gdk_x11_display_get_startup_notification_id ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-startup-notification-id"/>
         | 
| 899 | 
            -
                <function name="gdk_x11_display_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-xdisplay"/>
         | 
| 900 | 
            -
                <function name="gdk_x11_display_grab ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-grab"/>
         | 
| 901 | 
            -
                <function name="gdk_x11_display_ungrab ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-ungrab"/>
         | 
| 902 | 
            -
                <function name="gdk_x11_display_set_cursor_theme ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-set-cursor-theme"/>
         | 
| 903 | 
            -
                <function name="gdk_x11_register_standard_event_type ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-register-standard-event-type"/>
         | 
| 904 | 
            -
                <function name="gdk_x11_drawable_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xdisplay"/>
         | 
| 905 | 
            -
                <function name="gdk_x11_drawable_get_xid ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xid"/>
         | 
| 906 | 
            -
                <function name="gdk_x11_font_get_name ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-name"/>
         | 
| 907 | 
            -
                <function name="gdk_x11_font_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xdisplay"/>
         | 
| 908 | 
            -
                <function name="gdk_x11_font_get_xfont ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xfont"/>
         | 
| 909 | 
            -
                <function name="gdk_x11_gc_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xdisplay"/>
         | 
| 910 | 
            -
                <function name="gdk_x11_gc_get_xgc ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xgc"/>
         | 
| 911 | 
            -
                <function name="gdk_x11_get_default_root_xwindow ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-root-xwindow"/>
         | 
| 912 | 
            -
                <function name="gdk_x11_get_default_screen ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-screen"/>
         | 
| 913 | 
            -
                <function name="gdk_x11_get_default_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-xdisplay"/>
         | 
| 914 | 
            -
                <function name="gdk_x11_grab_server ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-grab-server"/>
         | 
| 915 | 
            -
                <function name="gdk_x11_image_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-image-get-xdisplay"/>
         | 
| 916 | 
            -
                <function name="gdk_x11_image_get_ximage ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-image-get-ximage"/>
         | 
| 917 | 
            -
                <function name="gdk_x11_screen_get_screen_number ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-screen-number"/>
         | 
| 918 | 
            -
                <function name="gdk_x11_screen_get_xscreen ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-xscreen"/>
         | 
| 919 | 
            -
                <function name="gdk_x11_ungrab_server ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-ungrab-server"/>
         | 
| 920 | 
            -
                <function name="gdk_x11_visual_get_xvisual ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-visual-get-xvisual"/>
         | 
| 921 | 
            -
                <function name="gdk_x11_atom_to_xatom ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom"/>
         | 
| 922 | 
            -
                <function name="gdk_x11_atom_to_xatom_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom-for-display"/>
         | 
| 923 | 
            -
                <function name="gdk_x11_xatom_to_atom ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom"/>
         | 
| 924 | 
            -
                <function name="gdk_x11_xatom_to_atom_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom-for-display"/>
         | 
| 925 | 
            -
                <function name="gdk_x11_get_xatom_by_name ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name"/>
         | 
| 926 | 
            -
                <function name="gdk_x11_get_xatom_by_name_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name-for-display"/>
         | 
| 927 | 
            -
                <function name="gdk_x11_get_xatom_name ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name"/>
         | 
| 928 | 
            -
                <function name="gdk_x11_get_xatom_name_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name-for-display"/>
         | 
| 929 846 | 
             
                <function name="GdkAppLaunchContext" link="gdk-Application-launching.html#GdkAppLaunchContext"/>
         | 
| 930 847 | 
             
                <function name="gdk_app_launch_context_new ()" link="gdk-Application-launching.html#gdk-app-launch-context-new"/>
         | 
| 931 848 | 
             
                <function name="gdk_app_launch_context_set_display ()" link="gdk-Application-launching.html#gdk-app-launch-context-set-display"/>
         | 
| @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            <?xml version="1.0" encoding="utf-8" standalone="no"?>
         | 
| 2 2 | 
             
            <!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
         | 
| 3 | 
            -
            <book xmlns="http://www.devhelp.net/book" title="GDK Reference Manual" link="index.html" author="" name="gdk" version="2" language="c">
         | 
| 3 | 
            +
            <book xmlns="http://www.devhelp.net/book" title="GDK 2 Reference Manual" link="index.html" author="" name="gdk" version="2" language="c">
         | 
| 4 4 | 
             
              <chapters>
         | 
| 5 5 | 
             
                <sub name="API Reference" link="reference.html">
         | 
| 6 6 | 
             
                  <sub name="General" link="gdk-General.html"/>
         | 
| @@ -31,7 +31,6 @@ | |
| 31 31 | 
             
                  <sub name="Input Devices" link="gdk-Input-Devices.html"/>
         | 
| 32 32 | 
             
                  <sub name="Pango Interaction" link="gdk-Pango-Interaction.html"/>
         | 
| 33 33 | 
             
                  <sub name="Cairo Interaction" link="gdk-Cairo-Interaction.html"/>
         | 
| 34 | 
            -
                  <sub name="X Window System Interaction" link="gdk-X-Window-System-Interaction.html"/>
         | 
| 35 34 | 
             
                  <sub name="Application launching" link="gdk-Application-launching.html"/>
         | 
| 36 35 | 
             
                  <sub name="Testing" link="gdk-Testing.html"/>
         | 
| 37 36 | 
             
                </sub>
         | 
| @@ -55,8 +54,8 @@ | |
| 55 54 | 
             
                <keyword type="function" name="gdk_init_check ()" link="gdk-General.html#gdk-init-check"/>
         | 
| 56 55 | 
             
                <keyword type="function" name="gdk_parse_args ()" link="gdk-General.html#gdk-parse-args" since="2.2"/>
         | 
| 57 56 | 
             
                <keyword type="function" name="gdk_get_display_arg_name ()" link="gdk-General.html#gdk-get-display-arg-name" since="2.2"/>
         | 
| 58 | 
            -
                <keyword type="function" name="gdk_set_locale ()" link="gdk-General.html#gdk-set-locale"/>
         | 
| 59 | 
            -
                <keyword type="function" name="gdk_set_sm_client_id ()" link="gdk-General.html#gdk-set-sm-client-id"/>
         | 
| 57 | 
            +
                <keyword type="function" name="gdk_set_locale ()" link="gdk-General.html#gdk-set-locale" deprecated="2.24: Use setlocale() directly"/>
         | 
| 58 | 
            +
                <keyword type="function" name="gdk_set_sm_client_id ()" link="gdk-General.html#gdk-set-sm-client-id" deprecated="2.24: Use gdk_x11_set_sm_client_id() instead"/>
         | 
| 60 59 | 
             
                <keyword type="function" name="gdk_exit ()" link="gdk-General.html#gdk-exit" deprecated=""/>
         | 
| 61 60 | 
             
                <keyword type="function" name="gdk_notify_startup_complete ()" link="gdk-General.html#gdk-notify-startup-complete" since="2.2"/>
         | 
| 62 61 | 
             
                <keyword type="function" name="gdk_notify_startup_complete_with_id ()" link="gdk-General.html#gdk-notify-startup-complete-with-id" since="2.12"/>
         | 
| @@ -106,8 +105,8 @@ | |
| 106 105 | 
             
                <keyword type="function" name="gdk_display_set_double_click_distance ()" link="GdkDisplay.html#gdk-display-set-double-click-distance" since="2.4"/>
         | 
| 107 106 | 
             
                <keyword type="function" name="gdk_display_get_pointer ()" link="GdkDisplay.html#gdk-display-get-pointer" since="2.2"/>
         | 
| 108 107 | 
             
                <keyword type="function" name="gdk_display_get_window_at_pointer ()" link="GdkDisplay.html#gdk-display-get-window-at-pointer" since="2.2"/>
         | 
| 109 | 
            -
                <keyword type="struct" name="GdkDisplayPointerHooks" link="GdkDisplay.html#GdkDisplayPointerHooks" since="2.2"/>
         | 
| 110 | 
            -
                <keyword type="function" name="gdk_display_set_pointer_hooks ()" link="GdkDisplay.html#gdk-display-set-pointer-hooks" since="2.2"/>
         | 
| 108 | 
            +
                <keyword type="struct" name="struct GdkDisplayPointerHooks" link="GdkDisplay.html#GdkDisplayPointerHooks" since="2.2"/>
         | 
| 109 | 
            +
                <keyword type="function" name="gdk_display_set_pointer_hooks ()" link="GdkDisplay.html#gdk-display-set-pointer-hooks" deprecated="2.24: This function will go away in GTK 3 for lack of use cases." since="2.2"/>
         | 
| 111 110 | 
             
                <keyword type="function" name="gdk_display_warp_pointer ()" link="GdkDisplay.html#gdk-display-warp-pointer" since="2.8"/>
         | 
| 112 111 | 
             
                <keyword type="function" name="gdk_display_supports_cursor_color ()" link="GdkDisplay.html#gdk-display-supports-cursor-color" since="2.4"/>
         | 
| 113 112 | 
             
                <keyword type="function" name="gdk_display_supports_cursor_alpha ()" link="GdkDisplay.html#gdk-display-supports-cursor-alpha" since="2.4"/>
         | 
| @@ -167,16 +166,16 @@ | |
| 167 166 | 
             
                <keyword type="function" name="gdk_screen_set_resolution ()" link="GdkScreen.html#gdk-screen-set-resolution" since="2.10"/>
         | 
| 168 167 | 
             
                <keyword type="function" name="gdk_screen_get_active_window ()" link="GdkScreen.html#gdk-screen-get-active-window" since="2.10"/>
         | 
| 169 168 | 
             
                <keyword type="function" name="gdk_screen_get_window_stack ()" link="GdkScreen.html#gdk-screen-get-window-stack" since="2.10"/>
         | 
| 170 | 
            -
                <keyword type="function" name="gdk_spawn_on_screen ()" link="GdkScreen.html#gdk-spawn-on-screen" since="2.4"/>
         | 
| 171 | 
            -
                <keyword type="function" name="gdk_spawn_on_screen_with_pipes ()" link="GdkScreen.html#gdk-spawn-on-screen-with-pipes" since="2.4"/>
         | 
| 172 | 
            -
                <keyword type="function" name="gdk_spawn_command_line_on_screen ()" link="GdkScreen.html#gdk-spawn-command-line-on-screen" since="2.4"/>
         | 
| 169 | 
            +
                <keyword type="function" name="gdk_spawn_on_screen ()" link="GdkScreen.html#gdk-spawn-on-screen" deprecated="" since="2.4"/>
         | 
| 170 | 
            +
                <keyword type="function" name="gdk_spawn_on_screen_with_pipes ()" link="GdkScreen.html#gdk-spawn-on-screen-with-pipes" deprecated="" since="2.4"/>
         | 
| 171 | 
            +
                <keyword type="function" name="gdk_spawn_command_line_on_screen ()" link="GdkScreen.html#gdk-spawn-command-line-on-screen" deprecated="" since="2.4"/>
         | 
| 173 172 | 
             
                <keyword type="property" name="The "font-options" property" link="GdkScreen.html#GdkScreen--font-options"/>
         | 
| 174 173 | 
             
                <keyword type="property" name="The "resolution" property" link="GdkScreen.html#GdkScreen--resolution"/>
         | 
| 175 174 | 
             
                <keyword type="signal" name="The "composited-changed" signal" link="GdkScreen.html#GdkScreen-composited-changed"/>
         | 
| 176 175 | 
             
                <keyword type="signal" name="The "monitors-changed" signal" link="GdkScreen.html#GdkScreen-monitors-changed"/>
         | 
| 177 176 | 
             
                <keyword type="signal" name="The "size-changed" signal" link="GdkScreen.html#GdkScreen-size-changed"/>
         | 
| 178 | 
            -
                <keyword type="struct" name="GdkPoint" link="gdk-Points-Rectangles-and-Regions.html#GdkPoint"/>
         | 
| 179 | 
            -
                <keyword type="struct" name="GdkRectangle" link="gdk-Points-Rectangles-and-Regions.html#GdkRectangle"/>
         | 
| 177 | 
            +
                <keyword type="struct" name="struct GdkPoint" link="gdk-Points-Rectangles-and-Regions.html#GdkPoint"/>
         | 
| 178 | 
            +
                <keyword type="struct" name="struct GdkRectangle" link="gdk-Points-Rectangles-and-Regions.html#GdkRectangle"/>
         | 
| 180 179 | 
             
                <keyword type="function" name="gdk_rectangle_intersect ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-rectangle-intersect"/>
         | 
| 181 180 | 
             
                <keyword type="function" name="gdk_rectangle_union ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-rectangle-union"/>
         | 
| 182 181 | 
             
                <keyword type="struct" name="GdkRegion" link="gdk-Points-Rectangles-and-Regions.html#GdkRegion"/>
         | 
| @@ -201,11 +200,11 @@ | |
| 201 200 | 
             
                <keyword type="function" name="gdk_region_union ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-region-union"/>
         | 
| 202 201 | 
             
                <keyword type="function" name="gdk_region_subtract ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-region-subtract"/>
         | 
| 203 202 | 
             
                <keyword type="function" name="gdk_region_xor ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-region-xor"/>
         | 
| 204 | 
            -
                <keyword type="struct" name="GdkSpan" link="gdk-Points-Rectangles-and-Regions.html#GdkSpan"/>
         | 
| 203 | 
            +
                <keyword type="struct" name="struct GdkSpan" link="gdk-Points-Rectangles-and-Regions.html#GdkSpan"/>
         | 
| 205 204 | 
             
                <keyword type="function" name="GdkSpanFunc ()" link="gdk-Points-Rectangles-and-Regions.html#GdkSpanFunc" deprecated=""/>
         | 
| 206 205 | 
             
                <keyword type="function" name="gdk_region_spans_intersect_foreach ()" link="gdk-Points-Rectangles-and-Regions.html#gdk-region-spans-intersect-foreach" deprecated="2.22: There is no replacement."/>
         | 
| 207 206 | 
             
                <keyword type="struct" name="GdkGC" link="gdk-Graphics-Contexts.html#GdkGC-struct"/>
         | 
| 208 | 
            -
                <keyword type="struct" name="GdkGCValues" link="gdk-Graphics-Contexts.html#GdkGCValues"/>
         | 
| 207 | 
            +
                <keyword type="struct" name="struct GdkGCValues" link="gdk-Graphics-Contexts.html#GdkGCValues"/>
         | 
| 209 208 | 
             
                <keyword type="enum" name="enum GdkGCValuesMask" link="gdk-Graphics-Contexts.html#GdkGCValuesMask"/>
         | 
| 210 209 | 
             
                <keyword type="enum" name="enum GdkFunction" link="gdk-Graphics-Contexts.html#GdkFunction"/>
         | 
| 211 210 | 
             
                <keyword type="function" name="gdk_gc_new ()" link="gdk-Graphics-Contexts.html#gdk-gc-new" deprecated="2.22: Use Cairo for rendering."/>
         | 
| @@ -248,13 +247,13 @@ | |
| 248 247 | 
             
                <keyword type="function" name="gdk_drawable_unref ()" link="gdk-Drawing-Primitives.html#gdk-drawable-unref" deprecated="2.0: Use g_object_unref() instead."/>
         | 
| 249 248 | 
             
                <keyword type="function" name="gdk_drawable_set_data ()" link="gdk-Drawing-Primitives.html#gdk-drawable-set-data" deprecated=""/>
         | 
| 250 249 | 
             
                <keyword type="function" name="gdk_drawable_get_data ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-data" deprecated=""/>
         | 
| 251 | 
            -
                <keyword type="function" name="gdk_drawable_get_display ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-display" since="2.2"/>
         | 
| 252 | 
            -
                <keyword type="function" name="gdk_drawable_get_screen ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-screen" since="2.2"/>
         | 
| 253 | 
            -
                <keyword type="function" name="gdk_drawable_get_visual ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-visual"/>
         | 
| 250 | 
            +
                <keyword type="function" name="gdk_drawable_get_display ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-display" deprecated="2.24: Use gdk_window_get_display() instead" since="2.2"/>
         | 
| 251 | 
            +
                <keyword type="function" name="gdk_drawable_get_screen ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-screen" deprecated="2.24: Use gdk_window_get_screen() instead" since="2.2"/>
         | 
| 252 | 
            +
                <keyword type="function" name="gdk_drawable_get_visual ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-visual" deprecated="2.24: Use gdk_window_get_visual()"/>
         | 
| 254 253 | 
             
                <keyword type="function" name="gdk_drawable_set_colormap ()" link="gdk-Drawing-Primitives.html#gdk-drawable-set-colormap"/>
         | 
| 255 254 | 
             
                <keyword type="function" name="gdk_drawable_get_colormap ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-colormap"/>
         | 
| 256 255 | 
             
                <keyword type="function" name="gdk_drawable_get_depth ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-depth"/>
         | 
| 257 | 
            -
                <keyword type="function" name="gdk_drawable_get_size ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-size"/>
         | 
| 256 | 
            +
                <keyword type="function" name="gdk_drawable_get_size ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-size" deprecated=""/>
         | 
| 258 257 | 
             
                <keyword type="function" name="gdk_drawable_get_clip_region ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-clip-region"/>
         | 
| 259 258 | 
             
                <keyword type="function" name="gdk_drawable_get_visible_region ()" link="gdk-Drawing-Primitives.html#gdk-drawable-get-visible-region"/>
         | 
| 260 259 | 
             
                <keyword type="function" name="gdk_draw_point ()" link="gdk-Drawing-Primitives.html#gdk-draw-point" deprecated=""/>
         | 
| @@ -263,12 +262,12 @@ | |
| 263 262 | 
             
                <keyword type="function" name="gdk_draw_lines ()" link="gdk-Drawing-Primitives.html#gdk-draw-lines" deprecated=""/>
         | 
| 264 263 | 
             
                <keyword type="function" name="gdk_draw_pixbuf ()" link="gdk-Drawing-Primitives.html#gdk-draw-pixbuf" deprecated="" since="2.2"/>
         | 
| 265 264 | 
             
                <keyword type="function" name="gdk_draw_segments ()" link="gdk-Drawing-Primitives.html#gdk-draw-segments" deprecated=""/>
         | 
| 266 | 
            -
                <keyword type="struct" name="GdkSegment" link="gdk-Drawing-Primitives.html#GdkSegment"/>
         | 
| 265 | 
            +
                <keyword type="struct" name="struct GdkSegment" link="gdk-Drawing-Primitives.html#GdkSegment"/>
         | 
| 267 266 | 
             
                <keyword type="function" name="gdk_draw_rectangle ()" link="gdk-Drawing-Primitives.html#gdk-draw-rectangle" deprecated=""/>
         | 
| 268 267 | 
             
                <keyword type="function" name="gdk_draw_arc ()" link="gdk-Drawing-Primitives.html#gdk-draw-arc" deprecated=""/>
         | 
| 269 268 | 
             
                <keyword type="function" name="gdk_draw_polygon ()" link="gdk-Drawing-Primitives.html#gdk-draw-polygon" deprecated=""/>
         | 
| 270 269 | 
             
                <keyword type="function" name="gdk_draw_trapezoids ()" link="gdk-Drawing-Primitives.html#gdk-draw-trapezoids" deprecated="" since="2.6"/>
         | 
| 271 | 
            -
                <keyword type="struct" name="GdkTrapezoid" link="gdk-Drawing-Primitives.html#GdkTrapezoid"/>
         | 
| 270 | 
            +
                <keyword type="struct" name="struct GdkTrapezoid" link="gdk-Drawing-Primitives.html#GdkTrapezoid"/>
         | 
| 272 271 | 
             
                <keyword type="function" name="gdk_draw_glyphs ()" link="gdk-Drawing-Primitives.html#gdk-draw-glyphs" deprecated="2.22: Use pango_cairo_show_glyphs() instead."/>
         | 
| 273 272 | 
             
                <keyword type="function" name="gdk_draw_glyphs_transformed ()" link="gdk-Drawing-Primitives.html#gdk-draw-glyphs-transformed" deprecated="2.22: Use pango_cairo_show_glyphs() instead." since="2.6"/>
         | 
| 274 273 | 
             
                <keyword type="function" name="gdk_draw_layout_line ()" link="gdk-Drawing-Primitives.html#gdk-draw-layout-line" deprecated=""/>
         | 
| @@ -291,6 +290,7 @@ | |
| 291 290 | 
             
                <keyword type="function" name="gdk_pixmap_colormap_create_from_xpm ()" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-colormap-create-from-xpm" deprecated=""/>
         | 
| 292 291 | 
             
                <keyword type="function" name="gdk_pixmap_create_from_xpm_d ()" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-create-from-xpm-d" deprecated=""/>
         | 
| 293 292 | 
             
                <keyword type="function" name="gdk_pixmap_colormap_create_from_xpm_d ()" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-colormap-create-from-xpm-d" deprecated=""/>
         | 
| 293 | 
            +
                <keyword type="function" name="gdk_pixmap_get_size ()" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-get-size" since="2.24"/>
         | 
| 294 294 | 
             
                <keyword type="macro" name="gdk_pixmap_ref" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-ref" deprecated=""/>
         | 
| 295 295 | 
             
                <keyword type="macro" name="gdk_pixmap_unref" link="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-unref" deprecated=""/>
         | 
| 296 296 | 
             
                <keyword type="typedef" name="GdkBitmap" link="gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"/>
         | 
| @@ -306,7 +306,7 @@ | |
| 306 306 | 
             
                <keyword type="enum" name="enum GdkRgbDither" link="gdk-GdkRGB.html#GdkRgbDither"/>
         | 
| 307 307 | 
             
                <keyword type="function" name="gdk_rgb_cmap_new ()" link="gdk-GdkRGB.html#gdk-rgb-cmap-new" deprecated=""/>
         | 
| 308 308 | 
             
                <keyword type="function" name="gdk_rgb_cmap_free ()" link="gdk-GdkRGB.html#gdk-rgb-cmap-free" deprecated=""/>
         | 
| 309 | 
            -
                <keyword type="struct" name="GdkRgbCmap" link="gdk-GdkRGB.html#GdkRgbCmap" deprecated=""/>
         | 
| 309 | 
            +
                <keyword type="struct" name="struct GdkRgbCmap" link="gdk-GdkRGB.html#GdkRgbCmap" deprecated=""/>
         | 
| 310 310 | 
             
                <keyword type="function" name="gdk_rgb_gc_set_foreground ()" link="gdk-GdkRGB.html#gdk-rgb-gc-set-foreground" deprecated=""/>
         | 
| 311 311 | 
             
                <keyword type="function" name="gdk_rgb_gc_set_background ()" link="gdk-GdkRGB.html#gdk-rgb-gc-set-background" deprecated=""/>
         | 
| 312 312 | 
             
                <keyword type="function" name="gdk_rgb_xpixel_from_rgb ()" link="gdk-GdkRGB.html#gdk-rgb-xpixel-from-rgb" deprecated=""/>
         | 
| @@ -448,16 +448,21 @@ | |
| 448 448 | 
             
                <keyword type="enum" name="enum GdkWindowType" link="gdk-Windows.html#GdkWindowType"/>
         | 
| 449 449 | 
             
                <keyword type="enum" name="enum GdkWindowClass" link="gdk-Windows.html#GdkWindowClass"/>
         | 
| 450 450 | 
             
                <keyword type="enum" name="enum GdkWindowHints" link="gdk-Windows.html#GdkWindowHints"/>
         | 
| 451 | 
            -
                <keyword type="struct" name="GdkGeometry" link="gdk-Windows.html#GdkGeometry"/>
         | 
| 451 | 
            +
                <keyword type="struct" name="struct GdkGeometry" link="gdk-Windows.html#GdkGeometry"/>
         | 
| 452 452 | 
             
                <keyword type="enum" name="enum GdkGravity" link="gdk-Windows.html#GdkGravity"/>
         | 
| 453 453 | 
             
                <keyword type="enum" name="enum GdkWindowEdge" link="gdk-Windows.html#GdkWindowEdge"/>
         | 
| 454 454 | 
             
                <keyword type="enum" name="enum GdkWindowTypeHint" link="gdk-Windows.html#GdkWindowTypeHint"/>
         | 
| 455 | 
            -
                <keyword type="struct" name="GdkWindowAttr" link="gdk-Windows.html#GdkWindowAttr"/>
         | 
| 455 | 
            +
                <keyword type="struct" name="struct GdkWindowAttr" link="gdk-Windows.html#GdkWindowAttr"/>
         | 
| 456 456 | 
             
                <keyword type="enum" name="enum GdkWindowAttributesType" link="gdk-Windows.html#GdkWindowAttributesType"/>
         | 
| 457 457 | 
             
                <keyword type="function" name="gdk_window_new ()" link="gdk-Windows.html#gdk-window-new"/>
         | 
| 458 458 | 
             
                <keyword type="function" name="gdk_window_destroy ()" link="gdk-Windows.html#gdk-window-destroy"/>
         | 
| 459 459 | 
             
                <keyword type="macro" name="gdk_window_ref" link="gdk-Windows.html#gdk-window-ref" deprecated=""/>
         | 
| 460 460 | 
             
                <keyword type="macro" name="gdk_window_unref" link="gdk-Windows.html#gdk-window-unref" deprecated=""/>
         | 
| 461 | 
            +
                <keyword type="function" name="gdk_window_get_display ()" link="gdk-Windows.html#gdk-window-get-display" since="2.24"/>
         | 
| 462 | 
            +
                <keyword type="function" name="gdk_window_get_screen ()" link="gdk-Windows.html#gdk-window-get-screen"/>
         | 
| 463 | 
            +
                <keyword type="function" name="gdk_window_get_visual ()" link="gdk-Windows.html#gdk-window-get-visual" since="2.24"/>
         | 
| 464 | 
            +
                <keyword type="function" name="gdk_window_get_width ()" link="gdk-Windows.html#gdk-window-get-width" since="2.24"/>
         | 
| 465 | 
            +
                <keyword type="function" name="gdk_window_get_height ()" link="gdk-Windows.html#gdk-window-get-height" since="2.24"/>
         | 
| 461 466 | 
             
                <keyword type="function" name="gdk_window_get_window_type ()" link="gdk-Windows.html#gdk-window-get-window-type"/>
         | 
| 462 467 | 
             
                <keyword type="function" name="gdk_window_at_pointer ()" link="gdk-Windows.html#gdk-window-at-pointer"/>
         | 
| 463 468 | 
             
                <keyword type="function" name="gdk_window_show ()" link="gdk-Windows.html#gdk-window-show"/>
         | 
| @@ -564,7 +569,6 @@ | |
| 564 569 | 
             
                <keyword type="function" name="gdk_window_get_root_origin ()" link="gdk-Windows.html#gdk-window-get-root-origin"/>
         | 
| 565 570 | 
             
                <keyword type="function" name="gdk_window_get_frame_extents ()" link="gdk-Windows.html#gdk-window-get-frame-extents"/>
         | 
| 566 571 | 
             
                <keyword type="macro" name="gdk_window_get_size" link="gdk-Windows.html#gdk-window-get-size" deprecated=""/>
         | 
| 567 | 
            -
                <keyword type="macro" name="gdk_window_get_visual" link="gdk-Windows.html#gdk-window-get-visual" deprecated=""/>
         | 
| 568 572 | 
             
                <keyword type="macro" name="gdk_window_get_colormap" link="gdk-Windows.html#gdk-window-get-colormap" deprecated=""/>
         | 
| 569 573 | 
             
                <keyword type="macro" name="gdk_window_get_type" link="gdk-Windows.html#gdk-window-get-type" deprecated=""/>
         | 
| 570 574 | 
             
                <keyword type="function" name="gdk_window_get_origin ()" link="gdk-Windows.html#gdk-window-get-origin"/>
         | 
| @@ -596,8 +600,8 @@ | |
| 596 600 | 
             
                <keyword type="enum" name="enum GdkWMFunction" link="gdk-Windows.html#GdkWMFunction"/>
         | 
| 597 601 | 
             
                <keyword type="function" name="gdk_window_get_toplevels ()" link="gdk-Windows.html#gdk-window-get-toplevels" deprecated="2.16: Use gdk_screen_get_toplevel_windows() instead."/>
         | 
| 598 602 | 
             
                <keyword type="function" name="gdk_get_default_root_window ()" link="gdk-Windows.html#gdk-get-default-root-window"/>
         | 
| 599 | 
            -
                <keyword type="struct" name="GdkPointerHooks" link="gdk-Windows.html#GdkPointerHooks"/>
         | 
| 600 | 
            -
                <keyword type="function" name="gdk_set_pointer_hooks ()" link="gdk-Windows.html#gdk-set-pointer-hooks"/>
         | 
| 603 | 
            +
                <keyword type="struct" name="struct GdkPointerHooks" link="gdk-Windows.html#GdkPointerHooks"/>
         | 
| 604 | 
            +
                <keyword type="function" name="gdk_set_pointer_hooks ()" link="gdk-Windows.html#gdk-set-pointer-hooks" deprecated="2.24: This function will go away in GTK 3 for lack of use cases."/>
         | 
| 601 605 | 
             
                <keyword type="function" name="gdk_offscreen_window_get_pixmap ()" link="gdk-Windows.html#gdk-offscreen-window-get-pixmap" since="2.18"/>
         | 
| 602 606 | 
             
                <keyword type="function" name="gdk_offscreen_window_set_embedder ()" link="gdk-Windows.html#gdk-offscreen-window-set-embedder" since="2.18"/>
         | 
| 603 607 | 
             
                <keyword type="function" name="gdk_offscreen_window_get_embedder ()" link="gdk-Windows.html#gdk-offscreen-window-get-embedder" since="2.18"/>
         | 
| @@ -639,27 +643,27 @@ | |
| 639 643 | 
             
                <keyword type="function" name="gdk_event_get_screen ()" link="gdk-Events.html#gdk-event-get-screen" since="2.2"/>
         | 
| 640 644 | 
             
                <keyword type="function" name="gdk_setting_get ()" link="gdk-Events.html#gdk-setting-get"/>
         | 
| 641 645 | 
             
                <keyword type="union" name="union GdkEvent" link="gdk-Event-Structures.html#GdkEvent"/>
         | 
| 642 | 
            -
                <keyword type="struct" name="GdkEventAny" link="gdk-Event-Structures.html#GdkEventAny"/>
         | 
| 643 | 
            -
                <keyword type="struct" name="GdkEventKey" link="gdk-Event-Structures.html#GdkEventKey"/>
         | 
| 644 | 
            -
                <keyword type="struct" name="GdkEventButton" link="gdk-Event-Structures.html#GdkEventButton"/>
         | 
| 645 | 
            -
                <keyword type="struct" name="GdkEventScroll" link="gdk-Event-Structures.html#GdkEventScroll"/>
         | 
| 646 | 
            -
                <keyword type="struct" name="GdkEventMotion" link="gdk-Event-Structures.html#GdkEventMotion"/>
         | 
| 647 | 
            -
                <keyword type="struct" name="GdkEventExpose" link="gdk-Event-Structures.html#GdkEventExpose"/>
         | 
| 648 | 
            -
                <keyword type="struct" name="GdkEventVisibility" link="gdk-Event-Structures.html#GdkEventVisibility"/>
         | 
| 649 | 
            -
                <keyword type="struct" name="GdkEventCrossing" link="gdk-Event-Structures.html#GdkEventCrossing"/>
         | 
| 650 | 
            -
                <keyword type="struct" name="GdkEventFocus" link="gdk-Event-Structures.html#GdkEventFocus"/>
         | 
| 651 | 
            -
                <keyword type="struct" name="GdkEventConfigure" link="gdk-Event-Structures.html#GdkEventConfigure"/>
         | 
| 652 | 
            -
                <keyword type="struct" name="GdkEventProperty" link="gdk-Event-Structures.html#GdkEventProperty"/>
         | 
| 653 | 
            -
                <keyword type="struct" name="GdkEventSelection" link="gdk-Event-Structures.html#GdkEventSelection"/>
         | 
| 646 | 
            +
                <keyword type="struct" name="struct GdkEventAny" link="gdk-Event-Structures.html#GdkEventAny"/>
         | 
| 647 | 
            +
                <keyword type="struct" name="struct GdkEventKey" link="gdk-Event-Structures.html#GdkEventKey"/>
         | 
| 648 | 
            +
                <keyword type="struct" name="struct GdkEventButton" link="gdk-Event-Structures.html#GdkEventButton"/>
         | 
| 649 | 
            +
                <keyword type="struct" name="struct GdkEventScroll" link="gdk-Event-Structures.html#GdkEventScroll"/>
         | 
| 650 | 
            +
                <keyword type="struct" name="struct GdkEventMotion" link="gdk-Event-Structures.html#GdkEventMotion"/>
         | 
| 651 | 
            +
                <keyword type="struct" name="struct GdkEventExpose" link="gdk-Event-Structures.html#GdkEventExpose"/>
         | 
| 652 | 
            +
                <keyword type="struct" name="struct GdkEventVisibility" link="gdk-Event-Structures.html#GdkEventVisibility"/>
         | 
| 653 | 
            +
                <keyword type="struct" name="struct GdkEventCrossing" link="gdk-Event-Structures.html#GdkEventCrossing"/>
         | 
| 654 | 
            +
                <keyword type="struct" name="struct GdkEventFocus" link="gdk-Event-Structures.html#GdkEventFocus"/>
         | 
| 655 | 
            +
                <keyword type="struct" name="struct GdkEventConfigure" link="gdk-Event-Structures.html#GdkEventConfigure"/>
         | 
| 656 | 
            +
                <keyword type="struct" name="struct GdkEventProperty" link="gdk-Event-Structures.html#GdkEventProperty"/>
         | 
| 657 | 
            +
                <keyword type="struct" name="struct GdkEventSelection" link="gdk-Event-Structures.html#GdkEventSelection"/>
         | 
| 654 658 | 
             
                <keyword type="typedef" name="GdkNativeWindow" link="gdk-Event-Structures.html#GdkNativeWindow"/>
         | 
| 655 | 
            -
                <keyword type="struct" name="GdkEventDND" link="gdk-Event-Structures.html#GdkEventDND"/>
         | 
| 656 | 
            -
                <keyword type="struct" name="GdkEventProximity" link="gdk-Event-Structures.html#GdkEventProximity"/>
         | 
| 657 | 
            -
                <keyword type="struct" name="GdkEventClient" link="gdk-Event-Structures.html#GdkEventClient"/>
         | 
| 658 | 
            -
                <keyword type="struct" name="GdkEventNoExpose" link="gdk-Event-Structures.html#GdkEventNoExpose"/>
         | 
| 659 | 
            -
                <keyword type="struct" name="GdkEventWindowState" link="gdk-Event-Structures.html#GdkEventWindowState"/>
         | 
| 660 | 
            -
                <keyword type="struct" name="GdkEventSetting" link="gdk-Event-Structures.html#GdkEventSetting"/>
         | 
| 661 | 
            -
                <keyword type="struct" name="GdkEventOwnerChange" link="gdk-Event-Structures.html#GdkEventOwnerChange" since="2.6"/>
         | 
| 662 | 
            -
                <keyword type="struct" name="GdkEventGrabBroken" link="gdk-Event-Structures.html#GdkEventGrabBroken" since="2.8"/>
         | 
| 659 | 
            +
                <keyword type="struct" name="struct GdkEventDND" link="gdk-Event-Structures.html#GdkEventDND"/>
         | 
| 660 | 
            +
                <keyword type="struct" name="struct GdkEventProximity" link="gdk-Event-Structures.html#GdkEventProximity"/>
         | 
| 661 | 
            +
                <keyword type="struct" name="struct GdkEventClient" link="gdk-Event-Structures.html#GdkEventClient"/>
         | 
| 662 | 
            +
                <keyword type="struct" name="struct GdkEventNoExpose" link="gdk-Event-Structures.html#GdkEventNoExpose"/>
         | 
| 663 | 
            +
                <keyword type="struct" name="struct GdkEventWindowState" link="gdk-Event-Structures.html#GdkEventWindowState"/>
         | 
| 664 | 
            +
                <keyword type="struct" name="struct GdkEventSetting" link="gdk-Event-Structures.html#GdkEventSetting"/>
         | 
| 665 | 
            +
                <keyword type="struct" name="struct GdkEventOwnerChange" link="gdk-Event-Structures.html#GdkEventOwnerChange" since="2.6"/>
         | 
| 666 | 
            +
                <keyword type="struct" name="struct GdkEventGrabBroken" link="gdk-Event-Structures.html#GdkEventGrabBroken" since="2.8"/>
         | 
| 663 667 | 
             
                <keyword type="enum" name="enum GdkScrollDirection" link="gdk-Event-Structures.html#GdkScrollDirection"/>
         | 
| 664 668 | 
             
                <keyword type="enum" name="enum GdkVisibilityState" link="gdk-Event-Structures.html#GdkVisibilityState"/>
         | 
| 665 669 | 
             
                <keyword type="enum" name="enum GdkCrossingMode" link="gdk-Event-Structures.html#GdkCrossingMode"/>
         | 
| @@ -668,8 +672,8 @@ | |
| 668 672 | 
             
                <keyword type="enum" name="enum GdkWindowState" link="gdk-Event-Structures.html#GdkWindowState"/>
         | 
| 669 673 | 
             
                <keyword type="enum" name="enum GdkSettingAction" link="gdk-Event-Structures.html#GdkSettingAction"/>
         | 
| 670 674 | 
             
                <keyword type="enum" name="enum GdkOwnerChange" link="gdk-Event-Structures.html#GdkOwnerChange"/>
         | 
| 671 | 
            -
                <keyword type="struct" name="GdkKeymap" link="gdk-Keyboard-Handling.html#GdkKeymap-struct"/>
         | 
| 672 | 
            -
                <keyword type="struct" name="GdkKeymapKey" link="gdk-Keyboard-Handling.html#GdkKeymapKey"/>
         | 
| 675 | 
            +
                <keyword type="struct" name="struct GdkKeymap" link="gdk-Keyboard-Handling.html#GdkKeymap-struct"/>
         | 
| 676 | 
            +
                <keyword type="struct" name="struct GdkKeymapKey" link="gdk-Keyboard-Handling.html#GdkKeymapKey"/>
         | 
| 673 677 | 
             
                <keyword type="function" name="gdk_keymap_get_default ()" link="gdk-Keyboard-Handling.html#gdk-keymap-get-default"/>
         | 
| 674 678 | 
             
                <keyword type="function" name="gdk_keymap_get_for_display ()" link="gdk-Keyboard-Handling.html#gdk-keymap-get-for-display" since="2.2"/>
         | 
| 675 679 | 
             
                <keyword type="function" name="gdk_keymap_lookup_key ()" link="gdk-Keyboard-Handling.html#gdk-keymap-lookup-key"/>
         | 
| @@ -723,9 +727,9 @@ | |
| 723 727 | 
             
                <keyword type="function" name="gdk_drag_get_selection ()" link="gdk-Drag-and-Drop.html#gdk-drag-get-selection"/>
         | 
| 724 728 | 
             
                <keyword type="function" name="gdk_drag_abort ()" link="gdk-Drag-and-Drop.html#gdk-drag-abort"/>
         | 
| 725 729 | 
             
                <keyword type="function" name="gdk_drop_reply ()" link="gdk-Drag-and-Drop.html#gdk-drop-reply"/>
         | 
| 726 | 
            -
                <keyword type="function" name="gdk_drag_context_new ()" link="gdk-Drag-and-Drop.html#gdk-drag-context-new"/>
         | 
| 730 | 
            +
                <keyword type="function" name="gdk_drag_context_new ()" link="gdk-Drag-and-Drop.html#gdk-drag-context-new" deprecated=""/>
         | 
| 727 731 | 
             
                <keyword type="function" name="gdk_drag_drop ()" link="gdk-Drag-and-Drop.html#gdk-drag-drop"/>
         | 
| 728 | 
            -
                <keyword type="function" name="gdk_drag_find_window ()" link="gdk-Drag-and-Drop.html#gdk-drag-find-window"/>
         | 
| 732 | 
            +
                <keyword type="function" name="gdk_drag_find_window ()" link="gdk-Drag-and-Drop.html#gdk-drag-find-window" deprecated="2.24: Use gdk_drag_find_window_for_screen() instead."/>
         | 
| 729 733 | 
             
                <keyword type="function" name="gdk_drag_find_window_for_screen ()" link="gdk-Drag-and-Drop.html#gdk-drag-find-window-for-screen" since="2.2"/>
         | 
| 730 734 | 
             
                <keyword type="function" name="gdk_drag_context_ref ()" link="gdk-Drag-and-Drop.html#gdk-drag-context-ref" deprecated="2.2: Use g_object_ref() instead."/>
         | 
| 731 735 | 
             
                <keyword type="function" name="gdk_drag_context_get_actions ()" link="gdk-Drag-and-Drop.html#gdk-drag-context-get-actions" since="2.22"/>
         | 
| @@ -736,11 +740,11 @@ | |
| 736 740 | 
             
                <keyword type="function" name="gdk_drag_begin ()" link="gdk-Drag-and-Drop.html#gdk-drag-begin"/>
         | 
| 737 741 | 
             
                <keyword type="function" name="gdk_drag_motion ()" link="gdk-Drag-and-Drop.html#gdk-drag-motion"/>
         | 
| 738 742 | 
             
                <keyword type="function" name="gdk_drop_finish ()" link="gdk-Drag-and-Drop.html#gdk-drop-finish"/>
         | 
| 739 | 
            -
                <keyword type="function" name="gdk_drag_get_protocol ()" link="gdk-Drag-and-Drop.html#gdk-drag-get-protocol"/>
         | 
| 743 | 
            +
                <keyword type="function" name="gdk_drag_get_protocol ()" link="gdk-Drag-and-Drop.html#gdk-drag-get-protocol" deprecated="2.24: Use gdk_drag_get_protocol_for_display() instead"/>
         | 
| 740 744 | 
             
                <keyword type="function" name="gdk_drag_get_protocol_for_display ()" link="gdk-Drag-and-Drop.html#gdk-drag-get-protocol-for-display" since="2.2"/>
         | 
| 741 745 | 
             
                <keyword type="enum" name="enum GdkDragProtocol" link="gdk-Drag-and-Drop.html#GdkDragProtocol"/>
         | 
| 742 746 | 
             
                <keyword type="function" name="gdk_drag_context_unref ()" link="gdk-Drag-and-Drop.html#gdk-drag-context-unref" deprecated="2.2: Use g_object_unref() instead."/>
         | 
| 743 | 
            -
                <keyword type="struct" name="GdkDragContext" link="gdk-Drag-and-Drop.html#GdkDragContext"/>
         | 
| 747 | 
            +
                <keyword type="struct" name="struct GdkDragContext" link="gdk-Drag-and-Drop.html#GdkDragContext"/>
         | 
| 744 748 | 
             
                <keyword type="enum" name="enum GdkDragAction" link="gdk-Drag-and-Drop.html#GdkDragAction"/>
         | 
| 745 749 | 
             
                <keyword type="function" name="gdk_drag_status ()" link="gdk-Drag-and-Drop.html#gdk-drag-status"/>
         | 
| 746 750 | 
             
                <keyword type="function" name="gdk_drag_drop_succeeded ()" link="gdk-Drag-and-Drop.html#gdk-drag-drop-succeeded" since="2.6"/>
         | 
| @@ -748,17 +752,17 @@ | |
| 748 752 | 
             
                <keyword type="macro" name="GDK_ATOM_TO_POINTER()" link="gdk-Properties-and-Atoms.html#GDK-ATOM-TO-POINTER:CAPS"/>
         | 
| 749 753 | 
             
                <keyword type="macro" name="GDK_POINTER_TO_ATOM()" link="gdk-Properties-and-Atoms.html#GDK-POINTER-TO-ATOM:CAPS"/>
         | 
| 750 754 | 
             
                <keyword type="macro" name="GDK_NONE" link="gdk-Properties-and-Atoms.html#GDK-NONE:CAPS"/>
         | 
| 751 | 
            -
                <keyword type="function" name="gdk_text_property_to_text_list ()" link="gdk-Properties-and-Atoms.html#gdk-text-property-to-text-list"/>
         | 
| 752 | 
            -
                <keyword type="function" name="gdk_text_property_to_text_list_for_display ()" link="gdk-Properties-and-Atoms.html#gdk-text-property-to-text-list-for-display" since="2.2"/>
         | 
| 753 | 
            -
                <keyword type="function" name="gdk_free_text_list ()" link="gdk-Properties-and-Atoms.html#gdk-free-text-list"/>
         | 
| 754 | 
            -
                <keyword type="function" name="gdk_text_property_to_utf8_list ()" link="gdk-Properties-and-Atoms.html#gdk-text-property-to-utf8-list"/>
         | 
| 755 | 
            +
                <keyword type="function" name="gdk_text_property_to_text_list ()" link="gdk-Properties-and-Atoms.html#gdk-text-property-to-text-list" deprecated=""/>
         | 
| 756 | 
            +
                <keyword type="function" name="gdk_text_property_to_text_list_for_display ()" link="gdk-Properties-and-Atoms.html#gdk-text-property-to-text-list-for-display" deprecated="2.24: Use gdk_x11_display_text_property_to_text_list()" since="2.2"/>
         | 
| 757 | 
            +
                <keyword type="function" name="gdk_free_text_list ()" link="gdk-Properties-and-Atoms.html#gdk-free-text-list" deprecated=""/>
         | 
| 758 | 
            +
                <keyword type="function" name="gdk_text_property_to_utf8_list ()" link="gdk-Properties-and-Atoms.html#gdk-text-property-to-utf8-list" deprecated=""/>
         | 
| 755 759 | 
             
                <keyword type="function" name="gdk_text_property_to_utf8_list_for_display ()" link="gdk-Properties-and-Atoms.html#gdk-text-property-to-utf8-list-for-display" since="2.2"/>
         | 
| 756 | 
            -
                <keyword type="function" name="gdk_string_to_compound_text ()" link="gdk-Properties-and-Atoms.html#gdk-string-to-compound-text"/>
         | 
| 757 | 
            -
                <keyword type="function" name="gdk_string_to_compound_text_for_display ()" link="gdk-Properties-and-Atoms.html#gdk-string-to-compound-text-for-display" since="2.2"/>
         | 
| 758 | 
            -
                <keyword type="function" name="gdk_free_compound_text ()" link="gdk-Properties-and-Atoms.html#gdk-free-compound-text"/>
         | 
| 760 | 
            +
                <keyword type="function" name="gdk_string_to_compound_text ()" link="gdk-Properties-and-Atoms.html#gdk-string-to-compound-text" deprecated=""/>
         | 
| 761 | 
            +
                <keyword type="function" name="gdk_string_to_compound_text_for_display ()" link="gdk-Properties-and-Atoms.html#gdk-string-to-compound-text-for-display" deprecated="2.24: Use gdk_x11_display_string_to_compound_text()" since="2.2"/>
         | 
| 762 | 
            +
                <keyword type="function" name="gdk_free_compound_text ()" link="gdk-Properties-and-Atoms.html#gdk-free-compound-text" deprecated=""/>
         | 
| 759 763 | 
             
                <keyword type="function" name="gdk_utf8_to_string_target ()" link="gdk-Properties-and-Atoms.html#gdk-utf8-to-string-target"/>
         | 
| 760 | 
            -
                <keyword type="function" name="gdk_utf8_to_compound_text ()" link="gdk-Properties-and-Atoms.html#gdk-utf8-to-compound-text"/>
         | 
| 761 | 
            -
                <keyword type="function" name="gdk_utf8_to_compound_text_for_display ()" link="gdk-Properties-and-Atoms.html#gdk-utf8-to-compound-text-for-display" since="2.2"/>
         | 
| 764 | 
            +
                <keyword type="function" name="gdk_utf8_to_compound_text ()" link="gdk-Properties-and-Atoms.html#gdk-utf8-to-compound-text" deprecated=""/>
         | 
| 765 | 
            +
                <keyword type="function" name="gdk_utf8_to_compound_text_for_display ()" link="gdk-Properties-and-Atoms.html#gdk-utf8-to-compound-text-for-display" deprecated="2.24: Use gdk_x11_display_utf8_to_compound_text()" since="2.2"/>
         | 
| 762 766 | 
             
                <keyword type="function" name="gdk_atom_intern ()" link="gdk-Properties-and-Atoms.html#gdk-atom-intern"/>
         | 
| 763 767 | 
             
                <keyword type="function" name="gdk_atom_intern_static_string ()" link="gdk-Properties-and-Atoms.html#gdk-atom-intern-static-string" since="2.10"/>
         | 
| 764 768 | 
             
                <keyword type="function" name="gdk_atom_name ()" link="gdk-Properties-and-Atoms.html#gdk-atom-name"/>
         | 
| @@ -785,11 +789,11 @@ | |
| 785 789 | 
             
                <keyword type="function" name="GdkDestroyNotify ()" link="gdk-Input.html#GdkDestroyNotify" deprecated=""/>
         | 
| 786 790 | 
             
                <keyword type="function" name="gdk_input_add ()" link="gdk-Input.html#gdk-input-add" deprecated="2.14: Use g_io_add_watch() on a #GIOChannel"/>
         | 
| 787 791 | 
             
                <keyword type="function" name="gdk_input_remove ()" link="gdk-Input.html#gdk-input-remove" deprecated=""/>
         | 
| 788 | 
            -
                <keyword type="struct" name="GdkDevice" link="gdk-Input-Devices.html#GdkDevice"/>
         | 
| 792 | 
            +
                <keyword type="struct" name="struct GdkDevice" link="gdk-Input-Devices.html#GdkDevice"/>
         | 
| 789 793 | 
             
                <keyword type="enum" name="enum GdkInputSource" link="gdk-Input-Devices.html#GdkInputSource"/>
         | 
| 790 794 | 
             
                <keyword type="enum" name="enum GdkInputMode" link="gdk-Input-Devices.html#GdkInputMode"/>
         | 
| 791 | 
            -
                <keyword type="struct" name="GdkDeviceKey" link="gdk-Input-Devices.html#GdkDeviceKey"/>
         | 
| 792 | 
            -
                <keyword type="struct" name="GdkDeviceAxis" link="gdk-Input-Devices.html#GdkDeviceAxis"/>
         | 
| 795 | 
            +
                <keyword type="struct" name="struct GdkDeviceKey" link="gdk-Input-Devices.html#GdkDeviceKey"/>
         | 
| 796 | 
            +
                <keyword type="struct" name="struct GdkDeviceAxis" link="gdk-Input-Devices.html#GdkDeviceAxis"/>
         | 
| 793 797 | 
             
                <keyword type="enum" name="enum GdkAxisUse" link="gdk-Input-Devices.html#GdkAxisUse"/>
         | 
| 794 798 | 
             
                <keyword type="function" name="gdk_devices_list ()" link="gdk-Input-Devices.html#gdk-devices-list"/>
         | 
| 795 799 | 
             
                <keyword type="function" name="gdk_device_get_name ()" link="gdk-Input-Devices.html#gdk-device-get-name" since="2.22"/>
         | 
| @@ -805,13 +809,13 @@ | |
| 805 809 | 
             
                <keyword type="function" name="gdk_device_get_state ()" link="gdk-Input-Devices.html#gdk-device-get-state"/>
         | 
| 806 810 | 
             
                <keyword type="function" name="gdk_device_get_history ()" link="gdk-Input-Devices.html#gdk-device-get-history"/>
         | 
| 807 811 | 
             
                <keyword type="function" name="gdk_device_free_history ()" link="gdk-Input-Devices.html#gdk-device-free-history"/>
         | 
| 808 | 
            -
                <keyword type="struct" name="GdkTimeCoord" link="gdk-Input-Devices.html#GdkTimeCoord"/>
         | 
| 812 | 
            +
                <keyword type="struct" name="struct GdkTimeCoord" link="gdk-Input-Devices.html#GdkTimeCoord"/>
         | 
| 809 813 | 
             
                <keyword type="function" name="gdk_device_get_axis ()" link="gdk-Input-Devices.html#gdk-device-get-axis"/>
         | 
| 810 814 | 
             
                <keyword type="function" name="gdk_device_get_n_axes ()" link="gdk-Input-Devices.html#gdk-device-get-n-axes" since="2.22"/>
         | 
| 811 815 | 
             
                <keyword type="function" name="gdk_input_set_extension_events ()" link="gdk-Input-Devices.html#gdk-input-set-extension-events"/>
         | 
| 812 816 | 
             
                <keyword type="enum" name="enum GdkExtensionMode" link="gdk-Input-Devices.html#GdkExtensionMode"/>
         | 
| 813 | 
            -
                <keyword type="struct" name="GdkPangoRenderer" link="gdk-Pango-Interaction.html#GdkPangoRenderer-struct"/>
         | 
| 814 | 
            -
                <keyword type="struct" name="GdkPangoRendererClass" link="gdk-Pango-Interaction.html#GdkPangoRendererClass" since="2.6"/>
         | 
| 817 | 
            +
                <keyword type="struct" name="struct GdkPangoRenderer" link="gdk-Pango-Interaction.html#GdkPangoRenderer-struct"/>
         | 
| 818 | 
            +
                <keyword type="struct" name="struct GdkPangoRendererClass" link="gdk-Pango-Interaction.html#GdkPangoRendererClass" since="2.6"/>
         | 
| 815 819 | 
             
                <keyword type="function" name="gdk_pango_renderer_new ()" link="gdk-Pango-Interaction.html#gdk-pango-renderer-new" since="2.6"/>
         | 
| 816 820 | 
             
                <keyword type="function" name="gdk_pango_renderer_get_default ()" link="gdk-Pango-Interaction.html#gdk-pango-renderer-get-default" since="2.6"/>
         | 
| 817 821 | 
             
                <keyword type="function" name="gdk_pango_renderer_set_drawable ()" link="gdk-Pango-Interaction.html#gdk-pango-renderer-set-drawable" since="2.6"/>
         | 
| @@ -821,9 +825,9 @@ | |
| 821 825 | 
             
                <keyword type="function" name="gdk_pango_context_get ()" link="gdk-Pango-Interaction.html#gdk-pango-context-get"/>
         | 
| 822 826 | 
             
                <keyword type="function" name="gdk_pango_context_get_for_screen ()" link="gdk-Pango-Interaction.html#gdk-pango-context-get-for-screen" since="2.2"/>
         | 
| 823 827 | 
             
                <keyword type="function" name="gdk_pango_context_set_colormap ()" link="gdk-Pango-Interaction.html#gdk-pango-context-set-colormap" deprecated=""/>
         | 
| 824 | 
            -
                <keyword type="struct" name="GdkPangoAttrEmbossed" link="gdk-Pango-Interaction.html#GdkPangoAttrEmbossed"/>
         | 
| 825 | 
            -
                <keyword type="struct" name="GdkPangoAttrEmbossColor" link="gdk-Pango-Interaction.html#GdkPangoAttrEmbossColor"/>
         | 
| 826 | 
            -
                <keyword type="struct" name="GdkPangoAttrStipple" link="gdk-Pango-Interaction.html#GdkPangoAttrStipple"/>
         | 
| 828 | 
            +
                <keyword type="struct" name="struct GdkPangoAttrEmbossed" link="gdk-Pango-Interaction.html#GdkPangoAttrEmbossed"/>
         | 
| 829 | 
            +
                <keyword type="struct" name="struct GdkPangoAttrEmbossColor" link="gdk-Pango-Interaction.html#GdkPangoAttrEmbossColor"/>
         | 
| 830 | 
            +
                <keyword type="struct" name="struct GdkPangoAttrStipple" link="gdk-Pango-Interaction.html#GdkPangoAttrStipple"/>
         | 
| 827 831 | 
             
                <keyword type="function" name="gdk_pango_attr_emboss_color_new ()" link="gdk-Pango-Interaction.html#gdk-pango-attr-emboss-color-new" since="2.12"/>
         | 
| 828 832 | 
             
                <keyword type="function" name="gdk_pango_attr_embossed_new ()" link="gdk-Pango-Interaction.html#gdk-pango-attr-embossed-new"/>
         | 
| 829 833 | 
             
                <keyword type="function" name="gdk_pango_attr_stipple_new ()" link="gdk-Pango-Interaction.html#gdk-pango-attr-stipple-new"/>
         | 
| @@ -834,98 +838,11 @@ | |
| 834 838 | 
             
                <keyword type="function" name="gdk_cairo_create ()" link="gdk-Cairo-Interaction.html#gdk-cairo-create" since="2.8"/>
         | 
| 835 839 | 
             
                <keyword type="function" name="gdk_cairo_set_source_color ()" link="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" since="2.8"/>
         | 
| 836 840 | 
             
                <keyword type="function" name="gdk_cairo_set_source_pixbuf ()" link="gdk-Cairo-Interaction.html#gdk-cairo-set-source-pixbuf" since="2.8"/>
         | 
| 837 | 
            -
                <keyword type="function" name="gdk_cairo_set_source_pixmap ()" link="gdk-Cairo-Interaction.html#gdk-cairo-set-source-pixmap" since="2.10"/>
         | 
| 841 | 
            +
                <keyword type="function" name="gdk_cairo_set_source_pixmap ()" link="gdk-Cairo-Interaction.html#gdk-cairo-set-source-pixmap" deprecated="" since="2.10"/>
         | 
| 842 | 
            +
                <keyword type="function" name="gdk_cairo_set_source_window ()" link="gdk-Cairo-Interaction.html#gdk-cairo-set-source-window" since="2.24"/>
         | 
| 838 843 | 
             
                <keyword type="function" name="gdk_cairo_rectangle ()" link="gdk-Cairo-Interaction.html#gdk-cairo-rectangle" since="2.8"/>
         | 
| 839 844 | 
             
                <keyword type="function" name="gdk_cairo_region ()" link="gdk-Cairo-Interaction.html#gdk-cairo-region" since="2.8"/>
         | 
| 840 845 | 
             
                <keyword type="function" name="gdk_cairo_reset_clip ()" link="gdk-Cairo-Interaction.html#gdk-cairo-reset-clip" since="2.18"/>
         | 
| 841 | 
            -
                <keyword type="macro" name="GDK_ROOT_WINDOW" link="gdk-X-Window-System-Interaction.html#GDK-ROOT-WINDOW:CAPS"/>
         | 
| 842 | 
            -
                <keyword type="macro" name="GDK_ROOT_PARENT" link="gdk-X-Window-System-Interaction.html#GDK-ROOT-PARENT:CAPS" deprecated=""/>
         | 
| 843 | 
            -
                <keyword type="macro" name="GDK_DISPLAY" link="gdk-X-Window-System-Interaction.html#GDK-DISPLAY:CAPS" deprecated="2.22: Use gdk_display_get_default ()"/>
         | 
| 844 | 
            -
                <keyword type="macro" name="GDK_WINDOW_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XDISPLAY:CAPS"/>
         | 
| 845 | 
            -
                <keyword type="macro" name="GDK_WINDOW_XID()" link="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XID:CAPS"/>
         | 
| 846 | 
            -
                <keyword type="macro" name="GDK_PIXMAP_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XDISPLAY:CAPS"/>
         | 
| 847 | 
            -
                <keyword type="macro" name="GDK_PIXMAP_XID()" link="gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XID:CAPS"/>
         | 
| 848 | 
            -
                <keyword type="macro" name="GDK_DISPLAY_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-DISPLAY-XDISPLAY:CAPS"/>
         | 
| 849 | 
            -
                <keyword type="macro" name="GDK_DRAWABLE_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XDISPLAY:CAPS"/>
         | 
| 850 | 
            -
                <keyword type="macro" name="GDK_DRAWABLE_XID()" link="gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XID:CAPS"/>
         | 
| 851 | 
            -
                <keyword type="macro" name="GDK_IMAGE_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-IMAGE-XDISPLAY:CAPS"/>
         | 
| 852 | 
            -
                <keyword type="macro" name="GDK_IMAGE_XIMAGE()" link="gdk-X-Window-System-Interaction.html#GDK-IMAGE-XIMAGE:CAPS"/>
         | 
| 853 | 
            -
                <keyword type="macro" name="GDK_GC_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-GC-XDISPLAY:CAPS"/>
         | 
| 854 | 
            -
                <keyword type="macro" name="GDK_COLORMAP_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XDISPLAY:CAPS"/>
         | 
| 855 | 
            -
                <keyword type="macro" name="GDK_COLORMAP_XCOLORMAP()" link="gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XCOLORMAP:CAPS"/>
         | 
| 856 | 
            -
                <keyword type="macro" name="GDK_SCREEN_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XDISPLAY:CAPS"/>
         | 
| 857 | 
            -
                <keyword type="macro" name="GDK_SCREEN_XNUMBER()" link="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XNUMBER:CAPS"/>
         | 
| 858 | 
            -
                <keyword type="macro" name="GDK_SCREEN_XSCREEN()" link="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XSCREEN:CAPS"/>
         | 
| 859 | 
            -
                <keyword type="macro" name="GDK_VISUAL_XVISUAL()" link="gdk-X-Window-System-Interaction.html#GDK-VISUAL-XVISUAL:CAPS"/>
         | 
| 860 | 
            -
                <keyword type="macro" name="GDK_FONT_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-FONT-XDISPLAY:CAPS" deprecated=""/>
         | 
| 861 | 
            -
                <keyword type="macro" name="GDK_FONT_XFONT()" link="gdk-X-Window-System-Interaction.html#GDK-FONT-XFONT:CAPS" deprecated=""/>
         | 
| 862 | 
            -
                <keyword type="macro" name="GDK_CURSOR_XCURSOR()" link="gdk-X-Window-System-Interaction.html#GDK-CURSOR-XCURSOR:CAPS"/>
         | 
| 863 | 
            -
                <keyword type="macro" name="GDK_CURSOR_XDISPLAY()" link="gdk-X-Window-System-Interaction.html#GDK-CURSOR-XDISPLAY:CAPS"/>
         | 
| 864 | 
            -
                <keyword type="macro" name="GDK_GC_XGC()" link="gdk-X-Window-System-Interaction.html#GDK-GC-XGC:CAPS"/>
         | 
| 865 | 
            -
                <keyword type="macro" name="GDK_GC_GET_XGC()" link="gdk-X-Window-System-Interaction.html#GDK-GC-GET-XGC:CAPS"/>
         | 
| 866 | 
            -
                <keyword type="macro" name="GDK_WINDOW_XWINDOW" link="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XWINDOW:CAPS"/>
         | 
| 867 | 
            -
                <keyword type="function" name="gdkx_visual_get ()" link="gdk-X-Window-System-Interaction.html#gdkx-visual-get"/>
         | 
| 868 | 
            -
                <keyword type="function" name="gdkx_colormap_get ()" link="gdk-X-Window-System-Interaction.html#gdkx-colormap-get" deprecated=""/>
         | 
| 869 | 
            -
                <keyword type="function" name="gdk_pixmap_foreign_new ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new"/>
         | 
| 870 | 
            -
                <keyword type="function" name="gdk_pixmap_foreign_new_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-display" since="2.2"/>
         | 
| 871 | 
            -
                <keyword type="function" name="gdk_pixmap_foreign_new_for_screen ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-screen" since="2.10"/>
         | 
| 872 | 
            -
                <keyword type="function" name="gdk_window_foreign_new ()" link="gdk-X-Window-System-Interaction.html#gdk-window-foreign-new"/>
         | 
| 873 | 
            -
                <keyword type="function" name="gdk_window_foreign_new_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-window-foreign-new-for-display" since="2.2"/>
         | 
| 874 | 
            -
                <keyword type="function" name="gdk_xid_table_lookup ()" link="gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup"/>
         | 
| 875 | 
            -
                <keyword type="function" name="gdk_xid_table_lookup_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup-for-display" since="2.2"/>
         | 
| 876 | 
            -
                <keyword type="function" name="gdk_window_lookup ()" link="gdk-X-Window-System-Interaction.html#gdk-window-lookup"/>
         | 
| 877 | 
            -
                <keyword type="function" name="gdk_window_lookup_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-window-lookup-for-display" since="2.2"/>
         | 
| 878 | 
            -
                <keyword type="function" name="gdk_pixmap_lookup ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup"/>
         | 
| 879 | 
            -
                <keyword type="function" name="gdk_pixmap_lookup_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup-for-display" since="2.2"/>
         | 
| 880 | 
            -
                <keyword type="macro" name="gdk_font_lookup()" link="gdk-X-Window-System-Interaction.html#gdk-font-lookup" deprecated=""/>
         | 
| 881 | 
            -
                <keyword type="macro" name="gdk_font_lookup_for_display()" link="gdk-X-Window-System-Interaction.html#gdk-font-lookup-for-display" deprecated=""/>
         | 
| 882 | 
            -
                <keyword type="function" name="gdk_x11_lookup_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-lookup-xdisplay" since="2.2"/>
         | 
| 883 | 
            -
                <keyword type="function" name="gdk_x11_get_server_time ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-server-time"/>
         | 
| 884 | 
            -
                <keyword type="function" name="gdk_net_wm_supports ()" link="gdk-X-Window-System-Interaction.html#gdk-net-wm-supports"/>
         | 
| 885 | 
            -
                <keyword type="function" name="gdk_x11_screen_supports_net_wm_hint ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-supports-net-wm-hint" since="2.2"/>
         | 
| 886 | 
            -
                <keyword type="function" name="gdk_x11_screen_get_window_manager_name ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-window-manager-name" since="2.2"/>
         | 
| 887 | 
            -
                <keyword type="function" name="gdk_x11_screen_get_monitor_output ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-monitor-output" since="2.14"/>
         | 
| 888 | 
            -
                <keyword type="function" name="gdk_x11_screen_lookup_visual ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-lookup-visual" since="2.2"/>
         | 
| 889 | 
            -
                <keyword type="function" name="gdk_x11_window_set_user_time ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-window-set-user-time" since="2.6"/>
         | 
| 890 | 
            -
                <keyword type="function" name="gdk_x11_window_move_to_current_desktop ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-window-move-to-current-desktop" since="2.8"/>
         | 
| 891 | 
            -
                <keyword type="function" name="gdk_x11_display_get_user_time ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-user-time" since="2.8"/>
         | 
| 892 | 
            -
                <keyword type="function" name="gdk_x11_colormap_foreign_new ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-foreign-new" since="2.2"/>
         | 
| 893 | 
            -
                <keyword type="function" name="gdk_x11_colormap_get_xcolormap ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xcolormap"/>
         | 
| 894 | 
            -
                <keyword type="function" name="gdk_x11_colormap_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xdisplay"/>
         | 
| 895 | 
            -
                <keyword type="function" name="gdk_x11_cursor_get_xcursor ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xcursor"/>
         | 
| 896 | 
            -
                <keyword type="function" name="gdk_x11_cursor_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xdisplay"/>
         | 
| 897 | 
            -
                <keyword type="function" name="gdk_x11_display_broadcast_startup_message ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-broadcast-startup-message" since="2.12"/>
         | 
| 898 | 
            -
                <keyword type="function" name="gdk_x11_display_get_startup_notification_id ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-startup-notification-id" since="2.12"/>
         | 
| 899 | 
            -
                <keyword type="function" name="gdk_x11_display_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-xdisplay" since="2.2"/>
         | 
| 900 | 
            -
                <keyword type="function" name="gdk_x11_display_grab ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-grab" since="2.2"/>
         | 
| 901 | 
            -
                <keyword type="function" name="gdk_x11_display_ungrab ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-ungrab" since="2.2"/>
         | 
| 902 | 
            -
                <keyword type="function" name="gdk_x11_display_set_cursor_theme ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-display-set-cursor-theme" since="2.8"/>
         | 
| 903 | 
            -
                <keyword type="function" name="gdk_x11_register_standard_event_type ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-register-standard-event-type" since="2.4"/>
         | 
| 904 | 
            -
                <keyword type="function" name="gdk_x11_drawable_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xdisplay"/>
         | 
| 905 | 
            -
                <keyword type="function" name="gdk_x11_drawable_get_xid ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xid"/>
         | 
| 906 | 
            -
                <keyword type="function" name="gdk_x11_font_get_name ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-name" deprecated=""/>
         | 
| 907 | 
            -
                <keyword type="function" name="gdk_x11_font_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xdisplay" deprecated=""/>
         | 
| 908 | 
            -
                <keyword type="function" name="gdk_x11_font_get_xfont ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xfont" deprecated=""/>
         | 
| 909 | 
            -
                <keyword type="function" name="gdk_x11_gc_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xdisplay" deprecated="2.22: #GdkGC has been replaced by #cairo_t."/>
         | 
| 910 | 
            -
                <keyword type="function" name="gdk_x11_gc_get_xgc ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xgc" deprecated="2.22: #GdkGC has been replaced by #cairo_t."/>
         | 
| 911 | 
            -
                <keyword type="function" name="gdk_x11_get_default_root_xwindow ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-root-xwindow"/>
         | 
| 912 | 
            -
                <keyword type="function" name="gdk_x11_get_default_screen ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-screen"/>
         | 
| 913 | 
            -
                <keyword type="function" name="gdk_x11_get_default_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-xdisplay"/>
         | 
| 914 | 
            -
                <keyword type="function" name="gdk_x11_grab_server ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-grab-server"/>
         | 
| 915 | 
            -
                <keyword type="function" name="gdk_x11_image_get_xdisplay ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-image-get-xdisplay"/>
         | 
| 916 | 
            -
                <keyword type="function" name="gdk_x11_image_get_ximage ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-image-get-ximage"/>
         | 
| 917 | 
            -
                <keyword type="function" name="gdk_x11_screen_get_screen_number ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-screen-number" since="2.2"/>
         | 
| 918 | 
            -
                <keyword type="function" name="gdk_x11_screen_get_xscreen ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-xscreen" since="2.2"/>
         | 
| 919 | 
            -
                <keyword type="function" name="gdk_x11_ungrab_server ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-ungrab-server"/>
         | 
| 920 | 
            -
                <keyword type="function" name="gdk_x11_visual_get_xvisual ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-visual-get-xvisual"/>
         | 
| 921 | 
            -
                <keyword type="function" name="gdk_x11_atom_to_xatom ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom"/>
         | 
| 922 | 
            -
                <keyword type="function" name="gdk_x11_atom_to_xatom_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom-for-display" since="2.2"/>
         | 
| 923 | 
            -
                <keyword type="function" name="gdk_x11_xatom_to_atom ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom"/>
         | 
| 924 | 
            -
                <keyword type="function" name="gdk_x11_xatom_to_atom_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom-for-display" since="2.2"/>
         | 
| 925 | 
            -
                <keyword type="function" name="gdk_x11_get_xatom_by_name ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name"/>
         | 
| 926 | 
            -
                <keyword type="function" name="gdk_x11_get_xatom_by_name_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name-for-display" since="2.2"/>
         | 
| 927 | 
            -
                <keyword type="function" name="gdk_x11_get_xatom_name ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name"/>
         | 
| 928 | 
            -
                <keyword type="function" name="gdk_x11_get_xatom_name_for_display ()" link="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name-for-display" since="2.2"/>
         | 
| 929 846 | 
             
                <keyword type="typedef" name="GdkAppLaunchContext" link="gdk-Application-launching.html#GdkAppLaunchContext"/>
         | 
| 930 847 | 
             
                <keyword type="function" name="gdk_app_launch_context_new ()" link="gdk-Application-launching.html#gdk-app-launch-context-new" since="2.14"/>
         | 
| 931 848 | 
             
                <keyword type="function" name="gdk_app_launch_context_set_display ()" link="gdk-Application-launching.html#gdk-app-launch-context-set-display" since="2.14"/>
         |