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="gtkbase.html" title="Part II. GTK+ Core Reference">
9
9
  <link rel="prev" href="gtk-Clipboards.html" title="Clipboards">
10
10
  <link rel="next" href="GtkIconTheme.html" title="GtkIconTheme">
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="#gtk-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="gtk-Drag-and-Drop"></a><div class="titlepage"></div>
31
31
  <div class="refnamediv"><table width="100%"><tr>
32
32
  <td valign="top">
@@ -35,7 +35,7 @@
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="gtk-Drag-and-Drop.synopsis"></a><h2>Synopsis</h2>
40
40
  <pre class="synopsis">
41
41
  #include &lt;gtk/gtk.h&gt;
@@ -45,7 +45,7 @@ enum <a class="link" href="gtk-Drag-and-Drop.html#GtkTargetFlags"
45
45
 
46
46
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-set" title="gtk_drag_dest_set ()">gtk_drag_dest_set</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
47
47
  <em class="parameter"><code><a class="link" href="gtk-Drag-and-Drop.html#GtkDestDefaults" title="enum GtkDestDefaults"><span class="type">GtkDestDefaults</span></a> flags</code></em>,
48
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
48
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
49
49
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
50
50
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
51
51
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-set-proxy" title="gtk_drag_dest_set_proxy ()">gtk_drag_dest_set_proxy</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
@@ -55,10 +55,10 @@ enum <a class="link" href="gtk-Drag-and-Drop.html#GtkTargetFlags"
55
55
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-unset" title="gtk_drag_dest_unset ()">gtk_drag_dest_unset</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
56
56
  <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-find-target" title="gtk_drag_dest_find_target ()">gtk_drag_dest_find_target</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
57
57
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
58
- <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);
59
- <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-get-target-list" title="gtk_drag_dest_get_target_list ()">gtk_drag_dest_get_target_list</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
58
+ <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);
59
+ <a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="returnvalue">GtkTargetList</span></a>* <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-get-target-list" title="gtk_drag_dest_get_target_list ()">gtk_drag_dest_get_target_list</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
60
60
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-set-target-list" title="gtk_drag_dest_set_target_list ()">gtk_drag_dest_set_target_list</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
61
- <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);
61
+ <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);
62
62
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-add-text-targets" title="gtk_drag_dest_add_text_targets ()">gtk_drag_dest_add_text_targets</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
63
63
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-add-image-targets" title="gtk_drag_dest_add_image_targets ()">gtk_drag_dest_add_image_targets</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
64
64
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-add-uri-targets" title="gtk_drag_dest_add_uri_targets ()">gtk_drag_dest_add_uri_targets</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
@@ -78,7 +78,7 @@ enum <a class="link" href="gtk-Drag-and-Drop.html#GtkTargetFlags"
78
78
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-unhighlight" title="gtk_drag_unhighlight ()">gtk_drag_unhighlight</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
79
79
 
80
80
  <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> * <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-begin" title="gtk_drag_begin ()">gtk_drag_begin</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
81
- <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *targets</code></em>,
81
+ <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</span></a> *targets</code></em>,
82
82
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>,
83
83
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> button</code></em>,
84
84
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>);
@@ -117,7 +117,7 @@ enum <a class="link" href="gtk-Drag-and-Drop.html#GtkTargetFlags"
117
117
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> current_y</code></em>);
118
118
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-set" title="gtk_drag_source_set ()">gtk_drag_source_set</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
119
119
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
120
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
120
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
121
121
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
122
122
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
123
123
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-set-icon" title="gtk_drag_source_set_icon ()">gtk_drag_source_set_icon</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
@@ -132,14 +132,14 @@ enum <a class="link" href="gtk-Drag-and-Drop.html#GtkTargetFlags"
132
132
  <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> *icon_name</code></em>);
133
133
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-unset" title="gtk_drag_source_unset ()">gtk_drag_source_unset</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
134
134
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-set-target-list" title="gtk_drag_source_set_target_list ()">gtk_drag_source_set_target_list</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
135
- <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);
136
- <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-get-target-list" title="gtk_drag_source_get_target_list ()">gtk_drag_source_get_target_list</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
135
+ <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);
136
+ <a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="returnvalue">GtkTargetList</span></a>* <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-get-target-list" title="gtk_drag_source_get_target_list ()">gtk_drag_source_get_target_list</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
137
137
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-add-text-targets" title="gtk_drag_source_add_text_targets ()">gtk_drag_source_add_text_targets</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
138
138
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-add-image-targets" title="gtk_drag_source_add_image_targets ()">gtk_drag_source_add_image_targets</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
139
139
  <span class="returnvalue">void</span> <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-add-uri-targets" title="gtk_drag_source_add_uri_targets ()">gtk_drag_source_add_uri_targets</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
140
140
  </pre>
141
141
  </div>
142
- <div class="refsect1">
142
+ <div class="refsect1" title="Description">
143
143
  <a name="gtk-Drag-and-Drop.description"></a><h2>Description</h2>
144
144
  <p>
145
145
  GTK+ has a rich set of functions for doing inter-process
@@ -154,9 +154,9 @@ Also, the Drag and Drop API makes use of signals
154
154
  in the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> class.
155
155
  </p>
156
156
  </div>
157
- <div class="refsect1">
157
+ <div class="refsect1" title="Details">
158
158
  <a name="gtk-Drag-and-Drop.details"></a><h2>Details</h2>
159
- <div class="refsect2">
159
+ <div class="refsect2" title="enum GtkDestDefaults">
160
160
  <a name="GtkDestDefaults"></a><h3>enum GtkDestDefaults</h3>
161
161
  <pre class="programlisting">typedef enum {
162
162
  GTK_DEST_DEFAULT_MOTION = 1 &lt;&lt; 0, /* respond to "drag_motion" */
@@ -215,7 +215,7 @@ of the user for a drag destination site.
215
215
  </table></div>
216
216
  </div>
217
217
  <hr>
218
- <div class="refsect2">
218
+ <div class="refsect2" title="enum GtkTargetFlags">
219
219
  <a name="GtkTargetFlags"></a><h3>enum GtkTargetFlags</h3>
220
220
  <pre class="programlisting">typedef enum {
221
221
  GTK_TARGET_SAME_APP = 1 &lt;&lt; 0, /*&lt; nick=same-app &gt;*/
@@ -263,11 +263,11 @@ constraints on an entry in a <span class="type">GtkTargetTable</span>.
263
263
  </table></div>
264
264
  </div>
265
265
  <hr>
266
- <div class="refsect2">
266
+ <div class="refsect2" title="gtk_drag_dest_set ()">
267
267
  <a name="gtk-drag-dest-set"></a><h3>gtk_drag_dest_set ()</h3>
268
268
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_dest_set (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
269
269
  <em class="parameter"><code><a class="link" href="gtk-Drag-and-Drop.html#GtkDestDefaults" title="enum GtkDestDefaults"><span class="type">GtkDestDefaults</span></a> flags</code></em>,
270
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
270
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
271
271
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
272
272
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
273
273
  <p>
@@ -349,14 +349,15 @@ the action to use depending on whether the control key is pressed or not:
349
349
  </tr>
350
350
  <tr>
351
351
  <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
352
- <td>which types of default drag behavior to use</td>
352
+ <td>which types of default drag behavior to use
353
+ </td>
353
354
  </tr>
354
355
  <tr>
355
356
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
356
- <td>a pointer to an array of <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a>s
357
- indicating the drop types that this <em class="parameter"><code>widget</code></em> will accept, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
358
- Later you can access the list with <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-get-target-list" title="gtk_drag_dest_get_target_list ()"><code class="function">gtk_drag_dest_get_target_list()</code></a>
359
- and <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-find-target" title="gtk_drag_dest_find_target ()"><code class="function">gtk_drag_dest_find_target()</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_targets]</span>
357
+ <td> a pointer to an array of <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a>s
358
+ indicating the drop types that this <em class="parameter"><code>widget</code></em> will accept, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
359
+ Later you can access the list with <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-get-target-list" title="gtk_drag_dest_get_target_list ()"><code class="function">gtk_drag_dest_get_target_list()</code></a>
360
+ and <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-find-target" title="gtk_drag_dest_find_target ()"><code class="function">gtk_drag_dest_find_target()</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_targets]</span>
360
361
  </td>
361
362
  </tr>
362
363
  <tr>
@@ -366,13 +367,14 @@ and <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-find-target" titl
366
367
  </tr>
367
368
  <tr>
368
369
  <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
369
- <td>a bitmask of possible actions for a drop onto this <em class="parameter"><code>widget</code></em>.</td>
370
+ <td>a bitmask of possible actions for a drop onto this <em class="parameter"><code>widget</code></em>.
371
+ </td>
370
372
  </tr>
371
373
  </tbody>
372
374
  </table></div>
373
375
  </div>
374
376
  <hr>
375
- <div class="refsect2">
377
+ <div class="refsect2" title="gtk_drag_dest_set_proxy ()">
376
378
  <a name="gtk-drag-dest-set-proxy"></a><h3>gtk_drag_dest_set_proxy ()</h3>
377
379
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_dest_set_proxy (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
378
380
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *proxy_window</code></em>,
@@ -391,24 +393,27 @@ Sets this widget as a proxy for drops to another window.
391
393
  </tr>
392
394
  <tr>
393
395
  <td><p><span class="term"><em class="parameter"><code>proxy_window</code></em> :</span></p></td>
394
- <td>the window to which to forward drag events</td>
396
+ <td>the window to which to forward drag events
397
+ </td>
395
398
  </tr>
396
399
  <tr>
397
400
  <td><p><span class="term"><em class="parameter"><code>protocol</code></em> :</span></p></td>
398
401
  <td>the drag protocol which the <em class="parameter"><code>proxy_window</code></em> accepts
399
- (You can use <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#gdk-drag-get-protocol"><code class="function">gdk_drag_get_protocol()</code></a> to determine this)</td>
402
+ (You can use <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#gdk-drag-get-protocol"><code class="function">gdk_drag_get_protocol()</code></a> to determine this)
403
+ </td>
400
404
  </tr>
401
405
  <tr>
402
406
  <td><p><span class="term"><em class="parameter"><code>use_coordinates</code></em> :</span></p></td>
403
407
  <td>If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, send the same coordinates to the
404
- destination, because it is an embedded
405
- subwindow.</td>
408
+ destination, because it is an embedded
409
+ subwindow.
410
+ </td>
406
411
  </tr>
407
412
  </tbody>
408
413
  </table></div>
409
414
  </div>
410
415
  <hr>
411
- <div class="refsect2">
416
+ <div class="refsect2" title="gtk_drag_dest_unset ()">
412
417
  <a name="gtk-drag-dest-unset"></a><h3>gtk_drag_dest_unset ()</h3>
413
418
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_dest_unset (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
414
419
  <p>
@@ -426,48 +431,51 @@ notification of drags.
426
431
  </table></div>
427
432
  </div>
428
433
  <hr>
429
- <div class="refsect2">
434
+ <div class="refsect2" title="gtk_drag_dest_find_target ()">
430
435
  <a name="gtk-drag-dest-find-target"></a><h3>gtk_drag_dest_find_target ()</h3>
431
436
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_drag_dest_find_target (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
432
437
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
433
- <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);</pre>
438
+ <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);</pre>
439
+ <p>
440
+ Looks for a match between <em class="parameter"><code>context-&gt;targets</code></em> and the
441
+ <em class="parameter"><code>dest_target_list</code></em>, returning the first matching target, otherwise
442
+ returning <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GDK-NONE:CAPS"><code class="literal">GDK_NONE</code></a>. <em class="parameter"><code>dest_target_list</code></em> should usually be the return
443
+ value from <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-get-target-list" title="gtk_drag_dest_get_target_list ()"><code class="function">gtk_drag_dest_get_target_list()</code></a>, but some widgets may
444
+ have different valid targets for different parts of the widget; in
445
+ that case, they will have to implement a drag_motion handler that
446
+ passes the correct target list to this function.
447
+ </p>
434
448
  <div class="variablelist"><table border="0">
435
449
  <col align="left" valign="top">
436
450
  <tbody>
437
451
  <tr>
438
452
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
439
- <td>drag destination widget</td>
453
+ <td>drag destination widget
454
+ </td>
440
455
  </tr>
441
456
  <tr>
442
457
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
443
- <td>drag context</td>
458
+ <td>drag context
459
+ </td>
444
460
  </tr>
445
461
  <tr>
446
462
  <td><p><span class="term"><em class="parameter"><code>target_list</code></em> :</span></p></td>
447
- <td>list of droppable targets, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use
448
- gtk_drag_dest_get_target_list (<em class="parameter"><code>widget</code></em>).
449
- Looks for a match between the supported targets of <em class="parameter"><code>context</code></em> and the
450
- <em class="parameter"><code>dest_target_list</code></em>, returning the first matching target, otherwise
451
- returning <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GDK-NONE:CAPS"><code class="literal">GDK_NONE</code></a>. <em class="parameter"><code>dest_target_list</code></em> should usually be the return
452
- value from <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-dest-get-target-list" title="gtk_drag_dest_get_target_list ()"><code class="function">gtk_drag_dest_get_target_list()</code></a>, but some widgets may
453
- have different valid targets for different parts of the widget; in
454
- that case, they will have to implement a drag_motion handler that
455
- passes the correct target list to this function. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
463
+ <td> list of droppable targets, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use
464
+ gtk_drag_dest_get_target_list (<em class="parameter"><code>widget</code></em>). <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
456
465
  </td>
457
466
  </tr>
458
467
  <tr>
459
468
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
460
- <td>first target that the source offers
461
- and the dest can accept, or <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GDK-NONE:CAPS"><code class="literal">GDK_NONE</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
469
+ <td> first target that the source offers and the dest can accept, or <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GDK-NONE:CAPS"><code class="literal">GDK_NONE</code></a>
462
470
  </td>
463
471
  </tr>
464
472
  </tbody>
465
473
  </table></div>
466
474
  </div>
467
475
  <hr>
468
- <div class="refsect2">
476
+ <div class="refsect2" title="gtk_drag_dest_get_target_list ()">
469
477
  <a name="gtk-drag-dest-get-target-list"></a><h3>gtk_drag_dest_get_target_list ()</h3>
470
- <pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * gtk_drag_dest_get_target_list (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
478
+ <pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="returnvalue">GtkTargetList</span></a>* gtk_drag_dest_get_target_list (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
471
479
  <p>
472
480
  Returns the list of targets this widget can accept from
473
481
  drag-and-drop.
@@ -482,17 +490,17 @@ drag-and-drop.
482
490
  </tr>
483
491
  <tr>
484
492
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
485
- <td>the <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</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 none. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
493
+ <td> the <a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</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 none
486
494
  </td>
487
495
  </tr>
488
496
  </tbody>
489
497
  </table></div>
490
498
  </div>
491
499
  <hr>
492
- <div class="refsect2">
500
+ <div class="refsect2" title="gtk_drag_dest_set_target_list ()">
493
501
  <a name="gtk-drag-dest-set-target-list"></a><h3>gtk_drag_dest_set_target_list ()</h3>
494
502
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_dest_set_target_list (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
495
- <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);</pre>
503
+ <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);</pre>
496
504
  <p>
497
505
  Sets the target types that this widget can accept from drag-and-drop.
498
506
  The widget must first be made into a drag destination with
@@ -503,18 +511,19 @@ The widget must first be made into a drag destination with
503
511
  <tbody>
504
512
  <tr>
505
513
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
506
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination</td>
514
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination
515
+ </td>
507
516
  </tr>
508
517
  <tr>
509
518
  <td><p><span class="term"><em class="parameter"><code>target_list</code></em> :</span></p></td>
510
- <td>list of droppable targets, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for none. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
519
+ <td> list of droppable targets, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for none. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
511
520
  </td>
512
521
  </tr>
513
522
  </tbody>
514
523
  </table></div>
515
524
  </div>
516
525
  <hr>
517
- <div class="refsect2">
526
+ <div class="refsect2" title="gtk_drag_dest_add_text_targets ()">
518
527
  <a name="gtk-drag-dest-add-text-targets"></a><h3>gtk_drag_dest_add_text_targets ()</h3>
519
528
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_dest_add_text_targets (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
520
529
  <p>
@@ -528,13 +537,14 @@ use <a class="link" href="gtk-Selections.html#gtk-target-list-add-text-targets"
528
537
  <col align="left" valign="top">
529
538
  <tbody><tr>
530
539
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
531
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination</td>
540
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination
541
+ </td>
532
542
  </tr></tbody>
533
543
  </table></div>
534
544
  <p class="since">Since 2.6</p>
535
545
  </div>
536
546
  <hr>
537
- <div class="refsect2">
547
+ <div class="refsect2" title="gtk_drag_dest_add_image_targets ()">
538
548
  <a name="gtk-drag-dest-add-image-targets"></a><h3>gtk_drag_dest_add_image_targets ()</h3>
539
549
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_dest_add_image_targets (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
540
550
  <p>
@@ -548,13 +558,14 @@ use <a class="link" href="gtk-Selections.html#gtk-target-list-add-image-targets"
548
558
  <col align="left" valign="top">
549
559
  <tbody><tr>
550
560
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
551
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination</td>
561
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination
562
+ </td>
552
563
  </tr></tbody>
553
564
  </table></div>
554
565
  <p class="since">Since 2.6</p>
555
566
  </div>
556
567
  <hr>
557
- <div class="refsect2">
568
+ <div class="refsect2" title="gtk_drag_dest_add_uri_targets ()">
558
569
  <a name="gtk-drag-dest-add-uri-targets"></a><h3>gtk_drag_dest_add_uri_targets ()</h3>
559
570
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_dest_add_uri_targets (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
560
571
  <p>
@@ -568,13 +579,14 @@ use <a class="link" href="gtk-Selections.html#gtk-target-list-add-uri-targets" t
568
579
  <col align="left" valign="top">
569
580
  <tbody><tr>
570
581
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
571
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination</td>
582
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination
583
+ </td>
572
584
  </tr></tbody>
573
585
  </table></div>
574
586
  <p class="since">Since 2.6</p>
575
587
  </div>
576
588
  <hr>
577
- <div class="refsect2">
589
+ <div class="refsect2" title="gtk_drag_dest_set_track_motion ()">
578
590
  <a name="gtk-drag-dest-set-track-motion"></a><h3>gtk_drag_dest_set_track_motion ()</h3>
579
591
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_dest_set_track_motion (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
580
592
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> track_motion</code></em>);</pre>
@@ -592,18 +604,20 @@ actions regardless of the targets that the source offers.
592
604
  <tbody>
593
605
  <tr>
594
606
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
595
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination</td>
607
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination
608
+ </td>
596
609
  </tr>
597
610
  <tr>
598
611
  <td><p><span class="term"><em class="parameter"><code>track_motion</code></em> :</span></p></td>
599
- <td>whether to accept all targets</td>
612
+ <td>whether to accept all targets
613
+ </td>
600
614
  </tr>
601
615
  </tbody>
602
616
  </table></div>
603
617
  <p class="since">Since 2.10</p>
604
618
  </div>
605
619
  <hr>
606
- <div class="refsect2">
620
+ <div class="refsect2" title="gtk_drag_dest_get_track_motion ()">
607
621
  <a name="gtk-drag-dest-get-track-motion"></a><h3>gtk_drag_dest_get_track_motion ()</h3>
608
622
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_drag_dest_get_track_motion (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
609
623
  <p>
@@ -615,19 +629,21 @@ emit ::drag-motion signals.
615
629
  <tbody>
616
630
  <tr>
617
631
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
618
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination</td>
632
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag destination
633
+ </td>
619
634
  </tr>
620
635
  <tr>
621
636
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
622
- <td>
623
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the widget always emits ::drag-motion events</td>
637
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the widget always emits ::drag-motion events
638
+
639
+ </td>
624
640
  </tr>
625
641
  </tbody>
626
642
  </table></div>
627
643
  <p class="since">Since 2.10</p>
628
644
  </div>
629
645
  <hr>
630
- <div class="refsect2">
646
+ <div class="refsect2" title="gtk_drag_finish ()">
631
647
  <a name="gtk-drag-finish"></a><h3>gtk_drag_finish ()</h3>
632
648
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_finish (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
633
649
  <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>,
@@ -642,26 +658,30 @@ that the data of the drag will no longer be required.
642
658
  <tbody>
643
659
  <tr>
644
660
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
645
- <td>the drag context.</td>
661
+ <td>the drag context.
662
+ </td>
646
663
  </tr>
647
664
  <tr>
648
665
  <td><p><span class="term"><em class="parameter"><code>success</code></em> :</span></p></td>
649
- <td>a flag indicating whether the drop was successful</td>
666
+ <td>a flag indicating whether the drop was successful
667
+ </td>
650
668
  </tr>
651
669
  <tr>
652
670
  <td><p><span class="term"><em class="parameter"><code>del</code></em> :</span></p></td>
653
671
  <td>a flag indicating whether the source should delete the
654
- original data. (This should be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for a move)</td>
672
+ original data. (This should be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for a move)
673
+ </td>
655
674
  </tr>
656
675
  <tr>
657
676
  <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
658
- <td>the timestamp from the "drag_data_drop" signal.</td>
677
+ <td>the timestamp from the "drag_data_drop" signal.
678
+ </td>
659
679
  </tr>
660
680
  </tbody>
661
681
  </table></div>
662
682
  </div>
663
683
  <hr>
664
- <div class="refsect2">
684
+ <div class="refsect2" title="gtk_drag_get_data ()">
665
685
  <a name="gtk-drag-get-data"></a><h3>gtk_drag_get_data ()</h3>
666
686
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_get_data (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
667
687
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
@@ -683,54 +703,55 @@ drops.
683
703
  <tr>
684
704
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
685
705
  <td>the widget that will receive the "drag_data_received"
686
- signal.</td>
706
+ signal.
707
+ </td>
687
708
  </tr>
688
709
  <tr>
689
710
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
690
- <td>the drag context</td>
711
+ <td>the drag context
712
+ </td>
691
713
  </tr>
692
714
  <tr>
693
715
  <td><p><span class="term"><em class="parameter"><code>target</code></em> :</span></p></td>
694
- <td>the target (form of the data) to retrieve.</td>
716
+ <td>the target (form of the data) to retrieve.
717
+ </td>
695
718
  </tr>
696
719
  <tr>
697
720
  <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
698
721
  <td>a timestamp for retrieving the data. This will
699
- generally be the time received in a "drag_data_motion"
700
- or "drag_data_drop" signal.</td>
722
+ generally be the time received in a "drag_data_motion"
723
+ or "drag_data_drop" signal.
724
+ </td>
701
725
  </tr>
702
726
  </tbody>
703
727
  </table></div>
704
728
  </div>
705
729
  <hr>
706
- <div class="refsect2">
730
+ <div class="refsect2" title="gtk_drag_get_source_widget ()">
707
731
  <a name="gtk-drag-get-source-widget"></a><h3>gtk_drag_get_source_widget ()</h3>
708
732
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_drag_get_source_widget (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
709
733
  <p>
710
734
  Determines the source widget for a drag.
711
735
  </p>
712
- <p>
713
- Determines the source widget for a drag.
714
- </p>
715
736
  <div class="variablelist"><table border="0">
716
737
  <col align="left" valign="top">
717
738
  <tbody>
718
739
  <tr>
719
740
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
720
- <td>a (destination side) drag context</td>
741
+ <td>a (destination side) drag context.
742
+ </td>
721
743
  </tr>
722
744
  <tr>
723
745
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
724
- <td>if the drag is occurring
725
- within a single application, a pointer to the source widget.
726
- Otherwise, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
746
+ <td>if the drag is occurring within a single application,
747
+ a pointer to the source widget. Otherwise, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
727
748
  </td>
728
749
  </tr>
729
750
  </tbody>
730
751
  </table></div>
731
752
  </div>
732
753
  <hr>
733
- <div class="refsect2">
754
+ <div class="refsect2" title="gtk_drag_highlight ()">
734
755
  <a name="gtk-drag-highlight"></a><h3>gtk_drag_highlight ()</h3>
735
756
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_highlight (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
736
757
  <p>
@@ -743,12 +764,13 @@ is called.
743
764
  <col align="left" valign="top">
744
765
  <tbody><tr>
745
766
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
746
- <td>a widget to highlight</td>
767
+ <td>a widget to highlight
768
+ </td>
747
769
  </tr></tbody>
748
770
  </table></div>
749
771
  </div>
750
772
  <hr>
751
- <div class="refsect2">
773
+ <div class="refsect2" title="gtk_drag_unhighlight ()">
752
774
  <a name="gtk-drag-unhighlight"></a><h3>gtk_drag_unhighlight ()</h3>
753
775
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_unhighlight (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
754
776
  <p>
@@ -759,15 +781,16 @@ a widget.
759
781
  <col align="left" valign="top">
760
782
  <tbody><tr>
761
783
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
762
- <td>a widget to remove the highlight from.</td>
784
+ <td>a widget to remove the highlight from.
785
+ </td>
763
786
  </tr></tbody>
764
787
  </table></div>
765
788
  </div>
766
789
  <hr>
767
- <div class="refsect2">
790
+ <div class="refsect2" title="gtk_drag_begin ()">
768
791
  <a name="gtk-drag-begin"></a><h3>gtk_drag_begin ()</h3>
769
792
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="returnvalue">GdkDragContext</span></a> * gtk_drag_begin (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
770
- <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *targets</code></em>,
793
+ <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</span></a> *targets</code></em>,
771
794
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>,
772
795
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> button</code></em>,
773
796
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>);</pre>
@@ -810,35 +833,40 @@ can really not pass a real event, pass <a href="http://library.gnome.org/devel/g
810
833
  <tbody>
811
834
  <tr>
812
835
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
813
- <td>the source widget.</td>
836
+ <td>the source widget.
837
+ </td>
814
838
  </tr>
815
839
  <tr>
816
840
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
817
841
  <td>The targets (data formats) in which the
818
- source can provide the data.</td>
842
+ source can provide the data.
843
+ </td>
819
844
  </tr>
820
845
  <tr>
821
846
  <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
822
- <td>A bitmask of the allowed drag actions for this drag.</td>
847
+ <td>A bitmask of the allowed drag actions for this drag.
848
+ </td>
823
849
  </tr>
824
850
  <tr>
825
851
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
826
- <td>The button the user clicked to start the drag.</td>
852
+ <td>The button the user clicked to start the drag.
853
+ </td>
827
854
  </tr>
828
855
  <tr>
829
856
  <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
830
- <td>The event that triggered the start of the drag.</td>
857
+ <td>The event that triggered the start of the drag.
858
+ </td>
831
859
  </tr>
832
860
  <tr>
833
861
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
834
- <td>the context for this drag. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
862
+ <td> the context for this drag.
835
863
  </td>
836
864
  </tr>
837
865
  </tbody>
838
866
  </table></div>
839
867
  </div>
840
868
  <hr>
841
- <div class="refsect2">
869
+ <div class="refsect2" title="gtk_drag_set_icon_widget ()">
842
870
  <a name="gtk-drag-set-icon-widget"></a><h3>gtk_drag_set_icon_widget ()</h3>
843
871
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_set_icon_widget (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
844
872
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
@@ -855,26 +883,30 @@ signal and destroy it yourself.
855
883
  <tbody>
856
884
  <tr>
857
885
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
858
- <td>the context for a drag. (This must be called
859
- with a context for the source side of a drag)</td>
886
+ <td>the context for a drag. (This must be called
887
+ with a context for the source side of a drag)
888
+ </td>
860
889
  </tr>
861
890
  <tr>
862
891
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
863
- <td>a toplevel window to use as an icon.</td>
892
+ <td>a toplevel window to use as an icon.
893
+ </td>
864
894
  </tr>
865
895
  <tr>
866
896
  <td><p><span class="term"><em class="parameter"><code>hot_x</code></em> :</span></p></td>
867
- <td>the X offset within <em class="parameter"><code>widget</code></em> of the hotspot.</td>
897
+ <td>the X offset within <em class="parameter"><code>widget</code></em> of the hotspot.
898
+ </td>
868
899
  </tr>
869
900
  <tr>
870
901
  <td><p><span class="term"><em class="parameter"><code>hot_y</code></em> :</span></p></td>
871
- <td>the Y offset within <em class="parameter"><code>widget</code></em> of the hotspot.</td>
902
+ <td>the Y offset within <em class="parameter"><code>widget</code></em> of the hotspot.
903
+ </td>
872
904
  </tr>
873
905
  </tbody>
874
906
  </table></div>
875
907
  </div>
876
908
  <hr>
877
- <div class="refsect2">
909
+ <div class="refsect2" title="gtk_drag_set_icon_pixmap ()">
878
910
  <a name="gtk-drag-set-icon-pixmap"></a><h3>gtk_drag_set_icon_pixmap ()</h3>
879
911
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_set_icon_pixmap (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
880
912
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>,
@@ -893,34 +925,40 @@ will be more convenient to use.
893
925
  <tbody>
894
926
  <tr>
895
927
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
896
- <td>the context for a drag. (This must be called
897
- with a context for the source side of a drag)</td>
928
+ <td>the context for a drag. (This must be called
929
+ with a context for the source side of a drag)
930
+ </td>
898
931
  </tr>
899
932
  <tr>
900
933
  <td><p><span class="term"><em class="parameter"><code>colormap</code></em> :</span></p></td>
901
- <td>the colormap of the icon</td>
934
+ <td>the colormap of the icon
935
+ </td>
902
936
  </tr>
903
937
  <tr>
904
938
  <td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
905
- <td>the image data for the icon</td>
939
+ <td>the image data for the icon
940
+ </td>
906
941
  </tr>
907
942
  <tr>
908
943
  <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
909
- <td>the transparency mask for the icon</td>
944
+ <td>the transparency mask for the icon
945
+ </td>
910
946
  </tr>
911
947
  <tr>
912
948
  <td><p><span class="term"><em class="parameter"><code>hot_x</code></em> :</span></p></td>
913
- <td>the X offset within <em class="parameter"><code>pixmap</code></em> of the hotspot.</td>
949
+ <td>the X offset within <em class="parameter"><code>pixmap</code></em> of the hotspot.
950
+ </td>
914
951
  </tr>
915
952
  <tr>
916
953
  <td><p><span class="term"><em class="parameter"><code>hot_y</code></em> :</span></p></td>
917
- <td>the Y offset within <em class="parameter"><code>pixmap</code></em> of the hotspot.</td>
954
+ <td>the Y offset within <em class="parameter"><code>pixmap</code></em> of the hotspot.
955
+ </td>
918
956
  </tr>
919
957
  </tbody>
920
958
  </table></div>
921
959
  </div>
922
960
  <hr>
923
- <div class="refsect2">
961
+ <div class="refsect2" title="gtk_drag_set_icon_pixbuf ()">
924
962
  <a name="gtk-drag-set-icon-pixbuf"></a><h3>gtk_drag_set_icon_pixbuf ()</h3>
925
963
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_set_icon_pixbuf (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
926
964
  <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>,
@@ -934,26 +972,30 @@ Sets <em class="parameter"><code>pixbuf</code></em> as the icon for a given drag
934
972
  <tbody>
935
973
  <tr>
936
974
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
937
- <td>the context for a drag. (This must be called
938
- with a context for the source side of a drag)</td>
975
+ <td>the context for a drag. (This must be called
976
+ with a context for the source side of a drag)
977
+ </td>
939
978
  </tr>
940
979
  <tr>
941
980
  <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
942
- <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> to use as the drag icon.</td>
981
+ <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> to use as the drag icon.
982
+ </td>
943
983
  </tr>
944
984
  <tr>
945
985
  <td><p><span class="term"><em class="parameter"><code>hot_x</code></em> :</span></p></td>
946
- <td>the X offset within <em class="parameter"><code>widget</code></em> of the hotspot.</td>
986
+ <td>the X offset within <em class="parameter"><code>widget</code></em> of the hotspot.
987
+ </td>
947
988
  </tr>
948
989
  <tr>
949
990
  <td><p><span class="term"><em class="parameter"><code>hot_y</code></em> :</span></p></td>
950
- <td>the Y offset within <em class="parameter"><code>widget</code></em> of the hotspot.</td>
991
+ <td>the Y offset within <em class="parameter"><code>widget</code></em> of the hotspot.
992
+ </td>
951
993
  </tr>
952
994
  </tbody>
953
995
  </table></div>
954
996
  </div>
955
997
  <hr>
956
- <div class="refsect2">
998
+ <div class="refsect2" title="gtk_drag_set_icon_stock ()">
957
999
  <a name="gtk-drag-set-icon-stock"></a><h3>gtk_drag_set_icon_stock ()</h3>
958
1000
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_set_icon_stock (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
959
1001
  <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> *stock_id</code></em>,
@@ -967,26 +1009,30 @@ Sets the icon for a given drag from a stock ID.
967
1009
  <tbody>
968
1010
  <tr>
969
1011
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
970
- <td>the context for a drag. (This must be called
971
- with a context for the source side of a drag)</td>
1012
+ <td>the context for a drag. (This must be called
1013
+ with a context for the source side of a drag)
1014
+ </td>
972
1015
  </tr>
973
1016
  <tr>
974
1017
  <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
975
- <td>the ID of the stock icon to use for the drag.</td>
1018
+ <td>the ID of the stock icon to use for the drag.
1019
+ </td>
976
1020
  </tr>
977
1021
  <tr>
978
1022
  <td><p><span class="term"><em class="parameter"><code>hot_x</code></em> :</span></p></td>
979
- <td>the X offset within the icon of the hotspot.</td>
1023
+ <td>the X offset within the icon of the hotspot.
1024
+ </td>
980
1025
  </tr>
981
1026
  <tr>
982
1027
  <td><p><span class="term"><em class="parameter"><code>hot_y</code></em> :</span></p></td>
983
- <td>the Y offset within the icon of the hotspot.</td>
1028
+ <td>the Y offset within the icon of the hotspot.
1029
+ </td>
984
1030
  </tr>
985
1031
  </tbody>
986
1032
  </table></div>
987
1033
  </div>
988
1034
  <hr>
989
- <div class="refsect2">
1035
+ <div class="refsect2" title="gtk_drag_set_icon_name ()">
990
1036
  <a name="gtk-drag-set-icon-name"></a><h3>gtk_drag_set_icon_name ()</h3>
991
1037
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_set_icon_name (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>,
992
1038
  <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> *icon_name</code></em>,
@@ -1004,27 +1050,31 @@ loaded at the symbolic size <span class="type">GTK_ICON_SIZE_DND</span>), thus
1004
1050
  <tbody>
1005
1051
  <tr>
1006
1052
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
1007
- <td>the context for a drag. (This must be called
1008
- with a context for the source side of a drag)</td>
1053
+ <td>the context for a drag. (This must be called
1054
+ with a context for the source side of a drag)
1055
+ </td>
1009
1056
  </tr>
1010
1057
  <tr>
1011
1058
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
1012
- <td>name of icon to use</td>
1059
+ <td>name of icon to use
1060
+ </td>
1013
1061
  </tr>
1014
1062
  <tr>
1015
1063
  <td><p><span class="term"><em class="parameter"><code>hot_x</code></em> :</span></p></td>
1016
- <td>the X offset of the hotspot within the icon</td>
1064
+ <td>the X offset of the hotspot within the icon
1065
+ </td>
1017
1066
  </tr>
1018
1067
  <tr>
1019
1068
  <td><p><span class="term"><em class="parameter"><code>hot_y</code></em> :</span></p></td>
1020
- <td>the Y offset of the hotspot within the icon</td>
1069
+ <td>the Y offset of the hotspot within the icon
1070
+ </td>
1021
1071
  </tr>
1022
1072
  </tbody>
1023
1073
  </table></div>
1024
1074
  <p class="since">Since 2.8</p>
1025
1075
  </div>
1026
1076
  <hr>
1027
- <div class="refsect2">
1077
+ <div class="refsect2" title="gtk_drag_set_icon_default ()">
1028
1078
  <a name="gtk-drag-set-icon-default"></a><h3>gtk_drag_set_icon_default ()</h3>
1029
1079
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_set_icon_default (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragContext"><span class="type">GdkDragContext</span></a> *context</code></em>);</pre>
1030
1080
  <p>
@@ -1035,20 +1085,21 @@ icon.
1035
1085
  <col align="left" valign="top">
1036
1086
  <tbody><tr>
1037
1087
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
1038
- <td>the context for a drag. (This must be called
1039
- with a context for the source side of a drag)</td>
1088
+ <td>the context for a drag. (This must be called
1089
+ with a context for the source side of a drag)
1090
+ </td>
1040
1091
  </tr></tbody>
1041
1092
  </table></div>
1042
1093
  </div>
1043
1094
  <hr>
1044
- <div class="refsect2">
1095
+ <div class="refsect2" title="gtk_drag_set_default_icon ()">
1045
1096
  <a name="gtk-drag-set-default-icon"></a><h3>gtk_drag_set_default_icon ()</h3>
1046
1097
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_set_default_icon (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>,
1047
1098
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
1048
1099
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>,
1049
1100
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> hot_x</code></em>,
1050
1101
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> hot_y</code></em>);</pre>
1051
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1102
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1052
1103
  <h3 class="title">Warning</h3>
1053
1104
  <p><code class="literal">gtk_drag_set_default_icon</code> is deprecated and should not be used in newly-written code. Change the default drag icon via the stock system by
1054
1105
  changing the stock pixbuf for <a class="link" href="gtk-Stock-Items.html#GTK-STOCK-DND:CAPS" title="GTK_STOCK_DND"><span class="type">GTK_STOCK_DND</span></a> instead.</p>
@@ -1062,30 +1113,34 @@ arguments, and will release them when they are no longer needed.
1062
1113
  <tbody>
1063
1114
  <tr>
1064
1115
  <td><p><span class="term"><em class="parameter"><code>colormap</code></em> :</span></p></td>
1065
- <td>the colormap of the icon</td>
1116
+ <td>the colormap of the icon
1117
+ </td>
1066
1118
  </tr>
1067
1119
  <tr>
1068
1120
  <td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
1069
- <td>the image data for the icon</td>
1121
+ <td>the image data for the icon
1122
+ </td>
1070
1123
  </tr>
1071
1124
  <tr>
1072
1125
  <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
1073
- <td>the transparency mask for an image, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1126
+ <td> the transparency mask for an image, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1074
1127
  </td>
1075
1128
  </tr>
1076
1129
  <tr>
1077
1130
  <td><p><span class="term"><em class="parameter"><code>hot_x</code></em> :</span></p></td>
1078
- <td>The X offset within <em class="parameter"><code>widget</code></em> of the hotspot.</td>
1131
+ <td>The X offset within <em class="parameter"><code>widget</code></em> of the hotspot.
1132
+ </td>
1079
1133
  </tr>
1080
1134
  <tr>
1081
1135
  <td><p><span class="term"><em class="parameter"><code>hot_y</code></em> :</span></p></td>
1082
- <td>The Y offset within <em class="parameter"><code>widget</code></em> of the hotspot.</td>
1136
+ <td>The Y offset within <em class="parameter"><code>widget</code></em> of the hotspot.
1137
+ </td>
1083
1138
  </tr>
1084
1139
  </tbody>
1085
1140
  </table></div>
1086
1141
  </div>
1087
1142
  <hr>
1088
- <div class="refsect2">
1143
+ <div class="refsect2" title="gtk_drag_check_threshold ()">
1089
1144
  <a name="gtk-drag-check-threshold"></a><h3>gtk_drag_check_threshold ()</h3>
1090
1145
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_drag_check_threshold (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1091
1146
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> start_x</code></em>,
@@ -1107,34 +1162,38 @@ should trigger the beginning of a drag-and-drop operation.
1107
1162
  </tr>
1108
1163
  <tr>
1109
1164
  <td><p><span class="term"><em class="parameter"><code>start_x</code></em> :</span></p></td>
1110
- <td>X coordinate of start of drag</td>
1165
+ <td>X coordinate of start of drag
1166
+ </td>
1111
1167
  </tr>
1112
1168
  <tr>
1113
1169
  <td><p><span class="term"><em class="parameter"><code>start_y</code></em> :</span></p></td>
1114
- <td>Y coordinate of start of drag</td>
1170
+ <td>Y coordinate of start of drag
1171
+ </td>
1115
1172
  </tr>
1116
1173
  <tr>
1117
1174
  <td><p><span class="term"><em class="parameter"><code>current_x</code></em> :</span></p></td>
1118
- <td>current X coordinate</td>
1175
+ <td>current X coordinate
1176
+ </td>
1119
1177
  </tr>
1120
1178
  <tr>
1121
1179
  <td><p><span class="term"><em class="parameter"><code>current_y</code></em> :</span></p></td>
1122
- <td>current Y coordinate</td>
1180
+ <td>current Y coordinate
1181
+ </td>
1123
1182
  </tr>
1124
1183
  <tr>
1125
1184
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1126
- <td>
1127
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the drag threshold has been passed.</td>
1185
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the drag threshold has been passed.
1186
+ </td>
1128
1187
  </tr>
1129
1188
  </tbody>
1130
1189
  </table></div>
1131
1190
  </div>
1132
1191
  <hr>
1133
- <div class="refsect2">
1192
+ <div class="refsect2" title="gtk_drag_source_set ()">
1134
1193
  <a name="gtk-drag-source-set"></a><h3>gtk_drag_source_set ()</h3>
1135
1194
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_set (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1136
1195
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkModifierType"><span class="type">GdkModifierType</span></a> start_button_mask</code></em>,
1137
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
1196
+ <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
1138
1197
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_targets</code></em>,
1139
1198
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
1140
1199
  <p>
@@ -1151,12 +1210,13 @@ clicks and drags on the widget. The widget must have a window.
1151
1210
  </tr>
1152
1211
  <tr>
1153
1212
  <td><p><span class="term"><em class="parameter"><code>start_button_mask</code></em> :</span></p></td>
1154
- <td>the bitmask of buttons that can start the drag</td>
1213
+ <td>the bitmask of buttons that can start the drag
1214
+ </td>
1155
1215
  </tr>
1156
1216
  <tr>
1157
1217
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
1158
- <td>the table of targets that the drag will support,
1159
- may be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_targets]</span>
1218
+ <td> the table of targets that the drag will support,
1219
+ may be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_targets]</span>
1160
1220
  </td>
1161
1221
  </tr>
1162
1222
  <tr>
@@ -1166,13 +1226,14 @@ may be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macro
1166
1226
  </tr>
1167
1227
  <tr>
1168
1228
  <td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
1169
- <td>the bitmask of possible actions for a drag from this widget</td>
1229
+ <td>the bitmask of possible actions for a drag from this widget
1230
+ </td>
1170
1231
  </tr>
1171
1232
  </tbody>
1172
1233
  </table></div>
1173
1234
  </div>
1174
1235
  <hr>
1175
- <div class="refsect2">
1236
+ <div class="refsect2" title="gtk_drag_source_set_icon ()">
1176
1237
  <a name="gtk-drag-source-set-icon"></a><h3>gtk_drag_source_set_icon ()</h3>
1177
1238
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_set_icon (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1178
1239
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>,
@@ -1194,22 +1255,24 @@ Use <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-source-set-icon-pixbuf
1194
1255
  </tr>
1195
1256
  <tr>
1196
1257
  <td><p><span class="term"><em class="parameter"><code>colormap</code></em> :</span></p></td>
1197
- <td>the colormap of the icon</td>
1258
+ <td>the colormap of the icon
1259
+ </td>
1198
1260
  </tr>
1199
1261
  <tr>
1200
1262
  <td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
1201
- <td>the image data for the icon</td>
1263
+ <td>the image data for the icon
1264
+ </td>
1202
1265
  </tr>
1203
1266
  <tr>
1204
1267
  <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
1205
- <td>the transparency mask for an image. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1268
+ <td> the transparency mask for an image. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1206
1269
  </td>
1207
1270
  </tr>
1208
1271
  </tbody>
1209
1272
  </table></div>
1210
1273
  </div>
1211
1274
  <hr>
1212
- <div class="refsect2">
1275
+ <div class="refsect2" title="gtk_drag_source_set_icon_pixbuf ()">
1213
1276
  <a name="gtk-drag-source-set-icon-pixbuf"></a><h3>gtk_drag_source_set_icon_pixbuf ()</h3>
1214
1277
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_set_icon_pixbuf (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1215
1278
  <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>);</pre>
@@ -1228,13 +1291,14 @@ release it when it is no longer needed.
1228
1291
  </tr>
1229
1292
  <tr>
1230
1293
  <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
1231
- <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> for the drag icon</td>
1294
+ <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> for the drag icon
1295
+ </td>
1232
1296
  </tr>
1233
1297
  </tbody>
1234
1298
  </table></div>
1235
1299
  </div>
1236
1300
  <hr>
1237
- <div class="refsect2">
1301
+ <div class="refsect2" title="gtk_drag_source_set_icon_stock ()">
1238
1302
  <a name="gtk-drag-source-set-icon-stock"></a><h3>gtk_drag_source_set_icon_stock ()</h3>
1239
1303
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_set_icon_stock (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1240
1304
  <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> *stock_id</code></em>);</pre>
@@ -1252,13 +1316,14 @@ to a stock icon.
1252
1316
  </tr>
1253
1317
  <tr>
1254
1318
  <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
1255
- <td>the ID of the stock icon to use</td>
1319
+ <td>the ID of the stock icon to use
1320
+ </td>
1256
1321
  </tr>
1257
1322
  </tbody>
1258
1323
  </table></div>
1259
1324
  </div>
1260
1325
  <hr>
1261
- <div class="refsect2">
1326
+ <div class="refsect2" title="gtk_drag_source_set_icon_name ()">
1262
1327
  <a name="gtk-drag-source-set-icon-name"></a><h3>gtk_drag_source_set_icon_name ()</h3>
1263
1328
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_set_icon_name (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1264
1329
  <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> *icon_name</code></em>);</pre>
@@ -1276,14 +1341,15 @@ to a themed icon. See the docs for <a class="link" href="GtkIconTheme.html" titl
1276
1341
  </tr>
1277
1342
  <tr>
1278
1343
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
1279
- <td>name of icon to use</td>
1344
+ <td>name of icon to use
1345
+ </td>
1280
1346
  </tr>
1281
1347
  </tbody>
1282
1348
  </table></div>
1283
1349
  <p class="since">Since 2.8</p>
1284
1350
  </div>
1285
1351
  <hr>
1286
- <div class="refsect2">
1352
+ <div class="refsect2" title="gtk_drag_source_unset ()">
1287
1353
  <a name="gtk-drag-source-unset"></a><h3>gtk_drag_source_unset ()</h3>
1288
1354
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_unset (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1289
1355
  <p>
@@ -1299,10 +1365,10 @@ Undoes the effects of <a class="link" href="gtk-Drag-and-Drop.html#gtk-drag-sour
1299
1365
  </table></div>
1300
1366
  </div>
1301
1367
  <hr>
1302
- <div class="refsect2">
1368
+ <div class="refsect2" title="gtk_drag_source_set_target_list ()">
1303
1369
  <a name="gtk-drag-source-set-target-list"></a><h3>gtk_drag_source_set_target_list ()</h3>
1304
1370
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_set_target_list (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
1305
- <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);</pre>
1371
+ <em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>);</pre>
1306
1372
  <p>
1307
1373
  Changes the target types that this widget offers for drag-and-drop.
1308
1374
  The widget must first be made into a drag source with
@@ -1313,11 +1379,12 @@ The widget must first be made into a drag source with
1313
1379
  <tbody>
1314
1380
  <tr>
1315
1381
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1316
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag source</td>
1382
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's a drag source
1383
+ </td>
1317
1384
  </tr>
1318
1385
  <tr>
1319
1386
  <td><p><span class="term"><em class="parameter"><code>target_list</code></em> :</span></p></td>
1320
- <td>list of draggable targets, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for none. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1387
+ <td> list of draggable targets, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for none. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1321
1388
  </td>
1322
1389
  </tr>
1323
1390
  </tbody>
@@ -1325,9 +1392,9 @@ The widget must first be made into a drag source with
1325
1392
  <p class="since">Since 2.4</p>
1326
1393
  </div>
1327
1394
  <hr>
1328
- <div class="refsect2">
1395
+ <div class="refsect2" title="gtk_drag_source_get_target_list ()">
1329
1396
  <a name="gtk-drag-source-get-target-list"></a><h3>gtk_drag_source_get_target_list ()</h3>
1330
- <pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * gtk_drag_source_get_target_list (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1397
+ <pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="returnvalue">GtkTargetList</span></a>* gtk_drag_source_get_target_list (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1331
1398
  <p>
1332
1399
  Gets the list of targets this widget can provide for
1333
1400
  drag-and-drop.
@@ -1342,7 +1409,8 @@ drag-and-drop.
1342
1409
  </tr>
1343
1410
  <tr>
1344
1411
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1345
- <td>the <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</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 none. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1412
+ <td> the <a class="link" href="gtk-Selections.html#GtkTargetList" title="GtkTargetList"><span class="type">GtkTargetList</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 none
1413
+
1346
1414
  </td>
1347
1415
  </tr>
1348
1416
  </tbody>
@@ -1350,7 +1418,7 @@ drag-and-drop.
1350
1418
  <p class="since">Since 2.4</p>
1351
1419
  </div>
1352
1420
  <hr>
1353
- <div class="refsect2">
1421
+ <div class="refsect2" title="gtk_drag_source_add_text_targets ()">
1354
1422
  <a name="gtk-drag-source-add-text-targets"></a><h3>gtk_drag_source_add_text_targets ()</h3>
1355
1423
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_add_text_targets (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1356
1424
  <p>
@@ -1364,13 +1432,14 @@ use <a class="link" href="gtk-Selections.html#gtk-target-list-add-text-targets"
1364
1432
  <col align="left" valign="top">
1365
1433
  <tbody><tr>
1366
1434
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1367
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's is a drag source</td>
1435
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's is a drag source
1436
+ </td>
1368
1437
  </tr></tbody>
1369
1438
  </table></div>
1370
1439
  <p class="since">Since 2.6</p>
1371
1440
  </div>
1372
1441
  <hr>
1373
- <div class="refsect2">
1442
+ <div class="refsect2" title="gtk_drag_source_add_image_targets ()">
1374
1443
  <a name="gtk-drag-source-add-image-targets"></a><h3>gtk_drag_source_add_image_targets ()</h3>
1375
1444
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_add_image_targets (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1376
1445
  <p>
@@ -1384,13 +1453,14 @@ use <a class="link" href="gtk-Selections.html#gtk-target-list-add-image-targets"
1384
1453
  <col align="left" valign="top">
1385
1454
  <tbody><tr>
1386
1455
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1387
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's is a drag source</td>
1456
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's is a drag source
1457
+ </td>
1388
1458
  </tr></tbody>
1389
1459
  </table></div>
1390
1460
  <p class="since">Since 2.6</p>
1391
1461
  </div>
1392
1462
  <hr>
1393
- <div class="refsect2">
1463
+ <div class="refsect2" title="gtk_drag_source_add_uri_targets ()">
1394
1464
  <a name="gtk-drag-source-add-uri-targets"></a><h3>gtk_drag_source_add_uri_targets ()</h3>
1395
1465
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_drag_source_add_uri_targets (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1396
1466
  <p>
@@ -1404,7 +1474,8 @@ use <a class="link" href="gtk-Selections.html#gtk-target-list-add-uri-targets" t
1404
1474
  <col align="left" valign="top">
1405
1475
  <tbody><tr>
1406
1476
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1407
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's is a drag source</td>
1477
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that's is a drag source
1478
+ </td>
1408
1479
  </tr></tbody>
1409
1480
  </table></div>
1410
1481
  <p class="since">Since 2.6</p>
@@ -1413,6 +1484,6 @@ use <a class="link" href="gtk-Selections.html#gtk-target-list-add-uri-targets" t
1413
1484
  </div>
1414
1485
  <div class="footer">
1415
1486
  <hr>
1416
- Generated by GTK-Doc V1.16.1</div>
1487
+ Generated by GTK-Doc V1.15</div>
1417
1488
  </body>
1418
1489
  </html>