gdk3 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (939) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +6 -2
  3. data/ext/gdk3/extconf.rb +4 -1
  4. data/ext/gdk3/gdk3.def +2 -2
  5. data/ext/gdk3/rbgdk.c +5 -51
  6. data/ext/gdk3/rbgdk3.h +6 -4
  7. data/ext/gdk3/rbgdk3conversions.h +5 -2
  8. data/ext/gdk3/rbgdk3private.h +1 -6
  9. data/ext/gdk3/rbgdkcairo.c +0 -4
  10. data/ext/gdk3/rbgdkdevice.c +60 -4
  11. data/ext/gdk3/rbgdkdevicemanager.c +39 -0
  12. data/ext/gdk3/rbgdkdisplay.c +8 -63
  13. data/ext/gdk3/rbgdkevent.c +644 -396
  14. data/ext/gdk3/rbgdkwindow.c +29 -32
  15. data/lib/1.9/gdk3.so +0 -0
  16. data/lib/2.0/gdk3.so +0 -0
  17. data/lib/gdk3/deprecated.rb +13 -1
  18. data/test/test-gdk-event.rb +598 -0
  19. data/test/test-gdk-rgba.rb +2 -2
  20. data/vendor/local/bin/gtk-launch.exe +0 -0
  21. data/vendor/local/bin/gtk-query-immodules-3.0.exe +0 -0
  22. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  23. data/vendor/local/bin/gtk3-demo-application.exe +0 -0
  24. data/vendor/local/bin/gtk3-demo.exe +0 -0
  25. data/vendor/local/bin/gtk3-widget-factory.exe +0 -0
  26. data/vendor/local/bin/libgailutil-3-0.dll +0 -0
  27. data/vendor/local/bin/libgdk-3-0.dll +0 -0
  28. data/vendor/local/bin/libgtk-3-0.dll +0 -0
  29. data/vendor/local/include/gtk-3.0/gdk/gdkapplaunchcontext.h +6 -0
  30. data/vendor/local/include/gtk-3.0/gdk/gdkcairo.h +13 -0
  31. data/vendor/local/include/gtk-3.0/gdk/gdkcolor.h +8 -0
  32. data/vendor/local/include/gtk-3.0/gdk/gdkcursor.h +17 -0
  33. data/vendor/local/include/gtk-3.0/gdk/gdkdevice.h +40 -0
  34. data/vendor/local/include/gtk-3.0/gdk/gdkdevicemanager.h +4 -0
  35. data/vendor/local/include/gtk-3.0/gdk/gdkdisplay.h +35 -0
  36. data/vendor/local/include/gtk-3.0/gdk/gdkdisplaymanager.h +6 -0
  37. data/vendor/local/include/gtk-3.0/gdk/gdkdnd.h +22 -1
  38. data/vendor/local/include/gtk-3.0/gdk/gdkenumtypes.h +38 -37
  39. data/vendor/local/include/gtk-3.0/gdk/gdkevents.h +50 -9
  40. data/vendor/local/include/gtk-3.0/gdk/gdkframeclock.h +1 -0
  41. data/vendor/local/include/gtk-3.0/gdk/gdkkeys.h +22 -1
  42. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms-compat.h +1 -0
  43. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms.h +1 -0
  44. data/vendor/local/include/gtk-3.0/gdk/gdkmain.h +25 -9
  45. data/vendor/local/include/gtk-3.0/gdk/gdkpango.h +5 -0
  46. data/vendor/local/include/gtk-3.0/gdk/gdkpixbuf.h +4 -1
  47. data/vendor/local/include/gtk-3.0/gdk/gdkprivate.h +4 -0
  48. data/vendor/local/include/gtk-3.0/gdk/gdkproperty.h +9 -0
  49. data/vendor/local/include/gtk-3.0/gdk/gdkrectangle.h +4 -0
  50. data/vendor/local/include/gtk-3.0/gdk/gdkrgba.h +8 -0
  51. data/vendor/local/include/gtk-3.0/gdk/gdkscreen.h +33 -0
  52. data/vendor/local/include/gtk-3.0/gdk/gdkselection.h +9 -0
  53. data/vendor/local/include/gtk-3.0/gdk/gdktestutils.h +3 -0
  54. data/vendor/local/include/gtk-3.0/gdk/gdkthreads.h +8 -1
  55. data/vendor/local/include/gtk-3.0/gdk/gdktypes.h +2 -2
  56. data/vendor/local/include/gtk-3.0/gdk/gdkversionmacros.h +53 -23
  57. data/vendor/local/include/gtk-3.0/gdk/gdkvisual.h +21 -0
  58. data/vendor/local/include/gtk-3.0/gdk/gdkwin32.h +1 -65
  59. data/vendor/local/include/gtk-3.0/gdk/gdkwindow.h +182 -0
  60. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32cursor.h +1 -0
  61. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32display.h +1 -0
  62. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32displaymanager.h +1 -0
  63. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32dnd.h +1 -0
  64. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32keys.h +1 -0
  65. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32misc.h +113 -0
  66. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32screen.h +1 -0
  67. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32window.h +1 -0
  68. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkarrowaccessible.h +1 -0
  69. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkbooleancellaccessible.h +1 -0
  70. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkbuttonaccessible.h +1 -0
  71. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkcellaccessible.h +1 -0
  72. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkcellaccessibleparent.h +9 -0
  73. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkcheckmenuitemaccessible.h +1 -0
  74. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkcomboboxaccessible.h +1 -0
  75. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkcontaineraccessible.h +1 -0
  76. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkcontainercellaccessible.h +5 -0
  77. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkentryaccessible.h +4 -0
  78. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkexpanderaccessible.h +1 -0
  79. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkframeaccessible.h +1 -0
  80. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkiconviewaccessible.h +1 -0
  81. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkimageaccessible.h +1 -0
  82. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkimagecellaccessible.h +1 -0
  83. data/vendor/local/include/gtk-3.0/gtk/a11y/gtklabelaccessible.h +1 -0
  84. data/vendor/local/include/gtk-3.0/gtk/a11y/gtklevelbaraccessible.h +1 -0
  85. data/vendor/local/include/gtk-3.0/gtk/a11y/gtklinkbuttonaccessible.h +1 -0
  86. data/vendor/local/include/gtk-3.0/gtk/a11y/gtklistboxaccessible.h +58 -0
  87. data/vendor/local/include/gtk-3.0/gtk/a11y/gtklistboxrowaccessible.h +55 -0
  88. data/vendor/local/include/gtk-3.0/gtk/a11y/gtklockbuttonaccessible.h +1 -0
  89. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkmenuaccessible.h +1 -0
  90. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkmenuitemaccessible.h +1 -0
  91. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkmenushellaccessible.h +1 -0
  92. data/vendor/local/include/gtk-3.0/gtk/a11y/gtknotebookaccessible.h +1 -0
  93. data/vendor/local/include/gtk-3.0/gtk/a11y/gtknotebookpageaccessible.h +3 -0
  94. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkpanedaccessible.h +1 -0
  95. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkprogressbaraccessible.h +1 -0
  96. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkradiobuttonaccessible.h +1 -0
  97. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkradiomenuitemaccessible.h +1 -0
  98. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkrangeaccessible.h +1 -0
  99. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkrenderercellaccessible.h +2 -0
  100. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkscaleaccessible.h +1 -0
  101. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkscalebuttonaccessible.h +1 -0
  102. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkscrolledwindowaccessible.h +1 -0
  103. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkspinbuttonaccessible.h +1 -0
  104. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkspinneraccessible.h +1 -0
  105. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkstatusbaraccessible.h +1 -0
  106. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkswitchaccessible.h +1 -0
  107. data/vendor/local/include/gtk-3.0/gtk/a11y/gtktextcellaccessible.h +1 -0
  108. data/vendor/local/include/gtk-3.0/gtk/a11y/gtktextviewaccessible.h +1 -0
  109. data/vendor/local/include/gtk-3.0/gtk/a11y/gtktogglebuttonaccessible.h +1 -0
  110. data/vendor/local/include/gtk-3.0/gtk/a11y/gtktoplevelaccessible.h +2 -0
  111. data/vendor/local/include/gtk-3.0/gtk/a11y/gtktreeviewaccessible.h +1 -0
  112. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkwidgetaccessible.h +1 -0
  113. data/vendor/local/include/gtk-3.0/gtk/a11y/gtkwindowaccessible.h +1 -0
  114. data/vendor/local/include/gtk-3.0/gtk/{gtkaction.h → deprecated/gtkaction.h} +43 -1
  115. data/vendor/local/include/gtk-3.0/gtk/{gtkactiongroup.h → deprecated/gtkactiongroup.h} +31 -4
  116. data/vendor/local/include/gtk-3.0/gtk/{gtkactivatable.h → deprecated/gtkactivatable.h} +10 -1
  117. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h +2 -0
  118. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h +1 -0
  119. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkfontsel.h +2 -1
  120. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkgradient.h +1 -0
  121. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h +1 -0
  122. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbbox.h +1 -0
  123. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbox.h +1 -0
  124. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhpaned.h +1 -0
  125. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscale.h +1 -0
  126. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h +1 -0
  127. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhseparator.h +1 -0
  128. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhsv.h +1 -0
  129. data/vendor/local/include/gtk-3.0/gtk/{gtkiconfactory.h → deprecated/gtkiconfactory.h} +43 -0
  130. data/vendor/local/include/gtk-3.0/gtk/{gtkimagemenuitem.h → deprecated/gtkimagemenuitem.h} +12 -1
  131. data/vendor/local/include/gtk-3.0/gtk/{gtkradioaction.h → deprecated/gtkradioaction.h} +8 -1
  132. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkrc.h +1 -0
  133. data/vendor/local/include/gtk-3.0/gtk/{gtkrecentaction.h → deprecated/gtkrecentaction.h} +6 -1
  134. data/vendor/local/include/gtk-3.0/gtk/{gtkstock.h → deprecated/gtkstock.h} +333 -106
  135. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkstyle.h +20 -0
  136. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h +1 -0
  137. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktable.h +1 -0
  138. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h +1 -0
  139. data/vendor/local/include/gtk-3.0/gtk/{gtktoggleaction.h → deprecated/gtktoggleaction.h} +8 -1
  140. data/vendor/local/include/gtk-3.0/gtk/{gtkuimanager.h → deprecated/gtkuimanager.h} +21 -2
  141. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbbox.h +1 -0
  142. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbox.h +1 -0
  143. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvpaned.h +1 -0
  144. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscale.h +1 -0
  145. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h +1 -0
  146. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvseparator.h +1 -0
  147. data/vendor/local/include/gtk-3.0/gtk/gtk-a11y.h +2 -0
  148. data/vendor/local/include/gtk-3.0/gtk/gtk.h +17 -10
  149. data/vendor/local/include/gtk-3.0/gtk/gtkaboutdialog.h +33 -0
  150. data/vendor/local/include/gtk-3.0/gtk/gtkaccelgroup.h +22 -0
  151. data/vendor/local/include/gtk-3.0/gtk/gtkaccellabel.h +7 -0
  152. data/vendor/local/include/gtk-3.0/gtk/gtkaccelmap.h +15 -0
  153. data/vendor/local/include/gtk-3.0/gtk/gtkaccessible.h +3 -0
  154. data/vendor/local/include/gtk-3.0/gtk/gtkadjustment.h +18 -0
  155. data/vendor/local/include/gtk-3.0/gtk/gtkalignment.h +5 -0
  156. data/vendor/local/include/gtk-3.0/gtk/gtkappchooser.h +5 -0
  157. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserbutton.h +9 -0
  158. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserdialog.h +6 -0
  159. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserwidget.h +14 -0
  160. data/vendor/local/include/gtk-3.0/gtk/gtkapplication.h +5 -0
  161. data/vendor/local/include/gtk-3.0/gtk/gtkarrow.h +3 -0
  162. data/vendor/local/include/gtk-3.0/gtk/gtkaspectframe.h +3 -0
  163. data/vendor/local/include/gtk-3.0/gtk/gtkassistant.h +22 -0
  164. data/vendor/local/include/gtk-3.0/gtk/gtkbbox.h +6 -0
  165. data/vendor/local/include/gtk-3.0/gtk/gtkbin.h +2 -0
  166. data/vendor/local/include/gtk-3.0/gtk/gtkbindings.h +11 -0
  167. data/vendor/local/include/gtk-3.0/gtk/gtkborder.h +5 -0
  168. data/vendor/local/include/gtk-3.0/gtk/gtkbox.h +16 -0
  169. data/vendor/local/include/gtk-3.0/gtk/gtkbuildable.h +11 -0
  170. data/vendor/local/include/gtk-3.0/gtk/gtkbuilder.h +43 -10
  171. data/vendor/local/include/gtk-3.0/gtk/gtkbutton.h +26 -0
  172. data/vendor/local/include/gtk-3.0/gtk/gtkcalendar.h +16 -0
  173. data/vendor/local/include/gtk-3.0/gtk/gtkcellarea.h +47 -0
  174. data/vendor/local/include/gtk-3.0/gtk/gtkcellareabox.h +6 -0
  175. data/vendor/local/include/gtk-3.0/gtk/gtkcellareacontext.h +11 -0
  176. data/vendor/local/include/gtk-3.0/gtk/gtkcelleditable.h +4 -0
  177. data/vendor/local/include/gtk-3.0/gtk/gtkcelllayout.h +11 -0
  178. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderer.h +25 -0
  179. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendereraccel.h +2 -0
  180. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderercombo.h +2 -0
  181. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h +2 -0
  182. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererprogress.h +2 -0
  183. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspin.h +2 -0
  184. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspinner.h +2 -0
  185. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertext.h +3 -0
  186. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertoggle.h +8 -0
  187. data/vendor/local/include/gtk-3.0/gtk/gtkcellview.h +15 -0
  188. data/vendor/local/include/gtk-3.0/gtk/gtkcheckbutton.h +4 -0
  189. data/vendor/local/include/gtk-3.0/gtk/gtkcheckmenuitem.h +11 -0
  190. data/vendor/local/include/gtk-3.0/gtk/gtkclipboard.h +29 -0
  191. data/vendor/local/include/gtk-3.0/gtk/gtkcolorbutton.h +5 -0
  192. data/vendor/local/include/gtk-3.0/gtk/gtkcolorutils.h +3 -0
  193. data/vendor/local/include/gtk-3.0/gtk/gtkcombobox.h +42 -0
  194. data/vendor/local/include/gtk-3.0/gtk/gtkcomboboxtext.h +12 -0
  195. data/vendor/local/include/gtk-3.0/gtk/gtkcontainer.h +36 -0
  196. data/vendor/local/include/gtk-3.0/gtk/gtkcssprovider.h +8 -0
  197. data/vendor/local/include/gtk-3.0/gtk/gtkdebug.h +7 -1
  198. data/vendor/local/include/gtk-3.0/gtk/gtkdialog.h +17 -0
  199. data/vendor/local/include/gtk-3.0/gtk/gtkdnd.h +43 -0
  200. data/vendor/local/include/gtk-3.0/gtk/gtkdrawingarea.h +2 -0
  201. data/vendor/local/include/gtk-3.0/gtk/gtkeditable.h +14 -0
  202. data/vendor/local/include/gtk-3.0/gtk/gtkentry.h +69 -0
  203. data/vendor/local/include/gtk-3.0/gtk/gtkentrybuffer.h +13 -0
  204. data/vendor/local/include/gtk-3.0/gtk/gtkentrycompletion.h +28 -0
  205. data/vendor/local/include/gtk-3.0/gtk/gtkenums.h +29 -1
  206. data/vendor/local/include/gtk-3.0/gtk/gtkeventbox.h +6 -0
  207. data/vendor/local/include/gtk-3.0/gtk/gtkexpander.h +17 -0
  208. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooser.h +64 -2
  209. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserbutton.h +9 -0
  210. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserdialog.h +2 -0
  211. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserwidget.h +2 -0
  212. data/vendor/local/include/gtk-3.0/gtk/gtkfilefilter.h +11 -0
  213. data/vendor/local/include/gtk-3.0/gtk/gtkfixed.h +4 -0
  214. data/vendor/local/include/gtk-3.0/gtk/gtkfontbutton.h +15 -0
  215. data/vendor/local/include/gtk-3.0/gtk/gtkframe.h +10 -0
  216. data/vendor/local/include/gtk-3.0/gtk/gtkgrid.h +30 -0
  217. data/vendor/local/include/gtk-3.0/gtk/gtkheaderbar.h +95 -0
  218. data/vendor/local/include/gtk-3.0/gtk/gtkicontheme.h +76 -2
  219. data/vendor/local/include/gtk-3.0/gtk/gtkiconview.h +62 -0
  220. data/vendor/local/include/gtk-3.0/gtk/gtkimage.h +37 -1
  221. data/vendor/local/include/gtk-3.0/gtk/gtkimcontext.h +12 -0
  222. data/vendor/local/include/gtk-3.0/gtk/gtkimcontextsimple.h +3 -0
  223. data/vendor/local/include/gtk-3.0/gtk/gtkimmulticontext.h +5 -0
  224. data/vendor/local/include/gtk-3.0/gtk/gtkinfobar.h +19 -0
  225. data/vendor/local/include/gtk-3.0/gtk/gtkinvisible.h +5 -0
  226. data/vendor/local/include/gtk-3.0/gtk/gtklabel.h +50 -0
  227. data/vendor/local/include/gtk-3.0/gtk/gtklayout.h +7 -0
  228. data/vendor/local/include/gtk-3.0/gtk/gtklinkbutton.h +7 -0
  229. data/vendor/local/include/gtk-3.0/gtk/gtklistbox.h +232 -0
  230. data/vendor/local/include/gtk-3.0/gtk/gtkliststore.h +23 -0
  231. data/vendor/local/include/gtk-3.0/gtk/gtkmain.h +35 -0
  232. data/vendor/local/include/gtk-3.0/gtk/gtkmenu.h +28 -1
  233. data/vendor/local/include/gtk-3.0/gtk/gtkmenubar.h +6 -0
  234. data/vendor/local/include/gtk-3.0/gtk/gtkmenuitem.h +19 -0
  235. data/vendor/local/include/gtk-3.0/gtk/gtkmenushell.h +14 -0
  236. data/vendor/local/include/gtk-3.0/gtk/gtkmenutoolbutton.h +7 -0
  237. data/vendor/local/include/gtk-3.0/gtk/gtkmessagedialog.h +9 -0
  238. data/vendor/local/include/gtk-3.0/gtk/gtkmisc.h +5 -1
  239. data/vendor/local/include/gtk-3.0/gtk/gtkmountoperation.h +7 -0
  240. data/vendor/local/include/gtk-3.0/gtk/gtknotebook.h +45 -0
  241. data/vendor/local/include/gtk-3.0/gtk/gtknumerableicon.h +13 -0
  242. data/vendor/local/include/gtk-3.0/gtk/gtkoffscreenwindow.h +4 -0
  243. data/vendor/local/include/gtk-3.0/gtk/gtkorientable.h +3 -0
  244. data/vendor/local/include/gtk-3.0/gtk/gtkpagesetup.h +26 -0
  245. data/vendor/local/include/gtk-3.0/gtk/gtkpaned.h +11 -0
  246. data/vendor/local/include/gtk-3.0/gtk/gtkpapersize.h +24 -1
  247. data/vendor/local/include/gtk-3.0/gtk/gtkplacessidebar.h +125 -0
  248. data/vendor/local/include/gtk-3.0/gtk/gtkplug.h +8 -0
  249. data/vendor/local/include/gtk-3.0/gtk/gtkprintcontext.h +12 -0
  250. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperation.h +34 -0
  251. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperationpreview.h +4 -0
  252. data/vendor/local/include/gtk-3.0/gtk/gtkprintsettings.h +94 -0
  253. data/vendor/local/include/gtk-3.0/gtk/gtkprogressbar.h +15 -0
  254. data/vendor/local/include/gtk-3.0/gtk/gtkradiobutton.h +10 -0
  255. data/vendor/local/include/gtk-3.0/gtk/gtkradiomenuitem.h +9 -0
  256. data/vendor/local/include/gtk-3.0/gtk/gtkradiotoolbutton.h +7 -0
  257. data/vendor/local/include/gtk-3.0/gtk/gtkrange.h +29 -0
  258. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooser.h +33 -0
  259. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserdialog.h +3 -0
  260. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchoosermenu.h +5 -0
  261. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserwidget.h +3 -0
  262. data/vendor/local/include/gtk-3.0/gtk/gtkrecentfilter.h +14 -0
  263. data/vendor/local/include/gtk-3.0/gtk/gtkrecentmanager.h +38 -0
  264. data/vendor/local/include/gtk-3.0/gtk/gtkrevealer.h +82 -0
  265. data/vendor/local/include/gtk-3.0/gtk/gtkscale.h +13 -0
  266. data/vendor/local/include/gtk-3.0/gtk/gtkscalebutton.h +10 -0
  267. data/vendor/local/include/gtk-3.0/gtk/gtkscrollable.h +10 -0
  268. data/vendor/local/include/gtk-3.0/gtk/gtkscrollbar.h +2 -0
  269. data/vendor/local/include/gtk-3.0/gtk/gtkscrolledwindow.h +19 -0
  270. data/vendor/local/include/gtk-3.0/gtk/gtksearchbar.h +95 -0
  271. data/vendor/local/include/gtk-3.0/gtk/gtksearchentry.h +2 -1
  272. data/vendor/local/include/gtk-3.0/gtk/gtkselection.h +52 -0
  273. data/vendor/local/include/gtk-3.0/gtk/gtkseparator.h +2 -0
  274. data/vendor/local/include/gtk-3.0/gtk/gtkseparatormenuitem.h +2 -0
  275. data/vendor/local/include/gtk-3.0/gtk/gtkseparatortoolitem.h +4 -0
  276. data/vendor/local/include/gtk-3.0/gtk/gtksettings.h +14 -0
  277. data/vendor/local/include/gtk-3.0/gtk/gtkshow.h +1 -0
  278. data/vendor/local/include/gtk-3.0/gtk/gtksizegroup.h +9 -0
  279. data/vendor/local/include/gtk-3.0/gtk/gtksizerequest.h +1 -0
  280. data/vendor/local/include/gtk-3.0/gtk/gtksocket.h +5 -0
  281. data/vendor/local/include/gtk-3.0/gtk/gtkspinbutton.h +25 -0
  282. data/vendor/local/include/gtk-3.0/gtk/gtkspinner.h +4 -0
  283. data/vendor/local/include/gtk-3.0/gtk/gtkstack.h +105 -0
  284. data/vendor/local/include/gtk-3.0/gtk/gtkstackswitcher.h +65 -0
  285. data/vendor/local/include/gtk-3.0/gtk/gtkstatusbar.h +8 -0
  286. data/vendor/local/include/gtk-3.0/gtk/gtkstatusicon.h +35 -0
  287. data/vendor/local/include/gtk-3.0/gtk/gtkstylecontext.h +122 -2
  288. data/vendor/local/include/gtk-3.0/gtk/gtkstyleproperties.h +11 -0
  289. data/vendor/local/include/gtk-3.0/gtk/gtkstyleprovider.h +3 -1
  290. data/vendor/local/include/gtk-3.0/gtk/gtkswitch.h +4 -0
  291. data/vendor/local/include/gtk-3.0/gtk/gtktestutils.h +18 -0
  292. data/vendor/local/include/gtk-3.0/gtk/gtktextattributes.h +16 -8
  293. data/vendor/local/include/gtk-3.0/gtk/gtktextbuffer.h +62 -0
  294. data/vendor/local/include/gtk-3.0/gtk/gtktextbufferrichtext.h +12 -0
  295. data/vendor/local/include/gtk-3.0/gtk/gtktextchild.h +4 -0
  296. data/vendor/local/include/gtk-3.0/gtk/gtktextdisplay.h +1 -0
  297. data/vendor/local/include/gtk-3.0/gtk/gtktextiter.h +106 -0
  298. data/vendor/local/include/gtk-3.0/gtk/gtktextlayout.h +48 -4
  299. data/vendor/local/include/gtk-3.0/gtk/gtktextmark.h +8 -0
  300. data/vendor/local/include/gtk-3.0/gtk/gtktexttag.h +5 -0
  301. data/vendor/local/include/gtk-3.0/gtk/gtktexttagtable.h +7 -0
  302. data/vendor/local/include/gtk-3.0/gtk/gtktextview.h +61 -0
  303. data/vendor/local/include/gtk-3.0/gtk/gtkthemingengine.h +28 -1
  304. data/vendor/local/include/gtk-3.0/gtk/gtktogglebutton.h +11 -0
  305. data/vendor/local/include/gtk-3.0/gtk/gtktoggletoolbutton.h +5 -0
  306. data/vendor/local/include/gtk-3.0/gtk/gtktoolbar.h +17 -0
  307. data/vendor/local/include/gtk-3.0/gtk/gtktoolbutton.h +15 -0
  308. data/vendor/local/include/gtk-3.0/gtk/gtktoolitem.h +30 -0
  309. data/vendor/local/include/gtk-3.0/gtk/gtktoolitemgroup.h +18 -0
  310. data/vendor/local/include/gtk-3.0/gtk/gtktoolpalette.h +21 -0
  311. data/vendor/local/include/gtk-3.0/gtk/gtktoolshell.h +10 -0
  312. data/vendor/local/include/gtk-3.0/gtk/gtktooltip.h +10 -0
  313. data/vendor/local/include/gtk-3.0/gtk/gtktreednd.h +9 -0
  314. data/vendor/local/include/gtk-3.0/gtk/gtktreemodel.h +68 -0
  315. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelfilter.h +12 -0
  316. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelsort.h +10 -0
  317. data/vendor/local/include/gtk-3.0/gtk/gtktreeselection.h +21 -0
  318. data/vendor/local/include/gtk-3.0/gtk/gtktreesortable.h +7 -0
  319. data/vendor/local/include/gtk-3.0/gtk/gtktreestore.h +24 -0
  320. data/vendor/local/include/gtk-3.0/gtk/gtktreeview.h +94 -0
  321. data/vendor/local/include/gtk-3.0/gtk/gtktreeviewcolumn.h +53 -0
  322. data/vendor/local/include/gtk-3.0/gtk/gtktypebuiltins.h +123 -108
  323. data/vendor/local/include/gtk-3.0/gtk/gtktypes.h +9 -0
  324. data/vendor/local/include/gtk-3.0/gtk/gtkversion.h +4 -4
  325. data/vendor/local/include/gtk-3.0/gtk/gtkviewport.h +6 -0
  326. data/vendor/local/include/gtk-3.0/gtk/gtkvolumebutton.h +2 -0
  327. data/vendor/local/include/gtk-3.0/gtk/gtkwidget.h +365 -4
  328. data/vendor/local/include/gtk-3.0/gtk/gtkwidgetpath.h +30 -0
  329. data/vendor/local/include/gtk-3.0/gtk/gtkwindow.h +119 -0
  330. data/vendor/local/lib/girepository-1.0/Gdk-3.0.typelib +0 -0
  331. data/vendor/local/lib/girepository-1.0/Gtk-3.0.typelib +0 -0
  332. data/vendor/local/lib/gtk-3.0/3.0.0/immodules.cache +1 -1
  333. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll +0 -0
  334. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll.a +0 -0
  335. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.la +2 -2
  336. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll +0 -0
  337. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll.a +0 -0
  338. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.la +2 -2
  339. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll +0 -0
  340. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll.a +0 -0
  341. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.la +2 -2
  342. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll +0 -0
  343. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll.a +0 -0
  344. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.la +2 -2
  345. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll +0 -0
  346. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll.a +0 -0
  347. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.la +2 -2
  348. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll +0 -0
  349. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll.a +0 -0
  350. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.la +2 -2
  351. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll +0 -0
  352. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll.a +0 -0
  353. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.la +2 -2
  354. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll +0 -0
  355. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll.a +0 -0
  356. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.la +2 -2
  357. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll +0 -0
  358. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll.a +0 -0
  359. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.la +2 -2
  360. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll +0 -0
  361. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll.a +0 -0
  362. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.la +2 -2
  363. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll +0 -0
  364. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll.a +0 -0
  365. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.la +2 -2
  366. data/vendor/local/lib/libgailutil-3.dll.a +0 -0
  367. data/vendor/local/lib/libgailutil-3.la +2 -2
  368. data/vendor/local/lib/libgdk-3.dll.a +0 -0
  369. data/vendor/local/lib/libgdk-3.la +5 -5
  370. data/vendor/local/lib/libgtk-3.dll.a +0 -0
  371. data/vendor/local/lib/libgtk-3.la +5 -5
  372. data/vendor/local/lib/pkgconfig/gail-3.0.pc +1 -1
  373. data/vendor/local/lib/pkgconfig/gdk-3.0.pc +1 -1
  374. data/vendor/local/lib/pkgconfig/gdk-win32-3.0.pc +1 -1
  375. data/vendor/local/lib/pkgconfig/gtk+-3.0.pc +1 -1
  376. data/vendor/local/lib/pkgconfig/gtk+-win32-3.0.pc +1 -1
  377. data/vendor/local/share/gir-1.0/Gdk-3.0.gir +2639 -2145
  378. data/vendor/local/share/gir-1.0/Gtk-3.0.gir +21620 -16038
  379. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  380. data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml +8 -0
  381. data/vendor/local/share/glib-2.0/schemas/org.gtk.exampleapp.gschema.xml +25 -0
  382. data/vendor/local/share/gtk-3.0/gtkbuilder.rng +19 -0
  383. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailMisc.html +43 -46
  384. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailTextUtil.html +17 -20
  385. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/home.png +0 -0
  386. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.html +4 -4
  387. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/left-insensitive.png +0 -0
  388. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/left.png +0 -0
  389. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/libgail-util-main.html +9 -9
  390. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/right-insensitive.png +0 -0
  391. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/right.png +0 -0
  392. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/style.css +71 -16
  393. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/up-insensitive.png +0 -0
  394. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/up.png +0 -0
  395. data/vendor/local/share/gtk-doc/html/gdk3/GdkDevice.html +114 -18
  396. data/vendor/local/share/gtk-doc/html/gdk3/GdkDeviceManager.html +14 -17
  397. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplay.html +26 -25
  398. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplayManager.html +14 -16
  399. data/vendor/local/share/gtk-doc/html/gdk3/GdkScreen.html +58 -22
  400. data/vendor/local/share/gtk-doc/html/gdk3/annotation-glossary.html +39 -51
  401. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-0.html +27 -26
  402. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-10.html +148 -0
  403. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-2.html +13 -16
  404. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-4.html +23 -26
  405. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-6.html +10 -13
  406. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-8.html +41 -17
  407. data/vendor/local/share/gtk-doc/html/gdk3/api-index-deprecated.html +36 -28
  408. data/vendor/local/share/gtk-doc/html/gdk3/api-index-full.html +187 -58
  409. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Application-launching.html +16 -19
  410. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cairo-Interaction.html +159 -54
  411. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Colors.html +12 -15
  412. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cursors.html +119 -17
  413. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Drag-and-Drop.html +13 -16
  414. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Event-Structures.html +33 -26
  415. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Events.html +70 -17
  416. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-GdkFrameClock.html +12 -15
  417. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-GdkFrameTimings.html +12 -15
  418. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-General.html +93 -30
  419. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Keyboard-Handling.html +18 -21
  420. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pango-Interaction.html +59 -62
  421. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pixbufs.html +15 -18
  422. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Points-Rectangles-and-Regions.html +15 -18
  423. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Properties-and-Atoms.html +13 -16
  424. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-RGBA-Colors.html +13 -16
  425. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Selections.html +13 -16
  426. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Testing.html +14 -17
  427. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Threads.html +40 -43
  428. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Visuals.html +12 -15
  429. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Wayland-Interaction.html +425 -0
  430. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Windows.html +363 -106
  431. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-X-Window-System-Interaction.html +264 -17
  432. data/vendor/local/share/gtk-doc/html/gdk3/gdk3.devhelp2 +38 -2
  433. data/vendor/local/share/gtk-doc/html/gdk3/home.png +0 -0
  434. data/vendor/local/share/gtk-doc/html/gdk3/index.html +8 -4
  435. data/vendor/local/share/gtk-doc/html/gdk3/index.sgml +44 -6
  436. data/vendor/local/share/gtk-doc/html/gdk3/left-insensitive.png +0 -0
  437. data/vendor/local/share/gtk-doc/html/gdk3/left.png +0 -0
  438. data/vendor/local/share/gtk-doc/html/gdk3/reference.html +12 -9
  439. data/vendor/local/share/gtk-doc/html/gdk3/right-insensitive.png +0 -0
  440. data/vendor/local/share/gtk-doc/html/gdk3/right.png +0 -0
  441. data/vendor/local/share/gtk-doc/html/gdk3/style.css +71 -16
  442. data/vendor/local/share/gtk-doc/html/gdk3/up-insensitive.png +0 -0
  443. data/vendor/local/share/gtk-doc/html/gdk3/up.png +0 -0
  444. data/vendor/local/share/gtk-doc/html/gtk3/AbstractObjects.html +10 -10
  445. data/vendor/local/share/gtk-doc/html/gtk3/Application.html +11 -11
  446. data/vendor/local/share/gtk-doc/html/gtk3/ApplicationChoosing.html +10 -10
  447. data/vendor/local/share/gtk-doc/html/gtk3/Builder.html +14 -14
  448. data/vendor/local/share/gtk-doc/html/gtk3/ButtonWidgets.html +16 -16
  449. data/vendor/local/share/gtk-doc/html/gtk3/DeprecatedObjects.html +38 -11
  450. data/vendor/local/share/gtk-doc/html/gtk3/DisplayWidgets.html +19 -19
  451. data/vendor/local/share/gtk-doc/html/gtk3/GtkAboutDialog.html +15 -22
  452. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccelLabel.html +15 -18
  453. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccessible.html +14 -17
  454. data/vendor/local/share/gtk-doc/html/gtk3/GtkAction.html +347 -29
  455. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionGroup.html +158 -21
  456. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionable.html +13 -16
  457. data/vendor/local/share/gtk-doc/html/gtk3/GtkActivatable.html +58 -25
  458. data/vendor/local/share/gtk-doc/html/gtk3/GtkAdjustment.html +12 -15
  459. data/vendor/local/share/gtk-doc/html/gtk3/GtkAlignment.html +15 -18
  460. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooser.html +12 -15
  461. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserButton.html +12 -15
  462. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserDialog.html +12 -15
  463. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserWidget.html +13 -16
  464. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplication.html +82 -23
  465. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplicationWindow.html +14 -17
  466. data/vendor/local/share/gtk-doc/html/gtk3/GtkArrow.html +13 -16
  467. data/vendor/local/share/gtk-doc/html/gtk3/GtkAspectFrame.html +16 -18
  468. data/vendor/local/share/gtk-doc/html/gtk3/GtkAssistant.html +19 -22
  469. data/vendor/local/share/gtk-doc/html/gtk3/GtkBin.html +15 -15
  470. data/vendor/local/share/gtk-doc/html/gtk3/GtkBox.html +91 -19
  471. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuildable.html +16 -19
  472. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuilder.html +341 -39
  473. data/vendor/local/share/gtk-doc/html/gtk3/GtkButton.html +82 -27
  474. data/vendor/local/share/gtk-doc/html/gtk3/GtkButtonBox.html +14 -17
  475. data/vendor/local/share/gtk-doc/html/gtk3/GtkCalendar.html +12 -15
  476. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellArea.html +22 -24
  477. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaBox.html +12 -15
  478. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaContext.html +16 -19
  479. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellEditable.html +12 -15
  480. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellLayout.html +15 -18
  481. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRenderer.html +20 -23
  482. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererAccel.html +12 -15
  483. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererCombo.html +13 -16
  484. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererPixbuf.html +25 -17
  485. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererProgress.html +13 -16
  486. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpin.html +12 -15
  487. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpinner.html +12 -15
  488. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererText.html +36 -39
  489. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererToggle.html +12 -15
  490. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellView.html +15 -18
  491. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckButton.html +12 -15
  492. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckMenuItem.html +12 -15
  493. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorButton.html +22 -25
  494. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooser.html +12 -15
  495. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserDialog.html +12 -15
  496. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserWidget.html +12 -15
  497. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelection.html +17 -20
  498. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelectionDialog.html +13 -16
  499. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBox.html +43 -20
  500. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBoxText.html +14 -17
  501. data/vendor/local/share/gtk-doc/html/gtk3/GtkContainer.html +40 -21
  502. data/vendor/local/share/gtk-doc/html/gtk3/GtkCssProvider.html +42 -46
  503. data/vendor/local/share/gtk-doc/html/gtk3/GtkDialog.html +30 -34
  504. data/vendor/local/share/gtk-doc/html/gtk3/GtkDrawingArea.html +15 -18
  505. data/vendor/local/share/gtk-doc/html/gtk3/GtkEditable.html +14 -17
  506. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntry.html +121 -41
  507. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryBuffer.html +12 -15
  508. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryCompletion.html +13 -16
  509. data/vendor/local/share/gtk-doc/html/gtk3/GtkEventBox.html +13 -16
  510. data/vendor/local/share/gtk-doc/html/gtk3/GtkExpander.html +14 -17
  511. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooser.html +67 -34
  512. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserButton.html +16 -19
  513. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserDialog.html +21 -24
  514. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserWidget.html +12 -15
  515. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileFilter.html +13 -16
  516. data/vendor/local/share/gtk-doc/html/gtk3/GtkFixed.html +14 -17
  517. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontButton.html +14 -17
  518. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooser.html +37 -40
  519. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserDialog.html +13 -16
  520. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserWidget.html +12 -15
  521. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelection.html +34 -37
  522. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelectionDialog.html +22 -25
  523. data/vendor/local/share/gtk-doc/html/gtk3/GtkFrame.html +15 -17
  524. data/vendor/local/share/gtk-doc/html/gtk3/GtkGrid.html +229 -17
  525. data/vendor/local/share/gtk-doc/html/gtk3/GtkHBox.html +17 -20
  526. data/vendor/local/share/gtk-doc/html/gtk3/GtkHButtonBox.html +13 -16
  527. data/vendor/local/share/gtk-doc/html/gtk3/GtkHPaned.html +13 -16
  528. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSV.html +12 -15
  529. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScale.html +14 -17
  530. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScrollbar.html +13 -16
  531. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSeparator.html +14 -17
  532. data/vendor/local/share/gtk-doc/html/gtk3/GtkHandleBox.html +23 -26
  533. data/vendor/local/share/gtk-doc/html/gtk3/GtkHeaderBar.html +503 -0
  534. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContext.html +15 -20
  535. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContextSimple.html +12 -15
  536. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMMulticontext.html +19 -15
  537. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconTheme.html +451 -20
  538. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconView.html +25 -27
  539. data/vendor/local/share/gtk-doc/html/gtk3/GtkImage.html +64 -21
  540. data/vendor/local/share/gtk-doc/html/gtk3/GtkImageMenuItem.html +80 -22
  541. data/vendor/local/share/gtk-doc/html/gtk3/GtkInfoBar.html +102 -46
  542. data/vendor/local/share/gtk-doc/html/gtk3/GtkInvisible.html +14 -17
  543. data/vendor/local/share/gtk-doc/html/gtk3/GtkLabel.html +146 -72
  544. data/vendor/local/share/gtk-doc/html/gtk3/GtkLayout.html +16 -19
  545. data/vendor/local/share/gtk-doc/html/gtk3/GtkLevelBar.html +15 -18
  546. data/vendor/local/share/gtk-doc/html/gtk3/GtkLinkButton.html +13 -16
  547. data/vendor/local/share/gtk-doc/html/gtk3/GtkListBox.html +1251 -0
  548. data/vendor/local/share/gtk-doc/html/gtk3/GtkListStore.html +17 -20
  549. data/vendor/local/share/gtk-doc/html/gtk3/GtkLockButton.html +15 -18
  550. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenu.html +60 -26
  551. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuBar.html +13 -16
  552. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuButton.html +14 -17
  553. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuItem.html +50 -25
  554. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuShell.html +51 -15
  555. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuToolButton.html +20 -22
  556. data/vendor/local/share/gtk-doc/html/gtk3/GtkMessageDialog.html +23 -26
  557. data/vendor/local/share/gtk-doc/html/gtk3/GtkMisc.html +13 -16
  558. data/vendor/local/share/gtk-doc/html/gtk3/GtkNotebook.html +17 -20
  559. data/vendor/local/share/gtk-doc/html/gtk3/GtkNumerableIcon.html +15 -18
  560. data/vendor/local/share/gtk-doc/html/gtk3/GtkOffscreenWindow.html +19 -22
  561. data/vendor/local/share/gtk-doc/html/gtk3/GtkOverlay.html +14 -17
  562. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetup.html +13 -16
  563. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetupUnixDialog.html +12 -15
  564. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaned.html +14 -17
  565. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaperSize.html +13 -16
  566. data/vendor/local/share/gtk-doc/html/gtk3/GtkPlacesSidebar.html +983 -0
  567. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintContext.html +50 -53
  568. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintJob.html +14 -17
  569. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintSettings.html +12 -15
  570. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintUnixDialog.html +14 -17
  571. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrinter.html +12 -15
  572. data/vendor/local/share/gtk-doc/html/gtk3/GtkProgressBar.html +24 -27
  573. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioAction.html +53 -16
  574. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioButton.html +13 -16
  575. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioMenuItem.html +14 -17
  576. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioToolButton.html +22 -20
  577. data/vendor/local/share/gtk-doc/html/gtk3/GtkRange.html +13 -16
  578. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentAction.html +36 -17
  579. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooser.html +18 -23
  580. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserDialog.html +15 -18
  581. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserMenu.html +12 -15
  582. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserWidget.html +12 -15
  583. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentFilter.html +13 -16
  584. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentManager.html +19 -22
  585. data/vendor/local/share/gtk-doc/html/gtk3/GtkRevealer.html +437 -0
  586. data/vendor/local/share/gtk-doc/html/gtk3/GtkScale.html +21 -24
  587. data/vendor/local/share/gtk-doc/html/gtk3/GtkScaleButton.html +13 -16
  588. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollable.html +13 -16
  589. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollbar.html +13 -16
  590. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrolledWindow.html +25 -24
  591. data/vendor/local/share/gtk-doc/html/gtk3/GtkSearchBar.html +514 -0
  592. data/vendor/local/share/gtk-doc/html/gtk3/GtkSearchEntry.html +57 -16
  593. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparator.html +12 -15
  594. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorMenuItem.html +12 -15
  595. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorToolItem.html +12 -15
  596. data/vendor/local/share/gtk-doc/html/gtk3/GtkSettings.html +191 -47
  597. data/vendor/local/share/gtk-doc/html/gtk3/GtkSizeGroup.html +13 -16
  598. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinButton.html +14 -17
  599. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinner.html +14 -17
  600. data/vendor/local/share/gtk-doc/html/gtk3/GtkStack.html +708 -0
  601. data/vendor/local/share/gtk-doc/html/gtk3/GtkStackSwitcher.html +195 -0
  602. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusIcon.html +32 -19
  603. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusbar.html +14 -17
  604. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyle.html +108 -111
  605. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleContext.html +230 -108
  606. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleProvider.html +15 -18
  607. data/vendor/local/share/gtk-doc/html/gtk3/GtkSwitch.html +14 -17
  608. data/vendor/local/share/gtk-doc/html/gtk3/GtkTable.html +28 -31
  609. data/vendor/local/share/gtk-doc/html/gtk3/GtkTearoffMenuItem.html +14 -17
  610. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextBuffer.html +42 -34
  611. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextIter.html +67 -45
  612. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextMark.html +14 -17
  613. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTag.html +84 -133
  614. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTagTable.html +17 -19
  615. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextView.html +76 -33
  616. data/vendor/local/share/gtk-doc/html/gtk3/GtkThemingEngine.html +32 -26
  617. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleAction.html +49 -16
  618. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleButton.html +13 -16
  619. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleToolButton.html +17 -17
  620. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolButton.html +29 -18
  621. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItem.html +15 -18
  622. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItemGroup.html +20 -23
  623. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolPalette.html +20 -22
  624. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolShell.html +14 -17
  625. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolbar.html +15 -18
  626. data/vendor/local/share/gtk-doc/html/gtk3/GtkTooltip.html +19 -18
  627. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModel.html +17 -20
  628. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelFilter.html +12 -15
  629. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelSort.html +15 -18
  630. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSelection.html +12 -15
  631. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSortable.html +12 -15
  632. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeStore.html +13 -16
  633. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeView.html +23 -26
  634. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeViewColumn.html +16 -19
  635. data/vendor/local/share/gtk-doc/html/gtk3/GtkUIManager.html +114 -25
  636. data/vendor/local/share/gtk-doc/html/gtk3/GtkVBox.html +17 -20
  637. data/vendor/local/share/gtk-doc/html/gtk3/GtkVButtonBox.html +13 -16
  638. data/vendor/local/share/gtk-doc/html/gtk3/GtkVPaned.html +13 -16
  639. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScale.html +14 -17
  640. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScrollbar.html +14 -17
  641. data/vendor/local/share/gtk-doc/html/gtk3/GtkVSeparator.html +13 -16
  642. data/vendor/local/share/gtk-doc/html/gtk3/GtkViewport.html +16 -19
  643. data/vendor/local/share/gtk-doc/html/gtk3/GtkVolumeButton.html +13 -16
  644. data/vendor/local/share/gtk-doc/html/gtk3/GtkWidget.html +1137 -138
  645. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindow.html +113 -30
  646. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindowGroup.html +13 -16
  647. data/vendor/local/share/gtk-doc/html/gtk3/LayoutContainers.html +35 -20
  648. data/vendor/local/share/gtk-doc/html/gtk3/MenusAndCombos.html +10 -13
  649. data/vendor/local/share/gtk-doc/html/gtk3/MiscObjects.html +10 -10
  650. data/vendor/local/share/gtk-doc/html/gtk3/NumericEntry.html +14 -11
  651. data/vendor/local/share/gtk-doc/html/gtk3/Ornaments.html +11 -11
  652. data/vendor/local/share/gtk-doc/html/gtk3/PlugSocket.html +13 -13
  653. data/vendor/local/share/gtk-doc/html/gtk3/Printing.html +10 -10
  654. data/vendor/local/share/gtk-doc/html/gtk3/RecentDocuments.html +11 -11
  655. data/vendor/local/share/gtk-doc/html/gtk3/ScrollingWidgets.html +10 -10
  656. data/vendor/local/share/gtk-doc/html/gtk3/SelectorWidgets.html +14 -11
  657. data/vendor/local/share/gtk-doc/html/gtk3/TextWidget.html +17 -17
  658. data/vendor/local/share/gtk-doc/html/gtk3/TextWidgetObjects.html +10 -10
  659. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidget.html +15 -15
  660. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidgetObjects.html +10 -10
  661. data/vendor/local/share/gtk-doc/html/gtk3/WindowWidgets.html +17 -17
  662. data/vendor/local/share/gtk-doc/html/gtk3/aboutdialog.png +0 -0
  663. data/vendor/local/share/gtk-doc/html/gtk3/accel-label.png +0 -0
  664. data/vendor/local/share/gtk-doc/html/gtk3/annotation-glossary.html +41 -59
  665. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-0.html +41 -44
  666. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-10.html +666 -0
  667. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-2.html +39 -42
  668. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-4.html +31 -34
  669. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-6.html +27 -30
  670. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-8.html +24 -27
  671. data/vendor/local/share/gtk-doc/html/gtk3/api-index-deprecated.html +1825 -224
  672. data/vendor/local/share/gtk-doc/html/gtk3/api-index-full.html +917 -112
  673. data/vendor/local/share/gtk-doc/html/gtk3/appchooserbutton.png +0 -0
  674. data/vendor/local/share/gtk-doc/html/gtk3/appchooserdialog.png +0 -0
  675. data/vendor/local/share/gtk-doc/html/gtk3/assistant.png +0 -0
  676. data/vendor/local/share/gtk-doc/html/gtk3/broadwayd.html +10 -10
  677. data/vendor/local/share/gtk-doc/html/gtk3/button.png +0 -0
  678. data/vendor/local/share/gtk-doc/html/gtk3/ch01s02.html +130 -0
  679. data/vendor/local/share/gtk-doc/html/gtk3/ch01s03.html +248 -0
  680. data/vendor/local/share/gtk-doc/html/gtk3/ch01s04.html +157 -0
  681. data/vendor/local/share/gtk-doc/html/gtk3/ch01s05.html +1773 -0
  682. data/vendor/local/share/gtk-doc/html/gtk3/ch02.html +20 -14
  683. data/vendor/local/share/gtk-doc/html/gtk3/ch03.html +232 -156
  684. data/vendor/local/share/gtk-doc/html/gtk3/{ch25s02.html → ch24s02.html} +47 -47
  685. data/vendor/local/share/gtk-doc/html/gtk3/{ch27s02.html → ch26s02.html} +9 -9
  686. data/vendor/local/share/gtk-doc/html/gtk3/{ch29s02.html → ch28s02.html} +11 -11
  687. data/vendor/local/share/gtk-doc/html/gtk3/{ch29s03.html → ch28s03.html} +11 -11
  688. data/vendor/local/share/gtk-doc/html/gtk3/chap-drawing-model.html +10 -10
  689. data/vendor/local/share/gtk-doc/html/gtk3/check-button.png +0 -0
  690. data/vendor/local/share/gtk-doc/html/gtk3/checklist-gdkeventexpose-region.html +9 -9
  691. data/vendor/local/share/gtk-doc/html/gtk3/checklist-modifiers.html +9 -9
  692. data/vendor/local/share/gtk-doc/html/gtk3/checklist-named-icons.html +9 -9
  693. data/vendor/local/share/gtk-doc/html/gtk3/color-button.png +0 -0
  694. data/vendor/local/share/gtk-doc/html/gtk3/colorchooser.png +0 -0
  695. data/vendor/local/share/gtk-doc/html/gtk3/combo-box-entry.png +0 -0
  696. data/vendor/local/share/gtk-doc/html/gtk3/combo-box-text.png +0 -0
  697. data/vendor/local/share/gtk-doc/html/gtk3/combo-box.png +0 -0
  698. data/vendor/local/share/gtk-doc/html/gtk3/drawing.png +0 -0
  699. data/vendor/local/share/gtk-doc/html/gtk3/entry.png +0 -0
  700. data/vendor/local/share/gtk-doc/html/gtk3/exampleapp.png +0 -0
  701. data/vendor/local/share/gtk-doc/html/gtk3/file-button.png +0 -0
  702. data/vendor/local/share/gtk-doc/html/gtk3/filechooser.png +0 -0
  703. data/vendor/local/share/gtk-doc/html/gtk3/font-button.png +0 -0
  704. data/vendor/local/share/gtk-doc/html/gtk3/fontchooser.png +0 -0
  705. data/vendor/local/share/gtk-doc/html/gtk3/frame.png +0 -0
  706. data/vendor/local/share/gtk-doc/html/gtk3/getting-started-app1.png +0 -0
  707. data/vendor/local/share/gtk-doc/html/gtk3/getting-started-app2.png +0 -0
  708. data/vendor/local/share/gtk-doc/html/gtk3/getting-started-app3.png +0 -0
  709. data/vendor/local/share/gtk-doc/html/gtk3/getting-started-app4.png +0 -0
  710. data/vendor/local/share/gtk-doc/html/gtk3/getting-started-app6.png +0 -0
  711. data/vendor/local/share/gtk-doc/html/gtk3/getting-started-app7.png +0 -0
  712. data/vendor/local/share/gtk-doc/html/gtk3/getting-started-app8.png +0 -0
  713. data/vendor/local/share/gtk-doc/html/gtk3/getting-started-app9.png +0 -0
  714. data/vendor/local/share/gtk-doc/html/gtk3/glossary.html +10 -10
  715. data/vendor/local/share/gtk-doc/html/gtk3/grid-packing.png +0 -0
  716. data/vendor/local/share/gtk-doc/html/gtk3/gtk-broadway.html +11 -11
  717. data/vendor/local/share/gtk-doc/html/gtk3/gtk-building.html +20 -12
  718. data/vendor/local/share/gtk-doc/html/gtk3/gtk-compiling.html +15 -15
  719. data/vendor/local/share/gtk-doc/html/gtk3/gtk-getting-started.html +147 -965
  720. data/vendor/local/share/gtk-doc/html/gtk3/gtk-launch.html +9 -9
  721. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-2-to-3.html +67 -67
  722. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkGrid.html +13 -13
  723. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-bonus-points.html +11 -11
  724. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-checklist.html +12 -12
  725. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-css.html +11 -11
  726. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parser-extensions.html +9 -9
  727. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parsing.html +10 -10
  728. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html +10 -10
  729. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-checklist.html +12 -12
  730. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-smclient-GtkApplication.html +10 -10
  731. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-theme-GtkStyleContext-engines.html +10 -10
  732. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-unique-GtkApplication.html +12 -12
  733. data/vendor/local/share/gtk-doc/html/gtk3/gtk-osx.html +11 -11
  734. data/vendor/local/share/gtk-doc/html/gtk3/gtk-query-immodules-3.0.html +9 -9
  735. data/vendor/local/share/gtk-doc/html/gtk3/gtk-question-index.html +65 -65
  736. data/vendor/local/share/gtk-doc/html/gtk3/gtk-resources.html +13 -13
  737. data/vendor/local/share/gtk-doc/html/gtk3/gtk-running.html +19 -16
  738. data/vendor/local/share/gtk-doc/html/gtk3/gtk-update-icon-cache.html +9 -9
  739. data/vendor/local/share/gtk-doc/html/gtk3/gtk-wayland.html +12 -12
  740. data/vendor/local/share/gtk-doc/html/gtk3/gtk-windows.html +11 -11
  741. data/vendor/local/share/gtk-doc/html/gtk3/gtk-x11.html +27 -12
  742. data/vendor/local/share/gtk-doc/html/gtk3/gtk.html +26 -49
  743. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Accelerator-Maps.html +14 -17
  744. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Bindings.html +20 -23
  745. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Clipboards.html +17 -18
  746. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Drag-and-Drop.html +32 -56
  747. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Feature-Test-Macros.html +17 -20
  748. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Filesystem-utilities.html +14 -17
  749. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-General.html +26 -29
  750. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkGradient.html +24 -27
  751. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkPlug.html +303 -0
  752. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkSocket.html +273 -0
  753. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkStyleProperties.html +17 -20
  754. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkSymbolicColor.html +22 -25
  755. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkTreeView-drag-and-drop.html +12 -15
  756. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkWidgetPath.html +16 -19
  757. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-High-level-Printing-API.html +29 -32
  758. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Keyboard-Accelerators.html +18 -18
  759. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Orientable.html +15 -18
  760. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Resource-Files.html +45 -48
  761. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Selections.html +15 -18
  762. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Standard-Enumerations.html +13 -16
  763. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Stock-Items.html +568 -123
  764. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Testing.html +40 -16
  765. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Themeable-Stock-Images.html +248 -27
  766. data/vendor/local/share/gtk-doc/html/gtk3/gtk3.devhelp2 +6347 -6099
  767. data/vendor/local/share/gtk-doc/html/gtk3/gtkbase.html +11 -14
  768. data/vendor/local/share/gtk-doc/html/gtk3/gtkobjects.html +139 -118
  769. data/vendor/local/share/gtk-doc/html/gtk3/headerbar.png +0 -0
  770. data/vendor/local/share/gtk-doc/html/gtk3/hello-world.png +0 -0
  771. data/vendor/local/share/gtk-doc/html/gtk3/home.png +0 -0
  772. data/vendor/local/share/gtk-doc/html/gtk3/icon-view.png +0 -0
  773. data/vendor/local/share/gtk-doc/html/gtk3/image.png +0 -0
  774. data/vendor/local/share/gtk-doc/html/gtk3/index.html +248 -209
  775. data/vendor/local/share/gtk-doc/html/gtk3/index.sgml +5994 -5707
  776. data/vendor/local/share/gtk-doc/html/gtk3/info-bar.png +0 -0
  777. data/vendor/local/share/gtk-doc/html/gtk3/label.png +0 -0
  778. data/vendor/local/share/gtk-doc/html/gtk3/left-insensitive.png +0 -0
  779. data/vendor/local/share/gtk-doc/html/gtk3/left.png +0 -0
  780. data/vendor/local/share/gtk-doc/html/gtk3/levelbar.png +0 -0
  781. data/vendor/local/share/gtk-doc/html/gtk3/link-button.png +0 -0
  782. data/vendor/local/share/gtk-doc/html/gtk3/list-and-tree.png +0 -0
  783. data/vendor/local/share/gtk-doc/html/gtk3/list-box.png +0 -0
  784. data/vendor/local/share/gtk-doc/html/gtk3/lock-button.png +0 -0
  785. data/vendor/local/share/gtk-doc/html/gtk3/menu-button.png +0 -0
  786. data/vendor/local/share/gtk-doc/html/gtk3/menubar.png +0 -0
  787. data/vendor/local/share/gtk-doc/html/gtk3/messagedialog.png +0 -0
  788. data/vendor/local/share/gtk-doc/html/gtk3/migrating.html +31 -31
  789. data/vendor/local/share/gtk-doc/html/gtk3/multiline-text.png +0 -0
  790. data/vendor/local/share/gtk-doc/html/gtk3/notebook.png +0 -0
  791. data/vendor/local/share/gtk-doc/html/gtk3/pagesetupdialog.png +0 -0
  792. data/vendor/local/share/gtk-doc/html/gtk3/panes.png +0 -0
  793. data/vendor/local/share/gtk-doc/html/gtk3/placessidebar.png +0 -0
  794. data/vendor/local/share/gtk-doc/html/gtk3/platform-support.html +75 -0
  795. data/vendor/local/share/gtk-doc/html/gtk3/printdialog.png +0 -0
  796. data/vendor/local/share/gtk-doc/html/gtk3/progressbar.png +0 -0
  797. data/vendor/local/share/gtk-doc/html/gtk3/pt06.html +9 -9
  798. data/vendor/local/share/gtk-doc/html/gtk3/radio-group.png +0 -0
  799. data/vendor/local/share/gtk-doc/html/gtk3/recentchooserdialog.png +0 -0
  800. data/vendor/local/share/gtk-doc/html/gtk3/right-insensitive.png +0 -0
  801. data/vendor/local/share/gtk-doc/html/gtk3/right.png +0 -0
  802. data/vendor/local/share/gtk-doc/html/gtk3/scales.png +0 -0
  803. data/vendor/local/share/gtk-doc/html/gtk3/scrollbar.png +0 -0
  804. data/vendor/local/share/gtk-doc/html/gtk3/scrolledwindow.png +0 -0
  805. data/vendor/local/share/gtk-doc/html/gtk3/search-entry.png +0 -0
  806. data/vendor/local/share/gtk-doc/html/gtk3/separator.png +0 -0
  807. data/vendor/local/share/gtk-doc/html/gtk3/spinbutton.png +0 -0
  808. data/vendor/local/share/gtk-doc/html/gtk3/spinner.png +0 -0
  809. data/vendor/local/share/gtk-doc/html/gtk3/stack.png +0 -0
  810. data/vendor/local/share/gtk-doc/html/gtk3/stackswitcher.png +0 -0
  811. data/vendor/local/share/gtk-doc/html/gtk3/statusbar.png +0 -0
  812. data/vendor/local/share/gtk-doc/html/gtk3/style.css +71 -16
  813. data/vendor/local/share/gtk-doc/html/gtk3/switch.png +0 -0
  814. data/vendor/local/share/gtk-doc/html/gtk3/theming.html +10 -10
  815. data/vendor/local/share/gtk-doc/html/gtk3/toggle-button.png +0 -0
  816. data/vendor/local/share/gtk-doc/html/gtk3/toolbar.png +0 -0
  817. data/vendor/local/share/gtk-doc/html/gtk3/toolpalette.png +0 -0
  818. data/vendor/local/share/gtk-doc/html/gtk3/up-insensitive.png +0 -0
  819. data/vendor/local/share/gtk-doc/html/gtk3/up.png +0 -0
  820. data/vendor/local/share/gtk-doc/html/gtk3/volumebutton.png +0 -0
  821. data/vendor/local/share/gtk-doc/html/gtk3/window-default.png +0 -0
  822. data/vendor/local/share/gtk-doc/html/gtk3/window.png +0 -0
  823. data/vendor/local/share/locale/af/LC_MESSAGES/gtk30.mo +0 -0
  824. data/vendor/local/share/locale/an/LC_MESSAGES/gtk30.mo +0 -0
  825. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30.mo +0 -0
  826. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30-properties.mo +0 -0
  827. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30.mo +0 -0
  828. data/vendor/local/share/locale/be/LC_MESSAGES/gtk30.mo +0 -0
  829. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30.mo +0 -0
  830. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30.mo +0 -0
  831. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30.mo +0 -0
  832. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30-properties.mo +0 -0
  833. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30.mo +0 -0
  834. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo +0 -0
  835. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo +0 -0
  836. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30-properties.mo +0 -0
  837. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30.mo +0 -0
  838. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30-properties.mo +0 -0
  839. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30.mo +0 -0
  840. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30-properties.mo +0 -0
  841. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30.mo +0 -0
  842. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30-properties.mo +0 -0
  843. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30.mo +0 -0
  844. data/vendor/local/share/locale/en/LC_MESSAGES/gtk30.mo +0 -0
  845. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30.mo +0 -0
  846. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30.mo +0 -0
  847. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30-properties.mo +0 -0
  848. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30.mo +0 -0
  849. data/vendor/local/share/locale/et/LC_MESSAGES/gtk30.mo +0 -0
  850. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30-properties.mo +0 -0
  851. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30.mo +0 -0
  852. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30.mo +0 -0
  853. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30-properties.mo +0 -0
  854. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30.mo +0 -0
  855. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30-properties.mo +0 -0
  856. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30.mo +0 -0
  857. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30.mo +0 -0
  858. data/vendor/local/share/locale/gd/LC_MESSAGES/gtk30-properties.mo +0 -0
  859. data/vendor/local/share/locale/gd/LC_MESSAGES/gtk30.mo +0 -0
  860. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30-properties.mo +0 -0
  861. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30.mo +0 -0
  862. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30.mo +0 -0
  863. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30-properties.mo +0 -0
  864. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30.mo +0 -0
  865. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30.mo +0 -0
  866. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30-properties.mo +0 -0
  867. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30.mo +0 -0
  868. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30-properties.mo +0 -0
  869. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30.mo +0 -0
  870. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30-properties.mo +0 -0
  871. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30.mo +0 -0
  872. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30-properties.mo +0 -0
  873. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30.mo +0 -0
  874. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30.mo +0 -0
  875. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30.mo +0 -0
  876. data/vendor/local/share/locale/km/LC_MESSAGES/gtk30.mo +0 -0
  877. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30-properties.mo +0 -0
  878. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30.mo +0 -0
  879. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30-properties.mo +0 -0
  880. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30.mo +0 -0
  881. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30-properties.mo +0 -0
  882. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30.mo +0 -0
  883. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30-properties.mo +0 -0
  884. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30.mo +0 -0
  885. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30.mo +0 -0
  886. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30-properties.mo +0 -0
  887. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30.mo +0 -0
  888. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30.mo +0 -0
  889. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30.mo +0 -0
  890. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30.mo +0 -0
  891. data/vendor/local/share/locale/or/LC_MESSAGES/gtk30.mo +0 -0
  892. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30-properties.mo +0 -0
  893. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30.mo +0 -0
  894. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30-properties.mo +0 -0
  895. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30.mo +0 -0
  896. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30-properties.mo +0 -0
  897. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30.mo +0 -0
  898. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo +0 -0
  899. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30.mo +0 -0
  900. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30.mo +0 -0
  901. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30-properties.mo +0 -0
  902. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30.mo +0 -0
  903. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30-properties.mo +0 -0
  904. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30.mo +0 -0
  905. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30-properties.mo +0 -0
  906. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30.mo +0 -0
  907. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30-properties.mo +0 -0
  908. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30.mo +0 -0
  909. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
  910. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30.mo +0 -0
  911. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30.mo +0 -0
  912. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30-properties.mo +0 -0
  913. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30.mo +0 -0
  914. data/vendor/local/share/locale/te/LC_MESSAGES/gtk30.mo +0 -0
  915. data/vendor/local/share/locale/tg/LC_MESSAGES/gtk30-properties.mo +0 -0
  916. data/vendor/local/share/locale/tg/LC_MESSAGES/gtk30.mo +0 -0
  917. data/vendor/local/share/locale/th/LC_MESSAGES/gtk30.mo +0 -0
  918. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30-properties.mo +0 -0
  919. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30.mo +0 -0
  920. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30.mo +0 -0
  921. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30.mo +0 -0
  922. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo +0 -0
  923. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30.mo +0 -0
  924. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo +0 -0
  925. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30.mo +0 -0
  926. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo +0 -0
  927. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30.mo +0 -0
  928. data/vendor/local/share/man/man1/broadwayd.1 +1 -1
  929. data/vendor/local/share/man/man1/gtk-launch.1 +1 -1
  930. data/vendor/local/share/man/man1/gtk-query-immodules-3.0.1 +1 -1
  931. data/vendor/local/share/man/man1/gtk-update-icon-cache.1 +1 -1
  932. metadata +86 -39
  933. data/vendor/local/lib/gdk-win32-3.0.def +0 -539
  934. data/vendor/local/lib/gtk-win32-3.0.def +0 -3875
  935. data/vendor/local/share/gtk-doc/html/gtk3/Actions.html +0 -53
  936. data/vendor/local/share/gtk-doc/html/gtk3/GtkPlug.html +0 -388
  937. data/vendor/local/share/gtk-doc/html/gtk3/GtkSocket.html +0 -362
  938. data/vendor/local/share/gtk-doc/html/gtk3/colorsel.png +0 -0
  939. data/vendor/local/share/gtk-doc/html/gtk3/fontsel.png +0 -0
@@ -22,7 +22,7 @@
22
22
  #error "Only <gtk/gtk.h> can be included directly."
23
23
  #endif
24
24
 
25
- #include <gtk/gtkaction.h>
25
+ #include <gtk/deprecated/gtkaction.h>
26
26
 
27
27
  G_BEGIN_DECLS
28
28
 
@@ -48,6 +48,8 @@ typedef struct _GtkActivatableIface GtkActivatableIface;
48
48
  * with a %NULL action at times</para></note>
49
49
  *
50
50
  * Since: 2.16
51
+ *
52
+ * Deprecated: 3.10
51
53
  */
52
54
 
53
55
  struct _GtkActivatableIface
@@ -63,20 +65,27 @@ struct _GtkActivatableIface
63
65
  };
64
66
 
65
67
 
68
+ GDK_DEPRECATED_IN_3_10
66
69
  GType gtk_activatable_get_type (void) G_GNUC_CONST;
67
70
 
71
+ GDK_DEPRECATED_IN_3_10
68
72
  void gtk_activatable_sync_action_properties (GtkActivatable *activatable,
69
73
  GtkAction *action);
70
74
 
75
+ GDK_DEPRECATED_IN_3_10
71
76
  void gtk_activatable_set_related_action (GtkActivatable *activatable,
72
77
  GtkAction *action);
78
+ GDK_DEPRECATED_IN_3_10
73
79
  GtkAction *gtk_activatable_get_related_action (GtkActivatable *activatable);
74
80
 
81
+ GDK_DEPRECATED_IN_3_10
75
82
  void gtk_activatable_set_use_action_appearance (GtkActivatable *activatable,
76
83
  gboolean use_appearance);
84
+ GDK_DEPRECATED_IN_3_10
77
85
  gboolean gtk_activatable_get_use_action_appearance (GtkActivatable *activatable);
78
86
 
79
87
  /* For use in activatable implementations */
88
+ GDK_DEPRECATED_IN_3_10
80
89
  void gtk_activatable_do_set_related_action (GtkActivatable *activatable,
81
90
  GtkAction *action);
82
91
 
@@ -86,6 +86,7 @@ struct _GtkColorSelectionClass
86
86
 
87
87
  /* ColorSelection */
88
88
 
89
+ GDK_DEPRECATED_IN_3_4
89
90
  GType gtk_color_selection_get_type (void) G_GNUC_CONST;
90
91
  GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_widget_new)
91
92
  GtkWidget *gtk_color_selection_new (void);
@@ -136,6 +137,7 @@ GDK_DEPRECATED_IN_3_4
136
137
  gchar* gtk_color_selection_palette_to_string (const GdkColor *colors,
137
138
  gint n_colors);
138
139
 
140
+ GDK_DEPRECATED_IN_3_4
139
141
  GtkColorSelectionChangePaletteWithScreenFunc gtk_color_selection_set_change_palette_with_screen_hook (GtkColorSelectionChangePaletteWithScreenFunc func);
140
142
 
141
143
  GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_set_rgba)
@@ -68,6 +68,7 @@ struct _GtkColorSelectionDialogClass
68
68
 
69
69
 
70
70
  /* ColorSelectionDialog */
71
+ GDK_DEPRECATED_IN_3_4
71
72
  GType gtk_color_selection_dialog_get_type (void) G_GNUC_CONST;
72
73
  GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_dialog_new)
73
74
  GtkWidget* gtk_color_selection_dialog_new (const gchar *title);
@@ -103,6 +103,7 @@ struct _GtkFontSelectionDialogClass
103
103
  void (*_gtk_reserved4) (void);
104
104
  };
105
105
 
106
+ GDK_DEPRECATED_IN_3_2
106
107
  GType gtk_font_selection_get_type (void) G_GNUC_CONST;
107
108
  GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
108
109
  GtkWidget * gtk_font_selection_new (void);
@@ -136,7 +137,7 @@ GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
136
137
  void gtk_font_selection_set_preview_text (GtkFontSelection *fontsel,
137
138
  const gchar *text);
138
139
 
139
-
140
+ GDK_DEPRECATED_IN_3_2
140
141
  GType gtk_font_selection_dialog_get_type (void) G_GNUC_CONST;
141
142
  GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
142
143
  GtkWidget *gtk_font_selection_dialog_new (const gchar *title);
@@ -31,6 +31,7 @@ G_BEGIN_DECLS
31
31
 
32
32
  #define GTK_TYPE_GRADIENT (gtk_gradient_get_type ())
33
33
 
34
+ GDK_DEPRECATED_IN_3_8
34
35
  GType gtk_gradient_get_type (void) G_GNUC_CONST;
35
36
 
36
37
  GDK_DEPRECATED_IN_3_8
@@ -74,6 +74,7 @@ struct _GtkHandleBoxClass
74
74
  };
75
75
 
76
76
 
77
+ GDK_DEPRECATED_IN_3_4
77
78
  GType gtk_handle_box_get_type (void) G_GNUC_CONST;
78
79
  GDK_DEPRECATED_IN_3_4
79
80
  GtkWidget* gtk_handle_box_new (void);
@@ -56,6 +56,7 @@ struct _GtkHButtonBoxClass
56
56
  };
57
57
 
58
58
 
59
+ GDK_DEPRECATED_IN_3_2
59
60
  GType gtk_hbutton_box_get_type (void) G_GNUC_CONST;
60
61
  GDK_DEPRECATED_IN_3_2_FOR(gtk_button_box_new)
61
62
  GtkWidget* gtk_hbutton_box_new (void);
@@ -57,6 +57,7 @@ struct _GtkHBoxClass
57
57
  };
58
58
 
59
59
 
60
+ GDK_DEPRECATED_IN_3_2
60
61
  GType gtk_hbox_get_type (void) G_GNUC_CONST;
61
62
  GDK_DEPRECATED_IN_3_2_FOR(gtk_box_new)
62
63
  GtkWidget * gtk_hbox_new (gboolean homogeneous,
@@ -55,6 +55,7 @@ struct _GtkHPanedClass
55
55
  };
56
56
 
57
57
 
58
+ GDK_DEPRECATED_IN_3_2
58
59
  GType gtk_hpaned_get_type (void) G_GNUC_CONST;
59
60
  GDK_DEPRECATED_IN_3_2_FOR(gtk_paned_new)
60
61
  GtkWidget * gtk_hpaned_new (void);
@@ -55,6 +55,7 @@ struct _GtkHScaleClass
55
55
  };
56
56
 
57
57
 
58
+ GDK_DEPRECATED_IN_3_2
58
59
  GType gtk_hscale_get_type (void) G_GNUC_CONST;
59
60
  GDK_DEPRECATED_IN_3_2_FOR(gtk_scale_new)
60
61
  GtkWidget* gtk_hscale_new (GtkAdjustment *adjustment);
@@ -55,6 +55,7 @@ struct _GtkHScrollbarClass
55
55
  };
56
56
 
57
57
 
58
+ GDK_DEPRECATED_IN_3_2
58
59
  GType gtk_hscrollbar_get_type (void) G_GNUC_CONST;
59
60
  GDK_DEPRECATED_IN_3_2_FOR(gtk_scrollbar_new)
60
61
  GtkWidget* gtk_hscrollbar_new (GtkAdjustment *adjustment);
@@ -55,6 +55,7 @@ struct _GtkHSeparatorClass
55
55
  };
56
56
 
57
57
 
58
+ GDK_DEPRECATED_IN_3_2
58
59
  GType gtk_hseparator_get_type (void) G_GNUC_CONST;
59
60
  GDK_DEPRECATED_IN_3_2_FOR(gtk_separator_new)
60
61
  GtkWidget* gtk_hseparator_new (void);
@@ -77,6 +77,7 @@ struct _GtkHSVClass
77
77
  };
78
78
 
79
79
 
80
+ GDK_DEPRECATED_IN_3_4
80
81
  GType gtk_hsv_get_type (void) G_GNUC_CONST;
81
82
  GDK_DEPRECATED_IN_3_4
82
83
  GtkWidget* gtk_hsv_new (void);
@@ -68,18 +68,25 @@ struct _GtkIconFactoryClass
68
68
  void (*_gtk_reserved4) (void);
69
69
  };
70
70
 
71
+ GDK_DEPRECATED_IN_3_10
71
72
  GType gtk_icon_factory_get_type (void) G_GNUC_CONST;
73
+ GDK_DEPRECATED_IN_3_10
72
74
  GtkIconFactory* gtk_icon_factory_new (void);
75
+ GDK_DEPRECATED_IN_3_10
73
76
  void gtk_icon_factory_add (GtkIconFactory *factory,
74
77
  const gchar *stock_id,
75
78
  GtkIconSet *icon_set);
79
+ GDK_DEPRECATED_IN_3_10
76
80
  GtkIconSet* gtk_icon_factory_lookup (GtkIconFactory *factory,
77
81
  const gchar *stock_id);
78
82
 
79
83
  /* Manage the default icon factory stack */
80
84
 
85
+ GDK_DEPRECATED_IN_3_10
81
86
  void gtk_icon_factory_add_default (GtkIconFactory *factory);
87
+ GDK_DEPRECATED_IN_3_10
82
88
  void gtk_icon_factory_remove_default (GtkIconFactory *factory);
89
+ GDK_DEPRECATED_IN_3_10
83
90
  GtkIconSet* gtk_icon_factory_lookup_default (const gchar *stock_id);
84
91
 
85
92
  /* Get preferred real size from registered semantic size. Note that
@@ -94,31 +101,43 @@ GtkIconSet* gtk_icon_factory_lookup_default (const gchar *stock_id);
94
101
  */
95
102
 
96
103
  #ifndef GDK_MULTIHEAD_SAFE
104
+ GDK_AVAILABLE_IN_ALL
97
105
  gboolean gtk_icon_size_lookup (GtkIconSize size,
98
106
  gint *width,
99
107
  gint *height);
100
108
  #endif /* GDK_MULTIHEAD_SAFE */
109
+ GDK_DEPRECATED_IN_3_10_FOR(gtk_icon_size_lookup)
101
110
  gboolean gtk_icon_size_lookup_for_settings (GtkSettings *settings,
102
111
  GtkIconSize size,
103
112
  gint *width,
104
113
  gint *height);
105
114
 
115
+ GDK_DEPRECATED_IN_3_10
106
116
  GtkIconSize gtk_icon_size_register (const gchar *name,
107
117
  gint width,
108
118
  gint height);
119
+ GDK_DEPRECATED_IN_3_10
109
120
  void gtk_icon_size_register_alias (const gchar *alias,
110
121
  GtkIconSize target);
122
+ GDK_DEPRECATED_IN_3_10
111
123
  GtkIconSize gtk_icon_size_from_name (const gchar *name);
124
+ GDK_DEPRECATED_IN_3_10
112
125
  const gchar* gtk_icon_size_get_name (GtkIconSize size);
113
126
 
114
127
  /* Icon sets */
115
128
 
129
+ GDK_DEPRECATED_IN_3_10
116
130
  GType gtk_icon_set_get_type (void) G_GNUC_CONST;
131
+ GDK_DEPRECATED_IN_3_10
117
132
  GtkIconSet* gtk_icon_set_new (void);
133
+ GDK_DEPRECATED_IN_3_10
118
134
  GtkIconSet* gtk_icon_set_new_from_pixbuf (GdkPixbuf *pixbuf);
119
135
 
136
+ GDK_DEPRECATED_IN_3_10
120
137
  GtkIconSet* gtk_icon_set_ref (GtkIconSet *icon_set);
138
+ GDK_DEPRECATED_IN_3_10
121
139
  void gtk_icon_set_unref (GtkIconSet *icon_set);
140
+ GDK_DEPRECATED_IN_3_10
122
141
  GtkIconSet* gtk_icon_set_copy (GtkIconSet *icon_set);
123
142
 
124
143
  GDK_DEPRECATED_IN_3_0_FOR(gtk_icon_set_render_icon_pixbuf)
@@ -130,46 +149,70 @@ GdkPixbuf* gtk_icon_set_render_icon (GtkIconSet *icon_set,
130
149
  GtkWidget *widget,
131
150
  const gchar *detail);
132
151
 
152
+ GDK_DEPRECATED_IN_3_10
133
153
  void gtk_icon_set_add_source (GtkIconSet *icon_set,
134
154
  const GtkIconSource *source);
135
155
 
156
+ GDK_DEPRECATED_IN_3_10
136
157
  void gtk_icon_set_get_sizes (GtkIconSet *icon_set,
137
158
  GtkIconSize **sizes,
138
159
  gint *n_sizes);
139
160
 
161
+ GDK_DEPRECATED_IN_3_10
140
162
  GType gtk_icon_source_get_type (void) G_GNUC_CONST;
163
+ GDK_DEPRECATED_IN_3_10
141
164
  GtkIconSource* gtk_icon_source_new (void);
165
+ GDK_DEPRECATED_IN_3_10
142
166
  GtkIconSource* gtk_icon_source_copy (const GtkIconSource *source);
167
+ GDK_DEPRECATED_IN_3_10
143
168
  void gtk_icon_source_free (GtkIconSource *source);
144
169
 
170
+ GDK_DEPRECATED_IN_3_10
145
171
  void gtk_icon_source_set_filename (GtkIconSource *source,
146
172
  const gchar *filename);
173
+ GDK_DEPRECATED_IN_3_10
147
174
  void gtk_icon_source_set_icon_name (GtkIconSource *source,
148
175
  const gchar *icon_name);
176
+ GDK_DEPRECATED_IN_3_10
149
177
  void gtk_icon_source_set_pixbuf (GtkIconSource *source,
150
178
  GdkPixbuf *pixbuf);
151
179
 
180
+ GDK_DEPRECATED_IN_3_10
152
181
  const gchar * gtk_icon_source_get_filename (const GtkIconSource *source);
182
+ GDK_DEPRECATED_IN_3_10
153
183
  const gchar * gtk_icon_source_get_icon_name (const GtkIconSource *source);
184
+ GDK_DEPRECATED_IN_3_10
154
185
  GdkPixbuf* gtk_icon_source_get_pixbuf (const GtkIconSource *source);
155
186
 
187
+ GDK_DEPRECATED_IN_3_10
156
188
  void gtk_icon_source_set_direction_wildcarded (GtkIconSource *source,
157
189
  gboolean setting);
190
+ GDK_DEPRECATED_IN_3_10
158
191
  void gtk_icon_source_set_state_wildcarded (GtkIconSource *source,
159
192
  gboolean setting);
193
+ GDK_DEPRECATED_IN_3_10
160
194
  void gtk_icon_source_set_size_wildcarded (GtkIconSource *source,
161
195
  gboolean setting);
196
+ GDK_DEPRECATED_IN_3_10
162
197
  gboolean gtk_icon_source_get_size_wildcarded (const GtkIconSource *source);
198
+ GDK_DEPRECATED_IN_3_10
163
199
  gboolean gtk_icon_source_get_state_wildcarded (const GtkIconSource *source);
200
+ GDK_DEPRECATED_IN_3_10
164
201
  gboolean gtk_icon_source_get_direction_wildcarded (const GtkIconSource *source);
202
+ GDK_DEPRECATED_IN_3_10
165
203
  void gtk_icon_source_set_direction (GtkIconSource *source,
166
204
  GtkTextDirection direction);
205
+ GDK_DEPRECATED_IN_3_10
167
206
  void gtk_icon_source_set_state (GtkIconSource *source,
168
207
  GtkStateType state);
208
+ GDK_DEPRECATED_IN_3_10
169
209
  void gtk_icon_source_set_size (GtkIconSource *source,
170
210
  GtkIconSize size);
211
+ GDK_DEPRECATED_IN_3_10
171
212
  GtkTextDirection gtk_icon_source_get_direction (const GtkIconSource *source);
213
+ GDK_DEPRECATED_IN_3_10
172
214
  GtkStateType gtk_icon_source_get_state (const GtkIconSource *source);
215
+ GDK_DEPRECATED_IN_3_10
173
216
  GtkIconSize gtk_icon_source_get_size (const GtkIconSource *source);
174
217
 
175
218
 
@@ -66,22 +66,33 @@ struct _GtkImageMenuItemClass
66
66
  void (*_gtk_reserved4) (void);
67
67
  };
68
68
 
69
-
69
+ GDK_DEPRECATED_IN_3_10_FOR(gtk_menu_item_get_type)
70
70
  GType gtk_image_menu_item_get_type (void) G_GNUC_CONST;
71
+ GDK_DEPRECATED_IN_3_10_FOR(gtk_menu_item_new)
71
72
  GtkWidget* gtk_image_menu_item_new (void);
73
+ GDK_DEPRECATED_IN_3_10_FOR(gtk_menu_item_new_with_label)
72
74
  GtkWidget* gtk_image_menu_item_new_with_label (const gchar *label);
75
+ GDK_DEPRECATED_IN_3_10_FOR(gtk_menu_item_new_with_mnemonic)
73
76
  GtkWidget* gtk_image_menu_item_new_with_mnemonic (const gchar *label);
77
+ GDK_DEPRECATED_IN_3_10_FOR(gtk_menu_item_new)
74
78
  GtkWidget* gtk_image_menu_item_new_from_stock (const gchar *stock_id,
75
79
  GtkAccelGroup *accel_group);
80
+ GDK_DEPRECATED_IN_3_10
76
81
  void gtk_image_menu_item_set_always_show_image (GtkImageMenuItem *image_menu_item,
77
82
  gboolean always_show);
83
+ GDK_DEPRECATED_IN_3_10
78
84
  gboolean gtk_image_menu_item_get_always_show_image (GtkImageMenuItem *image_menu_item);
85
+ GDK_DEPRECATED_IN_3_10
79
86
  void gtk_image_menu_item_set_image (GtkImageMenuItem *image_menu_item,
80
87
  GtkWidget *image);
88
+ GDK_DEPRECATED_IN_3_10
81
89
  GtkWidget* gtk_image_menu_item_get_image (GtkImageMenuItem *image_menu_item);
90
+ GDK_DEPRECATED_IN_3_10
82
91
  void gtk_image_menu_item_set_use_stock (GtkImageMenuItem *image_menu_item,
83
92
  gboolean use_stock);
93
+ GDK_DEPRECATED_IN_3_10
84
94
  gboolean gtk_image_menu_item_get_use_stock (GtkImageMenuItem *image_menu_item);
95
+ GDK_DEPRECATED_IN_3_10
85
96
  void gtk_image_menu_item_set_accel_group (GtkImageMenuItem *image_menu_item,
86
97
  GtkAccelGroup *accel_group);
87
98
 
@@ -33,7 +33,7 @@
33
33
  #error "Only <gtk/gtk.h> can be included directly."
34
34
  #endif
35
35
 
36
- #include <gtk/gtktoggleaction.h>
36
+ #include <gtk/deprecated/gtktoggleaction.h>
37
37
 
38
38
  G_BEGIN_DECLS
39
39
 
@@ -69,18 +69,25 @@ struct _GtkRadioActionClass
69
69
  void (*_gtk_reserved4) (void);
70
70
  };
71
71
 
72
+ GDK_DEPRECATED_IN_3_10
72
73
  GType gtk_radio_action_get_type (void) G_GNUC_CONST;
74
+ GDK_DEPRECATED_IN_3_10
73
75
  GtkRadioAction *gtk_radio_action_new (const gchar *name,
74
76
  const gchar *label,
75
77
  const gchar *tooltip,
76
78
  const gchar *stock_id,
77
79
  gint value);
80
+ GDK_DEPRECATED_IN_3_10
78
81
  GSList *gtk_radio_action_get_group (GtkRadioAction *action);
82
+ GDK_DEPRECATED_IN_3_10
79
83
  void gtk_radio_action_set_group (GtkRadioAction *action,
80
84
  GSList *group);
85
+ GDK_DEPRECATED_IN_3_10
81
86
  void gtk_radio_action_join_group (GtkRadioAction *action,
82
87
  GtkRadioAction *group_source);
88
+ GDK_DEPRECATED_IN_3_10
83
89
  gint gtk_radio_action_get_current_value (GtkRadioAction *action);
90
+ GDK_DEPRECATED_IN_3_10
84
91
  void gtk_radio_action_set_current_value (GtkRadioAction *action,
85
92
  gint current_value);
86
93
 
@@ -175,6 +175,7 @@ void gtk_rc_parse_string (const gchar *rc_string);
175
175
  GDK_DEPRECATED_IN_3_0_FOR(GtkStyleContext)
176
176
  gboolean gtk_rc_reparse_all (void);
177
177
 
178
+ GDK_DEPRECATED_IN_3_0
178
179
  GType gtk_rc_style_get_type (void) G_GNUC_CONST;
179
180
  GDK_DEPRECATED_IN_3_0_FOR(GtkStyleContext)
180
181
  GtkRcStyle* gtk_rc_style_new (void);
@@ -24,7 +24,7 @@
24
24
  #error "Only <gtk/gtk.h> can be included directly."
25
25
  #endif
26
26
 
27
- #include <gtk/gtkaction.h>
27
+ #include <gtk/deprecated/gtkaction.h>
28
28
  #include <gtk/gtkrecentmanager.h>
29
29
 
30
30
  G_BEGIN_DECLS
@@ -59,17 +59,22 @@ struct _GtkRecentActionClass
59
59
  void (*_gtk_reserved4) (void);
60
60
  };
61
61
 
62
+ GDK_DEPRECATED_IN_3_10
62
63
  GType gtk_recent_action_get_type (void) G_GNUC_CONST;
64
+ GDK_DEPRECATED_IN_3_10
63
65
  GtkAction *gtk_recent_action_new (const gchar *name,
64
66
  const gchar *label,
65
67
  const gchar *tooltip,
66
68
  const gchar *stock_id);
69
+ GDK_DEPRECATED_IN_3_10
67
70
  GtkAction *gtk_recent_action_new_for_manager (const gchar *name,
68
71
  const gchar *label,
69
72
  const gchar *tooltip,
70
73
  const gchar *stock_id,
71
74
  GtkRecentManager *manager);
75
+ GDK_DEPRECATED_IN_3_10
72
76
  gboolean gtk_recent_action_get_show_numbers (GtkRecentAction *action);
77
+ GDK_DEPRECATED_IN_3_10
73
78
  void gtk_recent_action_set_show_numbers (GtkRecentAction *action,
74
79
  gboolean show_numbers);
75
80
 
@@ -44,6 +44,8 @@ G_BEGIN_DECLS
44
44
  * and #GtkActionGroup.
45
45
  *
46
46
  * Returns: the translated message
47
+ *
48
+ * Deprecated: 3.10
47
49
  */
48
50
  typedef gchar * (*GtkTranslateFunc) (const gchar *path,
49
51
  gpointer func_data);
@@ -59,26 +61,41 @@ struct _GtkStockItem
59
61
  gchar *translation_domain;
60
62
  };
61
63
 
64
+ GDK_DEPRECATED_IN_3_10
62
65
  void gtk_stock_add (const GtkStockItem *items,
63
66
  guint n_items);
67
+ GDK_DEPRECATED_IN_3_10
64
68
  void gtk_stock_add_static (const GtkStockItem *items,
65
69
  guint n_items);
70
+ GDK_DEPRECATED_IN_3_10
66
71
  gboolean gtk_stock_lookup (const gchar *stock_id,
67
72
  GtkStockItem *item);
68
73
 
69
74
  /* Should free the list (and free each string in it also).
70
75
  * This function is only useful for GUI builders and such.
71
76
  */
77
+ GDK_DEPRECATED_IN_3_10
72
78
  GSList* gtk_stock_list_ids (void);
73
79
 
80
+ GDK_DEPRECATED_IN_3_10
74
81
  GtkStockItem *gtk_stock_item_copy (const GtkStockItem *item);
82
+ GDK_DEPRECATED_IN_3_10
75
83
  void gtk_stock_item_free (GtkStockItem *item);
76
84
 
85
+ GDK_DEPRECATED_IN_3_10
77
86
  void gtk_stock_set_translate_func (const gchar *domain,
78
87
  GtkTranslateFunc func,
79
88
  gpointer data,
80
89
  GDestroyNotify notify);
81
90
 
91
+ /* the following type exists just so we can get deprecation warnings */
92
+ #ifndef GDK_DISABLE_DEPRECATION_WARNINGS
93
+ #if GDK_VERSION_MIN_REQUIRED >= GDK_VERSION_3_10
94
+ G_DEPRECATED
95
+ #endif
96
+ #endif
97
+ typedef char * GtkStock;
98
+
82
99
  /* Stock IDs (not all are stock items; some are images only) */
83
100
  /**
84
101
  * GTK_STOCK_ABOUT:
@@ -87,40 +104,50 @@ void gtk_stock_set_translate_func (const gchar *domain,
87
104
  * <inlinegraphic fileref="help-about.png" format="PNG"></inlinegraphic>
88
105
  *
89
106
  * Since: 2.6
107
+ *
108
+ * Deprecated: 3.10: Use named icon &quot;help-about&quot; or the label &quot;_About&quot;.
90
109
  */
91
- #define GTK_STOCK_ABOUT "gtk-about"
110
+ #define GTK_STOCK_ABOUT ((GtkStock)"gtk-about")
92
111
 
93
112
  /**
94
113
  * GTK_STOCK_ADD:
95
114
  *
96
115
  * The "Add" item.
97
116
  * <inlinegraphic fileref="list-add.png" format="PNG"></inlinegraphic>
117
+ *
118
+ * Deprecated: 3.10: Use named icon &quot;list-add&quot; or the label &quot;_Add&quot;.
98
119
  */
99
- #define GTK_STOCK_ADD "gtk-add"
120
+ #define GTK_STOCK_ADD ((GtkStock)"gtk-add")
100
121
 
101
122
  /**
102
123
  * GTK_STOCK_APPLY:
103
124
  *
104
125
  * The "Apply" item.
105
126
  * <inlinegraphic fileref="gtk-apply.png" format="PNG"></inlinegraphic>
127
+ *
128
+ * Deprecated: 3.10: Do not use an icon. Use label &quot;_Apply&quot;.
106
129
  */
107
- #define GTK_STOCK_APPLY "gtk-apply"
130
+ #define GTK_STOCK_APPLY ((GtkStock)"gtk-apply")
108
131
 
109
132
  /**
110
133
  * GTK_STOCK_BOLD:
111
134
  *
112
135
  * The "Bold" item.
113
136
  * <inlinegraphic fileref="format-text-bold.png" format="PNG"></inlinegraphic>
137
+ *
138
+ * Deprecated: 3.10: Use named icon &quot;format-text-bold&quot;.
114
139
  */
115
- #define GTK_STOCK_BOLD "gtk-bold"
140
+ #define GTK_STOCK_BOLD ((GtkStock)"gtk-bold")
116
141
 
117
142
  /**
118
143
  * GTK_STOCK_CANCEL:
119
144
  *
120
145
  * The "Cancel" item.
121
146
  * <inlinegraphic fileref="gtk-cancel.png" format="PNG"></inlinegraphic>
147
+ *
148
+ * Deprecated: 3.10: Do not use an icon. Use label &quot;_Cancel&quot;.
122
149
  */
123
- #define GTK_STOCK_CANCEL "gtk-cancel"
150
+ #define GTK_STOCK_CANCEL ((GtkStock)"gtk-cancel")
124
151
 
125
152
  /**
126
153
  * GTK_STOCK_CAPS_LOCK_WARNING:
@@ -129,32 +156,40 @@ void gtk_stock_set_translate_func (const gchar *domain,
129
156
  * <inlinegraphic fileref="gtk-caps-lock-warning.png" format="PNG"></inlinegraphic>
130
157
  *
131
158
  * Since: 2.16
159
+ *
160
+ * Deprecated: 3.10: Use named icon &quot;dialog-warning-symbolic&quot;.
132
161
  */
133
- #define GTK_STOCK_CAPS_LOCK_WARNING "gtk-caps-lock-warning"
162
+ #define GTK_STOCK_CAPS_LOCK_WARNING ((GtkStock)"gtk-caps-lock-warning")
134
163
 
135
164
  /**
136
165
  * GTK_STOCK_CDROM:
137
166
  *
138
167
  * The "CD-Rom" item.
139
168
  * <inlinegraphic fileref="media-optical.png" format="PNG"></inlinegraphic>
169
+ *
170
+ * Deprecated: 3.10: Use named icon &quot;media-optical&quot;.
140
171
  */
141
- #define GTK_STOCK_CDROM "gtk-cdrom"
172
+ #define GTK_STOCK_CDROM ((GtkStock)"gtk-cdrom")
142
173
 
143
174
  /**
144
175
  * GTK_STOCK_CLEAR:
145
176
  *
146
177
  * The "Clear" item.
147
178
  * <inlinegraphic fileref="edit-clear.png" format="PNG"></inlinegraphic>
179
+ *
180
+ * Deprecated: 3.10: Use named icon &quot;edit-clear&quot;.
148
181
  */
149
- #define GTK_STOCK_CLEAR "gtk-clear"
182
+ #define GTK_STOCK_CLEAR ((GtkStock)"gtk-clear")
150
183
 
151
184
  /**
152
185
  * GTK_STOCK_CLOSE:
153
186
  *
154
187
  * The "Close" item.
155
188
  * <inlinegraphic fileref="window-close.png" format="PNG"></inlinegraphic>
189
+ *
190
+ * Deprecated: 3.10: Use named icon &quot;window-close&quot; or the label &quot;_Close&quot;.
156
191
  */
157
- #define GTK_STOCK_CLOSE "gtk-close"
192
+ #define GTK_STOCK_CLOSE ((GtkStock)"gtk-close")
158
193
 
159
194
  /**
160
195
  * GTK_STOCK_COLOR_PICKER:
@@ -163,8 +198,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
163
198
  * <inlinegraphic fileref="gtk-color-picker.png" format="PNG"></inlinegraphic>
164
199
  *
165
200
  * Since: 2.2
201
+ *
202
+ * Deprecated: 3.10
166
203
  */
167
- #define GTK_STOCK_COLOR_PICKER "gtk-color-picker"
204
+ #define GTK_STOCK_COLOR_PICKER ((GtkStock)"gtk-color-picker")
168
205
 
169
206
  /**
170
207
  * GTK_STOCK_CONNECT:
@@ -173,40 +210,50 @@ void gtk_stock_set_translate_func (const gchar *domain,
173
210
  * <inlinegraphic fileref="gtk-connect.png" format="PNG"></inlinegraphic>
174
211
  *
175
212
  * Since: 2.6
213
+ *
214
+ * Deprecated: 3.10
176
215
  */
177
- #define GTK_STOCK_CONNECT "gtk-connect"
216
+ #define GTK_STOCK_CONNECT ((GtkStock)"gtk-connect")
178
217
 
179
218
  /**
180
219
  * GTK_STOCK_CONVERT:
181
220
  *
182
221
  * The "Convert" item.
183
222
  * <inlinegraphic fileref="gtk-convert.png" format="PNG"></inlinegraphic>
223
+ *
224
+ * Deprecated: 3.10
184
225
  */
185
- #define GTK_STOCK_CONVERT "gtk-convert"
226
+ #define GTK_STOCK_CONVERT ((GtkStock)"gtk-convert")
186
227
 
187
228
  /**
188
229
  * GTK_STOCK_COPY:
189
230
  *
190
231
  * The "Copy" item.
191
232
  * <inlinegraphic fileref="edit-copy.png" format="PNG"></inlinegraphic>
233
+ *
234
+ * Deprecated: 3.10: Do not use an icon. Use label &quot;_Copy&quot;.
192
235
  */
193
- #define GTK_STOCK_COPY "gtk-copy"
236
+ #define GTK_STOCK_COPY ((GtkStock)"gtk-copy")
194
237
 
195
238
  /**
196
239
  * GTK_STOCK_CUT:
197
240
  *
198
241
  * The "Cut" item.
199
242
  * <inlinegraphic fileref="edit-cut.png" format="PNG"></inlinegraphic>
243
+ *
244
+ * Deprecated: 3.10: Do not use an icon. Use label &quot;Cu_t&quot;.
200
245
  */
201
- #define GTK_STOCK_CUT "gtk-cut"
246
+ #define GTK_STOCK_CUT ((GtkStock)"gtk-cut")
202
247
 
203
248
  /**
204
249
  * GTK_STOCK_DELETE:
205
250
  *
206
251
  * The "Delete" item.
207
252
  * <inlinegraphic fileref="edit-delete.png" format="PNG"></inlinegraphic>
253
+ *
254
+ * Deprecated: 3.10: Do not use an icon. Use label &quot;_Delete&quot;.
208
255
  */
209
- #define GTK_STOCK_DELETE "gtk-delete"
256
+ #define GTK_STOCK_DELETE ((GtkStock)"gtk-delete")
210
257
 
211
258
  /**
212
259
  * GTK_STOCK_DIALOG_AUTHENTICATION:
@@ -215,40 +262,50 @@ void gtk_stock_set_translate_func (const gchar *domain,
215
262
  * <inlinegraphic fileref="dialog-password.png" format="PNG"></inlinegraphic>
216
263
  *
217
264
  * Since: 2.4
265
+ *
266
+ * Deprecated: 3.10: Use named icon &quot;dialog-password&quot;.
218
267
  */
219
- #define GTK_STOCK_DIALOG_AUTHENTICATION "gtk-dialog-authentication"
268
+ #define GTK_STOCK_DIALOG_AUTHENTICATION ((GtkStock)"gtk-dialog-authentication")
220
269
 
221
270
  /**
222
271
  * GTK_STOCK_DIALOG_INFO:
223
272
  *
224
273
  * The "Information" item.
225
274
  * <inlinegraphic fileref="dialog-information.png" format="PNG"></inlinegraphic>
275
+ *
276
+ * Deprecated: 3.10: Use named icon &quot;dialog-information&quot;.
226
277
  */
227
- #define GTK_STOCK_DIALOG_INFO "gtk-dialog-info"
278
+ #define GTK_STOCK_DIALOG_INFO ((GtkStock)"gtk-dialog-info")
228
279
 
229
280
  /**
230
281
  * GTK_STOCK_DIALOG_WARNING:
231
282
  *
232
283
  * The "Warning" item.
233
284
  * <inlinegraphic fileref="dialog-warning.png" format="PNG"></inlinegraphic>
285
+ *
286
+ * Deprecated: 3.10: Use named icon &quot;dialog-warning&quot;.
234
287
  */
235
- #define GTK_STOCK_DIALOG_WARNING "gtk-dialog-warning"
288
+ #define GTK_STOCK_DIALOG_WARNING ((GtkStock)"gtk-dialog-warning")
236
289
 
237
290
  /**
238
291
  * GTK_STOCK_DIALOG_ERROR:
239
292
  *
240
293
  * The "Error" item.
241
294
  * <inlinegraphic fileref="dialog-error.png" format="PNG"></inlinegraphic>
295
+ *
296
+ * Deprecated: 3.10: Use named icon &quot;dialog-error&quot;.
242
297
  */
243
- #define GTK_STOCK_DIALOG_ERROR "gtk-dialog-error"
298
+ #define GTK_STOCK_DIALOG_ERROR ((GtkStock)"gtk-dialog-error")
244
299
 
245
300
  /**
246
301
  * GTK_STOCK_DIALOG_QUESTION:
247
302
  *
248
303
  * The "Question" item.
249
304
  * <inlinegraphic fileref="dialog-question.png" format="PNG"></inlinegraphic>
305
+ *
306
+ * Deprecated: 3.10: Use named icon &quot;dialog-question&quot;.
250
307
  */
251
- #define GTK_STOCK_DIALOG_QUESTION "gtk-dialog-question"
308
+ #define GTK_STOCK_DIALOG_QUESTION ((GtkStock)"gtk-dialog-question")
252
309
 
253
310
  /**
254
311
  * GTK_STOCK_DIRECTORY:
@@ -257,8 +314,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
257
314
  * <inlinegraphic fileref="folder.png" format="PNG"></inlinegraphic>
258
315
  *
259
316
  * Since: 2.6
317
+ *
318
+ * Deprecated: 3.10: Use named icon &quot;folder&quot;.
260
319
  */
261
- #define GTK_STOCK_DIRECTORY "gtk-directory"
320
+ #define GTK_STOCK_DIRECTORY ((GtkStock)"gtk-directory")
262
321
 
263
322
  /**
264
323
  * GTK_STOCK_DISCARD:
@@ -266,8 +325,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
266
325
  * The "Discard" item.
267
326
  *
268
327
  * Since: 2.12
328
+ *
329
+ * Deprecated: 3.10
269
330
  */
270
- #define GTK_STOCK_DISCARD "gtk-discard"
331
+ #define GTK_STOCK_DISCARD ((GtkStock)"gtk-discard")
271
332
 
272
333
  /**
273
334
  * GTK_STOCK_DISCONNECT:
@@ -276,24 +337,30 @@ void gtk_stock_set_translate_func (const gchar *domain,
276
337
  * <inlinegraphic fileref="gtk-disconnect.png" format="PNG"></inlinegraphic>
277
338
  *
278
339
  * Since: 2.6
340
+ *
341
+ * Deprecated: 3.10
279
342
  */
280
- #define GTK_STOCK_DISCONNECT "gtk-disconnect"
343
+ #define GTK_STOCK_DISCONNECT ((GtkStock)"gtk-disconnect")
281
344
 
282
345
  /**
283
346
  * GTK_STOCK_DND:
284
347
  *
285
348
  * The "Drag-And-Drop" icon.
286
349
  * <inlinegraphic fileref="gtk-dnd.png" format="PNG"></inlinegraphic>
350
+ *
351
+ * Deprecated: 3.10
287
352
  */
288
- #define GTK_STOCK_DND "gtk-dnd"
353
+ #define GTK_STOCK_DND ((GtkStock)"gtk-dnd")
289
354
 
290
355
  /**
291
356
  * GTK_STOCK_DND_MULTIPLE:
292
357
  *
293
358
  * The "Drag-And-Drop multiple" icon.
294
359
  * <inlinegraphic fileref="gtk-dnd-multiple.png" format="PNG"></inlinegraphic>
360
+ *
361
+ * Deprecated: 3.10
295
362
  */
296
- #define GTK_STOCK_DND_MULTIPLE "gtk-dnd-multiple"
363
+ #define GTK_STOCK_DND_MULTIPLE ((GtkStock)"gtk-dnd-multiple")
297
364
 
298
365
  /**
299
366
  * GTK_STOCK_EDIT:
@@ -302,16 +369,20 @@ void gtk_stock_set_translate_func (const gchar *domain,
302
369
  * <inlinegraphic fileref="gtk-edit.png" format="PNG"></inlinegraphic>
303
370
  *
304
371
  * Since: 2.6
372
+ *
373
+ * Deprecated: 3.10
305
374
  */
306
- #define GTK_STOCK_EDIT "gtk-edit"
375
+ #define GTK_STOCK_EDIT ((GtkStock)"gtk-edit")
307
376
 
308
377
  /**
309
378
  * GTK_STOCK_EXECUTE:
310
379
  *
311
380
  * The "Execute" item.
312
381
  * <inlinegraphic fileref="system-run.png" format="PNG"></inlinegraphic>
382
+ *
383
+ * Deprecated: 3.10: Use named icon &quot;system-run&quot;.
313
384
  */
314
- #define GTK_STOCK_EXECUTE "gtk-execute"
385
+ #define GTK_STOCK_EXECUTE ((GtkStock)"gtk-execute")
315
386
 
316
387
  /**
317
388
  * GTK_STOCK_FILE:
@@ -322,32 +393,40 @@ void gtk_stock_set_translate_func (const gchar *domain,
322
393
  * Since 3.0, this item has a label, before it only had an icon.
323
394
  *
324
395
  * Since: 2.6
396
+ *
397
+ * Deprecated: 3.10: Use named icon &quot;text-x-generic&quot;.
325
398
  */
326
- #define GTK_STOCK_FILE "gtk-file"
399
+ #define GTK_STOCK_FILE ((GtkStock)"gtk-file")
327
400
 
328
401
  /**
329
402
  * GTK_STOCK_FIND:
330
403
  *
331
404
  * The "Find" item.
332
405
  * <inlinegraphic fileref="edit-find.png" format="PNG"></inlinegraphic>
406
+ *
407
+ * Deprecated: 3.10: Use named icon &quot;edit-find&quot;.
333
408
  */
334
- #define GTK_STOCK_FIND "gtk-find"
409
+ #define GTK_STOCK_FIND ((GtkStock)"gtk-find")
335
410
 
336
411
  /**
337
412
  * GTK_STOCK_FIND_AND_REPLACE:
338
413
  *
339
414
  * The "Find and Replace" item.
340
415
  * <inlinegraphic fileref="edit-find-replace.png" format="PNG"></inlinegraphic>
416
+ *
417
+ * Deprecated: 3.10: Use named icon &quot;edit-find-replace&quot;.
341
418
  */
342
- #define GTK_STOCK_FIND_AND_REPLACE "gtk-find-and-replace"
419
+ #define GTK_STOCK_FIND_AND_REPLACE ((GtkStock)"gtk-find-and-replace")
343
420
 
344
421
  /**
345
422
  * GTK_STOCK_FLOPPY:
346
423
  *
347
424
  * The "Floppy" item.
348
425
  * <inlinegraphic fileref="media-floppy.png" format="PNG"></inlinegraphic>
426
+ *
427
+ * Deprecated: 3.10
349
428
  */
350
- #define GTK_STOCK_FLOPPY "gtk-floppy"
429
+ #define GTK_STOCK_FLOPPY ((GtkStock)"gtk-floppy")
351
430
 
352
431
  /**
353
432
  * GTK_STOCK_FULLSCREEN:
@@ -356,16 +435,20 @@ void gtk_stock_set_translate_func (const gchar *domain,
356
435
  * <inlinegraphic fileref="view-fullscreen.png" format="PNG"></inlinegraphic>
357
436
  *
358
437
  * Since: 2.8
438
+ *
439
+ * Deprecated: 3.10: Use named icon &quot;view-fullscreen&quot;.
359
440
  */
360
- #define GTK_STOCK_FULLSCREEN "gtk-fullscreen"
441
+ #define GTK_STOCK_FULLSCREEN ((GtkStock)"gtk-fullscreen")
361
442
 
362
443
  /**
363
444
  * GTK_STOCK_GOTO_BOTTOM:
364
445
  *
365
446
  * The "Bottom" item.
366
447
  * <inlinegraphic fileref="go-bottom.png" format="PNG"></inlinegraphic>
448
+ *
449
+ * Deprecated: 3.10: Use named icon &quot;go-bottom&quot;.
367
450
  */
368
- #define GTK_STOCK_GOTO_BOTTOM "gtk-goto-bottom"
451
+ #define GTK_STOCK_GOTO_BOTTOM ((GtkStock)"gtk-goto-bottom")
369
452
 
370
453
  /**
371
454
  * GTK_STOCK_GOTO_FIRST:
@@ -374,8 +457,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
374
457
  * <inlinegraphic fileref="go-first-ltr.png" format="PNG"></inlinegraphic>
375
458
  * RTL variant
376
459
  * <inlinegraphic fileref="go-first-rtl.png" format="PNG"></inlinegraphic>
460
+ *
461
+ * Deprecated: 3.10: Use named icon &quot;go-first&quot;.
377
462
  */
378
- #define GTK_STOCK_GOTO_FIRST "gtk-goto-first"
463
+ #define GTK_STOCK_GOTO_FIRST ((GtkStock)"gtk-goto-first")
379
464
 
380
465
  /**
381
466
  * GTK_STOCK_GOTO_LAST:
@@ -384,16 +469,20 @@ void gtk_stock_set_translate_func (const gchar *domain,
384
469
  * <inlinegraphic fileref="go-last-ltr.png" format="PNG"></inlinegraphic>
385
470
  * RTL variant
386
471
  * <inlinegraphic fileref="go-last-rtl.png" format="PNG"></inlinegraphic>
472
+ *
473
+ * Deprecated: 3.10: Use named icon &quot;go-last&quot;.
387
474
  */
388
- #define GTK_STOCK_GOTO_LAST "gtk-goto-last"
475
+ #define GTK_STOCK_GOTO_LAST ((GtkStock)"gtk-goto-last")
389
476
 
390
477
  /**
391
478
  * GTK_STOCK_GOTO_TOP:
392
479
  *
393
480
  * The "Top" item.
394
481
  * <inlinegraphic fileref="go-top.png" format="PNG"></inlinegraphic>
482
+ *
483
+ * Deprecated: 3.10: Use named icon &quot;go-top&quot;.
395
484
  */
396
- #define GTK_STOCK_GOTO_TOP "gtk-goto-top"
485
+ #define GTK_STOCK_GOTO_TOP ((GtkStock)"gtk-goto-top")
397
486
 
398
487
  /**
399
488
  * GTK_STOCK_GO_BACK:
@@ -402,16 +491,20 @@ void gtk_stock_set_translate_func (const gchar *domain,
402
491
  * <inlinegraphic fileref="go-previous-ltr.png" format="PNG"></inlinegraphic>
403
492
  * RTL variant
404
493
  * <inlinegraphic fileref="go-previous-rtl.png" format="PNG"></inlinegraphic>
405
- */
406
- #define GTK_STOCK_GO_BACK "gtk-go-back"
494
+ *
495
+ * Deprecated: 3.10: Use named icon &quot;go-previous&quot;.
496
+ */
497
+ #define GTK_STOCK_GO_BACK ((GtkStock)"gtk-go-back")
407
498
 
408
499
  /**
409
500
  * GTK_STOCK_GO_DOWN:
410
501
  *
411
502
  * The "Down" item.
412
503
  * <inlinegraphic fileref="go-down.png" format="PNG"></inlinegraphic>
504
+ *
505
+ * Deprecated: 3.10: Use named icon &quot;go-down&quot;.
413
506
  */
414
- #define GTK_STOCK_GO_DOWN "gtk-go-down"
507
+ #define GTK_STOCK_GO_DOWN ((GtkStock)"gtk-go-down")
415
508
 
416
509
  /**
417
510
  * GTK_STOCK_GO_FORWARD:
@@ -420,16 +513,20 @@ void gtk_stock_set_translate_func (const gchar *domain,
420
513
  * <inlinegraphic fileref="go-next-ltr.png" format="PNG"></inlinegraphic>
421
514
  * RTL variant
422
515
  * <inlinegraphic fileref="go-next-rtl.png" format="PNG"></inlinegraphic>
516
+ *
517
+ * Deprecated: 3.10: Use named icon &quot;go-next&quot;.
423
518
  */
424
- #define GTK_STOCK_GO_FORWARD "gtk-go-forward"
519
+ #define GTK_STOCK_GO_FORWARD ((GtkStock)"gtk-go-forward")
425
520
 
426
521
  /**
427
522
  * GTK_STOCK_GO_UP:
428
523
  *
429
524
  * The "Up" item.
430
525
  * <inlinegraphic fileref="go-up.png" format="PNG"></inlinegraphic>
526
+ *
527
+ * Deprecated: 3.10: Use named icon &quot;go-up&quot;.
431
528
  */
432
- #define GTK_STOCK_GO_UP "gtk-go-up"
529
+ #define GTK_STOCK_GO_UP ((GtkStock)"gtk-go-up")
433
530
 
434
531
  /**
435
532
  * GTK_STOCK_HARDDISK:
@@ -438,32 +535,40 @@ void gtk_stock_set_translate_func (const gchar *domain,
438
535
  * <inlinegraphic fileref="drive-harddisk.png" format="PNG"></inlinegraphic>
439
536
  *
440
537
  * Since: 2.4
538
+ *
539
+ * Deprecated: 3.10: Use named icon &quot;drive-harddisk&quot;.
441
540
  */
442
- #define GTK_STOCK_HARDDISK "gtk-harddisk"
541
+ #define GTK_STOCK_HARDDISK ((GtkStock)"gtk-harddisk")
443
542
 
444
543
  /**
445
544
  * GTK_STOCK_HELP:
446
545
  *
447
546
  * The "Help" item.
448
547
  * <inlinegraphic fileref="help-contents.png" format="PNG"></inlinegraphic>
548
+ *
549
+ * Deprecated: 3.10: Use named icon &quot;help-browser&quot;.
449
550
  */
450
- #define GTK_STOCK_HELP "gtk-help"
551
+ #define GTK_STOCK_HELP ((GtkStock)"gtk-help")
451
552
 
452
553
  /**
453
554
  * GTK_STOCK_HOME:
454
555
  *
455
556
  * The "Home" item.
456
557
  * <inlinegraphic fileref="go-home.png" format="PNG"></inlinegraphic>
558
+ *
559
+ * Deprecated: 3.10: Use named icon &quot;go-home&quot;.
457
560
  */
458
- #define GTK_STOCK_HOME "gtk-home"
561
+ #define GTK_STOCK_HOME ((GtkStock)"gtk-home")
459
562
 
460
563
  /**
461
564
  * GTK_STOCK_INDEX:
462
565
  *
463
566
  * The "Index" item.
464
567
  * <inlinegraphic fileref="gtk-index.png" format="PNG"></inlinegraphic>
568
+ *
569
+ * Deprecated: 3.10
465
570
  */
466
- #define GTK_STOCK_INDEX "gtk-index"
571
+ #define GTK_STOCK_INDEX ((GtkStock)"gtk-index")
467
572
 
468
573
  /**
469
574
  * GTK_STOCK_INDENT:
@@ -474,8 +579,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
474
579
  * <inlinegraphic fileref="format-indent-more-rtl.png" format="PNG"></inlinegraphic>
475
580
  *
476
581
  * Since: 2.4
582
+ *
583
+ * Deprecated: 3.10: Use named icon &quot;format-indent-more&quot;.
477
584
  */
478
- #define GTK_STOCK_INDENT "gtk-indent"
585
+ #define GTK_STOCK_INDENT ((GtkStock)"gtk-indent")
479
586
 
480
587
  /**
481
588
  * GTK_STOCK_INFO:
@@ -484,16 +591,20 @@ void gtk_stock_set_translate_func (const gchar *domain,
484
591
  * <inlinegraphic fileref="dialog-information.png" format="PNG"></inlinegraphic>
485
592
  *
486
593
  * Since: 2.8
594
+ *
595
+ * Deprecated: 3.10: Use named icon &quot;dialog-information&quot;.
487
596
  */
488
- #define GTK_STOCK_INFO "gtk-info"
597
+ #define GTK_STOCK_INFO ((GtkStock)"gtk-info")
489
598
 
490
599
  /**
491
600
  * GTK_STOCK_ITALIC:
492
601
  *
493
602
  * The "Italic" item.
494
603
  * <inlinegraphic fileref="format-text-italic.png" format="PNG"></inlinegraphic>
604
+ *
605
+ * Deprecated: 3.10: Use named icon &quot;format-text-italic&quot;.
495
606
  */
496
- #define GTK_STOCK_ITALIC "gtk-italic"
607
+ #define GTK_STOCK_ITALIC ((GtkStock)"gtk-italic")
497
608
 
498
609
  /**
499
610
  * GTK_STOCK_JUMP_TO:
@@ -502,40 +613,50 @@ void gtk_stock_set_translate_func (const gchar *domain,
502
613
  * <inlinegraphic fileref="go-jump-ltr.png" format="PNG"></inlinegraphic>
503
614
  * RTL-variant
504
615
  * <inlinegraphic fileref="go-jump-rtl.png" format="PNG"></inlinegraphic>
616
+ *
617
+ * Deprecated: 3.10: Use named icon &quot;go-jump&quot;.
505
618
  */
506
- #define GTK_STOCK_JUMP_TO "gtk-jump-to"
619
+ #define GTK_STOCK_JUMP_TO ((GtkStock)"gtk-jump-to")
507
620
 
508
621
  /**
509
622
  * GTK_STOCK_JUSTIFY_CENTER:
510
623
  *
511
624
  * The "Center" item.
512
625
  * <inlinegraphic fileref="format-justify-center.png" format="PNG"></inlinegraphic>
626
+ *
627
+ * Deprecated: 3.10: Use named icon &quot;format-justify-center&quot;.
513
628
  */
514
- #define GTK_STOCK_JUSTIFY_CENTER "gtk-justify-center"
629
+ #define GTK_STOCK_JUSTIFY_CENTER ((GtkStock)"gtk-justify-center")
515
630
 
516
631
  /**
517
632
  * GTK_STOCK_JUSTIFY_FILL:
518
633
  *
519
634
  * The "Fill" item.
520
635
  * <inlinegraphic fileref="format-justify-fill.png" format="PNG"></inlinegraphic>
636
+ *
637
+ * Deprecated: 3.10: Use named icon &quot;format-justify-fill&quot;.
521
638
  */
522
- #define GTK_STOCK_JUSTIFY_FILL "gtk-justify-fill"
639
+ #define GTK_STOCK_JUSTIFY_FILL ((GtkStock)"gtk-justify-fill")
523
640
 
524
641
  /**
525
642
  * GTK_STOCK_JUSTIFY_LEFT:
526
643
  *
527
644
  * The "Left" item.
528
645
  * <inlinegraphic fileref="format-justify-left.png" format="PNG"></inlinegraphic>
646
+ *
647
+ * Deprecated: 3.10: Use named icon &quot;format-justify-left&quot;.
529
648
  */
530
- #define GTK_STOCK_JUSTIFY_LEFT "gtk-justify-left"
649
+ #define GTK_STOCK_JUSTIFY_LEFT ((GtkStock)"gtk-justify-left")
531
650
 
532
651
  /**
533
652
  * GTK_STOCK_JUSTIFY_RIGHT:
534
653
  *
535
654
  * The "Right" item.
536
655
  * <inlinegraphic fileref="format-justify-right.png" format="PNG"></inlinegraphic>
656
+ *
657
+ * Deprecated: 3.10: Use named icon &quot;format-justify-right&quot;.
537
658
  */
538
- #define GTK_STOCK_JUSTIFY_RIGHT "gtk-justify-right"
659
+ #define GTK_STOCK_JUSTIFY_RIGHT ((GtkStock)"gtk-justify-right")
539
660
 
540
661
  /**
541
662
  * GTK_STOCK_LEAVE_FULLSCREEN:
@@ -544,16 +665,20 @@ void gtk_stock_set_translate_func (const gchar *domain,
544
665
  * <inlinegraphic fileref="view-restore.png" format="PNG"></inlinegraphic>
545
666
  *
546
667
  * Since: 2.8
668
+ *
669
+ * Deprecated: 3.10: Use named icon &quot;view-restore&quot;.
547
670
  */
548
- #define GTK_STOCK_LEAVE_FULLSCREEN "gtk-leave-fullscreen"
671
+ #define GTK_STOCK_LEAVE_FULLSCREEN ((GtkStock)"gtk-leave-fullscreen")
549
672
 
550
673
  /**
551
674
  * GTK_STOCK_MISSING_IMAGE:
552
675
  *
553
676
  * The "Missing image" icon.
554
677
  * <inlinegraphic fileref="image-missing.png" format="PNG"></inlinegraphic>
678
+ *
679
+ * Deprecated: 3.10: Use named icon &quot;image-missing&quot;.
555
680
  */
556
- #define GTK_STOCK_MISSING_IMAGE "gtk-missing-image"
681
+ #define GTK_STOCK_MISSING_IMAGE ((GtkStock)"gtk-missing-image")
557
682
 
558
683
  /**
559
684
  * GTK_STOCK_MEDIA_FORWARD:
@@ -564,8 +689,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
564
689
  * <inlinegraphic fileref="media-seek-forward-rtl.png" format="PNG"></inlinegraphic>
565
690
  *
566
691
  * Since: 2.6
692
+ *
693
+ * Deprecated: 3.10: Use named icon &quot;media-seek-forward&quot; or the label &quot;_Forward&quot;.
567
694
  */
568
- #define GTK_STOCK_MEDIA_FORWARD "gtk-media-forward"
695
+ #define GTK_STOCK_MEDIA_FORWARD ((GtkStock)"gtk-media-forward")
569
696
 
570
697
  /**
571
698
  * GTK_STOCK_MEDIA_NEXT:
@@ -576,8 +703,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
576
703
  * <inlinegraphic fileref="media-skip-forward-rtl.png" format="PNG"></inlinegraphic>
577
704
  *
578
705
  * Since: 2.6
706
+ *
707
+ * Deprecated: 3.10: Use named icon &quot;media-skip-forward&quot; or the label &quot;_Next&quot;.
579
708
  */
580
- #define GTK_STOCK_MEDIA_NEXT "gtk-media-next"
709
+ #define GTK_STOCK_MEDIA_NEXT ((GtkStock)"gtk-media-next")
581
710
 
582
711
  /**
583
712
  * GTK_STOCK_MEDIA_PAUSE:
@@ -586,8 +715,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
586
715
  * <inlinegraphic fileref="media-playback-pause.png" format="PNG"></inlinegraphic>
587
716
  *
588
717
  * Since: 2.6
718
+ *
719
+ * Deprecated: 3.10: Use named icon &quot;media-playback-pause&quot; or the label &quot;P_ause&quot;.
589
720
  */
590
- #define GTK_STOCK_MEDIA_PAUSE "gtk-media-pause"
721
+ #define GTK_STOCK_MEDIA_PAUSE ((GtkStock)"gtk-media-pause")
591
722
 
592
723
  /**
593
724
  * GTK_STOCK_MEDIA_PLAY:
@@ -598,8 +729,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
598
729
  * <inlinegraphic fileref="media-playback-start-rtl.png" format="PNG"></inlinegraphic>
599
730
  *
600
731
  * Since: 2.6
732
+ *
733
+ * Deprecated: 3.10: Use named icon &quot;media-playback-start&quot; or the label &quot;_Play&quot;.
601
734
  */
602
- #define GTK_STOCK_MEDIA_PLAY "gtk-media-play"
735
+ #define GTK_STOCK_MEDIA_PLAY ((GtkStock)"gtk-media-play")
603
736
 
604
737
  /**
605
738
  * GTK_STOCK_MEDIA_PREVIOUS:
@@ -610,8 +743,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
610
743
  * <inlinegraphic fileref="media-skip-backward-rtl.png" format="PNG"></inlinegraphic>
611
744
  *
612
745
  * Since: 2.6
746
+ *
747
+ * Deprecated: 3.10: Use named icon &quot;media-skip-backward&quot; or the label &quot;Pre_vious&quot;.
613
748
  */
614
- #define GTK_STOCK_MEDIA_PREVIOUS "gtk-media-previous"
749
+ #define GTK_STOCK_MEDIA_PREVIOUS ((GtkStock)"gtk-media-previous")
615
750
 
616
751
  /**
617
752
  * GTK_STOCK_MEDIA_RECORD:
@@ -620,8 +755,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
620
755
  * <inlinegraphic fileref="media-record.png" format="PNG"></inlinegraphic>
621
756
  *
622
757
  * Since: 2.6
758
+ *
759
+ * Deprecated: 3.10: Use named icon &quot;media-record&quot; or the label &quot;_Record&quot;.
623
760
  */
624
- #define GTK_STOCK_MEDIA_RECORD "gtk-media-record"
761
+ #define GTK_STOCK_MEDIA_RECORD ((GtkStock)"gtk-media-record")
625
762
 
626
763
  /**
627
764
  * GTK_STOCK_MEDIA_REWIND:
@@ -632,8 +769,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
632
769
  * <inlinegraphic fileref="media-seek-backward-rtl.png" format="PNG"></inlinegraphic>
633
770
  *
634
771
  * Since: 2.6
772
+ *
773
+ * Deprecated: 3.10: Use named icon &quot;media-seek-backward&quot; or the label &quot;R_ewind&quot;.
635
774
  */
636
- #define GTK_STOCK_MEDIA_REWIND "gtk-media-rewind"
775
+ #define GTK_STOCK_MEDIA_REWIND ((GtkStock)"gtk-media-rewind")
637
776
 
638
777
  /**
639
778
  * GTK_STOCK_MEDIA_STOP:
@@ -642,8 +781,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
642
781
  * <inlinegraphic fileref="media-playback-stop.png" format="PNG"></inlinegraphic>
643
782
  *
644
783
  * Since: 2.6
784
+ *
785
+ * Deprecated: 3.10: Use named icon &quot;media-playback-stop&quot; or the label &quot;_Stop&quot;.
645
786
  */
646
- #define GTK_STOCK_MEDIA_STOP "gtk-media-stop"
787
+ #define GTK_STOCK_MEDIA_STOP ((GtkStock)"gtk-media-stop")
647
788
 
648
789
  /**
649
790
  * GTK_STOCK_NETWORK:
@@ -652,40 +793,50 @@ void gtk_stock_set_translate_func (const gchar *domain,
652
793
  * <inlinegraphic fileref="network-idle.png" format="PNG"></inlinegraphic>
653
794
  *
654
795
  * Since: 2.4
796
+ *
797
+ * Deprecated: 3.10: Use named icon &quot;network-workgroup&quot;.
655
798
  */
656
- #define GTK_STOCK_NETWORK "gtk-network"
799
+ #define GTK_STOCK_NETWORK ((GtkStock)"gtk-network")
657
800
 
658
801
  /**
659
802
  * GTK_STOCK_NEW:
660
803
  *
661
804
  * The "New" item.
662
805
  * <inlinegraphic fileref="document-new.png" format="PNG"></inlinegraphic>
806
+ *
807
+ * Deprecated: 3.10: Use named icon &quot;document-new&quot; or the label &quot;_New&quot;.
663
808
  */
664
- #define GTK_STOCK_NEW "gtk-new"
809
+ #define GTK_STOCK_NEW ((GtkStock)"gtk-new")
665
810
 
666
811
  /**
667
812
  * GTK_STOCK_NO:
668
813
  *
669
814
  * The "No" item.
670
815
  * <inlinegraphic fileref="gtk-no.png" format="PNG"></inlinegraphic>
816
+ *
817
+ * Deprecated: 3.10
671
818
  */
672
- #define GTK_STOCK_NO "gtk-no"
819
+ #define GTK_STOCK_NO ((GtkStock)"gtk-no")
673
820
 
674
821
  /**
675
822
  * GTK_STOCK_OK:
676
823
  *
677
824
  * The "OK" item.
678
825
  * <inlinegraphic fileref="gtk-ok.png" format="PNG"></inlinegraphic>
826
+ *
827
+ * Deprecated: 3.10: Do not use an icon. Use label &quot;_OK&quot;.
679
828
  */
680
- #define GTK_STOCK_OK "gtk-ok"
829
+ #define GTK_STOCK_OK ((GtkStock)"gtk-ok")
681
830
 
682
831
  /**
683
832
  * GTK_STOCK_OPEN:
684
833
  *
685
834
  * The "Open" item.
686
835
  * <inlinegraphic fileref="document-open.png" format="PNG"></inlinegraphic>
836
+ *
837
+ * Deprecated: 3.10: Use named icon &quot;document-open&quot; or the label &quot;_Open&quot;.
687
838
  */
688
- #define GTK_STOCK_OPEN "gtk-open"
839
+ #define GTK_STOCK_OPEN ((GtkStock)"gtk-open")
689
840
 
690
841
  /**
691
842
  * GTK_STOCK_ORIENTATION_PORTRAIT:
@@ -694,8 +845,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
694
845
  * <inlinegraphic fileref="gtk-orientation-portrait.png" format="PNG"></inlinegraphic>
695
846
  *
696
847
  * Since: 2.10
848
+ *
849
+ * Deprecated: 3.10
697
850
  */
698
- #define GTK_STOCK_ORIENTATION_PORTRAIT "gtk-orientation-portrait"
851
+ #define GTK_STOCK_ORIENTATION_PORTRAIT ((GtkStock)"gtk-orientation-portrait")
699
852
 
700
853
  /**
701
854
  * GTK_STOCK_ORIENTATION_LANDSCAPE:
@@ -704,8 +857,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
704
857
  * <inlinegraphic fileref="gtk-orientation-landscape.png" format="PNG"></inlinegraphic>
705
858
  *
706
859
  * Since: 2.10
860
+ *
861
+ * Deprecated: 3.10
707
862
  */
708
- #define GTK_STOCK_ORIENTATION_LANDSCAPE "gtk-orientation-landscape"
863
+ #define GTK_STOCK_ORIENTATION_LANDSCAPE ((GtkStock)"gtk-orientation-landscape")
709
864
 
710
865
  /**
711
866
  * GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE:
@@ -714,8 +869,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
714
869
  * <inlinegraphic fileref="gtk-orientation-reverse-landscape.png" format="PNG"></inlinegraphic>
715
870
  *
716
871
  * Since: 2.10
872
+ *
873
+ * Deprecated: 3.10
717
874
  */
718
- #define GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE "gtk-orientation-reverse-landscape"
875
+ #define GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE ((GtkStock)"gtk-orientation-reverse-landscape")
719
876
 
720
877
  /**
721
878
  * GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT:
@@ -724,8 +881,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
724
881
  * <inlinegraphic fileref="gtk-orientation-reverse-portrait.png" format="PNG"></inlinegraphic>
725
882
  *
726
883
  * Since: 2.10
884
+ *
885
+ * Deprecated: 3.10
727
886
  */
728
- #define GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT "gtk-orientation-reverse-portrait"
887
+ #define GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT ((GtkStock)"gtk-orientation-reverse-portrait")
729
888
 
730
889
  /**
731
890
  * GTK_STOCK_PAGE_SETUP:
@@ -734,32 +893,40 @@ void gtk_stock_set_translate_func (const gchar *domain,
734
893
  * <inlinegraphic fileref="gtk-page-setup.png" format="PNG"></inlinegraphic>
735
894
  *
736
895
  * Since: 2.14
896
+ *
897
+ * Deprecated: 3.10: Use named icon &quot;document-page-setup&quot; or the label &quot;Page Set_up&quot;.
737
898
  */
738
- #define GTK_STOCK_PAGE_SETUP "gtk-page-setup"
899
+ #define GTK_STOCK_PAGE_SETUP ((GtkStock)"gtk-page-setup")
739
900
 
740
901
  /**
741
902
  * GTK_STOCK_PASTE:
742
903
  *
743
904
  * The "Paste" item.
744
905
  * <inlinegraphic fileref="edit-paste.png" format="PNG"></inlinegraphic>
906
+ *
907
+ * Deprecated: 3.10: Do not use an icon. Use label &quot;_Paste&quot;.
745
908
  */
746
- #define GTK_STOCK_PASTE "gtk-paste"
909
+ #define GTK_STOCK_PASTE ((GtkStock)"gtk-paste")
747
910
 
748
911
  /**
749
912
  * GTK_STOCK_PREFERENCES:
750
913
  *
751
914
  * The "Preferences" item.
752
915
  * <inlinegraphic fileref="gtk-preferences.png" format="PNG"></inlinegraphic>
916
+ *
917
+ * Deprecated: 3.10: Use named icon &quot;preferences-system&quot; or the label &quot;_Preferences&quot;.
753
918
  */
754
- #define GTK_STOCK_PREFERENCES "gtk-preferences"
919
+ #define GTK_STOCK_PREFERENCES ((GtkStock)"gtk-preferences")
755
920
 
756
921
  /**
757
922
  * GTK_STOCK_PRINT:
758
923
  *
759
924
  * The "Print" item.
760
925
  * <inlinegraphic fileref="document-print.png" format="PNG"></inlinegraphic>
926
+ *
927
+ * Deprecated: 3.10: Use named icon &quot;document-print&quot; or the label &quot;_Print&quot;.
761
928
  */
762
- #define GTK_STOCK_PRINT "gtk-print"
929
+ #define GTK_STOCK_PRINT ((GtkStock)"gtk-print")
763
930
 
764
931
  /**
765
932
  * GTK_STOCK_PRINT_ERROR:
@@ -768,8 +935,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
768
935
  * <inlinegraphic fileref="printer-error.png" format="PNG"></inlinegraphic>
769
936
  *
770
937
  * Since: 2.14
938
+ *
939
+ * Deprecated: 3.10: Use named icon &quot;printer-error&quot;.
771
940
  */
772
- #define GTK_STOCK_PRINT_ERROR "gtk-print-error"
941
+ #define GTK_STOCK_PRINT_ERROR ((GtkStock)"gtk-print-error")
773
942
 
774
943
  /**
775
944
  * GTK_STOCK_PRINT_PAUSED:
@@ -778,16 +947,20 @@ void gtk_stock_set_translate_func (const gchar *domain,
778
947
  * <inlinegraphic fileref="printer-paused.png" format="PNG"></inlinegraphic>
779
948
  *
780
949
  * Since: 2.14
950
+ *
951
+ * Deprecated: 3.10
781
952
  */
782
- #define GTK_STOCK_PRINT_PAUSED "gtk-print-paused"
953
+ #define GTK_STOCK_PRINT_PAUSED ((GtkStock)"gtk-print-paused")
783
954
 
784
955
  /**
785
956
  * GTK_STOCK_PRINT_PREVIEW:
786
957
  *
787
958
  * The "Print Preview" item.
788
959
  * <inlinegraphic fileref="document-print-preview.png" format="PNG"></inlinegraphic>
960
+ *
961
+ * Deprecated: 3.10: Use label &quot;Pre_view&quot;.
789
962
  */
790
- #define GTK_STOCK_PRINT_PREVIEW "gtk-print-preview"
963
+ #define GTK_STOCK_PRINT_PREVIEW ((GtkStock)"gtk-print-preview")
791
964
 
792
965
  /**
793
966
  * GTK_STOCK_PRINT_REPORT:
@@ -796,8 +969,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
796
969
  * <inlinegraphic fileref="printer-info.png" format="PNG"></inlinegraphic>
797
970
  *
798
971
  * Since: 2.14
972
+ *
973
+ * Deprecated: 3.10
799
974
  */
800
- #define GTK_STOCK_PRINT_REPORT "gtk-print-report"
975
+ #define GTK_STOCK_PRINT_REPORT ((GtkStock)"gtk-print-report")
801
976
 
802
977
 
803
978
  /**
@@ -807,24 +982,30 @@ void gtk_stock_set_translate_func (const gchar *domain,
807
982
  * <inlinegraphic fileref="printer-warning.png" format="PNG"></inlinegraphic>
808
983
  *
809
984
  * Since: 2.14
985
+ *
986
+ * Deprecated: 3.10
810
987
  */
811
- #define GTK_STOCK_PRINT_WARNING "gtk-print-warning"
988
+ #define GTK_STOCK_PRINT_WARNING ((GtkStock)"gtk-print-warning")
812
989
 
813
990
  /**
814
991
  * GTK_STOCK_PROPERTIES:
815
992
  *
816
993
  * The "Properties" item.
817
994
  * <inlinegraphic fileref="document-properties.png" format="PNG"></inlinegraphic>
995
+ *
996
+ * Deprecated: 3.10: Use named icon &quot;document-properties&quot; or the label &quot;_Properties&quot;.
818
997
  */
819
- #define GTK_STOCK_PROPERTIES "gtk-properties"
998
+ #define GTK_STOCK_PROPERTIES ((GtkStock)"gtk-properties")
820
999
 
821
1000
  /**
822
1001
  * GTK_STOCK_QUIT:
823
1002
  *
824
1003
  * The "Quit" item.
825
1004
  * <inlinegraphic fileref="application-exit.png" format="PNG"></inlinegraphic>
1005
+ *
1006
+ * Deprecated: 3.10: Use named icon &quot;application-exit&quot; or the label &quot;_Quit&quot;.
826
1007
  */
827
- #define GTK_STOCK_QUIT "gtk-quit"
1008
+ #define GTK_STOCK_QUIT ((GtkStock)"gtk-quit")
828
1009
 
829
1010
  /**
830
1011
  * GTK_STOCK_REDO:
@@ -833,24 +1014,30 @@ void gtk_stock_set_translate_func (const gchar *domain,
833
1014
  * <inlinegraphic fileref="edit-redo-ltr.png" format="PNG"></inlinegraphic>
834
1015
  * RTL variant
835
1016
  * <inlinegraphic fileref="edit-redo-rtl.png" format="PNG"></inlinegraphic>
1017
+ *
1018
+ * Deprecated: 3.10: Use named icon &quot;edit-redo&quot; or the label &quot;_Redo&quot;.
836
1019
  */
837
- #define GTK_STOCK_REDO "gtk-redo"
1020
+ #define GTK_STOCK_REDO ((GtkStock)"gtk-redo")
838
1021
 
839
1022
  /**
840
1023
  * GTK_STOCK_REFRESH:
841
1024
  *
842
1025
  * The "Refresh" item.
843
1026
  * <inlinegraphic fileref="view-refresh.png" format="PNG"></inlinegraphic>
1027
+ *
1028
+ * Deprecated: 3.10: Use named icon &quot;view-refresh&quot; or the label &quot;_Refresh&quot;.
844
1029
  */
845
- #define GTK_STOCK_REFRESH "gtk-refresh"
1030
+ #define GTK_STOCK_REFRESH ((GtkStock)"gtk-refresh")
846
1031
 
847
1032
  /**
848
1033
  * GTK_STOCK_REMOVE:
849
1034
  *
850
1035
  * The "Remove" item.
851
1036
  * <inlinegraphic fileref="list-remove.png" format="PNG"></inlinegraphic>
1037
+ *
1038
+ * Deprecated: 3.10: Use named icon &quot;list-remove&quot; or the label &quot;_Remove&quot;.
852
1039
  */
853
- #define GTK_STOCK_REMOVE "gtk-remove"
1040
+ #define GTK_STOCK_REMOVE ((GtkStock)"gtk-remove")
854
1041
 
855
1042
  /**
856
1043
  * GTK_STOCK_REVERT_TO_SAVED:
@@ -859,24 +1046,30 @@ void gtk_stock_set_translate_func (const gchar *domain,
859
1046
  * <inlinegraphic fileref="document-revert-ltr.png" format="PNG"></inlinegraphic>
860
1047
  * RTL variant
861
1048
  * <inlinegraphic fileref="document-revert-rtl.png" format="PNG"></inlinegraphic>
1049
+ *
1050
+ * Deprecated: 3.10: Use named icon &quot;document-revert&quot; or the label &quot;_Revert&quot;.
862
1051
  */
863
- #define GTK_STOCK_REVERT_TO_SAVED "gtk-revert-to-saved"
1052
+ #define GTK_STOCK_REVERT_TO_SAVED ((GtkStock)"gtk-revert-to-saved")
864
1053
 
865
1054
  /**
866
1055
  * GTK_STOCK_SAVE:
867
1056
  *
868
1057
  * The "Save" item.
869
1058
  * <inlinegraphic fileref="document-save.png" format="PNG"></inlinegraphic>
1059
+ *
1060
+ * Deprecated: 3.10: Use named icon &quot;document-save&quot; or the label &quot;_Save&quot;.
870
1061
  */
871
- #define GTK_STOCK_SAVE "gtk-save"
1062
+ #define GTK_STOCK_SAVE ((GtkStock)"gtk-save")
872
1063
 
873
1064
  /**
874
1065
  * GTK_STOCK_SAVE_AS:
875
1066
  *
876
1067
  * The "Save As" item.
877
1068
  * <inlinegraphic fileref="document-save-as.png" format="PNG"></inlinegraphic>
1069
+ *
1070
+ * Deprecated: 3.10: Use named icon &quot;document-save-as&quot; or the label &quot;Save _As&quot;.
878
1071
  */
879
- #define GTK_STOCK_SAVE_AS "gtk-save-as"
1072
+ #define GTK_STOCK_SAVE_AS ((GtkStock)"gtk-save-as")
880
1073
 
881
1074
  /**
882
1075
  * GTK_STOCK_SELECT_ALL:
@@ -885,64 +1078,80 @@ void gtk_stock_set_translate_func (const gchar *domain,
885
1078
  * <inlinegraphic fileref="edit-select-all.png" format="PNG"></inlinegraphic>
886
1079
  *
887
1080
  * Since: 2.10
1081
+ *
1082
+ * Deprecated: 3.10: Use named icon &quot;edit-select-all&quot; or the label &quot;Select _All&quot;.
888
1083
  */
889
- #define GTK_STOCK_SELECT_ALL "gtk-select-all"
1084
+ #define GTK_STOCK_SELECT_ALL ((GtkStock)"gtk-select-all")
890
1085
 
891
1086
  /**
892
1087
  * GTK_STOCK_SELECT_COLOR:
893
1088
  *
894
1089
  * The "Color" item.
895
1090
  * <inlinegraphic fileref="gtk-select-color.png" format="PNG"></inlinegraphic>
1091
+ *
1092
+ * Deprecated: 3.10
896
1093
  */
897
- #define GTK_STOCK_SELECT_COLOR "gtk-select-color"
1094
+ #define GTK_STOCK_SELECT_COLOR ((GtkStock)"gtk-select-color")
898
1095
 
899
1096
  /**
900
1097
  * GTK_STOCK_SELECT_FONT:
901
1098
  *
902
1099
  * The "Font" item.
903
1100
  * <inlinegraphic fileref="gtk-font.png" format="PNG"></inlinegraphic>
1101
+ *
1102
+ * Deprecated: 3.10
904
1103
  */
905
- #define GTK_STOCK_SELECT_FONT "gtk-select-font"
1104
+ #define GTK_STOCK_SELECT_FONT ((GtkStock)"gtk-select-font")
906
1105
 
907
1106
  /**
908
1107
  * GTK_STOCK_SORT_ASCENDING:
909
1108
  *
910
1109
  * The "Ascending" item.
911
1110
  * <inlinegraphic fileref="view-sort-ascending.png" format="PNG"></inlinegraphic>
1111
+ *
1112
+ * Deprecated: 3.10: Use named icon &quot;view-sort-ascending&quot;.
912
1113
  */
913
- #define GTK_STOCK_SORT_ASCENDING "gtk-sort-ascending"
1114
+ #define GTK_STOCK_SORT_ASCENDING ((GtkStock)"gtk-sort-ascending")
914
1115
 
915
1116
  /**
916
1117
  * GTK_STOCK_SORT_DESCENDING:
917
1118
  *
918
1119
  * The "Descending" item.
919
1120
  * <inlinegraphic fileref="view-sort-descending.png" format="PNG"></inlinegraphic>
1121
+ *
1122
+ * Deprecated: 3.10: Use named icon &quot;view-sort-descending&quot;.
920
1123
  */
921
- #define GTK_STOCK_SORT_DESCENDING "gtk-sort-descending"
1124
+ #define GTK_STOCK_SORT_DESCENDING ((GtkStock)"gtk-sort-descending")
922
1125
 
923
1126
  /**
924
1127
  * GTK_STOCK_SPELL_CHECK:
925
1128
  *
926
1129
  * The "Spell Check" item.
927
1130
  * <inlinegraphic fileref="tools-check-spelling.png" format="PNG"></inlinegraphic>
1131
+ *
1132
+ * Deprecated: 3.10: Use named icon &quot;tools-check-spelling&quot;.
928
1133
  */
929
- #define GTK_STOCK_SPELL_CHECK "gtk-spell-check"
1134
+ #define GTK_STOCK_SPELL_CHECK ((GtkStock)"gtk-spell-check")
930
1135
 
931
1136
  /**
932
1137
  * GTK_STOCK_STOP:
933
1138
  *
934
1139
  * The "Stop" item.
935
1140
  * <inlinegraphic fileref="process-stop.png" format="PNG"></inlinegraphic>
1141
+ *
1142
+ * Deprecated: 3.10: Use named icon &quot;process-stop&quot; or the label &quot;_Stop&quot;.
936
1143
  */
937
- #define GTK_STOCK_STOP "gtk-stop"
1144
+ #define GTK_STOCK_STOP ((GtkStock)"gtk-stop")
938
1145
 
939
1146
  /**
940
1147
  * GTK_STOCK_STRIKETHROUGH:
941
1148
  *
942
1149
  * The "Strikethrough" item.
943
1150
  * <inlinegraphic fileref="format-text-strikethrough.png" format="PNG"></inlinegraphic>
1151
+ *
1152
+ * Deprecated: 3.10: Use named icon &quot;format-text-strikethrough&quot; or the label &quot;_Strikethrough&quot;.
944
1153
  */
945
- #define GTK_STOCK_STRIKETHROUGH "gtk-strikethrough"
1154
+ #define GTK_STOCK_STRIKETHROUGH ((GtkStock)"gtk-strikethrough")
946
1155
 
947
1156
  /**
948
1157
  * GTK_STOCK_UNDELETE:
@@ -951,16 +1160,20 @@ void gtk_stock_set_translate_func (const gchar *domain,
951
1160
  * <inlinegraphic fileref="gtk-undelete-ltr.png" format="PNG"></inlinegraphic>
952
1161
  * RTL variant
953
1162
  * <inlinegraphic fileref="gtk-undelete-rtl.png" format="PNG"></inlinegraphic>
1163
+ *
1164
+ * Deprecated: 3.10
954
1165
  */
955
- #define GTK_STOCK_UNDELETE "gtk-undelete"
1166
+ #define GTK_STOCK_UNDELETE ((GtkStock)"gtk-undelete")
956
1167
 
957
1168
  /**
958
1169
  * GTK_STOCK_UNDERLINE:
959
1170
  *
960
1171
  * The "Underline" item.
961
1172
  * <inlinegraphic fileref="format-text-underline.png" format="PNG"></inlinegraphic>
1173
+ *
1174
+ * Deprecated: 3.10: Use named icon &quot;format-text-underline&quot; or the label &quot;_Underline&quot;.
962
1175
  */
963
- #define GTK_STOCK_UNDERLINE "gtk-underline"
1176
+ #define GTK_STOCK_UNDERLINE ((GtkStock)"gtk-underline")
964
1177
 
965
1178
  /**
966
1179
  * GTK_STOCK_UNDO:
@@ -969,8 +1182,10 @@ void gtk_stock_set_translate_func (const gchar *domain,
969
1182
  * <inlinegraphic fileref="edit-undo-ltr.png" format="PNG"></inlinegraphic>
970
1183
  * RTL variant
971
1184
  * <inlinegraphic fileref="edit-undo-rtl.png" format="PNG"></inlinegraphic>
1185
+ *
1186
+ * Deprecated: 3.10: Use named icon &quot;edit-undo&quot; or the label &quot;_Undo&quot;.
972
1187
  */
973
- #define GTK_STOCK_UNDO "gtk-undo"
1188
+ #define GTK_STOCK_UNDO ((GtkStock)"gtk-undo")
974
1189
 
975
1190
  /**
976
1191
  * GTK_STOCK_UNINDENT:
@@ -981,48 +1196,60 @@ void gtk_stock_set_translate_func (const gchar *domain,
981
1196
  * <inlinegraphic fileref="format-indent-less-rtl.png" format="PNG"></inlinegraphic>
982
1197
  *
983
1198
  * Since: 2.4
1199
+ *
1200
+ * Deprecated: 3.10: Use named icon &quot;format-indent-less&quot;.
984
1201
  */
985
- #define GTK_STOCK_UNINDENT "gtk-unindent"
1202
+ #define GTK_STOCK_UNINDENT ((GtkStock)"gtk-unindent")
986
1203
 
987
1204
  /**
988
1205
  * GTK_STOCK_YES:
989
1206
  *
990
1207
  * The "Yes" item.
991
1208
  * <inlinegraphic fileref="gtk-yes.png" format="PNG"></inlinegraphic>
1209
+ *
1210
+ * Deprecated: 3.10
992
1211
  */
993
- #define GTK_STOCK_YES "gtk-yes"
1212
+ #define GTK_STOCK_YES ((GtkStock)"gtk-yes")
994
1213
 
995
1214
  /**
996
1215
  * GTK_STOCK_ZOOM_100:
997
1216
  *
998
1217
  * The "Zoom 100%" item.
999
1218
  * <inlinegraphic fileref="zoom-original.png" format="PNG"></inlinegraphic>
1219
+ *
1220
+ * Deprecated: 3.10: Use named icon &quot;zoom-original&quot; or the label &quot;_Normal Size&quot;.
1000
1221
  */
1001
- #define GTK_STOCK_ZOOM_100 "gtk-zoom-100"
1222
+ #define GTK_STOCK_ZOOM_100 ((GtkStock)"gtk-zoom-100")
1002
1223
 
1003
1224
  /**
1004
1225
  * GTK_STOCK_ZOOM_FIT:
1005
1226
  *
1006
1227
  * The "Zoom to Fit" item.
1007
1228
  * <inlinegraphic fileref="zoom-fit-best.png" format="PNG"></inlinegraphic>
1229
+ *
1230
+ * Deprecated: 3.10: Use named icon &quot;zoom-fit-best&quot; or the label &quot;Best _Fit&quot;.
1008
1231
  */
1009
- #define GTK_STOCK_ZOOM_FIT "gtk-zoom-fit"
1232
+ #define GTK_STOCK_ZOOM_FIT ((GtkStock)"gtk-zoom-fit")
1010
1233
 
1011
1234
  /**
1012
1235
  * GTK_STOCK_ZOOM_IN:
1013
1236
  *
1014
1237
  * The "Zoom In" item.
1015
1238
  * <inlinegraphic fileref="zoom-in.png" format="PNG"></inlinegraphic>
1239
+ *
1240
+ * Deprecated: 3.10: Use named icon &quot;zoom-in&quot; or the label &quot;Zoom _In&quot;.
1016
1241
  */
1017
- #define GTK_STOCK_ZOOM_IN "gtk-zoom-in"
1242
+ #define GTK_STOCK_ZOOM_IN ((GtkStock)"gtk-zoom-in")
1018
1243
 
1019
1244
  /**
1020
1245
  * GTK_STOCK_ZOOM_OUT:
1021
1246
  *
1022
1247
  * The "Zoom Out" item.
1023
1248
  * <inlinegraphic fileref="zoom-out.png" format="PNG"></inlinegraphic>
1249
+ *
1250
+ * Deprecated: 3.10: Use named icon &quot;zoom-out&quot; or the label &quot;Zoom _Out&quot;.
1024
1251
  */
1025
- #define GTK_STOCK_ZOOM_OUT "gtk-zoom-out"
1252
+ #define GTK_STOCK_ZOOM_OUT ((GtkStock)"gtk-zoom-out")
1026
1253
 
1027
1254
  G_END_DECLS
1028
1255