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
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>Event Structures</title>
         | 
| 6 6 | 
             
            <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
         | 
| 7 | 
            -
            <link rel="home" href="index.html" title="GDK Reference Manual">
         | 
| 7 | 
            +
            <link rel="home" href="index.html" title="GDK 2 Reference Manual">
         | 
| 8 8 | 
             
            <link rel="up" href="reference.html" title="API Reference">
         | 
| 9 9 | 
             
            <link rel="prev" href="gdk-Events.html" title="Events">
         | 
| 10 10 | 
             
            <link rel="next" href="gdk-Keyboard-Handling.html" title="Key Values">
         | 
| 11 | 
            -
            <meta name="generator" content="GTK-Doc V1. | 
| 11 | 
            +
            <meta name="generator" content="GTK-Doc V1.17 (XML mode)">
         | 
| 12 12 | 
             
            <link rel="stylesheet" href="style.css" type="text/css">
         | 
| 13 13 | 
             
            </head>
         | 
| 14 14 | 
             
            <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
         | 
| @@ -17,7 +17,7 @@ | |
| 17 17 | 
             
            <td><a accesskey="p" href="gdk-Events.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="reference.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 19 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>
         | 
| 20 | 
            +
            <th width="100%" align="center">GDK 2 Reference Manual</th>
         | 
| 21 21 | 
             
            <td><a accesskey="n" href="gdk-Keyboard-Handling.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 22 22 | 
             
            </tr>
         | 
| 23 23 | 
             
            <tr><td colspan="5" class="shortcuts">
         | 
| @@ -26,7 +26,7 @@ | |
| 26 26 | 
             
                              <a href="#gdk-Event-Structures.description" class="shortcut">Description</a>
         | 
| 27 27 | 
             
            </td></tr>
         | 
| 28 28 | 
             
            </table>
         | 
| 29 | 
            -
            <div class="refentry" | 
| 29 | 
            +
            <div class="refentry">
         | 
| 30 30 | 
             
            <a name="gdk-Event-Structures"></a><div class="titlepage"></div>
         | 
| 31 31 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 32 32 | 
             
            <td valign="top">
         | 
| @@ -35,34 +35,34 @@ | |
| 35 35 | 
             
            </td>
         | 
| 36 36 | 
             
            <td valign="top" align="right"></td>
         | 
| 37 37 | 
             
            </tr></table></div>
         | 
| 38 | 
            -
            <div class="refsynopsisdiv" | 
| 38 | 
            +
            <div class="refsynopsisdiv">
         | 
| 39 39 | 
             
            <a name="gdk-Event-Structures.synopsis"></a><h2>Synopsis</h2>
         | 
| 40 40 | 
             
            <pre class="synopsis">
         | 
| 41 41 | 
             
            #include <gdk/gdk.h>
         | 
| 42 42 |  | 
| 43 43 | 
             
            union               <a class="link" href="gdk-Event-Structures.html#GdkEvent" title="union GdkEvent">GdkEvent</a>;
         | 
| 44 44 |  | 
| 45 | 
            -
             | 
| 46 | 
            -
             | 
| 47 | 
            -
             | 
| 48 | 
            -
             | 
| 49 | 
            -
             | 
| 50 | 
            -
             | 
| 51 | 
            -
             | 
| 52 | 
            -
             | 
| 53 | 
            -
             | 
| 54 | 
            -
             | 
| 55 | 
            -
             | 
| 56 | 
            -
             | 
| 45 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventAny" title="struct GdkEventAny">GdkEventAny</a>;
         | 
| 46 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventKey" title="struct GdkEventKey">GdkEventKey</a>;
         | 
| 47 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventButton" title="struct GdkEventButton">GdkEventButton</a>;
         | 
| 48 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventScroll" title="struct GdkEventScroll">GdkEventScroll</a>;
         | 
| 49 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventMotion" title="struct GdkEventMotion">GdkEventMotion</a>;
         | 
| 50 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventExpose" title="struct GdkEventExpose">GdkEventExpose</a>;
         | 
| 51 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventVisibility" title="struct GdkEventVisibility">GdkEventVisibility</a>;
         | 
| 52 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventCrossing" title="struct GdkEventCrossing">GdkEventCrossing</a>;
         | 
| 53 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventFocus" title="struct GdkEventFocus">GdkEventFocus</a>;
         | 
| 54 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventConfigure" title="struct GdkEventConfigure">GdkEventConfigure</a>;
         | 
| 55 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventProperty" title="struct GdkEventProperty">GdkEventProperty</a>;
         | 
| 56 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventSelection" title="struct GdkEventSelection">GdkEventSelection</a>;
         | 
| 57 57 | 
             
            typedef             <a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow">GdkNativeWindow</a>;
         | 
| 58 | 
            -
             | 
| 59 | 
            -
             | 
| 60 | 
            -
             | 
| 61 | 
            -
             | 
| 62 | 
            -
             | 
| 63 | 
            -
             | 
| 64 | 
            -
             | 
| 65 | 
            -
             | 
| 58 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventDND" title="struct GdkEventDND">GdkEventDND</a>;
         | 
| 59 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventProximity" title="struct GdkEventProximity">GdkEventProximity</a>;
         | 
| 60 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventClient" title="struct GdkEventClient">GdkEventClient</a>;
         | 
| 61 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventNoExpose" title="struct GdkEventNoExpose">GdkEventNoExpose</a>;
         | 
| 62 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventWindowState" title="struct GdkEventWindowState">GdkEventWindowState</a>;
         | 
| 63 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventSetting" title="struct GdkEventSetting">GdkEventSetting</a>;
         | 
| 64 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventOwnerChange" title="struct GdkEventOwnerChange">GdkEventOwnerChange</a>;
         | 
| 65 | 
            +
            struct              <a class="link" href="gdk-Event-Structures.html#GdkEventGrabBroken" title="struct GdkEventGrabBroken">GdkEventGrabBroken</a>;
         | 
| 66 66 |  | 
| 67 67 | 
             
            enum                <a class="link" href="gdk-Event-Structures.html#GdkScrollDirection" title="enum GdkScrollDirection">GdkScrollDirection</a>;
         | 
| 68 68 | 
             
            enum                <a class="link" href="gdk-Event-Structures.html#GdkVisibilityState" title="enum GdkVisibilityState">GdkVisibilityState</a>;
         | 
| @@ -74,24 +74,48 @@ enum                <a class="link" href="gdk-Event-Structures.html#GdkSettingAc | |
| 74 74 | 
             
            enum                <a class="link" href="gdk-Event-Structures.html#GdkOwnerChange" title="enum GdkOwnerChange">GdkOwnerChange</a>;
         | 
| 75 75 | 
             
            </pre>
         | 
| 76 76 | 
             
            </div>
         | 
| 77 | 
            -
            <div class="refsect1" | 
| 77 | 
            +
            <div class="refsect1">
         | 
| 78 78 | 
             
            <a name="gdk-Event-Structures.description"></a><h2>Description</h2>
         | 
| 79 79 | 
             
            <p>
         | 
| 80 80 | 
             
            The event structs contain data specific to each type of event in GDK.
         | 
| 81 81 | 
             
            </p>
         | 
| 82 | 
            -
            <div class="note"  | 
| 82 | 
            +
            <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 83 83 | 
             
            <h3 class="title">Note</h3>
         | 
| 84 84 | 
             
            <p>
         | 
| 85 85 | 
             
            A common mistake is to forget to set the event mask of a widget so that the
         | 
| 86 | 
            -
            required events are received. See <a href="http://library.gnome.org/devel/ | 
| 86 | 
            +
            required events are received. See <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html#gtk-widget-set-events"><code class="function">gtk_widget_set_events()</code></a>.
         | 
| 87 87 | 
             
            </p>
         | 
| 88 88 | 
             
            </div>
         | 
| 89 89 | 
             
            </div>
         | 
| 90 | 
            -
            <div class="refsect1" | 
| 90 | 
            +
            <div class="refsect1">
         | 
| 91 91 | 
             
            <a name="gdk-Event-Structures.details"></a><h2>Details</h2>
         | 
| 92 | 
            -
            <div class="refsect2" | 
| 92 | 
            +
            <div class="refsect2">
         | 
| 93 93 | 
             
            <a name="GdkEvent"></a><h3>union GdkEvent</h3>
         | 
| 94 | 
            -
            <pre class="programlisting" | 
| 94 | 
            +
            <pre class="programlisting">union _GdkEvent
         | 
| 95 | 
            +
            {
         | 
| 96 | 
            +
              GdkEventType		    type;
         | 
| 97 | 
            +
              GdkEventAny		    any;
         | 
| 98 | 
            +
              GdkEventExpose	    expose;
         | 
| 99 | 
            +
              GdkEventNoExpose	    no_expose;
         | 
| 100 | 
            +
              GdkEventVisibility	    visibility;
         | 
| 101 | 
            +
              GdkEventMotion	    motion;
         | 
| 102 | 
            +
              GdkEventButton	    button;
         | 
| 103 | 
            +
              GdkEventScroll            scroll;
         | 
| 104 | 
            +
              GdkEventKey		    key;
         | 
| 105 | 
            +
              GdkEventCrossing	    crossing;
         | 
| 106 | 
            +
              GdkEventFocus		    focus_change;
         | 
| 107 | 
            +
              GdkEventConfigure	    configure;
         | 
| 108 | 
            +
              GdkEventProperty	    property;
         | 
| 109 | 
            +
              GdkEventSelection	    selection;
         | 
| 110 | 
            +
              GdkEventOwnerChange  	    owner_change;
         | 
| 111 | 
            +
              GdkEventProximity	    proximity;
         | 
| 112 | 
            +
              GdkEventClient	    client;
         | 
| 113 | 
            +
              GdkEventDND               dnd;
         | 
| 114 | 
            +
              GdkEventWindowState       window_state;
         | 
| 115 | 
            +
              GdkEventSetting           setting;
         | 
| 116 | 
            +
              GdkEventGrabBroken        grab_broken;
         | 
| 117 | 
            +
            };
         | 
| 118 | 
            +
            </pre>
         | 
| 95 119 | 
             
            <p>
         | 
| 96 120 | 
             
            The <a class="link" href="gdk-Event-Structures.html#GdkEvent" title="union GdkEvent"><span class="type">GdkEvent</span></a> struct contains a union of all of the event structs,
         | 
| 97 121 | 
             
            and allows access to the data fields in a number of ways.
         | 
| @@ -161,17 +185,17 @@ or: | |
| 161 185 | 
             
            </p>
         | 
| 162 186 | 
             
            </div>
         | 
| 163 187 | 
             
            <hr>
         | 
| 164 | 
            -
            <div class="refsect2" | 
| 165 | 
            -
            <a name="GdkEventAny"></a><h3>GdkEventAny</h3>
         | 
| 166 | 
            -
            <pre class="programlisting"> | 
| 188 | 
            +
            <div class="refsect2">
         | 
| 189 | 
            +
            <a name="GdkEventAny"></a><h3>struct GdkEventAny</h3>
         | 
| 190 | 
            +
            <pre class="programlisting">struct GdkEventAny {
         | 
| 167 191 | 
             
              GdkEventType type;
         | 
| 168 192 | 
             
              GdkWindow *window;
         | 
| 169 193 | 
             
              gint8 send_event;
         | 
| 170 | 
            -
            } | 
| 194 | 
            +
            };
         | 
| 171 195 | 
             
            </pre>
         | 
| 172 196 | 
             
            <p>
         | 
| 173 197 | 
             
            Contains the fields which are common to all event structs.
         | 
| 174 | 
            -
            Any event pointer can safely be cast to a pointer to a <a class="link" href="gdk-Event-Structures.html#GdkEventAny" title="GdkEventAny"><span class="type">GdkEventAny</span></a> to access
         | 
| 198 | 
            +
            Any event pointer can safely be cast to a pointer to a <a class="link" href="gdk-Event-Structures.html#GdkEventAny" title="struct GdkEventAny"><span class="type">GdkEventAny</span></a> to access
         | 
| 175 199 | 
             
            these fields.
         | 
| 176 200 | 
             
            </p>
         | 
| 177 201 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -179,28 +203,25 @@ these fields. | |
| 179 203 | 
             
            <tbody>
         | 
| 180 204 | 
             
            <tr>
         | 
| 181 205 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventAny.type"></a>type</code></em>;</span></p></td>
         | 
| 182 | 
            -
            <td>the type of the event | 
| 183 | 
            -
            </td>
         | 
| 206 | 
            +
            <td>the type of the event.</td>
         | 
| 184 207 | 
             
            </tr>
         | 
| 185 208 | 
             
            <tr>
         | 
| 186 209 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventAny.window"></a>window</code></em>;</span></p></td>
         | 
| 187 | 
            -
            <td>the window which received the event | 
| 188 | 
            -
            </td>
         | 
| 210 | 
            +
            <td>the window which received the event.</td>
         | 
| 189 211 | 
             
            </tr>
         | 
| 190 212 | 
             
            <tr>
         | 
| 191 213 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventAny.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 192 214 | 
             
            <td>
         | 
| 193 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using | 
| 194 | 
            -
            <code class="function">XSendEvent</code>) | 
| 195 | 
            -
            </td>
         | 
| 215 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using
         | 
| 216 | 
            +
            <code class="function">XSendEvent</code>).</td>
         | 
| 196 217 | 
             
            </tr>
         | 
| 197 218 | 
             
            </tbody>
         | 
| 198 219 | 
             
            </table></div>
         | 
| 199 220 | 
             
            </div>
         | 
| 200 221 | 
             
            <hr>
         | 
| 201 | 
            -
            <div class="refsect2" | 
| 202 | 
            -
            <a name="GdkEventKey"></a><h3>GdkEventKey</h3>
         | 
| 203 | 
            -
            <pre class="programlisting"> | 
| 222 | 
            +
            <div class="refsect2">
         | 
| 223 | 
            +
            <a name="GdkEventKey"></a><h3>struct GdkEventKey</h3>
         | 
| 224 | 
            +
            <pre class="programlisting">struct GdkEventKey {
         | 
| 204 225 | 
             
              GdkEventType type;
         | 
| 205 226 | 
             
              GdkWindow *window;
         | 
| 206 227 | 
             
              gint8 send_event;
         | 
| @@ -212,7 +233,7 @@ these fields. | |
| 212 233 | 
             
              guint16 hardware_keycode;
         | 
| 213 234 | 
             
              guint8 group;
         | 
| 214 235 | 
             
              guint is_modifier : 1;
         | 
| 215 | 
            -
            } | 
| 236 | 
            +
            };
         | 
| 216 237 | 
             
            </pre>
         | 
| 217 238 | 
             
            <p>
         | 
| 218 239 | 
             
            Describes a key press or key release event.
         | 
| @@ -222,49 +243,42 @@ Describes a key press or key release event. | |
| 222 243 | 
             
            <tbody>
         | 
| 223 244 | 
             
            <tr>
         | 
| 224 245 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventKey.type"></a>type</code></em>;</span></p></td>
         | 
| 225 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-KEY-PRESS:CAPS"><code class="literal">GDK_KEY_PRESS</code></a> or <a class="link" href="gdk-Events.html#GDK-KEY-RELEASE:CAPS"><code class="literal">GDK_KEY_RELEASE</code></a>) | 
| 226 | 
            -
            </td>
         | 
| 246 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-KEY-PRESS:CAPS"><code class="literal">GDK_KEY_PRESS</code></a> or <a class="link" href="gdk-Events.html#GDK-KEY-RELEASE:CAPS"><code class="literal">GDK_KEY_RELEASE</code></a>).</td>
         | 
| 227 247 | 
             
            </tr>
         | 
| 228 248 | 
             
            <tr>
         | 
| 229 249 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventKey.window"></a>window</code></em>;</span></p></td>
         | 
| 230 | 
            -
            <td>the window which received the event | 
| 231 | 
            -
            </td>
         | 
| 250 | 
            +
            <td>the window which received the event.</td>
         | 
| 232 251 | 
             
            </tr>
         | 
| 233 252 | 
             
            <tr>
         | 
| 234 253 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventKey.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 235 254 | 
             
            <td>
         | 
| 236 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using | 
| 237 | 
            -
            <code class="function">XSendEvent</code>) | 
| 238 | 
            -
            </td>
         | 
| 255 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using
         | 
| 256 | 
            +
            <code class="function">XSendEvent</code>).</td>
         | 
| 239 257 | 
             
            </tr>
         | 
| 240 258 | 
             
            <tr>
         | 
| 241 259 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventKey.time"></a>time</code></em>;</span></p></td>
         | 
| 242 | 
            -
            <td>the time of the event in milliseconds | 
| 243 | 
            -
            </td>
         | 
| 260 | 
            +
            <td>the time of the event in milliseconds.</td>
         | 
| 244 261 | 
             
            </tr>
         | 
| 245 262 | 
             
            <tr>
         | 
| 246 263 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GdkEventKey.state"></a>state</code></em>;</span></p></td>
         | 
| 247 264 | 
             
            <td>a bit-mask representing the state of the modifier keys (e.g. Control,
         | 
| 248 | 
            -
            Shift and Alt) and the pointer buttons. See <a class="link" href="gdk-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a | 
| 249 | 
            -
            </td>
         | 
| 265 | 
            +
            Shift and Alt) and the pointer buttons. See <a class="link" href="gdk-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a>.</td>
         | 
| 250 266 | 
             
            </tr>
         | 
| 251 267 | 
             
            <tr>
         | 
| 252 268 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GdkEventKey.keyval"></a>keyval</code></em>;</span></p></td>
         | 
| 253 | 
            -
            <td>the key that was pressed or released. See the | 
| 269 | 
            +
            <td>the key that was pressed or released. See the
         | 
| 254 270 | 
             
            <code class="filename"><gdk/gdkkeysyms.h></code>
         | 
| 255 | 
            -
            header file for a complete list of GDK key codes | 
| 256 | 
            -
            </td>
         | 
| 271 | 
            +
            header file for a complete list of GDK key codes.</td>
         | 
| 257 272 | 
             
            </tr>
         | 
| 258 273 | 
             
            <tr>
         | 
| 259 274 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkEventKey.length"></a>length</code></em>;</span></p></td>
         | 
| 260 | 
            -
            <td>the length of <em class="parameter"><code>string</code></em | 
| 261 | 
            -
            </td>
         | 
| 275 | 
            +
            <td>the length of <em class="parameter"><code>string</code></em>.</td>
         | 
| 262 276 | 
             
            </tr>
         | 
| 263 277 | 
             
            <tr>
         | 
| 264 278 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GdkEventKey.string"></a>string</code></em>;</span></p></td>
         | 
| 265 279 | 
             
            <td>a string containing the an approximation of the text that
         | 
| 266 280 | 
             
            would result from this keypress. The only correct way to handle text
         | 
| 267 | 
            -
            input of text is using input methods (see <a href="http://library.gnome.org/devel/ | 
| 281 | 
            +
            input of text is using input methods (see <a href="http://library.gnome.org/devel/gtk3/GtkIMContext.html"><span class="type">GtkIMContext</span></a>), so this
         | 
| 268 282 | 
             
            field is deprecated and should never be used.
         | 
| 269 283 | 
             
            (<a class="link" href="gdk-Keyboard-Handling.html#gdk-unicode-to-keyval" title="gdk_unicode_to_keyval ()"><code class="function">gdk_unicode_to_keyval()</code></a> provides a non-deprecated way of getting
         | 
| 270 284 | 
             
            an approximate translation for a key.) The string is encoded in the encoding
         | 
| @@ -272,32 +286,28 @@ of the current locale (Note: this for backwards compatibility: | |
| 272 286 | 
             
            strings in GTK+ and GDK are typically in UTF-8.) and NUL-terminated.
         | 
| 273 287 | 
             
            In some cases, the translation of the key code will be a single
         | 
| 274 288 | 
             
            NUL byte, in which case looking at <em class="parameter"><code>length</code></em> is necessary to distinguish
         | 
| 275 | 
            -
            it from the an empty translation | 
| 276 | 
            -
            </td>
         | 
| 289 | 
            +
            it from the an empty translation.</td>
         | 
| 277 290 | 
             
            </tr>
         | 
| 278 291 | 
             
            <tr>
         | 
| 279 292 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code><a name="GdkEventKey.hardware-keycode"></a>hardware_keycode</code></em>;</span></p></td>
         | 
| 280 | 
            -
            <td>the raw code of the key that was pressed or released | 
| 281 | 
            -
            </td>
         | 
| 293 | 
            +
            <td>the raw code of the key that was pressed or released.</td>
         | 
| 282 294 | 
             
            </tr>
         | 
| 283 295 | 
             
            <tr>
         | 
| 284 296 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> <em class="structfield"><code><a name="GdkEventKey.group"></a>group</code></em>;</span></p></td>
         | 
| 285 | 
            -
            <td>the keyboard group | 
| 286 | 
            -
            </td>
         | 
| 297 | 
            +
            <td>the keyboard group.</td>
         | 
| 287 298 | 
             
            </tr>
         | 
| 288 299 | 
             
            <tr>
         | 
| 289 300 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GdkEventKey.is-modifier"></a>is_modifier</code></em> : 1;</span></p></td>
         | 
| 290 301 | 
             
            <td>a flag that indicates if <em class="parameter"><code>hardware_keycode</code></em> is mapped to a
         | 
| 291 | 
            -
             | 
| 292 | 
            -
            </td>
         | 
| 302 | 
            +
            modifier. Since 2.10</td>
         | 
| 293 303 | 
             
            </tr>
         | 
| 294 304 | 
             
            </tbody>
         | 
| 295 305 | 
             
            </table></div>
         | 
| 296 306 | 
             
            </div>
         | 
| 297 307 | 
             
            <hr>
         | 
| 298 | 
            -
            <div class="refsect2" | 
| 299 | 
            -
            <a name="GdkEventButton"></a><h3>GdkEventButton</h3>
         | 
| 300 | 
            -
            <pre class="programlisting"> | 
| 308 | 
            +
            <div class="refsect2">
         | 
| 309 | 
            +
            <a name="GdkEventButton"></a><h3>struct GdkEventButton</h3>
         | 
| 310 | 
            +
            <pre class="programlisting">struct GdkEventButton {
         | 
| 301 311 | 
             
              GdkEventType type;
         | 
| 302 312 | 
             
              GdkWindow *window;
         | 
| 303 313 | 
             
              gint8 send_event;
         | 
| @@ -309,7 +319,7 @@ it from the an empty translation. | |
| 309 319 | 
             
              guint button;
         | 
| 310 320 | 
             
              GdkDevice *device;
         | 
| 311 321 | 
             
              gdouble x_root, y_root;
         | 
| 312 | 
            -
            } | 
| 322 | 
            +
            };
         | 
| 313 323 | 
             
            </pre>
         | 
| 314 324 | 
             
            <p>
         | 
| 315 325 | 
             
            Used for button press and button release events. The
         | 
| @@ -359,79 +369,67 @@ must also occur within 1/2 second of the first button press. | |
| 359 369 | 
             
            <tr>
         | 
| 360 370 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventButton.type"></a>type</code></em>;</span></p></td>
         | 
| 361 371 | 
             
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-BUTTON-PRESS:CAPS"><code class="literal">GDK_BUTTON_PRESS</code></a>, <a class="link" href="gdk-Events.html#GDK-2BUTTON-PRESS:CAPS"><code class="literal">GDK_2BUTTON_PRESS</code></a>,
         | 
| 362 | 
            -
            <a class="link" href="gdk-Events.html#GDK-3BUTTON-PRESS:CAPS"><code class="literal">GDK_3BUTTON_PRESS</code></a> or <a class="link" href="gdk-Events.html#GDK-BUTTON-RELEASE:CAPS"><code class="literal">GDK_BUTTON_RELEASE</code></a>) | 
| 363 | 
            -
            </td>
         | 
| 372 | 
            +
            <a class="link" href="gdk-Events.html#GDK-3BUTTON-PRESS:CAPS"><code class="literal">GDK_3BUTTON_PRESS</code></a> or <a class="link" href="gdk-Events.html#GDK-BUTTON-RELEASE:CAPS"><code class="literal">GDK_BUTTON_RELEASE</code></a>).</td>
         | 
| 364 373 | 
             
            </tr>
         | 
| 365 374 | 
             
            <tr>
         | 
| 366 375 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventButton.window"></a>window</code></em>;</span></p></td>
         | 
| 367 | 
            -
            <td>the window which received the event | 
| 368 | 
            -
            </td>
         | 
| 376 | 
            +
            <td>the window which received the event.</td>
         | 
| 369 377 | 
             
            </tr>
         | 
| 370 378 | 
             
            <tr>
         | 
| 371 379 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventButton.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 372 380 | 
             
            <td>
         | 
| 373 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using | 
| 374 | 
            -
            <code class="function">XSendEvent</code>) | 
| 375 | 
            -
            </td>
         | 
| 381 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using
         | 
| 382 | 
            +
            <code class="function">XSendEvent</code>).</td>
         | 
| 376 383 | 
             
            </tr>
         | 
| 377 384 | 
             
            <tr>
         | 
| 378 385 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventButton.time"></a>time</code></em>;</span></p></td>
         | 
| 379 | 
            -
            <td>the time of the event in milliseconds | 
| 380 | 
            -
            </td>
         | 
| 386 | 
            +
            <td>the time of the event in milliseconds.</td>
         | 
| 381 387 | 
             
            </tr>
         | 
| 382 388 | 
             
            <tr>
         | 
| 383 389 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventButton.x"></a>x</code></em>;</span></p></td>
         | 
| 384 | 
            -
            <td>the x coordinate of the pointer relative to the window | 
| 385 | 
            -
            </td>
         | 
| 390 | 
            +
            <td>the x coordinate of the pointer relative to the window.</td>
         | 
| 386 391 | 
             
            </tr>
         | 
| 387 392 | 
             
            <tr>
         | 
| 388 393 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventButton.y"></a>y</code></em>;</span></p></td>
         | 
| 389 | 
            -
            <td>the y coordinate of the pointer relative to the window | 
| 390 | 
            -
            </td>
         | 
| 394 | 
            +
            <td>the y coordinate of the pointer relative to the window.</td>
         | 
| 391 395 | 
             
            </tr>
         | 
| 392 396 | 
             
            <tr>
         | 
| 393 397 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *<em class="structfield"><code><a name="GdkEventButton.axes"></a>axes</code></em>;</span></p></td>
         | 
| 394 398 | 
             
            <td>
         | 
| 395 | 
            -
            <em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em> translated to the axes of <em class="parameter"><code>device</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 <em class="parameter"><code>device</code></em> is | 
| 396 | 
            -
             | 
| 397 | 
            -
            </td>
         | 
| 399 | 
            +
            <em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em> translated to the axes of <em class="parameter"><code>device</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 <em class="parameter"><code>device</code></em> is
         | 
| 400 | 
            +
            the mouse.</td>
         | 
| 398 401 | 
             
            </tr>
         | 
| 399 402 | 
             
            <tr>
         | 
| 400 403 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GdkEventButton.state"></a>state</code></em>;</span></p></td>
         | 
| 401 404 | 
             
            <td>a bit-mask representing the state of the modifier keys (e.g. Control,
         | 
| 402 | 
            -
            Shift and Alt) and the pointer buttons. See <a class="link" href="gdk-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a | 
| 403 | 
            -
            </td>
         | 
| 405 | 
            +
            Shift and Alt) and the pointer buttons. See <a class="link" href="gdk-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a>.</td>
         | 
| 404 406 | 
             
            </tr>
         | 
| 405 407 | 
             
            <tr>
         | 
| 406 408 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GdkEventButton.button"></a>button</code></em>;</span></p></td>
         | 
| 407 409 | 
             
            <td>the button which was pressed or released, numbered from 1 to 5.
         | 
| 408 410 | 
             
            Normally button 1 is the left mouse button, 2 is the middle button,
         | 
| 409 411 | 
             
            and 3 is the right button. On 2-button mice, the middle button can often
         | 
| 410 | 
            -
            be simulated by pressing both mouse buttons together | 
| 411 | 
            -
            </td>
         | 
| 412 | 
            +
            be simulated by pressing both mouse buttons together.</td>
         | 
| 412 413 | 
             
            </tr>
         | 
| 413 414 | 
             
            <tr>
         | 
| 414 | 
            -
            <td><p><span class="term"><a class="link" href="gdk-Input-Devices.html#GdkDevice" title="GdkDevice"><span class="type">GdkDevice</span></a> *<em class="structfield"><code><a name="GdkEventButton.device"></a>device</code></em>;</span></p></td>
         | 
| 415 | 
            -
            <td>the device where the event originated | 
| 416 | 
            -
            </td>
         | 
| 415 | 
            +
            <td><p><span class="term"><a class="link" href="gdk-Input-Devices.html#GdkDevice" title="struct GdkDevice"><span class="type">GdkDevice</span></a> *<em class="structfield"><code><a name="GdkEventButton.device"></a>device</code></em>;</span></p></td>
         | 
| 416 | 
            +
            <td>the device where the event originated.</td>
         | 
| 417 417 | 
             
            </tr>
         | 
| 418 418 | 
             
            <tr>
         | 
| 419 419 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventButton.x-root"></a>x_root</code></em>;</span></p></td>
         | 
| 420 | 
            -
            <td>the x coordinate of the pointer relative to the root of the screen | 
| 421 | 
            -
            </td>
         | 
| 420 | 
            +
            <td>the x coordinate of the pointer relative to the root of the screen.</td>
         | 
| 422 421 | 
             
            </tr>
         | 
| 423 422 | 
             
            <tr>
         | 
| 424 423 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventButton.y-root"></a>y_root</code></em>;</span></p></td>
         | 
| 425 | 
            -
            <td>the y coordinate of the pointer relative to the root of the screen | 
| 426 | 
            -
            </td>
         | 
| 424 | 
            +
            <td>the y coordinate of the pointer relative to the root of the screen.</td>
         | 
| 427 425 | 
             
            </tr>
         | 
| 428 426 | 
             
            </tbody>
         | 
| 429 427 | 
             
            </table></div>
         | 
| 430 428 | 
             
            </div>
         | 
| 431 429 | 
             
            <hr>
         | 
| 432 | 
            -
            <div class="refsect2" | 
| 433 | 
            -
            <a name="GdkEventScroll"></a><h3>GdkEventScroll</h3>
         | 
| 434 | 
            -
            <pre class="programlisting"> | 
| 430 | 
            +
            <div class="refsect2">
         | 
| 431 | 
            +
            <a name="GdkEventScroll"></a><h3>struct GdkEventScroll</h3>
         | 
| 432 | 
            +
            <pre class="programlisting">struct GdkEventScroll {
         | 
| 435 433 | 
             
              GdkEventType type;
         | 
| 436 434 | 
             
              GdkWindow *window;
         | 
| 437 435 | 
             
              gint8 send_event;
         | 
| @@ -442,7 +440,7 @@ be simulated by pressing both mouse buttons together. | |
| 442 440 | 
             
              GdkScrollDirection direction;
         | 
| 443 441 | 
             
              GdkDevice *device;
         | 
| 444 442 | 
             
              gdouble x_root, y_root;
         | 
| 445 | 
            -
            } | 
| 443 | 
            +
            };
         | 
| 446 444 | 
             
            </pre>
         | 
| 447 445 | 
             
            <p>
         | 
| 448 446 | 
             
            Generated from button presses for the buttons 4 to 7. Wheel mice are
         | 
| @@ -454,70 +452,59 @@ when the wheel is turned. | |
| 454 452 | 
             
            <tbody>
         | 
| 455 453 | 
             
            <tr>
         | 
| 456 454 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventScroll.type"></a>type</code></em>;</span></p></td>
         | 
| 457 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-SCROLL:CAPS"><code class="literal">GDK_SCROLL</code></a>) | 
| 458 | 
            -
            </td>
         | 
| 455 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-SCROLL:CAPS"><code class="literal">GDK_SCROLL</code></a>).</td>
         | 
| 459 456 | 
             
            </tr>
         | 
| 460 457 | 
             
            <tr>
         | 
| 461 458 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventScroll.window"></a>window</code></em>;</span></p></td>
         | 
| 462 | 
            -
            <td>the window which received the event | 
| 463 | 
            -
            </td>
         | 
| 459 | 
            +
            <td>the window which received the event.</td>
         | 
| 464 460 | 
             
            </tr>
         | 
| 465 461 | 
             
            <tr>
         | 
| 466 462 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventScroll.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 467 463 | 
             
            <td>
         | 
| 468 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using | 
| 469 | 
            -
            <code class="function">XSendEvent</code>) | 
| 470 | 
            -
            </td>
         | 
| 464 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using
         | 
| 465 | 
            +
            <code class="function">XSendEvent</code>).</td>
         | 
| 471 466 | 
             
            </tr>
         | 
| 472 467 | 
             
            <tr>
         | 
| 473 468 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventScroll.time"></a>time</code></em>;</span></p></td>
         | 
| 474 | 
            -
            <td>the time of the event in milliseconds | 
| 475 | 
            -
            </td>
         | 
| 469 | 
            +
            <td>the time of the event in milliseconds.</td>
         | 
| 476 470 | 
             
            </tr>
         | 
| 477 471 | 
             
            <tr>
         | 
| 478 472 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventScroll.x"></a>x</code></em>;</span></p></td>
         | 
| 479 | 
            -
            <td>the x coordinate of the pointer relative to the window | 
| 480 | 
            -
            </td>
         | 
| 473 | 
            +
            <td>the x coordinate of the pointer relative to the window.</td>
         | 
| 481 474 | 
             
            </tr>
         | 
| 482 475 | 
             
            <tr>
         | 
| 483 476 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventScroll.y"></a>y</code></em>;</span></p></td>
         | 
| 484 | 
            -
            <td>the y coordinate of the pointer relative to the window | 
| 485 | 
            -
            </td>
         | 
| 477 | 
            +
            <td>the y coordinate of the pointer relative to the window.</td>
         | 
| 486 478 | 
             
            </tr>
         | 
| 487 479 | 
             
            <tr>
         | 
| 488 480 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GdkEventScroll.state"></a>state</code></em>;</span></p></td>
         | 
| 489 481 | 
             
            <td>a bit-mask representing the state of the modifier keys (e.g. Control,
         | 
| 490 | 
            -
            Shift and Alt) and the pointer buttons. See <a class="link" href="gdk-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a | 
| 491 | 
            -
            </td>
         | 
| 482 | 
            +
            Shift and Alt) and the pointer buttons. See <a class="link" href="gdk-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a>.</td>
         | 
| 492 483 | 
             
            </tr>
         | 
| 493 484 | 
             
            <tr>
         | 
| 494 485 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkScrollDirection" title="enum GdkScrollDirection"><span class="type">GdkScrollDirection</span></a> <em class="structfield"><code><a name="GdkEventScroll.direction"></a>direction</code></em>;</span></p></td>
         | 
| 495 | 
            -
            <td>the direction to scroll to (one of <a class="link" href="gdk-Event-Structures.html#GDK-SCROLL-UP:CAPS"><code class="literal">GDK_SCROLL_UP</code></a>, | 
| 496 | 
            -
             | 
| 497 | 
            -
            </td>
         | 
| 486 | 
            +
            <td>the direction to scroll to (one of <a class="link" href="gdk-Event-Structures.html#GDK-SCROLL-UP:CAPS"><code class="literal">GDK_SCROLL_UP</code></a>,
         | 
| 487 | 
            +
            <a class="link" href="gdk-Event-Structures.html#GDK-SCROLL-DOWN:CAPS"><code class="literal">GDK_SCROLL_DOWN</code></a>, <a class="link" href="gdk-Event-Structures.html#GDK-SCROLL-LEFT:CAPS"><code class="literal">GDK_SCROLL_LEFT</code></a> and <a class="link" href="gdk-Event-Structures.html#GDK-SCROLL-RIGHT:CAPS"><code class="literal">GDK_SCROLL_RIGHT</code></a>).</td>
         | 
| 498 488 | 
             
            </tr>
         | 
| 499 489 | 
             
            <tr>
         | 
| 500 | 
            -
            <td><p><span class="term"><a class="link" href="gdk-Input-Devices.html#GdkDevice" title="GdkDevice"><span class="type">GdkDevice</span></a> *<em class="structfield"><code><a name="GdkEventScroll.device"></a>device</code></em>;</span></p></td>
         | 
| 501 | 
            -
            <td>the device where the event originated | 
| 502 | 
            -
            </td>
         | 
| 490 | 
            +
            <td><p><span class="term"><a class="link" href="gdk-Input-Devices.html#GdkDevice" title="struct GdkDevice"><span class="type">GdkDevice</span></a> *<em class="structfield"><code><a name="GdkEventScroll.device"></a>device</code></em>;</span></p></td>
         | 
| 491 | 
            +
            <td>the device where the event originated.</td>
         | 
| 503 492 | 
             
            </tr>
         | 
| 504 493 | 
             
            <tr>
         | 
| 505 494 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventScroll.x-root"></a>x_root</code></em>;</span></p></td>
         | 
| 506 | 
            -
            <td>the x coordinate of the pointer relative to the root of the screen | 
| 507 | 
            -
            </td>
         | 
| 495 | 
            +
            <td>the x coordinate of the pointer relative to the root of the screen.</td>
         | 
| 508 496 | 
             
            </tr>
         | 
| 509 497 | 
             
            <tr>
         | 
| 510 498 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventScroll.y-root"></a>y_root</code></em>;</span></p></td>
         | 
| 511 | 
            -
            <td>the y coordinate of the pointer relative to the root of the screen | 
| 512 | 
            -
            </td>
         | 
| 499 | 
            +
            <td>the y coordinate of the pointer relative to the root of the screen.</td>
         | 
| 513 500 | 
             
            </tr>
         | 
| 514 501 | 
             
            </tbody>
         | 
| 515 502 | 
             
            </table></div>
         | 
| 516 503 | 
             
            </div>
         | 
| 517 504 | 
             
            <hr>
         | 
| 518 | 
            -
            <div class="refsect2" | 
| 519 | 
            -
            <a name="GdkEventMotion"></a><h3>GdkEventMotion</h3>
         | 
| 520 | 
            -
            <pre class="programlisting"> | 
| 505 | 
            +
            <div class="refsect2">
         | 
| 506 | 
            +
            <a name="GdkEventMotion"></a><h3>struct GdkEventMotion</h3>
         | 
| 507 | 
            +
            <pre class="programlisting">struct GdkEventMotion {
         | 
| 521 508 | 
             
              GdkEventType type;
         | 
| 522 509 | 
             
              GdkWindow *window;
         | 
| 523 510 | 
             
              gint8 send_event;
         | 
| @@ -529,7 +516,7 @@ Shift and Alt) and the pointer buttons. See <a class="link" href="gdk-Windows.ht | |
| 529 516 | 
             
              gint16 is_hint;
         | 
| 530 517 | 
             
              GdkDevice *device;
         | 
| 531 518 | 
             
              gdouble x_root, y_root;
         | 
| 532 | 
            -
            } | 
| 519 | 
            +
            };
         | 
| 533 520 | 
             
            </pre>
         | 
| 534 521 | 
             
            <p>
         | 
| 535 522 | 
             
            Generated when the pointer moves.
         | 
| @@ -539,84 +526,72 @@ Generated when the pointer moves. | |
| 539 526 | 
             
            <tbody>
         | 
| 540 527 | 
             
            <tr>
         | 
| 541 528 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventMotion.type"></a>type</code></em>;</span></p></td>
         | 
| 542 | 
            -
            <td>the type of the event | 
| 543 | 
            -
            </td>
         | 
| 529 | 
            +
            <td>the type of the event.</td>
         | 
| 544 530 | 
             
            </tr>
         | 
| 545 531 | 
             
            <tr>
         | 
| 546 532 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventMotion.window"></a>window</code></em>;</span></p></td>
         | 
| 547 | 
            -
            <td>the window which received the event | 
| 548 | 
            -
            </td>
         | 
| 533 | 
            +
            <td>the window which received the event.</td>
         | 
| 549 534 | 
             
            </tr>
         | 
| 550 535 | 
             
            <tr>
         | 
| 551 536 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventMotion.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 552 537 | 
             
            <td>
         | 
| 553 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using | 
| 554 | 
            -
            <code class="function">XSendEvent</code>) | 
| 555 | 
            -
            </td>
         | 
| 538 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using
         | 
| 539 | 
            +
            <code class="function">XSendEvent</code>).</td>
         | 
| 556 540 | 
             
            </tr>
         | 
| 557 541 | 
             
            <tr>
         | 
| 558 542 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventMotion.time"></a>time</code></em>;</span></p></td>
         | 
| 559 | 
            -
            <td>the time of the event in milliseconds | 
| 560 | 
            -
            </td>
         | 
| 543 | 
            +
            <td>the time of the event in milliseconds.</td>
         | 
| 561 544 | 
             
            </tr>
         | 
| 562 545 | 
             
            <tr>
         | 
| 563 546 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventMotion.x"></a>x</code></em>;</span></p></td>
         | 
| 564 | 
            -
            <td>the x coordinate of the pointer relative to the window | 
| 565 | 
            -
            </td>
         | 
| 547 | 
            +
            <td>the x coordinate of the pointer relative to the window.</td>
         | 
| 566 548 | 
             
            </tr>
         | 
| 567 549 | 
             
            <tr>
         | 
| 568 550 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventMotion.y"></a>y</code></em>;</span></p></td>
         | 
| 569 | 
            -
            <td>the y coordinate of the pointer relative to the window | 
| 570 | 
            -
            </td>
         | 
| 551 | 
            +
            <td>the y coordinate of the pointer relative to the window.</td>
         | 
| 571 552 | 
             
            </tr>
         | 
| 572 553 | 
             
            <tr>
         | 
| 573 554 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *<em class="structfield"><code><a name="GdkEventMotion.axes"></a>axes</code></em>;</span></p></td>
         | 
| 574 555 | 
             
            <td>
         | 
| 575 | 
            -
            <em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em> translated to the axes of <em class="parameter"><code>device</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 <em class="parameter"><code>device</code></em> is | 
| 576 | 
            -
             | 
| 577 | 
            -
            </td>
         | 
| 556 | 
            +
            <em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em> translated to the axes of <em class="parameter"><code>device</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 <em class="parameter"><code>device</code></em> is
         | 
| 557 | 
            +
            the mouse.</td>
         | 
| 578 558 | 
             
            </tr>
         | 
| 579 559 | 
             
            <tr>
         | 
| 580 560 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GdkEventMotion.state"></a>state</code></em>;</span></p></td>
         | 
| 581 561 | 
             
            <td>a bit-mask representing the state of the modifier keys (e.g. Control,
         | 
| 582 | 
            -
             | 
| 583 | 
            -
            </td>
         | 
| 562 | 
            +
            Shift and Alt) and the pointer buttons. See <a class="link" href="gdk-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a>.</td>
         | 
| 584 563 | 
             
            </tr>
         | 
| 585 564 | 
             
            <tr>
         | 
| 586 565 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint16"><span class="type">gint16</span></a> <em class="structfield"><code><a name="GdkEventMotion.is-hint"></a>is_hint</code></em>;</span></p></td>
         | 
| 587 566 | 
             
            <td>set to 1 if this event is just a hint, see the <a class="link" href="gdk-Events.html#GDK-POINTER-MOTION-HINT-MASK:CAPS"><code class="literal">GDK_POINTER_MOTION_HINT_MASK</code></a>
         | 
| 588 | 
            -
             | 
| 589 | 
            -
            </td>
         | 
| 567 | 
            +
            value of <a class="link" href="gdk-Events.html#GdkEventMask" title="enum GdkEventMask"><span class="type">GdkEventMask</span></a>.</td>
         | 
| 590 568 | 
             
            </tr>
         | 
| 591 569 | 
             
            <tr>
         | 
| 592 | 
            -
            <td><p><span class="term"><a class="link" href="gdk-Input-Devices.html#GdkDevice" title="GdkDevice"><span class="type">GdkDevice</span></a> *<em class="structfield"><code><a name="GdkEventMotion.device"></a>device</code></em>;</span></p></td>
         | 
| 593 | 
            -
            <td>the device where the event originated | 
| 594 | 
            -
            </td>
         | 
| 570 | 
            +
            <td><p><span class="term"><a class="link" href="gdk-Input-Devices.html#GdkDevice" title="struct GdkDevice"><span class="type">GdkDevice</span></a> *<em class="structfield"><code><a name="GdkEventMotion.device"></a>device</code></em>;</span></p></td>
         | 
| 571 | 
            +
            <td>the device where the event originated.</td>
         | 
| 595 572 | 
             
            </tr>
         | 
| 596 573 | 
             
            <tr>
         | 
| 597 574 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventMotion.x-root"></a>x_root</code></em>;</span></p></td>
         | 
| 598 | 
            -
            <td>the x coordinate of the pointer relative to the root of the screen | 
| 599 | 
            -
            </td>
         | 
| 575 | 
            +
            <td>the x coordinate of the pointer relative to the root of the screen.</td>
         | 
| 600 576 | 
             
            </tr>
         | 
| 601 577 | 
             
            <tr>
         | 
| 602 578 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventMotion.y-root"></a>y_root</code></em>;</span></p></td>
         | 
| 603 | 
            -
            <td>the y coordinate of the pointer relative to the root of the screen | 
| 604 | 
            -
            </td>
         | 
| 579 | 
            +
            <td>the y coordinate of the pointer relative to the root of the screen.</td>
         | 
| 605 580 | 
             
            </tr>
         | 
| 606 581 | 
             
            </tbody>
         | 
| 607 582 | 
             
            </table></div>
         | 
| 608 583 | 
             
            </div>
         | 
| 609 584 | 
             
            <hr>
         | 
| 610 | 
            -
            <div class="refsect2" | 
| 611 | 
            -
            <a name="GdkEventExpose"></a><h3>GdkEventExpose</h3>
         | 
| 612 | 
            -
            <pre class="programlisting"> | 
| 585 | 
            +
            <div class="refsect2">
         | 
| 586 | 
            +
            <a name="GdkEventExpose"></a><h3>struct GdkEventExpose</h3>
         | 
| 587 | 
            +
            <pre class="programlisting">struct GdkEventExpose {
         | 
| 613 588 | 
             
              GdkEventType type;
         | 
| 614 589 | 
             
              GdkWindow *window;
         | 
| 615 590 | 
             
              gint8 send_event;
         | 
| 616 591 | 
             
              GdkRectangle area;
         | 
| 617 592 | 
             
              GdkRegion *region;
         | 
| 618 593 | 
             
              gint count; /* If non-zero, how many more events follow. */
         | 
| 619 | 
            -
            } | 
| 594 | 
            +
            };
         | 
| 620 595 | 
             
            </pre>
         | 
| 621 596 | 
             
            <p>
         | 
| 622 597 | 
             
            Generated when all or part of a window becomes visible and needs to be
         | 
| @@ -627,51 +602,45 @@ redrawn. | |
| 627 602 | 
             
            <tbody>
         | 
| 628 603 | 
             
            <tr>
         | 
| 629 604 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventExpose.type"></a>type</code></em>;</span></p></td>
         | 
| 630 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-EXPOSE:CAPS"><code class="literal">GDK_EXPOSE</code></a> or <a class="link" href="gdk-Events.html#GDK-DAMAGE:CAPS"><code class="literal">GDK_DAMAGE</code></a>) | 
| 631 | 
            -
            </td>
         | 
| 605 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-EXPOSE:CAPS"><code class="literal">GDK_EXPOSE</code></a> or <a class="link" href="gdk-Events.html#GDK-DAMAGE:CAPS"><code class="literal">GDK_DAMAGE</code></a>).</td>
         | 
| 632 606 | 
             
            </tr>
         | 
| 633 607 | 
             
            <tr>
         | 
| 634 608 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventExpose.window"></a>window</code></em>;</span></p></td>
         | 
| 635 | 
            -
            <td>the window which received the event | 
| 636 | 
            -
            </td>
         | 
| 609 | 
            +
            <td>the window which received the event.</td>
         | 
| 637 610 | 
             
            </tr>
         | 
| 638 611 | 
             
            <tr>
         | 
| 639 612 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventExpose.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 640 613 | 
             
            <td>
         | 
| 641 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using | 
| 642 | 
            -
            <code class="function">XSendEvent</code>) | 
| 643 | 
            -
            </td>
         | 
| 614 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using
         | 
| 615 | 
            +
            <code class="function">XSendEvent</code>).</td>
         | 
| 644 616 | 
             
            </tr>
         | 
| 645 617 | 
             
            <tr>
         | 
| 646 | 
            -
            <td><p><span class="term"><a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="GdkRectangle"><span class="type">GdkRectangle</span></a> <em class="structfield"><code><a name="GdkEventExpose.area"></a>area</code></em>;</span></p></td>
         | 
| 647 | 
            -
            <td>bounding box of <em class="parameter"><code>region</code></em | 
| 648 | 
            -
            </td>
         | 
| 618 | 
            +
            <td><p><span class="term"><a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="struct GdkRectangle"><span class="type">GdkRectangle</span></a> <em class="structfield"><code><a name="GdkEventExpose.area"></a>area</code></em>;</span></p></td>
         | 
| 619 | 
            +
            <td>bounding box of <em class="parameter"><code>region</code></em>.</td>
         | 
| 649 620 | 
             
            </tr>
         | 
| 650 621 | 
             
            <tr>
         | 
| 651 622 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a> *<em class="structfield"><code><a name="GdkEventExpose.region"></a>region</code></em>;</span></p></td>
         | 
| 652 | 
            -
            <td>the region that needs to be redrawn | 
| 653 | 
            -
            </td>
         | 
| 623 | 
            +
            <td>the region that needs to be redrawn.</td>
         | 
| 654 624 | 
             
            </tr>
         | 
| 655 625 | 
             
            <tr>
         | 
| 656 626 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkEventExpose.count"></a>count</code></em>;</span></p></td>
         | 
| 657 627 | 
             
            <td>the number of contiguous <a class="link" href="gdk-Events.html#GDK-EXPOSE:CAPS"><code class="literal">GDK_EXPOSE</code></a> events following this one.
         | 
| 658 628 | 
             
            The only use for this is "exposure compression", i.e. handling all contiguous
         | 
| 659 629 | 
             
            <a class="link" href="gdk-Events.html#GDK-EXPOSE:CAPS"><code class="literal">GDK_EXPOSE</code></a> events in one go, though GDK performs some exposure compression
         | 
| 660 | 
            -
            so this is not normally needed | 
| 661 | 
            -
            </td>
         | 
| 630 | 
            +
            so this is not normally needed.</td>
         | 
| 662 631 | 
             
            </tr>
         | 
| 663 632 | 
             
            </tbody>
         | 
| 664 633 | 
             
            </table></div>
         | 
| 665 634 | 
             
            </div>
         | 
| 666 635 | 
             
            <hr>
         | 
| 667 | 
            -
            <div class="refsect2" | 
| 668 | 
            -
            <a name="GdkEventVisibility"></a><h3>GdkEventVisibility</h3>
         | 
| 669 | 
            -
            <pre class="programlisting"> | 
| 636 | 
            +
            <div class="refsect2">
         | 
| 637 | 
            +
            <a name="GdkEventVisibility"></a><h3>struct GdkEventVisibility</h3>
         | 
| 638 | 
            +
            <pre class="programlisting">struct GdkEventVisibility {
         | 
| 670 639 | 
             
              GdkEventType type;
         | 
| 671 640 | 
             
              GdkWindow *window;
         | 
| 672 641 | 
             
              gint8 send_event;
         | 
| 673 642 | 
             
              GdkVisibilityState state;
         | 
| 674 | 
            -
            } | 
| 643 | 
            +
            };
         | 
| 675 644 | 
             
            </pre>
         | 
| 676 645 | 
             
            <p>
         | 
| 677 646 | 
             
            Generated when the window visibility status has changed.
         | 
| @@ -681,34 +650,30 @@ Generated when the window visibility status has changed. | |
| 681 650 | 
             
            <tbody>
         | 
| 682 651 | 
             
            <tr>
         | 
| 683 652 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventVisibility.type"></a>type</code></em>;</span></p></td>
         | 
| 684 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-VISIBILITY-NOTIFY:CAPS"><code class="literal">GDK_VISIBILITY_NOTIFY</code></a>) | 
| 685 | 
            -
            </td>
         | 
| 653 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-VISIBILITY-NOTIFY:CAPS"><code class="literal">GDK_VISIBILITY_NOTIFY</code></a>).</td>
         | 
| 686 654 | 
             
            </tr>
         | 
| 687 655 | 
             
            <tr>
         | 
| 688 656 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventVisibility.window"></a>window</code></em>;</span></p></td>
         | 
| 689 | 
            -
            <td>the window which received the event | 
| 690 | 
            -
            </td>
         | 
| 657 | 
            +
            <td>the window which received the event.</td>
         | 
| 691 658 | 
             
            </tr>
         | 
| 692 659 | 
             
            <tr>
         | 
| 693 660 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventVisibility.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 694 661 | 
             
            <td>
         | 
| 695 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using | 
| 696 | 
            -
            <code class="function">XSendEvent</code>) | 
| 697 | 
            -
            </td>
         | 
| 662 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using
         | 
| 663 | 
            +
            <code class="function">XSendEvent</code>).</td>
         | 
| 698 664 | 
             
            </tr>
         | 
| 699 665 | 
             
            <tr>
         | 
| 700 666 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkVisibilityState" title="enum GdkVisibilityState"><span class="type">GdkVisibilityState</span></a> <em class="structfield"><code><a name="GdkEventVisibility.state"></a>state</code></em>;</span></p></td>
         | 
| 701 667 | 
             
            <td>the new visibility state (<a class="link" href="gdk-Event-Structures.html#GDK-VISIBILITY-FULLY-OBSCURED:CAPS"><code class="literal">GDK_VISIBILITY_FULLY_OBSCURED</code></a>,
         | 
| 702 | 
            -
            <a class="link" href="gdk-Event-Structures.html#GDK-VISIBILITY-PARTIAL:CAPS"><code class="literal">GDK_VISIBILITY_PARTIAL</code></a> or <a class="link" href="gdk-Event-Structures.html#GDK-VISIBILITY-UNOBSCURED:CAPS"><code class="literal">GDK_VISIBILITY_UNOBSCURED</code></a>) | 
| 703 | 
            -
            </td>
         | 
| 668 | 
            +
            <a class="link" href="gdk-Event-Structures.html#GDK-VISIBILITY-PARTIAL:CAPS"><code class="literal">GDK_VISIBILITY_PARTIAL</code></a> or <a class="link" href="gdk-Event-Structures.html#GDK-VISIBILITY-UNOBSCURED:CAPS"><code class="literal">GDK_VISIBILITY_UNOBSCURED</code></a>).</td>
         | 
| 704 669 | 
             
            </tr>
         | 
| 705 670 | 
             
            </tbody>
         | 
| 706 671 | 
             
            </table></div>
         | 
| 707 672 | 
             
            </div>
         | 
| 708 673 | 
             
            <hr>
         | 
| 709 | 
            -
            <div class="refsect2" | 
| 710 | 
            -
            <a name="GdkEventCrossing"></a><h3>GdkEventCrossing</h3>
         | 
| 711 | 
            -
            <pre class="programlisting"> | 
| 674 | 
            +
            <div class="refsect2">
         | 
| 675 | 
            +
            <a name="GdkEventCrossing"></a><h3>struct GdkEventCrossing</h3>
         | 
| 676 | 
            +
            <pre class="programlisting">struct GdkEventCrossing {
         | 
| 712 677 | 
             
              GdkEventType type;
         | 
| 713 678 | 
             
              GdkWindow *window;
         | 
| 714 679 | 
             
              gint8 send_event;
         | 
| @@ -722,7 +687,7 @@ Generated when the window visibility status has changed. | |
| 722 687 | 
             
              GdkNotifyType detail;
         | 
| 723 688 | 
             
              gboolean focus;
         | 
| 724 689 | 
             
              guint state;
         | 
| 725 | 
            -
            } | 
| 690 | 
            +
            };
         | 
| 726 691 | 
             
            </pre>
         | 
| 727 692 | 
             
            <p>
         | 
| 728 693 | 
             
            Generated when the pointer enters or leaves a window.
         | 
| @@ -732,91 +697,78 @@ Generated when the pointer enters or leaves a window. | |
| 732 697 | 
             
            <tbody>
         | 
| 733 698 | 
             
            <tr>
         | 
| 734 699 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventCrossing.type"></a>type</code></em>;</span></p></td>
         | 
| 735 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-ENTER-NOTIFY:CAPS"><code class="literal">GDK_ENTER_NOTIFY</code></a> or <a class="link" href="gdk-Events.html#GDK-LEAVE-NOTIFY:CAPS"><code class="literal">GDK_LEAVE_NOTIFY</code></a>) | 
| 736 | 
            -
            </td>
         | 
| 700 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-ENTER-NOTIFY:CAPS"><code class="literal">GDK_ENTER_NOTIFY</code></a> or <a class="link" href="gdk-Events.html#GDK-LEAVE-NOTIFY:CAPS"><code class="literal">GDK_LEAVE_NOTIFY</code></a>).</td>
         | 
| 737 701 | 
             
            </tr>
         | 
| 738 702 | 
             
            <tr>
         | 
| 739 703 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventCrossing.window"></a>window</code></em>;</span></p></td>
         | 
| 740 | 
            -
            <td>the window which received the event | 
| 741 | 
            -
            </td>
         | 
| 704 | 
            +
            <td>the window which received the event.</td>
         | 
| 742 705 | 
             
            </tr>
         | 
| 743 706 | 
             
            <tr>
         | 
| 744 707 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventCrossing.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 745 708 | 
             
            <td>
         | 
| 746 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using | 
| 747 | 
            -
            <code class="function">XSendEvent</code>) | 
| 748 | 
            -
            </td>
         | 
| 709 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using
         | 
| 710 | 
            +
            <code class="function">XSendEvent</code>).</td>
         | 
| 749 711 | 
             
            </tr>
         | 
| 750 712 | 
             
            <tr>
         | 
| 751 713 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventCrossing.subwindow"></a>subwindow</code></em>;</span></p></td>
         | 
| 752 | 
            -
            <td>the window that was entered or left | 
| 753 | 
            -
            </td>
         | 
| 714 | 
            +
            <td>the window that was entered or left.</td>
         | 
| 754 715 | 
             
            </tr>
         | 
| 755 716 | 
             
            <tr>
         | 
| 756 717 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventCrossing.time"></a>time</code></em>;</span></p></td>
         | 
| 757 | 
            -
            <td>the time of the event in milliseconds | 
| 758 | 
            -
            </td>
         | 
| 718 | 
            +
            <td>the time of the event in milliseconds.</td>
         | 
| 759 719 | 
             
            </tr>
         | 
| 760 720 | 
             
            <tr>
         | 
| 761 721 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventCrossing.x"></a>x</code></em>;</span></p></td>
         | 
| 762 | 
            -
            <td>the x coordinate of the pointer relative to the window | 
| 763 | 
            -
            </td>
         | 
| 722 | 
            +
            <td>the x coordinate of the pointer relative to the window.</td>
         | 
| 764 723 | 
             
            </tr>
         | 
| 765 724 | 
             
            <tr>
         | 
| 766 725 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventCrossing.y"></a>y</code></em>;</span></p></td>
         | 
| 767 | 
            -
            <td>the y coordinate of the pointer relative to the window | 
| 768 | 
            -
            </td>
         | 
| 726 | 
            +
            <td>the y coordinate of the pointer relative to the window.</td>
         | 
| 769 727 | 
             
            </tr>
         | 
| 770 728 | 
             
            <tr>
         | 
| 771 729 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventCrossing.x-root"></a>x_root</code></em>;</span></p></td>
         | 
| 772 | 
            -
            <td>the x coordinate of the pointer relative to the root of the screen | 
| 773 | 
            -
            </td>
         | 
| 730 | 
            +
            <td>the x coordinate of the pointer relative to the root of the screen.</td>
         | 
| 774 731 | 
             
            </tr>
         | 
| 775 732 | 
             
            <tr>
         | 
| 776 733 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GdkEventCrossing.y-root"></a>y_root</code></em>;</span></p></td>
         | 
| 777 | 
            -
            <td>the y coordinate of the pointer relative to the root of the screen | 
| 778 | 
            -
            </td>
         | 
| 734 | 
            +
            <td>the y coordinate of the pointer relative to the root of the screen.</td>
         | 
| 779 735 | 
             
            </tr>
         | 
| 780 736 | 
             
            <tr>
         | 
| 781 737 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkCrossingMode" title="enum GdkCrossingMode"><span class="type">GdkCrossingMode</span></a> <em class="structfield"><code><a name="GdkEventCrossing.mode"></a>mode</code></em>;</span></p></td>
         | 
| 782 | 
            -
            <td>the crossing mode (<a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-NORMAL:CAPS"><code class="literal">GDK_CROSSING_NORMAL</code></a>, <a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-GRAB:CAPS"><code class="literal">GDK_CROSSING_GRAB</code></a>, | 
| 783 | 
            -
             | 
| 784 | 
            -
             | 
| 785 | 
            -
             | 
| 786 | 
            -
             | 
| 787 | 
            -
            </td>
         | 
| 738 | 
            +
            <td>the crossing mode (<a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-NORMAL:CAPS"><code class="literal">GDK_CROSSING_NORMAL</code></a>, <a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-GRAB:CAPS"><code class="literal">GDK_CROSSING_GRAB</code></a>,
         | 
| 739 | 
            +
            <a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-UNGRAB:CAPS"><code class="literal">GDK_CROSSING_UNGRAB</code></a>, <a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-GTK-GRAB:CAPS"><code class="literal">GDK_CROSSING_GTK_GRAB</code></a>, <a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-GTK-UNGRAB:CAPS"><code class="literal">GDK_CROSSING_GTK_UNGRAB</code></a> or
         | 
| 740 | 
            +
            <a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-STATE-CHANGED:CAPS"><code class="literal">GDK_CROSSING_STATE_CHANGED</code></a>).  <a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-GTK-GRAB:CAPS"><code class="literal">GDK_CROSSING_GTK_GRAB</code></a>, <a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-GTK-UNGRAB:CAPS"><code class="literal">GDK_CROSSING_GTK_UNGRAB</code></a>,
         | 
| 741 | 
            +
            and <a class="link" href="gdk-Event-Structures.html#GDK-CROSSING-STATE-CHANGED:CAPS"><code class="literal">GDK_CROSSING_STATE_CHANGED</code></a> were added in 2.14 and are always synthesized,
         | 
| 742 | 
            +
            never native.</td>
         | 
| 788 743 | 
             
            </tr>
         | 
| 789 744 | 
             
            <tr>
         | 
| 790 745 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkNotifyType" title="enum GdkNotifyType"><span class="type">GdkNotifyType</span></a> <em class="structfield"><code><a name="GdkEventCrossing.detail"></a>detail</code></em>;</span></p></td>
         | 
| 791 746 | 
             
            <td>the kind of crossing that happened (<a class="link" href="gdk-Event-Structures.html#GDK-NOTIFY-INFERIOR:CAPS"><code class="literal">GDK_NOTIFY_INFERIOR</code></a>,
         | 
| 792 | 
            -
             | 
| 793 | 
            -
             | 
| 794 | 
            -
            </td>
         | 
| 747 | 
            +
            <a class="link" href="gdk-Event-Structures.html#GDK-NOTIFY-ANCESTOR:CAPS"><code class="literal">GDK_NOTIFY_ANCESTOR</code></a>, <a class="link" href="gdk-Event-Structures.html#GDK-NOTIFY-VIRTUAL:CAPS"><code class="literal">GDK_NOTIFY_VIRTUAL</code></a>, <a class="link" href="gdk-Event-Structures.html#GDK-NOTIFY-NONLINEAR:CAPS"><code class="literal">GDK_NOTIFY_NONLINEAR</code></a> or
         | 
| 748 | 
            +
            <a class="link" href="gdk-Event-Structures.html#GDK-NOTIFY-NONLINEAR-VIRTUAL:CAPS"><code class="literal">GDK_NOTIFY_NONLINEAR_VIRTUAL</code></a>).</td>
         | 
| 795 749 | 
             
            </tr>
         | 
| 796 750 | 
             
            <tr>
         | 
| 797 751 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> <em class="structfield"><code><a name="GdkEventCrossing.focus"></a>focus</code></em>;</span></p></td>
         | 
| 798 752 | 
             
            <td>
         | 
| 799 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>window</code></em> is the focus window or an inferior | 
| 800 | 
            -
            </td>
         | 
| 753 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>window</code></em> is the focus window or an inferior.</td>
         | 
| 801 754 | 
             
            </tr>
         | 
| 802 755 | 
             
            <tr>
         | 
| 803 756 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GdkEventCrossing.state"></a>state</code></em>;</span></p></td>
         | 
| 804 757 | 
             
            <td>a bit-mask representing the state of the modifier keys (e.g. Control,
         | 
| 805 | 
            -
             | 
| 806 | 
            -
            </td>
         | 
| 758 | 
            +
            Shift and Alt) and the pointer buttons. See <a class="link" href="gdk-Windows.html#GdkModifierType" title="enum GdkModifierType"><span class="type">GdkModifierType</span></a>.</td>
         | 
| 807 759 | 
             
            </tr>
         | 
| 808 760 | 
             
            </tbody>
         | 
| 809 761 | 
             
            </table></div>
         | 
| 810 762 | 
             
            </div>
         | 
| 811 763 | 
             
            <hr>
         | 
| 812 | 
            -
            <div class="refsect2" | 
| 813 | 
            -
            <a name="GdkEventFocus"></a><h3>GdkEventFocus</h3>
         | 
| 814 | 
            -
            <pre class="programlisting"> | 
| 764 | 
            +
            <div class="refsect2">
         | 
| 765 | 
            +
            <a name="GdkEventFocus"></a><h3>struct GdkEventFocus</h3>
         | 
| 766 | 
            +
            <pre class="programlisting">struct GdkEventFocus {
         | 
| 815 767 | 
             
              GdkEventType type;
         | 
| 816 768 | 
             
              GdkWindow *window;
         | 
| 817 769 | 
             
              gint8 send_event;
         | 
| 818 770 | 
             
              gint16 in;
         | 
| 819 | 
            -
            } | 
| 771 | 
            +
            };
         | 
| 820 772 | 
             
            </pre>
         | 
| 821 773 | 
             
            <p>
         | 
| 822 774 | 
             
            Describes a change of keyboard focus.
         | 
| @@ -826,41 +778,37 @@ Describes a change of keyboard focus. | |
| 826 778 | 
             
            <tbody>
         | 
| 827 779 | 
             
            <tr>
         | 
| 828 780 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventFocus.type"></a>type</code></em>;</span></p></td>
         | 
| 829 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-FOCUS-CHANGE:CAPS"><code class="literal">GDK_FOCUS_CHANGE</code></a>) | 
| 830 | 
            -
            </td>
         | 
| 781 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-FOCUS-CHANGE:CAPS"><code class="literal">GDK_FOCUS_CHANGE</code></a>).</td>
         | 
| 831 782 | 
             
            </tr>
         | 
| 832 783 | 
             
            <tr>
         | 
| 833 784 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventFocus.window"></a>window</code></em>;</span></p></td>
         | 
| 834 | 
            -
            <td>the window which received the event | 
| 835 | 
            -
            </td>
         | 
| 785 | 
            +
            <td>the window which received the event.</td>
         | 
| 836 786 | 
             
            </tr>
         | 
| 837 787 | 
             
            <tr>
         | 
| 838 788 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventFocus.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 839 789 | 
             
            <td>
         | 
| 840 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 841 | 
            -
            </td>
         | 
| 790 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 842 791 | 
             
            </tr>
         | 
| 843 792 | 
             
            <tr>
         | 
| 844 793 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint16"><span class="type">gint16</span></a> <em class="structfield"><code><a name="GdkEventFocus.in"></a>in</code></em>;</span></p></td>
         | 
| 845 794 | 
             
            <td>
         | 
| 846 795 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the window has gained the keyboard focus, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if it has lost
         | 
| 847 | 
            -
            the focus | 
| 848 | 
            -
            </td>
         | 
| 796 | 
            +
            the focus.</td>
         | 
| 849 797 | 
             
            </tr>
         | 
| 850 798 | 
             
            </tbody>
         | 
| 851 799 | 
             
            </table></div>
         | 
| 852 800 | 
             
            </div>
         | 
| 853 801 | 
             
            <hr>
         | 
| 854 | 
            -
            <div class="refsect2" | 
| 855 | 
            -
            <a name="GdkEventConfigure"></a><h3>GdkEventConfigure</h3>
         | 
| 856 | 
            -
            <pre class="programlisting"> | 
| 802 | 
            +
            <div class="refsect2">
         | 
| 803 | 
            +
            <a name="GdkEventConfigure"></a><h3>struct GdkEventConfigure</h3>
         | 
| 804 | 
            +
            <pre class="programlisting">struct GdkEventConfigure {
         | 
| 857 805 | 
             
              GdkEventType type;
         | 
| 858 806 | 
             
              GdkWindow *window;
         | 
| 859 807 | 
             
              gint8 send_event;
         | 
| 860 808 | 
             
              gint x, y;
         | 
| 861 809 | 
             
              gint width;
         | 
| 862 810 | 
             
              gint height;
         | 
| 863 | 
            -
            } | 
| 811 | 
            +
            };
         | 
| 864 812 | 
             
            </pre>
         | 
| 865 813 | 
             
            <p>
         | 
| 866 814 | 
             
            Generated when a window size or position has changed.
         | 
| @@ -870,54 +818,47 @@ Generated when a window size or position has changed. | |
| 870 818 | 
             
            <tbody>
         | 
| 871 819 | 
             
            <tr>
         | 
| 872 820 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventConfigure.type"></a>type</code></em>;</span></p></td>
         | 
| 873 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-CONFIGURE:CAPS"><code class="literal">GDK_CONFIGURE</code></a>) | 
| 874 | 
            -
            </td>
         | 
| 821 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-CONFIGURE:CAPS"><code class="literal">GDK_CONFIGURE</code></a>).</td>
         | 
| 875 822 | 
             
            </tr>
         | 
| 876 823 | 
             
            <tr>
         | 
| 877 824 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventConfigure.window"></a>window</code></em>;</span></p></td>
         | 
| 878 | 
            -
            <td>the window which received the event | 
| 879 | 
            -
            </td>
         | 
| 825 | 
            +
            <td>the window which received the event.</td>
         | 
| 880 826 | 
             
            </tr>
         | 
| 881 827 | 
             
            <tr>
         | 
| 882 828 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventConfigure.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 883 829 | 
             
            <td>
         | 
| 884 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 885 | 
            -
            </td>
         | 
| 830 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 886 831 | 
             
            </tr>
         | 
| 887 832 | 
             
            <tr>
         | 
| 888 833 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkEventConfigure.x"></a>x</code></em>;</span></p></td>
         | 
| 889 | 
            -
            <td>the new x coordinate of the window, relative to its parent | 
| 890 | 
            -
            </td>
         | 
| 834 | 
            +
            <td>the new x coordinate of the window, relative to its parent.</td>
         | 
| 891 835 | 
             
            </tr>
         | 
| 892 836 | 
             
            <tr>
         | 
| 893 837 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkEventConfigure.y"></a>y</code></em>;</span></p></td>
         | 
| 894 | 
            -
            <td>the new y coordinate of the window, relative to its parent | 
| 895 | 
            -
            </td>
         | 
| 838 | 
            +
            <td>the new y coordinate of the window, relative to its parent.</td>
         | 
| 896 839 | 
             
            </tr>
         | 
| 897 840 | 
             
            <tr>
         | 
| 898 841 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkEventConfigure.width"></a>width</code></em>;</span></p></td>
         | 
| 899 | 
            -
            <td>the new width of the window | 
| 900 | 
            -
            </td>
         | 
| 842 | 
            +
            <td>the new width of the window.</td>
         | 
| 901 843 | 
             
            </tr>
         | 
| 902 844 | 
             
            <tr>
         | 
| 903 845 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkEventConfigure.height"></a>height</code></em>;</span></p></td>
         | 
| 904 | 
            -
            <td>the new height of the window | 
| 905 | 
            -
            </td>
         | 
| 846 | 
            +
            <td>the new height of the window.</td>
         | 
| 906 847 | 
             
            </tr>
         | 
| 907 848 | 
             
            </tbody>
         | 
| 908 849 | 
             
            </table></div>
         | 
| 909 850 | 
             
            </div>
         | 
| 910 851 | 
             
            <hr>
         | 
| 911 | 
            -
            <div class="refsect2" | 
| 912 | 
            -
            <a name="GdkEventProperty"></a><h3>GdkEventProperty</h3>
         | 
| 913 | 
            -
            <pre class="programlisting"> | 
| 852 | 
            +
            <div class="refsect2">
         | 
| 853 | 
            +
            <a name="GdkEventProperty"></a><h3>struct GdkEventProperty</h3>
         | 
| 854 | 
            +
            <pre class="programlisting">struct GdkEventProperty {
         | 
| 914 855 | 
             
              GdkEventType type;
         | 
| 915 856 | 
             
              GdkWindow *window;
         | 
| 916 857 | 
             
              gint8 send_event;
         | 
| 917 858 | 
             
              GdkAtom atom;
         | 
| 918 859 | 
             
              guint32 time;
         | 
| 919 860 | 
             
              guint state;
         | 
| 920 | 
            -
            } | 
| 861 | 
            +
            };
         | 
| 921 862 | 
             
            </pre>
         | 
| 922 863 | 
             
            <p>
         | 
| 923 864 | 
             
            Describes a property change on a window.
         | 
| @@ -927,43 +868,37 @@ Describes a property change on a window. | |
| 927 868 | 
             
            <tbody>
         | 
| 928 869 | 
             
            <tr>
         | 
| 929 870 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventProperty.type"></a>type</code></em>;</span></p></td>
         | 
| 930 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-PROPERTY-NOTIFY:CAPS"><code class="literal">GDK_PROPERTY_NOTIFY</code></a>) | 
| 931 | 
            -
            </td>
         | 
| 871 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-PROPERTY-NOTIFY:CAPS"><code class="literal">GDK_PROPERTY_NOTIFY</code></a>).</td>
         | 
| 932 872 | 
             
            </tr>
         | 
| 933 873 | 
             
            <tr>
         | 
| 934 874 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventProperty.window"></a>window</code></em>;</span></p></td>
         | 
| 935 | 
            -
            <td>the window which received the event | 
| 936 | 
            -
            </td>
         | 
| 875 | 
            +
            <td>the window which received the event.</td>
         | 
| 937 876 | 
             
            </tr>
         | 
| 938 877 | 
             
            <tr>
         | 
| 939 878 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventProperty.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 940 879 | 
             
            <td>
         | 
| 941 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 942 | 
            -
            </td>
         | 
| 880 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 943 881 | 
             
            </tr>
         | 
| 944 882 | 
             
            <tr>
         | 
| 945 883 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> <em class="structfield"><code><a name="GdkEventProperty.atom"></a>atom</code></em>;</span></p></td>
         | 
| 946 | 
            -
            <td>the property that was changed | 
| 947 | 
            -
            </td>
         | 
| 884 | 
            +
            <td>the property that was changed.</td>
         | 
| 948 885 | 
             
            </tr>
         | 
| 949 886 | 
             
            <tr>
         | 
| 950 887 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventProperty.time"></a>time</code></em>;</span></p></td>
         | 
| 951 | 
            -
            <td>the time of the event in milliseconds | 
| 952 | 
            -
            </td>
         | 
| 888 | 
            +
            <td>the time of the event in milliseconds.</td>
         | 
| 953 889 | 
             
            </tr>
         | 
| 954 890 | 
             
            <tr>
         | 
| 955 891 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GdkEventProperty.state"></a>state</code></em>;</span></p></td>
         | 
| 956 892 | 
             
            <td>whether the property was changed (<a class="link" href="gdk-Event-Structures.html#GDK-PROPERTY-NEW-VALUE:CAPS"><code class="literal">GDK_PROPERTY_NEW_VALUE</code></a>) or
         | 
| 957 | 
            -
            deleted (<a class="link" href="gdk-Event-Structures.html#GDK-PROPERTY-DELETE:CAPS"><code class="literal">GDK_PROPERTY_DELETE</code></a>) | 
| 958 | 
            -
            </td>
         | 
| 893 | 
            +
            deleted (<a class="link" href="gdk-Event-Structures.html#GDK-PROPERTY-DELETE:CAPS"><code class="literal">GDK_PROPERTY_DELETE</code></a>).</td>
         | 
| 959 894 | 
             
            </tr>
         | 
| 960 895 | 
             
            </tbody>
         | 
| 961 896 | 
             
            </table></div>
         | 
| 962 897 | 
             
            </div>
         | 
| 963 898 | 
             
            <hr>
         | 
| 964 | 
            -
            <div class="refsect2" | 
| 965 | 
            -
            <a name="GdkEventSelection"></a><h3>GdkEventSelection</h3>
         | 
| 966 | 
            -
            <pre class="programlisting"> | 
| 899 | 
            +
            <div class="refsect2">
         | 
| 900 | 
            +
            <a name="GdkEventSelection"></a><h3>struct GdkEventSelection</h3>
         | 
| 901 | 
            +
            <pre class="programlisting">struct GdkEventSelection {
         | 
| 967 902 | 
             
              GdkEventType type;
         | 
| 968 903 | 
             
              GdkWindow *window;
         | 
| 969 904 | 
             
              gint8 send_event;
         | 
| @@ -972,7 +907,7 @@ deleted (<a class="link" href="gdk-Event-Structures.html#GDK-PROPERTY-DELETE:CAP | |
| 972 907 | 
             
              GdkAtom property;
         | 
| 973 908 | 
             
              guint32 time;
         | 
| 974 909 | 
             
              GdkNativeWindow requestor;
         | 
| 975 | 
            -
            } | 
| 910 | 
            +
            };
         | 
| 976 911 | 
             
            </pre>
         | 
| 977 912 | 
             
            <p>
         | 
| 978 913 | 
             
            Generated when a selection is requested or ownership of a selection
         | 
| @@ -983,61 +918,55 @@ is taken over by another client application. | |
| 983 918 | 
             
            <tbody>
         | 
| 984 919 | 
             
            <tr>
         | 
| 985 920 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventSelection.type"></a>type</code></em>;</span></p></td>
         | 
| 986 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-SELECTION-CLEAR:CAPS"><code class="literal">GDK_SELECTION_CLEAR</code></a>, <a class="link" href="gdk-Events.html#GDK-SELECTION-NOTIFY:CAPS"><code class="literal">GDK_SELECTION_NOTIFY</code></a> or | 
| 987 | 
            -
            <a class="link" href="gdk-Events.html#GDK-SELECTION-REQUEST:CAPS"><code class="literal">GDK_SELECTION_REQUEST</code></a>) | 
| 988 | 
            -
            </td>
         | 
| 921 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-SELECTION-CLEAR:CAPS"><code class="literal">GDK_SELECTION_CLEAR</code></a>, <a class="link" href="gdk-Events.html#GDK-SELECTION-NOTIFY:CAPS"><code class="literal">GDK_SELECTION_NOTIFY</code></a> or
         | 
| 922 | 
            +
            <a class="link" href="gdk-Events.html#GDK-SELECTION-REQUEST:CAPS"><code class="literal">GDK_SELECTION_REQUEST</code></a>).</td>
         | 
| 989 923 | 
             
            </tr>
         | 
| 990 924 | 
             
            <tr>
         | 
| 991 925 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventSelection.window"></a>window</code></em>;</span></p></td>
         | 
| 992 | 
            -
            <td>the window which received the event | 
| 993 | 
            -
            </td>
         | 
| 926 | 
            +
            <td>the window which received the event.</td>
         | 
| 994 927 | 
             
            </tr>
         | 
| 995 928 | 
             
            <tr>
         | 
| 996 929 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventSelection.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 997 930 | 
             
            <td>
         | 
| 998 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 999 | 
            -
            </td>
         | 
| 931 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 1000 932 | 
             
            </tr>
         | 
| 1001 933 | 
             
            <tr>
         | 
| 1002 934 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> <em class="structfield"><code><a name="GdkEventSelection.selection"></a>selection</code></em>;</span></p></td>
         | 
| 1003 | 
            -
            <td>the selection | 
| 1004 | 
            -
            </td>
         | 
| 935 | 
            +
            <td>the selection.</td>
         | 
| 1005 936 | 
             
            </tr>
         | 
| 1006 937 | 
             
            <tr>
         | 
| 1007 938 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> <em class="structfield"><code><a name="GdkEventSelection.target"></a>target</code></em>;</span></p></td>
         | 
| 1008 | 
            -
            <td>the target to which the selection should be converted | 
| 1009 | 
            -
            </td>
         | 
| 939 | 
            +
            <td>the target to which the selection should be converted.</td>
         | 
| 1010 940 | 
             
            </tr>
         | 
| 1011 941 | 
             
            <tr>
         | 
| 1012 942 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> <em class="structfield"><code><a name="GdkEventSelection.property"></a>property</code></em>;</span></p></td>
         | 
| 1013 | 
            -
            <td>the property in which to place the result of the conversion | 
| 1014 | 
            -
            </td>
         | 
| 943 | 
            +
            <td>the property in which to place the result of the conversion.</td>
         | 
| 1015 944 | 
             
            </tr>
         | 
| 1016 945 | 
             
            <tr>
         | 
| 1017 946 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventSelection.time"></a>time</code></em>;</span></p></td>
         | 
| 1018 | 
            -
            <td>the time of the event in milliseconds | 
| 1019 | 
            -
            </td>
         | 
| 947 | 
            +
            <td>the time of the event in milliseconds.</td>
         | 
| 1020 948 | 
             
            </tr>
         | 
| 1021 949 | 
             
            <tr>
         | 
| 1022 950 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> <em class="structfield"><code><a name="GdkEventSelection.requestor"></a>requestor</code></em>;</span></p></td>
         | 
| 1023 | 
            -
            <td>the native window on which to place <em class="parameter"><code>property</code></em | 
| 1024 | 
            -
            </td>
         | 
| 951 | 
            +
            <td>the native window on which to place <em class="parameter"><code>property</code></em>.</td>
         | 
| 1025 952 | 
             
            </tr>
         | 
| 1026 953 | 
             
            </tbody>
         | 
| 1027 954 | 
             
            </table></div>
         | 
| 1028 955 | 
             
            </div>
         | 
| 1029 956 | 
             
            <hr>
         | 
| 1030 | 
            -
            <div class="refsect2" | 
| 957 | 
            +
            <div class="refsect2">
         | 
| 1031 958 | 
             
            <a name="GdkNativeWindow"></a><h3>GdkNativeWindow</h3>
         | 
| 959 | 
            +
            <pre class="programlisting">typedef gpointer GdkNativeWindow;
         | 
| 960 | 
            +
            </pre>
         | 
| 1032 961 | 
             
            <p>
         | 
| 1033 962 | 
             
            Used to represent native windows (<span class="type">Window</span>s for the X11 backend,
         | 
| 1034 963 | 
             
            <span class="type">HWND</span>s for Win32).
         | 
| 1035 964 | 
             
            </p>
         | 
| 1036 965 | 
             
            </div>
         | 
| 1037 966 | 
             
            <hr>
         | 
| 1038 | 
            -
            <div class="refsect2" | 
| 1039 | 
            -
            <a name="GdkEventDND"></a><h3>GdkEventDND</h3>
         | 
| 1040 | 
            -
            <pre class="programlisting"> | 
| 967 | 
            +
            <div class="refsect2">
         | 
| 968 | 
            +
            <a name="GdkEventDND"></a><h3>struct GdkEventDND</h3>
         | 
| 969 | 
            +
            <pre class="programlisting">struct GdkEventDND {
         | 
| 1041 970 | 
             
              GdkEventType type;
         | 
| 1042 971 | 
             
              GdkWindow *window;
         | 
| 1043 972 | 
             
              gint8 send_event;
         | 
| @@ -1045,7 +974,7 @@ Used to represent native windows (<span class="type">Window</span>s for the X11 | |
| 1045 974 |  | 
| 1046 975 | 
             
              guint32 time;
         | 
| 1047 976 | 
             
              gshort x_root, y_root;
         | 
| 1048 | 
            -
            } | 
| 977 | 
            +
            };
         | 
| 1049 978 | 
             
            </pre>
         | 
| 1050 979 | 
             
            <p>
         | 
| 1051 980 | 
             
            Generated during DND operations.
         | 
| @@ -1056,55 +985,48 @@ Generated during DND operations. | |
| 1056 985 | 
             
            <tr>
         | 
| 1057 986 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventDND.type"></a>type</code></em>;</span></p></td>
         | 
| 1058 987 | 
             
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-DRAG-ENTER:CAPS"><code class="literal">GDK_DRAG_ENTER</code></a>, <a class="link" href="gdk-Events.html#GDK-DRAG-LEAVE:CAPS"><code class="literal">GDK_DRAG_LEAVE</code></a>,
         | 
| 1059 | 
            -
             | 
| 1060 | 
            -
            </td>
         | 
| 988 | 
            +
            <a class="link" href="gdk-Events.html#GDK-DRAG-MOTION:CAPS"><code class="literal">GDK_DRAG_MOTION</code></a>, <a class="link" href="gdk-Events.html#GDK-DRAG-STATUS:CAPS"><code class="literal">GDK_DRAG_STATUS</code></a>, <a class="link" href="gdk-Events.html#GDK-DROP-START:CAPS"><code class="literal">GDK_DROP_START</code></a> or <a class="link" href="gdk-Events.html#GDK-DROP-FINISHED:CAPS"><code class="literal">GDK_DROP_FINISHED</code></a>).</td>
         | 
| 1061 989 | 
             
            </tr>
         | 
| 1062 990 | 
             
            <tr>
         | 
| 1063 991 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventDND.window"></a>window</code></em>;</span></p></td>
         | 
| 1064 | 
            -
            <td>the window which received the event | 
| 1065 | 
            -
            </td>
         | 
| 992 | 
            +
            <td>the window which received the event.</td>
         | 
| 1066 993 | 
             
            </tr>
         | 
| 1067 994 | 
             
            <tr>
         | 
| 1068 995 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventDND.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 1069 996 | 
             
            <td>
         | 
| 1070 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 1071 | 
            -
            </td>
         | 
| 997 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 1072 998 | 
             
            </tr>
         | 
| 1073 999 | 
             
            <tr>
         | 
| 1074 | 
            -
            <td><p><span class="term"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *<em class="structfield"><code><a name="GdkEventDND.context"></a>context</code></em>;</span></p></td>
         | 
| 1075 | 
            -
            <td>the <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> for the current DND operation | 
| 1076 | 
            -
            </td>
         | 
| 1000 | 
            +
            <td><p><span class="term"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *<em class="structfield"><code><a name="GdkEventDND.context"></a>context</code></em>;</span></p></td>
         | 
| 1001 | 
            +
            <td>the <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> for the current DND operation.</td>
         | 
| 1077 1002 | 
             
            </tr>
         | 
| 1078 1003 | 
             
            <tr>
         | 
| 1079 1004 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventDND.time"></a>time</code></em>;</span></p></td>
         | 
| 1080 | 
            -
            <td>the time of the event in milliseconds | 
| 1081 | 
            -
            </td>
         | 
| 1005 | 
            +
            <td>the time of the event in milliseconds.</td>
         | 
| 1082 1006 | 
             
            </tr>
         | 
| 1083 1007 | 
             
            <tr>
         | 
| 1084 1008 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gshort"><span class="type">gshort</span></a> <em class="structfield"><code><a name="GdkEventDND.x-root"></a>x_root</code></em>;</span></p></td>
         | 
| 1085 1009 | 
             
            <td>the x coordinate of the pointer relative to the root of the screen,
         | 
| 1086 | 
            -
             | 
| 1087 | 
            -
            </td>
         | 
| 1010 | 
            +
            only set for <a class="link" href="gdk-Events.html#GDK-DRAG-MOTION:CAPS"><code class="literal">GDK_DRAG_MOTION</code></a> and <a class="link" href="gdk-Events.html#GDK-DROP-START:CAPS"><code class="literal">GDK_DROP_START</code></a>.</td>
         | 
| 1088 1011 | 
             
            </tr>
         | 
| 1089 1012 | 
             
            <tr>
         | 
| 1090 1013 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gshort"><span class="type">gshort</span></a> <em class="structfield"><code><a name="GdkEventDND.y-root"></a>y_root</code></em>;</span></p></td>
         | 
| 1091 1014 | 
             
            <td>the y coordinate of the pointer relative to the root of the screen,
         | 
| 1092 | 
            -
             | 
| 1093 | 
            -
            </td>
         | 
| 1015 | 
            +
            only set for <a class="link" href="gdk-Events.html#GDK-DRAG-MOTION:CAPS"><code class="literal">GDK_DRAG_MOTION</code></a> and <a class="link" href="gdk-Events.html#GDK-DROP-START:CAPS"><code class="literal">GDK_DROP_START</code></a>.</td>
         | 
| 1094 1016 | 
             
            </tr>
         | 
| 1095 1017 | 
             
            </tbody>
         | 
| 1096 1018 | 
             
            </table></div>
         | 
| 1097 1019 | 
             
            </div>
         | 
| 1098 1020 | 
             
            <hr>
         | 
| 1099 | 
            -
            <div class="refsect2" | 
| 1100 | 
            -
            <a name="GdkEventProximity"></a><h3>GdkEventProximity</h3>
         | 
| 1101 | 
            -
            <pre class="programlisting"> | 
| 1021 | 
            +
            <div class="refsect2">
         | 
| 1022 | 
            +
            <a name="GdkEventProximity"></a><h3>struct GdkEventProximity</h3>
         | 
| 1023 | 
            +
            <pre class="programlisting">struct GdkEventProximity {
         | 
| 1102 1024 | 
             
              GdkEventType type;
         | 
| 1103 1025 | 
             
              GdkWindow *window;
         | 
| 1104 1026 | 
             
              gint8 send_event;
         | 
| 1105 1027 | 
             
              guint32 time;
         | 
| 1106 1028 | 
             
              GdkDevice *device;
         | 
| 1107 | 
            -
            } | 
| 1029 | 
            +
            };
         | 
| 1108 1030 | 
             
            </pre>
         | 
| 1109 1031 | 
             
            <p>
         | 
| 1110 1032 | 
             
            Proximity events are generated when using GDK's wrapper for the
         | 
| @@ -1119,37 +1041,32 @@ in or out of contact with a touch screen. | |
| 1119 1041 | 
             
            <tbody>
         | 
| 1120 1042 | 
             
            <tr>
         | 
| 1121 1043 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventProximity.type"></a>type</code></em>;</span></p></td>
         | 
| 1122 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-PROXIMITY-IN:CAPS"><code class="literal">GDK_PROXIMITY_IN</code></a> or <a class="link" href="gdk-Events.html#GDK-PROXIMITY-OUT:CAPS"><code class="literal">GDK_PROXIMITY_OUT</code></a>) | 
| 1123 | 
            -
            </td>
         | 
| 1044 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-PROXIMITY-IN:CAPS"><code class="literal">GDK_PROXIMITY_IN</code></a> or <a class="link" href="gdk-Events.html#GDK-PROXIMITY-OUT:CAPS"><code class="literal">GDK_PROXIMITY_OUT</code></a>).</td>
         | 
| 1124 1045 | 
             
            </tr>
         | 
| 1125 1046 | 
             
            <tr>
         | 
| 1126 1047 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventProximity.window"></a>window</code></em>;</span></p></td>
         | 
| 1127 | 
            -
            <td>the window which received the event | 
| 1128 | 
            -
            </td>
         | 
| 1048 | 
            +
            <td>the window which received the event.</td>
         | 
| 1129 1049 | 
             
            </tr>
         | 
| 1130 1050 | 
             
            <tr>
         | 
| 1131 1051 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventProximity.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 1132 1052 | 
             
            <td>
         | 
| 1133 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 1134 | 
            -
            </td>
         | 
| 1053 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 1135 1054 | 
             
            </tr>
         | 
| 1136 1055 | 
             
            <tr>
         | 
| 1137 1056 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventProximity.time"></a>time</code></em>;</span></p></td>
         | 
| 1138 | 
            -
            <td>the time of the event in milliseconds | 
| 1139 | 
            -
            </td>
         | 
| 1057 | 
            +
            <td>the time of the event in milliseconds.</td>
         | 
| 1140 1058 | 
             
            </tr>
         | 
| 1141 1059 | 
             
            <tr>
         | 
| 1142 | 
            -
            <td><p><span class="term"><a class="link" href="gdk-Input-Devices.html#GdkDevice" title="GdkDevice"><span class="type">GdkDevice</span></a> *<em class="structfield"><code><a name="GdkEventProximity.device"></a>device</code></em>;</span></p></td>
         | 
| 1143 | 
            -
            <td>the device where the event originated | 
| 1144 | 
            -
            </td>
         | 
| 1060 | 
            +
            <td><p><span class="term"><a class="link" href="gdk-Input-Devices.html#GdkDevice" title="struct GdkDevice"><span class="type">GdkDevice</span></a> *<em class="structfield"><code><a name="GdkEventProximity.device"></a>device</code></em>;</span></p></td>
         | 
| 1061 | 
            +
            <td>the device where the event originated.</td>
         | 
| 1145 1062 | 
             
            </tr>
         | 
| 1146 1063 | 
             
            </tbody>
         | 
| 1147 1064 | 
             
            </table></div>
         | 
| 1148 1065 | 
             
            </div>
         | 
| 1149 1066 | 
             
            <hr>
         | 
| 1150 | 
            -
            <div class="refsect2" | 
| 1151 | 
            -
            <a name="GdkEventClient"></a><h3>GdkEventClient</h3>
         | 
| 1152 | 
            -
            <pre class="programlisting"> | 
| 1067 | 
            +
            <div class="refsect2">
         | 
| 1068 | 
            +
            <a name="GdkEventClient"></a><h3>struct GdkEventClient</h3>
         | 
| 1069 | 
            +
            <pre class="programlisting">struct GdkEventClient {
         | 
| 1153 1070 | 
             
              GdkEventType type;
         | 
| 1154 1071 | 
             
              GdkWindow *window;
         | 
| 1155 1072 | 
             
              gint8 send_event;
         | 
| @@ -1160,7 +1077,7 @@ in or out of contact with a touch screen. | |
| 1160 1077 | 
             
                short s[10];
         | 
| 1161 1078 | 
             
                long l[5];
         | 
| 1162 1079 | 
             
              } data;
         | 
| 1163 | 
            -
            } | 
| 1080 | 
            +
            };
         | 
| 1164 1081 | 
             
            </pre>
         | 
| 1165 1082 | 
             
            <p>
         | 
| 1166 1083 | 
             
            An event sent by another client application.
         | 
| @@ -1170,44 +1087,39 @@ An event sent by another client application. | |
| 1170 1087 | 
             
            <tbody>
         | 
| 1171 1088 | 
             
            <tr>
         | 
| 1172 1089 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventClient.type"></a>type</code></em>;</span></p></td>
         | 
| 1173 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-CLIENT-EVENT:CAPS"><code class="literal">GDK_CLIENT_EVENT</code></a>) | 
| 1174 | 
            -
            </td>
         | 
| 1090 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-CLIENT-EVENT:CAPS"><code class="literal">GDK_CLIENT_EVENT</code></a>).</td>
         | 
| 1175 1091 | 
             
            </tr>
         | 
| 1176 1092 | 
             
            <tr>
         | 
| 1177 1093 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventClient.window"></a>window</code></em>;</span></p></td>
         | 
| 1178 | 
            -
            <td>the window which received the event | 
| 1179 | 
            -
            </td>
         | 
| 1094 | 
            +
            <td>the window which received the event.</td>
         | 
| 1180 1095 | 
             
            </tr>
         | 
| 1181 1096 | 
             
            <tr>
         | 
| 1182 1097 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventClient.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 1183 1098 | 
             
            <td>
         | 
| 1184 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 1185 | 
            -
            </td>
         | 
| 1099 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 1186 1100 | 
             
            </tr>
         | 
| 1187 1101 | 
             
            <tr>
         | 
| 1188 1102 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> <em class="structfield"><code><a name="GdkEventClient.message-type"></a>message_type</code></em>;</span></p></td>
         | 
| 1189 1103 | 
             
            <td>the type of the message, which can be defined by the
         | 
| 1190 | 
            -
            application | 
| 1191 | 
            -
            </td>
         | 
| 1104 | 
            +
            application.</td>
         | 
| 1192 1105 | 
             
            </tr>
         | 
| 1193 1106 | 
             
            <tr>
         | 
| 1194 1107 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gushort"><span class="type">gushort</span></a> <em class="structfield"><code><a name="GdkEventClient.data-format"></a>data_format</code></em>;</span></p></td>
         | 
| 1195 1108 | 
             
            <td>the format of the data, given as the number of bits in each
         | 
| 1196 1109 | 
             
            data element, i.e. 8, 16, or 32. 8-bit data uses the b array of the data
         | 
| 1197 | 
            -
            union, 16-bit data uses the s array, and 32-bit data uses the l array | 
| 1198 | 
            -
            </td>
         | 
| 1110 | 
            +
            union, 16-bit data uses the s array, and 32-bit data uses the l array.</td>
         | 
| 1199 1111 | 
             
            </tr>
         | 
| 1200 1112 | 
             
            </tbody>
         | 
| 1201 1113 | 
             
            </table></div>
         | 
| 1202 1114 | 
             
            </div>
         | 
| 1203 1115 | 
             
            <hr>
         | 
| 1204 | 
            -
            <div class="refsect2" | 
| 1205 | 
            -
            <a name="GdkEventNoExpose"></a><h3>GdkEventNoExpose</h3>
         | 
| 1206 | 
            -
            <pre class="programlisting"> | 
| 1116 | 
            +
            <div class="refsect2">
         | 
| 1117 | 
            +
            <a name="GdkEventNoExpose"></a><h3>struct GdkEventNoExpose</h3>
         | 
| 1118 | 
            +
            <pre class="programlisting">struct GdkEventNoExpose {
         | 
| 1207 1119 | 
             
              GdkEventType type;
         | 
| 1208 1120 | 
             
              GdkWindow *window;
         | 
| 1209 1121 | 
             
              gint8 send_event;
         | 
| 1210 | 
            -
            } | 
| 1122 | 
            +
            };
         | 
| 1211 1123 | 
             
            </pre>
         | 
| 1212 1124 | 
             
            <p>
         | 
| 1213 1125 | 
             
            Generated when the area of a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> being copied, with <a class="link" href="gdk-Drawing-Primitives.html#gdk-draw-drawable" title="gdk_draw_drawable ()"><code class="function">gdk_draw_drawable()</code></a>
         | 
| @@ -1221,33 +1133,30 @@ FIXME: add more here. | |
| 1221 1133 | 
             
            <tbody>
         | 
| 1222 1134 | 
             
            <tr>
         | 
| 1223 1135 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventNoExpose.type"></a>type</code></em>;</span></p></td>
         | 
| 1224 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-NO-EXPOSE:CAPS"><code class="literal">GDK_NO_EXPOSE</code></a>) | 
| 1225 | 
            -
            </td>
         | 
| 1136 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-NO-EXPOSE:CAPS"><code class="literal">GDK_NO_EXPOSE</code></a>).</td>
         | 
| 1226 1137 | 
             
            </tr>
         | 
| 1227 1138 | 
             
            <tr>
         | 
| 1228 1139 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventNoExpose.window"></a>window</code></em>;</span></p></td>
         | 
| 1229 | 
            -
            <td>the window which received the event | 
| 1230 | 
            -
            </td>
         | 
| 1140 | 
            +
            <td>the window which received the event.</td>
         | 
| 1231 1141 | 
             
            </tr>
         | 
| 1232 1142 | 
             
            <tr>
         | 
| 1233 1143 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventNoExpose.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 1234 1144 | 
             
            <td>
         | 
| 1235 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 1236 | 
            -
            </td>
         | 
| 1145 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 1237 1146 | 
             
            </tr>
         | 
| 1238 1147 | 
             
            </tbody>
         | 
| 1239 1148 | 
             
            </table></div>
         | 
| 1240 1149 | 
             
            </div>
         | 
| 1241 1150 | 
             
            <hr>
         | 
| 1242 | 
            -
            <div class="refsect2" | 
| 1243 | 
            -
            <a name="GdkEventWindowState"></a><h3>GdkEventWindowState</h3>
         | 
| 1244 | 
            -
            <pre class="programlisting"> | 
| 1151 | 
            +
            <div class="refsect2">
         | 
| 1152 | 
            +
            <a name="GdkEventWindowState"></a><h3>struct GdkEventWindowState</h3>
         | 
| 1153 | 
            +
            <pre class="programlisting">struct GdkEventWindowState {
         | 
| 1245 1154 | 
             
              GdkEventType type;
         | 
| 1246 1155 | 
             
              GdkWindow *window;
         | 
| 1247 1156 | 
             
              gint8 send_event;
         | 
| 1248 1157 | 
             
              GdkWindowState changed_mask;
         | 
| 1249 1158 | 
             
              GdkWindowState new_window_state;
         | 
| 1250 | 
            -
            } | 
| 1159 | 
            +
            };
         | 
| 1251 1160 | 
             
            </pre>
         | 
| 1252 1161 | 
             
            <p>
         | 
| 1253 1162 | 
             
            Generated when the state of a toplevel window changes.
         | 
| @@ -1257,43 +1166,38 @@ Generated when the state of a toplevel window changes. | |
| 1257 1166 | 
             
            <tbody>
         | 
| 1258 1167 | 
             
            <tr>
         | 
| 1259 1168 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventWindowState.type"></a>type</code></em>;</span></p></td>
         | 
| 1260 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-WINDOW-STATE:CAPS"><code class="literal">GDK_WINDOW_STATE</code></a>) | 
| 1261 | 
            -
            </td>
         | 
| 1169 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-WINDOW-STATE:CAPS"><code class="literal">GDK_WINDOW_STATE</code></a>).</td>
         | 
| 1262 1170 | 
             
            </tr>
         | 
| 1263 1171 | 
             
            <tr>
         | 
| 1264 1172 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventWindowState.window"></a>window</code></em>;</span></p></td>
         | 
| 1265 | 
            -
            <td>the window which received the event | 
| 1266 | 
            -
            </td>
         | 
| 1173 | 
            +
            <td>the window which received the event.</td>
         | 
| 1267 1174 | 
             
            </tr>
         | 
| 1268 1175 | 
             
            <tr>
         | 
| 1269 1176 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventWindowState.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 1270 1177 | 
             
            <td>
         | 
| 1271 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 1272 | 
            -
            </td>
         | 
| 1178 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 1273 1179 | 
             
            </tr>
         | 
| 1274 1180 | 
             
            <tr>
         | 
| 1275 1181 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkWindowState" title="enum GdkWindowState"><span class="type">GdkWindowState</span></a> <em class="structfield"><code><a name="GdkEventWindowState.changed-mask"></a>changed_mask</code></em>;</span></p></td>
         | 
| 1276 | 
            -
            <td>mask specifying what flags have changed | 
| 1277 | 
            -
            </td>
         | 
| 1182 | 
            +
            <td>mask specifying what flags have changed.</td>
         | 
| 1278 1183 | 
             
            </tr>
         | 
| 1279 1184 | 
             
            <tr>
         | 
| 1280 1185 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkWindowState" title="enum GdkWindowState"><span class="type">GdkWindowState</span></a> <em class="structfield"><code><a name="GdkEventWindowState.new-window-state"></a>new_window_state</code></em>;</span></p></td>
         | 
| 1281 | 
            -
            <td>the new window state, a combination of <a class="link" href="gdk-Event-Structures.html#GdkWindowState" title="enum GdkWindowState"><span class="type">GdkWindowState</span></a> bits | 
| 1282 | 
            -
            </td>
         | 
| 1186 | 
            +
            <td>the new window state, a combination of <a class="link" href="gdk-Event-Structures.html#GdkWindowState" title="enum GdkWindowState"><span class="type">GdkWindowState</span></a> bits.</td>
         | 
| 1283 1187 | 
             
            </tr>
         | 
| 1284 1188 | 
             
            </tbody>
         | 
| 1285 1189 | 
             
            </table></div>
         | 
| 1286 1190 | 
             
            </div>
         | 
| 1287 1191 | 
             
            <hr>
         | 
| 1288 | 
            -
            <div class="refsect2" | 
| 1289 | 
            -
            <a name="GdkEventSetting"></a><h3>GdkEventSetting</h3>
         | 
| 1290 | 
            -
            <pre class="programlisting"> | 
| 1192 | 
            +
            <div class="refsect2">
         | 
| 1193 | 
            +
            <a name="GdkEventSetting"></a><h3>struct GdkEventSetting</h3>
         | 
| 1194 | 
            +
            <pre class="programlisting">struct GdkEventSetting {
         | 
| 1291 1195 | 
             
              GdkEventType type;
         | 
| 1292 1196 | 
             
              GdkWindow *window;
         | 
| 1293 1197 | 
             
              gint8 send_event;
         | 
| 1294 1198 | 
             
              GdkSettingAction action;
         | 
| 1295 1199 | 
             
              char *name;
         | 
| 1296 | 
            -
            } | 
| 1200 | 
            +
            };
         | 
| 1297 1201 | 
             
            </pre>
         | 
| 1298 1202 | 
             
            <p>
         | 
| 1299 1203 | 
             
            Generated when a setting is modified.
         | 
| @@ -1303,38 +1207,33 @@ Generated when a setting is modified. | |
| 1303 1207 | 
             
            <tbody>
         | 
| 1304 1208 | 
             
            <tr>
         | 
| 1305 1209 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventSetting.type"></a>type</code></em>;</span></p></td>
         | 
| 1306 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-SETTING:CAPS"><code class="literal">GDK_SETTING</code></a>) | 
| 1307 | 
            -
            </td>
         | 
| 1210 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-SETTING:CAPS"><code class="literal">GDK_SETTING</code></a>).</td>
         | 
| 1308 1211 | 
             
            </tr>
         | 
| 1309 1212 | 
             
            <tr>
         | 
| 1310 1213 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventSetting.window"></a>window</code></em>;</span></p></td>
         | 
| 1311 | 
            -
            <td>the window which received the event | 
| 1312 | 
            -
            </td>
         | 
| 1214 | 
            +
            <td>the window which received the event.</td>
         | 
| 1313 1215 | 
             
            </tr>
         | 
| 1314 1216 | 
             
            <tr>
         | 
| 1315 1217 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventSetting.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 1316 1218 | 
             
            <td>
         | 
| 1317 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 1318 | 
            -
            </td>
         | 
| 1219 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 1319 1220 | 
             
            </tr>
         | 
| 1320 1221 | 
             
            <tr>
         | 
| 1321 1222 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkSettingAction" title="enum GdkSettingAction"><span class="type">GdkSettingAction</span></a> <em class="structfield"><code><a name="GdkEventSetting.action"></a>action</code></em>;</span></p></td>
         | 
| 1322 1223 | 
             
            <td>what happened to the setting (<a class="link" href="gdk-Event-Structures.html#GDK-SETTING-ACTION-NEW:CAPS"><code class="literal">GDK_SETTING_ACTION_NEW</code></a>,
         | 
| 1323 | 
            -
             | 
| 1324 | 
            -
            </td>
         | 
| 1224 | 
            +
            <a class="link" href="gdk-Event-Structures.html#GDK-SETTING-ACTION-CHANGED:CAPS"><code class="literal">GDK_SETTING_ACTION_CHANGED</code></a> or <a class="link" href="gdk-Event-Structures.html#GDK-SETTING-ACTION-DELETED:CAPS"><code class="literal">GDK_SETTING_ACTION_DELETED</code></a>).</td>
         | 
| 1325 1225 | 
             
            </tr>
         | 
| 1326 1226 | 
             
            <tr>
         | 
| 1327 1227 | 
             
            <td><p><span class="term"><span class="type">char</span> *<em class="structfield"><code><a name="GdkEventSetting.name"></a>name</code></em>;</span></p></td>
         | 
| 1328 | 
            -
            <td>the name of the setting | 
| 1329 | 
            -
            </td>
         | 
| 1228 | 
            +
            <td>the name of the setting.</td>
         | 
| 1330 1229 | 
             
            </tr>
         | 
| 1331 1230 | 
             
            </tbody>
         | 
| 1332 1231 | 
             
            </table></div>
         | 
| 1333 1232 | 
             
            </div>
         | 
| 1334 1233 | 
             
            <hr>
         | 
| 1335 | 
            -
            <div class="refsect2" | 
| 1336 | 
            -
            <a name="GdkEventOwnerChange"></a><h3>GdkEventOwnerChange</h3>
         | 
| 1337 | 
            -
            <pre class="programlisting"> | 
| 1234 | 
            +
            <div class="refsect2">
         | 
| 1235 | 
            +
            <a name="GdkEventOwnerChange"></a><h3>struct GdkEventOwnerChange</h3>
         | 
| 1236 | 
            +
            <pre class="programlisting">struct GdkEventOwnerChange {
         | 
| 1338 1237 | 
             
              GdkEventType type;
         | 
| 1339 1238 | 
             
              GdkWindow *window;
         | 
| 1340 1239 | 
             
              gint8 send_event;
         | 
| @@ -1343,7 +1242,7 @@ Generated when a setting is modified. | |
| 1343 1242 | 
             
              GdkAtom selection;
         | 
| 1344 1243 | 
             
              guint32 time;
         | 
| 1345 1244 | 
             
              guint32 selection_time;
         | 
| 1346 | 
            -
            } | 
| 1245 | 
            +
            };
         | 
| 1347 1246 | 
             
            </pre>
         | 
| 1348 1247 | 
             
            <p>
         | 
| 1349 1248 | 
             
            Generated when the owner of a selection changes. On X11, this information is
         | 
| @@ -1354,114 +1253,100 @@ only available if the X server supports the XFIXES extension. | |
| 1354 1253 | 
             
            <tbody>
         | 
| 1355 1254 | 
             
            <tr>
         | 
| 1356 1255 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventOwnerChange.type"></a>type</code></em>;</span></p></td>
         | 
| 1357 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-OWNER-CHANGE:CAPS"><code class="literal">GDK_OWNER_CHANGE</code></a>) | 
| 1358 | 
            -
            </td>
         | 
| 1256 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-OWNER-CHANGE:CAPS"><code class="literal">GDK_OWNER_CHANGE</code></a>).</td>
         | 
| 1359 1257 | 
             
            </tr>
         | 
| 1360 1258 | 
             
            <tr>
         | 
| 1361 1259 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventOwnerChange.window"></a>window</code></em>;</span></p></td>
         | 
| 1362 | 
            -
            <td>the window which received the event
         | 
| 1363 | 
            -
            </td>
         | 
| 1260 | 
            +
            <td>the window which received the event</td>
         | 
| 1364 1261 | 
             
            </tr>
         | 
| 1365 1262 | 
             
            <tr>
         | 
| 1366 1263 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventOwnerChange.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 1367 1264 | 
             
            <td>
         | 
| 1368 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 1369 | 
            -
            </td>
         | 
| 1265 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 1370 1266 | 
             
            </tr>
         | 
| 1371 1267 | 
             
            <tr>
         | 
| 1372 1268 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> <em class="structfield"><code><a name="GdkEventOwnerChange.owner"></a>owner</code></em>;</span></p></td>
         | 
| 1373 | 
            -
            <td>the new owner of the selection
         | 
| 1374 | 
            -
            </td>
         | 
| 1269 | 
            +
            <td>the new owner of the selection</td>
         | 
| 1375 1270 | 
             
            </tr>
         | 
| 1376 1271 | 
             
            <tr>
         | 
| 1377 1272 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Event-Structures.html#GdkOwnerChange" title="enum GdkOwnerChange"><span class="type">GdkOwnerChange</span></a> <em class="structfield"><code><a name="GdkEventOwnerChange.reason"></a>reason</code></em>;</span></p></td>
         | 
| 1378 | 
            -
            <td>the reason for the ownership change as a <a class="link" href="gdk-Event-Structures.html#GdkOwnerChange" title="enum GdkOwnerChange"><span class="type">GdkOwnerChange</span></a> value
         | 
| 1379 | 
            -
            </td>
         | 
| 1273 | 
            +
            <td>the reason for the ownership change as a <a class="link" href="gdk-Event-Structures.html#GdkOwnerChange" title="enum GdkOwnerChange"><span class="type">GdkOwnerChange</span></a> value</td>
         | 
| 1380 1274 | 
             
            </tr>
         | 
| 1381 1275 | 
             
            <tr>
         | 
| 1382 1276 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a> <em class="structfield"><code><a name="GdkEventOwnerChange.selection"></a>selection</code></em>;</span></p></td>
         | 
| 1383 | 
            -
            <td>the atom identifying the selection
         | 
| 1384 | 
            -
            </td>
         | 
| 1277 | 
            +
            <td>the atom identifying the selection</td>
         | 
| 1385 1278 | 
             
            </tr>
         | 
| 1386 1279 | 
             
            <tr>
         | 
| 1387 1280 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventOwnerChange.time"></a>time</code></em>;</span></p></td>
         | 
| 1388 | 
            -
            <td>the timestamp of the event
         | 
| 1389 | 
            -
            </td>
         | 
| 1281 | 
            +
            <td>the timestamp of the event</td>
         | 
| 1390 1282 | 
             
            </tr>
         | 
| 1391 1283 | 
             
            <tr>
         | 
| 1392 1284 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> <em class="structfield"><code><a name="GdkEventOwnerChange.selection-time"></a>selection_time</code></em>;</span></p></td>
         | 
| 1393 | 
            -
            <td>the time at which the selection ownership was taken over
         | 
| 1394 | 
            -
            </td>
         | 
| 1285 | 
            +
            <td>the time at which the selection ownership was taken over</td>
         | 
| 1395 1286 | 
             
            </tr>
         | 
| 1396 1287 | 
             
            </tbody>
         | 
| 1397 1288 | 
             
            </table></div>
         | 
| 1398 1289 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1399 1290 | 
             
            </div>
         | 
| 1400 1291 | 
             
            <hr>
         | 
| 1401 | 
            -
            <div class="refsect2" | 
| 1402 | 
            -
            <a name="GdkEventGrabBroken"></a><h3>GdkEventGrabBroken</h3>
         | 
| 1403 | 
            -
            <pre class="programlisting"> | 
| 1292 | 
            +
            <div class="refsect2">
         | 
| 1293 | 
            +
            <a name="GdkEventGrabBroken"></a><h3>struct GdkEventGrabBroken</h3>
         | 
| 1294 | 
            +
            <pre class="programlisting">struct GdkEventGrabBroken {
         | 
| 1404 1295 | 
             
              GdkEventType type;
         | 
| 1405 1296 | 
             
              GdkWindow *window;
         | 
| 1406 1297 | 
             
              gint8 send_event;
         | 
| 1407 1298 | 
             
              gboolean keyboard;
         | 
| 1408 1299 | 
             
              gboolean implicit;
         | 
| 1409 1300 | 
             
              GdkWindow *grab_window;
         | 
| 1410 | 
            -
            } | 
| 1301 | 
            +
            };
         | 
| 1411 1302 | 
             
            </pre>
         | 
| 1412 1303 | 
             
            <p>
         | 
| 1413 1304 | 
             
            Generated when a pointer or keyboard grab is broken. On X11, this happens
         | 
| 1414 1305 | 
             
            when the grab window becomes unviewable (i.e. it or one of its ancestors
         | 
| 1415 1306 | 
             
            is unmapped), or if the same application grabs the pointer or keyboard
         | 
| 1416 1307 | 
             
            again. Note that implicit grabs (which are initiated by button presses)
         | 
| 1417 | 
            -
            can also cause <a class="link" href="gdk-Event-Structures.html#GdkEventGrabBroken" title="GdkEventGrabBroken"><span class="type">GdkEventGrabBroken</span></a> events.
         | 
| 1308 | 
            +
            can also cause <a class="link" href="gdk-Event-Structures.html#GdkEventGrabBroken" title="struct GdkEventGrabBroken"><span class="type">GdkEventGrabBroken</span></a> events.
         | 
| 1418 1309 | 
             
            </p>
         | 
| 1419 1310 | 
             
            <div class="variablelist"><table border="0">
         | 
| 1420 1311 | 
             
            <col align="left" valign="top">
         | 
| 1421 1312 | 
             
            <tbody>
         | 
| 1422 1313 | 
             
            <tr>
         | 
| 1423 1314 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Events.html#GdkEventType" title="enum GdkEventType"><span class="type">GdkEventType</span></a> <em class="structfield"><code><a name="GdkEventGrabBroken.type"></a>type</code></em>;</span></p></td>
         | 
| 1424 | 
            -
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-GRAB-BROKEN:CAPS"><code class="literal">GDK_GRAB_BROKEN</code></a>)
         | 
| 1425 | 
            -
            </td>
         | 
| 1315 | 
            +
            <td>the type of the event (<a class="link" href="gdk-Events.html#GDK-GRAB-BROKEN:CAPS"><code class="literal">GDK_GRAB_BROKEN</code></a>)</td>
         | 
| 1426 1316 | 
             
            </tr>
         | 
| 1427 1317 | 
             
            <tr>
         | 
| 1428 1318 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventGrabBroken.window"></a>window</code></em>;</span></p></td>
         | 
| 1429 1319 | 
             
            <td>the window which received the event, i.e. the window
         | 
| 1430 | 
            -
             | 
| 1431 | 
            -
            </td>
         | 
| 1320 | 
            +
            that previously owned the grab</td>
         | 
| 1432 1321 | 
             
            </tr>
         | 
| 1433 1322 | 
             
            <tr>
         | 
| 1434 1323 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> <em class="structfield"><code><a name="GdkEventGrabBroken.send-event"></a>send_event</code></em>;</span></p></td>
         | 
| 1435 1324 | 
             
            <td>
         | 
| 1436 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>) | 
| 1437 | 
            -
            </td>
         | 
| 1325 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent explicitly (e.g. using <code class="function">XSendEvent</code>).</td>
         | 
| 1438 1326 | 
             
            </tr>
         | 
| 1439 1327 | 
             
            <tr>
         | 
| 1440 1328 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> <em class="structfield"><code><a name="GdkEventGrabBroken.keyboard"></a>keyboard</code></em>;</span></p></td>
         | 
| 1441 1329 | 
             
            <td>
         | 
| 1442 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a keyboard grab was broken, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if a pointer | 
| 1443 | 
            -
             | 
| 1444 | 
            -
            </td>
         | 
| 1330 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a keyboard grab was broken, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if a pointer
         | 
| 1331 | 
            +
            grab was broken</td>
         | 
| 1445 1332 | 
             
            </tr>
         | 
| 1446 1333 | 
             
            <tr>
         | 
| 1447 1334 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> <em class="structfield"><code><a name="GdkEventGrabBroken.implicit"></a>implicit</code></em>;</span></p></td>
         | 
| 1448 1335 | 
             
            <td>
         | 
| 1449 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the broken grab was implicit
         | 
| 1450 | 
            -
            </td>
         | 
| 1336 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the broken grab was implicit</td>
         | 
| 1451 1337 | 
             
            </tr>
         | 
| 1452 1338 | 
             
            <tr>
         | 
| 1453 1339 | 
             
            <td><p><span class="term"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *<em class="structfield"><code><a name="GdkEventGrabBroken.grab-window"></a>grab_window</code></em>;</span></p></td>
         | 
| 1454 | 
            -
            <td>If this event is caused by another grab in the same | 
| 1455 | 
            -
             | 
| 1456 | 
            -
             | 
| 1457 | 
            -
            </td>
         | 
| 1340 | 
            +
            <td>If this event is caused by another grab in the same
         | 
| 1341 | 
            +
            application, <em class="parameter"><code>grab_window</code></em> contains the new grab window. Otherwise
         | 
| 1342 | 
            +
            <em class="parameter"><code>grab_window</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
         | 
| 1458 1343 | 
             
            </tr>
         | 
| 1459 1344 | 
             
            </tbody>
         | 
| 1460 1345 | 
             
            </table></div>
         | 
| 1461 1346 | 
             
            <p class="since">Since 2.8</p>
         | 
| 1462 1347 | 
             
            </div>
         | 
| 1463 1348 | 
             
            <hr>
         | 
| 1464 | 
            -
            <div class="refsect2" | 
| 1349 | 
            +
            <div class="refsect2">
         | 
| 1465 1350 | 
             
            <a name="GdkScrollDirection"></a><h3>enum GdkScrollDirection</h3>
         | 
| 1466 1351 | 
             
            <pre class="programlisting">typedef enum
         | 
| 1467 1352 | 
             
            {
         | 
| @@ -1472,7 +1357,7 @@ can also cause <a class="link" href="gdk-Event-Structures.html#GdkEventGrabBroke | |
| 1472 1357 | 
             
            } GdkScrollDirection;
         | 
| 1473 1358 | 
             
            </pre>
         | 
| 1474 1359 | 
             
            <p>
         | 
| 1475 | 
            -
            Specifies the direction for <a class="link" href="gdk-Event-Structures.html#GdkEventScroll" title="GdkEventScroll"><span class="type">GdkEventScroll</span></a>.
         | 
| 1360 | 
            +
            Specifies the direction for <a class="link" href="gdk-Event-Structures.html#GdkEventScroll" title="struct GdkEventScroll"><span class="type">GdkEventScroll</span></a>.
         | 
| 1476 1361 | 
             
            </p>
         | 
| 1477 1362 | 
             
            <div class="variablelist"><table border="0">
         | 
| 1478 1363 | 
             
            <col align="left" valign="top">
         | 
| @@ -1501,7 +1386,7 @@ Specifies the direction for <a class="link" href="gdk-Event-Structures.html#GdkE | |
| 1501 1386 | 
             
            </table></div>
         | 
| 1502 1387 | 
             
            </div>
         | 
| 1503 1388 | 
             
            <hr>
         | 
| 1504 | 
            -
            <div class="refsect2" | 
| 1389 | 
            +
            <div class="refsect2">
         | 
| 1505 1390 | 
             
            <a name="GdkVisibilityState"></a><h3>enum GdkVisibilityState</h3>
         | 
| 1506 1391 | 
             
            <pre class="programlisting">typedef enum
         | 
| 1507 1392 | 
             
            {
         | 
| @@ -1511,7 +1396,7 @@ Specifies the direction for <a class="link" href="gdk-Event-Structures.html#GdkE | |
| 1511 1396 | 
             
            } GdkVisibilityState;
         | 
| 1512 1397 | 
             
            </pre>
         | 
| 1513 1398 | 
             
            <p>
         | 
| 1514 | 
            -
            Specifies the visiblity status of a window for a <a class="link" href="gdk-Event-Structures.html#GdkEventVisibility" title="GdkEventVisibility"><span class="type">GdkEventVisibility</span></a>.
         | 
| 1399 | 
            +
            Specifies the visiblity status of a window for a <a class="link" href="gdk-Event-Structures.html#GdkEventVisibility" title="struct GdkEventVisibility"><span class="type">GdkEventVisibility</span></a>.
         | 
| 1515 1400 | 
             
            </p>
         | 
| 1516 1401 | 
             
            <div class="variablelist"><table border="0">
         | 
| 1517 1402 | 
             
            <col align="left" valign="top">
         | 
| @@ -1535,7 +1420,7 @@ Specifies the visiblity status of a window for a <a class="link" href="gdk-Event | |
| 1535 1420 | 
             
            </table></div>
         | 
| 1536 1421 | 
             
            </div>
         | 
| 1537 1422 | 
             
            <hr>
         | 
| 1538 | 
            -
            <div class="refsect2" | 
| 1423 | 
            +
            <div class="refsect2">
         | 
| 1539 1424 | 
             
            <a name="GdkCrossingMode"></a><h3>enum GdkCrossingMode</h3>
         | 
| 1540 1425 | 
             
            <pre class="programlisting">typedef enum
         | 
| 1541 1426 | 
             
            {
         | 
| @@ -1548,7 +1433,7 @@ Specifies the visiblity status of a window for a <a class="link" href="gdk-Event | |
| 1548 1433 | 
             
            } GdkCrossingMode;
         | 
| 1549 1434 | 
             
            </pre>
         | 
| 1550 1435 | 
             
            <p>
         | 
| 1551 | 
            -
            Specifies the crossing mode for <a class="link" href="gdk-Event-Structures.html#GdkEventCrossing" title="GdkEventCrossing"><span class="type">GdkEventCrossing</span></a>.
         | 
| 1436 | 
            +
            Specifies the crossing mode for <a class="link" href="gdk-Event-Structures.html#GdkEventCrossing" title="struct GdkEventCrossing"><span class="type">GdkEventCrossing</span></a>.
         | 
| 1552 1437 | 
             
            </p>
         | 
| 1553 1438 | 
             
            <div class="variablelist"><table border="0">
         | 
| 1554 1439 | 
             
            <col align="left" valign="top">
         | 
| @@ -1588,7 +1473,7 @@ Specifies the crossing mode for <a class="link" href="gdk-Event-Structures.html# | |
| 1588 1473 | 
             
            </table></div>
         | 
| 1589 1474 | 
             
            </div>
         | 
| 1590 1475 | 
             
            <hr>
         | 
| 1591 | 
            -
            <div class="refsect2" | 
| 1476 | 
            +
            <div class="refsect2">
         | 
| 1592 1477 | 
             
            <a name="GdkNotifyType"></a><h3>enum GdkNotifyType</h3>
         | 
| 1593 1478 | 
             
            <pre class="programlisting">typedef enum
         | 
| 1594 1479 | 
             
            {
         | 
| @@ -1601,7 +1486,7 @@ Specifies the crossing mode for <a class="link" href="gdk-Event-Structures.html# | |
| 1601 1486 | 
             
            } GdkNotifyType;
         | 
| 1602 1487 | 
             
            </pre>
         | 
| 1603 1488 | 
             
            <p>
         | 
| 1604 | 
            -
            Specifies the kind of crossing for <a class="link" href="gdk-Event-Structures.html#GdkEventCrossing" title="GdkEventCrossing"><span class="type">GdkEventCrossing</span></a>.
         | 
| 1489 | 
            +
            Specifies the kind of crossing for <a class="link" href="gdk-Event-Structures.html#GdkEventCrossing" title="struct GdkEventCrossing"><span class="type">GdkEventCrossing</span></a>.
         | 
| 1605 1490 | 
             
            </p>
         | 
| 1606 1491 | 
             
            <p>
         | 
| 1607 1492 | 
             
            See the X11 protocol specification of <span class="type">LeaveNotify</span> for
         | 
| @@ -1651,7 +1536,7 @@ full details of crossing event generation. | |
| 1651 1536 | 
             
            </table></div>
         | 
| 1652 1537 | 
             
            </div>
         | 
| 1653 1538 | 
             
            <hr>
         | 
| 1654 | 
            -
            <div class="refsect2" | 
| 1539 | 
            +
            <div class="refsect2">
         | 
| 1655 1540 | 
             
            <a name="GdkPropertyState"></a><h3>enum GdkPropertyState</h3>
         | 
| 1656 1541 | 
             
            <pre class="programlisting">typedef enum
         | 
| 1657 1542 | 
             
            {
         | 
| @@ -1660,7 +1545,7 @@ full details of crossing event generation. | |
| 1660 1545 | 
             
            } GdkPropertyState;
         | 
| 1661 1546 | 
             
            </pre>
         | 
| 1662 1547 | 
             
            <p>
         | 
| 1663 | 
            -
            Specifies the type of a property change for a <a class="link" href="gdk-Event-Structures.html#GdkEventProperty" title="GdkEventProperty"><span class="type">GdkEventProperty</span></a>.
         | 
| 1548 | 
            +
            Specifies the type of a property change for a <a class="link" href="gdk-Event-Structures.html#GdkEventProperty" title="struct GdkEventProperty"><span class="type">GdkEventProperty</span></a>.
         | 
| 1664 1549 | 
             
            </p>
         | 
| 1665 1550 | 
             
            <div class="variablelist"><table border="0">
         | 
| 1666 1551 | 
             
            <col align="left" valign="top">
         | 
| @@ -1679,7 +1564,7 @@ Specifies the type of a property change for a <a class="link" href="gdk-Event-St | |
| 1679 1564 | 
             
            </table></div>
         | 
| 1680 1565 | 
             
            </div>
         | 
| 1681 1566 | 
             
            <hr>
         | 
| 1682 | 
            -
            <div class="refsect2" | 
| 1567 | 
            +
            <div class="refsect2">
         | 
| 1683 1568 | 
             
            <a name="GdkWindowState"></a><h3>enum GdkWindowState</h3>
         | 
| 1684 1569 | 
             
            <pre class="programlisting">typedef enum
         | 
| 1685 1570 | 
             
            {
         | 
| @@ -1737,7 +1622,7 @@ Specifies the state of a toplevel window. | |
| 1737 1622 | 
             
            </table></div>
         | 
| 1738 1623 | 
             
            </div>
         | 
| 1739 1624 | 
             
            <hr>
         | 
| 1740 | 
            -
            <div class="refsect2" | 
| 1625 | 
            +
            <div class="refsect2">
         | 
| 1741 1626 | 
             
            <a name="GdkSettingAction"></a><h3>enum GdkSettingAction</h3>
         | 
| 1742 1627 | 
             
            <pre class="programlisting">typedef enum
         | 
| 1743 1628 | 
             
            {
         | 
| @@ -1747,7 +1632,7 @@ Specifies the state of a toplevel window. | |
| 1747 1632 | 
             
            } GdkSettingAction;
         | 
| 1748 1633 | 
             
            </pre>
         | 
| 1749 1634 | 
             
            <p>
         | 
| 1750 | 
            -
            Specifies the kind of modification applied to a setting in a <a class="link" href="gdk-Event-Structures.html#GdkEventSetting" title="GdkEventSetting"><span class="type">GdkEventSetting</span></a>.
         | 
| 1635 | 
            +
            Specifies the kind of modification applied to a setting in a <a class="link" href="gdk-Event-Structures.html#GdkEventSetting" title="struct GdkEventSetting"><span class="type">GdkEventSetting</span></a>.
         | 
| 1751 1636 | 
             
            </p>
         | 
| 1752 1637 | 
             
            <div class="variablelist"><table border="0">
         | 
| 1753 1638 | 
             
            <col align="left" valign="top">
         | 
| @@ -1771,7 +1656,7 @@ Specifies the kind of modification applied to a setting in a <a class="link" hre | |
| 1771 1656 | 
             
            </table></div>
         | 
| 1772 1657 | 
             
            </div>
         | 
| 1773 1658 | 
             
            <hr>
         | 
| 1774 | 
            -
            <div class="refsect2" | 
| 1659 | 
            +
            <div class="refsect2">
         | 
| 1775 1660 | 
             
            <a name="GdkOwnerChange"></a><h3>enum GdkOwnerChange</h3>
         | 
| 1776 1661 | 
             
            <pre class="programlisting">typedef enum
         | 
| 1777 1662 | 
             
            {
         | 
| @@ -1808,6 +1693,6 @@ Specifies why a selection ownership was changed. | |
| 1808 1693 | 
             
            </div>
         | 
| 1809 1694 | 
             
            <div class="footer">
         | 
| 1810 1695 | 
             
            <hr>
         | 
| 1811 | 
            -
                      Generated by GTK-Doc V1. | 
| 1696 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 1812 1697 | 
             
            </body>
         | 
| 1813 1698 | 
             
            </html>
         |