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>Cursors</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-Fonts.html" title="Fonts">
         | 
| 10 10 | 
             
            <link rel="next" href="gdk-Windows.html" title="Windows">
         | 
| 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-Fonts.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-Windows.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-Cursors.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-Cursors"></a><div class="titlepage"></div>
         | 
| 31 31 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 32 32 | 
             
            <td valign="top">
         | 
| @@ -35,37 +35,37 @@ | |
| 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-Cursors.synopsis"></a><h2>Synopsis</h2>
         | 
| 40 40 | 
             
            <pre class="synopsis">
         | 
| 41 41 | 
             
            #include <gdk/gdk.h>
         | 
| 42 42 |  | 
| 43 43 | 
             
                                <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor">GdkCursor</a>;
         | 
| 44 44 | 
             
            enum                <a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType">GdkCursorType</a>;
         | 
| 45 | 
            -
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 46 | 
            -
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 45 | 
            +
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         <a class="link" href="gdk-Cursors.html#gdk-cursor-new" title="gdk_cursor_new ()">gdk_cursor_new</a>                      (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType"><span class="type">GdkCursorType</span></a> cursor_type</code></em>);
         | 
| 46 | 
            +
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         <a class="link" href="gdk-Cursors.html#gdk-cursor-new-from-pixmap" title="gdk_cursor_new_from_pixmap ()">gdk_cursor_new_from_pixmap</a>          (<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *source</code></em>,
         | 
| 47 47 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *mask</code></em>,
         | 
| 48 48 | 
             
                                                                     <em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *fg</code></em>,
         | 
| 49 49 | 
             
                                                                     <em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *bg</code></em>,
         | 
| 50 50 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
         | 
| 51 51 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
         | 
| 52 | 
            -
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 53 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 52 | 
            +
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         <a class="link" href="gdk-Cursors.html#gdk-cursor-new-from-pixbuf" title="gdk_cursor_new_from_pixbuf ()">gdk_cursor_new_from_pixbuf</a>          (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 53 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>,
         | 
| 54 54 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
         | 
| 55 55 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
         | 
| 56 | 
            -
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 56 | 
            +
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         <a class="link" href="gdk-Cursors.html#gdk-cursor-new-from-name" title="gdk_cursor_new_from_name ()">gdk_cursor_new_from_name</a>            (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 57 57 | 
             
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
         | 
| 58 | 
            -
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 58 | 
            +
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         <a class="link" href="gdk-Cursors.html#gdk-cursor-new-for-display" title="gdk_cursor_new_for_display ()">gdk_cursor_new_for_display</a>          (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 59 59 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType"><span class="type">GdkCursorType</span></a> cursor_type</code></em>);
         | 
| 60 | 
            -
            <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a | 
| 61 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 60 | 
            +
            <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> *        <a class="link" href="gdk-Cursors.html#gdk-cursor-get-display" title="gdk_cursor_get_display ()">gdk_cursor_get_display</a>              (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);
         | 
| 61 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         <a class="link" href="gdk-Cursors.html#gdk-cursor-get-image" title="gdk_cursor_get_image ()">gdk_cursor_get_image</a>                (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);
         | 
| 62 62 | 
             
            <a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType"><span class="returnvalue">GdkCursorType</span></a>       <a class="link" href="gdk-Cursors.html#gdk-cursor-get-cursor-type" title="gdk_cursor_get_cursor_type ()">gdk_cursor_get_cursor_type</a>          (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);
         | 
| 63 | 
            -
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 63 | 
            +
            <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         <a class="link" href="gdk-Cursors.html#gdk-cursor-ref" title="gdk_cursor_ref ()">gdk_cursor_ref</a>                      (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);
         | 
| 64 64 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Cursors.html#gdk-cursor-unref" title="gdk_cursor_unref ()">gdk_cursor_unref</a>                    (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);
         | 
| 65 65 | 
             
            #define             <a class="link" href="gdk-Cursors.html#gdk-cursor-destroy" title="gdk_cursor_destroy">gdk_cursor_destroy</a>
         | 
| 66 66 | 
             
            </pre>
         | 
| 67 67 | 
             
            </div>
         | 
| 68 | 
            -
            <div class="refsect1" | 
| 68 | 
            +
            <div class="refsect1">
         | 
| 69 69 | 
             
            <a name="gdk-Cursors.description"></a><h2>Description</h2>
         | 
| 70 70 | 
             
            <p>
         | 
| 71 71 | 
             
            These functions are used to create and destroy cursors.
         | 
| @@ -82,12 +82,12 @@ cursors can be constructed on a given display, see | |
| 82 82 | 
             
            Cursors by themselves are not very interesting, they must be be
         | 
| 83 83 | 
             
            bound to a window for users to see them. This is done with
         | 
| 84 84 | 
             
            <a class="link" href="gdk-Windows.html#gdk-window-set-cursor" title="gdk_window_set_cursor ()"><code class="function">gdk_window_set_cursor()</code></a> or by setting the cursor member of the
         | 
| 85 | 
            -
            <a class="link" href="gdk-Windows.html#GdkWindowAttr" title="GdkWindowAttr"><span class="type">GdkWindowAttr</span></a> struct passed to <a class="link" href="gdk-Windows.html#gdk-window-new" title="gdk_window_new ()"><code class="function">gdk_window_new()</code></a>.
         | 
| 85 | 
            +
            <a class="link" href="gdk-Windows.html#GdkWindowAttr" title="struct GdkWindowAttr"><span class="type">GdkWindowAttr</span></a> struct passed to <a class="link" href="gdk-Windows.html#gdk-window-new" title="gdk_window_new ()"><code class="function">gdk_window_new()</code></a>.
         | 
| 86 86 | 
             
            </p>
         | 
| 87 87 | 
             
            </div>
         | 
| 88 | 
            -
            <div class="refsect1" | 
| 88 | 
            +
            <div class="refsect1">
         | 
| 89 89 | 
             
            <a name="gdk-Cursors.details"></a><h2>Details</h2>
         | 
| 90 | 
            -
            <div class="refsect2" | 
| 90 | 
            +
            <div class="refsect2">
         | 
| 91 91 | 
             
            <a name="GdkCursor"></a><h3>GdkCursor</h3>
         | 
| 92 92 | 
             
            <pre class="programlisting">typedef struct {
         | 
| 93 93 | 
             
              GdkCursorType GSEAL (type);
         | 
| @@ -98,7 +98,7 @@ A <span class="type">GdkCursor</span> structure represents a cursor. | |
| 98 98 | 
             
            </p>
         | 
| 99 99 | 
             
            </div>
         | 
| 100 100 | 
             
            <hr>
         | 
| 101 | 
            -
            <div class="refsect2" | 
| 101 | 
            +
            <div class="refsect2">
         | 
| 102 102 | 
             
            <a name="GdkCursorType"></a><h3>enum GdkCursorType</h3>
         | 
| 103 103 | 
             
            <pre class="programlisting">typedef enum
         | 
| 104 104 | 
             
            {
         | 
| @@ -672,9 +672,9 @@ The standard cursors available. | |
| 672 672 | 
             
            </table></div>
         | 
| 673 673 | 
             
            </div>
         | 
| 674 674 | 
             
            <hr>
         | 
| 675 | 
            -
            <div class="refsect2" | 
| 675 | 
            +
            <div class="refsect2">
         | 
| 676 676 | 
             
            <a name="gdk-cursor-new"></a><h3>gdk_cursor_new ()</h3>
         | 
| 677 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 677 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         gdk_cursor_new                      (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType"><span class="type">GdkCursorType</span></a> cursor_type</code></em>);</pre>
         | 
| 678 678 | 
             
            <p>
         | 
| 679 679 | 
             
            Creates a new cursor from the set of builtin cursors for the default display.
         | 
| 680 680 | 
             
            See <a class="link" href="gdk-Cursors.html#gdk-cursor-new-for-display" title="gdk_cursor_new_for_display ()"><code class="function">gdk_cursor_new_for_display()</code></a>.
         | 
| @@ -687,21 +687,20 @@ To make the cursor invisible, use <a class="link" href="gdk-Cursors.html#GDK-BLA | |
| 687 687 | 
             
            <tbody>
         | 
| 688 688 | 
             
            <tr>
         | 
| 689 689 | 
             
            <td><p><span class="term"><em class="parameter"><code>cursor_type</code></em> :</span></p></td>
         | 
| 690 | 
            -
            <td>cursor to create
         | 
| 691 | 
            -
            </td>
         | 
| 690 | 
            +
            <td>cursor to create</td>
         | 
| 692 691 | 
             
            </tr>
         | 
| 693 692 | 
             
            <tr>
         | 
| 694 693 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 695 | 
            -
            <td> | 
| 694 | 
            +
            <td>a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>
         | 
| 696 695 | 
             
            </td>
         | 
| 697 696 | 
             
            </tr>
         | 
| 698 697 | 
             
            </tbody>
         | 
| 699 698 | 
             
            </table></div>
         | 
| 700 699 | 
             
            </div>
         | 
| 701 700 | 
             
            <hr>
         | 
| 702 | 
            -
            <div class="refsect2" | 
| 701 | 
            +
            <div class="refsect2">
         | 
| 703 702 | 
             
            <a name="gdk-cursor-new-from-pixmap"></a><h3>gdk_cursor_new_from_pixmap ()</h3>
         | 
| 704 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 703 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         gdk_cursor_new_from_pixmap          (<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *source</code></em>,
         | 
| 705 704 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *mask</code></em>,
         | 
| 706 705 | 
             
                                                                     <em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *fg</code></em>,
         | 
| 707 706 | 
             
                                                                     <em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *bg</code></em>,
         | 
| @@ -716,7 +715,7 @@ from inline data as in the below example. | |
| 716 715 | 
             
            <p>
         | 
| 717 716 | 
             
            </p>
         | 
| 718 717 | 
             
            <div class="example">
         | 
| 719 | 
            -
            <a name=" | 
| 718 | 
            +
            <a name="id609193"></a><p class="title"><b>Example 6. Creating a custom cursor</b></p>
         | 
| 720 719 | 
             
            <div class="example-contents">
         | 
| 721 720 | 
             
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| 722 721 | 
             
                <tbody>
         | 
| @@ -796,50 +795,43 @@ from inline data as in the below example. | |
| 796 795 | 
             
            <tbody>
         | 
| 797 796 | 
             
            <tr>
         | 
| 798 797 | 
             
            <td><p><span class="term"><em class="parameter"><code>source</code></em> :</span></p></td>
         | 
| 799 | 
            -
            <td>the pixmap specifying the cursor | 
| 800 | 
            -
            </td>
         | 
| 798 | 
            +
            <td>the pixmap specifying the cursor.</td>
         | 
| 801 799 | 
             
            </tr>
         | 
| 802 800 | 
             
            <tr>
         | 
| 803 801 | 
             
            <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
         | 
| 804 | 
            -
            <td>the pixmap specifying the mask, which must be the same size as | 
| 805 | 
            -
             | 
| 806 | 
            -
            </td>
         | 
| 802 | 
            +
            <td>the pixmap specifying the mask, which must be the same size as
         | 
| 803 | 
            +
            <em class="parameter"><code>source</code></em>.</td>
         | 
| 807 804 | 
             
            </tr>
         | 
| 808 805 | 
             
            <tr>
         | 
| 809 806 | 
             
            <td><p><span class="term"><em class="parameter"><code>fg</code></em> :</span></p></td>
         | 
| 810 807 | 
             
            <td>the foreground color, used for the bits in the source which are 1.
         | 
| 811 | 
            -
             | 
| 812 | 
            -
            </td>
         | 
| 808 | 
            +
            The color does not have to be allocated first.</td>
         | 
| 813 809 | 
             
            </tr>
         | 
| 814 810 | 
             
            <tr>
         | 
| 815 811 | 
             
            <td><p><span class="term"><em class="parameter"><code>bg</code></em> :</span></p></td>
         | 
| 816 812 | 
             
            <td>the background color, used for the bits in the source which are 0.
         | 
| 817 | 
            -
             | 
| 818 | 
            -
            </td>
         | 
| 813 | 
            +
            The color does not have to be allocated first.</td>
         | 
| 819 814 | 
             
            </tr>
         | 
| 820 815 | 
             
            <tr>
         | 
| 821 816 | 
             
            <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
         | 
| 822 | 
            -
            <td>the horizontal offset of the 'hotspot' of the cursor | 
| 823 | 
            -
            </td>
         | 
| 817 | 
            +
            <td>the horizontal offset of the 'hotspot' of the cursor.</td>
         | 
| 824 818 | 
             
            </tr>
         | 
| 825 819 | 
             
            <tr>
         | 
| 826 820 | 
             
            <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
         | 
| 827 | 
            -
            <td>the vertical offset of the 'hotspot' of the cursor | 
| 828 | 
            -
            </td>
         | 
| 821 | 
            +
            <td>the vertical offset of the 'hotspot' of the cursor.</td>
         | 
| 829 822 | 
             
            </tr>
         | 
| 830 823 | 
             
            <tr>
         | 
| 831 824 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 832 | 
            -
            <td> | 
| 833 | 
            -
            </td>
         | 
| 825 | 
            +
            <td>a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.</td>
         | 
| 834 826 | 
             
            </tr>
         | 
| 835 827 | 
             
            </tbody>
         | 
| 836 828 | 
             
            </table></div>
         | 
| 837 829 | 
             
            </div>
         | 
| 838 830 | 
             
            <hr>
         | 
| 839 | 
            -
            <div class="refsect2" | 
| 831 | 
            +
            <div class="refsect2">
         | 
| 840 832 | 
             
            <a name="gdk-cursor-new-from-pixbuf"></a><h3>gdk_cursor_new_from_pixbuf ()</h3>
         | 
| 841 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 842 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 833 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         gdk_cursor_new_from_pixbuf          (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 834 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>,
         | 
| 843 835 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
         | 
| 844 836 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
         | 
| 845 837 | 
             
            <p>
         | 
| @@ -856,6 +848,12 @@ whether RGBA cursors are supported; | |
| 856 848 | 
             
            cursor sizes.
         | 
| 857 849 | 
             
            </p>
         | 
| 858 850 | 
             
            <p>
         | 
| 851 | 
            +
            If <em class="parameter"><code>x</code></em> or <em class="parameter"><code>y</code></em> are <code class="literal">-1</code>, the pixbuf must have
         | 
| 852 | 
            +
            options named "x_hot" and "y_hot", resp., containing
         | 
| 853 | 
            +
            integer values between <code class="literal">0</code> and the width resp. height of
         | 
| 854 | 
            +
            the pixbuf. (Since: 3.0)
         | 
| 855 | 
            +
            </p>
         | 
| 856 | 
            +
            <p>
         | 
| 859 857 | 
             
            On the X backend, support for RGBA cursors requires a
         | 
| 860 858 | 
             
            sufficently new version of the X Render extension.
         | 
| 861 859 | 
             
            </p>
         | 
| @@ -864,38 +862,32 @@ sufficently new version of the X Render extension. | |
| 864 862 | 
             
            <tbody>
         | 
| 865 863 | 
             
            <tr>
         | 
| 866 864 | 
             
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 867 | 
            -
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> for which the cursor will be created
         | 
| 868 | 
            -
            </td>
         | 
| 865 | 
            +
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> for which the cursor will be created</td>
         | 
| 869 866 | 
             
            </tr>
         | 
| 870 867 | 
             
            <tr>
         | 
| 871 868 | 
             
            <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
         | 
| 872 | 
            -
            <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 873 | 
            -
            </td>
         | 
| 869 | 
            +
            <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> containing the cursor image</td>
         | 
| 874 870 | 
             
            </tr>
         | 
| 875 871 | 
             
            <tr>
         | 
| 876 872 | 
             
            <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
         | 
| 877 | 
            -
            <td>the horizontal offset of the 'hotspot' of the cursor | 
| 878 | 
            -
            </td>
         | 
| 873 | 
            +
            <td>the horizontal offset of the 'hotspot' of the cursor.</td>
         | 
| 879 874 | 
             
            </tr>
         | 
| 880 875 | 
             
            <tr>
         | 
| 881 876 | 
             
            <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
         | 
| 882 | 
            -
            <td>the vertical offset of the 'hotspot' of the cursor | 
| 883 | 
            -
            </td>
         | 
| 877 | 
            +
            <td>the vertical offset of the 'hotspot' of the cursor.</td>
         | 
| 884 878 | 
             
            </tr>
         | 
| 885 879 | 
             
            <tr>
         | 
| 886 880 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 887 | 
            -
            <td> | 
| 888 | 
            -
             | 
| 889 | 
            -
            </td>
         | 
| 881 | 
            +
            <td>a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.</td>
         | 
| 890 882 | 
             
            </tr>
         | 
| 891 883 | 
             
            </tbody>
         | 
| 892 884 | 
             
            </table></div>
         | 
| 893 885 | 
             
            <p class="since">Since 2.4</p>
         | 
| 894 886 | 
             
            </div>
         | 
| 895 887 | 
             
            <hr>
         | 
| 896 | 
            -
            <div class="refsect2" | 
| 888 | 
            +
            <div class="refsect2">
         | 
| 897 889 | 
             
            <a name="gdk-cursor-new-from-name"></a><h3>gdk_cursor_new_from_name ()</h3>
         | 
| 898 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 890 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         gdk_cursor_new_from_name            (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 899 891 | 
             
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
         | 
| 900 892 | 
             
            <p>
         | 
| 901 893 | 
             
            Creates a new cursor by looking up <em class="parameter"><code>name</code></em> in the current cursor
         | 
| @@ -906,29 +898,25 @@ theme. | |
| 906 898 | 
             
            <tbody>
         | 
| 907 899 | 
             
            <tr>
         | 
| 908 900 | 
             
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 909 | 
            -
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> for which the cursor will be created
         | 
| 910 | 
            -
            </td>
         | 
| 901 | 
            +
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> for which the cursor will be created</td>
         | 
| 911 902 | 
             
            </tr>
         | 
| 912 903 | 
             
            <tr>
         | 
| 913 904 | 
             
            <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
         | 
| 914 | 
            -
            <td>the name of the cursor
         | 
| 915 | 
            -
            </td>
         | 
| 905 | 
            +
            <td>the name of the cursor</td>
         | 
| 916 906 | 
             
            </tr>
         | 
| 917 907 | 
             
            <tr>
         | 
| 918 908 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 919 | 
            -
            <td> | 
| 920 | 
            -
             | 
| 921 | 
            -
             | 
| 922 | 
            -
            </td>
         | 
| 909 | 
            +
            <td>a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there is no cursor with
         | 
| 910 | 
            +
            the given name</td>
         | 
| 923 911 | 
             
            </tr>
         | 
| 924 912 | 
             
            </tbody>
         | 
| 925 913 | 
             
            </table></div>
         | 
| 926 914 | 
             
            <p class="since">Since 2.8</p>
         | 
| 927 915 | 
             
            </div>
         | 
| 928 916 | 
             
            <hr>
         | 
| 929 | 
            -
            <div class="refsect2" | 
| 917 | 
            +
            <div class="refsect2">
         | 
| 930 918 | 
             
            <a name="gdk-cursor-new-for-display"></a><h3>gdk_cursor_new_for_display ()</h3>
         | 
| 931 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 919 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         gdk_cursor_new_for_display          (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 932 920 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType"><span class="type">GdkCursorType</span></a> cursor_type</code></em>);</pre>
         | 
| 933 921 | 
             
            <p>
         | 
| 934 922 | 
             
            Creates a new cursor from the set of builtin cursors.
         | 
| @@ -997,18 +985,15 @@ Some useful ones are: | |
| 997 985 | 
             
            <tbody>
         | 
| 998 986 | 
             
            <tr>
         | 
| 999 987 | 
             
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 1000 | 
            -
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> for which the cursor will be created
         | 
| 1001 | 
            -
            </td>
         | 
| 988 | 
            +
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> for which the cursor will be created</td>
         | 
| 1002 989 | 
             
            </tr>
         | 
| 1003 990 | 
             
            <tr>
         | 
| 1004 991 | 
             
            <td><p><span class="term"><em class="parameter"><code>cursor_type</code></em> :</span></p></td>
         | 
| 1005 | 
            -
            <td>cursor to create
         | 
| 1006 | 
            -
            </td>
         | 
| 992 | 
            +
            <td>cursor to create</td>
         | 
| 1007 993 | 
             
            </tr>
         | 
| 1008 994 | 
             
            <tr>
         | 
| 1009 995 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1010 | 
            -
            <td> | 
| 1011 | 
            -
             | 
| 996 | 
            +
            <td>a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>
         | 
| 1012 997 | 
             
            </td>
         | 
| 1013 998 | 
             
            </tr>
         | 
| 1014 999 | 
             
            </tbody>
         | 
| @@ -1016,9 +1001,9 @@ Some useful ones are: | |
| 1016 1001 | 
             
            <p class="since">Since 2.2</p>
         | 
| 1017 1002 | 
             
            </div>
         | 
| 1018 1003 | 
             
            <hr>
         | 
| 1019 | 
            -
            <div class="refsect2" | 
| 1004 | 
            +
            <div class="refsect2">
         | 
| 1020 1005 | 
             
            <a name="gdk-cursor-get-display"></a><h3>gdk_cursor_get_display ()</h3>
         | 
| 1021 | 
            -
            <pre class="programlisting"><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a | 
| 1006 | 
            +
            <pre class="programlisting"><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> *        gdk_cursor_get_display              (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);</pre>
         | 
| 1022 1007 | 
             
            <p>
         | 
| 1023 1008 | 
             
            Returns the display on which the <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> is defined.
         | 
| 1024 1009 | 
             
            </p>
         | 
| @@ -1027,13 +1012,11 @@ Returns the display on which the <a class="link" href="gdk-Cursors.html#GdkCurso | |
| 1027 1012 | 
             
            <tbody>
         | 
| 1028 1013 | 
             
            <tr>
         | 
| 1029 1014 | 
             
            <td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
         | 
| 1030 | 
            -
            <td>a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a | 
| 1031 | 
            -
            </td>
         | 
| 1015 | 
            +
            <td>a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.</td>
         | 
| 1032 1016 | 
             
            </tr>
         | 
| 1033 1017 | 
             
            <tr>
         | 
| 1034 1018 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1035 | 
            -
            <td> | 
| 1036 | 
            -
             | 
| 1019 | 
            +
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> associated to <em class="parameter"><code>cursor</code></em>
         | 
| 1037 1020 | 
             
            </td>
         | 
| 1038 1021 | 
             
            </tr>
         | 
| 1039 1022 | 
             
            </tbody>
         | 
| @@ -1041,11 +1024,11 @@ Returns the display on which the <a class="link" href="gdk-Cursors.html#GdkCurso | |
| 1041 1024 | 
             
            <p class="since">Since 2.2</p>
         | 
| 1042 1025 | 
             
            </div>
         | 
| 1043 1026 | 
             
            <hr>
         | 
| 1044 | 
            -
            <div class="refsect2" | 
| 1027 | 
            +
            <div class="refsect2">
         | 
| 1045 1028 | 
             
            <a name="gdk-cursor-get-image"></a><h3>gdk_cursor_get_image ()</h3>
         | 
| 1046 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 1029 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         gdk_cursor_get_image                (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);</pre>
         | 
| 1047 1030 | 
             
            <p>
         | 
| 1048 | 
            -
            Returns a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 1031 | 
            +
            Returns a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> with the image used to display the cursor.
         | 
| 1049 1032 | 
             
            </p>
         | 
| 1050 1033 | 
             
            <p>
         | 
| 1051 1034 | 
             
            Note that depending on the capabilities of the windowing system and 
         | 
| @@ -1062,8 +1045,7 @@ case, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros | |
| 1062 1045 | 
             
            </tr>
         | 
| 1063 1046 | 
             
            <tr>
         | 
| 1064 1047 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1065 | 
            -
            <td> | 
| 1066 | 
            -
             | 
| 1048 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> representing <em class="parameter"><code>cursor</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
         | 
| 1067 1049 | 
             
            </td>
         | 
| 1068 1050 | 
             
            </tr>
         | 
| 1069 1051 | 
             
            </tbody>
         | 
| @@ -1071,7 +1053,7 @@ case, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros | |
| 1071 1053 | 
             
            <p class="since">Since 2.8</p>
         | 
| 1072 1054 | 
             
            </div>
         | 
| 1073 1055 | 
             
            <hr>
         | 
| 1074 | 
            -
            <div class="refsect2" | 
| 1056 | 
            +
            <div class="refsect2">
         | 
| 1075 1057 | 
             
            <a name="gdk-cursor-get-cursor-type"></a><h3>gdk_cursor_get_cursor_type ()</h3>
         | 
| 1076 1058 | 
             
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType"><span class="returnvalue">GdkCursorType</span></a>       gdk_cursor_get_cursor_type          (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);</pre>
         | 
| 1077 1059 | 
             
            <p>
         | 
| @@ -1087,8 +1069,7 @@ Returns the cursor type for this cursor. | |
| 1087 1069 | 
             
            </tr>
         | 
| 1088 1070 | 
             
            <tr>
         | 
| 1089 1071 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1090 | 
            -
            <td> | 
| 1091 | 
            -
             | 
| 1072 | 
            +
            <td>a <a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType"><span class="type">GdkCursorType</span></a>
         | 
| 1092 1073 | 
             
            </td>
         | 
| 1093 1074 | 
             
            </tr>
         | 
| 1094 1075 | 
             
            </tbody>
         | 
| @@ -1096,9 +1077,9 @@ Returns the cursor type for this cursor. | |
| 1096 1077 | 
             
            <p class="since">Since 2.22</p>
         | 
| 1097 1078 | 
             
            </div>
         | 
| 1098 1079 | 
             
            <hr>
         | 
| 1099 | 
            -
            <div class="refsect2" | 
| 1080 | 
            +
            <div class="refsect2">
         | 
| 1100 1081 | 
             
            <a name="gdk-cursor-ref"></a><h3>gdk_cursor_ref ()</h3>
         | 
| 1101 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a | 
| 1082 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="returnvalue">GdkCursor</span></a> *         gdk_cursor_ref                      (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);</pre>
         | 
| 1102 1083 | 
             
            <p>
         | 
| 1103 1084 | 
             
            Adds a reference to <em class="parameter"><code>cursor</code></em>.
         | 
| 1104 1085 | 
             
            </p>
         | 
| @@ -1112,14 +1093,14 @@ Adds a reference to <em class="parameter"><code>cursor</code></em>. | |
| 1112 1093 | 
             
            </tr>
         | 
| 1113 1094 | 
             
            <tr>
         | 
| 1114 1095 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1115 | 
            -
            <td> | 
| 1096 | 
            +
            <td>Same <em class="parameter"><code>cursor</code></em> that was passed in. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
         | 
| 1116 1097 | 
             
            </td>
         | 
| 1117 1098 | 
             
            </tr>
         | 
| 1118 1099 | 
             
            </tbody>
         | 
| 1119 1100 | 
             
            </table></div>
         | 
| 1120 1101 | 
             
            </div>
         | 
| 1121 1102 | 
             
            <hr>
         | 
| 1122 | 
            -
            <div class="refsect2" | 
| 1103 | 
            +
            <div class="refsect2">
         | 
| 1123 1104 | 
             
            <a name="gdk-cursor-unref"></a><h3>gdk_cursor_unref ()</h3>
         | 
| 1124 1105 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_cursor_unref                    (<em class="parameter"><code><a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> *cursor</code></em>);</pre>
         | 
| 1125 1106 | 
             
            <p>
         | 
| @@ -1136,11 +1117,11 @@ if no references remain. | |
| 1136 1117 | 
             
            </table></div>
         | 
| 1137 1118 | 
             
            </div>
         | 
| 1138 1119 | 
             
            <hr>
         | 
| 1139 | 
            -
            <div class="refsect2" | 
| 1120 | 
            +
            <div class="refsect2">
         | 
| 1140 1121 | 
             
            <a name="gdk-cursor-destroy"></a><h3>gdk_cursor_destroy</h3>
         | 
| 1141 1122 | 
             
            <pre class="programlisting">#define gdk_cursor_destroy             gdk_cursor_unref
         | 
| 1142 1123 | 
             
            </pre>
         | 
| 1143 | 
            -
            <div class="warning"  | 
| 1124 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1144 1125 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1145 1126 | 
             
            <p><code class="literal">gdk_cursor_destroy</code> is deprecated and should not be used in newly-written code.</p>
         | 
| 1146 1127 | 
             
            </div>
         | 
| @@ -1152,6 +1133,6 @@ Destroys a cursor, freeing any resources allocated for it. | |
| 1152 1133 | 
             
            </div>
         | 
| 1153 1134 | 
             
            <div class="footer">
         | 
| 1154 1135 | 
             
            <hr>
         | 
| 1155 | 
            -
                      Generated by GTK-Doc V1. | 
| 1136 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 1156 1137 | 
             
            </body>
         | 
| 1157 1138 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>Drag and Drop</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-Selections.html" title="Selections">
         | 
| 10 10 | 
             
            <link rel="next" href="gdk-Properties-and-Atoms.html" title="Properties and Atoms">
         | 
| 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-Selections.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-Properties-and-Atoms.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-Drag-and-Drop.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-Drag-and-Drop"></a><div class="titlepage"></div>
         | 
| 31 31 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 32 32 | 
             
            <td valign="top">
         | 
| @@ -35,44 +35,44 @@ | |
| 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-Drag-and-Drop.synopsis"></a><h2>Synopsis</h2>
         | 
| 40 40 | 
             
            <pre class="synopsis">
         | 
| 41 41 | 
             
            #include <gdk/gdk.h>
         | 
| 42 42 |  | 
| 43 | 
            -
            <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a>             <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-get-selection" title="gdk_drag_get_selection ()">gdk_drag_get_selection</a>              (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 44 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-abort" title="gdk_drag_abort ()">gdk_drag_abort</a>                      (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 43 | 
            +
            <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a>             <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-get-selection" title="gdk_drag_get_selection ()">gdk_drag_get_selection</a>              (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 44 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-abort" title="gdk_drag_abort ()">gdk_drag_abort</a>                      (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 45 45 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);
         | 
| 46 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drop-reply" title="gdk_drop_reply ()">gdk_drop_reply</a>                      (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 46 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drop-reply" title="gdk_drop_reply ()">gdk_drop_reply</a>                      (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 47 47 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> ok</code></em>,
         | 
| 48 48 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);
         | 
| 49 | 
            -
            <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> *    <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-new" title="gdk_drag_context_new ()">gdk_drag_context_new</a>                (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 50 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-drop" title="gdk_drag_drop ()">gdk_drag_drop</a>                       (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 49 | 
            +
            <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> *    <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-new" title="gdk_drag_context_new ()">gdk_drag_context_new</a>                (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 50 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-drop" title="gdk_drag_drop ()">gdk_drag_drop</a>                       (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 51 51 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);
         | 
| 52 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-find-window" title="gdk_drag_find_window ()">gdk_drag_find_window</a>                (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 52 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-find-window" title="gdk_drag_find_window ()">gdk_drag_find_window</a>                (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 53 53 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *drag_window</code></em>,
         | 
| 54 54 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x_root</code></em>,
         | 
| 55 55 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y_root</code></em>,
         | 
| 56 56 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> **dest_window</code></em>,
         | 
| 57 57 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragProtocol" title="enum GdkDragProtocol"><span class="type">GdkDragProtocol</span></a> *protocol</code></em>);
         | 
| 58 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-find-window-for-screen" title="gdk_drag_find_window_for_screen ()">gdk_drag_find_window_for_screen</a>     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 58 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-find-window-for-screen" title="gdk_drag_find_window_for_screen ()">gdk_drag_find_window_for_screen</a>     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 59 59 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *drag_window</code></em>,
         | 
| 60 60 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 61 61 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x_root</code></em>,
         | 
| 62 62 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y_root</code></em>,
         | 
| 63 63 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> **dest_window</code></em>,
         | 
| 64 64 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragProtocol" title="enum GdkDragProtocol"><span class="type">GdkDragProtocol</span></a> *protocol</code></em>);
         | 
| 65 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-ref" title="gdk_drag_context_ref ()">gdk_drag_context_ref</a>                (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 66 | 
            -
            <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="returnvalue">GdkDragAction</span></a>       <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-get-actions" title="gdk_drag_context_get_actions ()">gdk_drag_context_get_actions</a>        (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 65 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-ref" title="gdk_drag_context_ref ()">gdk_drag_context_ref</a>                (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 66 | 
            +
            <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="returnvalue">GdkDragAction</span></a>       <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-get-actions" title="gdk_drag_context_get_actions ()">gdk_drag_context_get_actions</a>        (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 67 67 | 
             
            <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="returnvalue">GdkDragAction</span></a>       <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-get-selected-action" title="gdk_drag_context_get_selected_action ()">gdk_drag_context_get_selected_action</a>
         | 
| 68 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 68 | 
            +
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 69 69 | 
             
            <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="returnvalue">GdkDragAction</span></a>       <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-get-suggested-action" title="gdk_drag_context_get_suggested_action ()">gdk_drag_context_get_suggested_action</a>
         | 
| 70 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 71 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *             <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-list-targets" title="gdk_drag_context_list_targets ()">gdk_drag_context_list_targets</a>       (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 72 | 
            -
            <a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> *         <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-get-source-window" title="gdk_drag_context_get_source_window ()">gdk_drag_context_get_source_window</a>  (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 73 | 
            -
            <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> *    <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-begin" title="gdk_drag_begin ()">gdk_drag_begin</a>                      (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
         | 
| 70 | 
            +
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 71 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *             <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-list-targets" title="gdk_drag_context_list_targets ()">gdk_drag_context_list_targets</a>       (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 72 | 
            +
            <a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> *         <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-get-source-window" title="gdk_drag_context_get_source_window ()">gdk_drag_context_get_source_window</a>  (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 73 | 
            +
            <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> *    <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-begin" title="gdk_drag_begin ()">gdk_drag_begin</a>                      (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
         | 
| 74 74 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *targets</code></em>);
         | 
| 75 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-motion" title="gdk_drag_motion ()">gdk_drag_motion</a>                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 75 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-motion" title="gdk_drag_motion ()">gdk_drag_motion</a>                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 76 76 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *dest_window</code></em>,
         | 
| 77 77 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragProtocol" title="enum GdkDragProtocol"><span class="type">GdkDragProtocol</span></a> protocol</code></em>,
         | 
| 78 78 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x_root</code></em>,
         | 
| @@ -80,7 +80,7 @@ | |
| 80 80 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> suggested_action</code></em>,
         | 
| 81 81 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> possible_actions</code></em>,
         | 
| 82 82 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);
         | 
| 83 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drop-finish" title="gdk_drop_finish ()">gdk_drop_finish</a>                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 83 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drop-finish" title="gdk_drop_finish ()">gdk_drop_finish</a>                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 84 84 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> success</code></em>,
         | 
| 85 85 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);
         | 
| 86 86 | 
             
            <a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="returnvalue">GdkNativeWindow</span></a>     <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-get-protocol" title="gdk_drag_get_protocol ()">gdk_drag_get_protocol</a>               (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> xid</code></em>,
         | 
| @@ -89,16 +89,16 @@ | |
| 89 89 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> xid</code></em>,
         | 
| 90 90 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragProtocol" title="enum GdkDragProtocol"><span class="type">GdkDragProtocol</span></a> *protocol</code></em>);
         | 
| 91 91 | 
             
            enum                <a class="link" href="gdk-Drag-and-Drop.html#GdkDragProtocol" title="enum GdkDragProtocol">GdkDragProtocol</a>;
         | 
| 92 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-unref" title="gdk_drag_context_unref ()">gdk_drag_context_unref</a>              (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 93 | 
            -
             | 
| 92 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-context-unref" title="gdk_drag_context_unref ()">gdk_drag_context_unref</a>              (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 93 | 
            +
            struct              <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext">GdkDragContext</a>;
         | 
| 94 94 | 
             
            enum                <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction">GdkDragAction</a>;
         | 
| 95 | 
            -
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-status" title="gdk_drag_status ()">gdk_drag_status</a>                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 95 | 
            +
            <span class="returnvalue">void</span>                <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-status" title="gdk_drag_status ()">gdk_drag_status</a>                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 96 96 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> action</code></em>,
         | 
| 97 97 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);
         | 
| 98 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-drop-succeeded" title="gdk_drag_drop_succeeded ()">gdk_drag_drop_succeeded</a>             (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 98 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-drop-succeeded" title="gdk_drag_drop_succeeded ()">gdk_drag_drop_succeeded</a>             (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
         | 
| 99 99 | 
             
            </pre>
         | 
| 100 100 | 
             
            </div>
         | 
| 101 | 
            -
            <div class="refsect1" | 
| 101 | 
            +
            <div class="refsect1">
         | 
| 102 102 | 
             
            <a name="gdk-Drag-and-Drop.description"></a><h2>Description</h2>
         | 
| 103 103 | 
             
            <p>
         | 
| 104 104 | 
             
            These functions provide a low level interface for drag and drop.
         | 
| @@ -108,15 +108,15 @@ transparently, the Win32 backend supports the WM_DROPFILES protocol. | |
| 108 108 | 
             
            <p>
         | 
| 109 109 | 
             
            GTK+ provides a higher level abstraction based on top of these functions,
         | 
| 110 110 | 
             
            and so they are not normally needed in GTK+ applications.
         | 
| 111 | 
            -
            See the <a href="http://library.gnome.org/devel/ | 
| 111 | 
            +
            See the <a href="http://library.gnome.org/devel/gtk3/gtk-Drag-and-Drop.html">Drag and Drop</a> section of
         | 
| 112 112 | 
             
            the GTK+ documentation for more information.
         | 
| 113 113 | 
             
            </p>
         | 
| 114 114 | 
             
            </div>
         | 
| 115 | 
            -
            <div class="refsect1" | 
| 115 | 
            +
            <div class="refsect1">
         | 
| 116 116 | 
             
            <a name="gdk-Drag-and-Drop.details"></a><h2>Details</h2>
         | 
| 117 | 
            -
            <div class="refsect2" | 
| 117 | 
            +
            <div class="refsect2">
         | 
| 118 118 | 
             
            <a name="gdk-drag-get-selection"></a><h3>gdk_drag_get_selection ()</h3>
         | 
| 119 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a>             gdk_drag_get_selection              (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 119 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="returnvalue">GdkAtom</span></a>             gdk_drag_get_selection              (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 120 120 | 
             
            <p>
         | 
| 121 121 | 
             
            Returns the selection atom for the current source window.
         | 
| 122 122 | 
             
            </p>
         | 
| @@ -125,21 +125,19 @@ Returns the selection atom for the current source window. | |
| 125 125 | 
             
            <tbody>
         | 
| 126 126 | 
             
            <tr>
         | 
| 127 127 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 128 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a | 
| 129 | 
            -
            </td>
         | 
| 128 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 130 129 | 
             
            </tr>
         | 
| 131 130 | 
             
            <tr>
         | 
| 132 131 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 133 | 
            -
            <td> | 
| 134 | 
            -
            </td>
         | 
| 132 | 
            +
            <td>the selection atom.</td>
         | 
| 135 133 | 
             
            </tr>
         | 
| 136 134 | 
             
            </tbody>
         | 
| 137 135 | 
             
            </table></div>
         | 
| 138 136 | 
             
            </div>
         | 
| 139 137 | 
             
            <hr>
         | 
| 140 | 
            -
            <div class="refsect2" | 
| 138 | 
            +
            <div class="refsect2">
         | 
| 141 139 | 
             
            <a name="gdk-drag-abort"></a><h3>gdk_drag_abort ()</h3>
         | 
| 142 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_abort                      (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 140 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_abort                      (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 143 141 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);</pre>
         | 
| 144 142 | 
             
            <p>
         | 
| 145 143 | 
             
            Aborts a drag without dropping. 
         | 
| @@ -152,21 +150,19 @@ This function is called by the drag source. | |
| 152 150 | 
             
            <tbody>
         | 
| 153 151 | 
             
            <tr>
         | 
| 154 152 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 155 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a | 
| 156 | 
            -
            </td>
         | 
| 153 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 157 154 | 
             
            </tr>
         | 
| 158 155 | 
             
            <tr>
         | 
| 159 156 | 
             
            <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
         | 
| 160 | 
            -
            <td>the timestamp for this operation | 
| 161 | 
            -
            </td>
         | 
| 157 | 
            +
            <td>the timestamp for this operation.</td>
         | 
| 162 158 | 
             
            </tr>
         | 
| 163 159 | 
             
            </tbody>
         | 
| 164 160 | 
             
            </table></div>
         | 
| 165 161 | 
             
            </div>
         | 
| 166 162 | 
             
            <hr>
         | 
| 167 | 
            -
            <div class="refsect2" | 
| 163 | 
            +
            <div class="refsect2">
         | 
| 168 164 | 
             
            <a name="gdk-drop-reply"></a><h3>gdk_drop_reply ()</h3>
         | 
| 169 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drop_reply                      (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 165 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drop_reply                      (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 170 166 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> ok</code></em>,
         | 
| 171 167 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);</pre>
         | 
| 172 168 | 
             
            <p>
         | 
| @@ -181,43 +177,44 @@ to a drop initiated by the drag source. | |
| 181 177 | 
             
            <tbody>
         | 
| 182 178 | 
             
            <tr>
         | 
| 183 179 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 184 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a | 
| 185 | 
            -
            </td>
         | 
| 180 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 186 181 | 
             
            </tr>
         | 
| 187 182 | 
             
            <tr>
         | 
| 188 183 | 
             
            <td><p><span class="term"><em class="parameter"><code>ok</code></em> :</span></p></td>
         | 
| 189 184 | 
             
            <td>
         | 
| 190 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the drop is accepted | 
| 191 | 
            -
            </td>
         | 
| 185 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the drop is accepted.</td>
         | 
| 192 186 | 
             
            </tr>
         | 
| 193 187 | 
             
            <tr>
         | 
| 194 188 | 
             
            <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
         | 
| 195 | 
            -
            <td>the timestamp for this operation | 
| 196 | 
            -
            </td>
         | 
| 189 | 
            +
            <td>the timestamp for this operation.</td>
         | 
| 197 190 | 
             
            </tr>
         | 
| 198 191 | 
             
            </tbody>
         | 
| 199 192 | 
             
            </table></div>
         | 
| 200 193 | 
             
            </div>
         | 
| 201 194 | 
             
            <hr>
         | 
| 202 | 
            -
            <div class="refsect2" | 
| 195 | 
            +
            <div class="refsect2">
         | 
| 203 196 | 
             
            <a name="gdk-drag-context-new"></a><h3>gdk_drag_context_new ()</h3>
         | 
| 204 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> *    gdk_drag_context_new                (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 197 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> *    gdk_drag_context_new                (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 198 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 199 | 
            +
            <h3 class="title">Warning</h3>
         | 
| 200 | 
            +
            <p><code class="literal">gdk_drag_context_new</code> has been deprecated since version 2.24 and should not be used in newly-written code. This function is not useful, you always
         | 
| 201 | 
            +
              obtain drag contexts by <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-begin" title="gdk_drag_begin ()"><code class="function">gdk_drag_begin()</code></a> or similar.</p>
         | 
| 202 | 
            +
            </div>
         | 
| 205 203 | 
             
            <p>
         | 
| 206 | 
            -
            Creates a new <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
         | 
| 204 | 
            +
            Creates a new <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.
         | 
| 207 205 | 
             
            </p>
         | 
| 208 206 | 
             
            <div class="variablelist"><table border="0">
         | 
| 209 207 | 
             
            <col align="left" valign="top">
         | 
| 210 208 | 
             
            <tbody><tr>
         | 
| 211 209 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 212 | 
            -
            <td> | 
| 213 | 
            -
            </td>
         | 
| 210 | 
            +
            <td>the newly created <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 214 211 | 
             
            </tr></tbody>
         | 
| 215 212 | 
             
            </table></div>
         | 
| 216 213 | 
             
            </div>
         | 
| 217 214 | 
             
            <hr>
         | 
| 218 | 
            -
            <div class="refsect2" | 
| 215 | 
            +
            <div class="refsect2">
         | 
| 219 216 | 
             
            <a name="gdk-drag-drop"></a><h3>gdk_drag_drop ()</h3>
         | 
| 220 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_drop                       (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 217 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_drop                       (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 221 218 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);</pre>
         | 
| 222 219 | 
             
            <p>
         | 
| 223 220 | 
             
            Drops on the current destination.
         | 
| @@ -230,26 +227,28 @@ This function is called by the drag source. | |
| 230 227 | 
             
            <tbody>
         | 
| 231 228 | 
             
            <tr>
         | 
| 232 229 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 233 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a | 
| 234 | 
            -
            </td>
         | 
| 230 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 235 231 | 
             
            </tr>
         | 
| 236 232 | 
             
            <tr>
         | 
| 237 233 | 
             
            <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
         | 
| 238 | 
            -
            <td>the timestamp for this operation | 
| 239 | 
            -
            </td>
         | 
| 234 | 
            +
            <td>the timestamp for this operation.</td>
         | 
| 240 235 | 
             
            </tr>
         | 
| 241 236 | 
             
            </tbody>
         | 
| 242 237 | 
             
            </table></div>
         | 
| 243 238 | 
             
            </div>
         | 
| 244 239 | 
             
            <hr>
         | 
| 245 | 
            -
            <div class="refsect2" | 
| 240 | 
            +
            <div class="refsect2">
         | 
| 246 241 | 
             
            <a name="gdk-drag-find-window"></a><h3>gdk_drag_find_window ()</h3>
         | 
| 247 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_find_window                (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 242 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_find_window                (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 248 243 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *drag_window</code></em>,
         | 
| 249 244 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x_root</code></em>,
         | 
| 250 245 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y_root</code></em>,
         | 
| 251 246 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> **dest_window</code></em>,
         | 
| 252 247 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragProtocol" title="enum GdkDragProtocol"><span class="type">GdkDragProtocol</span></a> *protocol</code></em>);</pre>
         | 
| 248 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 249 | 
            +
            <h3 class="title">Warning</h3>
         | 
| 250 | 
            +
            <p><code class="literal">gdk_drag_find_window</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-find-window-for-screen" title="gdk_drag_find_window_for_screen ()"><code class="function">gdk_drag_find_window_for_screen()</code></a> instead.</p>
         | 
| 251 | 
            +
            </div>
         | 
| 253 252 | 
             
            <p>
         | 
| 254 253 | 
             
            Finds the destination window and DND protocol to use at the
         | 
| 255 254 | 
             
            given pointer position.
         | 
| @@ -263,42 +262,38 @@ This function is called by the drag source to obtain the | |
| 263 262 | 
             
            <tbody>
         | 
| 264 263 | 
             
            <tr>
         | 
| 265 264 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 266 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a | 
| 267 | 
            -
            </td>
         | 
| 265 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 268 266 | 
             
            </tr>
         | 
| 269 267 | 
             
            <tr>
         | 
| 270 268 | 
             
            <td><p><span class="term"><em class="parameter"><code>drag_window</code></em> :</span></p></td>
         | 
| 271 269 | 
             
            <td>a window which may be at the pointer position, but
         | 
| 272 | 
            -
             | 
| 273 | 
            -
            </td>
         | 
| 270 | 
            +
            should be ignored, since it is put up by the drag source as an icon.</td>
         | 
| 274 271 | 
             
            </tr>
         | 
| 275 272 | 
             
            <tr>
         | 
| 276 273 | 
             
            <td><p><span class="term"><em class="parameter"><code>x_root</code></em> :</span></p></td>
         | 
| 277 | 
            -
            <td>the x position of the pointer in root coordinates | 
| 278 | 
            -
            </td>
         | 
| 274 | 
            +
            <td>the x position of the pointer in root coordinates.</td>
         | 
| 279 275 | 
             
            </tr>
         | 
| 280 276 | 
             
            <tr>
         | 
| 281 277 | 
             
            <td><p><span class="term"><em class="parameter"><code>y_root</code></em> :</span></p></td>
         | 
| 282 | 
            -
            <td>the y position of the pointer in root coordinates | 
| 283 | 
            -
            </td>
         | 
| 278 | 
            +
            <td>the y position of the pointer in root coordinates.</td>
         | 
| 284 279 | 
             
            </tr>
         | 
| 285 280 | 
             
            <tr>
         | 
| 286 281 | 
             
            <td><p><span class="term"><em class="parameter"><code>dest_window</code></em> :</span></p></td>
         | 
| 287 | 
            -
            <td> | 
| 282 | 
            +
            <td>location to store the destination window in. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 288 283 | 
             
            </td>
         | 
| 289 284 | 
             
            </tr>
         | 
| 290 285 | 
             
            <tr>
         | 
| 291 286 | 
             
            <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></td>
         | 
| 292 | 
            -
            <td> | 
| 287 | 
            +
            <td>location to store the DND protocol in. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 293 288 | 
             
            </td>
         | 
| 294 289 | 
             
            </tr>
         | 
| 295 290 | 
             
            </tbody>
         | 
| 296 291 | 
             
            </table></div>
         | 
| 297 292 | 
             
            </div>
         | 
| 298 293 | 
             
            <hr>
         | 
| 299 | 
            -
            <div class="refsect2" | 
| 294 | 
            +
            <div class="refsect2">
         | 
| 300 295 | 
             
            <a name="gdk-drag-find-window-for-screen"></a><h3>gdk_drag_find_window_for_screen ()</h3>
         | 
| 301 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_find_window_for_screen     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 296 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_find_window_for_screen     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 302 297 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *drag_window</code></em>,
         | 
| 303 298 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
         | 
| 304 299 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x_root</code></em>,
         | 
| @@ -318,38 +313,34 @@ This function is called by the drag source to obtain the | |
| 318 313 | 
             
            <tbody>
         | 
| 319 314 | 
             
            <tr>
         | 
| 320 315 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 321 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 316 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 322 317 | 
             
            </td>
         | 
| 323 318 | 
             
            </tr>
         | 
| 324 319 | 
             
            <tr>
         | 
| 325 320 | 
             
            <td><p><span class="term"><em class="parameter"><code>drag_window</code></em> :</span></p></td>
         | 
| 326 321 | 
             
            <td>a window which may be at the pointer position, but
         | 
| 327 | 
            -
            should be ignored, since it is put up by the drag source as an icon | 
| 328 | 
            -
            </td>
         | 
| 322 | 
            +
            should be ignored, since it is put up by the drag source as an icon.</td>
         | 
| 329 323 | 
             
            </tr>
         | 
| 330 324 | 
             
            <tr>
         | 
| 331 325 | 
             
            <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
         | 
| 332 | 
            -
            <td>the screen where the destination window is sought | 
| 333 | 
            -
            </td>
         | 
| 326 | 
            +
            <td>the screen where the destination window is sought.</td>
         | 
| 334 327 | 
             
            </tr>
         | 
| 335 328 | 
             
            <tr>
         | 
| 336 329 | 
             
            <td><p><span class="term"><em class="parameter"><code>x_root</code></em> :</span></p></td>
         | 
| 337 | 
            -
            <td>the x position of the pointer in root coordinates | 
| 338 | 
            -
            </td>
         | 
| 330 | 
            +
            <td>the x position of the pointer in root coordinates.</td>
         | 
| 339 331 | 
             
            </tr>
         | 
| 340 332 | 
             
            <tr>
         | 
| 341 333 | 
             
            <td><p><span class="term"><em class="parameter"><code>y_root</code></em> :</span></p></td>
         | 
| 342 | 
            -
            <td>the y position of the pointer in root coordinates | 
| 343 | 
            -
            </td>
         | 
| 334 | 
            +
            <td>the y position of the pointer in root coordinates.</td>
         | 
| 344 335 | 
             
            </tr>
         | 
| 345 336 | 
             
            <tr>
         | 
| 346 337 | 
             
            <td><p><span class="term"><em class="parameter"><code>dest_window</code></em> :</span></p></td>
         | 
| 347 | 
            -
            <td> | 
| 338 | 
            +
            <td>location to store the destination window in. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 348 339 | 
             
            </td>
         | 
| 349 340 | 
             
            </tr>
         | 
| 350 341 | 
             
            <tr>
         | 
| 351 342 | 
             
            <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></td>
         | 
| 352 | 
            -
            <td> | 
| 343 | 
            +
            <td>location to store the DND protocol in. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
         | 
| 353 344 | 
             
            </td>
         | 
| 354 345 | 
             
            </tr>
         | 
| 355 346 | 
             
            </tbody>
         | 
| @@ -357,10 +348,10 @@ should be ignored, since it is put up by the drag source as an icon. | |
| 357 348 | 
             
            <p class="since">Since 2.2</p>
         | 
| 358 349 | 
             
            </div>
         | 
| 359 350 | 
             
            <hr>
         | 
| 360 | 
            -
            <div class="refsect2" | 
| 351 | 
            +
            <div class="refsect2">
         | 
| 361 352 | 
             
            <a name="gdk-drag-context-ref"></a><h3>gdk_drag_context_ref ()</h3>
         | 
| 362 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_context_ref                (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 363 | 
            -
            <div class="warning"  | 
| 353 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_context_ref                (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 354 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 364 355 | 
             
            <h3 class="title">Warning</h3>
         | 
| 365 356 | 
             
            <p><code class="literal">gdk_drag_context_ref</code> has been deprecated since version 2.2 and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> instead.</p>
         | 
| 366 357 | 
             
            </div>
         | 
| @@ -371,15 +362,14 @@ Deprecated function; use <a href="http://library.gnome.org/devel/gobject/unstabl | |
| 371 362 | 
             
            <col align="left" valign="top">
         | 
| 372 363 | 
             
            <tbody><tr>
         | 
| 373 364 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 374 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a | 
| 375 | 
            -
            </td>
         | 
| 365 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 376 366 | 
             
            </tr></tbody>
         | 
| 377 367 | 
             
            </table></div>
         | 
| 378 368 | 
             
            </div>
         | 
| 379 369 | 
             
            <hr>
         | 
| 380 | 
            -
            <div class="refsect2" | 
| 370 | 
            +
            <div class="refsect2">
         | 
| 381 371 | 
             
            <a name="gdk-drag-context-get-actions"></a><h3>gdk_drag_context_get_actions ()</h3>
         | 
| 382 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="returnvalue">GdkDragAction</span></a>       gdk_drag_context_get_actions        (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 372 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="returnvalue">GdkDragAction</span></a>       gdk_drag_context_get_actions        (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 383 373 | 
             
            <p>
         | 
| 384 374 | 
             
            Determines the bitmask of actions proposed by the source if
         | 
| 385 375 | 
             
            <code class="function">gdk_drag_context_suggested_action()</code> returns GDK_ACTION_ASK.
         | 
| @@ -389,24 +379,22 @@ Determines the bitmask of actions proposed by the source if | |
| 389 379 | 
             
            <tbody>
         | 
| 390 380 | 
             
            <tr>
         | 
| 391 381 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 392 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 382 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 393 383 | 
             
            </td>
         | 
| 394 384 | 
             
            </tr>
         | 
| 395 385 | 
             
            <tr>
         | 
| 396 386 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 397 | 
            -
            <td> | 
| 398 | 
            -
             | 
| 399 | 
            -
            </td>
         | 
| 387 | 
            +
            <td>the <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> flags</td>
         | 
| 400 388 | 
             
            </tr>
         | 
| 401 389 | 
             
            </tbody>
         | 
| 402 390 | 
             
            </table></div>
         | 
| 403 391 | 
             
            <p class="since">Since 2.22</p>
         | 
| 404 392 | 
             
            </div>
         | 
| 405 393 | 
             
            <hr>
         | 
| 406 | 
            -
            <div class="refsect2" | 
| 394 | 
            +
            <div class="refsect2">
         | 
| 407 395 | 
             
            <a name="gdk-drag-context-get-selected-action"></a><h3>gdk_drag_context_get_selected_action ()</h3>
         | 
| 408 396 | 
             
            <pre class="programlisting"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="returnvalue">GdkDragAction</span></a>       gdk_drag_context_get_selected_action
         | 
| 409 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 397 | 
            +
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 410 398 | 
             
            <p>
         | 
| 411 399 | 
             
            Determines the action chosen by the drag destination.
         | 
| 412 400 | 
             
            </p>
         | 
| @@ -415,24 +403,22 @@ Determines the action chosen by the drag destination. | |
| 415 403 | 
             
            <tbody>
         | 
| 416 404 | 
             
            <tr>
         | 
| 417 405 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 418 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 406 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 419 407 | 
             
            </td>
         | 
| 420 408 | 
             
            </tr>
         | 
| 421 409 | 
             
            <tr>
         | 
| 422 410 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 423 | 
            -
            <td> | 
| 424 | 
            -
             | 
| 425 | 
            -
            </td>
         | 
| 411 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> value</td>
         | 
| 426 412 | 
             
            </tr>
         | 
| 427 413 | 
             
            </tbody>
         | 
| 428 414 | 
             
            </table></div>
         | 
| 429 415 | 
             
            <p class="since">Since 2.22</p>
         | 
| 430 416 | 
             
            </div>
         | 
| 431 417 | 
             
            <hr>
         | 
| 432 | 
            -
            <div class="refsect2" | 
| 418 | 
            +
            <div class="refsect2">
         | 
| 433 419 | 
             
            <a name="gdk-drag-context-get-suggested-action"></a><h3>gdk_drag_context_get_suggested_action ()</h3>
         | 
| 434 420 | 
             
            <pre class="programlisting"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="returnvalue">GdkDragAction</span></a>       gdk_drag_context_get_suggested_action
         | 
| 435 | 
            -
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 421 | 
            +
                                                                    (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 436 422 | 
             
            <p>
         | 
| 437 423 | 
             
            Determines the suggested drag action of the context.
         | 
| 438 424 | 
             
            </p>
         | 
| @@ -441,23 +427,21 @@ Determines the suggested drag action of the context. | |
| 441 427 | 
             
            <tbody>
         | 
| 442 428 | 
             
            <tr>
         | 
| 443 429 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 444 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 430 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 445 431 | 
             
            </td>
         | 
| 446 432 | 
             
            </tr>
         | 
| 447 433 | 
             
            <tr>
         | 
| 448 434 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 449 | 
            -
            <td> | 
| 450 | 
            -
             | 
| 451 | 
            -
            </td>
         | 
| 435 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> value</td>
         | 
| 452 436 | 
             
            </tr>
         | 
| 453 437 | 
             
            </tbody>
         | 
| 454 438 | 
             
            </table></div>
         | 
| 455 439 | 
             
            <p class="since">Since 2.22</p>
         | 
| 456 440 | 
             
            </div>
         | 
| 457 441 | 
             
            <hr>
         | 
| 458 | 
            -
            <div class="refsect2" | 
| 442 | 
            +
            <div class="refsect2">
         | 
| 459 443 | 
             
            <a name="gdk-drag-context-list-targets"></a><h3>gdk_drag_context_list_targets ()</h3>
         | 
| 460 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *             gdk_drag_context_list_targets       (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 444 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *             gdk_drag_context_list_targets       (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 461 445 | 
             
            <p>
         | 
| 462 446 | 
             
            Retrieves the list of targets of the context.
         | 
| 463 447 | 
             
            </p>
         | 
| @@ -466,12 +450,12 @@ Retrieves the list of targets of the context. | |
| 466 450 | 
             
            <tbody>
         | 
| 467 451 | 
             
            <tr>
         | 
| 468 452 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 469 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 453 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 470 454 | 
             
            </td>
         | 
| 471 455 | 
             
            </tr>
         | 
| 472 456 | 
             
            <tr>
         | 
| 473 457 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 474 | 
            -
            <td> | 
| 458 | 
            +
            <td>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of targets. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GdkAtom]</span>
         | 
| 475 459 | 
             
            </td>
         | 
| 476 460 | 
             
            </tr>
         | 
| 477 461 | 
             
            </tbody>
         | 
| @@ -479,9 +463,9 @@ Retrieves the list of targets of the context. | |
| 479 463 | 
             
            <p class="since">Since 2.22</p>
         | 
| 480 464 | 
             
            </div>
         | 
| 481 465 | 
             
            <hr>
         | 
| 482 | 
            -
            <div class="refsect2" | 
| 466 | 
            +
            <div class="refsect2">
         | 
| 483 467 | 
             
            <a name="gdk-drag-context-get-source-window"></a><h3>gdk_drag_context_get_source_window ()</h3>
         | 
| 484 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> *         gdk_drag_context_get_source_window  (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 468 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> *         gdk_drag_context_get_source_window  (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 485 469 | 
             
            <p>
         | 
| 486 470 | 
             
            Returns the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> where the DND operation started.
         | 
| 487 471 | 
             
            </p>
         | 
| @@ -490,12 +474,12 @@ Returns the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type" | |
| 490 474 | 
             
            <tbody>
         | 
| 491 475 | 
             
            <tr>
         | 
| 492 476 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 493 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 477 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 494 478 | 
             
            </td>
         | 
| 495 479 | 
             
            </tr>
         | 
| 496 480 | 
             
            <tr>
         | 
| 497 481 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 498 | 
            -
            <td> | 
| 482 | 
            +
            <td>a <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 499 483 | 
             
            </td>
         | 
| 500 484 | 
             
            </tr>
         | 
| 501 485 | 
             
            </tbody>
         | 
| @@ -503,9 +487,9 @@ Returns the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type" | |
| 503 487 | 
             
            <p class="since">Since 2.22</p>
         | 
| 504 488 | 
             
            </div>
         | 
| 505 489 | 
             
            <hr>
         | 
| 506 | 
            -
            <div class="refsect2" | 
| 490 | 
            +
            <div class="refsect2">
         | 
| 507 491 | 
             
            <a name="gdk-drag-begin"></a><h3>gdk_drag_begin ()</h3>
         | 
| 508 | 
            -
            <pre class="programlisting"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> *    gdk_drag_begin                      (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
         | 
| 492 | 
            +
            <pre class="programlisting"><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> *    gdk_drag_begin                      (<em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>,
         | 
| 509 493 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *targets</code></em>);</pre>
         | 
| 510 494 | 
             
            <p>
         | 
| 511 495 | 
             
            Starts a drag and creates a new drag context for it.
         | 
| @@ -518,27 +502,25 @@ This function is called by the drag source. | |
| 518 502 | 
             
            <tbody>
         | 
| 519 503 | 
             
            <tr>
         | 
| 520 504 | 
             
            <td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
         | 
| 521 | 
            -
            <td>the source window for this drag | 
| 522 | 
            -
            </td>
         | 
| 505 | 
            +
            <td>the source window for this drag.</td>
         | 
| 523 506 | 
             
            </tr>
         | 
| 524 507 | 
             
            <tr>
         | 
| 525 508 | 
             
            <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
         | 
| 526 | 
            -
            <td> | 
| 527 | 
            -
             | 
| 509 | 
            +
            <td>the offered targets,
         | 
| 510 | 
            +
            as list of <a class="link" href="gdk-Properties-and-Atoms.html#GdkAtom" title="GdkAtom"><span class="type">GdkAtom</span></a>s. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GdkAtom]</span>
         | 
| 528 511 | 
             
            </td>
         | 
| 529 512 | 
             
            </tr>
         | 
| 530 513 | 
             
            <tr>
         | 
| 531 514 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 532 | 
            -
            <td> | 
| 533 | 
            -
            </td>
         | 
| 515 | 
            +
            <td>a newly created <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 534 516 | 
             
            </tr>
         | 
| 535 517 | 
             
            </tbody>
         | 
| 536 518 | 
             
            </table></div>
         | 
| 537 519 | 
             
            </div>
         | 
| 538 520 | 
             
            <hr>
         | 
| 539 | 
            -
            <div class="refsect2" | 
| 521 | 
            +
            <div class="refsect2">
         | 
| 540 522 | 
             
            <a name="gdk-drag-motion"></a><h3>gdk_drag_motion ()</h3>
         | 
| 541 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gdk_drag_motion                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 523 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gdk_drag_motion                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 542 524 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *dest_window</code></em>,
         | 
| 543 525 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragProtocol" title="enum GdkDragProtocol"><span class="type">GdkDragProtocol</span></a> protocol</code></em>,
         | 
| 544 526 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x_root</code></em>,
         | 
| @@ -558,57 +540,48 @@ This function is called by the drag source. | |
| 558 540 | 
             
            <tbody>
         | 
| 559 541 | 
             
            <tr>
         | 
| 560 542 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 561 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a | 
| 562 | 
            -
            </td>
         | 
| 543 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 563 544 | 
             
            </tr>
         | 
| 564 545 | 
             
            <tr>
         | 
| 565 546 | 
             
            <td><p><span class="term"><em class="parameter"><code>dest_window</code></em> :</span></p></td>
         | 
| 566 | 
            -
            <td>the new destination window, obtained by | 
| 567 | 
            -
             | 
| 568 | 
            -
            </td>
         | 
| 547 | 
            +
            <td>the new destination window, obtained by
         | 
| 548 | 
            +
            <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-find-window" title="gdk_drag_find_window ()"><code class="function">gdk_drag_find_window()</code></a>.</td>
         | 
| 569 549 | 
             
            </tr>
         | 
| 570 550 | 
             
            <tr>
         | 
| 571 551 | 
             
            <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></td>
         | 
| 572 | 
            -
            <td>the DND protocol in use, obtained by <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-find-window" title="gdk_drag_find_window ()"><code class="function">gdk_drag_find_window()</code></a | 
| 573 | 
            -
            </td>
         | 
| 552 | 
            +
            <td>the DND protocol in use, obtained by <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-find-window" title="gdk_drag_find_window ()"><code class="function">gdk_drag_find_window()</code></a>.</td>
         | 
| 574 553 | 
             
            </tr>
         | 
| 575 554 | 
             
            <tr>
         | 
| 576 555 | 
             
            <td><p><span class="term"><em class="parameter"><code>x_root</code></em> :</span></p></td>
         | 
| 577 | 
            -
            <td>the x position of the pointer in root coordinates | 
| 578 | 
            -
            </td>
         | 
| 556 | 
            +
            <td>the x position of the pointer in root coordinates.</td>
         | 
| 579 557 | 
             
            </tr>
         | 
| 580 558 | 
             
            <tr>
         | 
| 581 559 | 
             
            <td><p><span class="term"><em class="parameter"><code>y_root</code></em> :</span></p></td>
         | 
| 582 | 
            -
            <td>the y position of the pointer in root coordinates | 
| 583 | 
            -
            </td>
         | 
| 560 | 
            +
            <td>the y position of the pointer in root coordinates.</td>
         | 
| 584 561 | 
             
            </tr>
         | 
| 585 562 | 
             
            <tr>
         | 
| 586 563 | 
             
            <td><p><span class="term"><em class="parameter"><code>suggested_action</code></em> :</span></p></td>
         | 
| 587 | 
            -
            <td>the suggested action | 
| 588 | 
            -
            </td>
         | 
| 564 | 
            +
            <td>the suggested action.</td>
         | 
| 589 565 | 
             
            </tr>
         | 
| 590 566 | 
             
            <tr>
         | 
| 591 567 | 
             
            <td><p><span class="term"><em class="parameter"><code>possible_actions</code></em> :</span></p></td>
         | 
| 592 | 
            -
            <td>the possible actions | 
| 593 | 
            -
            </td>
         | 
| 568 | 
            +
            <td>the possible actions.</td>
         | 
| 594 569 | 
             
            </tr>
         | 
| 595 570 | 
             
            <tr>
         | 
| 596 571 | 
             
            <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
         | 
| 597 | 
            -
            <td>the timestamp for this operation | 
| 598 | 
            -
            </td>
         | 
| 572 | 
            +
            <td>the timestamp for this operation.</td>
         | 
| 599 573 | 
             
            </tr>
         | 
| 600 574 | 
             
            <tr>
         | 
| 601 575 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 602 | 
            -
            <td> | 
| 603 | 
            -
            </td>
         | 
| 576 | 
            +
            <td>FIXME</td>
         | 
| 604 577 | 
             
            </tr>
         | 
| 605 578 | 
             
            </tbody>
         | 
| 606 579 | 
             
            </table></div>
         | 
| 607 580 | 
             
            </div>
         | 
| 608 581 | 
             
            <hr>
         | 
| 609 | 
            -
            <div class="refsect2" | 
| 582 | 
            +
            <div class="refsect2">
         | 
| 610 583 | 
             
            <a name="gdk-drop-finish"></a><h3>gdk_drop_finish ()</h3>
         | 
| 611 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drop_finish                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 584 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drop_finish                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 612 585 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> success</code></em>,
         | 
| 613 586 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);</pre>
         | 
| 614 587 | 
             
            <p>
         | 
| @@ -622,28 +595,29 @@ This function is called by the drag destination. | |
| 622 595 | 
             
            <tbody>
         | 
| 623 596 | 
             
            <tr>
         | 
| 624 597 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 625 | 
            -
            <td>a <span class="type">GtkDragContext</span | 
| 626 | 
            -
            </td>
         | 
| 598 | 
            +
            <td>a <span class="type">GtkDragContext</span>.</td>
         | 
| 627 599 | 
             
            </tr>
         | 
| 628 600 | 
             
            <tr>
         | 
| 629 601 | 
             
            <td><p><span class="term"><em class="parameter"><code>success</code></em> :</span></p></td>
         | 
| 630 602 | 
             
            <td>
         | 
| 631 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the data was successfully received | 
| 632 | 
            -
            </td>
         | 
| 603 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the data was successfully received.</td>
         | 
| 633 604 | 
             
            </tr>
         | 
| 634 605 | 
             
            <tr>
         | 
| 635 606 | 
             
            <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
         | 
| 636 | 
            -
            <td>the timestamp for this operation | 
| 637 | 
            -
            </td>
         | 
| 607 | 
            +
            <td>the timestamp for this operation.</td>
         | 
| 638 608 | 
             
            </tr>
         | 
| 639 609 | 
             
            </tbody>
         | 
| 640 610 | 
             
            </table></div>
         | 
| 641 611 | 
             
            </div>
         | 
| 642 612 | 
             
            <hr>
         | 
| 643 | 
            -
            <div class="refsect2" | 
| 613 | 
            +
            <div class="refsect2">
         | 
| 644 614 | 
             
            <a name="gdk-drag-get-protocol"></a><h3>gdk_drag_get_protocol ()</h3>
         | 
| 645 615 | 
             
            <pre class="programlisting"><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="returnvalue">GdkNativeWindow</span></a>     gdk_drag_get_protocol               (<em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> xid</code></em>,
         | 
| 646 616 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragProtocol" title="enum GdkDragProtocol"><span class="type">GdkDragProtocol</span></a> *protocol</code></em>);</pre>
         | 
| 617 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 618 | 
            +
            <h3 class="title">Warning</h3>
         | 
| 619 | 
            +
            <p><code class="literal">gdk_drag_get_protocol</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="gdk-Drag-and-Drop.html#gdk-drag-get-protocol-for-display" title="gdk_drag_get_protocol_for_display ()"><code class="function">gdk_drag_get_protocol_for_display()</code></a> instead</p>
         | 
| 620 | 
            +
            </div>
         | 
| 647 621 | 
             
            <p>
         | 
| 648 622 | 
             
            Finds out the DND protocol supported by a window.
         | 
| 649 623 | 
             
            </p>
         | 
| @@ -652,26 +626,23 @@ Finds out the DND protocol supported by a window. | |
| 652 626 | 
             
            <tbody>
         | 
| 653 627 | 
             
            <tr>
         | 
| 654 628 | 
             
            <td><p><span class="term"><em class="parameter"><code>xid</code></em> :</span></p></td>
         | 
| 655 | 
            -
            <td>the windowing system id of the destination window | 
| 656 | 
            -
            </td>
         | 
| 629 | 
            +
            <td>the windowing system id of the destination window.</td>
         | 
| 657 630 | 
             
            </tr>
         | 
| 658 631 | 
             
            <tr>
         | 
| 659 632 | 
             
            <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></td>
         | 
| 660 | 
            -
            <td>location where the supported DND protocol is returned | 
| 661 | 
            -
            </td>
         | 
| 633 | 
            +
            <td>location where the supported DND protocol is returned.</td>
         | 
| 662 634 | 
             
            </tr>
         | 
| 663 635 | 
             
            <tr>
         | 
| 664 636 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 665 | 
            -
            <td> | 
| 666 | 
            -
             | 
| 667 | 
            -
             | 
| 668 | 
            -
            </td>
         | 
| 637 | 
            +
            <td>the windowing system specific id for the window where
         | 
| 638 | 
            +
            the drop should happen. This may be <em class="parameter"><code>xid</code></em> or the id of a proxy
         | 
| 639 | 
            +
            window, or zero if <em class="parameter"><code>xid</code></em> doesn't support Drag and Drop.</td>
         | 
| 669 640 | 
             
            </tr>
         | 
| 670 641 | 
             
            </tbody>
         | 
| 671 642 | 
             
            </table></div>
         | 
| 672 643 | 
             
            </div>
         | 
| 673 644 | 
             
            <hr>
         | 
| 674 | 
            -
            <div class="refsect2" | 
| 645 | 
            +
            <div class="refsect2">
         | 
| 675 646 | 
             
            <a name="gdk-drag-get-protocol-for-display"></a><h3>gdk_drag_get_protocol_for_display ()</h3>
         | 
| 676 647 | 
             
            <pre class="programlisting"><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="returnvalue">GdkNativeWindow</span></a>     gdk_drag_get_protocol_for_display   (<em class="parameter"><code><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> *display</code></em>,
         | 
| 677 648 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> xid</code></em>,
         | 
| @@ -684,32 +655,28 @@ Finds out the DND protocol supported by a window. | |
| 684 655 | 
             
            <tbody>
         | 
| 685 656 | 
             
            <tr>
         | 
| 686 657 | 
             
            <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
         | 
| 687 | 
            -
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where the destination window resides
         | 
| 688 | 
            -
            </td>
         | 
| 658 | 
            +
            <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where the destination window resides</td>
         | 
| 689 659 | 
             
            </tr>
         | 
| 690 660 | 
             
            <tr>
         | 
| 691 661 | 
             
            <td><p><span class="term"><em class="parameter"><code>xid</code></em> :</span></p></td>
         | 
| 692 | 
            -
            <td>the windowing system id of the destination window | 
| 693 | 
            -
            </td>
         | 
| 662 | 
            +
            <td>the windowing system id of the destination window.</td>
         | 
| 694 663 | 
             
            </tr>
         | 
| 695 664 | 
             
            <tr>
         | 
| 696 665 | 
             
            <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></td>
         | 
| 697 | 
            -
            <td>location where the supported DND protocol is returned | 
| 698 | 
            -
            </td>
         | 
| 666 | 
            +
            <td>location where the supported DND protocol is returned.</td>
         | 
| 699 667 | 
             
            </tr>
         | 
| 700 668 | 
             
            <tr>
         | 
| 701 669 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 702 | 
            -
            <td>the windowing system id of the window where the drop should happen. This | 
| 703 | 
            -
             | 
| 704 | 
            -
             | 
| 705 | 
            -
            </td>
         | 
| 670 | 
            +
            <td>the windowing system id of the window where the drop should happen. This
         | 
| 671 | 
            +
            may be <em class="parameter"><code>xid</code></em> or the id of a proxy window, or zero if <em class="parameter"><code>xid</code></em> doesn't
         | 
| 672 | 
            +
            support Drag and Drop.</td>
         | 
| 706 673 | 
             
            </tr>
         | 
| 707 674 | 
             
            </tbody>
         | 
| 708 675 | 
             
            </table></div>
         | 
| 709 676 | 
             
            <p class="since">Since 2.2</p>
         | 
| 710 677 | 
             
            </div>
         | 
| 711 678 | 
             
            <hr>
         | 
| 712 | 
            -
            <div class="refsect2" | 
| 679 | 
            +
            <div class="refsect2">
         | 
| 713 680 | 
             
            <a name="GdkDragProtocol"></a><h3>enum GdkDragProtocol</h3>
         | 
| 714 681 | 
             
            <pre class="programlisting">typedef enum
         | 
| 715 682 | 
             
            {
         | 
| @@ -724,7 +691,7 @@ Finds out the DND protocol supported by a window. | |
| 724 691 | 
             
            } GdkDragProtocol;
         | 
| 725 692 | 
             
            </pre>
         | 
| 726 693 | 
             
            <p>
         | 
| 727 | 
            -
            Used in <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> to indicate the protocol according to
         | 
| 694 | 
            +
            Used in <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> to indicate the protocol according to
         | 
| 728 695 | 
             
            which DND is done.
         | 
| 729 696 | 
             
            </p>
         | 
| 730 697 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -770,10 +737,10 @@ which DND is done. | |
| 770 737 | 
             
            </table></div>
         | 
| 771 738 | 
             
            </div>
         | 
| 772 739 | 
             
            <hr>
         | 
| 773 | 
            -
            <div class="refsect2" | 
| 740 | 
            +
            <div class="refsect2">
         | 
| 774 741 | 
             
            <a name="gdk-drag-context-unref"></a><h3>gdk_drag_context_unref ()</h3>
         | 
| 775 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_context_unref              (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 776 | 
            -
            <div class="warning"  | 
| 742 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_context_unref              (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 743 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 777 744 | 
             
            <h3 class="title">Warning</h3>
         | 
| 778 745 | 
             
            <p><code class="literal">gdk_drag_context_unref</code> has been deprecated since version 2.2 and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> instead.</p>
         | 
| 779 746 | 
             
            </div>
         | 
| @@ -784,15 +751,14 @@ Deprecated function; use <a href="http://library.gnome.org/devel/gobject/unstabl | |
| 784 751 | 
             
            <col align="left" valign="top">
         | 
| 785 752 | 
             
            <tbody><tr>
         | 
| 786 753 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 787 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a | 
| 788 | 
            -
            </td>
         | 
| 754 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 789 755 | 
             
            </tr></tbody>
         | 
| 790 756 | 
             
            </table></div>
         | 
| 791 757 | 
             
            </div>
         | 
| 792 758 | 
             
            <hr>
         | 
| 793 | 
            -
            <div class="refsect2" | 
| 794 | 
            -
            <a name="GdkDragContext"></a><h3>GdkDragContext</h3>
         | 
| 795 | 
            -
            <pre class="programlisting"> | 
| 759 | 
            +
            <div class="refsect2">
         | 
| 760 | 
            +
            <a name="GdkDragContext"></a><h3>struct GdkDragContext</h3>
         | 
| 761 | 
            +
            <pre class="programlisting">struct GdkDragContext {
         | 
| 796 762 | 
             
              GObject parent_instance;
         | 
| 797 763 |  | 
| 798 764 |  | 
| @@ -809,7 +775,7 @@ Deprecated function; use <a href="http://library.gnome.org/devel/gobject/unstabl | |
| 809 775 | 
             
              GdkDragAction GSEAL (action);
         | 
| 810 776 |  | 
| 811 777 | 
             
              guint32 GSEAL (start_time);
         | 
| 812 | 
            -
            } | 
| 778 | 
            +
            };
         | 
| 813 779 | 
             
            </pre>
         | 
| 814 780 | 
             
            <p>
         | 
| 815 781 | 
             
            A <span class="structname">GdkDragContext</span> holds information about a
         | 
| @@ -819,13 +785,12 @@ drag in progress. It is used on both source and destination sides. | |
| 819 785 | 
             
            <col align="left" valign="top">
         | 
| 820 786 | 
             
            <tbody><tr>
         | 
| 821 787 | 
             
            <td><p><span class="term"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> <em class="structfield"><code><a name="GdkDragContext.parent-instance"></a>parent_instance</code></em>;</span></p></td>
         | 
| 822 | 
            -
            <td>the parent instance
         | 
| 823 | 
            -
            </td>
         | 
| 788 | 
            +
            <td>the parent instance</td>
         | 
| 824 789 | 
             
            </tr></tbody>
         | 
| 825 790 | 
             
            </table></div>
         | 
| 826 791 | 
             
            </div>
         | 
| 827 792 | 
             
            <hr>
         | 
| 828 | 
            -
            <div class="refsect2" | 
| 793 | 
            +
            <div class="refsect2">
         | 
| 829 794 | 
             
            <a name="GdkDragAction"></a><h3>enum GdkDragAction</h3>
         | 
| 830 795 | 
             
            <pre class="programlisting">typedef enum
         | 
| 831 796 | 
             
            {
         | 
| @@ -838,7 +803,7 @@ drag in progress. It is used on both source and destination sides. | |
| 838 803 | 
             
            } GdkDragAction;
         | 
| 839 804 | 
             
            </pre>
         | 
| 840 805 | 
             
            <p>
         | 
| 841 | 
            -
            Used in <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> to indicate what the destination
         | 
| 806 | 
            +
            Used in <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> to indicate what the destination
         | 
| 842 807 | 
             
            should do with the dropped data.
         | 
| 843 808 | 
             
            </p>
         | 
| 844 809 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -881,9 +846,9 @@ should do with the dropped data. | |
| 881 846 | 
             
            </table></div>
         | 
| 882 847 | 
             
            </div>
         | 
| 883 848 | 
             
            <hr>
         | 
| 884 | 
            -
            <div class="refsect2" | 
| 849 | 
            +
            <div class="refsect2">
         | 
| 885 850 | 
             
            <a name="gdk-drag-status"></a><h3>gdk_drag_status ()</h3>
         | 
| 886 | 
            -
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_status                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 851 | 
            +
            <pre class="programlisting"><span class="returnvalue">void</span>                gdk_drag_status                     (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
         | 
| 887 852 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> action</code></em>,
         | 
| 888 853 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> time_</code></em>);</pre>
         | 
| 889 854 | 
             
            <p>
         | 
| @@ -898,27 +863,24 @@ This function is called by the drag destination in response to | |
| 898 863 | 
             
            <tbody>
         | 
| 899 864 | 
             
            <tr>
         | 
| 900 865 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 901 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a | 
| 902 | 
            -
            </td>
         | 
| 866 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
         | 
| 903 867 | 
             
            </tr>
         | 
| 904 868 | 
             
            <tr>
         | 
| 905 869 | 
             
            <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
         | 
| 906 | 
            -
            <td>the selected action which will be taken when a drop happens, | 
| 907 | 
            -
             | 
| 908 | 
            -
            </td>
         | 
| 870 | 
            +
            <td>the selected action which will be taken when a drop happens,
         | 
| 871 | 
            +
            or 0 to indicate that a drop will not be accepted.</td>
         | 
| 909 872 | 
             
            </tr>
         | 
| 910 873 | 
             
            <tr>
         | 
| 911 874 | 
             
            <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
         | 
| 912 | 
            -
            <td>the timestamp for this operation | 
| 913 | 
            -
            </td>
         | 
| 875 | 
            +
            <td>the timestamp for this operation.</td>
         | 
| 914 876 | 
             
            </tr>
         | 
| 915 877 | 
             
            </tbody>
         | 
| 916 878 | 
             
            </table></div>
         | 
| 917 879 | 
             
            </div>
         | 
| 918 880 | 
             
            <hr>
         | 
| 919 | 
            -
            <div class="refsect2" | 
| 881 | 
            +
            <div class="refsect2">
         | 
| 920 882 | 
             
            <a name="gdk-drag-drop-succeeded"></a><h3>gdk_drag_drop_succeeded ()</h3>
         | 
| 921 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gdk_drag_drop_succeeded             (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 883 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gdk_drag_drop_succeeded             (<em class="parameter"><code><a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
         | 
| 922 884 | 
             
            <p>
         | 
| 923 885 | 
             
            Returns whether the dropped data has been successfully 
         | 
| 924 886 | 
             
            transferred. This function is intended to be used while 
         | 
| @@ -930,14 +892,13 @@ meaningless at other times. | |
| 930 892 | 
             
            <tbody>
         | 
| 931 893 | 
             
            <tr>
         | 
| 932 894 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 933 | 
            -
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 895 | 
            +
            <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
         | 
| 934 896 | 
             
            </td>
         | 
| 935 897 | 
             
            </tr>
         | 
| 936 898 | 
             
            <tr>
         | 
| 937 899 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 938 | 
            -
            <td> | 
| 939 | 
            -
             | 
| 940 | 
            -
            </td>
         | 
| 900 | 
            +
            <td>
         | 
| 901 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the drop was successful.</td>
         | 
| 941 902 | 
             
            </tr>
         | 
| 942 903 | 
             
            </tbody>
         | 
| 943 904 | 
             
            </table></div>
         | 
| @@ -947,6 +908,6 @@ meaningless at other times. | |
| 947 908 | 
             
            </div>
         | 
| 948 909 | 
             
            <div class="footer">
         | 
| 949 910 | 
             
            <hr>
         | 
| 950 | 
            -
                      Generated by GTK-Doc V1. | 
| 911 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 951 912 | 
             
            </body>
         | 
| 952 913 | 
             
            </html>
         |