gtk2 1.0.3-x86-mingw32 → 1.1.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (756) hide show
  1. data/Rakefile +66 -1
  2. data/ext/gtk2/extconf.rb +0 -96
  3. data/ext/gtk2/global.h +274 -13
  4. data/ext/gtk2/gtk2.def +5 -3
  5. data/ext/gtk2/init.c +263 -19
  6. data/ext/gtk2/rbgdk.c +245 -89
  7. data/ext/gtk2/rbgdk.h +32 -6
  8. data/ext/gtk2/rbgdkatom.c +38 -28
  9. data/ext/gtk2/rbgdkcairo.c +32 -42
  10. data/ext/gtk2/rbgdkcolor.c +52 -42
  11. data/ext/gtk2/rbgdkcolormap.c +42 -37
  12. data/ext/gtk2/rbgdkconst.c +23 -13
  13. data/ext/gtk2/rbgdkconversions.h +19 -6
  14. data/ext/gtk2/rbgdkcursor.c +37 -25
  15. data/ext/gtk2/rbgdkdevice.c +77 -67
  16. data/ext/gtk2/rbgdkdisplay.c +158 -150
  17. data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
  18. data/ext/gtk2/rbgdkdragcontext.c +121 -70
  19. data/ext/gtk2/rbgdkdraw.c +252 -160
  20. data/ext/gtk2/rbgdkevent.c +30 -20
  21. data/ext/gtk2/rbgdkgc.c +123 -116
  22. data/ext/gtk2/rbgdkgeometry.c +77 -68
  23. data/ext/gtk2/rbgdkimage.c +58 -47
  24. data/ext/gtk2/rbgdkinput.c +33 -26
  25. data/ext/gtk2/rbgdkkeymap.c +38 -27
  26. data/ext/gtk2/rbgdkkeyval.c +44 -32
  27. data/ext/gtk2/rbgdkpango.c +66 -39
  28. data/ext/gtk2/rbgdkpangorenderer.c +63 -35
  29. data/ext/gtk2/rbgdkpixbuf.c +36 -25
  30. data/ext/gtk2/rbgdkpixmap.c +65 -49
  31. data/ext/gtk2/rbgdkproperty.c +66 -60
  32. data/ext/gtk2/rbgdkrectangle.c +54 -46
  33. data/ext/gtk2/rbgdkregion.c +144 -79
  34. data/ext/gtk2/rbgdkrgb.c +74 -58
  35. data/ext/gtk2/rbgdkscreen.c +103 -97
  36. data/ext/gtk2/rbgdkselection.c +49 -39
  37. data/ext/gtk2/rbgdkthreads.c +32 -19
  38. data/ext/gtk2/rbgdktimecoord.c +60 -38
  39. data/ext/gtk2/rbgdkvisual.c +79 -71
  40. data/ext/gtk2/rbgdkwindow.c +284 -305
  41. data/ext/gtk2/rbgdkwindowattr.c +69 -58
  42. data/ext/gtk2/rbgdkx11.c +41 -28
  43. data/ext/gtk2/rbgtk.c +498 -19
  44. data/ext/gtk2/rbgtk.h +35 -20
  45. data/ext/gtk2/rbgtkaboutdialog.c +33 -80
  46. data/ext/gtk2/rbgtkaccelerator.c +36 -23
  47. data/ext/gtk2/rbgtkaccelgroup.c +50 -40
  48. data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
  49. data/ext/gtk2/rbgtkaccelkey.c +40 -28
  50. data/ext/gtk2/rbgtkaccellabel.c +30 -18
  51. data/ext/gtk2/rbgtkaccelmap.c +55 -42
  52. data/ext/gtk2/rbgtkaccessible.c +25 -14
  53. data/ext/gtk2/rbgtkaction.c +68 -68
  54. data/ext/gtk2/rbgtkactiongroup.c +317 -195
  55. data/ext/gtk2/rbgtkadjustment.c +33 -46
  56. data/ext/gtk2/rbgtkalignment.c +36 -24
  57. data/ext/gtk2/rbgtkallocation.c +53 -42
  58. data/ext/gtk2/rbgtkarrow.c +34 -22
  59. data/ext/gtk2/rbgtkaspectframe.c +32 -20
  60. data/ext/gtk2/rbgtkassistant.c +81 -61
  61. data/ext/gtk2/rbgtkbbox.c +32 -20
  62. data/ext/gtk2/rbgtkbin.c +28 -16
  63. data/ext/gtk2/rbgtkbindingset.c +42 -35
  64. data/ext/gtk2/rbgtkborder.c +34 -23
  65. data/ext/gtk2/rbgtkbox.c +40 -29
  66. data/ext/gtk2/rbgtkbuildable.c +57 -45
  67. data/ext/gtk2/rbgtkbuilder.c +53 -38
  68. data/ext/gtk2/rbgtkbutton.c +41 -55
  69. data/ext/gtk2/rbgtkcalendar.c +51 -40
  70. data/ext/gtk2/rbgtkcelleditable.c +28 -17
  71. data/ext/gtk2/rbgtkcelllayout.c +41 -30
  72. data/ext/gtk2/rbgtkcellrenderer.c +43 -32
  73. data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
  74. data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
  75. data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
  76. data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
  77. data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
  78. data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
  79. data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
  80. data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
  81. data/ext/gtk2/rbgtkcellview.c +34 -33
  82. data/ext/gtk2/rbgtkcheckbutton.c +28 -16
  83. data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
  84. data/ext/gtk2/rbgtkclipboard.c +123 -77
  85. data/ext/gtk2/rbgtkcolorbutton.c +26 -31
  86. data/ext/gtk2/rbgtkcolorsel.c +109 -55
  87. data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
  88. data/ext/gtk2/rbgtkcombo.c +43 -32
  89. data/ext/gtk2/rbgtkcombobox.c +44 -83
  90. data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
  91. data/ext/gtk2/rbgtkconst.c +23 -13
  92. data/ext/gtk2/rbgtkcontainer.c +153 -100
  93. data/ext/gtk2/rbgtkconversions.h +19 -6
  94. data/ext/gtk2/rbgtkcurve.c +46 -36
  95. data/ext/gtk2/rbgtkdialog.c +104 -70
  96. data/ext/gtk2/rbgtkdrag.c +173 -121
  97. data/ext/gtk2/rbgtkdrawingarea.c +28 -16
  98. data/ext/gtk2/rbgtkeditable.c +63 -51
  99. data/ext/gtk2/rbgtkentry.c +48 -85
  100. data/ext/gtk2/rbgtkentrycompletion.c +42 -55
  101. data/ext/gtk2/rbgtkeventbox.c +28 -16
  102. data/ext/gtk2/rbgtkexpander.c +26 -35
  103. data/ext/gtk2/rbgtkfilechooser.c +87 -143
  104. data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
  105. data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
  106. data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
  107. data/ext/gtk2/rbgtkfilefilter.c +45 -35
  108. data/ext/gtk2/rbgtkfilesel.c +54 -43
  109. data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
  110. data/ext/gtk2/rbgtkfixed.c +36 -25
  111. data/ext/gtk2/rbgtkfontbutton.c +26 -37
  112. data/ext/gtk2/rbgtkfontselection.c +27 -15
  113. data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
  114. data/ext/gtk2/rbgtkframe.c +39 -28
  115. data/ext/gtk2/rbgtkgamma.c +32 -20
  116. data/ext/gtk2/rbgtkhandlebox.c +31 -19
  117. data/ext/gtk2/rbgtkhbbox.c +28 -16
  118. data/ext/gtk2/rbgtkhbox.c +29 -17
  119. data/ext/gtk2/rbgtkhpaned.c +28 -16
  120. data/ext/gtk2/rbgtkhruler.c +28 -16
  121. data/ext/gtk2/rbgtkhscale.c +28 -16
  122. data/ext/gtk2/rbgtkhscrollbar.c +28 -16
  123. data/ext/gtk2/rbgtkhseparator.c +28 -16
  124. data/ext/gtk2/rbgtkiconfactory.c +35 -23
  125. data/ext/gtk2/rbgtkiconinfo.c +42 -30
  126. data/ext/gtk2/rbgtkiconset.c +31 -19
  127. data/ext/gtk2/rbgtkiconsize.c +38 -25
  128. data/ext/gtk2/rbgtkiconsource.c +62 -50
  129. data/ext/gtk2/rbgtkicontheme.c +95 -95
  130. data/ext/gtk2/rbgtkiconview.c +87 -121
  131. data/ext/gtk2/rbgtkimage.c +31 -40
  132. data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
  133. data/ext/gtk2/rbgtkimcontext.c +46 -34
  134. data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
  135. data/ext/gtk2/rbgtkimmulticontext.c +26 -14
  136. data/ext/gtk2/rbgtkinputdialog.c +28 -16
  137. data/ext/gtk2/rbgtkinvisible.c +24 -18
  138. data/ext/gtk2/rbgtkitem.c +32 -20
  139. data/ext/gtk2/rbgtkitemfactory.c +65 -57
  140. data/ext/gtk2/rbgtklabel.c +46 -57
  141. data/ext/gtk2/rbgtklayout.c +40 -29
  142. data/ext/gtk2/rbgtklinkbutton.c +26 -15
  143. data/ext/gtk2/rbgtkliststore.c +145 -102
  144. data/ext/gtk2/rbgtkmacros.h +19 -6
  145. data/ext/gtk2/rbgtkmenu.c +47 -59
  146. data/ext/gtk2/rbgtkmenubar.c +30 -30
  147. data/ext/gtk2/rbgtkmenuitem.c +34 -41
  148. data/ext/gtk2/rbgtkmenushell.c +43 -42
  149. data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
  150. data/ext/gtk2/rbgtkmessagedialog.c +31 -25
  151. data/ext/gtk2/rbgtkmisc.c +33 -22
  152. data/ext/gtk2/rbgtknotebook.c +98 -134
  153. data/ext/gtk2/rbgtkobject.c +46 -81
  154. data/ext/gtk2/rbgtkoptionmenu.c +35 -23
  155. data/ext/gtk2/rbgtkpagesetup.c +64 -54
  156. data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
  157. data/ext/gtk2/rbgtkpaned.c +46 -36
  158. data/ext/gtk2/rbgtkpapersize.c +60 -54
  159. data/ext/gtk2/rbgtkplug.c +32 -20
  160. data/ext/gtk2/rbgtkprintcontext.c +43 -35
  161. data/ext/gtk2/rbgtkprinter.c +36 -37
  162. data/ext/gtk2/rbgtkprintjob.c +36 -37
  163. data/ext/gtk2/rbgtkprintoperation.c +44 -33
  164. data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
  165. data/ext/gtk2/rbgtkprintsettings.c +248 -192
  166. data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
  167. data/ext/gtk2/rbgtkprogress.c +23 -13
  168. data/ext/gtk2/rbgtkprogressbar.c +47 -46
  169. data/ext/gtk2/rbgtkradioaction.c +84 -39
  170. data/ext/gtk2/rbgtkradiobutton.c +33 -21
  171. data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
  172. data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
  173. data/ext/gtk2/rbgtkrange.c +36 -56
  174. data/ext/gtk2/rbgtkrc.c +61 -49
  175. data/ext/gtk2/rbgtkrcstyle.c +59 -48
  176. data/ext/gtk2/rbgtkrecentaction.c +28 -16
  177. data/ext/gtk2/rbgtkrecentchooser.c +58 -92
  178. data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
  179. data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
  180. data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
  181. data/ext/gtk2/rbgtkrecentdata.c +47 -36
  182. data/ext/gtk2/rbgtkrecentfilter.c +55 -46
  183. data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
  184. data/ext/gtk2/rbgtkrecentinfo.c +66 -56
  185. data/ext/gtk2/rbgtkrecentmanager.c +47 -43
  186. data/ext/gtk2/rbgtkruler.c +35 -30
  187. data/ext/gtk2/rbgtkscale.c +29 -18
  188. data/ext/gtk2/rbgtkscalebutton.c +27 -27
  189. data/ext/gtk2/rbgtkscrollbar.c +23 -13
  190. data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
  191. data/ext/gtk2/rbgtkselection.c +87 -67
  192. data/ext/gtk2/rbgtkselectiondata.c +74 -65
  193. data/ext/gtk2/rbgtkseparator.c +23 -13
  194. data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
  195. data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
  196. data/ext/gtk2/rbgtksettings.c +123 -103
  197. data/ext/gtk2/rbgtksizegroup.c +33 -30
  198. data/ext/gtk2/rbgtksocket.c +32 -20
  199. data/ext/gtk2/rbgtkspinbutton.c +48 -38
  200. data/ext/gtk2/rbgtkspinner.c +27 -14
  201. data/ext/gtk2/rbgtkstatusbar.c +36 -31
  202. data/ext/gtk2/rbgtkstatusicon.c +31 -44
  203. data/ext/gtk2/rbgtkstock.c +137 -125
  204. data/ext/gtk2/rbgtkstyle.c +177 -161
  205. data/ext/gtk2/rbgtktable.c +58 -47
  206. data/ext/gtk2/rbgtktargetlist.c +56 -36
  207. data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
  208. data/ext/gtk2/rbgtktextappearance.c +44 -34
  209. data/ext/gtk2/rbgtktextattributes.c +54 -42
  210. data/ext/gtk2/rbgtktextbuffer.c +188 -191
  211. data/ext/gtk2/rbgtktextchild.c +29 -18
  212. data/ext/gtk2/rbgtktextiter.c +153 -145
  213. data/ext/gtk2/rbgtktextmark.c +33 -30
  214. data/ext/gtk2/rbgtktexttag.c +34 -22
  215. data/ext/gtk2/rbgtktexttagtable.c +36 -25
  216. data/ext/gtk2/rbgtktextview.c +85 -73
  217. data/ext/gtk2/rbgtktoggleaction.c +27 -22
  218. data/ext/gtk2/rbgtktogglebutton.c +37 -26
  219. data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
  220. data/ext/gtk2/rbgtktoolbar.c +66 -69
  221. data/ext/gtk2/rbgtktoolbutton.c +27 -40
  222. data/ext/gtk2/rbgtktoolitem.c +60 -62
  223. data/ext/gtk2/rbgtktooltip.c +36 -25
  224. data/ext/gtk2/rbgtktooltips.c +42 -34
  225. data/ext/gtk2/rbgtktreedragdest.c +20 -11
  226. data/ext/gtk2/rbgtktreedragsource.c +20 -11
  227. data/ext/gtk2/rbgtktreeiter.c +58 -47
  228. data/ext/gtk2/rbgtktreemodel.c +83 -65
  229. data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
  230. data/ext/gtk2/rbgtktreemodelsort.c +38 -27
  231. data/ext/gtk2/rbgtktreepath.c +55 -44
  232. data/ext/gtk2/rbgtktreerowreference.c +60 -42
  233. data/ext/gtk2/rbgtktreeselection.c +61 -52
  234. data/ext/gtk2/rbgtktreesortable.c +52 -42
  235. data/ext/gtk2/rbgtktreestore.c +88 -67
  236. data/ext/gtk2/rbgtktreeview.c +157 -185
  237. data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
  238. data/ext/gtk2/rbgtkuimanager.c +61 -61
  239. data/ext/gtk2/rbgtkvbbox.c +28 -16
  240. data/ext/gtk2/rbgtkvbox.c +29 -17
  241. data/ext/gtk2/rbgtkviewport.c +28 -16
  242. data/ext/gtk2/rbgtkvolumebutton.c +28 -16
  243. data/ext/gtk2/rbgtkvpaned.c +28 -16
  244. data/ext/gtk2/rbgtkvruler.c +28 -16
  245. data/ext/gtk2/rbgtkvscale.c +28 -16
  246. data/ext/gtk2/rbgtkvscrollbar.c +28 -16
  247. data/ext/gtk2/rbgtkvseparator.c +28 -16
  248. data/ext/gtk2/rbgtkwidget.c +284 -296
  249. data/ext/gtk2/rbgtkwindow.c +156 -214
  250. data/ext/gtk2/rbgtkwindowgroup.c +35 -24
  251. data/lib/1.8/gtk2.so +0 -0
  252. data/lib/1.9/gtk2.so +0 -0
  253. data/sample/testgtk/labels.rb +1 -0
  254. data/sample/testgtk/testgtk.rb +2 -0
  255. data/vendor/local/bin/gtk-builder-convert +29 -2
  256. data/vendor/local/bin/gtk-demo.exe +0 -0
  257. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  258. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  259. data/vendor/local/bin/libgailutil-18.dll +0 -0
  260. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  261. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  262. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  263. data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
  264. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
  265. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
  266. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
  267. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
  268. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  269. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
  270. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
  271. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
  272. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
  273. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
  274. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
  275. data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
  276. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
  277. data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
  278. data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
  279. data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
  280. data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
  281. data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
  282. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
  283. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
  284. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
  285. data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
  286. data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
  287. data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
  288. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
  289. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
  290. data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
  291. data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
  292. data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
  293. data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
  294. data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
  295. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
  296. data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
  297. data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
  298. data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
  299. data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
  300. data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
  301. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
  302. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
  303. data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
  304. data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
  305. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
  306. data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
  307. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
  308. data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
  309. data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
  310. data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
  311. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
  312. data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
  313. data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
  314. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
  315. data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
  316. data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
  317. data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
  318. data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
  319. data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
  320. data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
  321. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
  322. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  323. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
  324. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
  325. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
  326. data/vendor/local/lib/gailutil.lib +0 -0
  327. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  328. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  329. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  330. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  331. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  332. data/vendor/local/lib/libgailutil.dll.a +0 -0
  333. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  334. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  335. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  336. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  337. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  338. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  339. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  340. data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
  341. data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
  342. data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
  343. data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
  344. data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
  345. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  346. data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
  347. data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
  348. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  349. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  350. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  351. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  352. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
  353. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
  354. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  355. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  356. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  357. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  358. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
  359. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
  360. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
  361. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
  362. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
  363. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
  364. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
  365. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
  366. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
  367. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
  368. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
  369. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
  370. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
  371. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
  372. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
  373. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
  374. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
  375. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
  376. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
  377. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
  378. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
  379. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
  380. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
  381. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
  382. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
  383. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
  384. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
  385. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
  386. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
  387. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
  388. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
  389. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
  390. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
  391. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
  392. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
  393. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
  394. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
  395. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
  396. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
  397. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
  398. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
  399. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
  400. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
  401. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
  402. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
  403. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
  404. data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
  405. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
  406. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
  407. data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
  408. data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
  409. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
  410. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
  411. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
  412. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
  413. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
  414. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
  415. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
  416. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
  417. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
  418. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
  419. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
  420. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
  421. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
  422. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
  423. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
  424. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
  425. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
  426. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
  427. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
  428. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
  429. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
  430. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
  431. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
  432. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
  433. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
  434. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
  435. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
  436. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
  437. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
  438. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
  439. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
  440. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
  441. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
  442. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
  443. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
  444. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
  445. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
  446. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
  447. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
  448. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
  449. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
  450. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
  451. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
  452. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
  453. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
  454. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
  455. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
  456. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
  457. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
  458. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
  459. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
  460. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
  461. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
  462. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
  463. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
  464. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
  465. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
  466. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
  467. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
  468. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
  469. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
  470. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
  471. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
  472. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
  473. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
  474. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
  475. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
  476. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
  477. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
  478. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
  479. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
  480. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
  481. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
  482. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
  483. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
  484. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
  485. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
  486. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
  487. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
  488. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
  489. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
  490. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
  491. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
  492. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
  493. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
  494. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
  495. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
  496. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
  497. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
  498. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
  499. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
  500. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
  501. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
  502. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
  503. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
  504. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
  505. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
  506. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
  507. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
  508. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
  509. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
  510. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
  511. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
  512. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
  513. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
  514. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
  515. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
  516. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
  517. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
  518. data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
  519. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
  520. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
  521. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
  522. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
  523. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
  524. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
  525. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
  526. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
  527. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
  528. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
  529. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
  530. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
  531. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
  532. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
  533. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
  534. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
  535. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
  536. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
  537. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
  538. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
  539. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
  540. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
  541. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
  542. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
  543. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
  544. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
  545. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
  546. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
  547. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
  548. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
  549. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
  550. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
  552. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
  553. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
  554. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
  555. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
  556. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
  557. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
  558. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
  559. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
  560. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
  561. data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
  562. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
  563. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
  564. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
  565. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
  566. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
  567. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
  568. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
  569. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
  570. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
  571. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
  572. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
  573. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
  574. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
  575. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
  576. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
  577. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
  578. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
  579. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
  580. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
  581. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
  582. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
  583. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
  584. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
  585. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
  586. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
  587. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
  588. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
  589. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
  590. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
  591. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
  592. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
  593. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
  594. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
  595. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
  596. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
  597. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
  598. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
  599. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
  600. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
  601. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
  602. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
  603. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
  604. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
  605. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
  606. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
  607. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
  608. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
  609. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
  610. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
  611. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
  612. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
  613. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
  614. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
  615. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
  616. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
  617. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
  618. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
  619. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
  620. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
  621. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
  622. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
  623. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
  624. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
  625. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
  626. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
  627. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
  628. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
  629. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
  630. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
  631. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
  632. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
  633. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
  634. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
  635. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
  636. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
  637. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
  638. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
  639. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
  640. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
  641. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
  642. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
  643. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
  644. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
  645. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
  646. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
  647. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
  648. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
  649. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
  650. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
  651. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
  652. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
  653. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
  654. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
  655. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
  656. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
  657. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
  658. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
  659. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
  660. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
  661. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
  662. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
  663. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
  664. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
  665. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
  666. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
  667. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
  668. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
  669. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
  670. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
  671. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
  672. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
  673. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
  674. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
  675. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
  676. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
  677. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
  678. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
  679. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
  680. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
  681. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
  682. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
  683. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
  684. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
  685. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
  686. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
  687. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
  688. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
  689. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
  690. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
  691. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
  692. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
  693. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
  694. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
  695. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
  696. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
  697. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
  698. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
  699. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
  700. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
  701. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
  702. data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
  703. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
  704. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
  705. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
  706. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
  707. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
  708. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
  709. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
  710. data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
  711. data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
  712. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
  713. data/vendor/local/share/icons/hicolor/index.theme +1662 -0
  714. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
  715. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  716. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  717. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  718. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  719. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  720. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  721. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  722. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
  723. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  724. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  725. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  726. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
  727. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  728. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  729. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
  730. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  731. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  732. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  733. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  734. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  735. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  736. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  737. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
  738. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
  739. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  740. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  741. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  742. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  743. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  744. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  745. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  746. data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
  747. data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
  748. metadata +29 -31
  749. data/ChangeLog +0 -6902
  750. data/ext/gtk2/rbgtkmain.c +0 -493
  751. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
  752. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  753. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  754. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  755. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  756. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
@@ -4,11 +4,11 @@
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
5
  <title>Clipboards</title>
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
- <link rel="home" href="index.html" title="GTK+ Reference Manual">
7
+ <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
8
8
  <link rel="up" href="gtkbase.html" title="Part II. GTK+ Core Reference">
9
9
  <link rel="prev" href="gtk-Accelerator-Maps.html" title="Accelerator Maps">
10
10
  <link rel="next" href="gtk-Drag-and-Drop.html" title="Drag and Drop">
11
- <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.17 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -17,7 +17,7 @@
17
17
  <td><a accesskey="p" href="gtk-Accelerator-Maps.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
18
  <td><a accesskey="u" href="gtkbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
19
  <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
- <th width="100%" align="center">GTK+ Reference Manual</th>
20
+ <th width="100%" align="center">GTK+ 2 Reference Manual</th>
21
21
  <td><a accesskey="n" href="gtk-Drag-and-Drop.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
22
  </tr>
23
23
  <tr><td colspan="5" class="shortcuts">
@@ -30,7 +30,7 @@
30
30
  <a href="#gtk-Clipboards.signals" class="shortcut">Signals</a>
31
31
  </td></tr>
32
32
  </table>
33
- <div class="refentry" title="Clipboards">
33
+ <div class="refentry">
34
34
  <a name="gtk-Clipboards"></a><div class="titlepage"></div>
35
35
  <div class="refnamediv"><table width="100%"><tr>
36
36
  <td valign="top">
@@ -39,27 +39,27 @@
39
39
  </td>
40
40
  <td valign="top" align="right"></td>
41
41
  </tr></table></div>
42
- <div class="refsynopsisdiv" title="Synopsis">
42
+ <div class="refsynopsisdiv">
43
43
  <a name="gtk-Clipboards.synopsis"></a><h2>Synopsis</h2>
44
44
  <a name="GtkClipboard"></a><pre class="synopsis">
45
45
  #include &lt;gtk/gtk.h&gt;
46
46
 
47
47
  <a class="link" href="gtk-Clipboards.html#GtkClipboard-struct" title="GtkClipboard">GtkClipboard</a>;
48
48
  <span class="returnvalue">void</span> (<a class="link" href="gtk-Clipboards.html#GtkClipboardReceivedFunc" title="GtkClipboardReceivedFunc ()">*GtkClipboardReceivedFunc</a>) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
49
- <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkSelectionData" title="GtkSelectionData"><span class="type">GtkSelectionData</span></a> *selection_data</code></em>,
49
+ <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkSelectionData"><span class="type">GtkSelectionData</span></a> *selection_data</code></em>,
50
50
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
51
51
  <span class="returnvalue">void</span> (<a class="link" href="gtk-Clipboards.html#GtkClipboardTextReceivedFunc" title="GtkClipboardTextReceivedFunc ()">*GtkClipboardTextReceivedFunc</a>) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
52
52
  <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> *text</code></em>,
53
53
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
54
54
  <span class="returnvalue">void</span> (<a class="link" href="gtk-Clipboards.html#GtkClipboardImageReceivedFunc" title="GtkClipboardImageReceivedFunc ()">*GtkClipboardImageReceivedFunc</a>) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
55
- <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>,
55
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>,
56
56
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
57
57
  <span class="returnvalue">void</span> (<a class="link" href="gtk-Clipboards.html#GtkClipboardTargetsReceivedFunc" title="GtkClipboardTargetsReceivedFunc ()">*GtkClipboardTargetsReceivedFunc</a>) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
58
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> *atoms</code></em>,
58
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> *atoms</code></em>,
59
59
  <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_atoms</code></em>,
60
60
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
61
61
  <span class="returnvalue">void</span> (<a class="link" href="gtk-Clipboards.html#GtkClipboardRichTextReceivedFunc" title="GtkClipboardRichTextReceivedFunc ()">*GtkClipboardRichTextReceivedFunc</a>) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
62
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
62
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
63
63
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *text</code></em>,
64
64
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
65
65
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
@@ -67,23 +67,23 @@
67
67
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **uris</code></em>,
68
68
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
69
69
  <span class="returnvalue">void</span> (<a class="link" href="gtk-Clipboards.html#GtkClipboardGetFunc" title="GtkClipboardGetFunc ()">*GtkClipboardGetFunc</a>) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
70
- <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkSelectionData" title="GtkSelectionData"><span class="type">GtkSelectionData</span></a> *selection_data</code></em>,
70
+ <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkSelectionData"><span class="type">GtkSelectionData</span></a> *selection_data</code></em>,
71
71
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> info</code></em>,
72
72
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data_or_owner</code></em>);
73
73
  <span class="returnvalue">void</span> (<a class="link" href="gtk-Clipboards.html#GtkClipboardClearFunc" title="GtkClipboardClearFunc ()">*GtkClipboardClearFunc</a>) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
74
74
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data_or_owner</code></em>);
75
- <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="returnvalue">GtkClipboard</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-get" title="gtk_clipboard_get ()">gtk_clipboard_get</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> selection</code></em>);
76
- <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="returnvalue">GtkClipboard</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-get-for-display" title="gtk_clipboard_get_for_display ()">gtk_clipboard_get_for_display</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html"><span class="type">GdkDisplay</span></a> *display</code></em>,
77
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> selection</code></em>);
78
- <a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html"><span class="returnvalue">GdkDisplay</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-get-display" title="gtk_clipboard_get_display ()">gtk_clipboard_get_display</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
75
+ <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="returnvalue">GtkClipboard</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-get" title="gtk_clipboard_get ()">gtk_clipboard_get</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> selection</code></em>);
76
+ <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="returnvalue">GtkClipboard</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-get-for-display" title="gtk_clipboard_get_for_display ()">gtk_clipboard_get_for_display</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkDisplay.html"><span class="type">GdkDisplay</span></a> *display</code></em>,
77
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> selection</code></em>);
78
+ <a href="http://library.gnome.org/devel/gdk3/GdkDisplay.html"><span class="returnvalue">GdkDisplay</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-get-display" title="gtk_clipboard_get_display ()">gtk_clipboard_get_display</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
79
79
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-data" title="gtk_clipboard_set_with_data ()">gtk_clipboard_set_with_data</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
80
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
80
+ <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>,
81
81
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_targets</code></em>,
82
82
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardGetFunc" title="GtkClipboardGetFunc ()"><span class="type">GtkClipboardGetFunc</span></a> get_func</code></em>,
83
83
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardClearFunc" title="GtkClipboardClearFunc ()"><span class="type">GtkClipboardClearFunc</span></a> clear_func</code></em>,
84
84
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
85
85
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-owner" title="gtk_clipboard_set_with_owner ()">gtk_clipboard_set_with_owner</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
86
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
86
+ <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>,
87
87
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_targets</code></em>,
88
88
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardGetFunc" title="GtkClipboardGetFunc ()"><span class="type">GtkClipboardGetFunc</span></a> get_func</code></em>,
89
89
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardClearFunc" title="GtkClipboardClearFunc ()"><span class="type">GtkClipboardClearFunc</span></a> clear_func</code></em>,
@@ -94,9 +94,9 @@
94
94
  <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> *text</code></em>,
95
95
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);
96
96
  <span class="returnvalue">void</span> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-image" title="gtk_clipboard_set_image ()">gtk_clipboard_set_image</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
97
- <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>);
97
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
98
98
  <span class="returnvalue">void</span> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-contents" title="gtk_clipboard_request_contents ()">gtk_clipboard_request_contents</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
99
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>,
99
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>,
100
100
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardReceivedFunc" title="GtkClipboardReceivedFunc ()"><span class="type">GtkClipboardReceivedFunc</span></a> callback</code></em>,
101
101
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
102
102
  <span class="returnvalue">void</span> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-text" title="gtk_clipboard_request_text ()">gtk_clipboard_request_text</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
@@ -115,13 +115,13 @@
115
115
  <span class="returnvalue">void</span> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-uris" title="gtk_clipboard_request_uris ()">gtk_clipboard_request_uris</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
116
116
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardURIReceivedFunc" title="GtkClipboardURIReceivedFunc ()"><span class="type">GtkClipboardURIReceivedFunc</span></a> callback</code></em>,
117
117
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
118
- <a class="link" href="GtkWidget.html#GtkSelectionData" title="GtkSelectionData"><span class="returnvalue">GtkSelectionData</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-for-contents" title="gtk_clipboard_wait_for_contents ()">gtk_clipboard_wait_for_contents</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
119
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>);
118
+ <a class="link" href="GtkWidget.html#GtkSelectionData"><span class="returnvalue">GtkSelectionData</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-for-contents" title="gtk_clipboard_wait_for_contents ()">gtk_clipboard_wait_for_contents</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
119
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>);
120
120
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-for-text" title="gtk_clipboard_wait_for_text ()">gtk_clipboard_wait_for_text</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
121
- <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-for-image" title="gtk_clipboard_wait_for_image ()">gtk_clipboard_wait_for_image</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
121
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-for-image" title="gtk_clipboard_wait_for_image ()">gtk_clipboard_wait_for_image</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
122
122
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-for-rich-text" title="gtk_clipboard_wait_for_rich_text ()">gtk_clipboard_wait_for_rich_text</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
123
123
  <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
124
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> *format</code></em>,
124
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> *format</code></em>,
125
125
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);
126
126
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-for-uris" title="gtk_clipboard_wait_for_uris ()">gtk_clipboard_wait_for_uris</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
127
127
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-is-text-available" title="gtk_clipboard_wait_is_text_available ()">gtk_clipboard_wait_is_text_available</a>
@@ -134,38 +134,38 @@
134
134
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-is-uris-available" title="gtk_clipboard_wait_is_uris_available ()">gtk_clipboard_wait_is_uris_available</a>
135
135
  (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
136
136
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-for-targets" title="gtk_clipboard_wait_for_targets ()">gtk_clipboard_wait_for_targets</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
137
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> **targets</code></em>,
137
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> **targets</code></em>,
138
138
  <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>);
139
139
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-wait-is-target-available" title="gtk_clipboard_wait_is_target_available ()">gtk_clipboard_wait_is_target_available</a>
140
140
  (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
141
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>);
141
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>);
142
142
  <span class="returnvalue">void</span> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-can-store" title="gtk_clipboard_set_can_store ()">gtk_clipboard_set_can_store</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
143
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
143
+ <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>,
144
144
  <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>);
145
145
  <span class="returnvalue">void</span> <a class="link" href="gtk-Clipboards.html#gtk-clipboard-store" title="gtk_clipboard_store ()">gtk_clipboard_store</a> (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
146
146
  </pre>
147
147
  </div>
148
- <div class="refsect1" title="Object Hierarchy">
148
+ <div class="refsect1">
149
149
  <a name="gtk-Clipboards.object-hierarchy"></a><h2>Object Hierarchy</h2>
150
150
  <pre class="synopsis">
151
151
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
152
152
  +----GtkClipboard
153
153
  </pre>
154
154
  </div>
155
- <div class="refsect1" title="Signals">
155
+ <div class="refsect1">
156
156
  <a name="gtk-Clipboards.signals"></a><h2>Signals</h2>
157
157
  <pre class="synopsis">
158
- "<a class="link" href="gtk-Clipboards.html#GtkClipboard-owner-change" title='The "owner-change" signal'>owner-change</a>" : Run First
158
+ "<a class="link" href="gtk-Clipboards.html#GtkClipboard-owner-change" title='The "owner-change" signal'>owner-change</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
159
159
  </pre>
160
160
  </div>
161
- <div class="refsect1" title="Description">
161
+ <div class="refsect1">
162
162
  <a name="gtk-Clipboards.description"></a><h2>Description</h2>
163
163
  <p>
164
164
  The <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object represents a clipboard of data shared
165
165
  between different processes or between different widgets in
166
166
  the same process. Each clipboard is identified by a name encoded as a
167
- <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a>. (Conversion to and from strings can be done with
168
- <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#gdk-atom-intern"><code class="function">gdk_atom_intern()</code></a> and <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#gdk-atom-name"><code class="function">gdk_atom_name()</code></a>.) The default clipboard
167
+ <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a>. (Conversion to and from strings can be done with
168
+ <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#gdk-atom-intern"><code class="function">gdk_atom_intern()</code></a> and <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#gdk-atom-name"><code class="function">gdk_atom_name()</code></a>.) The default clipboard
169
169
  corresponds to the "CLIPBOARD" atom; another commonly used clipboard
170
170
  is the "PRIMARY" clipboard, which, in X, traditionally contains
171
171
  the currently selected text.
@@ -224,19 +224,19 @@
224
224
  form for representing strings in GTK+.)
225
225
  </p>
226
226
  </div>
227
- <div class="refsect1" title="Details">
227
+ <div class="refsect1">
228
228
  <a name="gtk-Clipboards.details"></a><h2>Details</h2>
229
- <div class="refsect2" title="GtkClipboard">
229
+ <div class="refsect2">
230
230
  <a name="GtkClipboard-struct"></a><h3>GtkClipboard</h3>
231
231
  <pre class="programlisting">typedef struct _GtkClipboard GtkClipboard;</pre>
232
232
  <p>
233
233
  </p>
234
234
  </div>
235
235
  <hr>
236
- <div class="refsect2" title="GtkClipboardReceivedFunc ()">
236
+ <div class="refsect2">
237
237
  <a name="GtkClipboardReceivedFunc"></a><h3>GtkClipboardReceivedFunc ()</h3>
238
238
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkClipboardReceivedFunc) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
239
- <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkSelectionData" title="GtkSelectionData"><span class="type">GtkSelectionData</span></a> *selection_data</code></em>,
239
+ <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkSelectionData"><span class="type">GtkSelectionData</span></a> *selection_data</code></em>,
240
240
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
241
241
  <p>
242
242
  A function to be called when the results of <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-contents" title="gtk_clipboard_request_contents ()"><code class="function">gtk_clipboard_request_contents()</code></a>
@@ -252,21 +252,19 @@
252
252
  </tr>
253
253
  <tr>
254
254
  <td><p><span class="term"><em class="parameter"><code>selection_data</code></em> :</span></p></td>
255
- <td>a <a class="link" href="GtkWidget.html#GtkSelectionData" title="GtkSelectionData"><span class="type">GtkSelectionData</span></a> containing the data was received.
256
- If retrieving the data failed, then then length field
257
- of <em class="parameter"><code>selection_data</code></em> will be negative.
258
- </td>
255
+ <td>a <a class="link" href="GtkWidget.html#GtkSelectionData"><span class="type">GtkSelectionData</span></a> containing the data was received.
256
+ If retrieving the data failed, then then length field
257
+ of <em class="parameter"><code>selection_data</code></em> will be negative.</td>
259
258
  </tr>
260
259
  <tr>
261
260
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
262
- <td>the <em class="parameter"><code>user_data</code></em> supplied to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-contents" title="gtk_clipboard_request_contents ()"><code class="function">gtk_clipboard_request_contents()</code></a>.
263
- </td>
261
+ <td>the <em class="parameter"><code>user_data</code></em> supplied to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-contents" title="gtk_clipboard_request_contents ()"><code class="function">gtk_clipboard_request_contents()</code></a>.</td>
264
262
  </tr>
265
263
  </tbody>
266
264
  </table></div>
267
265
  </div>
268
266
  <hr>
269
- <div class="refsect2" title="GtkClipboardTextReceivedFunc ()">
267
+ <div class="refsect2">
270
268
  <a name="GtkClipboardTextReceivedFunc"></a><h3>GtkClipboardTextReceivedFunc ()</h3>
271
269
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkClipboardTextReceivedFunc) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
272
270
  <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> *text</code></em>,
@@ -286,22 +284,20 @@
286
284
  <tr>
287
285
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
288
286
  <td>the text received, as a UTF-8 encoded string, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
289
- if retrieving the data failed.
290
- </td>
287
+ if retrieving the data failed.</td>
291
288
  </tr>
292
289
  <tr>
293
290
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
294
- <td>the <em class="parameter"><code>user_data</code></em> supplied to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-text" title="gtk_clipboard_request_text ()"><code class="function">gtk_clipboard_request_text()</code></a>.
295
- </td>
291
+ <td>the <em class="parameter"><code>user_data</code></em> supplied to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-text" title="gtk_clipboard_request_text ()"><code class="function">gtk_clipboard_request_text()</code></a>.</td>
296
292
  </tr>
297
293
  </tbody>
298
294
  </table></div>
299
295
  </div>
300
296
  <hr>
301
- <div class="refsect2" title="GtkClipboardImageReceivedFunc ()">
297
+ <div class="refsect2">
302
298
  <a name="GtkClipboardImageReceivedFunc"></a><h3>GtkClipboardImageReceivedFunc ()</h3>
303
299
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkClipboardImageReceivedFunc) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
304
- <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>,
300
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>,
305
301
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
306
302
  <p>
307
303
  A function to be called when the results of <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-image" title="gtk_clipboard_request_image ()"><code class="function">gtk_clipboard_request_image()</code></a>
@@ -317,23 +313,21 @@
317
313
  </tr>
318
314
  <tr>
319
315
  <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
320
- <td>the received image
321
- </td>
316
+ <td>the received image</td>
322
317
  </tr>
323
318
  <tr>
324
319
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
325
- <td>the <em class="parameter"><code>user_data</code></em> supplied to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-image" title="gtk_clipboard_request_image ()"><code class="function">gtk_clipboard_request_image()</code></a>.
326
- </td>
320
+ <td>the <em class="parameter"><code>user_data</code></em> supplied to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-image" title="gtk_clipboard_request_image ()"><code class="function">gtk_clipboard_request_image()</code></a>.</td>
327
321
  </tr>
328
322
  </tbody>
329
323
  </table></div>
330
324
  <p class="since">Since 2.6</p>
331
325
  </div>
332
326
  <hr>
333
- <div class="refsect2" title="GtkClipboardTargetsReceivedFunc ()">
327
+ <div class="refsect2">
334
328
  <a name="GtkClipboardTargetsReceivedFunc"></a><h3>GtkClipboardTargetsReceivedFunc ()</h3>
335
329
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkClipboardTargetsReceivedFunc) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
336
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> *atoms</code></em>,
330
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> *atoms</code></em>,
337
331
  <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_atoms</code></em>,
338
332
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
339
333
  <p>
@@ -350,99 +344,46 @@
350
344
  </tr>
351
345
  <tr>
352
346
  <td><p><span class="term"><em class="parameter"><code>atoms</code></em> :</span></p></td>
353
- <td>the supported targets, as array of <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
354
- if retrieving the data failed.
355
- </td>
347
+ <td>the supported targets, as array of <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
348
+ if retrieving the data failed.</td>
356
349
  </tr>
357
350
  <tr>
358
351
  <td><p><span class="term"><em class="parameter"><code>n_atoms</code></em> :</span></p></td>
359
- <td>the length of the <em class="parameter"><code>atoms</code></em> array.
360
- </td>
352
+ <td>the length of the <em class="parameter"><code>atoms</code></em> array.</td>
361
353
  </tr>
362
354
  <tr>
363
355
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
364
- <td>the <em class="parameter"><code>user_data</code></em> supplied to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-targets" title="gtk_clipboard_request_targets ()"><code class="function">gtk_clipboard_request_targets()</code></a>.
365
- </td>
356
+ <td>the <em class="parameter"><code>user_data</code></em> supplied to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-request-targets" title="gtk_clipboard_request_targets ()"><code class="function">gtk_clipboard_request_targets()</code></a>.</td>
366
357
  </tr>
367
358
  </tbody>
368
359
  </table></div>
369
360
  <p class="since">Since 2.4</p>
370
361
  </div>
371
362
  <hr>
372
- <div class="refsect2" title="GtkClipboardRichTextReceivedFunc ()">
363
+ <div class="refsect2">
373
364
  <a name="GtkClipboardRichTextReceivedFunc"></a><h3>GtkClipboardRichTextReceivedFunc ()</h3>
374
365
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkClipboardRichTextReceivedFunc) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
375
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
366
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
376
367
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *text</code></em>,
377
368
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
378
369
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
379
370
  <p>
380
371
  </p>
381
- <div class="variablelist"><table border="0">
382
- <col align="left" valign="top">
383
- <tbody>
384
- <tr>
385
- <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
386
- <td>
387
- </td>
388
- </tr>
389
- <tr>
390
- <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
391
- <td>
392
- </td>
393
- </tr>
394
- <tr>
395
- <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
396
- <td>
397
- </td>
398
- </tr>
399
- <tr>
400
- <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
401
- <td>
402
- </td>
403
- </tr>
404
- <tr>
405
- <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
406
- <td>
407
- </td>
408
- </tr>
409
- </tbody>
410
- </table></div>
411
372
  </div>
412
373
  <hr>
413
- <div class="refsect2" title="GtkClipboardURIReceivedFunc ()">
374
+ <div class="refsect2">
414
375
  <a name="GtkClipboardURIReceivedFunc"></a><h3>GtkClipboardURIReceivedFunc ()</h3>
415
376
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkClipboardURIReceivedFunc) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
416
377
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **uris</code></em>,
417
378
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
418
379
  <p>
419
380
  </p>
420
- <div class="variablelist"><table border="0">
421
- <col align="left" valign="top">
422
- <tbody>
423
- <tr>
424
- <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
425
- <td>
426
- </td>
427
- </tr>
428
- <tr>
429
- <td><p><span class="term"><em class="parameter"><code>uris</code></em> :</span></p></td>
430
- <td>
431
- </td>
432
- </tr>
433
- <tr>
434
- <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
435
- <td>
436
- </td>
437
- </tr>
438
- </tbody>
439
- </table></div>
440
381
  </div>
441
382
  <hr>
442
- <div class="refsect2" title="GtkClipboardGetFunc ()">
383
+ <div class="refsect2">
443
384
  <a name="GtkClipboardGetFunc"></a><h3>GtkClipboardGetFunc ()</h3>
444
385
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkClipboardGetFunc) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
445
- <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkSelectionData" title="GtkSelectionData"><span class="type">GtkSelectionData</span></a> *selection_data</code></em>,
386
+ <em class="parameter"><code><a class="link" href="GtkWidget.html#GtkSelectionData"><span class="type">GtkSelectionData</span></a> *selection_data</code></em>,
446
387
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> info</code></em>,
447
388
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data_or_owner</code></em>);</pre>
448
389
  <p>
@@ -465,28 +406,26 @@ will be informed that the attempt to get the data failed.
465
406
  </tr>
466
407
  <tr>
467
408
  <td><p><span class="term"><em class="parameter"><code>selection_data</code></em> :</span></p></td>
468
- <td>a <a class="link" href="GtkWidget.html#GtkSelectionData" title="GtkSelectionData"><span class="type">GtkSelectionData</span></a> argument in which the requested
469
- data should be stored.
470
- </td>
409
+ <td>a <a class="link" href="GtkWidget.html#GtkSelectionData"><span class="type">GtkSelectionData</span></a> argument in which the requested
410
+ data should be stored.</td>
471
411
  </tr>
472
412
  <tr>
473
413
  <td><p><span class="term"><em class="parameter"><code>info</code></em> :</span></p></td>
474
414
  <td>the info field corresponding to the requested
475
- target from the <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> array passed to
476
- <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-data" title="gtk_clipboard_set_with_data ()"><code class="function">gtk_clipboard_set_with_data()</code></a> or <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-owner" title="gtk_clipboard_set_with_owner ()"><code class="function">gtk_clipboard_set_with_owner()</code></a>.
477
- </td>
415
+ target from the <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="struct GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> array passed to
416
+ <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-data" title="gtk_clipboard_set_with_data ()"><code class="function">gtk_clipboard_set_with_data()</code></a> or <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-owner" title="gtk_clipboard_set_with_owner ()"><code class="function">gtk_clipboard_set_with_owner()</code></a>.</td>
478
417
  </tr>
479
418
  <tr>
480
419
  <td><p><span class="term"><em class="parameter"><code>user_data_or_owner</code></em> :</span></p></td>
481
420
  <td>the <em class="parameter"><code>user_data</code></em> argument passed to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-data" title="gtk_clipboard_set_with_data ()"><code class="function">gtk_clipboard_set_with_data()</code></a>, or
482
- the <em class="parameter"><code>owner</code></em> argument passed to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-owner" title="gtk_clipboard_set_with_owner ()"><code class="function">gtk_clipboard_set_with_owner()</code></a>
421
+ the <em class="parameter"><code>owner</code></em> argument passed to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-owner" title="gtk_clipboard_set_with_owner ()"><code class="function">gtk_clipboard_set_with_owner()</code></a>
483
422
  </td>
484
423
  </tr>
485
424
  </tbody>
486
425
  </table></div>
487
426
  </div>
488
427
  <hr>
489
- <div class="refsect2" title="GtkClipboardClearFunc ()">
428
+ <div class="refsect2">
490
429
  <a name="GtkClipboardClearFunc"></a><h3>GtkClipboardClearFunc ()</h3>
491
430
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkClipboardClearFunc) (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
492
431
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data_or_owner</code></em>);</pre>
@@ -506,16 +445,16 @@ will not be used again.
506
445
  <tr>
507
446
  <td><p><span class="term"><em class="parameter"><code>user_data_or_owner</code></em> :</span></p></td>
508
447
  <td>the <em class="parameter"><code>user_data</code></em> argument passed to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-data" title="gtk_clipboard_set_with_data ()"><code class="function">gtk_clipboard_set_with_data()</code></a>, or
509
- the <em class="parameter"><code>owner</code></em> argument passed to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-owner" title="gtk_clipboard_set_with_owner ()"><code class="function">gtk_clipboard_set_with_owner()</code></a>
448
+ the <em class="parameter"><code>owner</code></em> argument passed to <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-owner" title="gtk_clipboard_set_with_owner ()"><code class="function">gtk_clipboard_set_with_owner()</code></a>
510
449
  </td>
511
450
  </tr>
512
451
  </tbody>
513
452
  </table></div>
514
453
  </div>
515
454
  <hr>
516
- <div class="refsect2" title="gtk_clipboard_get ()">
455
+ <div class="refsect2">
517
456
  <a name="gtk-clipboard-get"></a><h3>gtk_clipboard_get ()</h3>
518
- <pre class="programlisting"><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="returnvalue">GtkClipboard</span></a> * gtk_clipboard_get (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> selection</code></em>);</pre>
457
+ <pre class="programlisting"><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="returnvalue">GtkClipboard</span></a> * gtk_clipboard_get (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> selection</code></em>);</pre>
519
458
  <p>
520
459
  Returns the clipboard object for the given selection.
521
460
  See <a class="link" href="gtk-Clipboards.html#gtk-clipboard-get-for-display" title="gtk_clipboard_get_for_display ()"><code class="function">gtk_clipboard_get_for_display()</code></a> for complete details.
@@ -525,44 +464,43 @@ See <a class="link" href="gtk-Clipboards.html#gtk-clipboard-get-for-display" tit
525
464
  <tbody>
526
465
  <tr>
527
466
  <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
528
- <td>a <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> which identifies the clipboard to use
529
- </td>
467
+ <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> which identifies the clipboard to use</td>
530
468
  </tr>
531
469
  <tr>
532
470
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
533
- <td> the appropriate clipboard object. If no clipboard
534
- already exists, a new one will be created. Once a clipboard
535
- object has been created, it is persistent and, since it is
536
- owned by GTK+, must not be freed or unreffed. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
471
+ <td>the appropriate clipboard object. If no clipboard
472
+ already exists, a new one will be created. Once a clipboard
473
+ object has been created, it is persistent and, since it is
474
+ owned by GTK+, must not be freed or unreffed. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
537
475
  </td>
538
476
  </tr>
539
477
  </tbody>
540
478
  </table></div>
541
479
  </div>
542
480
  <hr>
543
- <div class="refsect2" title="gtk_clipboard_get_for_display ()">
481
+ <div class="refsect2">
544
482
  <a name="gtk-clipboard-get-for-display"></a><h3>gtk_clipboard_get_for_display ()</h3>
545
- <pre class="programlisting"><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="returnvalue">GtkClipboard</span></a> * gtk_clipboard_get_for_display (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html"><span class="type">GdkDisplay</span></a> *display</code></em>,
546
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> selection</code></em>);</pre>
483
+ <pre class="programlisting"><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="returnvalue">GtkClipboard</span></a> * gtk_clipboard_get_for_display (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkDisplay.html"><span class="type">GdkDisplay</span></a> *display</code></em>,
484
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> selection</code></em>);</pre>
547
485
  <p>
548
486
  Returns the clipboard object for the given selection.
549
487
  Cut/copy/paste menu items and keyboard shortcuts should use
550
- the default clipboard, returned by passing <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Selections.html#GDK-SELECTION-CLIPBOARD:CAPS"><code class="literal">GDK_SELECTION_CLIPBOARD</code></a> for <em class="parameter"><code>selection</code></em>.
551
- (<a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GDK-NONE:CAPS"><code class="literal">GDK_NONE</code></a> is supported as a synonym for GDK_SELECTION_CLIPBOARD
488
+ the default clipboard, returned by passing <a href="http://library.gnome.org/devel/gdk3/gdk-Selections.html#GDK-SELECTION-CLIPBOARD:CAPS"><code class="literal">GDK_SELECTION_CLIPBOARD</code></a> for <em class="parameter"><code>selection</code></em>.
489
+ (<a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GDK-NONE:CAPS"><code class="literal">GDK_NONE</code></a> is supported as a synonym for GDK_SELECTION_CLIPBOARD
552
490
  for backwards compatibility reasons.)
553
491
  The currently-selected object or text should be provided on the clipboard
554
- identified by <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Selections.html#GDK-SELECTION-PRIMARY:CAPS"><span class="type">GDK_SELECTION_PRIMARY</span></a>. Cut/copy/paste menu items
555
- conceptually copy the contents of the <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Selections.html#GDK-SELECTION-PRIMARY:CAPS"><span class="type">GDK_SELECTION_PRIMARY</span></a> clipboard
492
+ identified by <a href="http://library.gnome.org/devel/gdk3/gdk-Selections.html#GDK-SELECTION-PRIMARY:CAPS"><span class="type">GDK_SELECTION_PRIMARY</span></a>. Cut/copy/paste menu items
493
+ conceptually copy the contents of the <a href="http://library.gnome.org/devel/gdk3/gdk-Selections.html#GDK-SELECTION-PRIMARY:CAPS"><span class="type">GDK_SELECTION_PRIMARY</span></a> clipboard
556
494
  to the default clipboard, i.e. they copy the selection to what the
557
495
  user sees as the clipboard.
558
496
  </p>
559
497
  <p>
560
- (Passing <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GDK-NONE:CAPS"><span class="type">GDK_NONE</span></a> is the same as using <code class="literal">gdk_atom_intern
498
+ (Passing <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GDK-NONE:CAPS"><span class="type">GDK_NONE</span></a> is the same as using <code class="literal">gdk_atom_intern
561
499
  ("CLIPBOARD", FALSE)</code>. See <a class="ulink" href="http://www.freedesktop.org/Standards/clipboards-spec" target="_top">
562
500
  http://www.freedesktop.org/Standards/clipboards-spec</a>
563
501
  for a detailed discussion of the "CLIPBOARD" vs. "PRIMARY"
564
502
  selections under the X window system. On Win32 the
565
- <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Selections.html#GDK-SELECTION-PRIMARY:CAPS"><span class="type">GDK_SELECTION_PRIMARY</span></a> clipboard is essentially ignored.)
503
+ <a href="http://library.gnome.org/devel/gdk3/gdk-Selections.html#GDK-SELECTION-PRIMARY:CAPS"><span class="type">GDK_SELECTION_PRIMARY</span></a> clipboard is essentially ignored.)
566
504
  </p>
567
505
  <p>
568
506
  It's possible to have arbitrary named clipboards; if you do invent
@@ -577,23 +515,21 @@ clipboard, you might call it "_FOO_SPECIAL_CLIPBOARD".
577
515
  <tbody>
578
516
  <tr>
579
517
  <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
580
- <td>the display for which the clipboard is to be retrieved or created
581
- </td>
518
+ <td>the display for which the clipboard is to be retrieved or created</td>
582
519
  </tr>
583
520
  <tr>
584
521
  <td><p><span class="term"><em class="parameter"><code>selection</code></em> :</span></p></td>
585
- <td>a <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> which identifies the clipboard
586
- to use.
587
- </td>
522
+ <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> which identifies the clipboard
523
+ to use.</td>
588
524
  </tr>
589
525
  <tr>
590
526
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
591
- <td> the appropriate clipboard object. If no
592
- clipboard already exists, a new one will
593
- be created. Once a clipboard object has
594
- been created, it is persistent and, since
595
- it is owned by GTK+, must not be freed or
596
- unrefd. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
527
+ <td>the appropriate clipboard object. If no
528
+ clipboard already exists, a new one will
529
+ be created. Once a clipboard object has
530
+ been created, it is persistent and, since
531
+ it is owned by GTK+, must not be freed or
532
+ unrefd. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
597
533
  </td>
598
534
  </tr>
599
535
  </tbody>
@@ -601,11 +537,11 @@ clipboard, you might call it "_FOO_SPECIAL_CLIPBOARD".
601
537
  <p class="since">Since 2.2</p>
602
538
  </div>
603
539
  <hr>
604
- <div class="refsect2" title="gtk_clipboard_get_display ()">
540
+ <div class="refsect2">
605
541
  <a name="gtk-clipboard-get-display"></a><h3>gtk_clipboard_get_display ()</h3>
606
- <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html"><span class="returnvalue">GdkDisplay</span></a> * gtk_clipboard_get_display (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
542
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/GdkDisplay.html"><span class="returnvalue">GdkDisplay</span></a> * gtk_clipboard_get_display (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
607
543
  <p>
608
- Gets the <a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html"><span class="type">GdkDisplay</span></a> associated with <em class="parameter"><code>clipboard</code></em>
544
+ Gets the <a href="http://library.gnome.org/devel/gdk3/GdkDisplay.html"><span class="type">GdkDisplay</span></a> associated with <em class="parameter"><code>clipboard</code></em>
609
545
  </p>
610
546
  <div class="variablelist"><table border="0">
611
547
  <col align="left" valign="top">
@@ -617,8 +553,7 @@ Gets the <a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html"><
617
553
  </tr>
618
554
  <tr>
619
555
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
620
- <td> the <a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html"><span class="type">GdkDisplay</span></a> associated with <em class="parameter"><code>clipboard</code></em>
621
-
556
+ <td>the <a href="http://library.gnome.org/devel/gdk3/GdkDisplay.html"><span class="type">GdkDisplay</span></a> associated with <em class="parameter"><code>clipboard</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
622
557
  </td>
623
558
  </tr>
624
559
  </tbody>
@@ -626,10 +561,10 @@ Gets the <a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html"><
626
561
  <p class="since">Since 2.2</p>
627
562
  </div>
628
563
  <hr>
629
- <div class="refsect2" title="gtk_clipboard_set_with_data ()">
564
+ <div class="refsect2">
630
565
  <a name="gtk-clipboard-set-with-data"></a><h3>gtk_clipboard_set_with_data ()</h3>
631
566
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_clipboard_set_with_data (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
632
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
567
+ <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>,
633
568
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_targets</code></em>,
634
569
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardGetFunc" title="GtkClipboardGetFunc ()"><span class="type">GtkClipboardGetFunc</span></a> get_func</code></em>,
635
570
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardClearFunc" title="GtkClipboardClearFunc ()"><span class="type">GtkClipboardClearFunc</span></a> clear_func</code></em>,
@@ -650,8 +585,7 @@ to call to get the actual data when it is requested.
650
585
  <tr>
651
586
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
652
587
  <td>array containing information about the available forms for the
653
- clipboard data
654
- </td>
588
+ clipboard data</td>
655
589
  </tr>
656
590
  <tr>
657
591
  <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
@@ -660,35 +594,32 @@ to call to get the actual data when it is requested.
660
594
  </tr>
661
595
  <tr>
662
596
  <td><p><span class="term"><em class="parameter"><code>get_func</code></em> :</span></p></td>
663
- <td>function to call to get the actual clipboard data
664
- </td>
597
+ <td>function to call to get the actual clipboard data</td>
665
598
  </tr>
666
599
  <tr>
667
600
  <td><p><span class="term"><em class="parameter"><code>clear_func</code></em> :</span></p></td>
668
601
  <td>when the clipboard contents are set again, this function will
669
- be called, and <em class="parameter"><code>get_func</code></em> will not be subsequently called.
670
- </td>
602
+ be called, and <em class="parameter"><code>get_func</code></em> will not be subsequently called.</td>
671
603
  </tr>
672
604
  <tr>
673
605
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
674
- <td>user data to pass to <em class="parameter"><code>get_func</code></em> and <em class="parameter"><code>clear_func</code></em>.
675
- </td>
606
+ <td>user data to pass to <em class="parameter"><code>get_func</code></em> and <em class="parameter"><code>clear_func</code></em>.</td>
676
607
  </tr>
677
608
  <tr>
678
609
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
679
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if setting the clipboard data succeeded. If setting
680
- the clipboard data failed the provided callback functions
681
- will be ignored.
682
- </td>
610
+ <td>
611
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if setting the clipboard data succeeded. If setting
612
+ the clipboard data failed the provided callback functions
613
+ will be ignored.</td>
683
614
  </tr>
684
615
  </tbody>
685
616
  </table></div>
686
617
  </div>
687
618
  <hr>
688
- <div class="refsect2" title="gtk_clipboard_set_with_owner ()">
619
+ <div class="refsect2">
689
620
  <a name="gtk-clipboard-set-with-owner"></a><h3>gtk_clipboard_set_with_owner ()</h3>
690
621
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_clipboard_set_with_owner (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
691
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
622
+ <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>,
692
623
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_targets</code></em>,
693
624
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardGetFunc" title="GtkClipboardGetFunc ()"><span class="type">GtkClipboardGetFunc</span></a> get_func</code></em>,
694
625
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardClearFunc" title="GtkClipboardClearFunc ()"><span class="type">GtkClipboardClearFunc</span></a> clear_func</code></em>,
@@ -714,8 +645,7 @@ in.
714
645
  <tr>
715
646
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
716
647
  <td>array containing information about the available forms for the
717
- clipboard data
718
- </td>
648
+ clipboard data</td>
719
649
  </tr>
720
650
  <tr>
721
651
  <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
@@ -724,33 +654,30 @@ in.
724
654
  </tr>
725
655
  <tr>
726
656
  <td><p><span class="term"><em class="parameter"><code>get_func</code></em> :</span></p></td>
727
- <td>function to call to get the actual clipboard data
728
- </td>
657
+ <td>function to call to get the actual clipboard data</td>
729
658
  </tr>
730
659
  <tr>
731
660
  <td><p><span class="term"><em class="parameter"><code>clear_func</code></em> :</span></p></td>
732
661
  <td>when the clipboard contents are set again, this function will
733
- be called, and <em class="parameter"><code>get_func</code></em> will not be subsequently called.
734
- </td>
662
+ be called, and <em class="parameter"><code>get_func</code></em> will not be subsequently called.</td>
735
663
  </tr>
736
664
  <tr>
737
665
  <td><p><span class="term"><em class="parameter"><code>owner</code></em> :</span></p></td>
738
666
  <td>an object that "owns" the data. This object will be passed
739
- to the callbacks when called.
740
- </td>
667
+ to the callbacks when called.</td>
741
668
  </tr>
742
669
  <tr>
743
670
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
744
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if setting the clipboard data succeeded. If setting
745
- the clipboard data failed the provided callback functions
746
- will be ignored.
747
- </td>
671
+ <td>
672
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if setting the clipboard data succeeded. If setting
673
+ the clipboard data failed the provided callback functions
674
+ will be ignored.</td>
748
675
  </tr>
749
676
  </tbody>
750
677
  </table></div>
751
678
  </div>
752
679
  <hr>
753
- <div class="refsect2" title="gtk_clipboard_get_owner ()">
680
+ <div class="refsect2">
754
681
  <a name="gtk-clipboard-get-owner"></a><h3>gtk_clipboard_get_owner ()</h3>
755
682
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a> * gtk_clipboard_get_owner (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
756
683
  <p>
@@ -769,14 +696,14 @@ by <a class="link" href="gtk-Clipboards.html#gtk-clipboard-set-with-owner" title
769
696
  </tr>
770
697
  <tr>
771
698
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
772
- <td> the owner of the clipboard, if any; otherwise <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
699
+ <td>the owner of the clipboard, if any; 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>
773
700
  </td>
774
701
  </tr>
775
702
  </tbody>
776
703
  </table></div>
777
704
  </div>
778
705
  <hr>
779
- <div class="refsect2" title="gtk_clipboard_clear ()">
706
+ <div class="refsect2">
780
707
  <a name="gtk-clipboard-clear"></a><h3>gtk_clipboard_clear ()</h3>
781
708
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_clear (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
782
709
  <p>
@@ -796,7 +723,7 @@ clipboard may be owned by someone else.
796
723
  </table></div>
797
724
  </div>
798
725
  <hr>
799
- <div class="refsect2" title="gtk_clipboard_set_text ()">
726
+ <div class="refsect2">
800
727
  <a name="gtk-clipboard-set-text"></a><h3>gtk_clipboard_set_text ()</h3>
801
728
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_set_text (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
802
729
  <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> *text</code></em>,
@@ -812,30 +739,27 @@ the requested format.
812
739
  <tbody>
813
740
  <tr>
814
741
  <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
815
- <td>a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object
816
- </td>
742
+ <td>a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object</td>
817
743
  </tr>
818
744
  <tr>
819
745
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
820
- <td>a UTF-8 string.
821
- </td>
746
+ <td>a UTF-8 string.</td>
822
747
  </tr>
823
748
  <tr>
824
749
  <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
825
750
  <td>length of <em class="parameter"><code>text</code></em>, in bytes, or -1, in which case
826
- the length will be determined with <code class="function"><code class="function">strlen()</code></code>.
827
- </td>
751
+ the length will be determined with <code class="function"><code class="function">strlen()</code></code>.</td>
828
752
  </tr>
829
753
  </tbody>
830
754
  </table></div>
831
755
  </div>
832
756
  <hr>
833
- <div class="refsect2" title="gtk_clipboard_set_image ()">
757
+ <div class="refsect2">
834
758
  <a name="gtk-clipboard-set-image"></a><h3>gtk_clipboard_set_image ()</h3>
835
759
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_set_image (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
836
- <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>
760
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
837
761
  <p>
838
- Sets the contents of the clipboard to the given <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>.
762
+ Sets the contents of the clipboard to the given <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>.
839
763
  GTK+ will take responsibility for responding for requests
840
764
  for the image, and for converting the image into the
841
765
  requested format.
@@ -845,12 +769,11 @@ requested format.
845
769
  <tbody>
846
770
  <tr>
847
771
  <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
848
- <td>a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object
849
- </td>
772
+ <td>a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object</td>
850
773
  </tr>
851
774
  <tr>
852
775
  <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
853
- <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
776
+ <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
854
777
  </td>
855
778
  </tr>
856
779
  </tbody>
@@ -858,10 +781,10 @@ requested format.
858
781
  <p class="since">Since 2.6</p>
859
782
  </div>
860
783
  <hr>
861
- <div class="refsect2" title="gtk_clipboard_request_contents ()">
784
+ <div class="refsect2">
862
785
  <a name="gtk-clipboard-request-contents"></a><h3>gtk_clipboard_request_contents ()</h3>
863
786
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_request_contents (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
864
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>,
787
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>,
865
788
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardReceivedFunc" title="GtkClipboardReceivedFunc ()"><span class="type">GtkClipboardReceivedFunc</span></a> callback</code></em>,
866
789
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
867
790
  <p>
@@ -880,16 +803,14 @@ will be called.
880
803
  <tr>
881
804
  <td><p><span class="term"><em class="parameter"><code>target</code></em> :</span></p></td>
882
805
  <td>an atom representing the form into which the clipboard
883
- owner should convert the selection.
884
- </td>
806
+ owner should convert the selection.</td>
885
807
  </tr>
886
808
  <tr>
887
809
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
888
810
  <td>A function to call when the results are received
889
- (or the retrieval fails). If the retrieval fails
890
- the length field of <em class="parameter"><code>selection_data</code></em> will be
891
- negative.
892
- </td>
811
+ (or the retrieval fails). If the retrieval fails
812
+ the length field of <em class="parameter"><code>selection_data</code></em> will be
813
+ negative.</td>
893
814
  </tr>
894
815
  <tr>
895
816
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -900,7 +821,7 @@ will be called.
900
821
  </table></div>
901
822
  </div>
902
823
  <hr>
903
- <div class="refsect2" title="gtk_clipboard_request_text ()">
824
+ <div class="refsect2">
904
825
  <a name="gtk-clipboard-request-text"></a><h3>gtk_clipboard_request_text ()</h3>
905
826
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_request_text (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
906
827
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardTextReceivedFunc" title="GtkClipboardTextReceivedFunc ()"><span class="type">GtkClipboardTextReceivedFunc</span></a> callback</code></em>,
@@ -927,32 +848,30 @@ contents of the clipboard could not be converted into text form.
927
848
  <tr>
928
849
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
929
850
  <td>a function to call when the text is received,
930
- or the retrieval fails. (It will always be called
931
- one way or the other.)
932
- </td>
851
+ or the retrieval fails. (It will always be called
852
+ one way or the other.)</td>
933
853
  </tr>
934
854
  <tr>
935
855
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
936
- <td>user data to pass to <em class="parameter"><code>callback</code></em>.
937
- </td>
856
+ <td>user data to pass to <em class="parameter"><code>callback</code></em>.</td>
938
857
  </tr>
939
858
  </tbody>
940
859
  </table></div>
941
860
  </div>
942
861
  <hr>
943
- <div class="refsect2" title="gtk_clipboard_request_image ()">
862
+ <div class="refsect2">
944
863
  <a name="gtk-clipboard-request-image"></a><h3>gtk_clipboard_request_image ()</h3>
945
864
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_request_image (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
946
865
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardImageReceivedFunc" title="GtkClipboardImageReceivedFunc ()"><span class="type">GtkClipboardImageReceivedFunc</span></a> callback</code></em>,
947
866
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
948
867
  <p>
949
868
  Requests the contents of the clipboard as image. When the image is
950
- later received, it will be converted to a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, and
869
+ later received, it will be converted to a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, and
951
870
  <em class="parameter"><code>callback</code></em> will be called.
952
871
  </p>
953
872
  <p>
954
873
  The <em class="parameter"><code>pixbuf</code></em> parameter to <em class="parameter"><code>callback</code></em> will contain the resulting
955
- <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> if the request succeeded, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if it failed. This
874
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> if the request succeeded, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if it failed. This
956
875
  could happen for various reasons, in particular if the clipboard
957
876
  was empty or if the contents of the clipboard could not be
958
877
  converted into an image.
@@ -968,21 +887,19 @@ converted into an image.
968
887
  <tr>
969
888
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
970
889
  <td>a function to call when the image is received,
971
- or the retrieval fails. (It will always be called
972
- one way or the other.)
973
- </td>
890
+ or the retrieval fails. (It will always be called
891
+ one way or the other.)</td>
974
892
  </tr>
975
893
  <tr>
976
894
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
977
- <td>user data to pass to <em class="parameter"><code>callback</code></em>.
978
- </td>
895
+ <td>user data to pass to <em class="parameter"><code>callback</code></em>.</td>
979
896
  </tr>
980
897
  </tbody>
981
898
  </table></div>
982
899
  <p class="since">Since 2.6</p>
983
900
  </div>
984
901
  <hr>
985
- <div class="refsect2" title="gtk_clipboard_request_targets ()">
902
+ <div class="refsect2">
986
903
  <a name="gtk-clipboard-request-targets"></a><h3>gtk_clipboard_request_targets ()</h3>
987
904
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_request_targets (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
988
905
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardTargetsReceivedFunc" title="GtkClipboardTargetsReceivedFunc ()"><span class="type">GtkClipboardTargetsReceivedFunc</span></a> callback</code></em>,
@@ -1006,21 +923,19 @@ the request succeeded, or <a href="http://library.gnome.org/devel/glib/unstable/
1006
923
  <tr>
1007
924
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1008
925
  <td>a function to call when the targets are received,
1009
- or the retrieval fails. (It will always be called
1010
- one way or the other.)
1011
- </td>
926
+ or the retrieval fails. (It will always be called
927
+ one way or the other.)</td>
1012
928
  </tr>
1013
929
  <tr>
1014
930
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1015
- <td>user data to pass to <em class="parameter"><code>callback</code></em>.
1016
- </td>
931
+ <td>user data to pass to <em class="parameter"><code>callback</code></em>.</td>
1017
932
  </tr>
1018
933
  </tbody>
1019
934
  </table></div>
1020
935
  <p class="since">Since 2.4</p>
1021
936
  </div>
1022
937
  <hr>
1023
- <div class="refsect2" title="gtk_clipboard_request_rich_text ()">
938
+ <div class="refsect2">
1024
939
  <a name="gtk-clipboard-request-rich-text"></a><h3>gtk_clipboard_request_rich_text ()</h3>
1025
940
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_request_rich_text (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
1026
941
  <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
@@ -1053,21 +968,19 @@ contents of the clipboard could not be converted into rich text form.
1053
968
  <tr>
1054
969
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1055
970
  <td>a function to call when the text is received,
1056
- or the retrieval fails. (It will always be called
1057
- one way or the other.)
1058
- </td>
971
+ or the retrieval fails. (It will always be called
972
+ one way or the other.)</td>
1059
973
  </tr>
1060
974
  <tr>
1061
975
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1062
- <td>user data to pass to <em class="parameter"><code>callback</code></em>.
1063
- </td>
976
+ <td>user data to pass to <em class="parameter"><code>callback</code></em>.</td>
1064
977
  </tr>
1065
978
  </tbody>
1066
979
  </table></div>
1067
980
  <p class="since">Since 2.10</p>
1068
981
  </div>
1069
982
  <hr>
1070
- <div class="refsect2" title="gtk_clipboard_request_uris ()">
983
+ <div class="refsect2">
1071
984
  <a name="gtk-clipboard-request-uris"></a><h3>gtk_clipboard_request_uris ()</h3>
1072
985
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_request_uris (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
1073
986
  <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboardURIReceivedFunc" title="GtkClipboardURIReceivedFunc ()"><span class="type">GtkClipboardURIReceivedFunc</span></a> callback</code></em>,
@@ -1093,24 +1006,22 @@ contents of the clipboard could not be converted into URI form.
1093
1006
  <tr>
1094
1007
  <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1095
1008
  <td>a function to call when the URIs are received,
1096
- or the retrieval fails. (It will always be called
1097
- one way or the other.)
1098
- </td>
1009
+ or the retrieval fails. (It will always be called
1010
+ one way or the other.)</td>
1099
1011
  </tr>
1100
1012
  <tr>
1101
1013
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1102
- <td>user data to pass to <em class="parameter"><code>callback</code></em>.
1103
- </td>
1014
+ <td>user data to pass to <em class="parameter"><code>callback</code></em>.</td>
1104
1015
  </tr>
1105
1016
  </tbody>
1106
1017
  </table></div>
1107
1018
  <p class="since">Since 2.14</p>
1108
1019
  </div>
1109
1020
  <hr>
1110
- <div class="refsect2" title="gtk_clipboard_wait_for_contents ()">
1021
+ <div class="refsect2">
1111
1022
  <a name="gtk-clipboard-wait-for-contents"></a><h3>gtk_clipboard_wait_for_contents ()</h3>
1112
- <pre class="programlisting"><a class="link" href="GtkWidget.html#GtkSelectionData" title="GtkSelectionData"><span class="returnvalue">GtkSelectionData</span></a> * gtk_clipboard_wait_for_contents (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
1113
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>);</pre>
1023
+ <pre class="programlisting"><a class="link" href="GtkWidget.html#GtkSelectionData"><span class="returnvalue">GtkSelectionData</span></a> * gtk_clipboard_wait_for_contents (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
1024
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>);</pre>
1114
1025
  <p>
1115
1026
  Requests the contents of the clipboard using the given target.
1116
1027
  This function waits for the data to be received using the main
@@ -1127,22 +1038,20 @@ loop, so events, timeouts, etc, may be dispatched during the wait.
1127
1038
  <tr>
1128
1039
  <td><p><span class="term"><em class="parameter"><code>target</code></em> :</span></p></td>
1129
1040
  <td>an atom representing the form into which the clipboard
1130
- owner should convert the selection.
1131
- </td>
1041
+ owner should convert the selection.</td>
1132
1042
  </tr>
1133
1043
  <tr>
1134
1044
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1135
- <td> a newly-allocated <a class="link" href="GtkWidget.html#GtkSelectionData" title="GtkSelectionData"><span class="type">GtkSelectionData</span></a> object or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1136
- if retrieving the given target failed. If non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>,
1137
- this value must be freed with <a class="link" href="gtk-Selections.html#gtk-selection-data-free" title="gtk_selection_data_free ()"><code class="function">gtk_selection_data_free()</code></a>
1138
- when you are finished with it.
1139
- </td>
1045
+ <td>a newly-allocated <a class="link" href="GtkWidget.html#GtkSelectionData"><span class="type">GtkSelectionData</span></a> object or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1046
+ if retrieving the given target failed. If non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>,
1047
+ this value must be freed with <a class="link" href="gtk-Selections.html#gtk-selection-data-free" title="gtk_selection_data_free ()"><code class="function">gtk_selection_data_free()</code></a>
1048
+ when you are finished with it.</td>
1140
1049
  </tr>
1141
1050
  </tbody>
1142
1051
  </table></div>
1143
1052
  </div>
1144
1053
  <hr>
1145
- <div class="refsect2" title="gtk_clipboard_wait_for_text ()">
1054
+ <div class="refsect2">
1146
1055
  <a name="gtk-clipboard-wait-for-text"></a><h3>gtk_clipboard_wait_for_text ()</h3>
1147
1056
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_clipboard_wait_for_text (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
1148
1057
  <p>
@@ -1161,24 +1070,23 @@ timeouts, etc, may be dispatched during the wait.
1161
1070
  </tr>
1162
1071
  <tr>
1163
1072
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1164
- <td> a newly-allocated UTF-8 string which must
1165
- be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if retrieving
1166
- the selection data failed. (This could happen
1167
- for various reasons, in particular if the
1168
- clipboard was empty or if the contents of the
1169
- clipboard could not be converted into text form.)
1170
- </td>
1073
+ <td>a newly-allocated UTF-8 string which must
1074
+ be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if retrieving
1075
+ the selection data failed. (This could happen
1076
+ for various reasons, in particular if the
1077
+ clipboard was empty or if the contents of the
1078
+ clipboard could not be converted into text form.)</td>
1171
1079
  </tr>
1172
1080
  </tbody>
1173
1081
  </table></div>
1174
1082
  </div>
1175
1083
  <hr>
1176
- <div class="refsect2" title="gtk_clipboard_wait_for_image ()">
1084
+ <div class="refsect2">
1177
1085
  <a name="gtk-clipboard-wait-for-image"></a><h3>gtk_clipboard_wait_for_image ()</h3>
1178
- <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_clipboard_wait_for_image (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
1086
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_clipboard_wait_for_image (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
1179
1087
  <p>
1180
1088
  Requests the contents of the clipboard as image and converts
1181
- the result to a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>. This function waits for
1089
+ the result to a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>. This function waits for
1182
1090
  the data to be received using the main loop, so events,
1183
1091
  timeouts, etc, may be dispatched during the wait.
1184
1092
  </p>
@@ -1192,13 +1100,12 @@ timeouts, etc, may be dispatched during the wait.
1192
1100
  </tr>
1193
1101
  <tr>
1194
1102
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1195
- <td> a newly-allocated <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> object which must
1196
- be disposed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
1197
- retrieving the selection data failed. (This
1198
- could happen for various reasons, in particular
1199
- if the clipboard was empty or if the contents of
1200
- the clipboard could not be converted into an image.)
1201
-
1103
+ <td>a newly-allocated <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> object which must
1104
+ be disposed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
1105
+ retrieving the selection data failed. (This
1106
+ could happen for various reasons, in particular
1107
+ if the clipboard was empty or if the contents of
1108
+ the clipboard could not be converted into an image.). <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1202
1109
  </td>
1203
1110
  </tr>
1204
1111
  </tbody>
@@ -1206,11 +1113,11 @@ timeouts, etc, may be dispatched during the wait.
1206
1113
  <p class="since">Since 2.6</p>
1207
1114
  </div>
1208
1115
  <hr>
1209
- <div class="refsect2" title="gtk_clipboard_wait_for_rich_text ()">
1116
+ <div class="refsect2">
1210
1117
  <a name="gtk-clipboard-wait-for-rich-text"></a><h3>gtk_clipboard_wait_for_rich_text ()</h3>
1211
1118
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * gtk_clipboard_wait_for_rich_text (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
1212
1119
  <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1213
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> *format</code></em>,
1120
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> *format</code></em>,
1214
1121
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);</pre>
1215
1122
  <p>
1216
1123
  Requests the contents of the clipboard as rich text. This function
@@ -1232,23 +1139,21 @@ timeouts, etc, may be dispatched during the wait.
1232
1139
  </tr>
1233
1140
  <tr>
1234
1141
  <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
1235
- <td>return location for the format of the returned data
1236
- </td>
1142
+ <td>return location for the format of the returned data</td>
1237
1143
  </tr>
1238
1144
  <tr>
1239
1145
  <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
1240
- <td>return location for the length of the returned data
1241
- </td>
1146
+ <td>return location for the length of the returned data</td>
1242
1147
  </tr>
1243
1148
  <tr>
1244
1149
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1245
- <td> a newly-allocated binary block of data which must
1246
- be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if retrieving
1247
- the selection data failed. (This could happen
1248
- for various reasons, in particular if the
1249
- clipboard was empty or if the contents of the
1250
- clipboard could not be converted into text form.)
1251
-
1150
+ <td>a
1151
+ newly-allocated binary block of data which must
1152
+ be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if retrieving
1153
+ the selection data failed. (This could happen
1154
+ for various reasons, in particular if the
1155
+ clipboard was empty or if the contents of the
1156
+ clipboard could not be converted into text form.). <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1252
1157
  </td>
1253
1158
  </tr>
1254
1159
  </tbody>
@@ -1256,7 +1161,7 @@ timeouts, etc, may be dispatched during the wait.
1256
1161
  <p class="since">Since 2.10</p>
1257
1162
  </div>
1258
1163
  <hr>
1259
- <div class="refsect2" title="gtk_clipboard_wait_for_uris ()">
1164
+ <div class="refsect2">
1260
1165
  <a name="gtk-clipboard-wait-for-uris"></a><h3>gtk_clipboard_wait_for_uris ()</h3>
1261
1166
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** gtk_clipboard_wait_for_uris (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
1262
1167
  <p>
@@ -1274,13 +1179,13 @@ timeouts, etc, may be dispatched during the wait.
1274
1179
  </tr>
1275
1180
  <tr>
1276
1181
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1277
- <td> a newly-allocated
1278
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of strings which must
1279
- be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
1280
- retrieving the selection data failed. (This
1281
- could happen for various reasons, in particular
1282
- if the clipboard was empty or if the contents of
1283
- the clipboard could not be converted into URI form.). <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym> utf8]</span>
1182
+ <td>a newly-allocated
1183
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of strings which must
1184
+ be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
1185
+ retrieving the selection data failed. (This
1186
+ could happen for various reasons, in particular
1187
+ if the clipboard was empty or if the contents of
1188
+ the clipboard could not be converted into URI form.). <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1284
1189
  </td>
1285
1190
  </tr>
1286
1191
  </tbody>
@@ -1288,7 +1193,7 @@ timeouts, etc, may be dispatched during the wait.
1288
1193
  <p class="since">Since 2.14</p>
1289
1194
  </div>
1290
1195
  <hr>
1291
- <div class="refsect2" title="gtk_clipboard_wait_is_text_available ()">
1196
+ <div class="refsect2">
1292
1197
  <a name="gtk-clipboard-wait-is-text-available"></a><h3>gtk_clipboard_wait_is_text_available ()</h3>
1293
1198
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_clipboard_wait_is_text_available
1294
1199
  (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
@@ -1314,14 +1219,14 @@ the actual text.
1314
1219
  </tr>
1315
1220
  <tr>
1316
1221
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1317
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is there is text available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1318
- </td>
1222
+ <td>
1223
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is there is text available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
1319
1224
  </tr>
1320
1225
  </tbody>
1321
1226
  </table></div>
1322
1227
  </div>
1323
1228
  <hr>
1324
- <div class="refsect2" title="gtk_clipboard_wait_is_image_available ()">
1229
+ <div class="refsect2">
1325
1230
  <a name="gtk-clipboard-wait-is-image-available"></a><h3>gtk_clipboard_wait_is_image_available ()</h3>
1326
1231
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_clipboard_wait_is_image_available
1327
1232
  (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
@@ -1347,16 +1252,15 @@ the actual image data.
1347
1252
  </tr>
1348
1253
  <tr>
1349
1254
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1350
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is there is an image available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1351
-
1352
- </td>
1255
+ <td>
1256
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is there is an image available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
1353
1257
  </tr>
1354
1258
  </tbody>
1355
1259
  </table></div>
1356
1260
  <p class="since">Since 2.6</p>
1357
1261
  </div>
1358
1262
  <hr>
1359
- <div class="refsect2" title="gtk_clipboard_wait_is_rich_text_available ()">
1263
+ <div class="refsect2">
1360
1264
  <a name="gtk-clipboard-wait-is-rich-text-available"></a><h3>gtk_clipboard_wait_is_rich_text_available ()</h3>
1361
1265
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_clipboard_wait_is_rich_text_available
1362
1266
  (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
@@ -1388,16 +1292,15 @@ the actual text.
1388
1292
  </tr>
1389
1293
  <tr>
1390
1294
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1391
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is there is rich text available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1392
-
1393
- </td>
1295
+ <td>
1296
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is there is rich text available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
1394
1297
  </tr>
1395
1298
  </tbody>
1396
1299
  </table></div>
1397
1300
  <p class="since">Since 2.10</p>
1398
1301
  </div>
1399
1302
  <hr>
1400
- <div class="refsect2" title="gtk_clipboard_wait_is_uris_available ()">
1303
+ <div class="refsect2">
1401
1304
  <a name="gtk-clipboard-wait-is-uris-available"></a><h3>gtk_clipboard_wait_is_uris_available ()</h3>
1402
1305
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_clipboard_wait_is_uris_available
1403
1306
  (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
@@ -1423,19 +1326,18 @@ the actual URI data.
1423
1326
  </tr>
1424
1327
  <tr>
1425
1328
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1426
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is there is an URI list available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1427
-
1428
- </td>
1329
+ <td>
1330
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is there is an URI list available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
1429
1331
  </tr>
1430
1332
  </tbody>
1431
1333
  </table></div>
1432
1334
  <p class="since">Since 2.14</p>
1433
1335
  </div>
1434
1336
  <hr>
1435
- <div class="refsect2" title="gtk_clipboard_wait_for_targets ()">
1337
+ <div class="refsect2">
1436
1338
  <a name="gtk-clipboard-wait-for-targets"></a><h3>gtk_clipboard_wait_for_targets ()</h3>
1437
1339
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_clipboard_wait_for_targets (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
1438
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> **targets</code></em>,
1340
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> **targets</code></em>,
1439
1341
  <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>);</pre>
1440
1342
  <p>
1441
1343
  Returns a list of targets that are present on the clipboard, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
@@ -1455,31 +1357,29 @@ loop, so events, timeouts, etc, may be dispatched during the wait.
1455
1357
  <tr>
1456
1358
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
1457
1359
  <td>location to store an array of targets. The result
1458
- stored here must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
1360
+ stored here must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_targets][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
1459
1361
  </td>
1460
1362
  </tr>
1461
1363
  <tr>
1462
1364
  <td><p><span class="term"><em class="parameter"><code>n_targets</code></em> :</span></p></td>
1463
- <td>location to store number of items in <em class="parameter"><code>targets</code></em>.
1464
- </td>
1365
+ <td>location to store number of items in <em class="parameter"><code>targets</code></em>.</td>
1465
1366
  </tr>
1466
1367
  <tr>
1467
1368
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1468
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if any targets are present on the clipboard,
1469
- otherwise <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
1470
-
1471
- </td>
1369
+ <td>
1370
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if any targets are present on the clipboard,
1371
+ otherwise <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
1472
1372
  </tr>
1473
1373
  </tbody>
1474
1374
  </table></div>
1475
1375
  <p class="since">Since 2.4</p>
1476
1376
  </div>
1477
1377
  <hr>
1478
- <div class="refsect2" title="gtk_clipboard_wait_is_target_available ()">
1378
+ <div class="refsect2">
1479
1379
  <a name="gtk-clipboard-wait-is-target-available"></a><h3>gtk_clipboard_wait_is_target_available ()</h3>
1480
1380
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_clipboard_wait_is_target_available
1481
1381
  (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
1482
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>);</pre>
1382
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> target</code></em>);</pre>
1483
1383
  <p>
1484
1384
  Checks if a clipboard supports pasting data of a given type. This
1485
1385
  function can be used to determine if a "Paste" menu item should be
@@ -1499,24 +1399,22 @@ If you want to see if there's text available on the clipboard, use
1499
1399
  </tr>
1500
1400
  <tr>
1501
1401
  <td><p><span class="term"><em class="parameter"><code>target</code></em> :</span></p></td>
1502
- <td>A <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> indicating which target to look for.
1503
- </td>
1402
+ <td>A <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> indicating which target to look for.</td>
1504
1403
  </tr>
1505
1404
  <tr>
1506
1405
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1507
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the target is available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1508
-
1509
- </td>
1406
+ <td>
1407
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the target is available, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
1510
1408
  </tr>
1511
1409
  </tbody>
1512
1410
  </table></div>
1513
1411
  <p class="since">Since 2.6</p>
1514
1412
  </div>
1515
1413
  <hr>
1516
- <div class="refsect2" title="gtk_clipboard_set_can_store ()">
1414
+ <div class="refsect2">
1517
1415
  <a name="gtk-clipboard-set-can-store"></a><h3>gtk_clipboard_set_can_store ()</h3>
1518
1416
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_set_can_store (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
1519
- <em class="parameter"><code>const <a class="link" href="gtk-Selections.html#GtkTargetEntry" title="GtkTargetEntry"><span class="type">GtkTargetEntry</span></a> *targets</code></em>,
1417
+ <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>,
1520
1418
  <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>);</pre>
1521
1419
  <p>
1522
1420
  Hints that the clipboard data should be stored somewhere when the
@@ -1525,7 +1423,7 @@ application exits or when <a class="link" href="gtk-Clipboards.html#gtk-clipboar
1525
1423
  <p>
1526
1424
  This value is reset when the clipboard owner changes.
1527
1425
  Where the clipboard data is stored is platform dependent,
1528
- see <a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html#gdk-display-store-clipboard"><code class="function">gdk_display_store_clipboard()</code></a> for more information.
1426
+ see <a href="http://library.gnome.org/devel/gdk3/GdkDisplay.html#gdk-display-store-clipboard"><code class="function">gdk_display_store_clipboard()</code></a> for more information.
1529
1427
  </p>
1530
1428
  <div class="variablelist"><table border="0">
1531
1429
  <col align="left" valign="top">
@@ -1537,9 +1435,9 @@ see <a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html#gdk-dis
1537
1435
  </tr>
1538
1436
  <tr>
1539
1437
  <td><p><span class="term"><em class="parameter"><code>targets</code></em> :</span></p></td>
1540
- <td> array containing information about which forms
1541
- should be stored or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to indicate that all forms should
1542
- be stored. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1438
+ <td>array containing
1439
+ information about which forms should be stored or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1440
+ to indicate that all forms should be stored. <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>
1543
1441
  </td>
1544
1442
  </tr>
1545
1443
  <tr>
@@ -1552,7 +1450,7 @@ see <a href="http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html#gdk-dis
1552
1450
  <p class="since">Since 2.6</p>
1553
1451
  </div>
1554
1452
  <hr>
1555
- <div class="refsect2" title="gtk_clipboard_store ()">
1453
+ <div class="refsect2">
1556
1454
  <a name="gtk-clipboard-store"></a><h3>gtk_clipboard_store ()</h3>
1557
1455
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_clipboard_store (<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
1558
1456
  <p>
@@ -1570,13 +1468,13 @@ around after the application has quit.
1570
1468
  <p class="since">Since 2.6</p>
1571
1469
  </div>
1572
1470
  </div>
1573
- <div class="refsect1" title="Signal Details">
1471
+ <div class="refsect1">
1574
1472
  <a name="gtk-Clipboards.signal-details"></a><h2>Signal Details</h2>
1575
- <div class="refsect2" title='The "owner-change" signal'>
1473
+ <div class="refsect2">
1576
1474
  <a name="GtkClipboard-owner-change"></a><h3>The <code class="literal">"owner-change"</code> signal</h3>
1577
1475
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard,
1578
- <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
1579
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
1476
+ <a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
1477
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
1580
1478
  <p>
1581
1479
  The ::owner-change signal is emitted when GTK+ receives an
1582
1480
  event that indicates that the ownership of the selection
@@ -1587,13 +1485,11 @@ associated with <em class="parameter"><code>clipboard</code></em> has changed.
1587
1485
  <tbody>
1588
1486
  <tr>
1589
1487
  <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
1590
- <td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> on which the signal is emitted
1591
- </td>
1488
+ <td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> on which the signal is emitted</td>
1592
1489
  </tr>
1593
1490
  <tr>
1594
1491
  <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
1595
- <td>the <em class="parameter"><code>GdkEventOwnerChange</code></em> event
1596
- </td>
1492
+ <td>the <em class="parameter"><code>GdkEventOwnerChange</code></em> event</td>
1597
1493
  </tr>
1598
1494
  <tr>
1599
1495
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1604,7 +1500,7 @@ associated with <em class="parameter"><code>clipboard</code></em> has changed.
1604
1500
  <p class="since">Since 2.6</p>
1605
1501
  </div>
1606
1502
  </div>
1607
- <div class="refsect1" title="See Also">
1503
+ <div class="refsect1">
1608
1504
  <a name="gtk-Clipboards.see-also"></a><h2>See Also</h2>
1609
1505
  <p>
1610
1506
  </p>
@@ -1624,6 +1520,6 @@ associated with <em class="parameter"><code>clipboard</code></em> has changed.
1624
1520
  </div>
1625
1521
  <div class="footer">
1626
1522
  <hr>
1627
- Generated by GTK-Doc V1.15</div>
1523
+ Generated by GTK-Doc V1.17</div>
1628
1524
  </body>
1629
1525
  </html>