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,2500 +0,0 @@ | |
| 1 | 
            -
            <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
         | 
| 2 | 
            -
            <html>
         | 
| 3 | 
            -
            <head>
         | 
| 4 | 
            -
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 | 
            -
            <title>X Window System Interaction</title>
         | 
| 6 | 
            -
            <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
         | 
| 7 | 
            -
            <link rel="home" href="index.html" title="GDK Reference Manual">
         | 
| 8 | 
            -
            <link rel="up" href="reference.html" title="API Reference">
         | 
| 9 | 
            -
            <link rel="prev" href="gdk-Cairo-Interaction.html" title="Cairo Interaction">
         | 
| 10 | 
            -
            <link rel="next" href="gdk-Application-launching.html" title="Application launching">
         | 
| 11 | 
            -
            <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
         | 
| 12 | 
            -
            <link rel="stylesheet" href="style.css" type="text/css">
         | 
| 13 | 
            -
            </head>
         | 
| 14 | 
            -
            <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
         | 
| 15 | 
            -
            <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
         | 
| 16 | 
            -
            <tr valign="middle">
         | 
| 17 | 
            -
            <td><a accesskey="p" href="gdk-Cairo-Interaction.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 | 
            -
            <td><a accesskey="u" href="reference.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 19 | 
            -
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 20 | 
            -
            <th width="100%" align="center">GDK Reference Manual</th>
         | 
| 21 | 
            -
            <td><a accesskey="n" href="gdk-Application-launching.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 22 | 
            -
            </tr>
         | 
| 23 | 
            -
            <tr><td colspan="5" class="shortcuts">
         | 
| 24 | 
            -
            <a href="#gdk-X-Window-System-Interaction.synopsis" class="shortcut">Top</a>
         | 
| 25 | 
            -
                               | 
         | 
| 26 | 
            -
                              <a href="#gdk-X-Window-System-Interaction.description" class="shortcut">Description</a>
         | 
| 27 | 
            -
            </td></tr>
         | 
| 28 | 
            -
            </table>
         | 
| 29 | 
            -
            <div class="refentry" title="X Window System Interaction">
         | 
| 30 | 
            -
            <a name="gdk-X-Window-System-Interaction"></a><div class="titlepage"></div>
         | 
| 31 | 
            -
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 32 | 
            -
            <td valign="top">
         | 
| 33 | 
            -
            <h2><span class="refentrytitle"><a name="gdk-X-Window-System-Interaction.top_of_page"></a>X Window System Interaction</span></h2>
         | 
| 34 | 
            -
            <p>X Window System Interaction — X backend-specific functions</p>
         | 
| 35 | 
            -
            </td>
         | 
| 36 | 
            -
            <td valign="top" align="right"></td>
         | 
| 37 | 
            -
            </tr></table></div>
         | 
| 38 | 
            -
            <div class="refsynopsisdiv" title="Synopsis">
         | 
| 39 | 
            -
            <a name="gdk-X-Window-System-Interaction.synopsis"></a><h2>Synopsis</h2>
         | 
| 40 | 
            -
            <pre class="synopsis">
         | 
| 41 | 
            -
            #include <gdk/gdkx.h>
         | 
| 42 | 
            -
             | 
| 43 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-ROOT-WINDOW:CAPS" title="GDK_ROOT_WINDOW">GDK_ROOT_WINDOW</a>
         | 
| 44 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-ROOT-PARENT:CAPS" title="GDK_ROOT_PARENT">GDK_ROOT_PARENT</a>
         | 
| 45 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-DISPLAY:CAPS" title="GDK_DISPLAY">GDK_DISPLAY</a>
         | 
| 46 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XDISPLAY:CAPS" title="GDK_WINDOW_XDISPLAY()">GDK_WINDOW_XDISPLAY</a>                 (win)
         | 
| 47 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XID:CAPS" title="GDK_WINDOW_XID()">GDK_WINDOW_XID</a>                      (win)
         | 
| 48 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XDISPLAY:CAPS" title="GDK_PIXMAP_XDISPLAY()">GDK_PIXMAP_XDISPLAY</a>                 (pix)
         | 
| 49 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XID:CAPS" title="GDK_PIXMAP_XID()">GDK_PIXMAP_XID</a>                      (pix)
         | 
| 50 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-DISPLAY-XDISPLAY:CAPS" title="GDK_DISPLAY_XDISPLAY()">GDK_DISPLAY_XDISPLAY</a>                (display)
         | 
| 51 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XDISPLAY:CAPS" title="GDK_DRAWABLE_XDISPLAY()">GDK_DRAWABLE_XDISPLAY</a>               (win)
         | 
| 52 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XID:CAPS" title="GDK_DRAWABLE_XID()">GDK_DRAWABLE_XID</a>                    (win)
         | 
| 53 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-IMAGE-XDISPLAY:CAPS" title="GDK_IMAGE_XDISPLAY()">GDK_IMAGE_XDISPLAY</a>                  (image)
         | 
| 54 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-IMAGE-XIMAGE:CAPS" title="GDK_IMAGE_XIMAGE()">GDK_IMAGE_XIMAGE</a>                    (image)
         | 
| 55 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-GC-XDISPLAY:CAPS" title="GDK_GC_XDISPLAY()">GDK_GC_XDISPLAY</a>                     (gc)
         | 
| 56 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XDISPLAY:CAPS" title="GDK_COLORMAP_XDISPLAY()">GDK_COLORMAP_XDISPLAY</a>               (cmap)
         | 
| 57 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XCOLORMAP:CAPS" title="GDK_COLORMAP_XCOLORMAP()">GDK_COLORMAP_XCOLORMAP</a>              (cmap)
         | 
| 58 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XDISPLAY:CAPS" title="GDK_SCREEN_XDISPLAY()">GDK_SCREEN_XDISPLAY</a>                 (screen)
         | 
| 59 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XNUMBER:CAPS" title="GDK_SCREEN_XNUMBER()">GDK_SCREEN_XNUMBER</a>                  (screen)
         | 
| 60 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XSCREEN:CAPS" title="GDK_SCREEN_XSCREEN()">GDK_SCREEN_XSCREEN</a>                  (screen)
         | 
| 61 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-VISUAL-XVISUAL:CAPS" title="GDK_VISUAL_XVISUAL()">GDK_VISUAL_XVISUAL</a>                  (vis)
         | 
| 62 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-FONT-XDISPLAY:CAPS" title="GDK_FONT_XDISPLAY()">GDK_FONT_XDISPLAY</a>                   (font)
         | 
| 63 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-FONT-XFONT:CAPS" title="GDK_FONT_XFONT()">GDK_FONT_XFONT</a>                      (font)
         | 
| 64 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-CURSOR-XCURSOR:CAPS" title="GDK_CURSOR_XCURSOR()">GDK_CURSOR_XCURSOR</a>                  (cursor)
         | 
| 65 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-CURSOR-XDISPLAY:CAPS" title="GDK_CURSOR_XDISPLAY()">GDK_CURSOR_XDISPLAY</a>                 (cursor)
         | 
| 66 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-GC-XGC:CAPS" title="GDK_GC_XGC()">GDK_GC_XGC</a>                          (gc)
         | 
| 67 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-GC-GET-XGC:CAPS" title="GDK_GC_GET_XGC()">GDK_GC_GET_XGC</a>                      (gc)
         | 
| 68 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XWINDOW:CAPS" title="GDK_WINDOW_XWINDOW">GDK_WINDOW_XWINDOW</a>
         | 
| 69 | 
            -
            <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="returnvalue">GdkVisual</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdkx-visual-get" title="gdkx_visual_get ()">gdkx_visual_get</a>                     (<em class="parameter"><code><span class="type">VisualID</span> xvisualid</code></em>);
         | 
| 70 | 
            -
            <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a>*        <a class="link" href="gdk-X-Window-System-Interaction.html#gdkx-colormap-get" title="gdkx_colormap_get ()">gdkx_colormap_get</a>                   (<em class="parameter"><code><span class="type">Colormap</span> xcolormap</code></em>);
         | 
| 71 | 
            -
            <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new" title="gdk_pixmap_foreign_new ()">gdk_pixmap_foreign_new</a>              (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);
         | 
| 72 | 
            -
            <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-display" title="gdk_pixmap_foreign_new_for_display ()">gdk_pixmap_foreign_new_for_display</a>  (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 73 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);
         | 
| 74 | 
            -
            <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-screen" title="gdk_pixmap_foreign_new_for_screen ()">gdk_pixmap_foreign_new_for_screen</a>   (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 75 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>,
         | 
| 76 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
         | 
| 77 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> height</code></em>,
         | 
| 78 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> depth</code></em>);
         | 
| 79 | 
            -
            <a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-window-foreign-new" title="gdk_window_foreign_new ()">gdk_window_foreign_new</a>              (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);
         | 
| 80 | 
            -
            <a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> *         <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-window-foreign-new-for-display" title="gdk_window_foreign_new_for_display ()">gdk_window_foreign_new_for_display</a>  (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 81 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);
         | 
| 82 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup" title="gdk_xid_table_lookup ()">gdk_xid_table_lookup</a>                (<em class="parameter"><code><span class="type">XID</span> xid</code></em>);
         | 
| 83 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup-for-display" title="gdk_xid_table_lookup_for_display ()">gdk_xid_table_lookup_for_display</a>    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 84 | 
            -
                                                                     <em class="parameter"><code><span class="type">XID</span> xid</code></em>);
         | 
| 85 | 
            -
            <a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-window-lookup" title="gdk_window_lookup ()">gdk_window_lookup</a>                   (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);
         | 
| 86 | 
            -
            <a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-window-lookup-for-display" title="gdk_window_lookup_for_display ()">gdk_window_lookup_for_display</a>       (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 87 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);
         | 
| 88 | 
            -
            <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup" title="gdk_pixmap_lookup ()">gdk_pixmap_lookup</a>                   (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);
         | 
| 89 | 
            -
            <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup-for-display" title="gdk_pixmap_lookup_for_display ()">gdk_pixmap_lookup_for_display</a>       (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 90 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);
         | 
| 91 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-font-lookup" title="gdk_font_lookup()">gdk_font_lookup</a>                     (xid)
         | 
| 92 | 
            -
            #define             <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-font-lookup-for-display" title="gdk_font_lookup_for_display()">gdk_font_lookup_for_display</a>         (display,
         | 
| 93 | 
            -
                                                                     xid)
         | 
| 94 | 
            -
            <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> *        <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-lookup-xdisplay" title="gdk_x11_lookup_xdisplay ()">gdk_x11_lookup_xdisplay</a>             (<em class="parameter"><code><span class="type">Display</span> *xdisplay</code></em>);
         | 
| 95 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>             <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-server-time" title="gdk_x11_get_server_time ()">gdk_x11_get_server_time</a>             (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);
         | 
| 96 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-net-wm-supports" title="gdk_net_wm_supports ()">gdk_net_wm_supports</a>                 (<em class="parameter"><code><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> property</code></em>);
         | 
| 97 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-supports-net-wm-hint" title="gdk_x11_screen_supports_net_wm_hint ()">gdk_x11_screen_supports_net_wm_hint</a> (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 98 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> property</code></em>);
         | 
| 99 | 
            -
            const <span class="returnvalue">char</span>*         <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-window-manager-name" title="gdk_x11_screen_get_window_manager_name ()">gdk_x11_screen_get_window_manager_name</a>
         | 
| 100 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);
         | 
| 101 | 
            -
            <span class="returnvalue">XID</span>                 <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-monitor-output" title="gdk_x11_screen_get_monitor_output ()">gdk_x11_screen_get_monitor_output</a>   (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 102 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> monitor_num</code></em>);
         | 
| 103 | 
            -
            <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="returnvalue">GdkVisual</span></a>*          <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-lookup-visual" title="gdk_x11_screen_lookup_visual ()">gdk_x11_screen_lookup_visual</a>        (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 104 | 
            -
                                                                     <em class="parameter"><code><span class="type">VisualID</span> xvisualid</code></em>);
         | 
| 105 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-window-set-user-time" title="gdk_x11_window_set_user_time ()">gdk_x11_window_set_user_time</a>        (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
         | 
| 106 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> timestamp</code></em>);
         | 
| 107 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-window-move-to-current-desktop" title="gdk_x11_window_move_to_current_desktop ()">gdk_x11_window_move_to_current_desktop</a>
         | 
| 108 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);
         | 
| 109 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>             <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-user-time" title="gdk_x11_display_get_user_time ()">gdk_x11_display_get_user_time</a>       (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
         | 
| 110 | 
            -
            <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> *       <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-foreign-new" title="gdk_x11_colormap_foreign_new ()">gdk_x11_colormap_foreign_new</a>        (<em class="parameter"><code><a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a> *visual</code></em>,
         | 
| 111 | 
            -
                                                                     <em class="parameter"><code><span class="type">Colormap</span> xcolormap</code></em>);
         | 
| 112 | 
            -
            <span class="returnvalue">Colormap</span>            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xcolormap" title="gdk_x11_colormap_get_xcolormap ()">gdk_x11_colormap_get_xcolormap</a>      (<em class="parameter"><code><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>);
         | 
| 113 | 
            -
            <span class="returnvalue">Display</span> *           <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xdisplay" title="gdk_x11_colormap_get_xdisplay ()">gdk_x11_colormap_get_xdisplay</a>       (<em class="parameter"><code><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>);
         | 
| 114 | 
            -
            <span class="returnvalue">Cursor</span>              <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xcursor" title="gdk_x11_cursor_get_xcursor ()">gdk_x11_cursor_get_xcursor</a>          (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);
         | 
| 115 | 
            -
            <span class="returnvalue">Display</span> *           <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xdisplay" title="gdk_x11_cursor_get_xdisplay ()">gdk_x11_cursor_get_xdisplay</a>         (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);
         | 
| 116 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-broadcast-startup-message" title="gdk_x11_display_broadcast_startup_message ()">gdk_x11_display_broadcast_startup_message</a>
         | 
| 117 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 118 | 
            -
                                                                     <em class="parameter"><code>const <span class="type">char</span> *message_type</code></em>,
         | 
| 119 | 
            -
                                                                     <em class="parameter"><code>...</code></em>);
         | 
| 120 | 
            -
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-startup-notification-id" title="gdk_x11_display_get_startup_notification_id ()">gdk_x11_display_get_startup_notification_id</a>
         | 
| 121 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
         | 
| 122 | 
            -
            <span class="returnvalue">Display</span> *           <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-xdisplay" title="gdk_x11_display_get_xdisplay ()">gdk_x11_display_get_xdisplay</a>        (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
         | 
| 123 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-grab" title="gdk_x11_display_grab ()">gdk_x11_display_grab</a>                (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
         | 
| 124 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-ungrab" title="gdk_x11_display_ungrab ()">gdk_x11_display_ungrab</a>              (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);
         | 
| 125 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-set-cursor-theme" title="gdk_x11_display_set_cursor_theme ()">gdk_x11_display_set_cursor_theme</a>    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 126 | 
            -
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *theme</code></em>,
         | 
| 127 | 
            -
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);
         | 
| 128 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-register-standard-event-type" title="gdk_x11_register_standard_event_type ()">gdk_x11_register_standard_event_type</a>
         | 
| 129 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 130 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> event_base</code></em>,
         | 
| 131 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_events</code></em>);
         | 
| 132 | 
            -
            <span class="returnvalue">Display</span> *           <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xdisplay" title="gdk_x11_drawable_get_xdisplay ()">gdk_x11_drawable_get_xdisplay</a>       (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);
         | 
| 133 | 
            -
            <span class="returnvalue">XID</span>                 <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xid" title="gdk_x11_drawable_get_xid ()">gdk_x11_drawable_get_xid</a>            (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);
         | 
| 134 | 
            -
            const <span class="returnvalue">char</span> *        <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-name" title="gdk_x11_font_get_name ()">gdk_x11_font_get_name</a>               (<em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);
         | 
| 135 | 
            -
            <span class="returnvalue">Display</span> *           <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xdisplay" title="gdk_x11_font_get_xdisplay ()">gdk_x11_font_get_xdisplay</a>           (<em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);
         | 
| 136 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xfont" title="gdk_x11_font_get_xfont ()">gdk_x11_font_get_xfont</a>              (<em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);
         | 
| 137 | 
            -
            <span class="returnvalue">Display</span> *           <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xdisplay" title="gdk_x11_gc_get_xdisplay ()">gdk_x11_gc_get_xdisplay</a>             (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
         | 
| 138 | 
            -
            <span class="returnvalue">GC</span>                  <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xgc" title="gdk_x11_gc_get_xgc ()">gdk_x11_gc_get_xgc</a>                  (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
         | 
| 139 | 
            -
            <span class="returnvalue">Window</span>              <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-root-xwindow" title="gdk_x11_get_default_root_xwindow ()">gdk_x11_get_default_root_xwindow</a>    (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 140 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-screen" title="gdk_x11_get_default_screen ()">gdk_x11_get_default_screen</a>          (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 141 | 
            -
            <span class="returnvalue">Display</span> *           <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-xdisplay" title="gdk_x11_get_default_xdisplay ()">gdk_x11_get_default_xdisplay</a>        (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 142 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-grab-server" title="gdk_x11_grab_server ()">gdk_x11_grab_server</a>                 (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 143 | 
            -
            <span class="returnvalue">Display</span> *           <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-image-get-xdisplay" title="gdk_x11_image_get_xdisplay ()">gdk_x11_image_get_xdisplay</a>          (<em class="parameter"><code><a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> *image</code></em>);
         | 
| 144 | 
            -
            <span class="returnvalue">XImage</span> *            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-image-get-ximage" title="gdk_x11_image_get_ximage ()">gdk_x11_image_get_ximage</a>            (<em class="parameter"><code><a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> *image</code></em>);
         | 
| 145 | 
            -
            <span class="returnvalue">int</span>                 <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-screen-number" title="gdk_x11_screen_get_screen_number ()">gdk_x11_screen_get_screen_number</a>    (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);
         | 
| 146 | 
            -
            <span class="returnvalue">Screen</span> *            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-xscreen" title="gdk_x11_screen_get_xscreen ()">gdk_x11_screen_get_xscreen</a>          (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);
         | 
| 147 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-ungrab-server" title="gdk_x11_ungrab_server ()">gdk_x11_ungrab_server</a>               (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 148 | 
            -
            <span class="returnvalue">Visual</span> *            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-visual-get-xvisual" title="gdk_x11_visual_get_xvisual ()">gdk_x11_visual_get_xvisual</a>          (<em class="parameter"><code><a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a> *visual</code></em>);
         | 
| 149 | 
            -
            <span class="returnvalue">Atom</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom" title="gdk_x11_atom_to_xatom ()">gdk_x11_atom_to_xatom</a>               (<em class="parameter"><code><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> atom</code></em>);
         | 
| 150 | 
            -
            <span class="returnvalue">Atom</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom-for-display" title="gdk_x11_atom_to_xatom_for_display ()">gdk_x11_atom_to_xatom_for_display</a>   (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 151 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> atom</code></em>);
         | 
| 152 | 
            -
            <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a>             <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom" title="gdk_x11_xatom_to_atom ()">gdk_x11_xatom_to_atom</a>               (<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);
         | 
| 153 | 
            -
            <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a>             <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom-for-display" title="gdk_x11_xatom_to_atom_for_display ()">gdk_x11_xatom_to_atom_for_display</a>   (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 154 | 
            -
                                                                     <em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);
         | 
| 155 | 
            -
            <span class="returnvalue">Atom</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name" title="gdk_x11_get_xatom_by_name ()">gdk_x11_get_xatom_by_name</a>           (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *atom_name</code></em>);
         | 
| 156 | 
            -
            <span class="returnvalue">Atom</span>                <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name-for-display" title="gdk_x11_get_xatom_by_name_for_display ()">gdk_x11_get_xatom_by_name_for_display</a>
         | 
| 157 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 158 | 
            -
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *atom_name</code></em>);
         | 
| 159 | 
            -
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name" title="gdk_x11_get_xatom_name ()">gdk_x11_get_xatom_name</a>              (<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);
         | 
| 160 | 
            -
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name-for-display" title="gdk_x11_get_xatom_name_for_display ()">gdk_x11_get_xatom_name_for_display</a>  (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 161 | 
            -
                                                                     <em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);
         | 
| 162 | 
            -
            </pre>
         | 
| 163 | 
            -
            </div>
         | 
| 164 | 
            -
            <div class="refsect1" title="Description">
         | 
| 165 | 
            -
            <a name="gdk-X-Window-System-Interaction.description"></a><h2>Description</h2>
         | 
| 166 | 
            -
            <p>
         | 
| 167 | 
            -
            </p>
         | 
| 168 | 
            -
            </div>
         | 
| 169 | 
            -
            <div class="refsect1" title="Details">
         | 
| 170 | 
            -
            <a name="gdk-X-Window-System-Interaction.details"></a><h2>Details</h2>
         | 
| 171 | 
            -
            <div class="refsect2" title="GDK_ROOT_WINDOW">
         | 
| 172 | 
            -
            <a name="GDK-ROOT-WINDOW:CAPS"></a><h3>GDK_ROOT_WINDOW</h3>
         | 
| 173 | 
            -
            <pre class="programlisting">#define GDK_ROOT_WINDOW()             (gdk_x11_get_default_root_xwindow ())
         | 
| 174 | 
            -
            </pre>
         | 
| 175 | 
            -
            <p>
         | 
| 176 | 
            -
            Obtains the Xlib window id of the root window of the current screen.
         | 
| 177 | 
            -
            </p>
         | 
| 178 | 
            -
            </div>
         | 
| 179 | 
            -
            <hr>
         | 
| 180 | 
            -
            <div class="refsect2" title="GDK_ROOT_PARENT">
         | 
| 181 | 
            -
            <a name="GDK-ROOT-PARENT:CAPS"></a><h3>GDK_ROOT_PARENT</h3>
         | 
| 182 | 
            -
            <pre class="programlisting">#define GDK_ROOT_PARENT()             (gdk_get_default_root_window ())
         | 
| 183 | 
            -
            </pre>
         | 
| 184 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 185 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 186 | 
            -
            <p><code class="literal">GDK_ROOT_PARENT</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 187 | 
            -
            </div>
         | 
| 188 | 
            -
            <p>
         | 
| 189 | 
            -
            Obtains the Xlib window id of the root window of the default screen.
         | 
| 190 | 
            -
            </p>
         | 
| 191 | 
            -
            </div>
         | 
| 192 | 
            -
            <hr>
         | 
| 193 | 
            -
            <div class="refsect2" title="GDK_DISPLAY">
         | 
| 194 | 
            -
            <a name="GDK-DISPLAY:CAPS"></a><h3>GDK_DISPLAY</h3>
         | 
| 195 | 
            -
            <pre class="programlisting">#define GDK_DISPLAY()                 gdk_display
         | 
| 196 | 
            -
            </pre>
         | 
| 197 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 198 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 199 | 
            -
            <p><code class="literal">GDK_DISPLAY</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="GdkDisplay.html#gdk-display-get-default" title="gdk_display_get_default ()"><code class="function">gdk_display_get_default()</code></a></p>
         | 
| 200 | 
            -
            </div>
         | 
| 201 | 
            -
            <p>
         | 
| 202 | 
            -
            The current display.
         | 
| 203 | 
            -
            </p>
         | 
| 204 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 205 | 
            -
            <col align="left" valign="top">
         | 
| 206 | 
            -
            <tbody><tr>
         | 
| 207 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 208 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 209 | 
            -
            </td>
         | 
| 210 | 
            -
            </tr></tbody>
         | 
| 211 | 
            -
            </table></div>
         | 
| 212 | 
            -
            </div>
         | 
| 213 | 
            -
            <hr>
         | 
| 214 | 
            -
            <div class="refsect2" title="GDK_WINDOW_XDISPLAY()">
         | 
| 215 | 
            -
            <a name="GDK-WINDOW-XDISPLAY:CAPS"></a><h3>GDK_WINDOW_XDISPLAY()</h3>
         | 
| 216 | 
            -
            <pre class="programlisting">#define             GDK_WINDOW_XDISPLAY(win)</pre>
         | 
| 217 | 
            -
            <p>
         | 
| 218 | 
            -
            Returns the display of a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.
         | 
| 219 | 
            -
            </p>
         | 
| 220 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 221 | 
            -
            <col align="left" valign="top">
         | 
| 222 | 
            -
            <tbody>
         | 
| 223 | 
            -
            <tr>
         | 
| 224 | 
            -
            <td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
         | 
| 225 | 
            -
            <td>a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.
         | 
| 226 | 
            -
            </td>
         | 
| 227 | 
            -
            </tr>
         | 
| 228 | 
            -
            <tr>
         | 
| 229 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 230 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 231 | 
            -
            </td>
         | 
| 232 | 
            -
            </tr>
         | 
| 233 | 
            -
            </tbody>
         | 
| 234 | 
            -
            </table></div>
         | 
| 235 | 
            -
            </div>
         | 
| 236 | 
            -
            <hr>
         | 
| 237 | 
            -
            <div class="refsect2" title="GDK_WINDOW_XID()">
         | 
| 238 | 
            -
            <a name="GDK-WINDOW-XID:CAPS"></a><h3>GDK_WINDOW_XID()</h3>
         | 
| 239 | 
            -
            <pre class="programlisting">#define             GDK_WINDOW_XID(win)</pre>
         | 
| 240 | 
            -
            <p>
         | 
| 241 | 
            -
            Returns the X window belonging to a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.
         | 
| 242 | 
            -
            </p>
         | 
| 243 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 244 | 
            -
            <col align="left" valign="top">
         | 
| 245 | 
            -
            <tbody>
         | 
| 246 | 
            -
            <tr>
         | 
| 247 | 
            -
            <td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
         | 
| 248 | 
            -
            <td>a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.
         | 
| 249 | 
            -
            </td>
         | 
| 250 | 
            -
            </tr>
         | 
| 251 | 
            -
            <tr>
         | 
| 252 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 253 | 
            -
            <td>the Xlib <span class="type">Window</span> of <em class="parameter"><code>win</code></em>.
         | 
| 254 | 
            -
            </td>
         | 
| 255 | 
            -
            </tr>
         | 
| 256 | 
            -
            </tbody>
         | 
| 257 | 
            -
            </table></div>
         | 
| 258 | 
            -
            </div>
         | 
| 259 | 
            -
            <hr>
         | 
| 260 | 
            -
            <div class="refsect2" title="GDK_PIXMAP_XDISPLAY()">
         | 
| 261 | 
            -
            <a name="GDK-PIXMAP-XDISPLAY:CAPS"></a><h3>GDK_PIXMAP_XDISPLAY()</h3>
         | 
| 262 | 
            -
            <pre class="programlisting">#define             GDK_PIXMAP_XDISPLAY(pix)</pre>
         | 
| 263 | 
            -
            <p>
         | 
| 264 | 
            -
            Returns the display of a <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>.
         | 
| 265 | 
            -
            </p>
         | 
| 266 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 267 | 
            -
            <col align="left" valign="top">
         | 
| 268 | 
            -
            <tbody>
         | 
| 269 | 
            -
            <tr>
         | 
| 270 | 
            -
            <td><p><span class="term"><em class="parameter"><code>pix</code></em> :</span></p></td>
         | 
| 271 | 
            -
            <td>a <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>.
         | 
| 272 | 
            -
            </td>
         | 
| 273 | 
            -
            </tr>
         | 
| 274 | 
            -
            <tr>
         | 
| 275 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 276 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 277 | 
            -
            </td>
         | 
| 278 | 
            -
            </tr>
         | 
| 279 | 
            -
            </tbody>
         | 
| 280 | 
            -
            </table></div>
         | 
| 281 | 
            -
            </div>
         | 
| 282 | 
            -
            <hr>
         | 
| 283 | 
            -
            <div class="refsect2" title="GDK_PIXMAP_XID()">
         | 
| 284 | 
            -
            <a name="GDK-PIXMAP-XID:CAPS"></a><h3>GDK_PIXMAP_XID()</h3>
         | 
| 285 | 
            -
            <pre class="programlisting">#define             GDK_PIXMAP_XID(pix)</pre>
         | 
| 286 | 
            -
            <p>
         | 
| 287 | 
            -
            Returns the X pixmap belonging to a <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>.
         | 
| 288 | 
            -
            </p>
         | 
| 289 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 290 | 
            -
            <col align="left" valign="top">
         | 
| 291 | 
            -
            <tbody>
         | 
| 292 | 
            -
            <tr>
         | 
| 293 | 
            -
            <td><p><span class="term"><em class="parameter"><code>pix</code></em> :</span></p></td>
         | 
| 294 | 
            -
            <td>a <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>.
         | 
| 295 | 
            -
            </td>
         | 
| 296 | 
            -
            </tr>
         | 
| 297 | 
            -
            <tr>
         | 
| 298 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 299 | 
            -
            <td>the Xlib <span class="type">XPixmap</span> of <em class="parameter"><code>win</code></em>.
         | 
| 300 | 
            -
            </td>
         | 
| 301 | 
            -
            </tr>
         | 
| 302 | 
            -
            </tbody>
         | 
| 303 | 
            -
            </table></div>
         | 
| 304 | 
            -
            </div>
         | 
| 305 | 
            -
            <hr>
         | 
| 306 | 
            -
            <div class="refsect2" title="GDK_DISPLAY_XDISPLAY()">
         | 
| 307 | 
            -
            <a name="GDK-DISPLAY-XDISPLAY:CAPS"></a><h3>GDK_DISPLAY_XDISPLAY()</h3>
         | 
| 308 | 
            -
            <pre class="programlisting">#define             GDK_DISPLAY_XDISPLAY(display)</pre>
         | 
| 309 | 
            -
            <p>
         | 
| 310 | 
            -
            Returns the display of a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>.
         | 
| 311 | 
            -
            </p>
         | 
| 312 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 313 | 
            -
            <col align="left" valign="top">
         | 
| 314 | 
            -
            <tbody><tr>
         | 
| 315 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 316 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>.
         | 
| 317 | 
            -
            </td>
         | 
| 318 | 
            -
            </tr></tbody>
         | 
| 319 | 
            -
            </table></div>
         | 
| 320 | 
            -
            </div>
         | 
| 321 | 
            -
            <hr>
         | 
| 322 | 
            -
            <div class="refsect2" title="GDK_DRAWABLE_XDISPLAY()">
         | 
| 323 | 
            -
            <a name="GDK-DRAWABLE-XDISPLAY:CAPS"></a><h3>GDK_DRAWABLE_XDISPLAY()</h3>
         | 
| 324 | 
            -
            <pre class="programlisting">#define             GDK_DRAWABLE_XDISPLAY(win)</pre>
         | 
| 325 | 
            -
            <p>
         | 
| 326 | 
            -
            Returns the display of a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.
         | 
| 327 | 
            -
            </p>
         | 
| 328 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 329 | 
            -
            <col align="left" valign="top">
         | 
| 330 | 
            -
            <tbody>
         | 
| 331 | 
            -
            <tr>
         | 
| 332 | 
            -
            <td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
         | 
| 333 | 
            -
            <td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.
         | 
| 334 | 
            -
            </td>
         | 
| 335 | 
            -
            </tr>
         | 
| 336 | 
            -
            <tr>
         | 
| 337 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 338 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 339 | 
            -
            </td>
         | 
| 340 | 
            -
            </tr>
         | 
| 341 | 
            -
            </tbody>
         | 
| 342 | 
            -
            </table></div>
         | 
| 343 | 
            -
            </div>
         | 
| 344 | 
            -
            <hr>
         | 
| 345 | 
            -
            <div class="refsect2" title="GDK_DRAWABLE_XID()">
         | 
| 346 | 
            -
            <a name="GDK-DRAWABLE-XID:CAPS"></a><h3>GDK_DRAWABLE_XID()</h3>
         | 
| 347 | 
            -
            <pre class="programlisting">#define             GDK_DRAWABLE_XID(win)</pre>
         | 
| 348 | 
            -
            <p>
         | 
| 349 | 
            -
            Returns the X resource (window or pixmap) belonging to a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.
         | 
| 350 | 
            -
            </p>
         | 
| 351 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 352 | 
            -
            <col align="left" valign="top">
         | 
| 353 | 
            -
            <tbody>
         | 
| 354 | 
            -
            <tr>
         | 
| 355 | 
            -
            <td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
         | 
| 356 | 
            -
            <td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.
         | 
| 357 | 
            -
            </td>
         | 
| 358 | 
            -
            </tr>
         | 
| 359 | 
            -
            <tr>
         | 
| 360 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 361 | 
            -
            <td>the ID of <em class="parameter"><code>win</code></em>'s X resource.
         | 
| 362 | 
            -
            </td>
         | 
| 363 | 
            -
            </tr>
         | 
| 364 | 
            -
            </tbody>
         | 
| 365 | 
            -
            </table></div>
         | 
| 366 | 
            -
            </div>
         | 
| 367 | 
            -
            <hr>
         | 
| 368 | 
            -
            <div class="refsect2" title="GDK_IMAGE_XDISPLAY()">
         | 
| 369 | 
            -
            <a name="GDK-IMAGE-XDISPLAY:CAPS"></a><h3>GDK_IMAGE_XDISPLAY()</h3>
         | 
| 370 | 
            -
            <pre class="programlisting">#define GDK_IMAGE_XDISPLAY(image)     (gdk_x11_image_get_xdisplay (image))
         | 
| 371 | 
            -
            </pre>
         | 
| 372 | 
            -
            <p>
         | 
| 373 | 
            -
            Returns the display of a <a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a>.
         | 
| 374 | 
            -
            </p>
         | 
| 375 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 376 | 
            -
            <col align="left" valign="top">
         | 
| 377 | 
            -
            <tbody>
         | 
| 378 | 
            -
            <tr>
         | 
| 379 | 
            -
            <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
         | 
| 380 | 
            -
            <td>a <a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a>.
         | 
| 381 | 
            -
            </td>
         | 
| 382 | 
            -
            </tr>
         | 
| 383 | 
            -
            <tr>
         | 
| 384 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 385 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 386 | 
            -
            </td>
         | 
| 387 | 
            -
            </tr>
         | 
| 388 | 
            -
            </tbody>
         | 
| 389 | 
            -
            </table></div>
         | 
| 390 | 
            -
            </div>
         | 
| 391 | 
            -
            <hr>
         | 
| 392 | 
            -
            <div class="refsect2" title="GDK_IMAGE_XIMAGE()">
         | 
| 393 | 
            -
            <a name="GDK-IMAGE-XIMAGE:CAPS"></a><h3>GDK_IMAGE_XIMAGE()</h3>
         | 
| 394 | 
            -
            <pre class="programlisting">#define GDK_IMAGE_XIMAGE(image)       (gdk_x11_image_get_ximage (image))
         | 
| 395 | 
            -
            </pre>
         | 
| 396 | 
            -
            <p>
         | 
| 397 | 
            -
            Returns the X image belonging to a <a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a>.
         | 
| 398 | 
            -
            </p>
         | 
| 399 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 400 | 
            -
            <col align="left" valign="top">
         | 
| 401 | 
            -
            <tbody>
         | 
| 402 | 
            -
            <tr>
         | 
| 403 | 
            -
            <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
         | 
| 404 | 
            -
            <td>a <a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a>.
         | 
| 405 | 
            -
            </td>
         | 
| 406 | 
            -
            </tr>
         | 
| 407 | 
            -
            <tr>
         | 
| 408 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 409 | 
            -
            <td>an <span class="type">XImage*</span>.
         | 
| 410 | 
            -
            </td>
         | 
| 411 | 
            -
            </tr>
         | 
| 412 | 
            -
            </tbody>
         | 
| 413 | 
            -
            </table></div>
         | 
| 414 | 
            -
            </div>
         | 
| 415 | 
            -
            <hr>
         | 
| 416 | 
            -
            <div class="refsect2" title="GDK_GC_XDISPLAY()">
         | 
| 417 | 
            -
            <a name="GDK-GC-XDISPLAY:CAPS"></a><h3>GDK_GC_XDISPLAY()</h3>
         | 
| 418 | 
            -
            <pre class="programlisting">#define             GDK_GC_XDISPLAY(gc)</pre>
         | 
| 419 | 
            -
            <p>
         | 
| 420 | 
            -
            Returns the display of a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 421 | 
            -
            </p>
         | 
| 422 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 423 | 
            -
            <col align="left" valign="top">
         | 
| 424 | 
            -
            <tbody>
         | 
| 425 | 
            -
            <tr>
         | 
| 426 | 
            -
            <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
         | 
| 427 | 
            -
            <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 428 | 
            -
            </td>
         | 
| 429 | 
            -
            </tr>
         | 
| 430 | 
            -
            <tr>
         | 
| 431 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 432 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 433 | 
            -
            </td>
         | 
| 434 | 
            -
            </tr>
         | 
| 435 | 
            -
            </tbody>
         | 
| 436 | 
            -
            </table></div>
         | 
| 437 | 
            -
            </div>
         | 
| 438 | 
            -
            <hr>
         | 
| 439 | 
            -
            <div class="refsect2" title="GDK_COLORMAP_XDISPLAY()">
         | 
| 440 | 
            -
            <a name="GDK-COLORMAP-XDISPLAY:CAPS"></a><h3>GDK_COLORMAP_XDISPLAY()</h3>
         | 
| 441 | 
            -
            <pre class="programlisting">#define GDK_COLORMAP_XDISPLAY(cmap)   (gdk_x11_colormap_get_xdisplay (cmap))
         | 
| 442 | 
            -
            </pre>
         | 
| 443 | 
            -
            <p>
         | 
| 444 | 
            -
            Returns the display of a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a>.
         | 
| 445 | 
            -
            </p>
         | 
| 446 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 447 | 
            -
            <col align="left" valign="top">
         | 
| 448 | 
            -
            <tbody>
         | 
| 449 | 
            -
            <tr>
         | 
| 450 | 
            -
            <td><p><span class="term"><em class="parameter"><code>cmap</code></em> :</span></p></td>
         | 
| 451 | 
            -
            <td>a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a>.
         | 
| 452 | 
            -
            </td>
         | 
| 453 | 
            -
            </tr>
         | 
| 454 | 
            -
            <tr>
         | 
| 455 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 456 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 457 | 
            -
            </td>
         | 
| 458 | 
            -
            </tr>
         | 
| 459 | 
            -
            </tbody>
         | 
| 460 | 
            -
            </table></div>
         | 
| 461 | 
            -
            </div>
         | 
| 462 | 
            -
            <hr>
         | 
| 463 | 
            -
            <div class="refsect2" title="GDK_COLORMAP_XCOLORMAP()">
         | 
| 464 | 
            -
            <a name="GDK-COLORMAP-XCOLORMAP:CAPS"></a><h3>GDK_COLORMAP_XCOLORMAP()</h3>
         | 
| 465 | 
            -
            <pre class="programlisting">#define GDK_COLORMAP_XCOLORMAP(cmap)  (gdk_x11_colormap_get_xcolormap (cmap))
         | 
| 466 | 
            -
            </pre>
         | 
| 467 | 
            -
            <p>
         | 
| 468 | 
            -
            Returns the X colormap belonging to a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a>.
         | 
| 469 | 
            -
            </p>
         | 
| 470 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 471 | 
            -
            <col align="left" valign="top">
         | 
| 472 | 
            -
            <tbody>
         | 
| 473 | 
            -
            <tr>
         | 
| 474 | 
            -
            <td><p><span class="term"><em class="parameter"><code>cmap</code></em> :</span></p></td>
         | 
| 475 | 
            -
            <td>a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a>.
         | 
| 476 | 
            -
            </td>
         | 
| 477 | 
            -
            </tr>
         | 
| 478 | 
            -
            <tr>
         | 
| 479 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 480 | 
            -
            <td>an Xlib <span class="type">Colormap</span>.
         | 
| 481 | 
            -
            </td>
         | 
| 482 | 
            -
            </tr>
         | 
| 483 | 
            -
            </tbody>
         | 
| 484 | 
            -
            </table></div>
         | 
| 485 | 
            -
            </div>
         | 
| 486 | 
            -
            <hr>
         | 
| 487 | 
            -
            <div class="refsect2" title="GDK_SCREEN_XDISPLAY()">
         | 
| 488 | 
            -
            <a name="GDK-SCREEN-XDISPLAY:CAPS"></a><h3>GDK_SCREEN_XDISPLAY()</h3>
         | 
| 489 | 
            -
            <pre class="programlisting">#define             GDK_SCREEN_XDISPLAY(screen)</pre>
         | 
| 490 | 
            -
            <p>
         | 
| 491 | 
            -
            Returns the display of a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 492 | 
            -
            </p>
         | 
| 493 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 494 | 
            -
            <col align="left" valign="top">
         | 
| 495 | 
            -
            <tbody>
         | 
| 496 | 
            -
            <tr>
         | 
| 497 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 498 | 
            -
            <td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 499 | 
            -
            </td>
         | 
| 500 | 
            -
            </tr>
         | 
| 501 | 
            -
            <tr>
         | 
| 502 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 503 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 504 | 
            -
            </td>
         | 
| 505 | 
            -
            </tr>
         | 
| 506 | 
            -
            </tbody>
         | 
| 507 | 
            -
            </table></div>
         | 
| 508 | 
            -
            </div>
         | 
| 509 | 
            -
            <hr>
         | 
| 510 | 
            -
            <div class="refsect2" title="GDK_SCREEN_XNUMBER()">
         | 
| 511 | 
            -
            <a name="GDK-SCREEN-XNUMBER:CAPS"></a><h3>GDK_SCREEN_XNUMBER()</h3>
         | 
| 512 | 
            -
            <pre class="programlisting">#define             GDK_SCREEN_XNUMBER(screen)</pre>
         | 
| 513 | 
            -
            <p>
         | 
| 514 | 
            -
            Returns the index of a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 515 | 
            -
            </p>
         | 
| 516 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 517 | 
            -
            <col align="left" valign="top">
         | 
| 518 | 
            -
            <tbody>
         | 
| 519 | 
            -
            <tr>
         | 
| 520 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 521 | 
            -
            <td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>
         | 
| 522 | 
            -
            </td>
         | 
| 523 | 
            -
            </tr>
         | 
| 524 | 
            -
            <tr>
         | 
| 525 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 526 | 
            -
            <td>the position of <em class="parameter"><code>screen</code></em> among the screens of
         | 
| 527 | 
            -
              its display.
         | 
| 528 | 
            -
            </td>
         | 
| 529 | 
            -
            </tr>
         | 
| 530 | 
            -
            </tbody>
         | 
| 531 | 
            -
            </table></div>
         | 
| 532 | 
            -
            </div>
         | 
| 533 | 
            -
            <hr>
         | 
| 534 | 
            -
            <div class="refsect2" title="GDK_SCREEN_XSCREEN()">
         | 
| 535 | 
            -
            <a name="GDK-SCREEN-XSCREEN:CAPS"></a><h3>GDK_SCREEN_XSCREEN()</h3>
         | 
| 536 | 
            -
            <pre class="programlisting">#define             GDK_SCREEN_XSCREEN(screen)</pre>
         | 
| 537 | 
            -
            <p>
         | 
| 538 | 
            -
            Returns the screen of a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 539 | 
            -
            </p>
         | 
| 540 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 541 | 
            -
            <col align="left" valign="top">
         | 
| 542 | 
            -
            <tbody>
         | 
| 543 | 
            -
            <tr>
         | 
| 544 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 545 | 
            -
            <td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>
         | 
| 546 | 
            -
            </td>
         | 
| 547 | 
            -
            </tr>
         | 
| 548 | 
            -
            <tr>
         | 
| 549 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 550 | 
            -
            <td>an Xlib <span class="type">Screen*</span>.
         | 
| 551 | 
            -
            </td>
         | 
| 552 | 
            -
            </tr>
         | 
| 553 | 
            -
            </tbody>
         | 
| 554 | 
            -
            </table></div>
         | 
| 555 | 
            -
            </div>
         | 
| 556 | 
            -
            <hr>
         | 
| 557 | 
            -
            <div class="refsect2" title="GDK_VISUAL_XVISUAL()">
         | 
| 558 | 
            -
            <a name="GDK-VISUAL-XVISUAL:CAPS"></a><h3>GDK_VISUAL_XVISUAL()</h3>
         | 
| 559 | 
            -
            <pre class="programlisting">#define             GDK_VISUAL_XVISUAL(vis)</pre>
         | 
| 560 | 
            -
            <p>
         | 
| 561 | 
            -
            Returns the X visual belonging to a <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a>.
         | 
| 562 | 
            -
            </p>
         | 
| 563 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 564 | 
            -
            <col align="left" valign="top">
         | 
| 565 | 
            -
            <tbody>
         | 
| 566 | 
            -
            <tr>
         | 
| 567 | 
            -
            <td><p><span class="term"><em class="parameter"><code>vis</code></em> :</span></p></td>
         | 
| 568 | 
            -
            <td>a <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a>.
         | 
| 569 | 
            -
            </td>
         | 
| 570 | 
            -
            </tr>
         | 
| 571 | 
            -
            <tr>
         | 
| 572 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 573 | 
            -
            <td>an Xlib <span class="type">Visual*</span>.
         | 
| 574 | 
            -
            </td>
         | 
| 575 | 
            -
            </tr>
         | 
| 576 | 
            -
            </tbody>
         | 
| 577 | 
            -
            </table></div>
         | 
| 578 | 
            -
            </div>
         | 
| 579 | 
            -
            <hr>
         | 
| 580 | 
            -
            <div class="refsect2" title="GDK_FONT_XDISPLAY()">
         | 
| 581 | 
            -
            <a name="GDK-FONT-XDISPLAY:CAPS"></a><h3>GDK_FONT_XDISPLAY()</h3>
         | 
| 582 | 
            -
            <pre class="programlisting">#define GDK_FONT_XDISPLAY(font)       (gdk_x11_font_get_xdisplay (font))
         | 
| 583 | 
            -
            </pre>
         | 
| 584 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 585 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 586 | 
            -
            <p><code class="literal">GDK_FONT_XDISPLAY</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 587 | 
            -
            </div>
         | 
| 588 | 
            -
            <p>
         | 
| 589 | 
            -
            Returns the display of a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.
         | 
| 590 | 
            -
            </p>
         | 
| 591 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 592 | 
            -
            <col align="left" valign="top">
         | 
| 593 | 
            -
            <tbody>
         | 
| 594 | 
            -
            <tr>
         | 
| 595 | 
            -
            <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
         | 
| 596 | 
            -
            <td>a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.
         | 
| 597 | 
            -
            </td>
         | 
| 598 | 
            -
            </tr>
         | 
| 599 | 
            -
            <tr>
         | 
| 600 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 601 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 602 | 
            -
            </td>
         | 
| 603 | 
            -
            </tr>
         | 
| 604 | 
            -
            </tbody>
         | 
| 605 | 
            -
            </table></div>
         | 
| 606 | 
            -
            </div>
         | 
| 607 | 
            -
            <hr>
         | 
| 608 | 
            -
            <div class="refsect2" title="GDK_FONT_XFONT()">
         | 
| 609 | 
            -
            <a name="GDK-FONT-XFONT:CAPS"></a><h3>GDK_FONT_XFONT()</h3>
         | 
| 610 | 
            -
            <pre class="programlisting">#define GDK_FONT_XFONT(font)          (gdk_x11_font_get_xfont (font))
         | 
| 611 | 
            -
            </pre>
         | 
| 612 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 613 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 614 | 
            -
            <p><code class="literal">GDK_FONT_XFONT</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 615 | 
            -
            </div>
         | 
| 616 | 
            -
            <p>
         | 
| 617 | 
            -
            Returns the X font belonging to a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.
         | 
| 618 | 
            -
            </p>
         | 
| 619 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 620 | 
            -
            <col align="left" valign="top">
         | 
| 621 | 
            -
            <tbody>
         | 
| 622 | 
            -
            <tr>
         | 
| 623 | 
            -
            <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
         | 
| 624 | 
            -
            <td>a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.
         | 
| 625 | 
            -
            </td>
         | 
| 626 | 
            -
            </tr>
         | 
| 627 | 
            -
            <tr>
         | 
| 628 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 629 | 
            -
            <td>an Xlib <span class="type">XFontStruct*</span> or an <span class="type">XFontSet</span>.
         | 
| 630 | 
            -
            </td>
         | 
| 631 | 
            -
            </tr>
         | 
| 632 | 
            -
            </tbody>
         | 
| 633 | 
            -
            </table></div>
         | 
| 634 | 
            -
            </div>
         | 
| 635 | 
            -
            <hr>
         | 
| 636 | 
            -
            <div class="refsect2" title="GDK_CURSOR_XCURSOR()">
         | 
| 637 | 
            -
            <a name="GDK-CURSOR-XCURSOR:CAPS"></a><h3>GDK_CURSOR_XCURSOR()</h3>
         | 
| 638 | 
            -
            <pre class="programlisting">#define GDK_CURSOR_XCURSOR(cursor)    (gdk_x11_cursor_get_xcursor (cursor))
         | 
| 639 | 
            -
            </pre>
         | 
| 640 | 
            -
            <p>
         | 
| 641 | 
            -
            Returns the X cursor belonging to a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
         | 
| 642 | 
            -
            </p>
         | 
| 643 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 644 | 
            -
            <col align="left" valign="top">
         | 
| 645 | 
            -
            <tbody>
         | 
| 646 | 
            -
            <tr>
         | 
| 647 | 
            -
            <td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
         | 
| 648 | 
            -
            <td>a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
         | 
| 649 | 
            -
            </td>
         | 
| 650 | 
            -
            </tr>
         | 
| 651 | 
            -
            <tr>
         | 
| 652 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 653 | 
            -
            <td>an Xlib <span class="type">Cursor</span>.
         | 
| 654 | 
            -
            </td>
         | 
| 655 | 
            -
            </tr>
         | 
| 656 | 
            -
            </tbody>
         | 
| 657 | 
            -
            </table></div>
         | 
| 658 | 
            -
            </div>
         | 
| 659 | 
            -
            <hr>
         | 
| 660 | 
            -
            <div class="refsect2" title="GDK_CURSOR_XDISPLAY()">
         | 
| 661 | 
            -
            <a name="GDK-CURSOR-XDISPLAY:CAPS"></a><h3>GDK_CURSOR_XDISPLAY()</h3>
         | 
| 662 | 
            -
            <pre class="programlisting">#define GDK_CURSOR_XDISPLAY(cursor)   (gdk_x11_cursor_get_xdisplay (cursor))
         | 
| 663 | 
            -
            </pre>
         | 
| 664 | 
            -
            <p>
         | 
| 665 | 
            -
            Returns the display of a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
         | 
| 666 | 
            -
            </p>
         | 
| 667 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 668 | 
            -
            <col align="left" valign="top">
         | 
| 669 | 
            -
            <tbody>
         | 
| 670 | 
            -
            <tr>
         | 
| 671 | 
            -
            <td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
         | 
| 672 | 
            -
            <td>a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
         | 
| 673 | 
            -
            </td>
         | 
| 674 | 
            -
            </tr>
         | 
| 675 | 
            -
            <tr>
         | 
| 676 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 677 | 
            -
            <td>an Xlib <span class="type">Display*</span>.
         | 
| 678 | 
            -
            </td>
         | 
| 679 | 
            -
            </tr>
         | 
| 680 | 
            -
            </tbody>
         | 
| 681 | 
            -
            </table></div>
         | 
| 682 | 
            -
            </div>
         | 
| 683 | 
            -
            <hr>
         | 
| 684 | 
            -
            <div class="refsect2" title="GDK_GC_XGC()">
         | 
| 685 | 
            -
            <a name="GDK-GC-XGC:CAPS"></a><h3>GDK_GC_XGC()</h3>
         | 
| 686 | 
            -
            <pre class="programlisting">#define             GDK_GC_XGC(gc)</pre>
         | 
| 687 | 
            -
            <p>
         | 
| 688 | 
            -
            Returns the X GC of a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 689 | 
            -
            </p>
         | 
| 690 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 691 | 
            -
            <col align="left" valign="top">
         | 
| 692 | 
            -
            <tbody>
         | 
| 693 | 
            -
            <tr>
         | 
| 694 | 
            -
            <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
         | 
| 695 | 
            -
            <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 696 | 
            -
            </td>
         | 
| 697 | 
            -
            </tr>
         | 
| 698 | 
            -
            <tr>
         | 
| 699 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 700 | 
            -
            <td>an Xlib <span class="type">GC</span>.
         | 
| 701 | 
            -
            </td>
         | 
| 702 | 
            -
            </tr>
         | 
| 703 | 
            -
            </tbody>
         | 
| 704 | 
            -
            </table></div>
         | 
| 705 | 
            -
            </div>
         | 
| 706 | 
            -
            <hr>
         | 
| 707 | 
            -
            <div class="refsect2" title="GDK_GC_GET_XGC()">
         | 
| 708 | 
            -
            <a name="GDK-GC-GET-XGC:CAPS"></a><h3>GDK_GC_GET_XGC()</h3>
         | 
| 709 | 
            -
            <pre class="programlisting">#define GDK_GC_GET_XGC(gc)	      (GDK_GC_X11(gc)->dirty_mask ? _gdk_x11_gc_flush (gc) : ((GdkGCX11 *)(gc))->xgc)
         | 
| 710 | 
            -
            </pre>
         | 
| 711 | 
            -
            <p>
         | 
| 712 | 
            -
            Returns the X GC of a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 713 | 
            -
            </p>
         | 
| 714 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 715 | 
            -
            <col align="left" valign="top">
         | 
| 716 | 
            -
            <tbody>
         | 
| 717 | 
            -
            <tr>
         | 
| 718 | 
            -
            <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
         | 
| 719 | 
            -
            <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 720 | 
            -
            </td>
         | 
| 721 | 
            -
            </tr>
         | 
| 722 | 
            -
            <tr>
         | 
| 723 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 724 | 
            -
            <td>an Xlib <span class="type">GC</span>.
         | 
| 725 | 
            -
            </td>
         | 
| 726 | 
            -
            </tr>
         | 
| 727 | 
            -
            </tbody>
         | 
| 728 | 
            -
            </table></div>
         | 
| 729 | 
            -
            </div>
         | 
| 730 | 
            -
            <hr>
         | 
| 731 | 
            -
            <div class="refsect2" title="GDK_WINDOW_XWINDOW">
         | 
| 732 | 
            -
            <a name="GDK-WINDOW-XWINDOW:CAPS"></a><h3>GDK_WINDOW_XWINDOW</h3>
         | 
| 733 | 
            -
            <pre class="programlisting">#define             GDK_WINDOW_XWINDOW</pre>
         | 
| 734 | 
            -
            <p>
         | 
| 735 | 
            -
            Another name for <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XID:CAPS" title="GDK_DRAWABLE_XID()"><code class="function">GDK_DRAWABLE_XID()</code></a>.
         | 
| 736 | 
            -
            </p>
         | 
| 737 | 
            -
            </div>
         | 
| 738 | 
            -
            <hr>
         | 
| 739 | 
            -
            <div class="refsect2" title="gdkx_visual_get ()">
         | 
| 740 | 
            -
            <a name="gdkx-visual-get"></a><h3>gdkx_visual_get ()</h3>
         | 
| 741 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="returnvalue">GdkVisual</span></a>*          gdkx_visual_get                     (<em class="parameter"><code><span class="type">VisualID</span> xvisualid</code></em>);</pre>
         | 
| 742 | 
            -
            <p>
         | 
| 743 | 
            -
            Returns a <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a> corresponding to a X visual.
         | 
| 744 | 
            -
            </p>
         | 
| 745 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 746 | 
            -
            <col align="left" valign="top">
         | 
| 747 | 
            -
            <tbody>
         | 
| 748 | 
            -
            <tr>
         | 
| 749 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xvisualid</code></em> :</span></p></td>
         | 
| 750 | 
            -
            <td>a X visual id.
         | 
| 751 | 
            -
            </td>
         | 
| 752 | 
            -
            </tr>
         | 
| 753 | 
            -
            <tr>
         | 
| 754 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 755 | 
            -
            <td> the <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a>.
         | 
| 756 | 
            -
            </td>
         | 
| 757 | 
            -
            </tr>
         | 
| 758 | 
            -
            </tbody>
         | 
| 759 | 
            -
            </table></div>
         | 
| 760 | 
            -
            </div>
         | 
| 761 | 
            -
            <hr>
         | 
| 762 | 
            -
            <div class="refsect2" title="gdkx_colormap_get ()">
         | 
| 763 | 
            -
            <a name="gdkx-colormap-get"></a><h3>gdkx_colormap_get ()</h3>
         | 
| 764 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a>*        gdkx_colormap_get                   (<em class="parameter"><code><span class="type">Colormap</span> xcolormap</code></em>);</pre>
         | 
| 765 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 766 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 767 | 
            -
            <p><code class="literal">gdkx_colormap_get</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 768 | 
            -
            </div>
         | 
| 769 | 
            -
            <p>
         | 
| 770 | 
            -
            Returns a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> corresponding to a X colormap;
         | 
| 771 | 
            -
            this function only works if the colormap is already
         | 
| 772 | 
            -
            known to GTK+ (a colormap created by GTK+ or the default
         | 
| 773 | 
            -
            colormap for the screen), since GTK+ 
         | 
| 774 | 
            -
            </p>
         | 
| 775 | 
            -
            <p>
         | 
| 776 | 
            -
            Always use <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-foreign-new" title="gdk_x11_colormap_foreign_new ()"><code class="function">gdk_x11_colormap_foreign_new()</code></a> instead.
         | 
| 777 | 
            -
            </p>
         | 
| 778 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 779 | 
            -
            <col align="left" valign="top">
         | 
| 780 | 
            -
            <tbody>
         | 
| 781 | 
            -
            <tr>
         | 
| 782 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xcolormap</code></em> :</span></p></td>
         | 
| 783 | 
            -
            <td>the XID of a colormap for the default screen.
         | 
| 784 | 
            -
            </td>
         | 
| 785 | 
            -
            </tr>
         | 
| 786 | 
            -
            <tr>
         | 
| 787 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 788 | 
            -
            <td> the existing <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> object if it was
         | 
| 789 | 
            -
             already known to GTK+, otherwise warns and return
         | 
| 790 | 
            -
             <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
         | 
| 791 | 
            -
            </td>
         | 
| 792 | 
            -
            </tr>
         | 
| 793 | 
            -
            </tbody>
         | 
| 794 | 
            -
            </table></div>
         | 
| 795 | 
            -
            </div>
         | 
| 796 | 
            -
            <hr>
         | 
| 797 | 
            -
            <div class="refsect2" title="gdk_pixmap_foreign_new ()">
         | 
| 798 | 
            -
            <a name="gdk-pixmap-foreign-new"></a><h3>gdk_pixmap_foreign_new ()</h3>
         | 
| 799 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          gdk_pixmap_foreign_new              (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);</pre>
         | 
| 800 | 
            -
            <p>
         | 
| 801 | 
            -
            Wraps a native window for the default display in a <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>.
         | 
| 802 | 
            -
            This may fail if the pixmap has been destroyed.
         | 
| 803 | 
            -
            </p>
         | 
| 804 | 
            -
            <p>
         | 
| 805 | 
            -
            For example in the X backend, a native pixmap handle is an Xlib
         | 
| 806 | 
            -
            <span class="type">XID</span>.
         | 
| 807 | 
            -
            </p>
         | 
| 808 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 809 | 
            -
            <col align="left" valign="top">
         | 
| 810 | 
            -
            <tbody>
         | 
| 811 | 
            -
            <tr>
         | 
| 812 | 
            -
            <td><p><span class="term"><em class="parameter"><code>anid</code></em> :</span></p></td>
         | 
| 813 | 
            -
            <td>a native pixmap handle.
         | 
| 814 | 
            -
            </td>
         | 
| 815 | 
            -
            </tr>
         | 
| 816 | 
            -
            <tr>
         | 
| 817 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 818 | 
            -
            <td> the newly-created <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> wrapper for the 
         | 
| 819 | 
            -
               native pixmap or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the pixmap has been destroyed.
         | 
| 820 | 
            -
            </td>
         | 
| 821 | 
            -
            </tr>
         | 
| 822 | 
            -
            </tbody>
         | 
| 823 | 
            -
            </table></div>
         | 
| 824 | 
            -
            </div>
         | 
| 825 | 
            -
            <hr>
         | 
| 826 | 
            -
            <div class="refsect2" title="gdk_pixmap_foreign_new_for_display ()">
         | 
| 827 | 
            -
            <a name="gdk-pixmap-foreign-new-for-display"></a><h3>gdk_pixmap_foreign_new_for_display ()</h3>
         | 
| 828 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          gdk_pixmap_foreign_new_for_display  (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 829 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);</pre>
         | 
| 830 | 
            -
            <p>
         | 
| 831 | 
            -
            Wraps a native pixmap in a <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>.
         | 
| 832 | 
            -
            This may fail if the pixmap has been destroyed.
         | 
| 833 | 
            -
            </p>
         | 
| 834 | 
            -
            <p>
         | 
| 835 | 
            -
            For example in the X backend, a native pixmap handle is an Xlib
         | 
| 836 | 
            -
            <span class="type">XID</span>.
         | 
| 837 | 
            -
            </p>
         | 
| 838 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 839 | 
            -
            <col align="left" valign="top">
         | 
| 840 | 
            -
            <tbody>
         | 
| 841 | 
            -
            <tr>
         | 
| 842 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 843 | 
            -
            <td>The <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where <em class="parameter"><code>anid</code></em> is located.
         | 
| 844 | 
            -
            </td>
         | 
| 845 | 
            -
            </tr>
         | 
| 846 | 
            -
            <tr>
         | 
| 847 | 
            -
            <td><p><span class="term"><em class="parameter"><code>anid</code></em> :</span></p></td>
         | 
| 848 | 
            -
            <td>a native pixmap handle.
         | 
| 849 | 
            -
            </td>
         | 
| 850 | 
            -
            </tr>
         | 
| 851 | 
            -
            <tr>
         | 
| 852 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 853 | 
            -
            <td> the newly-created <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> wrapper for the 
         | 
| 854 | 
            -
               native pixmap or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the pixmap has been destroyed.
         | 
| 855 | 
            -
             | 
| 856 | 
            -
            </td>
         | 
| 857 | 
            -
            </tr>
         | 
| 858 | 
            -
            </tbody>
         | 
| 859 | 
            -
            </table></div>
         | 
| 860 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 861 | 
            -
            </div>
         | 
| 862 | 
            -
            <hr>
         | 
| 863 | 
            -
            <div class="refsect2" title="gdk_pixmap_foreign_new_for_screen ()">
         | 
| 864 | 
            -
            <a name="gdk-pixmap-foreign-new-for-screen"></a><h3>gdk_pixmap_foreign_new_for_screen ()</h3>
         | 
| 865 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          gdk_pixmap_foreign_new_for_screen   (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 866 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>,
         | 
| 867 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
         | 
| 868 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> height</code></em>,
         | 
| 869 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> depth</code></em>);</pre>
         | 
| 870 | 
            -
            <p>
         | 
| 871 | 
            -
            Wraps a native pixmap in a <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>.
         | 
| 872 | 
            -
            This may fail if the pixmap has been destroyed.
         | 
| 873 | 
            -
            </p>
         | 
| 874 | 
            -
            <p>
         | 
| 875 | 
            -
            For example in the X backend, a native pixmap handle is an Xlib
         | 
| 876 | 
            -
            <span class="type">XID</span>.
         | 
| 877 | 
            -
            </p>
         | 
| 878 | 
            -
            <p>
         | 
| 879 | 
            -
            This function is an alternative to <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-display" title="gdk_pixmap_foreign_new_for_display ()"><code class="function">gdk_pixmap_foreign_new_for_display()</code></a>
         | 
| 880 | 
            -
            for cases where the dimensions of the pixmap are known. For the X
         | 
| 881 | 
            -
            backend, this avoids a roundtrip to the server.
         | 
| 882 | 
            -
            </p>
         | 
| 883 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 884 | 
            -
            <col align="left" valign="top">
         | 
| 885 | 
            -
            <tbody>
         | 
| 886 | 
            -
            <tr>
         | 
| 887 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 888 | 
            -
            <td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>
         | 
| 889 | 
            -
            </td>
         | 
| 890 | 
            -
            </tr>
         | 
| 891 | 
            -
            <tr>
         | 
| 892 | 
            -
            <td><p><span class="term"><em class="parameter"><code>anid</code></em> :</span></p></td>
         | 
| 893 | 
            -
            <td>a native pixmap handle
         | 
| 894 | 
            -
            </td>
         | 
| 895 | 
            -
            </tr>
         | 
| 896 | 
            -
            <tr>
         | 
| 897 | 
            -
            <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
         | 
| 898 | 
            -
            <td>the width of the pixmap identified by <em class="parameter"><code>anid</code></em>
         | 
| 899 | 
            -
            </td>
         | 
| 900 | 
            -
            </tr>
         | 
| 901 | 
            -
            <tr>
         | 
| 902 | 
            -
            <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
         | 
| 903 | 
            -
            <td>the height of the pixmap identified by <em class="parameter"><code>anid</code></em>
         | 
| 904 | 
            -
            </td>
         | 
| 905 | 
            -
            </tr>
         | 
| 906 | 
            -
            <tr>
         | 
| 907 | 
            -
            <td><p><span class="term"><em class="parameter"><code>depth</code></em> :</span></p></td>
         | 
| 908 | 
            -
            <td>the depth of the pixmap identified by <em class="parameter"><code>anid</code></em>
         | 
| 909 | 
            -
            </td>
         | 
| 910 | 
            -
            </tr>
         | 
| 911 | 
            -
            <tr>
         | 
| 912 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 913 | 
            -
            <td> the newly-created <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> wrapper for the 
         | 
| 914 | 
            -
               native pixmap or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the pixmap has been destroyed.
         | 
| 915 | 
            -
             | 
| 916 | 
            -
            </td>
         | 
| 917 | 
            -
            </tr>
         | 
| 918 | 
            -
            </tbody>
         | 
| 919 | 
            -
            </table></div>
         | 
| 920 | 
            -
            <p class="since">Since 2.10</p>
         | 
| 921 | 
            -
            </div>
         | 
| 922 | 
            -
            <hr>
         | 
| 923 | 
            -
            <div class="refsect2" title="gdk_window_foreign_new ()">
         | 
| 924 | 
            -
            <a name="gdk-window-foreign-new"></a><h3>gdk_window_foreign_new ()</h3>
         | 
| 925 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a>*          gdk_window_foreign_new              (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);</pre>
         | 
| 926 | 
            -
            <p>
         | 
| 927 | 
            -
            Wraps a native window for the default display in a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.
         | 
| 928 | 
            -
            This may fail if the window has been destroyed.
         | 
| 929 | 
            -
            </p>
         | 
| 930 | 
            -
            <p>
         | 
| 931 | 
            -
            For example in the X backend, a native window handle is an Xlib
         | 
| 932 | 
            -
            <span class="type">XID</span>.
         | 
| 933 | 
            -
            </p>
         | 
| 934 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 935 | 
            -
            <col align="left" valign="top">
         | 
| 936 | 
            -
            <tbody>
         | 
| 937 | 
            -
            <tr>
         | 
| 938 | 
            -
            <td><p><span class="term"><em class="parameter"><code>anid</code></em> :</span></p></td>
         | 
| 939 | 
            -
            <td>a native window handle.
         | 
| 940 | 
            -
            </td>
         | 
| 941 | 
            -
            </tr>
         | 
| 942 | 
            -
            <tr>
         | 
| 943 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 944 | 
            -
            <td> the newly-created <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> wrapper for the
         | 
| 945 | 
            -
               native window or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the window has been destroyed.
         | 
| 946 | 
            -
            </td>
         | 
| 947 | 
            -
            </tr>
         | 
| 948 | 
            -
            </tbody>
         | 
| 949 | 
            -
            </table></div>
         | 
| 950 | 
            -
            </div>
         | 
| 951 | 
            -
            <hr>
         | 
| 952 | 
            -
            <div class="refsect2" title="gdk_window_foreign_new_for_display ()">
         | 
| 953 | 
            -
            <a name="gdk-window-foreign-new-for-display"></a><h3>gdk_window_foreign_new_for_display ()</h3>
         | 
| 954 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> *         gdk_window_foreign_new_for_display  (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 955 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);</pre>
         | 
| 956 | 
            -
            <p>
         | 
| 957 | 
            -
            Wraps a native window in a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.
         | 
| 958 | 
            -
            This may fail if the window has been destroyed. If the window
         | 
| 959 | 
            -
            was already known to GDK, a new reference to the existing 
         | 
| 960 | 
            -
            <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> is returned.
         | 
| 961 | 
            -
            </p>
         | 
| 962 | 
            -
            <p>
         | 
| 963 | 
            -
            For example in the X backend, a native window handle is an Xlib
         | 
| 964 | 
            -
            <span class="type">XID</span>.
         | 
| 965 | 
            -
            </p>
         | 
| 966 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 967 | 
            -
            <col align="left" valign="top">
         | 
| 968 | 
            -
            <tbody>
         | 
| 969 | 
            -
            <tr>
         | 
| 970 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 971 | 
            -
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where the window handle comes from.
         | 
| 972 | 
            -
            </td>
         | 
| 973 | 
            -
            </tr>
         | 
| 974 | 
            -
            <tr>
         | 
| 975 | 
            -
            <td><p><span class="term"><em class="parameter"><code>anid</code></em> :</span></p></td>
         | 
| 976 | 
            -
            <td>a native window handle.
         | 
| 977 | 
            -
            </td>
         | 
| 978 | 
            -
            </tr>
         | 
| 979 | 
            -
            <tr>
         | 
| 980 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 981 | 
            -
            <td> a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> wrapper for the native window or 
         | 
| 982 | 
            -
              <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the window has been destroyed. The wrapper will be
         | 
| 983 | 
            -
              newly created, if one doesn't exist already.
         | 
| 984 | 
            -
             | 
| 985 | 
            -
            </td>
         | 
| 986 | 
            -
            </tr>
         | 
| 987 | 
            -
            </tbody>
         | 
| 988 | 
            -
            </table></div>
         | 
| 989 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 990 | 
            -
            </div>
         | 
| 991 | 
            -
            <hr>
         | 
| 992 | 
            -
            <div class="refsect2" title="gdk_xid_table_lookup ()">
         | 
| 993 | 
            -
            <a name="gdk-xid-table-lookup"></a><h3>gdk_xid_table_lookup ()</h3>
         | 
| 994 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>            gdk_xid_table_lookup                (<em class="parameter"><code><span class="type">XID</span> xid</code></em>);</pre>
         | 
| 995 | 
            -
            <p>
         | 
| 996 | 
            -
            Returns the Gdk object associated with the given X id for the default
         | 
| 997 | 
            -
            display.
         | 
| 998 | 
            -
            </p>
         | 
| 999 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1000 | 
            -
            <col align="left" valign="top">
         | 
| 1001 | 
            -
            <tbody>
         | 
| 1002 | 
            -
            <tr>
         | 
| 1003 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xid</code></em> :</span></p></td>
         | 
| 1004 | 
            -
            <td>an X id.
         | 
| 1005 | 
            -
            </td>
         | 
| 1006 | 
            -
            </tr>
         | 
| 1007 | 
            -
            <tr>
         | 
| 1008 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1009 | 
            -
            <td> the associated Gdk object, which may be a <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>,
         | 
| 1010 | 
            -
                a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no object is associated
         | 
| 1011 | 
            -
                with the X id.
         | 
| 1012 | 
            -
            </td>
         | 
| 1013 | 
            -
            </tr>
         | 
| 1014 | 
            -
            </tbody>
         | 
| 1015 | 
            -
            </table></div>
         | 
| 1016 | 
            -
            </div>
         | 
| 1017 | 
            -
            <hr>
         | 
| 1018 | 
            -
            <div class="refsect2" title="gdk_xid_table_lookup_for_display ()">
         | 
| 1019 | 
            -
            <a name="gdk-xid-table-lookup-for-display"></a><h3>gdk_xid_table_lookup_for_display ()</h3>
         | 
| 1020 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>            gdk_xid_table_lookup_for_display    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 1021 | 
            -
                                                                     <em class="parameter"><code><span class="type">XID</span> xid</code></em>);</pre>
         | 
| 1022 | 
            -
            <p>
         | 
| 1023 | 
            -
            Returns the GDK object associated with the given X id.
         | 
| 1024 | 
            -
            </p>
         | 
| 1025 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1026 | 
            -
            <col align="left" valign="top">
         | 
| 1027 | 
            -
            <tbody>
         | 
| 1028 | 
            -
            <tr>
         | 
| 1029 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1030 | 
            -
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>.
         | 
| 1031 | 
            -
            </td>
         | 
| 1032 | 
            -
            </tr>
         | 
| 1033 | 
            -
            <tr>
         | 
| 1034 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xid</code></em> :</span></p></td>
         | 
| 1035 | 
            -
            <td>an X id.
         | 
| 1036 | 
            -
            </td>
         | 
| 1037 | 
            -
            </tr>
         | 
| 1038 | 
            -
            <tr>
         | 
| 1039 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1040 | 
            -
            <td> the associated Gdk object, which may be a <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>,
         | 
| 1041 | 
            -
                a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no object is associated
         | 
| 1042 | 
            -
                with the X id.
         | 
| 1043 | 
            -
             | 
| 1044 | 
            -
            </td>
         | 
| 1045 | 
            -
            </tr>
         | 
| 1046 | 
            -
            </tbody>
         | 
| 1047 | 
            -
            </table></div>
         | 
| 1048 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1049 | 
            -
            </div>
         | 
| 1050 | 
            -
            <hr>
         | 
| 1051 | 
            -
            <div class="refsect2" title="gdk_window_lookup ()">
         | 
| 1052 | 
            -
            <a name="gdk-window-lookup"></a><h3>gdk_window_lookup ()</h3>
         | 
| 1053 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a>*          gdk_window_lookup                   (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);</pre>
         | 
| 1054 | 
            -
            <p>
         | 
| 1055 | 
            -
            Looks up the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> that wraps the given native window handle. 
         | 
| 1056 | 
            -
            </p>
         | 
| 1057 | 
            -
            <p>
         | 
| 1058 | 
            -
            For example in the X backend, a native window handle is an Xlib
         | 
| 1059 | 
            -
            <span class="type">XID</span>.
         | 
| 1060 | 
            -
            </p>
         | 
| 1061 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1062 | 
            -
            <col align="left" valign="top">
         | 
| 1063 | 
            -
            <tbody>
         | 
| 1064 | 
            -
            <tr>
         | 
| 1065 | 
            -
            <td><p><span class="term"><em class="parameter"><code>anid</code></em> :</span></p></td>
         | 
| 1066 | 
            -
            <td>a native window handle.
         | 
| 1067 | 
            -
            </td>
         | 
| 1068 | 
            -
            </tr>
         | 
| 1069 | 
            -
            <tr>
         | 
| 1070 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1071 | 
            -
            <td> the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> wrapper for the native window, 
         | 
| 1072 | 
            -
               or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there is none.
         | 
| 1073 | 
            -
            </td>
         | 
| 1074 | 
            -
            </tr>
         | 
| 1075 | 
            -
            </tbody>
         | 
| 1076 | 
            -
            </table></div>
         | 
| 1077 | 
            -
            </div>
         | 
| 1078 | 
            -
            <hr>
         | 
| 1079 | 
            -
            <div class="refsect2" title="gdk_window_lookup_for_display ()">
         | 
| 1080 | 
            -
            <a name="gdk-window-lookup-for-display"></a><h3>gdk_window_lookup_for_display ()</h3>
         | 
| 1081 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a>*          gdk_window_lookup_for_display       (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 1082 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);</pre>
         | 
| 1083 | 
            -
            <p>
         | 
| 1084 | 
            -
            Looks up the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> that wraps the given native window handle.
         | 
| 1085 | 
            -
            </p>
         | 
| 1086 | 
            -
            <p>
         | 
| 1087 | 
            -
            For example in the X backend, a native window handle is an Xlib
         | 
| 1088 | 
            -
            <span class="type">XID</span>.
         | 
| 1089 | 
            -
            </p>
         | 
| 1090 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1091 | 
            -
            <col align="left" valign="top">
         | 
| 1092 | 
            -
            <tbody>
         | 
| 1093 | 
            -
            <tr>
         | 
| 1094 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1095 | 
            -
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> corresponding to the window handle
         | 
| 1096 | 
            -
            </td>
         | 
| 1097 | 
            -
            </tr>
         | 
| 1098 | 
            -
            <tr>
         | 
| 1099 | 
            -
            <td><p><span class="term"><em class="parameter"><code>anid</code></em> :</span></p></td>
         | 
| 1100 | 
            -
            <td>a native window handle.
         | 
| 1101 | 
            -
            </td>
         | 
| 1102 | 
            -
            </tr>
         | 
| 1103 | 
            -
            <tr>
         | 
| 1104 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1105 | 
            -
            <td> the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> wrapper for the native window, 
         | 
| 1106 | 
            -
               or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there is none.
         | 
| 1107 | 
            -
             | 
| 1108 | 
            -
            </td>
         | 
| 1109 | 
            -
            </tr>
         | 
| 1110 | 
            -
            </tbody>
         | 
| 1111 | 
            -
            </table></div>
         | 
| 1112 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1113 | 
            -
            </div>
         | 
| 1114 | 
            -
            <hr>
         | 
| 1115 | 
            -
            <div class="refsect2" title="gdk_pixmap_lookup ()">
         | 
| 1116 | 
            -
            <a name="gdk-pixmap-lookup"></a><h3>gdk_pixmap_lookup ()</h3>
         | 
| 1117 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          gdk_pixmap_lookup                   (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);</pre>
         | 
| 1118 | 
            -
            <p>
         | 
| 1119 | 
            -
            Looks up the <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> that wraps the given native pixmap handle.
         | 
| 1120 | 
            -
            </p>
         | 
| 1121 | 
            -
            <p>
         | 
| 1122 | 
            -
            For example in the X backend, a native pixmap handle is an Xlib
         | 
| 1123 | 
            -
            <span class="type">XID</span>.
         | 
| 1124 | 
            -
            </p>
         | 
| 1125 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1126 | 
            -
            <col align="left" valign="top">
         | 
| 1127 | 
            -
            <tbody>
         | 
| 1128 | 
            -
            <tr>
         | 
| 1129 | 
            -
            <td><p><span class="term"><em class="parameter"><code>anid</code></em> :</span></p></td>
         | 
| 1130 | 
            -
            <td>a native pixmap handle.
         | 
| 1131 | 
            -
            </td>
         | 
| 1132 | 
            -
            </tr>
         | 
| 1133 | 
            -
            <tr>
         | 
| 1134 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1135 | 
            -
            <td> the <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> wrapper for the native pixmap,
         | 
| 1136 | 
            -
               or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there is none.
         | 
| 1137 | 
            -
            </td>
         | 
| 1138 | 
            -
            </tr>
         | 
| 1139 | 
            -
            </tbody>
         | 
| 1140 | 
            -
            </table></div>
         | 
| 1141 | 
            -
            </div>
         | 
| 1142 | 
            -
            <hr>
         | 
| 1143 | 
            -
            <div class="refsect2" title="gdk_pixmap_lookup_for_display ()">
         | 
| 1144 | 
            -
            <a name="gdk-pixmap-lookup-for-display"></a><h3>gdk_pixmap_lookup_for_display ()</h3>
         | 
| 1145 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="returnvalue">GdkPixmap</span></a>*          gdk_pixmap_lookup_for_display       (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 1146 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> anid</code></em>);</pre>
         | 
| 1147 | 
            -
            <p>
         | 
| 1148 | 
            -
            Looks up the <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> that wraps the given native pixmap handle.
         | 
| 1149 | 
            -
            </p>
         | 
| 1150 | 
            -
            <p>
         | 
| 1151 | 
            -
            For example in the X backend, a native pixmap handle is an Xlib
         | 
| 1152 | 
            -
            <span class="type">XID</span>.
         | 
| 1153 | 
            -
            </p>
         | 
| 1154 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1155 | 
            -
            <col align="left" valign="top">
         | 
| 1156 | 
            -
            <tbody>
         | 
| 1157 | 
            -
            <tr>
         | 
| 1158 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1159 | 
            -
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> associated with <em class="parameter"><code>anid</code></em>
         | 
| 1160 | 
            -
            </td>
         | 
| 1161 | 
            -
            </tr>
         | 
| 1162 | 
            -
            <tr>
         | 
| 1163 | 
            -
            <td><p><span class="term"><em class="parameter"><code>anid</code></em> :</span></p></td>
         | 
| 1164 | 
            -
            <td>a native pixmap handle.
         | 
| 1165 | 
            -
            </td>
         | 
| 1166 | 
            -
            </tr>
         | 
| 1167 | 
            -
            <tr>
         | 
| 1168 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1169 | 
            -
            <td> the <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> wrapper for the native pixmap,
         | 
| 1170 | 
            -
               or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there is none.
         | 
| 1171 | 
            -
             | 
| 1172 | 
            -
            </td>
         | 
| 1173 | 
            -
            </tr>
         | 
| 1174 | 
            -
            </tbody>
         | 
| 1175 | 
            -
            </table></div>
         | 
| 1176 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1177 | 
            -
            </div>
         | 
| 1178 | 
            -
            <hr>
         | 
| 1179 | 
            -
            <div class="refsect2" title="gdk_font_lookup()">
         | 
| 1180 | 
            -
            <a name="gdk-font-lookup"></a><h3>gdk_font_lookup()</h3>
         | 
| 1181 | 
            -
            <pre class="programlisting">#define gdk_font_lookup(xid)	   ((GdkFont*) gdk_xid_table_lookup (xid))
         | 
| 1182 | 
            -
            </pre>
         | 
| 1183 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1184 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 1185 | 
            -
            <p><code class="literal">gdk_font_lookup</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 1186 | 
            -
            </div>
         | 
| 1187 | 
            -
            <p>
         | 
| 1188 | 
            -
            Obtains the <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> for the given Xlib font ID, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> has
         | 
| 1189 | 
            -
            been created for <em class="parameter"><code>xid</code></em>.
         | 
| 1190 | 
            -
            </p>
         | 
| 1191 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1192 | 
            -
            <col align="left" valign="top">
         | 
| 1193 | 
            -
            <tbody><tr>
         | 
| 1194 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xid</code></em> :</span></p></td>
         | 
| 1195 | 
            -
            <td>an Xlib font ID
         | 
| 1196 | 
            -
            </td>
         | 
| 1197 | 
            -
            </tr></tbody>
         | 
| 1198 | 
            -
            </table></div>
         | 
| 1199 | 
            -
            </div>
         | 
| 1200 | 
            -
            <hr>
         | 
| 1201 | 
            -
            <div class="refsect2" title="gdk_font_lookup_for_display()">
         | 
| 1202 | 
            -
            <a name="gdk-font-lookup-for-display"></a><h3>gdk_font_lookup_for_display()</h3>
         | 
| 1203 | 
            -
            <pre class="programlisting">#define gdk_font_lookup_for_display(display, xid) ((GdkFont*) gdk_xid_table_lookup_for_display (display, ((xid)|XID_FONT_BIT)))
         | 
| 1204 | 
            -
            </pre>
         | 
| 1205 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1206 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 1207 | 
            -
            <p><code class="literal">gdk_font_lookup_for_display</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 1208 | 
            -
            </div>
         | 
| 1209 | 
            -
            <p>
         | 
| 1210 | 
            -
            Obtains the <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> for the given Xlib font ID on <em class="parameter"><code>display</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no
         | 
| 1211 | 
            -
            <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> has been created for <em class="parameter"><code>xid</code></em>.
         | 
| 1212 | 
            -
            </p>
         | 
| 1213 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1214 | 
            -
            <col align="left" valign="top">
         | 
| 1215 | 
            -
            <tbody>
         | 
| 1216 | 
            -
            <tr>
         | 
| 1217 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1218 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 1219 | 
            -
            </td>
         | 
| 1220 | 
            -
            </tr>
         | 
| 1221 | 
            -
            <tr>
         | 
| 1222 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xid</code></em> :</span></p></td>
         | 
| 1223 | 
            -
            <td>an Xlib font ID
         | 
| 1224 | 
            -
            Since: 2.2
         | 
| 1225 | 
            -
            </td>
         | 
| 1226 | 
            -
            </tr>
         | 
| 1227 | 
            -
            </tbody>
         | 
| 1228 | 
            -
            </table></div>
         | 
| 1229 | 
            -
            </div>
         | 
| 1230 | 
            -
            <hr>
         | 
| 1231 | 
            -
            <div class="refsect2" title="gdk_x11_lookup_xdisplay ()">
         | 
| 1232 | 
            -
            <a name="gdk-x11-lookup-xdisplay"></a><h3>gdk_x11_lookup_xdisplay ()</h3>
         | 
| 1233 | 
            -
            <pre class="programlisting"><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> *        gdk_x11_lookup_xdisplay             (<em class="parameter"><code><span class="type">Display</span> *xdisplay</code></em>);</pre>
         | 
| 1234 | 
            -
            <p>
         | 
| 1235 | 
            -
            Find the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> corresponding to <em class="parameter"><code>display</code></em>, if any exists.
         | 
| 1236 | 
            -
            </p>
         | 
| 1237 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1238 | 
            -
            <col align="left" valign="top">
         | 
| 1239 | 
            -
            <tbody>
         | 
| 1240 | 
            -
            <tr>
         | 
| 1241 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xdisplay</code></em> :</span></p></td>
         | 
| 1242 | 
            -
            <td>a pointer to an X Display
         | 
| 1243 | 
            -
            </td>
         | 
| 1244 | 
            -
            </tr>
         | 
| 1245 | 
            -
            <tr>
         | 
| 1246 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1247 | 
            -
            <td> the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>, if found, otherwise <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
         | 
| 1248 | 
            -
             | 
| 1249 | 
            -
            </td>
         | 
| 1250 | 
            -
            </tr>
         | 
| 1251 | 
            -
            </tbody>
         | 
| 1252 | 
            -
            </table></div>
         | 
| 1253 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1254 | 
            -
            </div>
         | 
| 1255 | 
            -
            <hr>
         | 
| 1256 | 
            -
            <div class="refsect2" title="gdk_x11_get_server_time ()">
         | 
| 1257 | 
            -
            <a name="gdk-x11-get-server-time"></a><h3>gdk_x11_get_server_time ()</h3>
         | 
| 1258 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>             gdk_x11_get_server_time             (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
         | 
| 1259 | 
            -
            <p>
         | 
| 1260 | 
            -
            Routine to get the current X server time stamp.
         | 
| 1261 | 
            -
            </p>
         | 
| 1262 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1263 | 
            -
            <col align="left" valign="top">
         | 
| 1264 | 
            -
            <tbody>
         | 
| 1265 | 
            -
            <tr>
         | 
| 1266 | 
            -
            <td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
         | 
| 1267 | 
            -
            <td>a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>, used for communication with the server.
         | 
| 1268 | 
            -
                     The window must have GDK_PROPERTY_CHANGE_MASK in its
         | 
| 1269 | 
            -
                     events mask or a hang will result.
         | 
| 1270 | 
            -
            </td>
         | 
| 1271 | 
            -
            </tr>
         | 
| 1272 | 
            -
            <tr>
         | 
| 1273 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1274 | 
            -
            <td> the time stamp.
         | 
| 1275 | 
            -
            </td>
         | 
| 1276 | 
            -
            </tr>
         | 
| 1277 | 
            -
            </tbody>
         | 
| 1278 | 
            -
            </table></div>
         | 
| 1279 | 
            -
            </div>
         | 
| 1280 | 
            -
            <hr>
         | 
| 1281 | 
            -
            <div class="refsect2" title="gdk_net_wm_supports ()">
         | 
| 1282 | 
            -
            <a name="gdk-net-wm-supports"></a><h3>gdk_net_wm_supports ()</h3>
         | 
| 1283 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gdk_net_wm_supports                 (<em class="parameter"><code><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> property</code></em>);</pre>
         | 
| 1284 | 
            -
            <p>
         | 
| 1285 | 
            -
            This function is specific to the X11 backend of GDK, and indicates
         | 
| 1286 | 
            -
            whether the window manager for the default screen supports a certain
         | 
| 1287 | 
            -
            hint from the Extended Window Manager Hints Specification. See
         | 
| 1288 | 
            -
            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-supports-net-wm-hint" title="gdk_x11_screen_supports_net_wm_hint ()"><code class="function">gdk_x11_screen_supports_net_wm_hint()</code></a> for complete details.
         | 
| 1289 | 
            -
            </p>
         | 
| 1290 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1291 | 
            -
            <col align="left" valign="top">
         | 
| 1292 | 
            -
            <tbody>
         | 
| 1293 | 
            -
            <tr>
         | 
| 1294 | 
            -
            <td><p><span class="term"><em class="parameter"><code>property</code></em> :</span></p></td>
         | 
| 1295 | 
            -
            <td>a property atom.
         | 
| 1296 | 
            -
            </td>
         | 
| 1297 | 
            -
            </tr>
         | 
| 1298 | 
            -
            <tr>
         | 
| 1299 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1300 | 
            -
            <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the window manager supports <em class="parameter"><code>property</code></em>
         | 
| 1301 | 
            -
            </td>
         | 
| 1302 | 
            -
            </tr>
         | 
| 1303 | 
            -
            </tbody>
         | 
| 1304 | 
            -
            </table></div>
         | 
| 1305 | 
            -
            </div>
         | 
| 1306 | 
            -
            <hr>
         | 
| 1307 | 
            -
            <div class="refsect2" title="gdk_x11_screen_supports_net_wm_hint ()">
         | 
| 1308 | 
            -
            <a name="gdk-x11-screen-supports-net-wm-hint"></a><h3>gdk_x11_screen_supports_net_wm_hint ()</h3>
         | 
| 1309 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gdk_x11_screen_supports_net_wm_hint (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 1310 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> property</code></em>);</pre>
         | 
| 1311 | 
            -
            <p>
         | 
| 1312 | 
            -
            This function is specific to the X11 backend of GDK, and indicates
         | 
| 1313 | 
            -
            whether the window manager supports a certain hint from the
         | 
| 1314 | 
            -
            Extended Window Manager Hints Specification. You can find this
         | 
| 1315 | 
            -
            specification on 
         | 
| 1316 | 
            -
            <a class="ulink" href="http://www.freedesktop.org" target="_top">http://www.freedesktop.org</a>.
         | 
| 1317 | 
            -
            </p>
         | 
| 1318 | 
            -
            <p>
         | 
| 1319 | 
            -
            When using this function, keep in mind that the window manager
         | 
| 1320 | 
            -
            can change over time; so you shouldn't use this function in
         | 
| 1321 | 
            -
            a way that impacts persistent application state. A common bug
         | 
| 1322 | 
            -
            is that your application can start up before the window manager
         | 
| 1323 | 
            -
            does when the user logs in, and before the window manager starts
         | 
| 1324 | 
            -
            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-supports-net-wm-hint" title="gdk_x11_screen_supports_net_wm_hint ()"><code class="function">gdk_x11_screen_supports_net_wm_hint()</code></a> will return <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> for every property.
         | 
| 1325 | 
            -
            You can monitor the window_manager_changed signal on <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> to detect
         | 
| 1326 | 
            -
            a window manager change.
         | 
| 1327 | 
            -
            </p>
         | 
| 1328 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1329 | 
            -
            <col align="left" valign="top">
         | 
| 1330 | 
            -
            <tbody>
         | 
| 1331 | 
            -
            <tr>
         | 
| 1332 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 1333 | 
            -
            <td>the relevant <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 1334 | 
            -
            </td>
         | 
| 1335 | 
            -
            </tr>
         | 
| 1336 | 
            -
            <tr>
         | 
| 1337 | 
            -
            <td><p><span class="term"><em class="parameter"><code>property</code></em> :</span></p></td>
         | 
| 1338 | 
            -
            <td>a property atom.
         | 
| 1339 | 
            -
            </td>
         | 
| 1340 | 
            -
            </tr>
         | 
| 1341 | 
            -
            <tr>
         | 
| 1342 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1343 | 
            -
            <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the window manager supports <em class="parameter"><code>property</code></em>
         | 
| 1344 | 
            -
             | 
| 1345 | 
            -
            </td>
         | 
| 1346 | 
            -
            </tr>
         | 
| 1347 | 
            -
            </tbody>
         | 
| 1348 | 
            -
            </table></div>
         | 
| 1349 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1350 | 
            -
            </div>
         | 
| 1351 | 
            -
            <hr>
         | 
| 1352 | 
            -
            <div class="refsect2" title="gdk_x11_screen_get_window_manager_name ()">
         | 
| 1353 | 
            -
            <a name="gdk-x11-screen-get-window-manager-name"></a><h3>gdk_x11_screen_get_window_manager_name ()</h3>
         | 
| 1354 | 
            -
            <pre class="programlisting">const <span class="returnvalue">char</span>*         gdk_x11_screen_get_window_manager_name
         | 
| 1355 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
         | 
| 1356 | 
            -
            <p>
         | 
| 1357 | 
            -
            Returns the name of the window manager for <em class="parameter"><code>screen</code></em>.
         | 
| 1358 | 
            -
            </p>
         | 
| 1359 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1360 | 
            -
            <col align="left" valign="top">
         | 
| 1361 | 
            -
            <tbody>
         | 
| 1362 | 
            -
            <tr>
         | 
| 1363 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 1364 | 
            -
            <td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> 
         | 
| 1365 | 
            -
            </td>
         | 
| 1366 | 
            -
            </tr>
         | 
| 1367 | 
            -
            <tr>
         | 
| 1368 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1369 | 
            -
            <td> the name of the window manager screen <em class="parameter"><code>screen</code></em>, or 
         | 
| 1370 | 
            -
            "unknown" if the window manager is unknown. The string is owned by GDK
         | 
| 1371 | 
            -
            and should not be freed.
         | 
| 1372 | 
            -
             | 
| 1373 | 
            -
            </td>
         | 
| 1374 | 
            -
            </tr>
         | 
| 1375 | 
            -
            </tbody>
         | 
| 1376 | 
            -
            </table></div>
         | 
| 1377 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1378 | 
            -
            </div>
         | 
| 1379 | 
            -
            <hr>
         | 
| 1380 | 
            -
            <div class="refsect2" title="gdk_x11_screen_get_monitor_output ()">
         | 
| 1381 | 
            -
            <a name="gdk-x11-screen-get-monitor-output"></a><h3>gdk_x11_screen_get_monitor_output ()</h3>
         | 
| 1382 | 
            -
            <pre class="programlisting"><span class="returnvalue">XID</span>                 gdk_x11_screen_get_monitor_output   (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 1383 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> monitor_num</code></em>);</pre>
         | 
| 1384 | 
            -
            <p>
         | 
| 1385 | 
            -
            Gets the XID of the specified output/monitor.
         | 
| 1386 | 
            -
            If the X server does not support version 1.2 of the RANDR
         | 
| 1387 | 
            -
            extension, 0 is returned.
         | 
| 1388 | 
            -
            </p>
         | 
| 1389 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1390 | 
            -
            <col align="left" valign="top">
         | 
| 1391 | 
            -
            <tbody>
         | 
| 1392 | 
            -
            <tr>
         | 
| 1393 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 1394 | 
            -
            <td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>
         | 
| 1395 | 
            -
            </td>
         | 
| 1396 | 
            -
            </tr>
         | 
| 1397 | 
            -
            <tr>
         | 
| 1398 | 
            -
            <td><p><span class="term"><em class="parameter"><code>monitor_num</code></em> :</span></p></td>
         | 
| 1399 | 
            -
            <td>number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
         | 
| 1400 | 
            -
            </td>
         | 
| 1401 | 
            -
            </tr>
         | 
| 1402 | 
            -
            <tr>
         | 
| 1403 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1404 | 
            -
            <td> the XID of the monitor
         | 
| 1405 | 
            -
             | 
| 1406 | 
            -
            </td>
         | 
| 1407 | 
            -
            </tr>
         | 
| 1408 | 
            -
            </tbody>
         | 
| 1409 | 
            -
            </table></div>
         | 
| 1410 | 
            -
            <p class="since">Since 2.14</p>
         | 
| 1411 | 
            -
            </div>
         | 
| 1412 | 
            -
            <hr>
         | 
| 1413 | 
            -
            <div class="refsect2" title="gdk_x11_screen_lookup_visual ()">
         | 
| 1414 | 
            -
            <a name="gdk-x11-screen-lookup-visual"></a><h3>gdk_x11_screen_lookup_visual ()</h3>
         | 
| 1415 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="returnvalue">GdkVisual</span></a>*          gdk_x11_screen_lookup_visual        (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 1416 | 
            -
                                                                     <em class="parameter"><code><span class="type">VisualID</span> xvisualid</code></em>);</pre>
         | 
| 1417 | 
            -
            <p>
         | 
| 1418 | 
            -
            Looks up the <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a> for a particular screen and X Visual ID.
         | 
| 1419 | 
            -
            </p>
         | 
| 1420 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1421 | 
            -
            <col align="left" valign="top">
         | 
| 1422 | 
            -
            <tbody>
         | 
| 1423 | 
            -
            <tr>
         | 
| 1424 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 1425 | 
            -
            <td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 1426 | 
            -
            </td>
         | 
| 1427 | 
            -
            </tr>
         | 
| 1428 | 
            -
            <tr>
         | 
| 1429 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xvisualid</code></em> :</span></p></td>
         | 
| 1430 | 
            -
            <td>an X Visual ID.
         | 
| 1431 | 
            -
            </td>
         | 
| 1432 | 
            -
            </tr>
         | 
| 1433 | 
            -
            <tr>
         | 
| 1434 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1435 | 
            -
            <td> the <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a> (owned by the screen object), or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
         | 
| 1436 | 
            -
              if the visual ID wasn't found.
         | 
| 1437 | 
            -
             | 
| 1438 | 
            -
            </td>
         | 
| 1439 | 
            -
            </tr>
         | 
| 1440 | 
            -
            </tbody>
         | 
| 1441 | 
            -
            </table></div>
         | 
| 1442 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1443 | 
            -
            </div>
         | 
| 1444 | 
            -
            <hr>
         | 
| 1445 | 
            -
            <div class="refsect2" title="gdk_x11_window_set_user_time ()">
         | 
| 1446 | 
            -
            <a name="gdk-x11-window-set-user-time"></a><h3>gdk_x11_window_set_user_time ()</h3>
         | 
| 1447 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_x11_window_set_user_time        (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
         | 
| 1448 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> timestamp</code></em>);</pre>
         | 
| 1449 | 
            -
            <p>
         | 
| 1450 | 
            -
            The application can use this call to update the _NET_WM_USER_TIME
         | 
| 1451 | 
            -
            property on a toplevel window.  This property stores an Xserver
         | 
| 1452 | 
            -
            time which represents the time of the last user input event
         | 
| 1453 | 
            -
            received for this window.  This property may be used by the window
         | 
| 1454 | 
            -
            manager to alter the focus, stacking, and/or placement behavior of
         | 
| 1455 | 
            -
            windows when they are mapped depending on whether the new window
         | 
| 1456 | 
            -
            was created by a user action or is a "pop-up" window activated by a
         | 
| 1457 | 
            -
            timer or some other event.
         | 
| 1458 | 
            -
            </p>
         | 
| 1459 | 
            -
            <p>
         | 
| 1460 | 
            -
            Note that this property is automatically updated by GDK, so this
         | 
| 1461 | 
            -
            function should only be used by applications which handle input
         | 
| 1462 | 
            -
            events bypassing GDK.
         | 
| 1463 | 
            -
            </p>
         | 
| 1464 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1465 | 
            -
            <col align="left" valign="top">
         | 
| 1466 | 
            -
            <tbody>
         | 
| 1467 | 
            -
            <tr>
         | 
| 1468 | 
            -
            <td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
         | 
| 1469 | 
            -
            <td>A toplevel <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>
         | 
| 1470 | 
            -
            </td>
         | 
| 1471 | 
            -
            </tr>
         | 
| 1472 | 
            -
            <tr>
         | 
| 1473 | 
            -
            <td><p><span class="term"><em class="parameter"><code>timestamp</code></em> :</span></p></td>
         | 
| 1474 | 
            -
            <td>An XServer timestamp to which the property should be set
         | 
| 1475 | 
            -
            </td>
         | 
| 1476 | 
            -
            </tr>
         | 
| 1477 | 
            -
            </tbody>
         | 
| 1478 | 
            -
            </table></div>
         | 
| 1479 | 
            -
            <p class="since">Since 2.6</p>
         | 
| 1480 | 
            -
            </div>
         | 
| 1481 | 
            -
            <hr>
         | 
| 1482 | 
            -
            <div class="refsect2" title="gdk_x11_window_move_to_current_desktop ()">
         | 
| 1483 | 
            -
            <a name="gdk-x11-window-move-to-current-desktop"></a><h3>gdk_x11_window_move_to_current_desktop ()</h3>
         | 
| 1484 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_x11_window_move_to_current_desktop
         | 
| 1485 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
         | 
| 1486 | 
            -
            <p>
         | 
| 1487 | 
            -
            Moves the window to the correct workspace when running under a 
         | 
| 1488 | 
            -
            window manager that supports multiple workspaces, as described
         | 
| 1489 | 
            -
            in the <a class="ulink" href="http://www.freedesktop.org/Standards/wm-spec" target="_top">Extended 
         | 
| 1490 | 
            -
            Window Manager Hints</a>.  Will not do anything if the
         | 
| 1491 | 
            -
            window is already on all workspaces.
         | 
| 1492 | 
            -
            </p>
         | 
| 1493 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1494 | 
            -
            <col align="left" valign="top">
         | 
| 1495 | 
            -
            <tbody><tr>
         | 
| 1496 | 
            -
            <td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
         | 
| 1497 | 
            -
            <td>a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>
         | 
| 1498 | 
            -
            </td>
         | 
| 1499 | 
            -
            </tr></tbody>
         | 
| 1500 | 
            -
            </table></div>
         | 
| 1501 | 
            -
            <p class="since">Since 2.8</p>
         | 
| 1502 | 
            -
            </div>
         | 
| 1503 | 
            -
            <hr>
         | 
| 1504 | 
            -
            <div class="refsect2" title="gdk_x11_display_get_user_time ()">
         | 
| 1505 | 
            -
            <a name="gdk-x11-display-get-user-time"></a><h3>gdk_x11_display_get_user_time ()</h3>
         | 
| 1506 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>             gdk_x11_display_get_user_time       (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
         | 
| 1507 | 
            -
            <p>
         | 
| 1508 | 
            -
            Returns the timestamp of the last user interaction on 
         | 
| 1509 | 
            -
            <em class="parameter"><code>display</code></em>. The timestamp is taken from events caused
         | 
| 1510 | 
            -
            by user interaction such as key presses or pointer 
         | 
| 1511 | 
            -
            movements. See <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-window-set-user-time" title="gdk_x11_window_set_user_time ()"><code class="function">gdk_x11_window_set_user_time()</code></a>.
         | 
| 1512 | 
            -
            </p>
         | 
| 1513 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1514 | 
            -
            <col align="left" valign="top">
         | 
| 1515 | 
            -
            <tbody>
         | 
| 1516 | 
            -
            <tr>
         | 
| 1517 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1518 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 1519 | 
            -
            </td>
         | 
| 1520 | 
            -
            </tr>
         | 
| 1521 | 
            -
            <tr>
         | 
| 1522 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1523 | 
            -
            <td> the timestamp of the last user interaction 
         | 
| 1524 | 
            -
             | 
| 1525 | 
            -
            </td>
         | 
| 1526 | 
            -
            </tr>
         | 
| 1527 | 
            -
            </tbody>
         | 
| 1528 | 
            -
            </table></div>
         | 
| 1529 | 
            -
            <p class="since">Since 2.8</p>
         | 
| 1530 | 
            -
            </div>
         | 
| 1531 | 
            -
            <hr>
         | 
| 1532 | 
            -
            <div class="refsect2" title="gdk_x11_colormap_foreign_new ()">
         | 
| 1533 | 
            -
            <a name="gdk-x11-colormap-foreign-new"></a><h3>gdk_x11_colormap_foreign_new ()</h3>
         | 
| 1534 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> *       gdk_x11_colormap_foreign_new        (<em class="parameter"><code><a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a> *visual</code></em>,
         | 
| 1535 | 
            -
                                                                     <em class="parameter"><code><span class="type">Colormap</span> xcolormap</code></em>);</pre>
         | 
| 1536 | 
            -
            <p>
         | 
| 1537 | 
            -
            If xcolormap refers to a colormap previously known to GTK+,
         | 
| 1538 | 
            -
            returns a new reference to the existing <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> object,
         | 
| 1539 | 
            -
            otherwise creates a new GdkColormap object and returns that
         | 
| 1540 | 
            -
            </p>
         | 
| 1541 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1542 | 
            -
            <col align="left" valign="top">
         | 
| 1543 | 
            -
            <tbody>
         | 
| 1544 | 
            -
            <tr>
         | 
| 1545 | 
            -
            <td><p><span class="term"><em class="parameter"><code>visual</code></em> :</span></p></td>
         | 
| 1546 | 
            -
            <td>a <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a>
         | 
| 1547 | 
            -
            </td>
         | 
| 1548 | 
            -
            </tr>
         | 
| 1549 | 
            -
            <tr>
         | 
| 1550 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xcolormap</code></em> :</span></p></td>
         | 
| 1551 | 
            -
            <td>The XID of a colormap with visual <em class="parameter"><code>visual</code></em>
         | 
| 1552 | 
            -
            </td>
         | 
| 1553 | 
            -
            </tr>
         | 
| 1554 | 
            -
            <tr>
         | 
| 1555 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1556 | 
            -
            <td> the <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> object for <em class="parameter"><code>xcolormap</code></em>.
         | 
| 1557 | 
            -
              Free with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. Note that for colormap created
         | 
| 1558 | 
            -
              with <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-foreign-new" title="gdk_x11_colormap_foreign_new ()"><code class="function">gdk_x11_colormap_foreign_new()</code></a>, unref'ing the last
         | 
| 1559 | 
            -
              reference to the object will only free the <span class="type">GdkColoramp</span>
         | 
| 1560 | 
            -
              object and not call <code class="function">XFreeColormap()</code>
         | 
| 1561 | 
            -
             | 
| 1562 | 
            -
            </td>
         | 
| 1563 | 
            -
            </tr>
         | 
| 1564 | 
            -
            </tbody>
         | 
| 1565 | 
            -
            </table></div>
         | 
| 1566 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1567 | 
            -
            </div>
         | 
| 1568 | 
            -
            <hr>
         | 
| 1569 | 
            -
            <div class="refsect2" title="gdk_x11_colormap_get_xcolormap ()">
         | 
| 1570 | 
            -
            <a name="gdk-x11-colormap-get-xcolormap"></a><h3>gdk_x11_colormap_get_xcolormap ()</h3>
         | 
| 1571 | 
            -
            <pre class="programlisting"><span class="returnvalue">Colormap</span>            gdk_x11_colormap_get_xcolormap      (<em class="parameter"><code><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>);</pre>
         | 
| 1572 | 
            -
            <p>
         | 
| 1573 | 
            -
            Returns the X colormap belonging to a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a>.
         | 
| 1574 | 
            -
            </p>
         | 
| 1575 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1576 | 
            -
            <col align="left" valign="top">
         | 
| 1577 | 
            -
            <tbody>
         | 
| 1578 | 
            -
            <tr>
         | 
| 1579 | 
            -
            <td><p><span class="term"><em class="parameter"><code>colormap</code></em> :</span></p></td>
         | 
| 1580 | 
            -
            <td>a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a>.
         | 
| 1581 | 
            -
            </td>
         | 
| 1582 | 
            -
            </tr>
         | 
| 1583 | 
            -
            <tr>
         | 
| 1584 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1585 | 
            -
            <td> an Xlib <span class="type">Colormap</span>.
         | 
| 1586 | 
            -
            </td>
         | 
| 1587 | 
            -
            </tr>
         | 
| 1588 | 
            -
            </tbody>
         | 
| 1589 | 
            -
            </table></div>
         | 
| 1590 | 
            -
            </div>
         | 
| 1591 | 
            -
            <hr>
         | 
| 1592 | 
            -
            <div class="refsect2" title="gdk_x11_colormap_get_xdisplay ()">
         | 
| 1593 | 
            -
            <a name="gdk-x11-colormap-get-xdisplay"></a><h3>gdk_x11_colormap_get_xdisplay ()</h3>
         | 
| 1594 | 
            -
            <pre class="programlisting"><span class="returnvalue">Display</span> *           gdk_x11_colormap_get_xdisplay       (<em class="parameter"><code><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>);</pre>
         | 
| 1595 | 
            -
            <p>
         | 
| 1596 | 
            -
            Returns the display of a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a>.
         | 
| 1597 | 
            -
            </p>
         | 
| 1598 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1599 | 
            -
            <col align="left" valign="top">
         | 
| 1600 | 
            -
            <tbody>
         | 
| 1601 | 
            -
            <tr>
         | 
| 1602 | 
            -
            <td><p><span class="term"><em class="parameter"><code>colormap</code></em> :</span></p></td>
         | 
| 1603 | 
            -
            <td>a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a>.
         | 
| 1604 | 
            -
            </td>
         | 
| 1605 | 
            -
            </tr>
         | 
| 1606 | 
            -
            <tr>
         | 
| 1607 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1608 | 
            -
            <td> an Xlib <span class="type">Display*</span>.
         | 
| 1609 | 
            -
            </td>
         | 
| 1610 | 
            -
            </tr>
         | 
| 1611 | 
            -
            </tbody>
         | 
| 1612 | 
            -
            </table></div>
         | 
| 1613 | 
            -
            </div>
         | 
| 1614 | 
            -
            <hr>
         | 
| 1615 | 
            -
            <div class="refsect2" title="gdk_x11_cursor_get_xcursor ()">
         | 
| 1616 | 
            -
            <a name="gdk-x11-cursor-get-xcursor"></a><h3>gdk_x11_cursor_get_xcursor ()</h3>
         | 
| 1617 | 
            -
            <pre class="programlisting"><span class="returnvalue">Cursor</span>              gdk_x11_cursor_get_xcursor          (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);</pre>
         | 
| 1618 | 
            -
            <p>
         | 
| 1619 | 
            -
            Returns the X cursor belonging to a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
         | 
| 1620 | 
            -
            </p>
         | 
| 1621 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1622 | 
            -
            <col align="left" valign="top">
         | 
| 1623 | 
            -
            <tbody>
         | 
| 1624 | 
            -
            <tr>
         | 
| 1625 | 
            -
            <td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
         | 
| 1626 | 
            -
            <td>a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
         | 
| 1627 | 
            -
            </td>
         | 
| 1628 | 
            -
            </tr>
         | 
| 1629 | 
            -
            <tr>
         | 
| 1630 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1631 | 
            -
            <td> an Xlib <span class="type">Cursor</span>.
         | 
| 1632 | 
            -
            </td>
         | 
| 1633 | 
            -
            </tr>
         | 
| 1634 | 
            -
            </tbody>
         | 
| 1635 | 
            -
            </table></div>
         | 
| 1636 | 
            -
            </div>
         | 
| 1637 | 
            -
            <hr>
         | 
| 1638 | 
            -
            <div class="refsect2" title="gdk_x11_cursor_get_xdisplay ()">
         | 
| 1639 | 
            -
            <a name="gdk-x11-cursor-get-xdisplay"></a><h3>gdk_x11_cursor_get_xdisplay ()</h3>
         | 
| 1640 | 
            -
            <pre class="programlisting"><span class="returnvalue">Display</span> *           gdk_x11_cursor_get_xdisplay         (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);</pre>
         | 
| 1641 | 
            -
            <p>
         | 
| 1642 | 
            -
            Returns the display of a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
         | 
| 1643 | 
            -
            </p>
         | 
| 1644 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1645 | 
            -
            <col align="left" valign="top">
         | 
| 1646 | 
            -
            <tbody>
         | 
| 1647 | 
            -
            <tr>
         | 
| 1648 | 
            -
            <td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
         | 
| 1649 | 
            -
            <td>a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
         | 
| 1650 | 
            -
            </td>
         | 
| 1651 | 
            -
            </tr>
         | 
| 1652 | 
            -
            <tr>
         | 
| 1653 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1654 | 
            -
            <td> an Xlib <span class="type">Display*</span>.
         | 
| 1655 | 
            -
            </td>
         | 
| 1656 | 
            -
            </tr>
         | 
| 1657 | 
            -
            </tbody>
         | 
| 1658 | 
            -
            </table></div>
         | 
| 1659 | 
            -
            </div>
         | 
| 1660 | 
            -
            <hr>
         | 
| 1661 | 
            -
            <div class="refsect2" title="gdk_x11_display_broadcast_startup_message ()">
         | 
| 1662 | 
            -
            <a name="gdk-x11-display-broadcast-startup-message"></a><h3>gdk_x11_display_broadcast_startup_message ()</h3>
         | 
| 1663 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_x11_display_broadcast_startup_message
         | 
| 1664 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 1665 | 
            -
                                                                     <em class="parameter"><code>const <span class="type">char</span> *message_type</code></em>,
         | 
| 1666 | 
            -
                                                                     <em class="parameter"><code>...</code></em>);</pre>
         | 
| 1667 | 
            -
            <p>
         | 
| 1668 | 
            -
            Sends a startup notification message of type <em class="parameter"><code>message_type</code></em> to
         | 
| 1669 | 
            -
            <em class="parameter"><code>display</code></em>. 
         | 
| 1670 | 
            -
            </p>
         | 
| 1671 | 
            -
            <p>
         | 
| 1672 | 
            -
            This is a convenience function for use by code that implements the
         | 
| 1673 | 
            -
            freedesktop startup notification specification. Applications should
         | 
| 1674 | 
            -
            not normally need to call it directly. See the <a class="ulink" href="http://standards.freedesktop.org/startup-notification-spec/startup-notification-latest.txt" target="_top">Startup
         | 
| 1675 | 
            -
            Notification Protocol specification</a> for
         | 
| 1676 | 
            -
            definitions of the message types and keys that can be used.
         | 
| 1677 | 
            -
            </p>
         | 
| 1678 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1679 | 
            -
            <col align="left" valign="top">
         | 
| 1680 | 
            -
            <tbody>
         | 
| 1681 | 
            -
            <tr>
         | 
| 1682 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1683 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 1684 | 
            -
            </td>
         | 
| 1685 | 
            -
            </tr>
         | 
| 1686 | 
            -
            <tr>
         | 
| 1687 | 
            -
            <td><p><span class="term"><em class="parameter"><code>message_type</code></em> :</span></p></td>
         | 
| 1688 | 
            -
            <td>startup notification message type ("new", "change",
         | 
| 1689 | 
            -
            or "remove")
         | 
| 1690 | 
            -
            </td>
         | 
| 1691 | 
            -
            </tr>
         | 
| 1692 | 
            -
            <tr>
         | 
| 1693 | 
            -
            <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
         | 
| 1694 | 
            -
            <td>a list of key/value pairs (as strings), terminated by a
         | 
| 1695 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> key. (A <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> value for a key will cause that key to be
         | 
| 1696 | 
            -
            skipped in the output.)
         | 
| 1697 | 
            -
            </td>
         | 
| 1698 | 
            -
            </tr>
         | 
| 1699 | 
            -
            </tbody>
         | 
| 1700 | 
            -
            </table></div>
         | 
| 1701 | 
            -
            <p class="since">Since 2.12</p>
         | 
| 1702 | 
            -
            </div>
         | 
| 1703 | 
            -
            <hr>
         | 
| 1704 | 
            -
            <div class="refsect2" title="gdk_x11_display_get_startup_notification_id ()">
         | 
| 1705 | 
            -
            <a name="gdk-x11-display-get-startup-notification-id"></a><h3>gdk_x11_display_get_startup_notification_id ()</h3>
         | 
| 1706 | 
            -
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       gdk_x11_display_get_startup_notification_id
         | 
| 1707 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
         | 
| 1708 | 
            -
            <p>
         | 
| 1709 | 
            -
            Gets the startup notification ID for a display.
         | 
| 1710 | 
            -
            </p>
         | 
| 1711 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1712 | 
            -
            <col align="left" valign="top">
         | 
| 1713 | 
            -
            <tbody>
         | 
| 1714 | 
            -
            <tr>
         | 
| 1715 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1716 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 1717 | 
            -
            </td>
         | 
| 1718 | 
            -
            </tr>
         | 
| 1719 | 
            -
            <tr>
         | 
| 1720 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1721 | 
            -
            <td> the startup notification ID for <em class="parameter"><code>display</code></em>
         | 
| 1722 | 
            -
             | 
| 1723 | 
            -
            </td>
         | 
| 1724 | 
            -
            </tr>
         | 
| 1725 | 
            -
            </tbody>
         | 
| 1726 | 
            -
            </table></div>
         | 
| 1727 | 
            -
            <p class="since">Since 2.12</p>
         | 
| 1728 | 
            -
            </div>
         | 
| 1729 | 
            -
            <hr>
         | 
| 1730 | 
            -
            <div class="refsect2" title="gdk_x11_display_get_xdisplay ()">
         | 
| 1731 | 
            -
            <a name="gdk-x11-display-get-xdisplay"></a><h3>gdk_x11_display_get_xdisplay ()</h3>
         | 
| 1732 | 
            -
            <pre class="programlisting"><span class="returnvalue">Display</span> *           gdk_x11_display_get_xdisplay        (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
         | 
| 1733 | 
            -
            <p>
         | 
| 1734 | 
            -
            Returns the X display of a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>.
         | 
| 1735 | 
            -
            </p>
         | 
| 1736 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1737 | 
            -
            <col align="left" valign="top">
         | 
| 1738 | 
            -
            <tbody>
         | 
| 1739 | 
            -
            <tr>
         | 
| 1740 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1741 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 1742 | 
            -
            </td>
         | 
| 1743 | 
            -
            </tr>
         | 
| 1744 | 
            -
            <tr>
         | 
| 1745 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1746 | 
            -
            <td>an X display.
         | 
| 1747 | 
            -
            </td>
         | 
| 1748 | 
            -
            </tr>
         | 
| 1749 | 
            -
            </tbody>
         | 
| 1750 | 
            -
            </table></div>
         | 
| 1751 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1752 | 
            -
            </div>
         | 
| 1753 | 
            -
            <hr>
         | 
| 1754 | 
            -
            <div class="refsect2" title="gdk_x11_display_grab ()">
         | 
| 1755 | 
            -
            <a name="gdk-x11-display-grab"></a><h3>gdk_x11_display_grab ()</h3>
         | 
| 1756 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_x11_display_grab                (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
         | 
| 1757 | 
            -
            <p>
         | 
| 1758 | 
            -
            Call <code class="function">XGrabServer()</code> on <em class="parameter"><code>display</code></em>. 
         | 
| 1759 | 
            -
            To ungrab the display again, use <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-ungrab" title="gdk_x11_display_ungrab ()"><code class="function">gdk_x11_display_ungrab()</code></a>. 
         | 
| 1760 | 
            -
            </p>
         | 
| 1761 | 
            -
            <p>
         | 
| 1762 | 
            -
            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-grab" title="gdk_x11_display_grab ()"><code class="function">gdk_x11_display_grab()</code></a>/<a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-ungrab" title="gdk_x11_display_ungrab ()"><code class="function">gdk_x11_display_ungrab()</code></a> calls can be nested.
         | 
| 1763 | 
            -
            </p>
         | 
| 1764 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1765 | 
            -
            <col align="left" valign="top">
         | 
| 1766 | 
            -
            <tbody><tr>
         | 
| 1767 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1768 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> 
         | 
| 1769 | 
            -
            </td>
         | 
| 1770 | 
            -
            </tr></tbody>
         | 
| 1771 | 
            -
            </table></div>
         | 
| 1772 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1773 | 
            -
            </div>
         | 
| 1774 | 
            -
            <hr>
         | 
| 1775 | 
            -
            <div class="refsect2" title="gdk_x11_display_ungrab ()">
         | 
| 1776 | 
            -
            <a name="gdk-x11-display-ungrab"></a><h3>gdk_x11_display_ungrab ()</h3>
         | 
| 1777 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_x11_display_ungrab              (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
         | 
| 1778 | 
            -
            <p>
         | 
| 1779 | 
            -
            Ungrab <em class="parameter"><code>display</code></em> after it has been grabbed with 
         | 
| 1780 | 
            -
            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-grab" title="gdk_x11_display_grab ()"><code class="function">gdk_x11_display_grab()</code></a>.
         | 
| 1781 | 
            -
            </p>
         | 
| 1782 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1783 | 
            -
            <col align="left" valign="top">
         | 
| 1784 | 
            -
            <tbody><tr>
         | 
| 1785 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1786 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 1787 | 
            -
            </td>
         | 
| 1788 | 
            -
            </tr></tbody>
         | 
| 1789 | 
            -
            </table></div>
         | 
| 1790 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 1791 | 
            -
            </div>
         | 
| 1792 | 
            -
            <hr>
         | 
| 1793 | 
            -
            <div class="refsect2" title="gdk_x11_display_set_cursor_theme ()">
         | 
| 1794 | 
            -
            <a name="gdk-x11-display-set-cursor-theme"></a><h3>gdk_x11_display_set_cursor_theme ()</h3>
         | 
| 1795 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_x11_display_set_cursor_theme    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 1796 | 
            -
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *theme</code></em>,
         | 
| 1797 | 
            -
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);</pre>
         | 
| 1798 | 
            -
            <p>
         | 
| 1799 | 
            -
            Sets the cursor theme from which the images for cursor
         | 
| 1800 | 
            -
            should be taken. 
         | 
| 1801 | 
            -
            </p>
         | 
| 1802 | 
            -
            <p>
         | 
| 1803 | 
            -
            If the windowing system supports it, existing cursors created 
         | 
| 1804 | 
            -
            with <a class="link" href="gdk-Cursors.html#gdk-cursor-new" title="gdk_cursor_new ()"><code class="function">gdk_cursor_new()</code></a>, <a class="link" href="gdk-Cursors.html#gdk-cursor-new-for-display" title="gdk_cursor_new_for_display ()"><code class="function">gdk_cursor_new_for_display()</code></a> and 
         | 
| 1805 | 
            -
            <code class="function">gdk_cursor_new_for_name()</code> are updated to reflect the theme 
         | 
| 1806 | 
            -
            change. Custom cursors constructed with <a class="link" href="gdk-Cursors.html#gdk-cursor-new-from-pixmap" title="gdk_cursor_new_from_pixmap ()"><code class="function">gdk_cursor_new_from_pixmap()</code></a> 
         | 
| 1807 | 
            -
            or <a class="link" href="gdk-Cursors.html#gdk-cursor-new-from-pixbuf" title="gdk_cursor_new_from_pixbuf ()"><code class="function">gdk_cursor_new_from_pixbuf()</code></a> will have to be handled
         | 
| 1808 | 
            -
            by the application (GTK+ applications can learn about 
         | 
| 1809 | 
            -
            cursor theme changes by listening for change notification
         | 
| 1810 | 
            -
            for the corresponding <span class="type">GtkSetting</span>).
         | 
| 1811 | 
            -
            </p>
         | 
| 1812 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1813 | 
            -
            <col align="left" valign="top">
         | 
| 1814 | 
            -
            <tbody>
         | 
| 1815 | 
            -
            <tr>
         | 
| 1816 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1817 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 1818 | 
            -
            </td>
         | 
| 1819 | 
            -
            </tr>
         | 
| 1820 | 
            -
            <tr>
         | 
| 1821 | 
            -
            <td><p><span class="term"><em class="parameter"><code>theme</code></em> :</span></p></td>
         | 
| 1822 | 
            -
            <td>the name of the cursor theme to use, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to unset
         | 
| 1823 | 
            -
                    a previously set value 
         | 
| 1824 | 
            -
            </td>
         | 
| 1825 | 
            -
            </tr>
         | 
| 1826 | 
            -
            <tr>
         | 
| 1827 | 
            -
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 1828 | 
            -
            <td>the cursor size to use, or 0 to keep the previous size
         | 
| 1829 | 
            -
            </td>
         | 
| 1830 | 
            -
            </tr>
         | 
| 1831 | 
            -
            </tbody>
         | 
| 1832 | 
            -
            </table></div>
         | 
| 1833 | 
            -
            <p class="since">Since 2.8</p>
         | 
| 1834 | 
            -
            </div>
         | 
| 1835 | 
            -
            <hr>
         | 
| 1836 | 
            -
            <div class="refsect2" title="gdk_x11_register_standard_event_type ()">
         | 
| 1837 | 
            -
            <a name="gdk-x11-register-standard-event-type"></a><h3>gdk_x11_register_standard_event_type ()</h3>
         | 
| 1838 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_x11_register_standard_event_type
         | 
| 1839 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 1840 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> event_base</code></em>,
         | 
| 1841 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_events</code></em>);</pre>
         | 
| 1842 | 
            -
            <p>
         | 
| 1843 | 
            -
            Registers interest in receiving extension events with type codes
         | 
| 1844 | 
            -
            between <em class="parameter"><code>event_base</code></em> and <code class="literal">event_base + n_events - 1</code>.
         | 
| 1845 | 
            -
            The registered events must have the window field in the same place
         | 
| 1846 | 
            -
            as core X events (this is not the case for e.g. XKB extension events).
         | 
| 1847 | 
            -
            </p>
         | 
| 1848 | 
            -
            <p>
         | 
| 1849 | 
            -
            If an event type is registered, events of this type will go through
         | 
| 1850 | 
            -
            global and window-specific filters (see <a class="link" href="gdk-Windows.html#gdk-window-add-filter" title="gdk_window_add_filter ()"><code class="function">gdk_window_add_filter()</code></a>). 
         | 
| 1851 | 
            -
            Unregistered events will only go through global filters.
         | 
| 1852 | 
            -
            GDK may register the events of some X extensions on its own.
         | 
| 1853 | 
            -
            </p>
         | 
| 1854 | 
            -
            <p>
         | 
| 1855 | 
            -
            This function should only be needed in unusual circumstances, e.g.
         | 
| 1856 | 
            -
            when filtering XInput extension events on the root window.
         | 
| 1857 | 
            -
            </p>
         | 
| 1858 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1859 | 
            -
            <col align="left" valign="top">
         | 
| 1860 | 
            -
            <tbody>
         | 
| 1861 | 
            -
            <tr>
         | 
| 1862 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1863 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 1864 | 
            -
            </td>
         | 
| 1865 | 
            -
            </tr>
         | 
| 1866 | 
            -
            <tr>
         | 
| 1867 | 
            -
            <td><p><span class="term"><em class="parameter"><code>event_base</code></em> :</span></p></td>
         | 
| 1868 | 
            -
            <td>first event type code to register
         | 
| 1869 | 
            -
            </td>
         | 
| 1870 | 
            -
            </tr>
         | 
| 1871 | 
            -
            <tr>
         | 
| 1872 | 
            -
            <td><p><span class="term"><em class="parameter"><code>n_events</code></em> :</span></p></td>
         | 
| 1873 | 
            -
            <td>number of event type codes to register
         | 
| 1874 | 
            -
            </td>
         | 
| 1875 | 
            -
            </tr>
         | 
| 1876 | 
            -
            </tbody>
         | 
| 1877 | 
            -
            </table></div>
         | 
| 1878 | 
            -
            <p class="since">Since 2.4</p>
         | 
| 1879 | 
            -
            </div>
         | 
| 1880 | 
            -
            <hr>
         | 
| 1881 | 
            -
            <div class="refsect2" title="gdk_x11_drawable_get_xdisplay ()">
         | 
| 1882 | 
            -
            <a name="gdk-x11-drawable-get-xdisplay"></a><h3>gdk_x11_drawable_get_xdisplay ()</h3>
         | 
| 1883 | 
            -
            <pre class="programlisting"><span class="returnvalue">Display</span> *           gdk_x11_drawable_get_xdisplay       (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
         | 
| 1884 | 
            -
            <p>
         | 
| 1885 | 
            -
            Returns the display of a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.
         | 
| 1886 | 
            -
            </p>
         | 
| 1887 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1888 | 
            -
            <col align="left" valign="top">
         | 
| 1889 | 
            -
            <tbody>
         | 
| 1890 | 
            -
            <tr>
         | 
| 1891 | 
            -
            <td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
         | 
| 1892 | 
            -
            <td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.
         | 
| 1893 | 
            -
            </td>
         | 
| 1894 | 
            -
            </tr>
         | 
| 1895 | 
            -
            <tr>
         | 
| 1896 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1897 | 
            -
            <td> an Xlib <span class="type">Display*</span>.
         | 
| 1898 | 
            -
            </td>
         | 
| 1899 | 
            -
            </tr>
         | 
| 1900 | 
            -
            </tbody>
         | 
| 1901 | 
            -
            </table></div>
         | 
| 1902 | 
            -
            </div>
         | 
| 1903 | 
            -
            <hr>
         | 
| 1904 | 
            -
            <div class="refsect2" title="gdk_x11_drawable_get_xid ()">
         | 
| 1905 | 
            -
            <a name="gdk-x11-drawable-get-xid"></a><h3>gdk_x11_drawable_get_xid ()</h3>
         | 
| 1906 | 
            -
            <pre class="programlisting"><span class="returnvalue">XID</span>                 gdk_x11_drawable_get_xid            (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
         | 
| 1907 | 
            -
            <p>
         | 
| 1908 | 
            -
            Returns the X resource (window or pixmap) belonging to a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.
         | 
| 1909 | 
            -
            </p>
         | 
| 1910 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1911 | 
            -
            <col align="left" valign="top">
         | 
| 1912 | 
            -
            <tbody>
         | 
| 1913 | 
            -
            <tr>
         | 
| 1914 | 
            -
            <td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
         | 
| 1915 | 
            -
            <td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.
         | 
| 1916 | 
            -
            </td>
         | 
| 1917 | 
            -
            </tr>
         | 
| 1918 | 
            -
            <tr>
         | 
| 1919 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1920 | 
            -
            <td> the ID of <em class="parameter"><code>drawable</code></em>'s X resource.
         | 
| 1921 | 
            -
            </td>
         | 
| 1922 | 
            -
            </tr>
         | 
| 1923 | 
            -
            </tbody>
         | 
| 1924 | 
            -
            </table></div>
         | 
| 1925 | 
            -
            </div>
         | 
| 1926 | 
            -
            <hr>
         | 
| 1927 | 
            -
            <div class="refsect2" title="gdk_x11_font_get_name ()">
         | 
| 1928 | 
            -
            <a name="gdk-x11-font-get-name"></a><h3>gdk_x11_font_get_name ()</h3>
         | 
| 1929 | 
            -
            <pre class="programlisting">const <span class="returnvalue">char</span> *        gdk_x11_font_get_name               (<em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);</pre>
         | 
| 1930 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1931 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 1932 | 
            -
            <p><code class="literal">gdk_x11_font_get_name</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 1933 | 
            -
            </div>
         | 
| 1934 | 
            -
            <p>
         | 
| 1935 | 
            -
            Return the X Logical Font Description (for font->type == GDK_FONT_FONT)
         | 
| 1936 | 
            -
            or comma separated list of XLFDs (for font->type == GDK_FONT_FONTSET)
         | 
| 1937 | 
            -
            that was used to load the font. If the same font was loaded
         | 
| 1938 | 
            -
            via multiple names, which name is returned is undefined.
         | 
| 1939 | 
            -
            </p>
         | 
| 1940 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1941 | 
            -
            <col align="left" valign="top">
         | 
| 1942 | 
            -
            <tbody>
         | 
| 1943 | 
            -
            <tr>
         | 
| 1944 | 
            -
            <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
         | 
| 1945 | 
            -
            <td>a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.
         | 
| 1946 | 
            -
            </td>
         | 
| 1947 | 
            -
            </tr>
         | 
| 1948 | 
            -
            <tr>
         | 
| 1949 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1950 | 
            -
            <td> the name of the font. This string is owned
         | 
| 1951 | 
            -
              by GDK and must not be modified or freed.
         | 
| 1952 | 
            -
            </td>
         | 
| 1953 | 
            -
            </tr>
         | 
| 1954 | 
            -
            </tbody>
         | 
| 1955 | 
            -
            </table></div>
         | 
| 1956 | 
            -
            </div>
         | 
| 1957 | 
            -
            <hr>
         | 
| 1958 | 
            -
            <div class="refsect2" title="gdk_x11_font_get_xdisplay ()">
         | 
| 1959 | 
            -
            <a name="gdk-x11-font-get-xdisplay"></a><h3>gdk_x11_font_get_xdisplay ()</h3>
         | 
| 1960 | 
            -
            <pre class="programlisting"><span class="returnvalue">Display</span> *           gdk_x11_font_get_xdisplay           (<em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);</pre>
         | 
| 1961 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1962 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 1963 | 
            -
            <p><code class="literal">gdk_x11_font_get_xdisplay</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 1964 | 
            -
            </div>
         | 
| 1965 | 
            -
            <p>
         | 
| 1966 | 
            -
            Returns the display of a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.
         | 
| 1967 | 
            -
            </p>
         | 
| 1968 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1969 | 
            -
            <col align="left" valign="top">
         | 
| 1970 | 
            -
            <tbody>
         | 
| 1971 | 
            -
            <tr>
         | 
| 1972 | 
            -
            <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
         | 
| 1973 | 
            -
            <td>a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.
         | 
| 1974 | 
            -
            </td>
         | 
| 1975 | 
            -
            </tr>
         | 
| 1976 | 
            -
            <tr>
         | 
| 1977 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1978 | 
            -
            <td>  an Xlib <span class="type">Display*</span>.
         | 
| 1979 | 
            -
            </td>
         | 
| 1980 | 
            -
            </tr>
         | 
| 1981 | 
            -
            </tbody>
         | 
| 1982 | 
            -
            </table></div>
         | 
| 1983 | 
            -
            </div>
         | 
| 1984 | 
            -
            <hr>
         | 
| 1985 | 
            -
            <div class="refsect2" title="gdk_x11_font_get_xfont ()">
         | 
| 1986 | 
            -
            <a name="gdk-x11-font-get-xfont"></a><h3>gdk_x11_font_get_xfont ()</h3>
         | 
| 1987 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>            gdk_x11_font_get_xfont              (<em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);</pre>
         | 
| 1988 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1989 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 1990 | 
            -
            <p><code class="literal">gdk_x11_font_get_xfont</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 1991 | 
            -
            </div>
         | 
| 1992 | 
            -
            <p>
         | 
| 1993 | 
            -
            Returns the X font belonging to a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.
         | 
| 1994 | 
            -
            </p>
         | 
| 1995 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 1996 | 
            -
            <col align="left" valign="top">
         | 
| 1997 | 
            -
            <tbody>
         | 
| 1998 | 
            -
            <tr>
         | 
| 1999 | 
            -
            <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
         | 
| 2000 | 
            -
            <td>a <a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.
         | 
| 2001 | 
            -
            </td>
         | 
| 2002 | 
            -
            </tr>
         | 
| 2003 | 
            -
            <tr>
         | 
| 2004 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2005 | 
            -
            <td> an Xlib <span class="type">XFontStruct*</span> or an <span class="type">XFontSet</span>.
         | 
| 2006 | 
            -
            </td>
         | 
| 2007 | 
            -
            </tr>
         | 
| 2008 | 
            -
            </tbody>
         | 
| 2009 | 
            -
            </table></div>
         | 
| 2010 | 
            -
            </div>
         | 
| 2011 | 
            -
            <hr>
         | 
| 2012 | 
            -
            <div class="refsect2" title="gdk_x11_gc_get_xdisplay ()">
         | 
| 2013 | 
            -
            <a name="gdk-x11-gc-get-xdisplay"></a><h3>gdk_x11_gc_get_xdisplay ()</h3>
         | 
| 2014 | 
            -
            <pre class="programlisting"><span class="returnvalue">Display</span> *           gdk_x11_gc_get_xdisplay             (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
         | 
| 2015 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 2016 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 2017 | 
            -
            <p><code class="literal">gdk_x11_gc_get_xdisplay</code> has been deprecated since version 2.22 and should not be used in newly-written code. <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> has been replaced by <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>.</p>
         | 
| 2018 | 
            -
            </div>
         | 
| 2019 | 
            -
            <p>
         | 
| 2020 | 
            -
            Returns the display of a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 2021 | 
            -
            </p>
         | 
| 2022 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2023 | 
            -
            <col align="left" valign="top">
         | 
| 2024 | 
            -
            <tbody>
         | 
| 2025 | 
            -
            <tr>
         | 
| 2026 | 
            -
            <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
         | 
| 2027 | 
            -
            <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 2028 | 
            -
            </td>
         | 
| 2029 | 
            -
            </tr>
         | 
| 2030 | 
            -
            <tr>
         | 
| 2031 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2032 | 
            -
            <td> an Xlib <span class="type">Display*</span>.
         | 
| 2033 | 
            -
             | 
| 2034 | 
            -
            </td>
         | 
| 2035 | 
            -
            </tr>
         | 
| 2036 | 
            -
            </tbody>
         | 
| 2037 | 
            -
            </table></div>
         | 
| 2038 | 
            -
            </div>
         | 
| 2039 | 
            -
            <hr>
         | 
| 2040 | 
            -
            <div class="refsect2" title="gdk_x11_gc_get_xgc ()">
         | 
| 2041 | 
            -
            <a name="gdk-x11-gc-get-xgc"></a><h3>gdk_x11_gc_get_xgc ()</h3>
         | 
| 2042 | 
            -
            <pre class="programlisting"><span class="returnvalue">GC</span>                  gdk_x11_gc_get_xgc                  (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
         | 
| 2043 | 
            -
            <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 2044 | 
            -
            <h3 class="title">Warning</h3>
         | 
| 2045 | 
            -
            <p><code class="literal">gdk_x11_gc_get_xgc</code> has been deprecated since version 2.22 and should not be used in newly-written code. <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> has been replaced by <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a>.</p>
         | 
| 2046 | 
            -
            </div>
         | 
| 2047 | 
            -
            <p>
         | 
| 2048 | 
            -
            Returns the X GC of a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 2049 | 
            -
            </p>
         | 
| 2050 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2051 | 
            -
            <col align="left" valign="top">
         | 
| 2052 | 
            -
            <tbody>
         | 
| 2053 | 
            -
            <tr>
         | 
| 2054 | 
            -
            <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
         | 
| 2055 | 
            -
            <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
         | 
| 2056 | 
            -
            </td>
         | 
| 2057 | 
            -
            </tr>
         | 
| 2058 | 
            -
            <tr>
         | 
| 2059 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2060 | 
            -
            <td> an Xlib <span class="type">GC</span>.
         | 
| 2061 | 
            -
             | 
| 2062 | 
            -
            </td>
         | 
| 2063 | 
            -
            </tr>
         | 
| 2064 | 
            -
            </tbody>
         | 
| 2065 | 
            -
            </table></div>
         | 
| 2066 | 
            -
            </div>
         | 
| 2067 | 
            -
            <hr>
         | 
| 2068 | 
            -
            <div class="refsect2" title="gdk_x11_get_default_root_xwindow ()">
         | 
| 2069 | 
            -
            <a name="gdk-x11-get-default-root-xwindow"></a><h3>gdk_x11_get_default_root_xwindow ()</h3>
         | 
| 2070 | 
            -
            <pre class="programlisting"><span class="returnvalue">Window</span>              gdk_x11_get_default_root_xwindow    (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 2071 | 
            -
            <p>
         | 
| 2072 | 
            -
            Gets the root window of the default screen 
         | 
| 2073 | 
            -
            (see <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-screen" title="gdk_x11_get_default_screen ()"><code class="function">gdk_x11_get_default_screen()</code></a>).
         | 
| 2074 | 
            -
            </p>
         | 
| 2075 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2076 | 
            -
            <col align="left" valign="top">
         | 
| 2077 | 
            -
            <tbody><tr>
         | 
| 2078 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2079 | 
            -
            <td> an Xlib <span class="type">Window</span>.
         | 
| 2080 | 
            -
            </td>
         | 
| 2081 | 
            -
            </tr></tbody>
         | 
| 2082 | 
            -
            </table></div>
         | 
| 2083 | 
            -
            </div>
         | 
| 2084 | 
            -
            <hr>
         | 
| 2085 | 
            -
            <div class="refsect2" title="gdk_x11_get_default_screen ()">
         | 
| 2086 | 
            -
            <a name="gdk-x11-get-default-screen"></a><h3>gdk_x11_get_default_screen ()</h3>
         | 
| 2087 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                gdk_x11_get_default_screen          (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 2088 | 
            -
            <p>
         | 
| 2089 | 
            -
            Gets the default GTK+ screen number.
         | 
| 2090 | 
            -
            </p>
         | 
| 2091 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2092 | 
            -
            <col align="left" valign="top">
         | 
| 2093 | 
            -
            <tbody><tr>
         | 
| 2094 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2095 | 
            -
            <td> returns the screen number specified by
         | 
| 2096 | 
            -
              the --display command line option or the DISPLAY environment
         | 
| 2097 | 
            -
              variable when <a class="link" href="gdk-General.html#gdk-init" title="gdk_init ()"><code class="function">gdk_init()</code></a> calls <code class="function">XOpenDisplay()</code>.
         | 
| 2098 | 
            -
            </td>
         | 
| 2099 | 
            -
            </tr></tbody>
         | 
| 2100 | 
            -
            </table></div>
         | 
| 2101 | 
            -
            </div>
         | 
| 2102 | 
            -
            <hr>
         | 
| 2103 | 
            -
            <div class="refsect2" title="gdk_x11_get_default_xdisplay ()">
         | 
| 2104 | 
            -
            <a name="gdk-x11-get-default-xdisplay"></a><h3>gdk_x11_get_default_xdisplay ()</h3>
         | 
| 2105 | 
            -
            <pre class="programlisting"><span class="returnvalue">Display</span> *           gdk_x11_get_default_xdisplay        (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 2106 | 
            -
            <p>
         | 
| 2107 | 
            -
            Gets the default GTK+ display.
         | 
| 2108 | 
            -
            </p>
         | 
| 2109 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2110 | 
            -
            <col align="left" valign="top">
         | 
| 2111 | 
            -
            <tbody><tr>
         | 
| 2112 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2113 | 
            -
            <td> the Xlib <span class="type">Display*</span> for the display
         | 
| 2114 | 
            -
            specified in the <code class="option">--display</code> command line option 
         | 
| 2115 | 
            -
            or the <code class="envar">DISPLAY</code> environment variable.
         | 
| 2116 | 
            -
            </td>
         | 
| 2117 | 
            -
            </tr></tbody>
         | 
| 2118 | 
            -
            </table></div>
         | 
| 2119 | 
            -
            </div>
         | 
| 2120 | 
            -
            <hr>
         | 
| 2121 | 
            -
            <div class="refsect2" title="gdk_x11_grab_server ()">
         | 
| 2122 | 
            -
            <a name="gdk-x11-grab-server"></a><h3>gdk_x11_grab_server ()</h3>
         | 
| 2123 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_x11_grab_server                 (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 2124 | 
            -
            <p>
         | 
| 2125 | 
            -
            Call <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-grab" title="gdk_x11_display_grab ()"><code class="function">gdk_x11_display_grab()</code></a> on the default display. 
         | 
| 2126 | 
            -
            To ungrab the server again, use <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-ungrab-server" title="gdk_x11_ungrab_server ()"><code class="function">gdk_x11_ungrab_server()</code></a>. 
         | 
| 2127 | 
            -
            </p>
         | 
| 2128 | 
            -
            <p>
         | 
| 2129 | 
            -
            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-grab-server" title="gdk_x11_grab_server ()"><code class="function">gdk_x11_grab_server()</code></a>/<a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-ungrab-server" title="gdk_x11_ungrab_server ()"><code class="function">gdk_x11_ungrab_server()</code></a> calls can be nested.
         | 
| 2130 | 
            -
            </p>
         | 
| 2131 | 
            -
            </div>
         | 
| 2132 | 
            -
            <hr>
         | 
| 2133 | 
            -
            <div class="refsect2" title="gdk_x11_image_get_xdisplay ()">
         | 
| 2134 | 
            -
            <a name="gdk-x11-image-get-xdisplay"></a><h3>gdk_x11_image_get_xdisplay ()</h3>
         | 
| 2135 | 
            -
            <pre class="programlisting"><span class="returnvalue">Display</span> *           gdk_x11_image_get_xdisplay          (<em class="parameter"><code><a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> *image</code></em>);</pre>
         | 
| 2136 | 
            -
            <p>
         | 
| 2137 | 
            -
            Returns the display of a <a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a>.
         | 
| 2138 | 
            -
            </p>
         | 
| 2139 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2140 | 
            -
            <col align="left" valign="top">
         | 
| 2141 | 
            -
            <tbody>
         | 
| 2142 | 
            -
            <tr>
         | 
| 2143 | 
            -
            <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
         | 
| 2144 | 
            -
            <td>a <a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a>.
         | 
| 2145 | 
            -
            </td>
         | 
| 2146 | 
            -
            </tr>
         | 
| 2147 | 
            -
            <tr>
         | 
| 2148 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2149 | 
            -
            <td> an Xlib <span class="type">Display*</span>.
         | 
| 2150 | 
            -
            </td>
         | 
| 2151 | 
            -
            </tr>
         | 
| 2152 | 
            -
            </tbody>
         | 
| 2153 | 
            -
            </table></div>
         | 
| 2154 | 
            -
            </div>
         | 
| 2155 | 
            -
            <hr>
         | 
| 2156 | 
            -
            <div class="refsect2" title="gdk_x11_image_get_ximage ()">
         | 
| 2157 | 
            -
            <a name="gdk-x11-image-get-ximage"></a><h3>gdk_x11_image_get_ximage ()</h3>
         | 
| 2158 | 
            -
            <pre class="programlisting"><span class="returnvalue">XImage</span> *            gdk_x11_image_get_ximage            (<em class="parameter"><code><a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> *image</code></em>);</pre>
         | 
| 2159 | 
            -
            <p>
         | 
| 2160 | 
            -
            Returns the X image belonging to a <a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a>.
         | 
| 2161 | 
            -
            </p>
         | 
| 2162 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2163 | 
            -
            <col align="left" valign="top">
         | 
| 2164 | 
            -
            <tbody>
         | 
| 2165 | 
            -
            <tr>
         | 
| 2166 | 
            -
            <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
         | 
| 2167 | 
            -
            <td>a <a class="link" href="gdk-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a>.
         | 
| 2168 | 
            -
            </td>
         | 
| 2169 | 
            -
            </tr>
         | 
| 2170 | 
            -
            <tr>
         | 
| 2171 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2172 | 
            -
            <td> an <span class="type">XImage*</span>.
         | 
| 2173 | 
            -
            </td>
         | 
| 2174 | 
            -
            </tr>
         | 
| 2175 | 
            -
            </tbody>
         | 
| 2176 | 
            -
            </table></div>
         | 
| 2177 | 
            -
            </div>
         | 
| 2178 | 
            -
            <hr>
         | 
| 2179 | 
            -
            <div class="refsect2" title="gdk_x11_screen_get_screen_number ()">
         | 
| 2180 | 
            -
            <a name="gdk-x11-screen-get-screen-number"></a><h3>gdk_x11_screen_get_screen_number ()</h3>
         | 
| 2181 | 
            -
            <pre class="programlisting"><span class="returnvalue">int</span>                 gdk_x11_screen_get_screen_number    (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
         | 
| 2182 | 
            -
            <p>
         | 
| 2183 | 
            -
            Returns the index of a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 2184 | 
            -
            </p>
         | 
| 2185 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2186 | 
            -
            <col align="left" valign="top">
         | 
| 2187 | 
            -
            <tbody>
         | 
| 2188 | 
            -
            <tr>
         | 
| 2189 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 2190 | 
            -
            <td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 2191 | 
            -
            </td>
         | 
| 2192 | 
            -
            </tr>
         | 
| 2193 | 
            -
            <tr>
         | 
| 2194 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2195 | 
            -
            <td>the position of <em class="parameter"><code>screen</code></em> among the screens of
         | 
| 2196 | 
            -
              its display.
         | 
| 2197 | 
            -
            </td>
         | 
| 2198 | 
            -
            </tr>
         | 
| 2199 | 
            -
            </tbody>
         | 
| 2200 | 
            -
            </table></div>
         | 
| 2201 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 2202 | 
            -
            </div>
         | 
| 2203 | 
            -
            <hr>
         | 
| 2204 | 
            -
            <div class="refsect2" title="gdk_x11_screen_get_xscreen ()">
         | 
| 2205 | 
            -
            <a name="gdk-x11-screen-get-xscreen"></a><h3>gdk_x11_screen_get_xscreen ()</h3>
         | 
| 2206 | 
            -
            <pre class="programlisting"><span class="returnvalue">Screen</span> *            gdk_x11_screen_get_xscreen          (<em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
         | 
| 2207 | 
            -
            <p>
         | 
| 2208 | 
            -
            Returns the screen of a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 2209 | 
            -
            </p>
         | 
| 2210 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2211 | 
            -
            <col align="left" valign="top">
         | 
| 2212 | 
            -
            <tbody>
         | 
| 2213 | 
            -
            <tr>
         | 
| 2214 | 
            -
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 2215 | 
            -
            <td>a <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a>.
         | 
| 2216 | 
            -
            </td>
         | 
| 2217 | 
            -
            </tr>
         | 
| 2218 | 
            -
            <tr>
         | 
| 2219 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2220 | 
            -
            <td> an Xlib <span class="type">Screen*</span>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 2221 | 
            -
            </td>
         | 
| 2222 | 
            -
            </tr>
         | 
| 2223 | 
            -
            </tbody>
         | 
| 2224 | 
            -
            </table></div>
         | 
| 2225 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 2226 | 
            -
            </div>
         | 
| 2227 | 
            -
            <hr>
         | 
| 2228 | 
            -
            <div class="refsect2" title="gdk_x11_ungrab_server ()">
         | 
| 2229 | 
            -
            <a name="gdk-x11-ungrab-server"></a><h3>gdk_x11_ungrab_server ()</h3>
         | 
| 2230 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_x11_ungrab_server               (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 2231 | 
            -
            <p>
         | 
| 2232 | 
            -
            Ungrab the default display after it has been grabbed with 
         | 
| 2233 | 
            -
            <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-grab-server" title="gdk_x11_grab_server ()"><code class="function">gdk_x11_grab_server()</code></a>.
         | 
| 2234 | 
            -
            </p>
         | 
| 2235 | 
            -
            </div>
         | 
| 2236 | 
            -
            <hr>
         | 
| 2237 | 
            -
            <div class="refsect2" title="gdk_x11_visual_get_xvisual ()">
         | 
| 2238 | 
            -
            <a name="gdk-x11-visual-get-xvisual"></a><h3>gdk_x11_visual_get_xvisual ()</h3>
         | 
| 2239 | 
            -
            <pre class="programlisting"><span class="returnvalue">Visual</span> *            gdk_x11_visual_get_xvisual          (<em class="parameter"><code><a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a> *visual</code></em>);</pre>
         | 
| 2240 | 
            -
            <p>
         | 
| 2241 | 
            -
            Returns the X visual belonging to a <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a>.
         | 
| 2242 | 
            -
            </p>
         | 
| 2243 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2244 | 
            -
            <col align="left" valign="top">
         | 
| 2245 | 
            -
            <tbody>
         | 
| 2246 | 
            -
            <tr>
         | 
| 2247 | 
            -
            <td><p><span class="term"><em class="parameter"><code>visual</code></em> :</span></p></td>
         | 
| 2248 | 
            -
            <td>a <a class="link" href="gdk-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a>.
         | 
| 2249 | 
            -
            </td>
         | 
| 2250 | 
            -
            </tr>
         | 
| 2251 | 
            -
            <tr>
         | 
| 2252 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2253 | 
            -
            <td> an Xlib <span class="type">Visual*</span>.
         | 
| 2254 | 
            -
            </td>
         | 
| 2255 | 
            -
            </tr>
         | 
| 2256 | 
            -
            </tbody>
         | 
| 2257 | 
            -
            </table></div>
         | 
| 2258 | 
            -
            </div>
         | 
| 2259 | 
            -
            <hr>
         | 
| 2260 | 
            -
            <div class="refsect2" title="gdk_x11_atom_to_xatom ()">
         | 
| 2261 | 
            -
            <a name="gdk-x11-atom-to-xatom"></a><h3>gdk_x11_atom_to_xatom ()</h3>
         | 
| 2262 | 
            -
            <pre class="programlisting"><span class="returnvalue">Atom</span>                gdk_x11_atom_to_xatom               (<em class="parameter"><code><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> atom</code></em>);</pre>
         | 
| 2263 | 
            -
            <p>
         | 
| 2264 | 
            -
            Converts from a <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> to the X atom for the default GDK display
         | 
| 2265 | 
            -
            with the same string value.
         | 
| 2266 | 
            -
            </p>
         | 
| 2267 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2268 | 
            -
            <col align="left" valign="top">
         | 
| 2269 | 
            -
            <tbody>
         | 
| 2270 | 
            -
            <tr>
         | 
| 2271 | 
            -
            <td><p><span class="term"><em class="parameter"><code>atom</code></em> :</span></p></td>
         | 
| 2272 | 
            -
            <td>A <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> 
         | 
| 2273 | 
            -
            </td>
         | 
| 2274 | 
            -
            </tr>
         | 
| 2275 | 
            -
            <tr>
         | 
| 2276 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2277 | 
            -
            <td> the X atom corresponding to <em class="parameter"><code>atom</code></em>.
         | 
| 2278 | 
            -
            </td>
         | 
| 2279 | 
            -
            </tr>
         | 
| 2280 | 
            -
            </tbody>
         | 
| 2281 | 
            -
            </table></div>
         | 
| 2282 | 
            -
            </div>
         | 
| 2283 | 
            -
            <hr>
         | 
| 2284 | 
            -
            <div class="refsect2" title="gdk_x11_atom_to_xatom_for_display ()">
         | 
| 2285 | 
            -
            <a name="gdk-x11-atom-to-xatom-for-display"></a><h3>gdk_x11_atom_to_xatom_for_display ()</h3>
         | 
| 2286 | 
            -
            <pre class="programlisting"><span class="returnvalue">Atom</span>                gdk_x11_atom_to_xatom_for_display   (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 2287 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> atom</code></em>);</pre>
         | 
| 2288 | 
            -
            <p>
         | 
| 2289 | 
            -
            Converts from a <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> to the X atom for a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 2290 | 
            -
            with the same string value. The special value <a class="link" href="gdk-Properties-and-Atoms.html#GDK-NONE:CAPS" title="GDK_NONE"><code class="literal">GDK_NONE</code></a>
         | 
| 2291 | 
            -
            is converted to <code class="literal">None</code>.
         | 
| 2292 | 
            -
            </p>
         | 
| 2293 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2294 | 
            -
            <col align="left" valign="top">
         | 
| 2295 | 
            -
            <tbody>
         | 
| 2296 | 
            -
            <tr>
         | 
| 2297 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 2298 | 
            -
            <td>A <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 2299 | 
            -
            </td>
         | 
| 2300 | 
            -
            </tr>
         | 
| 2301 | 
            -
            <tr>
         | 
| 2302 | 
            -
            <td><p><span class="term"><em class="parameter"><code>atom</code></em> :</span></p></td>
         | 
| 2303 | 
            -
            <td>A <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>, or <a class="link" href="gdk-Properties-and-Atoms.html#GDK-NONE:CAPS" title="GDK_NONE"><code class="literal">GDK_NONE</code></a>
         | 
| 2304 | 
            -
            </td>
         | 
| 2305 | 
            -
            </tr>
         | 
| 2306 | 
            -
            <tr>
         | 
| 2307 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2308 | 
            -
            <td> the X atom corresponding to <em class="parameter"><code>atom</code></em>, or <code class="literal">None</code>
         | 
| 2309 | 
            -
             | 
| 2310 | 
            -
            </td>
         | 
| 2311 | 
            -
            </tr>
         | 
| 2312 | 
            -
            </tbody>
         | 
| 2313 | 
            -
            </table></div>
         | 
| 2314 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 2315 | 
            -
            </div>
         | 
| 2316 | 
            -
            <hr>
         | 
| 2317 | 
            -
            <div class="refsect2" title="gdk_x11_xatom_to_atom ()">
         | 
| 2318 | 
            -
            <a name="gdk-x11-xatom-to-atom"></a><h3>gdk_x11_xatom_to_atom ()</h3>
         | 
| 2319 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a>             gdk_x11_xatom_to_atom               (<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);</pre>
         | 
| 2320 | 
            -
            <p>
         | 
| 2321 | 
            -
            Convert from an X atom for the default display to the corresponding
         | 
| 2322 | 
            -
            <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>.
         | 
| 2323 | 
            -
            </p>
         | 
| 2324 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2325 | 
            -
            <col align="left" valign="top">
         | 
| 2326 | 
            -
            <tbody>
         | 
| 2327 | 
            -
            <tr>
         | 
| 2328 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xatom</code></em> :</span></p></td>
         | 
| 2329 | 
            -
            <td>an X atom for the default GDK display
         | 
| 2330 | 
            -
            </td>
         | 
| 2331 | 
            -
            </tr>
         | 
| 2332 | 
            -
            <tr>
         | 
| 2333 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2334 | 
            -
            <td> the corresponding G<span class="type">dkAtom</span>.
         | 
| 2335 | 
            -
            </td>
         | 
| 2336 | 
            -
            </tr>
         | 
| 2337 | 
            -
            </tbody>
         | 
| 2338 | 
            -
            </table></div>
         | 
| 2339 | 
            -
            </div>
         | 
| 2340 | 
            -
            <hr>
         | 
| 2341 | 
            -
            <div class="refsect2" title="gdk_x11_xatom_to_atom_for_display ()">
         | 
| 2342 | 
            -
            <a name="gdk-x11-xatom-to-atom-for-display"></a><h3>gdk_x11_xatom_to_atom_for_display ()</h3>
         | 
| 2343 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a>             gdk_x11_xatom_to_atom_for_display   (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 2344 | 
            -
                                                                     <em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);</pre>
         | 
| 2345 | 
            -
            <p>
         | 
| 2346 | 
            -
            Convert from an X atom for a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> to the corresponding
         | 
| 2347 | 
            -
            <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>.
         | 
| 2348 | 
            -
            </p>
         | 
| 2349 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2350 | 
            -
            <col align="left" valign="top">
         | 
| 2351 | 
            -
            <tbody>
         | 
| 2352 | 
            -
            <tr>
         | 
| 2353 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 2354 | 
            -
            <td>A <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 2355 | 
            -
            </td>
         | 
| 2356 | 
            -
            </tr>
         | 
| 2357 | 
            -
            <tr>
         | 
| 2358 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xatom</code></em> :</span></p></td>
         | 
| 2359 | 
            -
            <td>an X atom 
         | 
| 2360 | 
            -
            </td>
         | 
| 2361 | 
            -
            </tr>
         | 
| 2362 | 
            -
            <tr>
         | 
| 2363 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2364 | 
            -
            <td> the corresponding <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>.
         | 
| 2365 | 
            -
             | 
| 2366 | 
            -
            </td>
         | 
| 2367 | 
            -
            </tr>
         | 
| 2368 | 
            -
            </tbody>
         | 
| 2369 | 
            -
            </table></div>
         | 
| 2370 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 2371 | 
            -
            </div>
         | 
| 2372 | 
            -
            <hr>
         | 
| 2373 | 
            -
            <div class="refsect2" title="gdk_x11_get_xatom_by_name ()">
         | 
| 2374 | 
            -
            <a name="gdk-x11-get-xatom-by-name"></a><h3>gdk_x11_get_xatom_by_name ()</h3>
         | 
| 2375 | 
            -
            <pre class="programlisting"><span class="returnvalue">Atom</span>                gdk_x11_get_xatom_by_name           (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *atom_name</code></em>);</pre>
         | 
| 2376 | 
            -
            <p>
         | 
| 2377 | 
            -
            Returns the X atom for GDK's default display corresponding to <em class="parameter"><code>atom_name</code></em>.
         | 
| 2378 | 
            -
            This function caches the result, so if called repeatedly it is much
         | 
| 2379 | 
            -
            faster than <code class="function">XInternAtom()</code>, which is a round trip to the server each time.
         | 
| 2380 | 
            -
            </p>
         | 
| 2381 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2382 | 
            -
            <col align="left" valign="top">
         | 
| 2383 | 
            -
            <tbody>
         | 
| 2384 | 
            -
            <tr>
         | 
| 2385 | 
            -
            <td><p><span class="term"><em class="parameter"><code>atom_name</code></em> :</span></p></td>
         | 
| 2386 | 
            -
            <td>a string
         | 
| 2387 | 
            -
            </td>
         | 
| 2388 | 
            -
            </tr>
         | 
| 2389 | 
            -
            <tr>
         | 
| 2390 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2391 | 
            -
            <td> a X atom for GDK's default display.
         | 
| 2392 | 
            -
            </td>
         | 
| 2393 | 
            -
            </tr>
         | 
| 2394 | 
            -
            </tbody>
         | 
| 2395 | 
            -
            </table></div>
         | 
| 2396 | 
            -
            </div>
         | 
| 2397 | 
            -
            <hr>
         | 
| 2398 | 
            -
            <div class="refsect2" title="gdk_x11_get_xatom_by_name_for_display ()">
         | 
| 2399 | 
            -
            <a name="gdk-x11-get-xatom-by-name-for-display"></a><h3>gdk_x11_get_xatom_by_name_for_display ()</h3>
         | 
| 2400 | 
            -
            <pre class="programlisting"><span class="returnvalue">Atom</span>                gdk_x11_get_xatom_by_name_for_display
         | 
| 2401 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 2402 | 
            -
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *atom_name</code></em>);</pre>
         | 
| 2403 | 
            -
            <p>
         | 
| 2404 | 
            -
            Returns the X atom for a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> corresponding to <em class="parameter"><code>atom_name</code></em>.
         | 
| 2405 | 
            -
            This function caches the result, so if called repeatedly it is much
         | 
| 2406 | 
            -
            faster than <code class="function">XInternAtom()</code>, which is a round trip to the server each time.
         | 
| 2407 | 
            -
            </p>
         | 
| 2408 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2409 | 
            -
            <col align="left" valign="top">
         | 
| 2410 | 
            -
            <tbody>
         | 
| 2411 | 
            -
            <tr>
         | 
| 2412 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 2413 | 
            -
            <td>a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 2414 | 
            -
            </td>
         | 
| 2415 | 
            -
            </tr>
         | 
| 2416 | 
            -
            <tr>
         | 
| 2417 | 
            -
            <td><p><span class="term"><em class="parameter"><code>atom_name</code></em> :</span></p></td>
         | 
| 2418 | 
            -
            <td>a string
         | 
| 2419 | 
            -
            </td>
         | 
| 2420 | 
            -
            </tr>
         | 
| 2421 | 
            -
            <tr>
         | 
| 2422 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2423 | 
            -
            <td> a X atom for a <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a>
         | 
| 2424 | 
            -
             | 
| 2425 | 
            -
            </td>
         | 
| 2426 | 
            -
            </tr>
         | 
| 2427 | 
            -
            </tbody>
         | 
| 2428 | 
            -
            </table></div>
         | 
| 2429 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 2430 | 
            -
            </div>
         | 
| 2431 | 
            -
            <hr>
         | 
| 2432 | 
            -
            <div class="refsect2" title="gdk_x11_get_xatom_name ()">
         | 
| 2433 | 
            -
            <a name="gdk-x11-get-xatom-name"></a><h3>gdk_x11_get_xatom_name ()</h3>
         | 
| 2434 | 
            -
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       gdk_x11_get_xatom_name              (<em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);</pre>
         | 
| 2435 | 
            -
            <p>
         | 
| 2436 | 
            -
            Returns the name of an X atom for GDK's default display. This
         | 
| 2437 | 
            -
            function is meant mainly for debugging, so for convenience, unlike
         | 
| 2438 | 
            -
            <code class="function"><code class="function">XAtomName()</code></code> and <a class="link" href="gdk-Properties-and-Atoms.html#gdk-atom-name" title="gdk_atom_name ()"><code class="function">gdk_atom_name()</code></a>, the result 
         | 
| 2439 | 
            -
            doesn't need to be freed. Also, this function will never return <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, 
         | 
| 2440 | 
            -
            even if <em class="parameter"><code>xatom</code></em> is invalid.
         | 
| 2441 | 
            -
            </p>
         | 
| 2442 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2443 | 
            -
            <col align="left" valign="top">
         | 
| 2444 | 
            -
            <tbody>
         | 
| 2445 | 
            -
            <tr>
         | 
| 2446 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xatom</code></em> :</span></p></td>
         | 
| 2447 | 
            -
            <td>an X atom for GDK's default display
         | 
| 2448 | 
            -
            </td>
         | 
| 2449 | 
            -
            </tr>
         | 
| 2450 | 
            -
            <tr>
         | 
| 2451 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2452 | 
            -
            <td> name of the X atom; this string is owned by GTK+,
         | 
| 2453 | 
            -
              so it shouldn't be modifed or freed. 
         | 
| 2454 | 
            -
            </td>
         | 
| 2455 | 
            -
            </tr>
         | 
| 2456 | 
            -
            </tbody>
         | 
| 2457 | 
            -
            </table></div>
         | 
| 2458 | 
            -
            </div>
         | 
| 2459 | 
            -
            <hr>
         | 
| 2460 | 
            -
            <div class="refsect2" title="gdk_x11_get_xatom_name_for_display ()">
         | 
| 2461 | 
            -
            <a name="gdk-x11-get-xatom-name-for-display"></a><h3>gdk_x11_get_xatom_name_for_display ()</h3>
         | 
| 2462 | 
            -
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *       gdk_x11_get_xatom_name_for_display  (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 2463 | 
            -
                                                                     <em class="parameter"><code><span class="type">Atom</span> xatom</code></em>);</pre>
         | 
| 2464 | 
            -
            <p>
         | 
| 2465 | 
            -
            Returns the name of an X atom for its display. This
         | 
| 2466 | 
            -
            function is meant mainly for debugging, so for convenience, unlike
         | 
| 2467 | 
            -
            <code class="function">XAtomName()</code> and <a class="link" href="gdk-Properties-and-Atoms.html#gdk-atom-name" title="gdk_atom_name ()"><code class="function">gdk_atom_name()</code></a>, the result doesn't need to
         | 
| 2468 | 
            -
            be freed.
         | 
| 2469 | 
            -
            </p>
         | 
| 2470 | 
            -
            <div class="variablelist"><table border="0">
         | 
| 2471 | 
            -
            <col align="left" valign="top">
         | 
| 2472 | 
            -
            <tbody>
         | 
| 2473 | 
            -
            <tr>
         | 
| 2474 | 
            -
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 2475 | 
            -
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where <em class="parameter"><code>xatom</code></em> is defined
         | 
| 2476 | 
            -
            </td>
         | 
| 2477 | 
            -
            </tr>
         | 
| 2478 | 
            -
            <tr>
         | 
| 2479 | 
            -
            <td><p><span class="term"><em class="parameter"><code>xatom</code></em> :</span></p></td>
         | 
| 2480 | 
            -
            <td>an X atom 
         | 
| 2481 | 
            -
            </td>
         | 
| 2482 | 
            -
            </tr>
         | 
| 2483 | 
            -
            <tr>
         | 
| 2484 | 
            -
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2485 | 
            -
            <td> name of the X atom; this string is owned by GDK,
         | 
| 2486 | 
            -
              so it shouldn't be modifed or freed. 
         | 
| 2487 | 
            -
             | 
| 2488 | 
            -
            </td>
         | 
| 2489 | 
            -
            </tr>
         | 
| 2490 | 
            -
            </tbody>
         | 
| 2491 | 
            -
            </table></div>
         | 
| 2492 | 
            -
            <p class="since">Since 2.2</p>
         | 
| 2493 | 
            -
            </div>
         | 
| 2494 | 
            -
            </div>
         | 
| 2495 | 
            -
            </div>
         | 
| 2496 | 
            -
            <div class="footer">
         | 
| 2497 | 
            -
            <hr>
         | 
| 2498 | 
            -
                      Generated by GTK-Doc V1.15</div>
         | 
| 2499 | 
            -
            </body>
         | 
| 2500 | 
            -
            </html>
         |