gtk2 1.0.0-x86-mingw32 → 1.0.1-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.
Files changed (553) hide show
  1. data/ChangeLog +52 -0
  2. data/ext/gtk2/extconf.rb +18 -9
  3. data/ext/gtk2/rbgdk.h +3 -0
  4. data/ext/gtk2/rbgdkdragcontext.c +4 -4
  5. data/ext/gtk2/rbgdkevent.c +18 -5
  6. data/ext/gtk2/rbgdkpixmap.c +43 -48
  7. data/ext/gtk2/rbgdkproperty.c +6 -5
  8. data/ext/gtk2/rbgdkscreen.c +18 -74
  9. data/ext/gtk2/rbgdkselection.c +2 -2
  10. data/ext/gtk2/rbgdkwindow.c +11 -18
  11. data/ext/gtk2/rbgdkwindowattr.c +1 -1
  12. data/ext/gtk2/rbgtkaccelgroup.c +1 -1
  13. data/ext/gtk2/rbgtkaction.c +8 -26
  14. data/ext/gtk2/rbgtkactiongroup.c +6 -6
  15. data/ext/gtk2/rbgtkadjustment.c +20 -74
  16. data/ext/gtk2/rbgtkbindingset.c +1 -1
  17. data/ext/gtk2/rbgtkbuilder.c +2 -1
  18. data/ext/gtk2/rbgtkbutton.c +1 -9
  19. data/ext/gtk2/rbgtkcalendar.c +1 -1
  20. data/ext/gtk2/rbgtkcellrendererspinner.c +0 -3
  21. data/ext/gtk2/rbgtkcellrenderertext.c +1 -2
  22. data/ext/gtk2/rbgtkcellview.c +6 -11
  23. data/ext/gtk2/rbgtkcolorselectiondialog.c +2 -28
  24. data/ext/gtk2/rbgtkcombo.c +2 -2
  25. data/ext/gtk2/rbgtkcombobox.c +9 -29
  26. data/ext/gtk2/rbgtkcontainer.c +1 -1
  27. data/ext/gtk2/rbgtkcurve.c +4 -2
  28. data/ext/gtk2/rbgtkdialog.c +2 -3
  29. data/ext/gtk2/rbgtkdrag.c +3 -3
  30. data/ext/gtk2/rbgtkentry.c +2 -2
  31. data/ext/gtk2/rbgtkentrycompletion.c +1 -4
  32. data/ext/gtk2/rbgtkfilechooser.c +32 -29
  33. data/ext/gtk2/rbgtkfilechooserdialog.c +8 -6
  34. data/ext/gtk2/rbgtkfilefilter.c +8 -4
  35. data/ext/gtk2/rbgtkframe.c +3 -4
  36. data/ext/gtk2/rbgtkhandlebox.c +0 -7
  37. data/ext/gtk2/rbgtkicontheme.c +4 -13
  38. data/ext/gtk2/rbgtkiconview.c +4 -15
  39. data/ext/gtk2/rbgtkimcontext.c +1 -1
  40. data/ext/gtk2/rbgtkinvisible.c +5 -21
  41. data/ext/gtk2/rbgtkitemfactory.c +3 -3
  42. data/ext/gtk2/rbgtklabel.c +0 -2
  43. data/ext/gtk2/rbgtklinkbutton.c +0 -2
  44. data/ext/gtk2/rbgtkmain.c +7 -10
  45. data/ext/gtk2/rbgtkmenu.c +22 -74
  46. data/ext/gtk2/rbgtkmenuitem.c +16 -55
  47. data/ext/gtk2/rbgtkmenushell.c +3 -11
  48. data/ext/gtk2/rbgtkmessagedialog.c +11 -20
  49. data/ext/gtk2/rbgtknotebook.c +0 -1
  50. data/ext/gtk2/rbgtkoptionmenu.c +1 -2
  51. data/ext/gtk2/rbgtkprintjob.c +1 -2
  52. data/ext/gtk2/rbgtkprintoperation.c +0 -2
  53. data/ext/gtk2/rbgtkradioaction.c +2 -7
  54. data/ext/gtk2/rbgtkradiobutton.c +1 -1
  55. data/ext/gtk2/rbgtkradiomenuitem.c +4 -6
  56. data/ext/gtk2/rbgtkradiotoolbutton.c +2 -4
  57. data/ext/gtk2/rbgtkrange.c +1 -2
  58. data/ext/gtk2/rbgtkrc.c +8 -9
  59. data/ext/gtk2/rbgtkrcstyle.c +2 -2
  60. data/ext/gtk2/rbgtkrecentaction.c +0 -1
  61. data/ext/gtk2/rbgtkrecentchooser.c +3 -3
  62. data/ext/gtk2/rbgtkrecentdata.c +2 -9
  63. data/ext/gtk2/rbgtkrecentfilter.c +2 -1
  64. data/ext/gtk2/rbgtkrecentfilterinfo.c +5 -16
  65. data/ext/gtk2/rbgtkrecentinfo.c +2 -2
  66. data/ext/gtk2/rbgtkrecentmanager.c +1 -2
  67. data/ext/gtk2/rbgtkruler.c +6 -16
  68. data/ext/gtk2/rbgtkscalebutton.c +16 -48
  69. data/ext/gtk2/rbgtkscrolledwindow.c +1 -1
  70. data/ext/gtk2/rbgtkselectiondata.c +10 -34
  71. data/ext/gtk2/rbgtksettings.c +1 -1
  72. data/ext/gtk2/rbgtkspinner.c +0 -3
  73. data/ext/gtk2/rbgtkstatusbar.c +5 -16
  74. data/ext/gtk2/rbgtkstatusicon.c +2 -9
  75. data/ext/gtk2/rbgtkstock.c +4 -4
  76. data/ext/gtk2/rbgtktable.c +8 -13
  77. data/ext/gtk2/rbgtktextattributes.c +0 -2
  78. data/ext/gtk2/rbgtktextbuffer.c +17 -16
  79. data/ext/gtk2/rbgtktextmark.c +7 -14
  80. data/ext/gtk2/rbgtktexttag.c +1 -2
  81. data/ext/gtk2/rbgtktextview.c +3 -4
  82. data/ext/gtk2/rbgtktoggleaction.c +5 -16
  83. data/ext/gtk2/rbgtktogglebutton.c +1 -2
  84. data/ext/gtk2/rbgtktoggletoolbutton.c +5 -16
  85. data/ext/gtk2/rbgtktoolbar.c +8 -31
  86. data/ext/gtk2/rbgtktoolitem.c +3 -1
  87. data/ext/gtk2/rbgtktreerowreference.c +4 -4
  88. data/ext/gtk2/rbgtktreesortable.c +0 -3
  89. data/ext/gtk2/rbgtktreestore.c +10 -7
  90. data/ext/gtk2/rbgtktreeview.c +5 -8
  91. data/ext/gtk2/rbgtktreeviewcolumn.c +13 -34
  92. data/ext/gtk2/rbgtkuimanager.c +2 -3
  93. data/ext/gtk2/rbgtkwidget.c +24 -44
  94. data/ext/gtk2/rbgtkwindow.c +32 -92
  95. data/lib/1.8/gtk2.so +0 -0
  96. data/lib/1.9/gtk2.so +0 -0
  97. data/lib/gtk2/base.rb +1 -1
  98. data/vendor/local/bin/gtk-builder-convert +2 -29
  99. data/vendor/local/bin/gtk-demo.exe +0 -0
  100. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  101. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  102. data/vendor/local/bin/libgailutil-18.dll +0 -0
  103. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  104. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  105. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  106. data/vendor/local/include/gtk-2.0/gdk/gdk.h +5 -2
  107. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +0 -4
  108. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +0 -2
  109. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +0 -7
  110. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +4 -7
  111. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  112. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +0 -1
  113. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +0 -4
  114. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +9 -13
  115. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +0 -2
  116. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +0 -5
  117. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +6 -16
  118. data/vendor/local/include/gtk-2.0/gtk/gtk.h +0 -1
  119. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +1 -5
  120. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +3 -14
  121. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +0 -3
  122. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +0 -4
  123. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +0 -2
  124. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +2 -2
  125. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +3 -5
  126. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +0 -6
  127. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +0 -4
  128. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +0 -2
  129. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  130. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +0 -4
  131. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1 -5
  132. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +1 -2
  133. data/vendor/local/lib/gailutil.lib +0 -0
  134. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  135. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  136. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  137. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  138. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  139. data/vendor/local/lib/libgailutil.dll.a +0 -0
  140. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  141. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  142. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  143. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  144. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  145. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  146. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  147. data/vendor/local/manifest/{gtk+-dev_2.24.0-1_win32.mft → gtk+-dev_2.22.1-1_win32.mft} +6 -9
  148. data/vendor/local/manifest/{gtk+_2.24.0-1_win32.mft → gtk+_2.22.1-1_win32.mft} +6 -2
  149. data/vendor/local/share/doc/{gtk+-2.24.0 → gtk+-2.22.1}/COPYING +0 -0
  150. data/vendor/local/share/doc/{gtk+-dev-2.24.0 → gtk+-dev-2.22.1}/COPYING +0 -0
  151. data/vendor/local/share/gtk-2.0/demo/appwindow.c +21 -0
  152. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  153. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  154. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  155. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  156. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  157. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +94 -60
  158. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +58 -44
  159. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  160. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  161. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  162. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  163. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +1 -2
  164. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +208 -151
  165. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +37 -33
  166. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +239 -180
  167. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +3 -3
  168. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +3 -3
  169. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +3 -3
  170. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +3 -3
  171. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +3 -3
  172. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +3 -3
  173. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +4 -4
  174. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +3 -3
  175. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +3 -3
  176. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +3 -3
  177. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +6 -6
  178. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +4 -4
  179. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +5 -135
  180. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +47 -83
  181. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +23 -20
  182. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +126 -126
  183. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +39 -81
  184. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +199 -135
  185. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +90 -71
  186. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +200 -161
  187. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +409 -293
  188. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +435 -320
  189. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +141 -109
  190. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +234 -155
  191. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +217 -143
  192. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +124 -103
  193. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +250 -168
  194. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +131 -90
  195. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +191 -143
  196. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +53 -35
  197. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +195 -162
  198. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +112 -85
  199. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +137 -79
  200. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +176 -144
  201. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +235 -188
  202. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +134 -97
  203. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +35 -22
  204. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +70 -44
  205. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +108 -83
  206. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +744 -653
  207. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +490 -476
  208. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +44 -53
  209. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +76 -85
  210. data/vendor/local/share/gtk-doc/html/gdk/index.html +4 -4
  211. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1 -10
  212. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +9 -9
  213. data/vendor/local/share/gtk-doc/html/gdk/reference.html +3 -3
  214. data/vendor/local/share/gtk-doc/html/gdk/style.css +1 -2
  215. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +3 -3
  216. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +3 -3
  217. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +3 -3
  218. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +3 -3
  219. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +3 -3
  220. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +3 -3
  221. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +186 -193
  222. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +46 -38
  223. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +18 -18
  224. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +236 -169
  225. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +258 -175
  226. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +50 -46
  227. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +114 -78
  228. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +66 -52
  229. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +36 -30
  230. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +46 -36
  231. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +118 -97
  232. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +14 -14
  233. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +120 -95
  234. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +117 -86
  235. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +137 -96
  236. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +185 -152
  237. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +76 -59
  238. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +895 -615
  239. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +1780 -509
  240. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +163 -125
  241. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +35 -33
  242. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +87 -60
  243. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +130 -106
  244. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +44 -35
  245. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +32 -27
  246. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +25 -24
  247. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -23
  248. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +20 -19
  249. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +20 -19
  250. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +74 -69
  251. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +54 -45
  252. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +76 -57
  253. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +34 -30
  254. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +75 -53
  255. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +180 -104
  256. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +32 -29
  257. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +81 -63
  258. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +186 -344
  259. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +46 -57
  260. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +260 -311
  261. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +79 -61
  262. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +121 -97
  263. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +23 -21
  264. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +88 -68
  265. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +470 -360
  266. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +104 -71
  267. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +185 -130
  268. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +38 -33
  269. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +96 -76
  270. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +403 -331
  271. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +89 -64
  272. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +35 -30
  273. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +26 -21
  274. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +146 -102
  275. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +49 -38
  276. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +86 -60
  277. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +81 -66
  278. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +61 -52
  279. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +58 -51
  280. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +19 -18
  281. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +20 -17
  282. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +34 -29
  283. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +13 -13
  284. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +24 -30
  285. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +101 -65
  286. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +30 -25
  287. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +18 -18
  288. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +20 -19
  289. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +66 -55
  290. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +182 -140
  291. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +22 -18
  292. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +22 -18
  293. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +248 -184
  294. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +447 -321
  295. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +195 -174
  296. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +69 -58
  297. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +80 -67
  298. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -32
  299. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +41 -33
  300. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +42 -36
  301. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +272 -179
  302. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +249 -197
  303. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +76 -68
  304. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +60 -51
  305. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +180 -130
  306. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +130 -80
  307. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +168 -138
  308. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +221 -177
  309. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +49 -41
  310. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +145 -112
  311. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +118 -86
  312. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +49 -73
  313. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +81 -81
  314. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +39 -33
  315. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +452 -396
  316. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +206 -148
  317. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +25 -21
  318. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +165 -80
  319. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +66 -56
  320. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +160 -115
  321. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +25 -22
  322. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +134 -94
  323. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +44 -34
  324. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -51
  325. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +136 -109
  326. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +53 -38
  327. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +68 -53
  328. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +403 -265
  329. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +94 -74
  330. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +134 -100
  331. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +111 -80
  332. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +108 -91
  333. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +53 -42
  334. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +79 -86
  335. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +71 -63
  336. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +42 -33
  337. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +185 -218
  338. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +41 -34
  339. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +194 -135
  340. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -27
  341. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +30 -25
  342. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -17
  343. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +85 -63
  344. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +269 -202
  345. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +58 -83
  346. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +72 -61
  347. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +83 -64
  348. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +21 -21
  349. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +143 -93
  350. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +13 -13
  351. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +18 -17
  352. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +27 -24
  353. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +259 -129
  354. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +45 -38
  355. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +53 -44
  356. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +177 -132
  357. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +25 -24
  358. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +254 -190
  359. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +75 -60
  360. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +928 -546
  361. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +135 -94
  362. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +19 -18
  363. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +140 -97
  364. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +656 -494
  365. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +46 -41
  366. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +194 -164
  367. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +76 -84
  368. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +425 -340
  369. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +94 -74
  370. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +57 -43
  371. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +71 -59
  372. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +38 -32
  373. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +85 -74
  374. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +166 -133
  375. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +103 -84
  376. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +139 -116
  377. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +59 -42
  378. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +360 -249
  379. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +27 -27
  380. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +70 -60
  381. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +152 -105
  382. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +134 -46
  383. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +557 -428
  384. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +126 -95
  385. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +70 -63
  386. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +171 -123
  387. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +62 -53
  388. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +199 -170
  389. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +863 -565
  390. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +282 -203
  391. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +189 -125
  392. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +20 -17
  393. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +34 -27
  394. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +14 -14
  395. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +24 -31
  396. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +29 -24
  397. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +18 -18
  398. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +18 -17
  399. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +69 -58
  400. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +17 -16
  401. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1579 -1278
  402. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +532 -380
  403. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +39 -21
  404. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +3 -3
  405. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +3 -6
  406. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +3 -3
  407. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +3 -3
  408. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +3 -3
  409. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +3 -3
  410. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +4 -4
  411. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +3 -3
  412. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +3 -3
  413. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +3 -3
  414. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +3 -3
  415. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +15 -15
  416. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +4 -4
  417. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +16 -16
  418. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +3 -3
  419. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +3 -3
  420. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +11 -17
  421. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +20 -20
  422. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +6 -6
  423. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +3 -3
  424. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +4 -4
  425. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +3 -3
  426. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +5 -5
  427. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +3 -3
  428. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +5 -5
  429. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +28 -28
  430. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +3 -3
  431. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +7 -7
  432. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +45 -236
  433. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +385 -469
  434. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +4 -15
  435. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +4 -4
  436. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +12 -12
  437. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +4 -4
  438. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +4 -4
  439. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +4 -4
  440. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +3 -3
  441. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +3 -3
  442. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +124 -69
  443. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +211 -149
  444. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +293 -189
  445. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +246 -175
  446. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +41 -35
  447. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +47 -41
  448. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +318 -270
  449. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +22 -16
  450. data/vendor/local/share/gtk-doc/html/gtk/{GtkPaperSize.html → gtk-GtkPaperSize.html} +252 -204
  451. data/vendor/local/share/gtk-doc/html/gtk/{GtkTextIter.html → gtk-GtkTextIter.html} +806 -664
  452. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +82 -75
  453. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +289 -221
  454. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +232 -142
  455. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +20 -17
  456. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +190 -150
  457. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +408 -328
  458. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +306 -190
  459. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +53 -53
  460. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +158 -152
  461. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +136 -85
  462. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +239 -204
  463. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +343 -271
  464. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +11 -18
  465. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +20 -20
  466. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +5 -5
  467. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +5 -5
  468. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +5 -5
  469. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +7 -7
  470. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +75 -63
  471. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +75 -58
  472. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +3 -3
  473. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +3 -3
  474. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +4 -4
  475. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +4 -4
  476. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +10 -5
  477. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +3 -3
  478. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +4 -4
  479. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +5 -5
  480. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +3 -3
  481. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +3 -3
  482. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +5 -5
  483. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +7 -7
  484. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +3 -3
  485. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +3 -3
  486. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +3 -3
  487. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +6 -6
  488. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +10 -10
  489. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +90 -90
  490. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +9 -9
  491. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +31 -39
  492. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +10 -10
  493. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +14 -14
  494. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +12 -12
  495. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +412 -445
  496. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +455 -488
  497. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +4 -4
  498. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +3 -3
  499. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +3 -3
  500. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +3 -3
  501. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +3 -3
  502. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +5 -5
  503. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +5 -8
  504. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +3 -3
  505. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +3 -3
  506. data/vendor/local/share/gtk-doc/html/gtk/index.html +6 -10
  507. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +142 -194
  508. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +3 -3
  509. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +17 -17
  510. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +4 -4
  511. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +3 -3
  512. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +4 -4
  513. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +3 -3
  514. data/vendor/local/share/gtk-doc/html/gtk/style.css +1 -2
  515. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +3 -3
  516. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  517. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  518. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  519. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  520. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  521. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  522. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  523. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  524. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  525. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  526. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  527. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  528. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  529. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  530. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  531. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  532. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  533. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  534. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  535. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  536. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  537. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  538. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  539. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  540. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  541. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  542. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  543. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  544. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  545. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  546. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +5048 -0
  547. data/vendor/local/src/tml/packaging/{gtk+_2.24.0-1_win32.sh → gtk+_2.22.1-1_win32.sh} +2 -2
  548. metadata +25 -25
  549. data/vendor/local/etc/gtk-2.0/gtkrc +0 -1
  550. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +0 -77
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +0 -301
  552. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +0 -117
  553. data/vendor/local/src/tml/packaging/gtk+_2.24.0-1_win32.log +0 -4934
@@ -8,7 +8,7 @@
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.16.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.15 (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">
@@ -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" title="Cursors">
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" title="Synopsis">
39
39
  <a name="gdk-Cursors.synopsis"></a><h2>Synopsis</h2>
40
40
  <pre class="synopsis">
41
41
  #include &lt;gdk/gdk.h&gt;
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> * <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>,
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> * <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>,
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
53
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.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> * <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>,
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> * <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>,
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> * <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-gdk-pixbuf.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>);
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-gdk-pixbuf.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> * <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>);
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" title="Description">
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="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>.
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>.
86
86
  </p>
87
87
  </div>
88
- <div class="refsect1">
88
+ <div class="refsect1" title="Details">
89
89
  <a name="gdk-Cursors.details"></a><h2>Details</h2>
90
- <div class="refsect2">
90
+ <div class="refsect2" title="GdkCursor">
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" title="enum GdkCursorType">
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" title="gdk_cursor_new ()">
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> * 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>
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,20 +687,21 @@ 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</td>
690
+ <td>cursor to create
691
+ </td>
691
692
  </tr>
692
693
  <tr>
693
694
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
694
- <td>a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>
695
+ <td> a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>
695
696
  </td>
696
697
  </tr>
697
698
  </tbody>
698
699
  </table></div>
699
700
  </div>
700
701
  <hr>
701
- <div class="refsect2">
702
+ <div class="refsect2" title="gdk_cursor_new_from_pixmap ()">
702
703
  <a name="gdk-cursor-new-from-pixmap"></a><h3>gdk_cursor_new_from_pixmap ()</h3>
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>,
704
+ <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>,
704
705
  <em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *mask</code></em>,
705
706
  <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>,
706
707
  <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>,
@@ -715,7 +716,7 @@ from inline data as in the below example.
715
716
  <p>
716
717
  </p>
717
718
  <div class="example">
718
- <a name="id691685"></a><p class="title"><b>Example 6. Creating a custom cursor</b></p>
719
+ <a name="id704274"></a><p class="title"><b>Example 6. Creating a custom cursor</b></p>
719
720
  <div class="example-contents">
720
721
  <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
721
722
  <tbody>
@@ -795,42 +796,49 @@ from inline data as in the below example.
795
796
  <tbody>
796
797
  <tr>
797
798
  <td><p><span class="term"><em class="parameter"><code>source</code></em> :</span></p></td>
798
- <td>the pixmap specifying the cursor.</td>
799
+ <td>the pixmap specifying the cursor.
800
+ </td>
799
801
  </tr>
800
802
  <tr>
801
803
  <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
802
- <td>the pixmap specifying the mask, which must be the same size as
803
- <em class="parameter"><code>source</code></em>.</td>
804
+ <td>the pixmap specifying the mask, which must be the same size as
805
+ <em class="parameter"><code>source</code></em>.
806
+ </td>
804
807
  </tr>
805
808
  <tr>
806
809
  <td><p><span class="term"><em class="parameter"><code>fg</code></em> :</span></p></td>
807
810
  <td>the foreground color, used for the bits in the source which are 1.
808
- The color does not have to be allocated first.</td>
811
+ The color does not have to be allocated first.
812
+ </td>
809
813
  </tr>
810
814
  <tr>
811
815
  <td><p><span class="term"><em class="parameter"><code>bg</code></em> :</span></p></td>
812
816
  <td>the background color, used for the bits in the source which are 0.
813
- The color does not have to be allocated first.</td>
817
+ The color does not have to be allocated first.
818
+ </td>
814
819
  </tr>
815
820
  <tr>
816
821
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
817
- <td>the horizontal offset of the 'hotspot' of the cursor.</td>
822
+ <td>the horizontal offset of the 'hotspot' of the cursor.
823
+ </td>
818
824
  </tr>
819
825
  <tr>
820
826
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
821
- <td>the vertical offset of the 'hotspot' of the cursor.</td>
827
+ <td>the vertical offset of the 'hotspot' of the cursor.
828
+ </td>
822
829
  </tr>
823
830
  <tr>
824
831
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
825
- <td>a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.</td>
832
+ <td> a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
833
+ </td>
826
834
  </tr>
827
835
  </tbody>
828
836
  </table></div>
829
837
  </div>
830
838
  <hr>
831
- <div class="refsect2">
839
+ <div class="refsect2" title="gdk_cursor_new_from_pixbuf ()">
832
840
  <a name="gdk-cursor-new-from-pixbuf"></a><h3>gdk_cursor_new_from_pixbuf ()</h3>
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>,
841
+ <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
842
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>,
835
843
  <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>,
836
844
  <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>
@@ -848,12 +856,6 @@ whether RGBA cursors are supported;
848
856
  cursor sizes.
849
857
  </p>
850
858
  <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>
857
859
  On the X backend, support for RGBA cursors requires a
858
860
  sufficently new version of the X Render extension.
859
861
  </p>
@@ -862,32 +864,38 @@ sufficently new version of the X Render extension.
862
864
  <tbody>
863
865
  <tr>
864
866
  <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></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>
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>
866
869
  </tr>
867
870
  <tr>
868
871
  <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
869
- <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> containing the cursor image</td>
872
+ <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> containing the cursor image
873
+ </td>
870
874
  </tr>
871
875
  <tr>
872
876
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
873
- <td>the horizontal offset of the 'hotspot' of the cursor.</td>
877
+ <td>the horizontal offset of the 'hotspot' of the cursor.
878
+ </td>
874
879
  </tr>
875
880
  <tr>
876
881
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
877
- <td>the vertical offset of the 'hotspot' of the cursor.</td>
882
+ <td>the vertical offset of the 'hotspot' of the cursor.
883
+ </td>
878
884
  </tr>
879
885
  <tr>
880
886
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
881
- <td>a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.</td>
887
+ <td> a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
888
+
889
+ </td>
882
890
  </tr>
883
891
  </tbody>
884
892
  </table></div>
885
893
  <p class="since">Since 2.4</p>
886
894
  </div>
887
895
  <hr>
888
- <div class="refsect2">
896
+ <div class="refsect2" title="gdk_cursor_new_from_name ()">
889
897
  <a name="gdk-cursor-new-from-name"></a><h3>gdk_cursor_new_from_name ()</h3>
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>,
898
+ <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>,
891
899
  <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>
892
900
  <p>
893
901
  Creates a new cursor by looking up <em class="parameter"><code>name</code></em> in the current cursor
@@ -898,25 +906,29 @@ theme.
898
906
  <tbody>
899
907
  <tr>
900
908
  <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></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>
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>
902
911
  </tr>
903
912
  <tr>
904
913
  <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
905
- <td>the name of the cursor</td>
914
+ <td>the name of the cursor
915
+ </td>
906
916
  </tr>
907
917
  <tr>
908
918
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
919
+ <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
920
+ the given name
921
+
922
+ </td>
911
923
  </tr>
912
924
  </tbody>
913
925
  </table></div>
914
926
  <p class="since">Since 2.8</p>
915
927
  </div>
916
928
  <hr>
917
- <div class="refsect2">
929
+ <div class="refsect2" title="gdk_cursor_new_for_display ()">
918
930
  <a name="gdk-cursor-new-for-display"></a><h3>gdk_cursor_new_for_display ()</h3>
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>,
931
+ <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>,
920
932
  <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>
921
933
  <p>
922
934
  Creates a new cursor from the set of builtin cursors.
@@ -985,15 +997,18 @@ Some useful ones are:
985
997
  <tbody>
986
998
  <tr>
987
999
  <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></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>
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>
989
1002
  </tr>
990
1003
  <tr>
991
1004
  <td><p><span class="term"><em class="parameter"><code>cursor_type</code></em> :</span></p></td>
992
- <td>cursor to create</td>
1005
+ <td>cursor to create
1006
+ </td>
993
1007
  </tr>
994
1008
  <tr>
995
1009
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
996
- <td>a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>
1010
+ <td> a new <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>
1011
+
997
1012
  </td>
998
1013
  </tr>
999
1014
  </tbody>
@@ -1001,9 +1016,9 @@ Some useful ones are:
1001
1016
  <p class="since">Since 2.2</p>
1002
1017
  </div>
1003
1018
  <hr>
1004
- <div class="refsect2">
1019
+ <div class="refsect2" title="gdk_cursor_get_display ()">
1005
1020
  <a name="gdk-cursor-get-display"></a><h3>gdk_cursor_get_display ()</h3>
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>
1021
+ <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>
1007
1022
  <p>
1008
1023
  Returns the display on which the <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a> is defined.
1009
1024
  </p>
@@ -1012,11 +1027,13 @@ Returns the display on which the <a class="link" href="gdk-Cursors.html#GdkCurso
1012
1027
  <tbody>
1013
1028
  <tr>
1014
1029
  <td><p><span class="term"><em class="parameter"><code>cursor</code></em> :</span></p></td>
1015
- <td>a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.</td>
1030
+ <td>a <a class="link" href="gdk-Cursors.html#GdkCursor" title="GdkCursor"><span class="type">GdkCursor</span></a>.
1031
+ </td>
1016
1032
  </tr>
1017
1033
  <tr>
1018
1034
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
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>
1035
+ <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>
1036
+
1020
1037
  </td>
1021
1038
  </tr>
1022
1039
  </tbody>
@@ -1024,9 +1041,9 @@ Returns the display on which the <a class="link" href="gdk-Cursors.html#GdkCurso
1024
1041
  <p class="since">Since 2.2</p>
1025
1042
  </div>
1026
1043
  <hr>
1027
- <div class="refsect2">
1044
+ <div class="refsect2" title="gdk_cursor_get_image ()">
1028
1045
  <a name="gdk-cursor-get-image"></a><h3>gdk_cursor_get_image ()</h3>
1029
- <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.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>
1046
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.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>
1030
1047
  <p>
1031
1048
  Returns a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> with the image used to display the cursor.
1032
1049
  </p>
@@ -1045,7 +1062,8 @@ case, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros
1045
1062
  </tr>
1046
1063
  <tr>
1047
1064
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1048
- <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.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>
1065
+ <td> a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.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>
1066
+
1049
1067
  </td>
1050
1068
  </tr>
1051
1069
  </tbody>
@@ -1053,7 +1071,7 @@ case, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros
1053
1071
  <p class="since">Since 2.8</p>
1054
1072
  </div>
1055
1073
  <hr>
1056
- <div class="refsect2">
1074
+ <div class="refsect2" title="gdk_cursor_get_cursor_type ()">
1057
1075
  <a name="gdk-cursor-get-cursor-type"></a><h3>gdk_cursor_get_cursor_type ()</h3>
1058
1076
  <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>
1059
1077
  <p>
@@ -1069,7 +1087,8 @@ Returns the cursor type for this cursor.
1069
1087
  </tr>
1070
1088
  <tr>
1071
1089
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1072
- <td>a <a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType"><span class="type">GdkCursorType</span></a>
1090
+ <td> a <a class="link" href="gdk-Cursors.html#GdkCursorType" title="enum GdkCursorType"><span class="type">GdkCursorType</span></a>
1091
+
1073
1092
  </td>
1074
1093
  </tr>
1075
1094
  </tbody>
@@ -1077,9 +1096,9 @@ Returns the cursor type for this cursor.
1077
1096
  <p class="since">Since 2.22</p>
1078
1097
  </div>
1079
1098
  <hr>
1080
- <div class="refsect2">
1099
+ <div class="refsect2" title="gdk_cursor_ref ()">
1081
1100
  <a name="gdk-cursor-ref"></a><h3>gdk_cursor_ref ()</h3>
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>
1101
+ <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>
1083
1102
  <p>
1084
1103
  Adds a reference to <em class="parameter"><code>cursor</code></em>.
1085
1104
  </p>
@@ -1093,14 +1112,14 @@ Adds a reference to <em class="parameter"><code>cursor</code></em>.
1093
1112
  </tr>
1094
1113
  <tr>
1095
1114
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
1115
+ <td> Same <em class="parameter"><code>cursor</code></em> that was passed in
1097
1116
  </td>
1098
1117
  </tr>
1099
1118
  </tbody>
1100
1119
  </table></div>
1101
1120
  </div>
1102
1121
  <hr>
1103
- <div class="refsect2">
1122
+ <div class="refsect2" title="gdk_cursor_unref ()">
1104
1123
  <a name="gdk-cursor-unref"></a><h3>gdk_cursor_unref ()</h3>
1105
1124
  <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>
1106
1125
  <p>
@@ -1117,11 +1136,11 @@ if no references remain.
1117
1136
  </table></div>
1118
1137
  </div>
1119
1138
  <hr>
1120
- <div class="refsect2">
1139
+ <div class="refsect2" title="gdk_cursor_destroy">
1121
1140
  <a name="gdk-cursor-destroy"></a><h3>gdk_cursor_destroy</h3>
1122
1141
  <pre class="programlisting">#define gdk_cursor_destroy gdk_cursor_unref
1123
1142
  </pre>
1124
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1143
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1125
1144
  <h3 class="title">Warning</h3>
1126
1145
  <p><code class="literal">gdk_cursor_destroy</code> is deprecated and should not be used in newly-written code.</p>
1127
1146
  </div>
@@ -1133,6 +1152,6 @@ Destroys a cursor, freeing any resources allocated for it.
1133
1152
  </div>
1134
1153
  <div class="footer">
1135
1154
  <hr>
1136
- Generated by GTK-Doc V1.16.1</div>
1155
+ Generated by GTK-Doc V1.15</div>
1137
1156
  </body>
1138
1157
  </html>
@@ -8,7 +8,7 @@
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.16.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.15 (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">
@@ -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" title="Drag and Drop">
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" title="Synopsis">
39
39
  <a name="gdk-Drag-and-Drop.synopsis"></a><h2>Synopsis</h2>
40
40
  <pre class="synopsis">
41
41
  #include &lt;gdk/gdk.h&gt;
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="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>,
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>,
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="struct 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="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="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>,
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>,
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="struct 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="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="struct 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="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="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>);
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>);
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="struct 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="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="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>,
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>,
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="struct 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="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="struct 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="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="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>;
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
+ <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="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="struct 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="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="struct 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="GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);
99
99
  </pre>
100
100
  </div>
101
- <div class="refsect1">
101
+ <div class="refsect1" title="Description">
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.
@@ -112,11 +112,11 @@ See the <a href="http://library.gnome.org/devel/gtk/unstable/gtk-Drag-and-Drop.h
112
112
  the GTK+ documentation for more information.
113
113
  </p>
114
114
  </div>
115
- <div class="refsect1">
115
+ <div class="refsect1" title="Details">
116
116
  <a name="gdk-Drag-and-Drop.details"></a><h2>Details</h2>
117
- <div class="refsect2">
117
+ <div class="refsect2" title="gdk_drag_get_selection ()">
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="struct 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="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,19 +125,21 @@ 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="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
128
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
129
+ </td>
129
130
  </tr>
130
131
  <tr>
131
132
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
132
- <td>the selection atom.</td>
133
+ <td> the selection atom.
134
+ </td>
133
135
  </tr>
134
136
  </tbody>
135
137
  </table></div>
136
138
  </div>
137
139
  <hr>
138
- <div class="refsect2">
140
+ <div class="refsect2" title="gdk_drag_abort ()">
139
141
  <a name="gdk-drag-abort"></a><h3>gdk_drag_abort ()</h3>
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>,
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>,
141
143
  <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>
142
144
  <p>
143
145
  Aborts a drag without dropping.
@@ -150,19 +152,21 @@ This function is called by the drag source.
150
152
  <tbody>
151
153
  <tr>
152
154
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
153
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
155
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
156
+ </td>
154
157
  </tr>
155
158
  <tr>
156
159
  <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
157
- <td>the timestamp for this operation.</td>
160
+ <td>the timestamp for this operation.
161
+ </td>
158
162
  </tr>
159
163
  </tbody>
160
164
  </table></div>
161
165
  </div>
162
166
  <hr>
163
- <div class="refsect2">
167
+ <div class="refsect2" title="gdk_drop_reply ()">
164
168
  <a name="gdk-drop-reply"></a><h3>gdk_drop_reply ()</h3>
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>,
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>,
166
170
  <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>,
167
171
  <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>
168
172
  <p>
@@ -177,44 +181,43 @@ to a drop initiated by the drag source.
177
181
  <tbody>
178
182
  <tr>
179
183
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
180
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
184
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
185
+ </td>
181
186
  </tr>
182
187
  <tr>
183
188
  <td><p><span class="term"><em class="parameter"><code>ok</code></em> :</span></p></td>
184
189
  <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>
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>
186
192
  </tr>
187
193
  <tr>
188
194
  <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
189
- <td>the timestamp for this operation.</td>
195
+ <td>the timestamp for this operation.
196
+ </td>
190
197
  </tr>
191
198
  </tbody>
192
199
  </table></div>
193
200
  </div>
194
201
  <hr>
195
- <div class="refsect2">
202
+ <div class="refsect2" title="gdk_drag_context_new ()">
196
203
  <a name="gdk-drag-context-new"></a><h3>gdk_drag_context_new ()</h3>
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>
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>
203
205
  <p>
204
- Creates a new <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.
206
+ Creates a new <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
205
207
  </p>
206
208
  <div class="variablelist"><table border="0">
207
209
  <col align="left" valign="top">
208
210
  <tbody><tr>
209
211
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
212
+ <td> the newly created <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
213
+ </td>
211
214
  </tr></tbody>
212
215
  </table></div>
213
216
  </div>
214
217
  <hr>
215
- <div class="refsect2">
218
+ <div class="refsect2" title="gdk_drag_drop ()">
216
219
  <a name="gdk-drag-drop"></a><h3>gdk_drag_drop ()</h3>
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>,
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>,
218
221
  <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>
219
222
  <p>
220
223
  Drops on the current destination.
@@ -227,28 +230,26 @@ This function is called by the drag source.
227
230
  <tbody>
228
231
  <tr>
229
232
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
230
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
233
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
234
+ </td>
231
235
  </tr>
232
236
  <tr>
233
237
  <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
234
- <td>the timestamp for this operation.</td>
238
+ <td>the timestamp for this operation.
239
+ </td>
235
240
  </tr>
236
241
  </tbody>
237
242
  </table></div>
238
243
  </div>
239
244
  <hr>
240
- <div class="refsect2">
245
+ <div class="refsect2" title="gdk_drag_find_window ()">
241
246
  <a name="gdk-drag-find-window"></a><h3>gdk_drag_find_window ()</h3>
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>,
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>,
243
248
  <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *drag_window</code></em>,
244
249
  <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>,
245
250
  <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>,
246
251
  <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> **dest_window</code></em>,
247
252
  <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>
252
253
  <p>
253
254
  Finds the destination window and DND protocol to use at the
254
255
  given pointer position.
@@ -262,38 +263,42 @@ This function is called by the drag source to obtain the
262
263
  <tbody>
263
264
  <tr>
264
265
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
265
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
266
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
267
+ </td>
266
268
  </tr>
267
269
  <tr>
268
270
  <td><p><span class="term"><em class="parameter"><code>drag_window</code></em> :</span></p></td>
269
271
  <td>a window which may be at the pointer position, but
270
- should be ignored, since it is put up by the drag source as an icon.</td>
272
+ should be ignored, since it is put up by the drag source as an icon.
273
+ </td>
271
274
  </tr>
272
275
  <tr>
273
276
  <td><p><span class="term"><em class="parameter"><code>x_root</code></em> :</span></p></td>
274
- <td>the x position of the pointer in root coordinates.</td>
277
+ <td>the x position of the pointer in root coordinates.
278
+ </td>
275
279
  </tr>
276
280
  <tr>
277
281
  <td><p><span class="term"><em class="parameter"><code>y_root</code></em> :</span></p></td>
278
- <td>the y position of the pointer in root coordinates.</td>
282
+ <td>the y position of the pointer in root coordinates.
283
+ </td>
279
284
  </tr>
280
285
  <tr>
281
286
  <td><p><span class="term"><em class="parameter"><code>dest_window</code></em> :</span></p></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>
287
+ <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>
283
288
  </td>
284
289
  </tr>
285
290
  <tr>
286
291
  <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></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>
292
+ <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>
288
293
  </td>
289
294
  </tr>
290
295
  </tbody>
291
296
  </table></div>
292
297
  </div>
293
298
  <hr>
294
- <div class="refsect2">
299
+ <div class="refsect2" title="gdk_drag_find_window_for_screen ()">
295
300
  <a name="gdk-drag-find-window-for-screen"></a><h3>gdk_drag_find_window_for_screen ()</h3>
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>,
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>,
297
302
  <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *drag_window</code></em>,
298
303
  <em class="parameter"><code><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> *screen</code></em>,
299
304
  <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>,
@@ -313,34 +318,38 @@ This function is called by the drag source to obtain the
313
318
  <tbody>
314
319
  <tr>
315
320
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
316
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
321
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
317
322
  </td>
318
323
  </tr>
319
324
  <tr>
320
325
  <td><p><span class="term"><em class="parameter"><code>drag_window</code></em> :</span></p></td>
321
326
  <td>a window which may be at the pointer position, but
322
- should be ignored, since it is put up by the drag source as an icon.</td>
327
+ should be ignored, since it is put up by the drag source as an icon.
328
+ </td>
323
329
  </tr>
324
330
  <tr>
325
331
  <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
326
- <td>the screen where the destination window is sought.</td>
332
+ <td>the screen where the destination window is sought.
333
+ </td>
327
334
  </tr>
328
335
  <tr>
329
336
  <td><p><span class="term"><em class="parameter"><code>x_root</code></em> :</span></p></td>
330
- <td>the x position of the pointer in root coordinates.</td>
337
+ <td>the x position of the pointer in root coordinates.
338
+ </td>
331
339
  </tr>
332
340
  <tr>
333
341
  <td><p><span class="term"><em class="parameter"><code>y_root</code></em> :</span></p></td>
334
- <td>the y position of the pointer in root coordinates.</td>
342
+ <td>the y position of the pointer in root coordinates.
343
+ </td>
335
344
  </tr>
336
345
  <tr>
337
346
  <td><p><span class="term"><em class="parameter"><code>dest_window</code></em> :</span></p></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>
347
+ <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>
339
348
  </td>
340
349
  </tr>
341
350
  <tr>
342
351
  <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></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>
352
+ <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>
344
353
  </td>
345
354
  </tr>
346
355
  </tbody>
@@ -348,10 +357,10 @@ should be ignored, since it is put up by the drag source as an icon.</td>
348
357
  <p class="since">Since 2.2</p>
349
358
  </div>
350
359
  <hr>
351
- <div class="refsect2">
360
+ <div class="refsect2" title="gdk_drag_context_ref ()">
352
361
  <a name="gdk-drag-context-ref"></a><h3>gdk_drag_context_ref ()</h3>
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;">
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" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
355
364
  <h3 class="title">Warning</h3>
356
365
  <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>
357
366
  </div>
@@ -362,14 +371,15 @@ Deprecated function; use <a href="http://library.gnome.org/devel/gobject/unstabl
362
371
  <col align="left" valign="top">
363
372
  <tbody><tr>
364
373
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
365
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
374
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
375
+ </td>
366
376
  </tr></tbody>
367
377
  </table></div>
368
378
  </div>
369
379
  <hr>
370
- <div class="refsect2">
380
+ <div class="refsect2" title="gdk_drag_context_get_actions ()">
371
381
  <a name="gdk-drag-context-get-actions"></a><h3>gdk_drag_context_get_actions ()</h3>
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>
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>
373
383
  <p>
374
384
  Determines the bitmask of actions proposed by the source if
375
385
  <code class="function">gdk_drag_context_suggested_action()</code> returns GDK_ACTION_ASK.
@@ -379,22 +389,24 @@ Determines the bitmask of actions proposed by the source if
379
389
  <tbody>
380
390
  <tr>
381
391
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
382
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
392
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
383
393
  </td>
384
394
  </tr>
385
395
  <tr>
386
396
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
397
+ <td> the <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> flags
398
+
399
+ </td>
388
400
  </tr>
389
401
  </tbody>
390
402
  </table></div>
391
403
  <p class="since">Since 2.22</p>
392
404
  </div>
393
405
  <hr>
394
- <div class="refsect2">
406
+ <div class="refsect2" title="gdk_drag_context_get_selected_action ()">
395
407
  <a name="gdk-drag-context-get-selected-action"></a><h3>gdk_drag_context_get_selected_action ()</h3>
396
408
  <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
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>
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>
398
410
  <p>
399
411
  Determines the action chosen by the drag destination.
400
412
  </p>
@@ -403,22 +415,24 @@ Determines the action chosen by the drag destination.
403
415
  <tbody>
404
416
  <tr>
405
417
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
406
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
418
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
407
419
  </td>
408
420
  </tr>
409
421
  <tr>
410
422
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
423
+ <td> a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> value
424
+
425
+ </td>
412
426
  </tr>
413
427
  </tbody>
414
428
  </table></div>
415
429
  <p class="since">Since 2.22</p>
416
430
  </div>
417
431
  <hr>
418
- <div class="refsect2">
432
+ <div class="refsect2" title="gdk_drag_context_get_suggested_action ()">
419
433
  <a name="gdk-drag-context-get-suggested-action"></a><h3>gdk_drag_context_get_suggested_action ()</h3>
420
434
  <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
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>
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>
422
436
  <p>
423
437
  Determines the suggested drag action of the context.
424
438
  </p>
@@ -427,21 +441,23 @@ Determines the suggested drag action of the context.
427
441
  <tbody>
428
442
  <tr>
429
443
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
430
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
444
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
431
445
  </td>
432
446
  </tr>
433
447
  <tr>
434
448
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
449
+ <td> a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragAction" title="enum GdkDragAction"><span class="type">GdkDragAction</span></a> value
450
+
451
+ </td>
436
452
  </tr>
437
453
  </tbody>
438
454
  </table></div>
439
455
  <p class="since">Since 2.22</p>
440
456
  </div>
441
457
  <hr>
442
- <div class="refsect2">
458
+ <div class="refsect2" title="gdk_drag_context_list_targets ()">
443
459
  <a name="gdk-drag-context-list-targets"></a><h3>gdk_drag_context_list_targets ()</h3>
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>
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>
445
461
  <p>
446
462
  Retrieves the list of targets of the context.
447
463
  </p>
@@ -450,12 +466,12 @@ Retrieves the list of targets of the context.
450
466
  <tbody>
451
467
  <tr>
452
468
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
453
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
469
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
454
470
  </td>
455
471
  </tr>
456
472
  <tr>
457
473
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
474
+ <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>
459
475
  </td>
460
476
  </tr>
461
477
  </tbody>
@@ -463,9 +479,9 @@ Retrieves the list of targets of the context.
463
479
  <p class="since">Since 2.22</p>
464
480
  </div>
465
481
  <hr>
466
- <div class="refsect2">
482
+ <div class="refsect2" title="gdk_drag_context_get_source_window ()">
467
483
  <a name="gdk-drag-context-get-source-window"></a><h3>gdk_drag_context_get_source_window ()</h3>
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>
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>
469
485
  <p>
470
486
  Returns the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> where the DND operation started.
471
487
  </p>
@@ -474,12 +490,12 @@ Returns the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type"
474
490
  <tbody>
475
491
  <tr>
476
492
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
477
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
493
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
478
494
  </td>
479
495
  </tr>
480
496
  <tr>
481
497
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
498
+ <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>
483
499
  </td>
484
500
  </tr>
485
501
  </tbody>
@@ -487,9 +503,9 @@ Returns the <a class="link" href="gdk-Windows.html#GdkWindow"><span class="type"
487
503
  <p class="since">Since 2.22</p>
488
504
  </div>
489
505
  <hr>
490
- <div class="refsect2">
506
+ <div class="refsect2" title="gdk_drag_begin ()">
491
507
  <a name="gdk-drag-begin"></a><h3>gdk_drag_begin ()</h3>
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>,
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>,
493
509
  <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>
494
510
  <p>
495
511
  Starts a drag and creates a new drag context for it.
@@ -502,25 +518,27 @@ This function is called by the drag source.
502
518
  <tbody>
503
519
  <tr>
504
520
  <td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
505
- <td>the source window for this drag.</td>
521
+ <td>the source window for this drag.
522
+ </td>
506
523
  </tr>
507
524
  <tr>
508
525
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
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>
526
+ <td> the offered targets,
527
+ 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>
511
528
  </td>
512
529
  </tr>
513
530
  <tr>
514
531
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
532
+ <td> a newly created <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
533
+ </td>
516
534
  </tr>
517
535
  </tbody>
518
536
  </table></div>
519
537
  </div>
520
538
  <hr>
521
- <div class="refsect2">
539
+ <div class="refsect2" title="gdk_drag_motion ()">
522
540
  <a name="gdk-drag-motion"></a><h3>gdk_drag_motion ()</h3>
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>,
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>,
524
542
  <em class="parameter"><code><a class="link" href="gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *dest_window</code></em>,
525
543
  <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>,
526
544
  <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>,
@@ -540,48 +558,57 @@ This function is called by the drag source.
540
558
  <tbody>
541
559
  <tr>
542
560
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
543
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
561
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
562
+ </td>
544
563
  </tr>
545
564
  <tr>
546
565
  <td><p><span class="term"><em class="parameter"><code>dest_window</code></em> :</span></p></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>
566
+ <td>the new destination window, obtained by
567
+ <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>.
568
+ </td>
549
569
  </tr>
550
570
  <tr>
551
571
  <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></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>
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>
553
574
  </tr>
554
575
  <tr>
555
576
  <td><p><span class="term"><em class="parameter"><code>x_root</code></em> :</span></p></td>
556
- <td>the x position of the pointer in root coordinates.</td>
577
+ <td>the x position of the pointer in root coordinates.
578
+ </td>
557
579
  </tr>
558
580
  <tr>
559
581
  <td><p><span class="term"><em class="parameter"><code>y_root</code></em> :</span></p></td>
560
- <td>the y position of the pointer in root coordinates.</td>
582
+ <td>the y position of the pointer in root coordinates.
583
+ </td>
561
584
  </tr>
562
585
  <tr>
563
586
  <td><p><span class="term"><em class="parameter"><code>suggested_action</code></em> :</span></p></td>
564
- <td>the suggested action.</td>
587
+ <td>the suggested action.
588
+ </td>
565
589
  </tr>
566
590
  <tr>
567
591
  <td><p><span class="term"><em class="parameter"><code>possible_actions</code></em> :</span></p></td>
568
- <td>the possible actions.</td>
592
+ <td>the possible actions.
593
+ </td>
569
594
  </tr>
570
595
  <tr>
571
596
  <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
572
- <td>the timestamp for this operation.</td>
597
+ <td>the timestamp for this operation.
598
+ </td>
573
599
  </tr>
574
600
  <tr>
575
601
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
576
- <td>FIXME</td>
602
+ <td> FIXME
603
+ </td>
577
604
  </tr>
578
605
  </tbody>
579
606
  </table></div>
580
607
  </div>
581
608
  <hr>
582
- <div class="refsect2">
609
+ <div class="refsect2" title="gdk_drop_finish ()">
583
610
  <a name="gdk-drop-finish"></a><h3>gdk_drop_finish ()</h3>
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>,
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>,
585
612
  <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>,
586
613
  <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>
587
614
  <p>
@@ -595,29 +622,28 @@ This function is called by the drag destination.
595
622
  <tbody>
596
623
  <tr>
597
624
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
598
- <td>a <span class="type">GtkDragContext</span>.</td>
625
+ <td>a <span class="type">GtkDragContext</span>.
626
+ </td>
599
627
  </tr>
600
628
  <tr>
601
629
  <td><p><span class="term"><em class="parameter"><code>success</code></em> :</span></p></td>
602
630
  <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>
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>
604
633
  </tr>
605
634
  <tr>
606
635
  <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
607
- <td>the timestamp for this operation.</td>
636
+ <td>the timestamp for this operation.
637
+ </td>
608
638
  </tr>
609
639
  </tbody>
610
640
  </table></div>
611
641
  </div>
612
642
  <hr>
613
- <div class="refsect2">
643
+ <div class="refsect2" title="gdk_drag_get_protocol ()">
614
644
  <a name="gdk-drag-get-protocol"></a><h3>gdk_drag_get_protocol ()</h3>
615
645
  <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>,
616
646
  <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>
621
647
  <p>
622
648
  Finds out the DND protocol supported by a window.
623
649
  </p>
@@ -626,23 +652,26 @@ Finds out the DND protocol supported by a window.
626
652
  <tbody>
627
653
  <tr>
628
654
  <td><p><span class="term"><em class="parameter"><code>xid</code></em> :</span></p></td>
629
- <td>the windowing system id of the destination window.</td>
655
+ <td>the windowing system id of the destination window.
656
+ </td>
630
657
  </tr>
631
658
  <tr>
632
659
  <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></td>
633
- <td>location where the supported DND protocol is returned.</td>
660
+ <td>location where the supported DND protocol is returned.
661
+ </td>
634
662
  </tr>
635
663
  <tr>
636
664
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
665
+ <td> the windowing system specific id for the window where
666
+ the drop should happen. This may be <em class="parameter"><code>xid</code></em> or the id of a proxy
667
+ window, or zero if <em class="parameter"><code>xid</code></em> doesn't support Drag and Drop.
668
+ </td>
640
669
  </tr>
641
670
  </tbody>
642
671
  </table></div>
643
672
  </div>
644
673
  <hr>
645
- <div class="refsect2">
674
+ <div class="refsect2" title="gdk_drag_get_protocol_for_display ()">
646
675
  <a name="gdk-drag-get-protocol-for-display"></a><h3>gdk_drag_get_protocol_for_display ()</h3>
647
676
  <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>,
648
677
  <em class="parameter"><code><a class="link" href="gdk-Event-Structures.html#GdkNativeWindow" title="GdkNativeWindow"><span class="type">GdkNativeWindow</span></a> xid</code></em>,
@@ -655,28 +684,32 @@ Finds out the DND protocol supported by a window.
655
684
  <tbody>
656
685
  <tr>
657
686
  <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
658
- <td>the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> where the destination window resides</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>
659
689
  </tr>
660
690
  <tr>
661
691
  <td><p><span class="term"><em class="parameter"><code>xid</code></em> :</span></p></td>
662
- <td>the windowing system id of the destination window.</td>
692
+ <td>the windowing system id of the destination window.
693
+ </td>
663
694
  </tr>
664
695
  <tr>
665
696
  <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></td>
666
- <td>location where the supported DND protocol is returned.</td>
697
+ <td>location where the supported DND protocol is returned.
698
+ </td>
667
699
  </tr>
668
700
  <tr>
669
701
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
702
+ <td>the windowing system id of the window where the drop should happen. This
703
+ 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
704
+ support Drag and Drop.
705
+ </td>
673
706
  </tr>
674
707
  </tbody>
675
708
  </table></div>
676
709
  <p class="since">Since 2.2</p>
677
710
  </div>
678
711
  <hr>
679
- <div class="refsect2">
712
+ <div class="refsect2" title="enum GdkDragProtocol">
680
713
  <a name="GdkDragProtocol"></a><h3>enum GdkDragProtocol</h3>
681
714
  <pre class="programlisting">typedef enum
682
715
  {
@@ -691,7 +724,7 @@ support Drag and Drop.</td>
691
724
  } GdkDragProtocol;
692
725
  </pre>
693
726
  <p>
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
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
695
728
  which DND is done.
696
729
  </p>
697
730
  <div class="variablelist"><table border="0">
@@ -737,10 +770,10 @@ which DND is done.
737
770
  </table></div>
738
771
  </div>
739
772
  <hr>
740
- <div class="refsect2">
773
+ <div class="refsect2" title="gdk_drag_context_unref ()">
741
774
  <a name="gdk-drag-context-unref"></a><h3>gdk_drag_context_unref ()</h3>
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;">
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" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
744
777
  <h3 class="title">Warning</h3>
745
778
  <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>
746
779
  </div>
@@ -751,14 +784,15 @@ Deprecated function; use <a href="http://library.gnome.org/devel/gobject/unstabl
751
784
  <col align="left" valign="top">
752
785
  <tbody><tr>
753
786
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
754
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
787
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
788
+ </td>
755
789
  </tr></tbody>
756
790
  </table></div>
757
791
  </div>
758
792
  <hr>
759
- <div class="refsect2">
760
- <a name="GdkDragContext"></a><h3>struct GdkDragContext</h3>
761
- <pre class="programlisting">struct GdkDragContext {
793
+ <div class="refsect2" title="GdkDragContext">
794
+ <a name="GdkDragContext"></a><h3>GdkDragContext</h3>
795
+ <pre class="programlisting">typedef struct {
762
796
  GObject parent_instance;
763
797
 
764
798
 
@@ -775,7 +809,7 @@ Deprecated function; use <a href="http://library.gnome.org/devel/gobject/unstabl
775
809
  GdkDragAction GSEAL (action);
776
810
 
777
811
  guint32 GSEAL (start_time);
778
- };
812
+ } GdkDragContext;
779
813
  </pre>
780
814
  <p>
781
815
  A <span class="structname">GdkDragContext</span> holds information about a
@@ -785,12 +819,13 @@ drag in progress. It is used on both source and destination sides.
785
819
  <col align="left" valign="top">
786
820
  <tbody><tr>
787
821
  <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>
788
- <td>the parent instance</td>
822
+ <td>the parent instance
823
+ </td>
789
824
  </tr></tbody>
790
825
  </table></div>
791
826
  </div>
792
827
  <hr>
793
- <div class="refsect2">
828
+ <div class="refsect2" title="enum GdkDragAction">
794
829
  <a name="GdkDragAction"></a><h3>enum GdkDragAction</h3>
795
830
  <pre class="programlisting">typedef enum
796
831
  {
@@ -803,7 +838,7 @@ drag in progress. It is used on both source and destination sides.
803
838
  } GdkDragAction;
804
839
  </pre>
805
840
  <p>
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
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
807
842
  should do with the dropped data.
808
843
  </p>
809
844
  <div class="variablelist"><table border="0">
@@ -846,9 +881,9 @@ should do with the dropped data.
846
881
  </table></div>
847
882
  </div>
848
883
  <hr>
849
- <div class="refsect2">
884
+ <div class="refsect2" title="gdk_drag_status ()">
850
885
  <a name="gdk-drag-status"></a><h3>gdk_drag_status ()</h3>
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>,
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>,
852
887
  <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>,
853
888
  <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>
854
889
  <p>
@@ -863,24 +898,27 @@ This function is called by the drag destination in response to
863
898
  <tbody>
864
899
  <tr>
865
900
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
866
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>.</td>
901
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>.
902
+ </td>
867
903
  </tr>
868
904
  <tr>
869
905
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></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>
906
+ <td>the selected action which will be taken when a drop happens,
907
+ or 0 to indicate that a drop will not be accepted.
908
+ </td>
872
909
  </tr>
873
910
  <tr>
874
911
  <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
875
- <td>the timestamp for this operation.</td>
912
+ <td>the timestamp for this operation.
913
+ </td>
876
914
  </tr>
877
915
  </tbody>
878
916
  </table></div>
879
917
  </div>
880
918
  <hr>
881
- <div class="refsect2">
919
+ <div class="refsect2" title="gdk_drag_drop_succeeded ()">
882
920
  <a name="gdk-drag-drop-succeeded"></a><h3>gdk_drag_drop_succeeded ()</h3>
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>
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>
884
922
  <p>
885
923
  Returns whether the dropped data has been successfully
886
924
  transferred. This function is intended to be used while
@@ -892,13 +930,14 @@ meaningless at other times.
892
930
  <tbody>
893
931
  <tr>
894
932
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
895
- <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext"><span class="type">GdkDragContext</span></a>
933
+ <td>a <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext"><span class="type">GdkDragContext</span></a>
896
934
  </td>
897
935
  </tr>
898
936
  <tr>
899
937
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></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>
938
+ <td> <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.
939
+
940
+ </td>
902
941
  </tr>
903
942
  </tbody>
904
943
  </table></div>
@@ -908,6 +947,6 @@ meaningless at other times.
908
947
  </div>
909
948
  <div class="footer">
910
949
  <hr>
911
- Generated by GTK-Doc V1.16.1</div>
950
+ Generated by GTK-Doc V1.15</div>
912
951
  </body>
913
952
  </html>