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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (756) hide show
  1. data/Rakefile +66 -1
  2. data/ext/gtk2/extconf.rb +0 -96
  3. data/ext/gtk2/global.h +274 -13
  4. data/ext/gtk2/gtk2.def +5 -3
  5. data/ext/gtk2/init.c +263 -19
  6. data/ext/gtk2/rbgdk.c +245 -89
  7. data/ext/gtk2/rbgdk.h +32 -6
  8. data/ext/gtk2/rbgdkatom.c +38 -28
  9. data/ext/gtk2/rbgdkcairo.c +32 -42
  10. data/ext/gtk2/rbgdkcolor.c +52 -42
  11. data/ext/gtk2/rbgdkcolormap.c +42 -37
  12. data/ext/gtk2/rbgdkconst.c +23 -13
  13. data/ext/gtk2/rbgdkconversions.h +19 -6
  14. data/ext/gtk2/rbgdkcursor.c +37 -25
  15. data/ext/gtk2/rbgdkdevice.c +77 -67
  16. data/ext/gtk2/rbgdkdisplay.c +158 -150
  17. data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
  18. data/ext/gtk2/rbgdkdragcontext.c +121 -70
  19. data/ext/gtk2/rbgdkdraw.c +252 -160
  20. data/ext/gtk2/rbgdkevent.c +30 -20
  21. data/ext/gtk2/rbgdkgc.c +123 -116
  22. data/ext/gtk2/rbgdkgeometry.c +77 -68
  23. data/ext/gtk2/rbgdkimage.c +58 -47
  24. data/ext/gtk2/rbgdkinput.c +33 -26
  25. data/ext/gtk2/rbgdkkeymap.c +38 -27
  26. data/ext/gtk2/rbgdkkeyval.c +44 -32
  27. data/ext/gtk2/rbgdkpango.c +66 -39
  28. data/ext/gtk2/rbgdkpangorenderer.c +63 -35
  29. data/ext/gtk2/rbgdkpixbuf.c +36 -25
  30. data/ext/gtk2/rbgdkpixmap.c +65 -49
  31. data/ext/gtk2/rbgdkproperty.c +66 -60
  32. data/ext/gtk2/rbgdkrectangle.c +54 -46
  33. data/ext/gtk2/rbgdkregion.c +144 -79
  34. data/ext/gtk2/rbgdkrgb.c +74 -58
  35. data/ext/gtk2/rbgdkscreen.c +103 -97
  36. data/ext/gtk2/rbgdkselection.c +49 -39
  37. data/ext/gtk2/rbgdkthreads.c +32 -19
  38. data/ext/gtk2/rbgdktimecoord.c +60 -38
  39. data/ext/gtk2/rbgdkvisual.c +79 -71
  40. data/ext/gtk2/rbgdkwindow.c +284 -305
  41. data/ext/gtk2/rbgdkwindowattr.c +69 -58
  42. data/ext/gtk2/rbgdkx11.c +41 -28
  43. data/ext/gtk2/rbgtk.c +498 -19
  44. data/ext/gtk2/rbgtk.h +35 -20
  45. data/ext/gtk2/rbgtkaboutdialog.c +33 -80
  46. data/ext/gtk2/rbgtkaccelerator.c +36 -23
  47. data/ext/gtk2/rbgtkaccelgroup.c +50 -40
  48. data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
  49. data/ext/gtk2/rbgtkaccelkey.c +40 -28
  50. data/ext/gtk2/rbgtkaccellabel.c +30 -18
  51. data/ext/gtk2/rbgtkaccelmap.c +55 -42
  52. data/ext/gtk2/rbgtkaccessible.c +25 -14
  53. data/ext/gtk2/rbgtkaction.c +68 -68
  54. data/ext/gtk2/rbgtkactiongroup.c +317 -195
  55. data/ext/gtk2/rbgtkadjustment.c +33 -46
  56. data/ext/gtk2/rbgtkalignment.c +36 -24
  57. data/ext/gtk2/rbgtkallocation.c +53 -42
  58. data/ext/gtk2/rbgtkarrow.c +34 -22
  59. data/ext/gtk2/rbgtkaspectframe.c +32 -20
  60. data/ext/gtk2/rbgtkassistant.c +81 -61
  61. data/ext/gtk2/rbgtkbbox.c +32 -20
  62. data/ext/gtk2/rbgtkbin.c +28 -16
  63. data/ext/gtk2/rbgtkbindingset.c +42 -35
  64. data/ext/gtk2/rbgtkborder.c +34 -23
  65. data/ext/gtk2/rbgtkbox.c +40 -29
  66. data/ext/gtk2/rbgtkbuildable.c +57 -45
  67. data/ext/gtk2/rbgtkbuilder.c +53 -38
  68. data/ext/gtk2/rbgtkbutton.c +41 -55
  69. data/ext/gtk2/rbgtkcalendar.c +51 -40
  70. data/ext/gtk2/rbgtkcelleditable.c +28 -17
  71. data/ext/gtk2/rbgtkcelllayout.c +41 -30
  72. data/ext/gtk2/rbgtkcellrenderer.c +43 -32
  73. data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
  74. data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
  75. data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
  76. data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
  77. data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
  78. data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
  79. data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
  80. data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
  81. data/ext/gtk2/rbgtkcellview.c +34 -33
  82. data/ext/gtk2/rbgtkcheckbutton.c +28 -16
  83. data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
  84. data/ext/gtk2/rbgtkclipboard.c +123 -77
  85. data/ext/gtk2/rbgtkcolorbutton.c +26 -31
  86. data/ext/gtk2/rbgtkcolorsel.c +109 -55
  87. data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
  88. data/ext/gtk2/rbgtkcombo.c +43 -32
  89. data/ext/gtk2/rbgtkcombobox.c +44 -83
  90. data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
  91. data/ext/gtk2/rbgtkconst.c +23 -13
  92. data/ext/gtk2/rbgtkcontainer.c +153 -100
  93. data/ext/gtk2/rbgtkconversions.h +19 -6
  94. data/ext/gtk2/rbgtkcurve.c +46 -36
  95. data/ext/gtk2/rbgtkdialog.c +104 -70
  96. data/ext/gtk2/rbgtkdrag.c +173 -121
  97. data/ext/gtk2/rbgtkdrawingarea.c +28 -16
  98. data/ext/gtk2/rbgtkeditable.c +63 -51
  99. data/ext/gtk2/rbgtkentry.c +48 -85
  100. data/ext/gtk2/rbgtkentrycompletion.c +42 -55
  101. data/ext/gtk2/rbgtkeventbox.c +28 -16
  102. data/ext/gtk2/rbgtkexpander.c +26 -35
  103. data/ext/gtk2/rbgtkfilechooser.c +87 -143
  104. data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
  105. data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
  106. data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
  107. data/ext/gtk2/rbgtkfilefilter.c +45 -35
  108. data/ext/gtk2/rbgtkfilesel.c +54 -43
  109. data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
  110. data/ext/gtk2/rbgtkfixed.c +36 -25
  111. data/ext/gtk2/rbgtkfontbutton.c +26 -37
  112. data/ext/gtk2/rbgtkfontselection.c +27 -15
  113. data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
  114. data/ext/gtk2/rbgtkframe.c +39 -28
  115. data/ext/gtk2/rbgtkgamma.c +32 -20
  116. data/ext/gtk2/rbgtkhandlebox.c +31 -19
  117. data/ext/gtk2/rbgtkhbbox.c +28 -16
  118. data/ext/gtk2/rbgtkhbox.c +29 -17
  119. data/ext/gtk2/rbgtkhpaned.c +28 -16
  120. data/ext/gtk2/rbgtkhruler.c +28 -16
  121. data/ext/gtk2/rbgtkhscale.c +28 -16
  122. data/ext/gtk2/rbgtkhscrollbar.c +28 -16
  123. data/ext/gtk2/rbgtkhseparator.c +28 -16
  124. data/ext/gtk2/rbgtkiconfactory.c +35 -23
  125. data/ext/gtk2/rbgtkiconinfo.c +42 -30
  126. data/ext/gtk2/rbgtkiconset.c +31 -19
  127. data/ext/gtk2/rbgtkiconsize.c +38 -25
  128. data/ext/gtk2/rbgtkiconsource.c +62 -50
  129. data/ext/gtk2/rbgtkicontheme.c +95 -95
  130. data/ext/gtk2/rbgtkiconview.c +87 -121
  131. data/ext/gtk2/rbgtkimage.c +31 -40
  132. data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
  133. data/ext/gtk2/rbgtkimcontext.c +46 -34
  134. data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
  135. data/ext/gtk2/rbgtkimmulticontext.c +26 -14
  136. data/ext/gtk2/rbgtkinputdialog.c +28 -16
  137. data/ext/gtk2/rbgtkinvisible.c +24 -18
  138. data/ext/gtk2/rbgtkitem.c +32 -20
  139. data/ext/gtk2/rbgtkitemfactory.c +65 -57
  140. data/ext/gtk2/rbgtklabel.c +46 -57
  141. data/ext/gtk2/rbgtklayout.c +40 -29
  142. data/ext/gtk2/rbgtklinkbutton.c +26 -15
  143. data/ext/gtk2/rbgtkliststore.c +145 -102
  144. data/ext/gtk2/rbgtkmacros.h +19 -6
  145. data/ext/gtk2/rbgtkmenu.c +47 -59
  146. data/ext/gtk2/rbgtkmenubar.c +30 -30
  147. data/ext/gtk2/rbgtkmenuitem.c +34 -41
  148. data/ext/gtk2/rbgtkmenushell.c +43 -42
  149. data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
  150. data/ext/gtk2/rbgtkmessagedialog.c +31 -25
  151. data/ext/gtk2/rbgtkmisc.c +33 -22
  152. data/ext/gtk2/rbgtknotebook.c +98 -134
  153. data/ext/gtk2/rbgtkobject.c +46 -81
  154. data/ext/gtk2/rbgtkoptionmenu.c +35 -23
  155. data/ext/gtk2/rbgtkpagesetup.c +64 -54
  156. data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
  157. data/ext/gtk2/rbgtkpaned.c +46 -36
  158. data/ext/gtk2/rbgtkpapersize.c +60 -54
  159. data/ext/gtk2/rbgtkplug.c +32 -20
  160. data/ext/gtk2/rbgtkprintcontext.c +43 -35
  161. data/ext/gtk2/rbgtkprinter.c +36 -37
  162. data/ext/gtk2/rbgtkprintjob.c +36 -37
  163. data/ext/gtk2/rbgtkprintoperation.c +44 -33
  164. data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
  165. data/ext/gtk2/rbgtkprintsettings.c +248 -192
  166. data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
  167. data/ext/gtk2/rbgtkprogress.c +23 -13
  168. data/ext/gtk2/rbgtkprogressbar.c +47 -46
  169. data/ext/gtk2/rbgtkradioaction.c +84 -39
  170. data/ext/gtk2/rbgtkradiobutton.c +33 -21
  171. data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
  172. data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
  173. data/ext/gtk2/rbgtkrange.c +36 -56
  174. data/ext/gtk2/rbgtkrc.c +61 -49
  175. data/ext/gtk2/rbgtkrcstyle.c +59 -48
  176. data/ext/gtk2/rbgtkrecentaction.c +28 -16
  177. data/ext/gtk2/rbgtkrecentchooser.c +58 -92
  178. data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
  179. data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
  180. data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
  181. data/ext/gtk2/rbgtkrecentdata.c +47 -36
  182. data/ext/gtk2/rbgtkrecentfilter.c +55 -46
  183. data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
  184. data/ext/gtk2/rbgtkrecentinfo.c +66 -56
  185. data/ext/gtk2/rbgtkrecentmanager.c +47 -43
  186. data/ext/gtk2/rbgtkruler.c +35 -30
  187. data/ext/gtk2/rbgtkscale.c +29 -18
  188. data/ext/gtk2/rbgtkscalebutton.c +27 -27
  189. data/ext/gtk2/rbgtkscrollbar.c +23 -13
  190. data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
  191. data/ext/gtk2/rbgtkselection.c +87 -67
  192. data/ext/gtk2/rbgtkselectiondata.c +74 -65
  193. data/ext/gtk2/rbgtkseparator.c +23 -13
  194. data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
  195. data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
  196. data/ext/gtk2/rbgtksettings.c +123 -103
  197. data/ext/gtk2/rbgtksizegroup.c +33 -30
  198. data/ext/gtk2/rbgtksocket.c +32 -20
  199. data/ext/gtk2/rbgtkspinbutton.c +48 -38
  200. data/ext/gtk2/rbgtkspinner.c +27 -14
  201. data/ext/gtk2/rbgtkstatusbar.c +36 -31
  202. data/ext/gtk2/rbgtkstatusicon.c +31 -44
  203. data/ext/gtk2/rbgtkstock.c +137 -125
  204. data/ext/gtk2/rbgtkstyle.c +177 -161
  205. data/ext/gtk2/rbgtktable.c +58 -47
  206. data/ext/gtk2/rbgtktargetlist.c +56 -36
  207. data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
  208. data/ext/gtk2/rbgtktextappearance.c +44 -34
  209. data/ext/gtk2/rbgtktextattributes.c +54 -42
  210. data/ext/gtk2/rbgtktextbuffer.c +188 -191
  211. data/ext/gtk2/rbgtktextchild.c +29 -18
  212. data/ext/gtk2/rbgtktextiter.c +153 -145
  213. data/ext/gtk2/rbgtktextmark.c +33 -30
  214. data/ext/gtk2/rbgtktexttag.c +34 -22
  215. data/ext/gtk2/rbgtktexttagtable.c +36 -25
  216. data/ext/gtk2/rbgtktextview.c +85 -73
  217. data/ext/gtk2/rbgtktoggleaction.c +27 -22
  218. data/ext/gtk2/rbgtktogglebutton.c +37 -26
  219. data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
  220. data/ext/gtk2/rbgtktoolbar.c +66 -69
  221. data/ext/gtk2/rbgtktoolbutton.c +27 -40
  222. data/ext/gtk2/rbgtktoolitem.c +60 -62
  223. data/ext/gtk2/rbgtktooltip.c +36 -25
  224. data/ext/gtk2/rbgtktooltips.c +42 -34
  225. data/ext/gtk2/rbgtktreedragdest.c +20 -11
  226. data/ext/gtk2/rbgtktreedragsource.c +20 -11
  227. data/ext/gtk2/rbgtktreeiter.c +58 -47
  228. data/ext/gtk2/rbgtktreemodel.c +83 -65
  229. data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
  230. data/ext/gtk2/rbgtktreemodelsort.c +38 -27
  231. data/ext/gtk2/rbgtktreepath.c +55 -44
  232. data/ext/gtk2/rbgtktreerowreference.c +60 -42
  233. data/ext/gtk2/rbgtktreeselection.c +61 -52
  234. data/ext/gtk2/rbgtktreesortable.c +52 -42
  235. data/ext/gtk2/rbgtktreestore.c +88 -67
  236. data/ext/gtk2/rbgtktreeview.c +157 -185
  237. data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
  238. data/ext/gtk2/rbgtkuimanager.c +61 -61
  239. data/ext/gtk2/rbgtkvbbox.c +28 -16
  240. data/ext/gtk2/rbgtkvbox.c +29 -17
  241. data/ext/gtk2/rbgtkviewport.c +28 -16
  242. data/ext/gtk2/rbgtkvolumebutton.c +28 -16
  243. data/ext/gtk2/rbgtkvpaned.c +28 -16
  244. data/ext/gtk2/rbgtkvruler.c +28 -16
  245. data/ext/gtk2/rbgtkvscale.c +28 -16
  246. data/ext/gtk2/rbgtkvscrollbar.c +28 -16
  247. data/ext/gtk2/rbgtkvseparator.c +28 -16
  248. data/ext/gtk2/rbgtkwidget.c +284 -296
  249. data/ext/gtk2/rbgtkwindow.c +156 -214
  250. data/ext/gtk2/rbgtkwindowgroup.c +35 -24
  251. data/lib/1.8/gtk2.so +0 -0
  252. data/lib/1.9/gtk2.so +0 -0
  253. data/sample/testgtk/labels.rb +1 -0
  254. data/sample/testgtk/testgtk.rb +2 -0
  255. data/vendor/local/bin/gtk-builder-convert +29 -2
  256. data/vendor/local/bin/gtk-demo.exe +0 -0
  257. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  258. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  259. data/vendor/local/bin/libgailutil-18.dll +0 -0
  260. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  261. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  262. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  263. data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
  264. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
  265. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
  266. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
  267. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
  268. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  269. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
  270. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
  271. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
  272. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
  273. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
  274. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
  275. data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
  276. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
  277. data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
  278. data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
  279. data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
  280. data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
  281. data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
  282. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
  283. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
  284. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
  285. data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
  286. data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
  287. data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
  288. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
  289. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
  290. data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
  291. data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
  292. data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
  293. data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
  294. data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
  295. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
  296. data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
  297. data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
  298. data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
  299. data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
  300. data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
  301. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
  302. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
  303. data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
  304. data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
  305. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
  306. data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
  307. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
  308. data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
  309. data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
  310. data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
  311. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
  312. data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
  313. data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
  314. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
  315. data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
  316. data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
  317. data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
  318. data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
  319. data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
  320. data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
  321. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
  322. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  323. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
  324. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
  325. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
  326. data/vendor/local/lib/gailutil.lib +0 -0
  327. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  328. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  329. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  330. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  331. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  332. data/vendor/local/lib/libgailutil.dll.a +0 -0
  333. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  334. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  335. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  336. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  337. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  338. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  339. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  340. data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
  341. data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
  342. data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
  343. data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
  344. data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
  345. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  346. data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
  347. data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
  348. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  349. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  350. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  351. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  352. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
  353. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
  354. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  355. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  356. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  357. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  358. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
  359. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
  360. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
  361. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
  362. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
  363. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
  364. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
  365. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
  366. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
  367. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
  368. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
  369. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
  370. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
  371. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
  372. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
  373. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
  374. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
  375. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
  376. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
  377. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
  378. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
  379. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
  380. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
  381. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
  382. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
  383. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
  384. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
  385. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
  386. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
  387. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
  388. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
  389. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
  390. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
  391. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
  392. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
  393. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
  394. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
  395. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
  396. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
  397. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
  398. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
  399. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
  400. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
  401. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
  402. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
  403. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
  404. data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
  405. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
  406. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
  407. data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
  408. data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
  409. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
  410. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
  411. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
  412. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
  413. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
  414. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
  415. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
  416. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
  417. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
  418. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
  419. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
  420. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
  421. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
  422. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
  423. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
  424. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
  425. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
  426. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
  427. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
  428. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
  429. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
  430. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
  431. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
  432. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
  433. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
  434. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
  435. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
  436. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
  437. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
  438. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
  439. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
  440. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
  441. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
  442. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
  443. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
  444. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
  445. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
  446. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
  447. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
  448. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
  449. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
  450. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
  451. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
  452. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
  453. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
  454. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
  455. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
  456. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
  457. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
  458. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
  459. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
  460. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
  461. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
  462. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
  463. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
  464. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
  465. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
  466. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
  467. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
  468. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
  469. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
  470. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
  471. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
  472. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
  473. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
  474. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
  475. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
  476. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
  477. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
  478. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
  479. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
  480. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
  481. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
  482. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
  483. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
  484. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
  485. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
  486. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
  487. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
  488. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
  489. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
  490. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
  491. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
  492. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
  493. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
  494. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
  495. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
  496. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
  497. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
  498. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
  499. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
  500. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
  501. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
  502. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
  503. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
  504. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
  505. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
  506. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
  507. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
  508. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
  509. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
  510. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
  511. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
  512. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
  513. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
  514. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
  515. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
  516. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
  517. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
  518. data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
  519. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
  520. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
  521. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
  522. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
  523. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
  524. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
  525. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
  526. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
  527. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
  528. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
  529. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
  530. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
  531. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
  532. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
  533. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
  534. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
  535. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
  536. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
  537. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
  538. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
  539. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
  540. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
  541. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
  542. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
  543. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
  544. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
  545. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
  546. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
  547. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
  548. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
  549. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
  550. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
  552. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
  553. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
  554. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
  555. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
  556. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
  557. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
  558. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
  559. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
  560. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
  561. data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
  562. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
  563. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
  564. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
  565. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
  566. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
  567. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
  568. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
  569. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
  570. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
  571. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
  572. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
  573. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
  574. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
  575. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
  576. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
  577. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
  578. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
  579. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
  580. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
  581. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
  582. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
  583. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
  584. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
  585. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
  586. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
  587. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
  588. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
  589. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
  590. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
  591. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
  592. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
  593. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
  594. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
  595. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
  596. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
  597. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
  598. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
  599. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
  600. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
  601. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
  602. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
  603. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
  604. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
  605. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
  606. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
  607. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
  608. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
  609. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
  610. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
  611. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
  612. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
  613. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
  614. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
  615. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
  616. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
  617. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
  618. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
  619. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
  620. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
  621. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
  622. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
  623. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
  624. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
  625. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
  626. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
  627. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
  628. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
  629. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
  630. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
  631. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
  632. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
  633. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
  634. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
  635. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
  636. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
  637. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
  638. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
  639. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
  640. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
  641. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
  642. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
  643. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
  644. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
  645. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
  646. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
  647. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
  648. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
  649. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
  650. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
  651. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
  652. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
  653. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
  654. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
  655. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
  656. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
  657. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
  658. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
  659. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
  660. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
  661. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
  662. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
  663. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
  664. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
  665. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
  666. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
  667. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
  668. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
  669. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
  670. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
  671. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
  672. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
  673. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
  674. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
  675. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
  676. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
  677. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
  678. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
  679. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
  680. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
  681. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
  682. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
  683. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
  684. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
  685. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
  686. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
  687. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
  688. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
  689. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
  690. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
  691. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
  692. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
  693. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
  694. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
  695. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
  696. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
  697. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
  698. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
  699. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
  700. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
  701. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
  702. data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
  703. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
  704. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
  705. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
  706. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
  707. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
  708. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
  709. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
  710. data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
  711. data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
  712. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
  713. data/vendor/local/share/icons/hicolor/index.theme +1662 -0
  714. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
  715. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  716. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  717. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  718. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  719. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  720. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  721. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  722. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
  723. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  724. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  725. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  726. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
  727. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  728. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  729. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
  730. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  731. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  732. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  733. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  734. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  735. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  736. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  737. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
  738. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
  739. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  740. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  741. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  742. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  743. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  744. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  745. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  746. data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
  747. data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
  748. metadata +29 -31
  749. data/ChangeLog +0 -6902
  750. data/ext/gtk2/rbgtkmain.c +0 -493
  751. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
  752. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  753. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  754. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  755. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  756. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
2
  <!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
3
- <book xmlns="http://www.devhelp.net/book" title="GTK+ Reference Manual" link="index.html" author="" name="gtk" version="2" language="c">
3
+ <book xmlns="http://www.devhelp.net/book" title="GTK+ 2 Reference Manual" link="index.html" author="" name="gtk" version="2" language="c">
4
4
  <chapters>
5
5
  <sub name="GTK+ Overview" link="gtk.html">
6
6
  <sub name="Compiling the GTK+ libraries" link="gtk-building.html"/>
@@ -79,7 +79,7 @@
79
79
  </sub>
80
80
  <sub name="Multiline Text Editor" link="TextWidgetObjects.html">
81
81
  <sub name="Text Widget Overview" link="TextWidget.html"/>
82
- <sub name="GtkTextIter" link="gtk-GtkTextIter.html"/>
82
+ <sub name="GtkTextIter" link="GtkTextIter.html"/>
83
83
  <sub name="GtkTextMark" link="GtkTextMark.html"/>
84
84
  <sub name="GtkTextBuffer" link="GtkTextBuffer.html"/>
85
85
  <sub name="GtkTextTag" link="GtkTextTag.html"/>
@@ -114,6 +114,7 @@
114
114
  </sub>
115
115
  <sub name="Menus, Combo Box, Toolbar" link="MenusAndCombos.html">
116
116
  <sub name="GtkComboBox" link="GtkComboBox.html"/>
117
+ <sub name="GtkComboBoxText" link="GtkComboBoxText.html"/>
117
118
  <sub name="GtkComboBoxEntry" link="GtkComboBoxEntry.html"/>
118
119
  <sub name="GtkMenu" link="GtkMenu.html"/>
119
120
  <sub name="GtkMenuBar" link="GtkMenuBar.html"/>
@@ -189,7 +190,7 @@
189
190
  <sub name="GtkPrintContext" link="GtkPrintContext.html"/>
190
191
  <sub name="GtkPrintSettings" link="GtkPrintSettings.html"/>
191
192
  <sub name="GtkPageSetup" link="GtkPageSetup.html"/>
192
- <sub name="GtkPaperSize" link="gtk-GtkPaperSize.html"/>
193
+ <sub name="GtkPaperSize" link="GtkPaperSize.html"/>
193
194
  <sub name="GtkPrinter" link="GtkPrinter.html"/>
194
195
  <sub name="GtkPrintJob" link="GtkPrintJob.html"/>
195
196
  <sub name="GtkPrintUnixDialog" link="GtkPrintUnixDialog.html"/>
@@ -334,22 +335,23 @@
334
335
  <sub name="Index of new symbols in 2.18" link="api-index-2-18.html"/>
335
336
  <sub name="Index of new symbols in 2.20" link="api-index-2-20.html"/>
336
337
  <sub name="Index of new symbols in 2.22" link="api-index-2-22.html"/>
338
+ <sub name="Index of new symbols in 2.24" link="api-index-2-24.html"/>
337
339
  <sub name="Annotation Glossary" link="annotation-glossary.html"/>
338
340
  </chapters>
339
341
  <functions>
340
- <keyword type="" name="Common commandline options" link="gtk-running.html#id439000"/>
341
- <keyword type="" name="Environment variables" link="gtk-running.html#id452863"/>
342
+ <keyword type="" name="Common commandline options" link="gtk-running.html#id601152"/>
343
+ <keyword type="" name="Environment variables" link="gtk-running.html#id575150"/>
342
344
  <keyword type="" name="X11-specific commandline options" link="gtk-x11.html#x11-cmdline"/>
343
- <keyword type="" name="Server, client, window manager" link="gtk-x11.html#id445728"/>
345
+ <keyword type="" name="Server, client, window manager" link="gtk-x11.html#id579152"/>
344
346
  <keyword type="" name="Windows-specific commandline options" link="gtk-windows.html#win32-cmdline"/>
345
347
  <keyword type="" name="Windows-specific environment variables" link="gtk-windows.html#win32-envar"/>
346
- <keyword type="" name="Build requirements" link="gtk-directfb.html#id440373"/>
348
+ <keyword type="" name="Build requirements" link="gtk-directfb.html#id605755"/>
347
349
  <keyword type="" name="Window and no-window widgets" link="chap-drawing-model.html#window-no-window-widgets"/>
348
350
  <keyword type="" name="Hierarchical drawing" link="chap-drawing-model.html#hierarchical-drawing"/>
349
351
  <keyword type="" name="Notes on drawing no-window widgets" link="chap-drawing-model.html#notes-on-drawing-no-window-widgets"/>
350
352
  <keyword type="" name="Drawing over child windows" link="chap-drawing-model.html#include-inferiors"/>
351
353
  <keyword type="" name="Automatic double buffering" link="chap-drawing-model.html#automatic-double-buffering"/>
352
- <keyword type="function" name="gtk_set_locale ()" link="gtk-General.html#gtk-set-locale"/>
354
+ <keyword type="function" name="gtk_set_locale ()" link="gtk-General.html#gtk-set-locale" deprecated="2.24: Use setlocale() directly"/>
353
355
  <keyword type="function" name="gtk_disable_setlocale ()" link="gtk-General.html#gtk-disable-setlocale"/>
354
356
  <keyword type="function" name="gtk_get_default_language ()" link="gtk-General.html#gtk-get-default-language"/>
355
357
  <keyword type="function" name="gtk_parse_args ()" link="gtk-General.html#gtk-parse-args"/>
@@ -372,12 +374,12 @@
372
374
  <keyword type="function" name="gtk_grab_add ()" link="gtk-General.html#gtk-grab-add"/>
373
375
  <keyword type="function" name="gtk_grab_get_current ()" link="gtk-General.html#gtk-grab-get-current"/>
374
376
  <keyword type="function" name="gtk_grab_remove ()" link="gtk-General.html#gtk-grab-remove"/>
375
- <keyword type="function" name="gtk_init_add ()" link="gtk-General.html#gtk-init-add"/>
376
- <keyword type="function" name="gtk_quit_add_destroy ()" link="gtk-General.html#gtk-quit-add-destroy"/>
377
- <keyword type="function" name="gtk_quit_add ()" link="gtk-General.html#gtk-quit-add"/>
378
- <keyword type="function" name="gtk_quit_add_full ()" link="gtk-General.html#gtk-quit-add-full"/>
379
- <keyword type="function" name="gtk_quit_remove ()" link="gtk-General.html#gtk-quit-remove"/>
380
- <keyword type="function" name="gtk_quit_remove_by_data ()" link="gtk-General.html#gtk-quit-remove-by-data"/>
377
+ <keyword type="function" name="gtk_init_add ()" link="gtk-General.html#gtk-init-add" deprecated="This function is going to be removed in GTK+ 3.0"/>
378
+ <keyword type="function" name="gtk_quit_add_destroy ()" link="gtk-General.html#gtk-quit-add-destroy" deprecated="This function is going to be removed in GTK+ 3.0"/>
379
+ <keyword type="function" name="gtk_quit_add ()" link="gtk-General.html#gtk-quit-add" deprecated="This function is going to be removed in GTK+ 3.0"/>
380
+ <keyword type="function" name="gtk_quit_add_full ()" link="gtk-General.html#gtk-quit-add-full" deprecated="This function is going to be removed in GTK+ 3.0"/>
381
+ <keyword type="function" name="gtk_quit_remove ()" link="gtk-General.html#gtk-quit-remove" deprecated="This function is going to be removed in GTK+ 3.0"/>
382
+ <keyword type="function" name="gtk_quit_remove_by_data ()" link="gtk-General.html#gtk-quit-remove-by-data" deprecated="This function is going to be removed in GTK+ 3.0"/>
381
383
  <keyword type="function" name="gtk_timeout_add_full ()" link="gtk-General.html#gtk-timeout-add-full" deprecated="2.4: Use g_timeout_add_full() instead."/>
382
384
  <keyword type="function" name="gtk_timeout_add ()" link="gtk-General.html#gtk-timeout-add" deprecated="2.4: Use g_timeout_add() instead."/>
383
385
  <keyword type="function" name="gtk_timeout_remove ()" link="gtk-General.html#gtk-timeout-remove" deprecated="2.4: Use g_source_remove() instead."/>
@@ -402,7 +404,7 @@
402
404
  <keyword type="function" name="gtk_get_current_event_state ()" link="gtk-General.html#gtk-get-current-event-state"/>
403
405
  <keyword type="function" name="gtk_get_event_widget ()" link="gtk-General.html#gtk-get-event-widget"/>
404
406
  <keyword type="function" name="gtk_propagate_event ()" link="gtk-General.html#gtk-propagate-event"/>
405
- <keyword type="struct" name="GtkAccelGroup" link="gtk-Keyboard-Accelerators.html#GtkAccelGroup-struct"/>
407
+ <keyword type="struct" name="struct GtkAccelGroup" link="gtk-Keyboard-Accelerators.html#GtkAccelGroup-struct"/>
406
408
  <keyword type="function" name="gtk_accel_group_new ()" link="gtk-Keyboard-Accelerators.html#gtk-accel-group-new"/>
407
409
  <keyword type="macro" name="gtk_accel_group_ref" link="gtk-Keyboard-Accelerators.html#gtk-accel-group-ref" deprecated=""/>
408
410
  <keyword type="macro" name="gtk_accel_group_unref" link="gtk-Keyboard-Accelerators.html#gtk-accel-group-unref" deprecated=""/>
@@ -422,7 +424,7 @@
422
424
  <keyword type="function" name="gtk_accel_groups_activate ()" link="gtk-Keyboard-Accelerators.html#gtk-accel-groups-activate"/>
423
425
  <keyword type="function" name="gtk_accel_groups_from_object ()" link="gtk-Keyboard-Accelerators.html#gtk-accel-groups-from-object"/>
424
426
  <keyword type="function" name="gtk_accel_group_find ()" link="gtk-Keyboard-Accelerators.html#gtk-accel-group-find"/>
425
- <keyword type="struct" name="GtkAccelKey" link="gtk-Keyboard-Accelerators.html#GtkAccelKey"/>
427
+ <keyword type="struct" name="struct GtkAccelKey" link="gtk-Keyboard-Accelerators.html#GtkAccelKey"/>
426
428
  <keyword type="function" name="gtk_accelerator_valid ()" link="gtk-Keyboard-Accelerators.html#gtk-accelerator-valid"/>
427
429
  <keyword type="function" name="gtk_accelerator_parse ()" link="gtk-Keyboard-Accelerators.html#gtk-accelerator-parse"/>
428
430
  <keyword type="function" name="gtk_accelerator_name ()" link="gtk-Keyboard-Accelerators.html#gtk-accelerator-name"/>
@@ -438,8 +440,8 @@
438
440
  <keyword type="function" name="gtk_accel_map_add_entry ()" link="gtk-Accelerator-Maps.html#gtk-accel-map-add-entry"/>
439
441
  <keyword type="function" name="gtk_accel_map_lookup_entry ()" link="gtk-Accelerator-Maps.html#gtk-accel-map-lookup-entry"/>
440
442
  <keyword type="function" name="gtk_accel_map_change_entry ()" link="gtk-Accelerator-Maps.html#gtk-accel-map-change-entry"/>
441
- <keyword type="function" name="gtk_accel_map_load ()" link="gtk-Accelerator-Maps.html#gtk-accel-map-load"/>
442
- <keyword type="function" name="gtk_accel_map_save ()" link="gtk-Accelerator-Maps.html#gtk-accel-map-save"/>
443
+ <keyword type="macro" name="gtk_accel_map_load" link="gtk-Accelerator-Maps.html#gtk-accel-map-load"/>
444
+ <keyword type="macro" name="gtk_accel_map_save" link="gtk-Accelerator-Maps.html#gtk-accel-map-save"/>
443
445
  <keyword type="function" name="gtk_accel_map_foreach ()" link="gtk-Accelerator-Maps.html#gtk-accel-map-foreach"/>
444
446
  <keyword type="function" name="gtk_accel_map_load_fd ()" link="gtk-Accelerator-Maps.html#gtk-accel-map-load-fd"/>
445
447
  <keyword type="function" name="gtk_accel_map_save_fd ()" link="gtk-Accelerator-Maps.html#gtk-accel-map-save-fd"/>
@@ -527,7 +529,7 @@
527
529
  <keyword type="function" name="gtk_drag_source_add_image_targets ()" link="gtk-Drag-and-Drop.html#gtk-drag-source-add-image-targets" since="2.6"/>
528
530
  <keyword type="function" name="gtk_drag_source_add_uri_targets ()" link="gtk-Drag-and-Drop.html#gtk-drag-source-add-uri-targets" since="2.6"/>
529
531
  <keyword type="struct" name="GtkIconInfo" link="GtkIconTheme.html#GtkIconInfo"/>
530
- <keyword type="struct" name="GtkIconTheme" link="GtkIconTheme.html#GtkIconTheme-struct"/>
532
+ <keyword type="struct" name="struct GtkIconTheme" link="GtkIconTheme.html#GtkIconTheme-struct"/>
531
533
  <keyword type="enum" name="enum GtkIconLookupFlags" link="GtkIconTheme.html#GtkIconLookupFlags"/>
532
534
  <keyword type="macro" name="GTK_ICON_THEME_ERROR" link="GtkIconTheme.html#GTK-ICON-THEME-ERROR:CAPS"/>
533
535
  <keyword type="enum" name="enum GtkIconThemeError" link="GtkIconTheme.html#GtkIconThemeError"/>
@@ -535,10 +537,10 @@
535
537
  <keyword type="function" name="gtk_icon_theme_get_default ()" link="GtkIconTheme.html#gtk-icon-theme-get-default" since="2.4"/>
536
538
  <keyword type="function" name="gtk_icon_theme_get_for_screen ()" link="GtkIconTheme.html#gtk-icon-theme-get-for-screen" since="2.4"/>
537
539
  <keyword type="function" name="gtk_icon_theme_set_screen ()" link="GtkIconTheme.html#gtk-icon-theme-set-screen" since="2.4"/>
538
- <keyword type="function" name="gtk_icon_theme_set_search_path ()" link="GtkIconTheme.html#gtk-icon-theme-set-search-path" since="2.4"/>
539
- <keyword type="function" name="gtk_icon_theme_get_search_path ()" link="GtkIconTheme.html#gtk-icon-theme-get-search-path" since="2.4"/>
540
- <keyword type="function" name="gtk_icon_theme_append_search_path ()" link="GtkIconTheme.html#gtk-icon-theme-append-search-path" since="2.4"/>
541
- <keyword type="function" name="gtk_icon_theme_prepend_search_path ()" link="GtkIconTheme.html#gtk-icon-theme-prepend-search-path" since="2.4"/>
540
+ <keyword type="macro" name="gtk_icon_theme_set_search_path" link="GtkIconTheme.html#gtk-icon-theme-set-search-path" since="2.4"/>
541
+ <keyword type="macro" name="gtk_icon_theme_get_search_path" link="GtkIconTheme.html#gtk-icon-theme-get-search-path" since="2.4"/>
542
+ <keyword type="macro" name="gtk_icon_theme_append_search_path" link="GtkIconTheme.html#gtk-icon-theme-append-search-path" since="2.4"/>
543
+ <keyword type="macro" name="gtk_icon_theme_prepend_search_path" link="GtkIconTheme.html#gtk-icon-theme-prepend-search-path" since="2.4"/>
542
544
  <keyword type="function" name="gtk_icon_theme_set_custom_theme ()" link="GtkIconTheme.html#gtk-icon-theme-set-custom-theme" since="2.4"/>
543
545
  <keyword type="function" name="gtk_icon_theme_has_icon ()" link="GtkIconTheme.html#gtk-icon-theme-has-icon" since="2.4"/>
544
546
  <keyword type="function" name="gtk_icon_theme_lookup_icon ()" link="GtkIconTheme.html#gtk-icon-theme-lookup-icon" since="2.4"/>
@@ -555,7 +557,7 @@
555
557
  <keyword type="function" name="gtk_icon_info_free ()" link="GtkIconTheme.html#gtk-icon-info-free" since="2.4"/>
556
558
  <keyword type="function" name="gtk_icon_info_new_for_pixbuf ()" link="GtkIconTheme.html#gtk-icon-info-new-for-pixbuf" since="2.14"/>
557
559
  <keyword type="function" name="gtk_icon_info_get_base_size ()" link="GtkIconTheme.html#gtk-icon-info-get-base-size" since="2.4"/>
558
- <keyword type="function" name="gtk_icon_info_get_filename ()" link="GtkIconTheme.html#gtk-icon-info-get-filename" since="2.4"/>
560
+ <keyword type="macro" name="gtk_icon_info_get_filename" link="GtkIconTheme.html#gtk-icon-info-get-filename" since="2.4"/>
559
561
  <keyword type="function" name="gtk_icon_info_get_builtin_pixbuf ()" link="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" since="2.4"/>
560
562
  <keyword type="function" name="gtk_icon_info_load_icon ()" link="GtkIconTheme.html#gtk-icon-info-load-icon" since="2.4"/>
561
563
  <keyword type="function" name="gtk_icon_info_set_raw_coordinates ()" link="GtkIconTheme.html#gtk-icon-info-set-raw-coordinates" since="2.4"/>
@@ -563,7 +565,7 @@
563
565
  <keyword type="function" name="gtk_icon_info_get_attach_points ()" link="GtkIconTheme.html#gtk-icon-info-get-attach-points" since="2.4"/>
564
566
  <keyword type="function" name="gtk_icon_info_get_display_name ()" link="GtkIconTheme.html#gtk-icon-info-get-display-name" since="2.4"/>
565
567
  <keyword type="signal" name="The &quot;changed&quot; signal" link="GtkIconTheme.html#GtkIconTheme-changed"/>
566
- <keyword type="struct" name="GtkStockItem" link="gtk-Stock-Items.html#GtkStockItem"/>
568
+ <keyword type="struct" name="struct GtkStockItem" link="gtk-Stock-Items.html#GtkStockItem"/>
567
569
  <keyword type="function" name="gtk_stock_add ()" link="gtk-Stock-Items.html#gtk-stock-add"/>
568
570
  <keyword type="function" name="gtk_stock_add_static ()" link="gtk-Stock-Items.html#gtk-stock-add-static"/>
569
571
  <keyword type="function" name="gtk_stock_item_copy ()" link="gtk-Stock-Items.html#gtk-stock-item-copy"/>
@@ -679,7 +681,7 @@
679
681
  <keyword type="" name="GtkIconFactory as GtkBuildable" link="gtk-Themeable-Stock-Images.html#GtkIconFactory-BUILDER-UI"/>
680
682
  <keyword type="struct" name="GtkIconSource" link="gtk-Themeable-Stock-Images.html#GtkIconSource"/>
681
683
  <keyword type="struct" name="GtkIconFactory" link="gtk-Themeable-Stock-Images.html#GtkIconFactory-struct"/>
682
- <keyword type="struct" name="GtkIconSet" link="gtk-Themeable-Stock-Images.html#GtkIconSet"/>
684
+ <keyword type="struct" name="GtkIconSet" link="gtk-Themeable-Stock-Images.html#GtkIconSet-struct"/>
683
685
  <keyword type="enum" name="enum GtkIconSize" link="gtk-Themeable-Stock-Images.html#GtkIconSize"/>
684
686
  <keyword type="function" name="gtk_icon_source_copy ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-copy"/>
685
687
  <keyword type="function" name="gtk_icon_source_free ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-free"/>
@@ -705,7 +707,7 @@
705
707
  <keyword type="function" name="gtk_icon_set_get_sizes ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-set-get-sizes"/>
706
708
  <keyword type="function" name="gtk_icon_source_get_direction ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-direction"/>
707
709
  <keyword type="function" name="gtk_icon_source_get_direction_wildcarded ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-direction-wildcarded"/>
708
- <keyword type="function" name="gtk_icon_source_get_filename ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-filename"/>
710
+ <keyword type="macro" name="gtk_icon_source_get_filename" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-filename"/>
709
711
  <keyword type="function" name="gtk_icon_source_get_pixbuf ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-pixbuf"/>
710
712
  <keyword type="function" name="gtk_icon_source_get_icon_name ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-icon-name"/>
711
713
  <keyword type="function" name="gtk_icon_source_get_size ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-size"/>
@@ -715,19 +717,19 @@
715
717
  <keyword type="function" name="gtk_icon_source_new ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-new"/>
716
718
  <keyword type="function" name="gtk_icon_source_set_direction ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-direction"/>
717
719
  <keyword type="function" name="gtk_icon_source_set_direction_wildcarded ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-direction-wildcarded"/>
718
- <keyword type="function" name="gtk_icon_source_set_filename ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-filename"/>
720
+ <keyword type="macro" name="gtk_icon_source_set_filename" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-filename"/>
719
721
  <keyword type="function" name="gtk_icon_source_set_pixbuf ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-pixbuf"/>
720
722
  <keyword type="function" name="gtk_icon_source_set_icon_name ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-icon-name"/>
721
723
  <keyword type="function" name="gtk_icon_source_set_size ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-size"/>
722
724
  <keyword type="function" name="gtk_icon_source_set_size_wildcarded ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-size-wildcarded"/>
723
725
  <keyword type="function" name="gtk_icon_source_set_state ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-state"/>
724
726
  <keyword type="function" name="gtk_icon_source_set_state_wildcarded ()" link="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-state-wildcarded"/>
725
- <keyword type="" name="Default files" link="gtk-Resource-Files.html#id482190"/>
726
- <keyword type="" name="Pathnames and patterns" link="gtk-Resource-Files.html#id480661"/>
727
- <keyword type="" name="Optimizing RC Style Matches" link="gtk-Resource-Files.html#id531925"/>
728
- <keyword type="" name="Toplevel declarations" link="gtk-Resource-Files.html#id532105"/>
729
- <keyword type="" name="Styles" link="gtk-Resource-Files.html#id532406"/>
730
- <keyword type="" name="Key bindings" link="gtk-Resource-Files.html#id533461"/>
727
+ <keyword type="" name="Default files" link="gtk-Resource-Files.html#id669252"/>
728
+ <keyword type="" name="Pathnames and patterns" link="gtk-Resource-Files.html#id623146"/>
729
+ <keyword type="" name="Optimizing RC Style Matches" link="gtk-Resource-Files.html#id676132"/>
730
+ <keyword type="" name="Toplevel declarations" link="gtk-Resource-Files.html#id676310"/>
731
+ <keyword type="" name="Styles" link="gtk-Resource-Files.html#id676611"/>
732
+ <keyword type="" name="Key bindings" link="gtk-Resource-Files.html#id677662"/>
731
733
  <keyword type="struct" name="GtkRcStyle" link="gtk-Resource-Files.html#GtkRcStyle-struct"/>
732
734
  <keyword type="enum" name="enum GtkRcFlags" link="gtk-Resource-Files.html#GtkRcFlags"/>
733
735
  <keyword type="enum" name="enum GtkRcTokenType" link="gtk-Resource-Files.html#GtkRcTokenType"/>
@@ -737,14 +739,14 @@
737
739
  <keyword type="function" name="gtk_rc_add_widget_name_style ()" link="gtk-Resource-Files.html#gtk-rc-add-widget-name-style" deprecated="Use gtk_rc_parse_string() with a suitable string instead."/>
738
740
  <keyword type="function" name="gtk_rc_add_widget_class_style ()" link="gtk-Resource-Files.html#gtk-rc-add-widget-class-style" deprecated="Use gtk_rc_parse_string() with a suitable string instead."/>
739
741
  <keyword type="function" name="gtk_rc_add_class_style ()" link="gtk-Resource-Files.html#gtk-rc-add-class-style" deprecated="Use gtk_rc_parse_string() with a suitable string instead."/>
740
- <keyword type="function" name="gtk_rc_parse ()" link="gtk-Resource-Files.html#gtk-rc-parse"/>
742
+ <keyword type="macro" name="gtk_rc_parse" link="gtk-Resource-Files.html#gtk-rc-parse"/>
741
743
  <keyword type="function" name="gtk_rc_parse_string ()" link="gtk-Resource-Files.html#gtk-rc-parse-string"/>
742
744
  <keyword type="function" name="gtk_rc_reparse_all ()" link="gtk-Resource-Files.html#gtk-rc-reparse-all"/>
743
745
  <keyword type="function" name="gtk_rc_reparse_all_for_settings ()" link="gtk-Resource-Files.html#gtk-rc-reparse-all-for-settings"/>
744
746
  <keyword type="function" name="gtk_rc_reset_styles ()" link="gtk-Resource-Files.html#gtk-rc-reset-styles" since="2.4"/>
745
- <keyword type="function" name="gtk_rc_add_default_file ()" link="gtk-Resource-Files.html#gtk-rc-add-default-file"/>
747
+ <keyword type="macro" name="gtk_rc_add_default_file" link="gtk-Resource-Files.html#gtk-rc-add-default-file"/>
746
748
  <keyword type="function" name="gtk_rc_get_default_files ()" link="gtk-Resource-Files.html#gtk-rc-get-default-files"/>
747
- <keyword type="function" name="gtk_rc_set_default_files ()" link="gtk-Resource-Files.html#gtk-rc-set-default-files"/>
749
+ <keyword type="macro" name="gtk_rc_set_default_files" link="gtk-Resource-Files.html#gtk-rc-set-default-files"/>
748
750
  <keyword type="function" name="gtk_rc_parse_color ()" link="gtk-Resource-Files.html#gtk-rc-parse-color"/>
749
751
  <keyword type="function" name="gtk_rc_parse_color_full ()" link="gtk-Resource-Files.html#gtk-rc-parse-color-full" since="2.12"/>
750
752
  <keyword type="function" name="gtk_rc_parse_state ()" link="gtk-Resource-Files.html#gtk-rc-parse-state"/>
@@ -760,7 +762,7 @@
760
762
  <keyword type="function" name="gtk_rc_style_ref ()" link="gtk-Resource-Files.html#gtk-rc-style-ref" deprecated="Use g_object_ref() instead"/>
761
763
  <keyword type="function" name="gtk_rc_style_unref ()" link="gtk-Resource-Files.html#gtk-rc-style-unref" deprecated="Use g_object_unref() instead"/>
762
764
  <keyword type="struct" name="GtkSettings" link="GtkSettings.html#GtkSettings-struct"/>
763
- <keyword type="struct" name="GtkSettingsValue" link="GtkSettings.html#GtkSettingsValue"/>
765
+ <keyword type="struct" name="struct GtkSettingsValue" link="GtkSettings.html#GtkSettingsValue"/>
764
766
  <keyword type="function" name="gtk_settings_get_default ()" link="GtkSettings.html#gtk-settings-get-default"/>
765
767
  <keyword type="function" name="gtk_settings_get_for_screen ()" link="GtkSettings.html#gtk-settings-get-for-screen" since="2.2"/>
766
768
  <keyword type="function" name="gtk_settings_install_property ()" link="GtkSettings.html#gtk-settings-install-property"/>
@@ -840,11 +842,11 @@
840
842
  <keyword type="property" name="The &quot;gtk-xft-hinting&quot; property" link="GtkSettings.html#GtkSettings--gtk-xft-hinting"/>
841
843
  <keyword type="property" name="The &quot;gtk-xft-hintstyle&quot; property" link="GtkSettings.html#GtkSettings--gtk-xft-hintstyle"/>
842
844
  <keyword type="property" name="The &quot;gtk-xft-rgba&quot; property" link="GtkSettings.html#GtkSettings--gtk-xft-rgba"/>
843
- <keyword type="" name="Installing a key binding" link="gtk-Bindings.html#id427374"/>
844
- <keyword type="struct" name="GtkBindingSet" link="gtk-Bindings.html#GtkBindingSet"/>
845
- <keyword type="struct" name="GtkBindingEntry" link="gtk-Bindings.html#GtkBindingEntry"/>
846
- <keyword type="struct" name="GtkBindingSignal" link="gtk-Bindings.html#GtkBindingSignal"/>
847
- <keyword type="struct" name="GtkBindingArg" link="gtk-Bindings.html#GtkBindingArg"/>
845
+ <keyword type="" name="Installing a key binding" link="gtk-Bindings.html#id669012"/>
846
+ <keyword type="struct" name="struct GtkBindingSet" link="gtk-Bindings.html#GtkBindingSet"/>
847
+ <keyword type="struct" name="struct GtkBindingEntry" link="gtk-Bindings.html#GtkBindingEntry"/>
848
+ <keyword type="struct" name="struct GtkBindingSignal" link="gtk-Bindings.html#GtkBindingSignal"/>
849
+ <keyword type="struct" name="struct GtkBindingArg" link="gtk-Bindings.html#GtkBindingArg"/>
848
850
  <keyword type="macro" name="gtk_binding_entry_add" link="gtk-Bindings.html#gtk-binding-entry-add" deprecated="2.12: Use gtk_binding_entry_add_signal() instead."/>
849
851
  <keyword type="function" name="gtk_binding_entry_add_signall ()" link="gtk-Bindings.html#gtk-binding-entry-add-signall"/>
850
852
  <keyword type="function" name="gtk_binding_entry_clear ()" link="gtk-Bindings.html#gtk-binding-entry-clear" deprecated="2.12: Use gtk_binding_entry_remove() instead."/>
@@ -903,7 +905,7 @@
903
905
  <keyword type="function" name="gtk_gc_get ()" link="gtk-Graphics-Contexts.html#gtk-gc-get"/>
904
906
  <keyword type="function" name="gtk_gc_release ()" link="gtk-Graphics-Contexts.html#gtk-gc-release"/>
905
907
  <keyword type="macro" name="GTK_STYLE_ATTACHED()" link="GtkStyle.html#GTK-STYLE-ATTACHED:CAPS"/>
906
- <keyword type="struct" name="GtkStyle" link="GtkStyle.html#GtkStyle-struct"/>
908
+ <keyword type="struct" name="struct GtkStyle" link="GtkStyle.html#GtkStyle-struct"/>
907
909
  <keyword type="function" name="gtk_style_new ()" link="GtkStyle.html#gtk-style-new"/>
908
910
  <keyword type="function" name="gtk_style_copy ()" link="GtkStyle.html#gtk-style-copy"/>
909
911
  <keyword type="function" name="gtk_style_attach ()" link="GtkStyle.html#gtk-style-attach"/>
@@ -965,7 +967,7 @@
965
967
  <keyword type="function" name="gtk_paint_layout ()" link="GtkStyle.html#gtk-paint-layout"/>
966
968
  <keyword type="function" name="gtk_paint_resize_grip ()" link="GtkStyle.html#gtk-paint-resize-grip"/>
967
969
  <keyword type="function" name="gtk_draw_insertion_cursor ()" link="GtkStyle.html#gtk-draw-insertion-cursor" since="2.4"/>
968
- <keyword type="struct" name="GtkBorder" link="GtkStyle.html#GtkBorder"/>
970
+ <keyword type="struct" name="struct GtkBorder" link="GtkStyle.html#GtkBorder-struct"/>
969
971
  <keyword type="function" name="gtk_border_new ()" link="GtkStyle.html#gtk-border-new" since="2.14"/>
970
972
  <keyword type="function" name="gtk_border_copy ()" link="GtkStyle.html#gtk-border-copy"/>
971
973
  <keyword type="function" name="gtk_border_free ()" link="GtkStyle.html#gtk-border-free"/>
@@ -973,9 +975,9 @@
973
975
  <keyword type="function" name="GtkRcPropertyParser ()" link="GtkStyle.html#GtkRcPropertyParser"/>
974
976
  <keyword type="signal" name="The &quot;realize&quot; signal" link="GtkStyle.html#GtkStyle-realize"/>
975
977
  <keyword type="signal" name="The &quot;unrealize&quot; signal" link="GtkStyle.html#GtkStyle-unrealize"/>
976
- <keyword type="struct" name="GtkTargetEntry" link="gtk-Selections.html#GtkTargetEntry"/>
977
- <keyword type="struct" name="GtkTargetList" link="gtk-Selections.html#GtkTargetList"/>
978
- <keyword type="struct" name="GtkTargetPair" link="gtk-Selections.html#GtkTargetPair"/>
978
+ <keyword type="struct" name="struct GtkTargetEntry" link="gtk-Selections.html#GtkTargetEntry"/>
979
+ <keyword type="struct" name="struct GtkTargetList" link="gtk-Selections.html#GtkTargetList-struct"/>
980
+ <keyword type="struct" name="struct GtkTargetPair" link="gtk-Selections.html#GtkTargetPair"/>
979
981
  <keyword type="function" name="gtk_target_list_new ()" link="gtk-Selections.html#gtk-target-list-new"/>
980
982
  <keyword type="function" name="gtk_target_list_ref ()" link="gtk-Selections.html#gtk-target-list-ref"/>
981
983
  <keyword type="function" name="gtk_target_list_unref ()" link="gtk-Selections.html#gtk-target-list-unref"/>
@@ -1034,10 +1036,10 @@
1034
1036
  <keyword type="macro" name="GTK_BINARY_AGE" link="gtk-Feature-Test-Macros.html#GTK-BINARY-AGE:CAPS"/>
1035
1037
  <keyword type="macro" name="GTK_INTERFACE_AGE" link="gtk-Feature-Test-Macros.html#GTK-INTERFACE-AGE:CAPS"/>
1036
1038
  <keyword type="macro" name="GTK_CHECK_VERSION()" link="gtk-Feature-Test-Macros.html#GTK-CHECK-VERSION:CAPS"/>
1037
- <keyword type="" name="What are signals?" link="gtk-Signals.html#id548927"/>
1038
- <keyword type="" name="How are signals used?" link="gtk-Signals.html#id591143"/>
1039
- <keyword type="" name="Basic Terminology" link="gtk-Signals.html#id591168"/>
1040
- <keyword type="" name="A brief note on how they work." link="gtk-Signals.html#id549127"/>
1039
+ <keyword type="" name="What are signals?" link="gtk-Signals.html#id679694"/>
1040
+ <keyword type="" name="How are signals used?" link="gtk-Signals.html#id648927"/>
1041
+ <keyword type="" name="Basic Terminology" link="gtk-Signals.html#id718054"/>
1042
+ <keyword type="" name="A brief note on how they work." link="gtk-Signals.html#id718171"/>
1041
1043
  <keyword type="macro" name="GTK_SIGNAL_OFFSET" link="gtk-Signals.html#GTK-SIGNAL-OFFSET:CAPS" deprecated=""/>
1042
1044
  <keyword type="enum" name="enum GtkSignalRunType" link="gtk-Signals.html#GtkSignalRunType" deprecated=""/>
1043
1045
  <keyword type="function" name="gtk_signal_new ()" link="gtk-Signals.html#gtk-signal-new" deprecated="Use g_signal_new() instead."/>
@@ -1087,12 +1089,12 @@
1087
1089
  <keyword type="typedef" name="GtkClassInitFunc" link="gtk-Types.html#GtkClassInitFunc" deprecated=""/>
1088
1090
  <keyword type="typedef" name="GtkObjectInitFunc" link="gtk-Types.html#GtkObjectInitFunc" deprecated=""/>
1089
1091
  <keyword type="function" name="GtkSignalFunc ()" link="gtk-Types.html#GtkSignalFunc" deprecated=""/>
1090
- <keyword type="function" name="GtkFunction ()" link="gtk-Types.html#GtkFunction"/>
1092
+ <keyword type="function" name="GtkFunction ()" link="gtk-Types.html#GtkFunction" deprecated="2.24: Use GSourceFunc() instead."/>
1091
1093
  <keyword type="function" name="GtkDestroyNotify ()" link="gtk-Types.html#GtkDestroyNotify" deprecated=""/>
1092
- <keyword type="function" name="GtkCallbackMarshal ()" link="gtk-Types.html#GtkCallbackMarshal"/>
1094
+ <keyword type="function" name="GtkCallbackMarshal ()" link="gtk-Types.html#GtkCallbackMarshal" deprecated="2.24:"/>
1093
1095
  <keyword type="typedef" name="GtkSignalMarshaller" link="gtk-Types.html#GtkSignalMarshaller" deprecated=""/>
1094
1096
  <keyword type="typedef" name="GtkTypeObject" link="gtk-Types.html#GtkTypeObject" deprecated=""/>
1095
- <keyword type="struct" name="GtkArg" link="gtk-Types.html#GtkArg" deprecated=""/>
1097
+ <keyword type="struct" name="struct GtkArg" link="gtk-Types.html#GtkArg" deprecated=""/>
1096
1098
  <keyword type="macro" name="GTK_VALUE_CHAR()" link="gtk-Types.html#GTK-VALUE-CHAR:CAPS" deprecated=""/>
1097
1099
  <keyword type="macro" name="GTK_VALUE_UCHAR()" link="gtk-Types.html#GTK-VALUE-UCHAR:CAPS" deprecated=""/>
1098
1100
  <keyword type="macro" name="GTK_VALUE_BOOL()" link="gtk-Types.html#GTK-VALUE-BOOL:CAPS" deprecated=""/>
@@ -1124,7 +1126,7 @@
1124
1126
  <keyword type="macro" name="GTK_RETLOC_BOXED()" link="gtk-Types.html#GTK-RETLOC-BOXED:CAPS" deprecated=""/>
1125
1127
  <keyword type="macro" name="GTK_RETLOC_POINTER()" link="gtk-Types.html#GTK-RETLOC-POINTER:CAPS" deprecated=""/>
1126
1128
  <keyword type="macro" name="GTK_RETLOC_OBJECT()" link="gtk-Types.html#GTK-RETLOC-OBJECT:CAPS" deprecated=""/>
1127
- <keyword type="struct" name="GtkTypeInfo" link="gtk-Types.html#GtkTypeInfo" deprecated=""/>
1129
+ <keyword type="struct" name="struct GtkTypeInfo" link="gtk-Types.html#GtkTypeInfo" deprecated=""/>
1128
1130
  <keyword type="typedef" name="GtkTypeClass" link="gtk-Types.html#GtkTypeClass" deprecated=""/>
1129
1131
  <keyword type="typedef" name="GtkEnumValue" link="gtk-Types.html#GtkEnumValue" deprecated=""/>
1130
1132
  <keyword type="typedef" name="GtkFlagValue" link="gtk-Types.html#GtkFlagValue" deprecated=""/>
@@ -1156,7 +1158,7 @@
1156
1158
  <keyword type="function" name="gtk_test_text_set ()" link="gtk-Testing.html#gtk-test-text-set" since="2.14"/>
1157
1159
  <keyword type="function" name="gtk_test_widget_click ()" link="gtk-Testing.html#gtk-test-widget-click" since="2.14"/>
1158
1160
  <keyword type="function" name="gtk_test_widget_send_key ()" link="gtk-Testing.html#gtk-test-widget-send-key" since="2.14"/>
1159
- <keyword type="struct" name="GtkMountOperation" link="gtk-Filesystem-utilities.html#GtkMountOperation-struct"/>
1161
+ <keyword type="struct" name="struct GtkMountOperation" link="gtk-Filesystem-utilities.html#GtkMountOperation-struct"/>
1160
1162
  <keyword type="function" name="gtk_mount_operation_new ()" link="gtk-Filesystem-utilities.html#gtk-mount-operation-new" since="2.14"/>
1161
1163
  <keyword type="function" name="gtk_mount_operation_is_showing ()" link="gtk-Filesystem-utilities.html#gtk-mount-operation-is-showing" since="2.14"/>
1162
1164
  <keyword type="function" name="gtk_mount_operation_set_parent ()" link="gtk-Filesystem-utilities.html#gtk-mount-operation-set-parent" since="2.14"/>
@@ -1168,7 +1170,7 @@
1168
1170
  <keyword type="property" name="The &quot;parent&quot; property" link="gtk-Filesystem-utilities.html#GtkMountOperation--parent"/>
1169
1171
  <keyword type="property" name="The &quot;screen&quot; property" link="gtk-Filesystem-utilities.html#GtkMountOperation--screen"/>
1170
1172
  <keyword type="" name="GtkDialog as GtkBuildable" link="GtkDialog.html#GtkDialog-BUILDER-UI"/>
1171
- <keyword type="struct" name="GtkDialog" link="GtkDialog.html#GtkDialog-struct"/>
1173
+ <keyword type="struct" name="struct GtkDialog" link="GtkDialog.html#GtkDialog-struct"/>
1172
1174
  <keyword type="enum" name="enum GtkDialogFlags" link="GtkDialog.html#GtkDialogFlags"/>
1173
1175
  <keyword type="enum" name="enum GtkResponseType" link="GtkDialog.html#GtkResponseType"/>
1174
1176
  <keyword type="function" name="gtk_dialog_new ()" link="GtkDialog.html#gtk-dialog-new"/>
@@ -1196,14 +1198,14 @@
1196
1198
  <keyword type="property" name="The &quot;content-area-spacing&quot; style property" link="GtkDialog.html#GtkDialog--s-content-area-spacing"/>
1197
1199
  <keyword type="signal" name="The &quot;close&quot; signal" link="GtkDialog.html#GtkDialog-close"/>
1198
1200
  <keyword type="signal" name="The &quot;response&quot; signal" link="GtkDialog.html#GtkDialog-response"/>
1199
- <keyword type="struct" name="GtkInvisible" link="GtkInvisible.html#GtkInvisible-struct"/>
1201
+ <keyword type="struct" name="struct GtkInvisible" link="GtkInvisible.html#GtkInvisible-struct"/>
1200
1202
  <keyword type="function" name="gtk_invisible_new ()" link="GtkInvisible.html#gtk-invisible-new"/>
1201
1203
  <keyword type="function" name="gtk_invisible_new_for_screen ()" link="GtkInvisible.html#gtk-invisible-new-for-screen" since="2.2"/>
1202
1204
  <keyword type="function" name="gtk_invisible_set_screen ()" link="GtkInvisible.html#gtk-invisible-set-screen" since="2.2"/>
1203
1205
  <keyword type="function" name="gtk_invisible_get_screen ()" link="GtkInvisible.html#gtk-invisible-get-screen" since="2.2"/>
1204
1206
  <keyword type="property" name="The &quot;screen&quot; property" link="GtkInvisible.html#GtkInvisible--screen"/>
1205
1207
  <keyword type="" name="GtkMessageDialog as GtkBuildable" link="GtkMessageDialog.html#GtkMessageDialog-BUILDER-UI"/>
1206
- <keyword type="struct" name="GtkMessageDialog" link="GtkMessageDialog.html#GtkMessageDialog-struct"/>
1208
+ <keyword type="struct" name="struct GtkMessageDialog" link="GtkMessageDialog.html#GtkMessageDialog-struct"/>
1207
1209
  <keyword type="enum" name="enum GtkMessageType" link="GtkMessageDialog.html#GtkMessageType"/>
1208
1210
  <keyword type="enum" name="enum GtkButtonsType" link="GtkMessageDialog.html#GtkButtonsType"/>
1209
1211
  <keyword type="function" name="gtk_message_dialog_new ()" link="GtkMessageDialog.html#gtk-message-dialog-new"/>
@@ -1275,8 +1277,8 @@
1275
1277
  <keyword type="function" name="gtk_window_begin_move_drag ()" link="GtkWindow.html#gtk-window-begin-move-drag"/>
1276
1278
  <keyword type="function" name="gtk_window_set_decorated ()" link="GtkWindow.html#gtk-window-set-decorated"/>
1277
1279
  <keyword type="function" name="gtk_window_set_deletable ()" link="GtkWindow.html#gtk-window-set-deletable" since="2.10"/>
1278
- <keyword type="function" name="gtk_window_set_frame_dimensions ()" link="GtkWindow.html#gtk-window-set-frame-dimensions"/>
1279
- <keyword type="function" name="gtk_window_set_has_frame ()" link="GtkWindow.html#gtk-window-set-has-frame"/>
1280
+ <keyword type="function" name="gtk_window_set_frame_dimensions ()" link="GtkWindow.html#gtk-window-set-frame-dimensions" deprecated="2.24: This function will be removed in GTK+ 3"/>
1281
+ <keyword type="function" name="gtk_window_set_has_frame ()" link="GtkWindow.html#gtk-window-set-has-frame" deprecated="2.24: This function will be removed in GTK+ 3"/>
1280
1282
  <keyword type="function" name="gtk_window_set_mnemonic_modifier ()" link="GtkWindow.html#gtk-window-set-mnemonic-modifier"/>
1281
1283
  <keyword type="function" name="gtk_window_set_type_hint ()" link="GtkWindow.html#gtk-window-set-type-hint"/>
1282
1284
  <keyword type="function" name="gtk_window_set_skip_taskbar_hint ()" link="GtkWindow.html#gtk-window-set-skip-taskbar-hint" since="2.2"/>
@@ -1292,8 +1294,8 @@
1292
1294
  <keyword type="function" name="gtk_window_get_default_icon_name ()" link="GtkWindow.html#gtk-window-get-default-icon-name" since="2.16"/>
1293
1295
  <keyword type="function" name="gtk_window_get_default_size ()" link="GtkWindow.html#gtk-window-get-default-size"/>
1294
1296
  <keyword type="function" name="gtk_window_get_destroy_with_parent ()" link="GtkWindow.html#gtk-window-get-destroy-with-parent"/>
1295
- <keyword type="function" name="gtk_window_get_frame_dimensions ()" link="GtkWindow.html#gtk-window-get-frame-dimensions"/>
1296
- <keyword type="function" name="gtk_window_get_has_frame ()" link="GtkWindow.html#gtk-window-get-has-frame"/>
1297
+ <keyword type="function" name="gtk_window_get_frame_dimensions ()" link="GtkWindow.html#gtk-window-get-frame-dimensions" deprecated="2.24: This function will be removed in GTK+ 3"/>
1298
+ <keyword type="function" name="gtk_window_get_has_frame ()" link="GtkWindow.html#gtk-window-get-has-frame" deprecated="2.24: This function will be removed in GTK+ 3"/>
1297
1299
  <keyword type="function" name="gtk_window_get_icon ()" link="GtkWindow.html#gtk-window-get-icon"/>
1298
1300
  <keyword type="function" name="gtk_window_get_icon_list ()" link="GtkWindow.html#gtk-window-get-icon-list"/>
1299
1301
  <keyword type="function" name="gtk_window_get_icon_name ()" link="GtkWindow.html#gtk-window-get-icon-name" since="2.6"/>
@@ -1319,11 +1321,11 @@
1319
1321
  <keyword type="function" name="gtk_window_resize ()" link="GtkWindow.html#gtk-window-resize"/>
1320
1322
  <keyword type="function" name="gtk_window_set_default_icon_list ()" link="GtkWindow.html#gtk-window-set-default-icon-list"/>
1321
1323
  <keyword type="function" name="gtk_window_set_default_icon ()" link="GtkWindow.html#gtk-window-set-default-icon" since="2.4"/>
1322
- <keyword type="function" name="gtk_window_set_default_icon_from_file ()" link="GtkWindow.html#gtk-window-set-default-icon-from-file" since="2.2"/>
1324
+ <keyword type="macro" name="gtk_window_set_default_icon_from_file" link="GtkWindow.html#gtk-window-set-default-icon-from-file" since="2.2"/>
1323
1325
  <keyword type="function" name="gtk_window_set_default_icon_name ()" link="GtkWindow.html#gtk-window-set-default-icon-name" since="2.6"/>
1324
1326
  <keyword type="function" name="gtk_window_set_icon ()" link="GtkWindow.html#gtk-window-set-icon"/>
1325
1327
  <keyword type="function" name="gtk_window_set_icon_list ()" link="GtkWindow.html#gtk-window-set-icon-list"/>
1326
- <keyword type="function" name="gtk_window_set_icon_from_file ()" link="GtkWindow.html#gtk-window-set-icon-from-file" since="2.2"/>
1328
+ <keyword type="macro" name="gtk_window_set_icon_from_file" link="GtkWindow.html#gtk-window-set-icon-from-file" since="2.2"/>
1327
1329
  <keyword type="function" name="gtk_window_set_icon_name ()" link="GtkWindow.html#gtk-window-set-icon-name" since="2.6"/>
1328
1330
  <keyword type="function" name="gtk_window_set_auto_startup_notification ()" link="GtkWindow.html#gtk-window-set-auto-startup-notification" since="2.2"/>
1329
1331
  <keyword type="function" name="gtk_window_get_opacity ()" link="GtkWindow.html#gtk-window-get-opacity" since="2.12"/>
@@ -1364,13 +1366,13 @@
1364
1366
  <keyword type="signal" name="The &quot;frame-event&quot; signal" link="GtkWindow.html#GtkWindow-frame-event"/>
1365
1367
  <keyword type="signal" name="The &quot;keys-changed&quot; signal" link="GtkWindow.html#GtkWindow-keys-changed"/>
1366
1368
  <keyword type="signal" name="The &quot;set-focus&quot; signal" link="GtkWindow.html#GtkWindow-set-focus"/>
1367
- <keyword type="struct" name="GtkWindowGroup" link="GtkWindowGroup.html#GtkWindowGroup-struct"/>
1369
+ <keyword type="struct" name="struct GtkWindowGroup" link="GtkWindowGroup.html#GtkWindowGroup-struct"/>
1368
1370
  <keyword type="function" name="gtk_window_group_new ()" link="GtkWindowGroup.html#gtk-window-group-new"/>
1369
1371
  <keyword type="function" name="gtk_window_group_add_window ()" link="GtkWindowGroup.html#gtk-window-group-add-window"/>
1370
1372
  <keyword type="function" name="gtk_window_group_remove_window ()" link="GtkWindowGroup.html#gtk-window-group-remove-window"/>
1371
1373
  <keyword type="function" name="gtk_window_group_list_windows ()" link="GtkWindowGroup.html#gtk-window-group-list-windows" since="2.14"/>
1372
1374
  <keyword type="function" name="gtk_window_group_get_current_grab ()" link="GtkWindowGroup.html#gtk-window-group-get-current-grab"/>
1373
- <keyword type="struct" name="GtkAboutDialog" link="GtkAboutDialog.html#GtkAboutDialog-struct"/>
1375
+ <keyword type="struct" name="struct GtkAboutDialog" link="GtkAboutDialog.html#GtkAboutDialog-struct"/>
1374
1376
  <keyword type="function" name="gtk_about_dialog_new ()" link="GtkAboutDialog.html#gtk-about-dialog-new" since="2.6"/>
1375
1377
  <keyword type="function" name="gtk_about_dialog_get_name ()" link="GtkAboutDialog.html#gtk-about-dialog-get-name" deprecated="2.12: Use gtk_about_dialog_get_program_name() instead." since="2.6"/>
1376
1378
  <keyword type="function" name="gtk_about_dialog_set_name ()" link="GtkAboutDialog.html#gtk-about-dialog-set-name" deprecated="2.12: Use gtk_about_dialog_set_program_name() instead." since="2.6"/>
@@ -1403,8 +1405,8 @@
1403
1405
  <keyword type="function" name="gtk_about_dialog_get_logo_icon_name ()" link="GtkAboutDialog.html#gtk-about-dialog-get-logo-icon-name" since="2.6"/>
1404
1406
  <keyword type="function" name="gtk_about_dialog_set_logo_icon_name ()" link="GtkAboutDialog.html#gtk-about-dialog-set-logo-icon-name" since="2.6"/>
1405
1407
  <keyword type="function" name="GtkAboutDialogActivateLinkFunc ()" link="GtkAboutDialog.html#GtkAboutDialogActivateLinkFunc"/>
1406
- <keyword type="function" name="gtk_about_dialog_set_email_hook ()" link="GtkAboutDialog.html#gtk-about-dialog-set-email-hook" since="2.6"/>
1407
- <keyword type="function" name="gtk_about_dialog_set_url_hook ()" link="GtkAboutDialog.html#gtk-about-dialog-set-url-hook" since="2.6"/>
1408
+ <keyword type="function" name="gtk_about_dialog_set_email_hook ()" link="GtkAboutDialog.html#gtk-about-dialog-set-email-hook" deprecated="2.24: Use the #GtkAboutDialog::activate-link signal" since="2.6"/>
1409
+ <keyword type="function" name="gtk_about_dialog_set_url_hook ()" link="GtkAboutDialog.html#gtk-about-dialog-set-url-hook" deprecated="2.24: Use the #GtkAboutDialog::activate-link signal" since="2.6"/>
1408
1410
  <keyword type="function" name="gtk_show_about_dialog ()" link="GtkAboutDialog.html#gtk-show-about-dialog" since="2.6"/>
1409
1411
  <keyword type="property" name="The &quot;artists&quot; property" link="GtkAboutDialog.html#GtkAboutDialog--artists"/>
1410
1412
  <keyword type="property" name="The &quot;authors&quot; property" link="GtkAboutDialog.html#GtkAboutDialog--authors"/>
@@ -1420,8 +1422,9 @@
1420
1422
  <keyword type="property" name="The &quot;website&quot; property" link="GtkAboutDialog.html#GtkAboutDialog--website"/>
1421
1423
  <keyword type="property" name="The &quot;website-label&quot; property" link="GtkAboutDialog.html#GtkAboutDialog--website-label"/>
1422
1424
  <keyword type="property" name="The &quot;wrap-license&quot; property" link="GtkAboutDialog.html#GtkAboutDialog--wrap-license"/>
1425
+ <keyword type="signal" name="The &quot;activate-link&quot; signal" link="GtkAboutDialog.html#GtkAboutDialog-activate-link"/>
1423
1426
  <keyword type="" name="GtkAssistant as GtkBuildable" link="GtkAssistant.html#GtkAssistant-BUILDER-UI"/>
1424
- <keyword type="struct" name="GtkAssistant" link="GtkAssistant.html#GtkAssistant-struct"/>
1427
+ <keyword type="struct" name="struct GtkAssistant" link="GtkAssistant.html#GtkAssistant-struct"/>
1425
1428
  <keyword type="function" name="gtk_assistant_new ()" link="GtkAssistant.html#gtk-assistant-new" since="2.10"/>
1426
1429
  <keyword type="function" name="gtk_assistant_get_current_page ()" link="GtkAssistant.html#gtk-assistant-get-current-page" since="2.10"/>
1427
1430
  <keyword type="function" name="gtk_assistant_set_current_page ()" link="GtkAssistant.html#gtk-assistant-set-current-page" since="2.10"/>
@@ -1458,11 +1461,11 @@
1458
1461
  <keyword type="signal" name="The &quot;cancel&quot; signal" link="GtkAssistant.html#GtkAssistant-cancel"/>
1459
1462
  <keyword type="signal" name="The &quot;close&quot; signal" link="GtkAssistant.html#GtkAssistant-close"/>
1460
1463
  <keyword type="signal" name="The &quot;prepare&quot; signal" link="GtkAssistant.html#GtkAssistant-prepare"/>
1461
- <keyword type="struct" name="GtkOffscreenWindow" link="GtkOffscreenWindow.html#GtkOffscreenWindow-struct"/>
1464
+ <keyword type="struct" name="struct GtkOffscreenWindow" link="GtkOffscreenWindow.html#GtkOffscreenWindow-struct"/>
1462
1465
  <keyword type="function" name="gtk_offscreen_window_new ()" link="GtkOffscreenWindow.html#gtk-offscreen-window-new" since="2.20"/>
1463
1466
  <keyword type="function" name="gtk_offscreen_window_get_pixmap ()" link="GtkOffscreenWindow.html#gtk-offscreen-window-get-pixmap" since="2.20"/>
1464
1467
  <keyword type="function" name="gtk_offscreen_window_get_pixbuf ()" link="GtkOffscreenWindow.html#gtk-offscreen-window-get-pixbuf" since="2.20"/>
1465
- <keyword type="struct" name="GtkAccelLabel" link="GtkAccelLabel.html#GtkAccelLabel-struct"/>
1468
+ <keyword type="struct" name="struct GtkAccelLabel" link="GtkAccelLabel.html#GtkAccelLabel-struct"/>
1466
1469
  <keyword type="function" name="gtk_accel_label_new ()" link="GtkAccelLabel.html#gtk-accel-label-new"/>
1467
1470
  <keyword type="function" name="gtk_accel_label_set_accel_closure ()" link="GtkAccelLabel.html#gtk-accel-label-set-accel-closure"/>
1468
1471
  <keyword type="function" name="gtk_accel_label_get_accel_widget ()" link="GtkAccelLabel.html#gtk-accel-label-get-accel-widget"/>
@@ -1471,7 +1474,7 @@
1471
1474
  <keyword type="function" name="gtk_accel_label_refetch ()" link="GtkAccelLabel.html#gtk-accel-label-refetch"/>
1472
1475
  <keyword type="property" name="The &quot;accel-closure&quot; property" link="GtkAccelLabel.html#GtkAccelLabel--accel-closure"/>
1473
1476
  <keyword type="property" name="The &quot;accel-widget&quot; property" link="GtkAccelLabel.html#GtkAccelLabel--accel-widget"/>
1474
- <keyword type="struct" name="GtkImage" link="GtkImage.html#GtkImage-struct"/>
1477
+ <keyword type="struct" name="struct GtkImage" link="GtkImage.html#GtkImage-struct"/>
1475
1478
  <keyword type="enum" name="enum GtkImageType" link="GtkImage.html#GtkImageType"/>
1476
1479
  <keyword type="function" name="gtk_image_get_icon_set ()" link="GtkImage.html#gtk-image-get-icon-set"/>
1477
1480
  <keyword type="function" name="gtk_image_get_image ()" link="GtkImage.html#gtk-image-get-image"/>
@@ -1482,7 +1485,7 @@
1482
1485
  <keyword type="function" name="gtk_image_get_icon_name ()" link="GtkImage.html#gtk-image-get-icon-name" since="2.6"/>
1483
1486
  <keyword type="function" name="gtk_image_get_gicon ()" link="GtkImage.html#gtk-image-get-gicon" since="2.14"/>
1484
1487
  <keyword type="function" name="gtk_image_get_storage_type ()" link="GtkImage.html#gtk-image-get-storage-type"/>
1485
- <keyword type="function" name="gtk_image_new_from_file ()" link="GtkImage.html#gtk-image-new-from-file"/>
1488
+ <keyword type="macro" name="gtk_image_new_from_file" link="GtkImage.html#gtk-image-new-from-file"/>
1486
1489
  <keyword type="function" name="gtk_image_new_from_icon_set ()" link="GtkImage.html#gtk-image-new-from-icon-set"/>
1487
1490
  <keyword type="function" name="gtk_image_new_from_image ()" link="GtkImage.html#gtk-image-new-from-image"/>
1488
1491
  <keyword type="function" name="gtk_image_new_from_pixbuf ()" link="GtkImage.html#gtk-image-new-from-pixbuf"/>
@@ -1491,7 +1494,7 @@
1491
1494
  <keyword type="function" name="gtk_image_new_from_animation ()" link="GtkImage.html#gtk-image-new-from-animation"/>
1492
1495
  <keyword type="function" name="gtk_image_new_from_icon_name ()" link="GtkImage.html#gtk-image-new-from-icon-name" since="2.6"/>
1493
1496
  <keyword type="function" name="gtk_image_new_from_gicon ()" link="GtkImage.html#gtk-image-new-from-gicon" since="2.14"/>
1494
- <keyword type="function" name="gtk_image_set_from_file ()" link="GtkImage.html#gtk-image-set-from-file"/>
1497
+ <keyword type="macro" name="gtk_image_set_from_file" link="GtkImage.html#gtk-image-set-from-file"/>
1495
1498
  <keyword type="function" name="gtk_image_set_from_icon_set ()" link="GtkImage.html#gtk-image-set-from-icon-set"/>
1496
1499
  <keyword type="function" name="gtk_image_set_from_image ()" link="GtkImage.html#gtk-image-set-from-image"/>
1497
1500
  <keyword type="function" name="gtk_image_set_from_pixbuf ()" link="GtkImage.html#gtk-image-set-from-pixbuf"/>
@@ -1520,12 +1523,12 @@
1520
1523
  <keyword type="property" name="The &quot;stock&quot; property" link="GtkImage.html#GtkImage--stock"/>
1521
1524
  <keyword type="property" name="The &quot;storage-type&quot; property" link="GtkImage.html#GtkImage--storage-type"/>
1522
1525
  <keyword type="" name="GtkLabel as GtkBuildable" link="GtkLabel.html#GtkLabel-BUILDER-UI"/>
1523
- <keyword type="" name="Mnemonics" link="GtkLabel.html#id676797"/>
1524
- <keyword type="" name="Markup (styled text)" link="GtkLabel.html#id676919"/>
1525
- <keyword type="" name="Selectable labels" link="GtkLabel.html#id677036"/>
1526
- <keyword type="" name="Text layout" link="GtkLabel.html#id677059"/>
1527
- <keyword type="" name="Links" link="GtkLabel.html#id677110"/>
1528
- <keyword type="struct" name="GtkLabel" link="GtkLabel.html#GtkLabel-struct"/>
1526
+ <keyword type="" name="Mnemonics" link="GtkLabel.html#id778891"/>
1527
+ <keyword type="" name="Markup (styled text)" link="GtkLabel.html#id779012"/>
1528
+ <keyword type="" name="Selectable labels" link="GtkLabel.html#id779129"/>
1529
+ <keyword type="" name="Text layout" link="GtkLabel.html#id779152"/>
1530
+ <keyword type="" name="Links" link="GtkLabel.html#id779204"/>
1531
+ <keyword type="struct" name="struct GtkLabel" link="GtkLabel.html#GtkLabel-struct"/>
1529
1532
  <keyword type="function" name="gtk_label_new ()" link="GtkLabel.html#gtk-label-new"/>
1530
1533
  <keyword type="function" name="gtk_label_set_text ()" link="GtkLabel.html#gtk-label-set-text"/>
1531
1534
  <keyword type="function" name="gtk_label_set_attributes ()" link="GtkLabel.html#gtk-label-set-attributes"/>
@@ -1597,7 +1600,7 @@
1597
1600
  <keyword type="signal" name="The &quot;copy-clipboard&quot; signal" link="GtkLabel.html#GtkLabel-copy-clipboard"/>
1598
1601
  <keyword type="signal" name="The &quot;move-cursor&quot; signal" link="GtkLabel.html#GtkLabel-move-cursor"/>
1599
1602
  <keyword type="signal" name="The &quot;populate-popup&quot; signal" link="GtkLabel.html#GtkLabel-populate-popup"/>
1600
- <keyword type="struct" name="GtkProgressBar" link="GtkProgressBar.html#GtkProgressBar-struct"/>
1603
+ <keyword type="struct" name="struct GtkProgressBar" link="GtkProgressBar.html#GtkProgressBar-struct"/>
1601
1604
  <keyword type="function" name="gtk_progress_bar_new ()" link="GtkProgressBar.html#gtk-progress-bar-new"/>
1602
1605
  <keyword type="function" name="gtk_progress_bar_pulse ()" link="GtkProgressBar.html#gtk-progress-bar-pulse"/>
1603
1606
  <keyword type="function" name="gtk_progress_bar_set_text ()" link="GtkProgressBar.html#gtk-progress-bar-set-text"/>
@@ -1634,7 +1637,7 @@
1634
1637
  <keyword type="property" name="The &quot;min-vertical-bar-width&quot; style property" link="GtkProgressBar.html#GtkProgressBar--s-min-vertical-bar-width"/>
1635
1638
  <keyword type="property" name="The &quot;xspacing&quot; style property" link="GtkProgressBar.html#GtkProgressBar--s-xspacing"/>
1636
1639
  <keyword type="property" name="The &quot;yspacing&quot; style property" link="GtkProgressBar.html#GtkProgressBar--s-yspacing"/>
1637
- <keyword type="struct" name="GtkStatusbar" link="GtkStatusbar.html#GtkStatusbar-struct"/>
1640
+ <keyword type="struct" name="struct GtkStatusbar" link="GtkStatusbar.html#GtkStatusbar-struct"/>
1638
1641
  <keyword type="function" name="gtk_statusbar_new ()" link="GtkStatusbar.html#gtk-statusbar-new"/>
1639
1642
  <keyword type="function" name="gtk_statusbar_get_context_id ()" link="GtkStatusbar.html#gtk-statusbar-get-context-id"/>
1640
1643
  <keyword type="function" name="gtk_statusbar_push ()" link="GtkStatusbar.html#gtk-statusbar-push"/>
@@ -1649,7 +1652,7 @@
1649
1652
  <keyword type="signal" name="The &quot;text-popped&quot; signal" link="GtkStatusbar.html#GtkStatusbar-text-popped"/>
1650
1653
  <keyword type="signal" name="The &quot;text-pushed&quot; signal" link="GtkStatusbar.html#GtkStatusbar-text-pushed"/>
1651
1654
  <keyword type="" name="GtkInfoBar as GtkBuildable" link="GtkInfoBar.html#GtkInfoBar-BUILDER-UI"/>
1652
- <keyword type="struct" name="GtkInfoBar" link="GtkInfoBar.html#GtkInfoBar-struct"/>
1655
+ <keyword type="struct" name="struct GtkInfoBar" link="GtkInfoBar.html#GtkInfoBar-struct"/>
1653
1656
  <keyword type="function" name="gtk_info_bar_new ()" link="GtkInfoBar.html#gtk-info-bar-new" since="2.18"/>
1654
1657
  <keyword type="function" name="gtk_info_bar_new_with_buttons ()" link="GtkInfoBar.html#gtk-info-bar-new-with-buttons"/>
1655
1658
  <keyword type="function" name="gtk_info_bar_add_action_widget ()" link="GtkInfoBar.html#gtk-info-bar-add-action-widget" since="2.18"/>
@@ -1669,7 +1672,7 @@
1669
1672
  <keyword type="property" name="The &quot;content-area-spacing&quot; style property" link="GtkInfoBar.html#GtkInfoBar--s-content-area-spacing"/>
1670
1673
  <keyword type="signal" name="The &quot;close&quot; signal" link="GtkInfoBar.html#GtkInfoBar-close"/>
1671
1674
  <keyword type="signal" name="The &quot;response&quot; signal" link="GtkInfoBar.html#GtkInfoBar-response"/>
1672
- <keyword type="struct" name="GtkStatusIcon" link="GtkStatusIcon.html#GtkStatusIcon-struct"/>
1675
+ <keyword type="struct" name="struct GtkStatusIcon" link="GtkStatusIcon.html#GtkStatusIcon-struct"/>
1673
1676
  <keyword type="function" name="gtk_status_icon_new ()" link="GtkStatusIcon.html#gtk-status-icon-new" since="2.10"/>
1674
1677
  <keyword type="function" name="gtk_status_icon_new_from_pixbuf ()" link="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" since="2.10"/>
1675
1678
  <keyword type="function" name="gtk_status_icon_new_from_file ()" link="GtkStatusIcon.html#gtk-status-icon-new-from-file" since="2.10"/>
@@ -1730,14 +1733,14 @@
1730
1733
  <keyword type="signal" name="The &quot;query-tooltip&quot; signal" link="GtkStatusIcon.html#GtkStatusIcon-query-tooltip"/>
1731
1734
  <keyword type="signal" name="The &quot;scroll-event&quot; signal" link="GtkStatusIcon.html#GtkStatusIcon-scroll-event"/>
1732
1735
  <keyword type="signal" name="The &quot;size-changed&quot; signal" link="GtkStatusIcon.html#GtkStatusIcon-size-changed"/>
1733
- <keyword type="struct" name="GtkSpinner" link="GtkSpinner.html#GtkSpinner-struct"/>
1736
+ <keyword type="struct" name="struct GtkSpinner" link="GtkSpinner.html#GtkSpinner-struct"/>
1734
1737
  <keyword type="function" name="gtk_spinner_new ()" link="GtkSpinner.html#gtk-spinner-new" since="2.20"/>
1735
1738
  <keyword type="function" name="gtk_spinner_start ()" link="GtkSpinner.html#gtk-spinner-start" since="2.20"/>
1736
1739
  <keyword type="function" name="gtk_spinner_stop ()" link="GtkSpinner.html#gtk-spinner-stop" since="2.20"/>
1737
1740
  <keyword type="property" name="The &quot;active&quot; property" link="GtkSpinner.html#GtkSpinner--active"/>
1738
1741
  <keyword type="property" name="The &quot;cycle-duration&quot; style property" link="GtkSpinner.html#GtkSpinner--s-cycle-duration"/>
1739
1742
  <keyword type="property" name="The &quot;num-steps&quot; style property" link="GtkSpinner.html#GtkSpinner--s-num-steps"/>
1740
- <keyword type="struct" name="GtkButton" link="GtkButton.html#GtkButton-struct"/>
1743
+ <keyword type="struct" name="struct GtkButton" link="GtkButton.html#GtkButton-struct"/>
1741
1744
  <keyword type="function" name="gtk_button_new ()" link="GtkButton.html#gtk-button-new"/>
1742
1745
  <keyword type="function" name="gtk_button_new_with_label ()" link="GtkButton.html#gtk-button-new-with-label"/>
1743
1746
  <keyword type="function" name="gtk_button_new_with_mnemonic ()" link="GtkButton.html#gtk-button-new-with-mnemonic"/>
@@ -1786,13 +1789,13 @@
1786
1789
  <keyword type="signal" name="The &quot;leave&quot; signal" link="GtkButton.html#GtkButton-leave"/>
1787
1790
  <keyword type="signal" name="The &quot;pressed&quot; signal" link="GtkButton.html#GtkButton-pressed"/>
1788
1791
  <keyword type="signal" name="The &quot;released&quot; signal" link="GtkButton.html#GtkButton-released"/>
1789
- <keyword type="struct" name="GtkCheckButton" link="GtkCheckButton.html#GtkCheckButton-struct"/>
1792
+ <keyword type="struct" name="struct GtkCheckButton" link="GtkCheckButton.html#GtkCheckButton-struct"/>
1790
1793
  <keyword type="function" name="gtk_check_button_new ()" link="GtkCheckButton.html#gtk-check-button-new"/>
1791
1794
  <keyword type="function" name="gtk_check_button_new_with_label ()" link="GtkCheckButton.html#gtk-check-button-new-with-label"/>
1792
1795
  <keyword type="function" name="gtk_check_button_new_with_mnemonic ()" link="GtkCheckButton.html#gtk-check-button-new-with-mnemonic"/>
1793
1796
  <keyword type="property" name="The &quot;indicator-size&quot; style property" link="GtkCheckButton.html#GtkCheckButton--s-indicator-size"/>
1794
1797
  <keyword type="property" name="The &quot;indicator-spacing&quot; style property" link="GtkCheckButton.html#GtkCheckButton--s-indicator-spacing"/>
1795
- <keyword type="struct" name="GtkRadioButton" link="GtkRadioButton.html#GtkRadioButton-struct"/>
1798
+ <keyword type="struct" name="struct GtkRadioButton" link="GtkRadioButton.html#GtkRadioButton-struct"/>
1796
1799
  <keyword type="function" name="gtk_radio_button_new ()" link="GtkRadioButton.html#gtk-radio-button-new"/>
1797
1800
  <keyword type="function" name="gtk_radio_button_new_from_widget ()" link="GtkRadioButton.html#gtk-radio-button-new-from-widget"/>
1798
1801
  <keyword type="function" name="gtk_radio_button_new_with_label ()" link="GtkRadioButton.html#gtk-radio-button-new-with-label"/>
@@ -1804,7 +1807,7 @@
1804
1807
  <keyword type="function" name="gtk_radio_button_get_group ()" link="GtkRadioButton.html#gtk-radio-button-get-group"/>
1805
1808
  <keyword type="property" name="The &quot;group&quot; property" link="GtkRadioButton.html#GtkRadioButton--group"/>
1806
1809
  <keyword type="signal" name="The &quot;group-changed&quot; signal" link="GtkRadioButton.html#GtkRadioButton-group-changed"/>
1807
- <keyword type="struct" name="GtkToggleButton" link="GtkToggleButton.html#GtkToggleButton-struct"/>
1810
+ <keyword type="struct" name="struct GtkToggleButton" link="GtkToggleButton.html#GtkToggleButton-struct"/>
1808
1811
  <keyword type="function" name="gtk_toggle_button_new ()" link="GtkToggleButton.html#gtk-toggle-button-new"/>
1809
1812
  <keyword type="function" name="gtk_toggle_button_new_with_label ()" link="GtkToggleButton.html#gtk-toggle-button-new-with-label"/>
1810
1813
  <keyword type="function" name="gtk_toggle_button_new_with_mnemonic ()" link="GtkToggleButton.html#gtk-toggle-button-new-with-mnemonic"/>
@@ -1820,18 +1823,18 @@
1820
1823
  <keyword type="property" name="The &quot;draw-indicator&quot; property" link="GtkToggleButton.html#GtkToggleButton--draw-indicator"/>
1821
1824
  <keyword type="property" name="The &quot;inconsistent&quot; property" link="GtkToggleButton.html#GtkToggleButton--inconsistent"/>
1822
1825
  <keyword type="signal" name="The &quot;toggled&quot; signal" link="GtkToggleButton.html#GtkToggleButton-toggled"/>
1823
- <keyword type="struct" name="GtkLinkButton" link="GtkLinkButton.html#GtkLinkButton-struct"/>
1826
+ <keyword type="struct" name="struct GtkLinkButton" link="GtkLinkButton.html#GtkLinkButton-struct"/>
1824
1827
  <keyword type="function" name="gtk_link_button_new ()" link="GtkLinkButton.html#gtk-link-button-new" since="2.10"/>
1825
1828
  <keyword type="function" name="gtk_link_button_new_with_label ()" link="GtkLinkButton.html#gtk-link-button-new-with-label" since="2.10"/>
1826
1829
  <keyword type="function" name="gtk_link_button_get_uri ()" link="GtkLinkButton.html#gtk-link-button-get-uri" since="2.10"/>
1827
1830
  <keyword type="function" name="gtk_link_button_set_uri ()" link="GtkLinkButton.html#gtk-link-button-set-uri" since="2.10"/>
1828
1831
  <keyword type="function" name="GtkLinkButtonUriFunc ()" link="GtkLinkButton.html#GtkLinkButtonUriFunc"/>
1829
- <keyword type="function" name="gtk_link_button_set_uri_hook ()" link="GtkLinkButton.html#gtk-link-button-set-uri-hook" since="2.10"/>
1832
+ <keyword type="function" name="gtk_link_button_set_uri_hook ()" link="GtkLinkButton.html#gtk-link-button-set-uri-hook" deprecated="2.24: Use the #GtkButton::clicked signal instead" since="2.10"/>
1830
1833
  <keyword type="function" name="gtk_link_button_get_visited ()" link="GtkLinkButton.html#gtk-link-button-get-visited" since="2.14"/>
1831
1834
  <keyword type="function" name="gtk_link_button_set_visited ()" link="GtkLinkButton.html#gtk-link-button-set-visited" since="2.14"/>
1832
1835
  <keyword type="property" name="The &quot;uri&quot; property" link="GtkLinkButton.html#GtkLinkButton--uri"/>
1833
1836
  <keyword type="property" name="The &quot;visited&quot; property" link="GtkLinkButton.html#GtkLinkButton--visited"/>
1834
- <keyword type="struct" name="GtkScaleButton" link="GtkScaleButton.html#GtkScaleButton-struct"/>
1837
+ <keyword type="struct" name="struct GtkScaleButton" link="GtkScaleButton.html#GtkScaleButton-struct"/>
1835
1838
  <keyword type="function" name="gtk_scale_button_new ()" link="GtkScaleButton.html#gtk-scale-button-new" since="2.12"/>
1836
1839
  <keyword type="function" name="gtk_scale_button_set_adjustment ()" link="GtkScaleButton.html#gtk-scale-button-set-adjustment" since="2.12"/>
1837
1840
  <keyword type="function" name="gtk_scale_button_set_icons ()" link="GtkScaleButton.html#gtk-scale-button-set-icons" since="2.12"/>
@@ -1850,9 +1853,9 @@
1850
1853
  <keyword type="signal" name="The &quot;popdown&quot; signal" link="GtkScaleButton.html#GtkScaleButton-popdown"/>
1851
1854
  <keyword type="signal" name="The &quot;popup&quot; signal" link="GtkScaleButton.html#GtkScaleButton-popup"/>
1852
1855
  <keyword type="signal" name="The &quot;value-changed&quot; signal" link="GtkScaleButton.html#GtkScaleButton-value-changed"/>
1853
- <keyword type="struct" name="GtkVolumeButton" link="GtkVolumeButton.html#GtkVolumeButton-struct"/>
1856
+ <keyword type="struct" name="struct GtkVolumeButton" link="GtkVolumeButton.html#GtkVolumeButton-struct"/>
1854
1857
  <keyword type="function" name="gtk_volume_button_new ()" link="GtkVolumeButton.html#gtk-volume-button-new" since="2.12"/>
1855
- <keyword type="struct" name="GtkEntry" link="GtkEntry.html#GtkEntry-struct"/>
1858
+ <keyword type="struct" name="struct GtkEntry" link="GtkEntry.html#GtkEntry-struct"/>
1856
1859
  <keyword type="function" name="gtk_entry_new ()" link="GtkEntry.html#gtk-entry-new"/>
1857
1860
  <keyword type="function" name="gtk_entry_new_with_buffer ()" link="GtkEntry.html#gtk-entry-new-with-buffer" since="2.18"/>
1858
1861
  <keyword type="function" name="gtk_entry_new_with_max_length ()" link="GtkEntry.html#gtk-entry-new-with-max-length" deprecated="2.0: Use gtk_entry_set_max_length() instead."/>
@@ -1982,7 +1985,7 @@
1982
1985
  <keyword type="signal" name="The &quot;populate-popup&quot; signal" link="GtkEntry.html#GtkEntry-populate-popup"/>
1983
1986
  <keyword type="signal" name="The &quot;preedit-changed&quot; signal" link="GtkEntry.html#GtkEntry-preedit-changed"/>
1984
1987
  <keyword type="signal" name="The &quot;toggle-overwrite&quot; signal" link="GtkEntry.html#GtkEntry-toggle-overwrite"/>
1985
- <keyword type="struct" name="GtkEntryBuffer" link="GtkEntryBuffer.html#GtkEntryBuffer-struct"/>
1988
+ <keyword type="struct" name="struct GtkEntryBuffer" link="GtkEntryBuffer.html#GtkEntryBuffer-struct"/>
1986
1989
  <keyword type="function" name="gtk_entry_buffer_new ()" link="GtkEntryBuffer.html#gtk-entry-buffer-new" since="2.18"/>
1987
1990
  <keyword type="function" name="gtk_entry_buffer_get_text ()" link="GtkEntryBuffer.html#gtk-entry-buffer-get-text" since="2.18"/>
1988
1991
  <keyword type="function" name="gtk_entry_buffer_set_text ()" link="GtkEntryBuffer.html#gtk-entry-buffer-set-text" since="2.18"/>
@@ -1999,7 +2002,7 @@
1999
2002
  <keyword type="property" name="The &quot;text&quot; property" link="GtkEntryBuffer.html#GtkEntryBuffer--text"/>
2000
2003
  <keyword type="signal" name="The &quot;deleted-text&quot; signal" link="GtkEntryBuffer.html#GtkEntryBuffer-deleted-text"/>
2001
2004
  <keyword type="signal" name="The &quot;inserted-text&quot; signal" link="GtkEntryBuffer.html#GtkEntryBuffer-inserted-text"/>
2002
- <keyword type="struct" name="GtkEntryCompletion" link="GtkEntryCompletion.html#GtkEntryCompletion-struct"/>
2005
+ <keyword type="struct" name="struct GtkEntryCompletion" link="GtkEntryCompletion.html#GtkEntryCompletion-struct"/>
2003
2006
  <keyword type="function" name="GtkEntryCompletionMatchFunc ()" link="GtkEntryCompletion.html#GtkEntryCompletionMatchFunc"/>
2004
2007
  <keyword type="function" name="gtk_entry_completion_new ()" link="GtkEntryCompletion.html#gtk-entry-completion-new" since="2.4"/>
2005
2008
  <keyword type="function" name="gtk_entry_completion_get_entry ()" link="GtkEntryCompletion.html#gtk-entry-completion-get-entry" since="2.4"/>
@@ -2038,13 +2041,13 @@
2038
2041
  <keyword type="signal" name="The &quot;cursor-on-match&quot; signal" link="GtkEntryCompletion.html#GtkEntryCompletion-cursor-on-match"/>
2039
2042
  <keyword type="signal" name="The &quot;insert-prefix&quot; signal" link="GtkEntryCompletion.html#GtkEntryCompletion-insert-prefix"/>
2040
2043
  <keyword type="signal" name="The &quot;match-selected&quot; signal" link="GtkEntryCompletion.html#GtkEntryCompletion-match-selected"/>
2041
- <keyword type="struct" name="GtkHScale" link="GtkHScale.html#GtkHScale-struct"/>
2044
+ <keyword type="struct" name="struct GtkHScale" link="GtkHScale.html#GtkHScale-struct"/>
2042
2045
  <keyword type="function" name="gtk_hscale_new ()" link="GtkHScale.html#gtk-hscale-new"/>
2043
2046
  <keyword type="function" name="gtk_hscale_new_with_range ()" link="GtkHScale.html#gtk-hscale-new-with-range"/>
2044
- <keyword type="struct" name="GtkVScale" link="GtkVScale.html#GtkVScale-struct"/>
2047
+ <keyword type="struct" name="struct GtkVScale" link="GtkVScale.html#GtkVScale-struct"/>
2045
2048
  <keyword type="function" name="gtk_vscale_new ()" link="GtkVScale.html#gtk-vscale-new"/>
2046
2049
  <keyword type="function" name="gtk_vscale_new_with_range ()" link="GtkVScale.html#gtk-vscale-new-with-range"/>
2047
- <keyword type="struct" name="GtkSpinButton" link="GtkSpinButton.html#GtkSpinButton-struct"/>
2050
+ <keyword type="struct" name="struct GtkSpinButton" link="GtkSpinButton.html#GtkSpinButton-struct"/>
2048
2051
  <keyword type="enum" name="enum GtkSpinButtonUpdatePolicy" link="GtkSpinButton.html#GtkSpinButtonUpdatePolicy"/>
2049
2052
  <keyword type="enum" name="enum GtkSpinType" link="GtkSpinButton.html#GtkSpinType"/>
2050
2053
  <keyword type="function" name="gtk_spin_button_configure ()" link="GtkSpinButton.html#gtk-spin-button-configure"/>
@@ -2104,100 +2107,100 @@
2104
2107
  <keyword type="signal" name="The &quot;changed&quot; signal" link="GtkEditable.html#GtkEditable-changed"/>
2105
2108
  <keyword type="signal" name="The &quot;delete-text&quot; signal" link="GtkEditable.html#GtkEditable-delete-text"/>
2106
2109
  <keyword type="signal" name="The &quot;insert-text&quot; signal" link="GtkEditable.html#GtkEditable-insert-text"/>
2107
- <keyword type="struct" name="GtkTextIter" link="gtk-GtkTextIter.html#GtkTextIter"/>
2108
- <keyword type="function" name="gtk_text_iter_get_buffer ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-buffer"/>
2109
- <keyword type="function" name="gtk_text_iter_copy ()" link="gtk-GtkTextIter.html#gtk-text-iter-copy"/>
2110
- <keyword type="function" name="gtk_text_iter_free ()" link="gtk-GtkTextIter.html#gtk-text-iter-free"/>
2111
- <keyword type="function" name="gtk_text_iter_get_offset ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-offset"/>
2112
- <keyword type="function" name="gtk_text_iter_get_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-line"/>
2113
- <keyword type="function" name="gtk_text_iter_get_line_offset ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-line-offset"/>
2114
- <keyword type="function" name="gtk_text_iter_get_line_index ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-line-index"/>
2115
- <keyword type="function" name="gtk_text_iter_get_visible_line_index ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-visible-line-index"/>
2116
- <keyword type="function" name="gtk_text_iter_get_visible_line_offset ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-visible-line-offset"/>
2117
- <keyword type="function" name="gtk_text_iter_get_char ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-char"/>
2118
- <keyword type="function" name="gtk_text_iter_get_slice ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-slice"/>
2119
- <keyword type="function" name="gtk_text_iter_get_text ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-text"/>
2120
- <keyword type="function" name="gtk_text_iter_get_visible_slice ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-visible-slice"/>
2121
- <keyword type="function" name="gtk_text_iter_get_visible_text ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-visible-text"/>
2122
- <keyword type="function" name="gtk_text_iter_get_pixbuf ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-pixbuf"/>
2123
- <keyword type="function" name="gtk_text_iter_get_marks ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-marks"/>
2124
- <keyword type="function" name="gtk_text_iter_get_toggled_tags ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-toggled-tags"/>
2125
- <keyword type="function" name="gtk_text_iter_get_child_anchor ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-child-anchor"/>
2126
- <keyword type="function" name="gtk_text_iter_begins_tag ()" link="gtk-GtkTextIter.html#gtk-text-iter-begins-tag"/>
2127
- <keyword type="function" name="gtk_text_iter_ends_tag ()" link="gtk-GtkTextIter.html#gtk-text-iter-ends-tag"/>
2128
- <keyword type="function" name="gtk_text_iter_toggles_tag ()" link="gtk-GtkTextIter.html#gtk-text-iter-toggles-tag"/>
2129
- <keyword type="function" name="gtk_text_iter_has_tag ()" link="gtk-GtkTextIter.html#gtk-text-iter-has-tag"/>
2130
- <keyword type="function" name="gtk_text_iter_get_tags ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-tags"/>
2131
- <keyword type="function" name="gtk_text_iter_editable ()" link="gtk-GtkTextIter.html#gtk-text-iter-editable"/>
2132
- <keyword type="function" name="gtk_text_iter_can_insert ()" link="gtk-GtkTextIter.html#gtk-text-iter-can-insert"/>
2133
- <keyword type="function" name="gtk_text_iter_starts_word ()" link="gtk-GtkTextIter.html#gtk-text-iter-starts-word"/>
2134
- <keyword type="function" name="gtk_text_iter_ends_word ()" link="gtk-GtkTextIter.html#gtk-text-iter-ends-word"/>
2135
- <keyword type="function" name="gtk_text_iter_inside_word ()" link="gtk-GtkTextIter.html#gtk-text-iter-inside-word"/>
2136
- <keyword type="function" name="gtk_text_iter_starts_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-starts-line"/>
2137
- <keyword type="function" name="gtk_text_iter_ends_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-ends-line"/>
2138
- <keyword type="function" name="gtk_text_iter_starts_sentence ()" link="gtk-GtkTextIter.html#gtk-text-iter-starts-sentence"/>
2139
- <keyword type="function" name="gtk_text_iter_ends_sentence ()" link="gtk-GtkTextIter.html#gtk-text-iter-ends-sentence"/>
2140
- <keyword type="function" name="gtk_text_iter_inside_sentence ()" link="gtk-GtkTextIter.html#gtk-text-iter-inside-sentence"/>
2141
- <keyword type="function" name="gtk_text_iter_is_cursor_position ()" link="gtk-GtkTextIter.html#gtk-text-iter-is-cursor-position"/>
2142
- <keyword type="function" name="gtk_text_iter_get_chars_in_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-chars-in-line"/>
2143
- <keyword type="function" name="gtk_text_iter_get_bytes_in_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-bytes-in-line"/>
2144
- <keyword type="function" name="gtk_text_iter_get_attributes ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-attributes"/>
2145
- <keyword type="function" name="gtk_text_iter_get_language ()" link="gtk-GtkTextIter.html#gtk-text-iter-get-language"/>
2146
- <keyword type="function" name="gtk_text_iter_is_end ()" link="gtk-GtkTextIter.html#gtk-text-iter-is-end"/>
2147
- <keyword type="function" name="gtk_text_iter_is_start ()" link="gtk-GtkTextIter.html#gtk-text-iter-is-start"/>
2148
- <keyword type="function" name="gtk_text_iter_forward_char ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-char"/>
2149
- <keyword type="function" name="gtk_text_iter_backward_char ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-char"/>
2150
- <keyword type="function" name="gtk_text_iter_forward_chars ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-chars"/>
2151
- <keyword type="function" name="gtk_text_iter_backward_chars ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-chars"/>
2152
- <keyword type="function" name="gtk_text_iter_forward_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-line"/>
2153
- <keyword type="function" name="gtk_text_iter_backward_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-line"/>
2154
- <keyword type="function" name="gtk_text_iter_forward_lines ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-lines"/>
2155
- <keyword type="function" name="gtk_text_iter_backward_lines ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-lines"/>
2156
- <keyword type="function" name="gtk_text_iter_forward_word_ends ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-word-ends"/>
2157
- <keyword type="function" name="gtk_text_iter_backward_word_starts ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-word-starts"/>
2158
- <keyword type="function" name="gtk_text_iter_forward_word_end ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-word-end"/>
2159
- <keyword type="function" name="gtk_text_iter_backward_word_start ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-word-start"/>
2160
- <keyword type="function" name="gtk_text_iter_forward_cursor_position ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-cursor-position"/>
2161
- <keyword type="function" name="gtk_text_iter_backward_cursor_position ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-cursor-position"/>
2162
- <keyword type="function" name="gtk_text_iter_forward_cursor_positions ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-cursor-positions"/>
2163
- <keyword type="function" name="gtk_text_iter_backward_cursor_positions ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-cursor-positions"/>
2164
- <keyword type="function" name="gtk_text_iter_backward_sentence_start ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-sentence-start"/>
2165
- <keyword type="function" name="gtk_text_iter_backward_sentence_starts ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-sentence-starts"/>
2166
- <keyword type="function" name="gtk_text_iter_forward_sentence_end ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-sentence-end"/>
2167
- <keyword type="function" name="gtk_text_iter_forward_sentence_ends ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-sentence-ends"/>
2168
- <keyword type="function" name="gtk_text_iter_forward_visible_word_ends ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-visible-word-ends" since="2.4"/>
2169
- <keyword type="function" name="gtk_text_iter_backward_visible_word_starts ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-visible-word-starts" since="2.4"/>
2170
- <keyword type="function" name="gtk_text_iter_forward_visible_word_end ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-visible-word-end" since="2.4"/>
2171
- <keyword type="function" name="gtk_text_iter_backward_visible_word_start ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-visible-word-start" since="2.4"/>
2172
- <keyword type="function" name="gtk_text_iter_forward_visible_cursor_position ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-visible-cursor-position" since="2.4"/>
2173
- <keyword type="function" name="gtk_text_iter_backward_visible_cursor_position ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-visible-cursor-position" since="2.4"/>
2174
- <keyword type="function" name="gtk_text_iter_forward_visible_cursor_positions ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-visible-cursor-positions" since="2.4"/>
2175
- <keyword type="function" name="gtk_text_iter_backward_visible_cursor_positions ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-visible-cursor-positions" since="2.4"/>
2176
- <keyword type="function" name="gtk_text_iter_forward_visible_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-visible-line" since="2.8"/>
2177
- <keyword type="function" name="gtk_text_iter_backward_visible_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-visible-line" since="2.8"/>
2178
- <keyword type="function" name="gtk_text_iter_forward_visible_lines ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-visible-lines" since="2.8"/>
2179
- <keyword type="function" name="gtk_text_iter_backward_visible_lines ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-visible-lines" since="2.8"/>
2180
- <keyword type="function" name="gtk_text_iter_set_offset ()" link="gtk-GtkTextIter.html#gtk-text-iter-set-offset"/>
2181
- <keyword type="function" name="gtk_text_iter_set_line ()" link="gtk-GtkTextIter.html#gtk-text-iter-set-line"/>
2182
- <keyword type="function" name="gtk_text_iter_set_line_offset ()" link="gtk-GtkTextIter.html#gtk-text-iter-set-line-offset"/>
2183
- <keyword type="function" name="gtk_text_iter_set_line_index ()" link="gtk-GtkTextIter.html#gtk-text-iter-set-line-index"/>
2184
- <keyword type="function" name="gtk_text_iter_set_visible_line_index ()" link="gtk-GtkTextIter.html#gtk-text-iter-set-visible-line-index"/>
2185
- <keyword type="function" name="gtk_text_iter_set_visible_line_offset ()" link="gtk-GtkTextIter.html#gtk-text-iter-set-visible-line-offset"/>
2186
- <keyword type="function" name="gtk_text_iter_forward_to_end ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-to-end"/>
2187
- <keyword type="function" name="gtk_text_iter_forward_to_line_end ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-to-line-end"/>
2188
- <keyword type="function" name="gtk_text_iter_forward_to_tag_toggle ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-to-tag-toggle"/>
2189
- <keyword type="function" name="gtk_text_iter_backward_to_tag_toggle ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-to-tag-toggle"/>
2190
- <keyword type="function" name="GtkTextCharPredicate ()" link="gtk-GtkTextIter.html#GtkTextCharPredicate"/>
2191
- <keyword type="function" name="gtk_text_iter_forward_find_char ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-find-char"/>
2192
- <keyword type="function" name="gtk_text_iter_backward_find_char ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-find-char"/>
2193
- <keyword type="enum" name="enum GtkTextSearchFlags" link="gtk-GtkTextIter.html#GtkTextSearchFlags"/>
2194
- <keyword type="function" name="gtk_text_iter_forward_search ()" link="gtk-GtkTextIter.html#gtk-text-iter-forward-search"/>
2195
- <keyword type="function" name="gtk_text_iter_backward_search ()" link="gtk-GtkTextIter.html#gtk-text-iter-backward-search"/>
2196
- <keyword type="function" name="gtk_text_iter_equal ()" link="gtk-GtkTextIter.html#gtk-text-iter-equal"/>
2197
- <keyword type="function" name="gtk_text_iter_compare ()" link="gtk-GtkTextIter.html#gtk-text-iter-compare"/>
2198
- <keyword type="function" name="gtk_text_iter_in_range ()" link="gtk-GtkTextIter.html#gtk-text-iter-in-range"/>
2199
- <keyword type="function" name="gtk_text_iter_order ()" link="gtk-GtkTextIter.html#gtk-text-iter-order"/>
2200
- <keyword type="struct" name="GtkTextMark" link="GtkTextMark.html#GtkTextMark-struct"/>
2110
+ <keyword type="struct" name="GtkTextIter" link="GtkTextIter.html#GtkTextIter-struct"/>
2111
+ <keyword type="function" name="gtk_text_iter_get_buffer ()" link="GtkTextIter.html#gtk-text-iter-get-buffer"/>
2112
+ <keyword type="function" name="gtk_text_iter_copy ()" link="GtkTextIter.html#gtk-text-iter-copy"/>
2113
+ <keyword type="function" name="gtk_text_iter_free ()" link="GtkTextIter.html#gtk-text-iter-free"/>
2114
+ <keyword type="function" name="gtk_text_iter_get_offset ()" link="GtkTextIter.html#gtk-text-iter-get-offset"/>
2115
+ <keyword type="function" name="gtk_text_iter_get_line ()" link="GtkTextIter.html#gtk-text-iter-get-line"/>
2116
+ <keyword type="function" name="gtk_text_iter_get_line_offset ()" link="GtkTextIter.html#gtk-text-iter-get-line-offset"/>
2117
+ <keyword type="function" name="gtk_text_iter_get_line_index ()" link="GtkTextIter.html#gtk-text-iter-get-line-index"/>
2118
+ <keyword type="function" name="gtk_text_iter_get_visible_line_index ()" link="GtkTextIter.html#gtk-text-iter-get-visible-line-index"/>
2119
+ <keyword type="function" name="gtk_text_iter_get_visible_line_offset ()" link="GtkTextIter.html#gtk-text-iter-get-visible-line-offset"/>
2120
+ <keyword type="function" name="gtk_text_iter_get_char ()" link="GtkTextIter.html#gtk-text-iter-get-char"/>
2121
+ <keyword type="function" name="gtk_text_iter_get_slice ()" link="GtkTextIter.html#gtk-text-iter-get-slice"/>
2122
+ <keyword type="function" name="gtk_text_iter_get_text ()" link="GtkTextIter.html#gtk-text-iter-get-text"/>
2123
+ <keyword type="function" name="gtk_text_iter_get_visible_slice ()" link="GtkTextIter.html#gtk-text-iter-get-visible-slice"/>
2124
+ <keyword type="function" name="gtk_text_iter_get_visible_text ()" link="GtkTextIter.html#gtk-text-iter-get-visible-text"/>
2125
+ <keyword type="function" name="gtk_text_iter_get_pixbuf ()" link="GtkTextIter.html#gtk-text-iter-get-pixbuf"/>
2126
+ <keyword type="function" name="gtk_text_iter_get_marks ()" link="GtkTextIter.html#gtk-text-iter-get-marks"/>
2127
+ <keyword type="function" name="gtk_text_iter_get_toggled_tags ()" link="GtkTextIter.html#gtk-text-iter-get-toggled-tags"/>
2128
+ <keyword type="function" name="gtk_text_iter_get_child_anchor ()" link="GtkTextIter.html#gtk-text-iter-get-child-anchor"/>
2129
+ <keyword type="function" name="gtk_text_iter_begins_tag ()" link="GtkTextIter.html#gtk-text-iter-begins-tag"/>
2130
+ <keyword type="function" name="gtk_text_iter_ends_tag ()" link="GtkTextIter.html#gtk-text-iter-ends-tag"/>
2131
+ <keyword type="function" name="gtk_text_iter_toggles_tag ()" link="GtkTextIter.html#gtk-text-iter-toggles-tag"/>
2132
+ <keyword type="function" name="gtk_text_iter_has_tag ()" link="GtkTextIter.html#gtk-text-iter-has-tag"/>
2133
+ <keyword type="function" name="gtk_text_iter_get_tags ()" link="GtkTextIter.html#gtk-text-iter-get-tags"/>
2134
+ <keyword type="function" name="gtk_text_iter_editable ()" link="GtkTextIter.html#gtk-text-iter-editable"/>
2135
+ <keyword type="function" name="gtk_text_iter_can_insert ()" link="GtkTextIter.html#gtk-text-iter-can-insert"/>
2136
+ <keyword type="function" name="gtk_text_iter_starts_word ()" link="GtkTextIter.html#gtk-text-iter-starts-word"/>
2137
+ <keyword type="function" name="gtk_text_iter_ends_word ()" link="GtkTextIter.html#gtk-text-iter-ends-word"/>
2138
+ <keyword type="function" name="gtk_text_iter_inside_word ()" link="GtkTextIter.html#gtk-text-iter-inside-word"/>
2139
+ <keyword type="function" name="gtk_text_iter_starts_line ()" link="GtkTextIter.html#gtk-text-iter-starts-line"/>
2140
+ <keyword type="function" name="gtk_text_iter_ends_line ()" link="GtkTextIter.html#gtk-text-iter-ends-line"/>
2141
+ <keyword type="function" name="gtk_text_iter_starts_sentence ()" link="GtkTextIter.html#gtk-text-iter-starts-sentence"/>
2142
+ <keyword type="function" name="gtk_text_iter_ends_sentence ()" link="GtkTextIter.html#gtk-text-iter-ends-sentence"/>
2143
+ <keyword type="function" name="gtk_text_iter_inside_sentence ()" link="GtkTextIter.html#gtk-text-iter-inside-sentence"/>
2144
+ <keyword type="function" name="gtk_text_iter_is_cursor_position ()" link="GtkTextIter.html#gtk-text-iter-is-cursor-position"/>
2145
+ <keyword type="function" name="gtk_text_iter_get_chars_in_line ()" link="GtkTextIter.html#gtk-text-iter-get-chars-in-line"/>
2146
+ <keyword type="function" name="gtk_text_iter_get_bytes_in_line ()" link="GtkTextIter.html#gtk-text-iter-get-bytes-in-line"/>
2147
+ <keyword type="function" name="gtk_text_iter_get_attributes ()" link="GtkTextIter.html#gtk-text-iter-get-attributes"/>
2148
+ <keyword type="function" name="gtk_text_iter_get_language ()" link="GtkTextIter.html#gtk-text-iter-get-language"/>
2149
+ <keyword type="function" name="gtk_text_iter_is_end ()" link="GtkTextIter.html#gtk-text-iter-is-end"/>
2150
+ <keyword type="function" name="gtk_text_iter_is_start ()" link="GtkTextIter.html#gtk-text-iter-is-start"/>
2151
+ <keyword type="function" name="gtk_text_iter_forward_char ()" link="GtkTextIter.html#gtk-text-iter-forward-char"/>
2152
+ <keyword type="function" name="gtk_text_iter_backward_char ()" link="GtkTextIter.html#gtk-text-iter-backward-char"/>
2153
+ <keyword type="function" name="gtk_text_iter_forward_chars ()" link="GtkTextIter.html#gtk-text-iter-forward-chars"/>
2154
+ <keyword type="function" name="gtk_text_iter_backward_chars ()" link="GtkTextIter.html#gtk-text-iter-backward-chars"/>
2155
+ <keyword type="function" name="gtk_text_iter_forward_line ()" link="GtkTextIter.html#gtk-text-iter-forward-line"/>
2156
+ <keyword type="function" name="gtk_text_iter_backward_line ()" link="GtkTextIter.html#gtk-text-iter-backward-line"/>
2157
+ <keyword type="function" name="gtk_text_iter_forward_lines ()" link="GtkTextIter.html#gtk-text-iter-forward-lines"/>
2158
+ <keyword type="function" name="gtk_text_iter_backward_lines ()" link="GtkTextIter.html#gtk-text-iter-backward-lines"/>
2159
+ <keyword type="function" name="gtk_text_iter_forward_word_ends ()" link="GtkTextIter.html#gtk-text-iter-forward-word-ends"/>
2160
+ <keyword type="function" name="gtk_text_iter_backward_word_starts ()" link="GtkTextIter.html#gtk-text-iter-backward-word-starts"/>
2161
+ <keyword type="function" name="gtk_text_iter_forward_word_end ()" link="GtkTextIter.html#gtk-text-iter-forward-word-end"/>
2162
+ <keyword type="function" name="gtk_text_iter_backward_word_start ()" link="GtkTextIter.html#gtk-text-iter-backward-word-start"/>
2163
+ <keyword type="function" name="gtk_text_iter_forward_cursor_position ()" link="GtkTextIter.html#gtk-text-iter-forward-cursor-position"/>
2164
+ <keyword type="function" name="gtk_text_iter_backward_cursor_position ()" link="GtkTextIter.html#gtk-text-iter-backward-cursor-position"/>
2165
+ <keyword type="function" name="gtk_text_iter_forward_cursor_positions ()" link="GtkTextIter.html#gtk-text-iter-forward-cursor-positions"/>
2166
+ <keyword type="function" name="gtk_text_iter_backward_cursor_positions ()" link="GtkTextIter.html#gtk-text-iter-backward-cursor-positions"/>
2167
+ <keyword type="function" name="gtk_text_iter_backward_sentence_start ()" link="GtkTextIter.html#gtk-text-iter-backward-sentence-start"/>
2168
+ <keyword type="function" name="gtk_text_iter_backward_sentence_starts ()" link="GtkTextIter.html#gtk-text-iter-backward-sentence-starts"/>
2169
+ <keyword type="function" name="gtk_text_iter_forward_sentence_end ()" link="GtkTextIter.html#gtk-text-iter-forward-sentence-end"/>
2170
+ <keyword type="function" name="gtk_text_iter_forward_sentence_ends ()" link="GtkTextIter.html#gtk-text-iter-forward-sentence-ends"/>
2171
+ <keyword type="function" name="gtk_text_iter_forward_visible_word_ends ()" link="GtkTextIter.html#gtk-text-iter-forward-visible-word-ends" since="2.4"/>
2172
+ <keyword type="function" name="gtk_text_iter_backward_visible_word_starts ()" link="GtkTextIter.html#gtk-text-iter-backward-visible-word-starts" since="2.4"/>
2173
+ <keyword type="function" name="gtk_text_iter_forward_visible_word_end ()" link="GtkTextIter.html#gtk-text-iter-forward-visible-word-end" since="2.4"/>
2174
+ <keyword type="function" name="gtk_text_iter_backward_visible_word_start ()" link="GtkTextIter.html#gtk-text-iter-backward-visible-word-start" since="2.4"/>
2175
+ <keyword type="function" name="gtk_text_iter_forward_visible_cursor_position ()" link="GtkTextIter.html#gtk-text-iter-forward-visible-cursor-position" since="2.4"/>
2176
+ <keyword type="function" name="gtk_text_iter_backward_visible_cursor_position ()" link="GtkTextIter.html#gtk-text-iter-backward-visible-cursor-position" since="2.4"/>
2177
+ <keyword type="function" name="gtk_text_iter_forward_visible_cursor_positions ()" link="GtkTextIter.html#gtk-text-iter-forward-visible-cursor-positions" since="2.4"/>
2178
+ <keyword type="function" name="gtk_text_iter_backward_visible_cursor_positions ()" link="GtkTextIter.html#gtk-text-iter-backward-visible-cursor-positions" since="2.4"/>
2179
+ <keyword type="function" name="gtk_text_iter_forward_visible_line ()" link="GtkTextIter.html#gtk-text-iter-forward-visible-line" since="2.8"/>
2180
+ <keyword type="function" name="gtk_text_iter_backward_visible_line ()" link="GtkTextIter.html#gtk-text-iter-backward-visible-line" since="2.8"/>
2181
+ <keyword type="function" name="gtk_text_iter_forward_visible_lines ()" link="GtkTextIter.html#gtk-text-iter-forward-visible-lines" since="2.8"/>
2182
+ <keyword type="function" name="gtk_text_iter_backward_visible_lines ()" link="GtkTextIter.html#gtk-text-iter-backward-visible-lines" since="2.8"/>
2183
+ <keyword type="function" name="gtk_text_iter_set_offset ()" link="GtkTextIter.html#gtk-text-iter-set-offset"/>
2184
+ <keyword type="function" name="gtk_text_iter_set_line ()" link="GtkTextIter.html#gtk-text-iter-set-line"/>
2185
+ <keyword type="function" name="gtk_text_iter_set_line_offset ()" link="GtkTextIter.html#gtk-text-iter-set-line-offset"/>
2186
+ <keyword type="function" name="gtk_text_iter_set_line_index ()" link="GtkTextIter.html#gtk-text-iter-set-line-index"/>
2187
+ <keyword type="function" name="gtk_text_iter_set_visible_line_index ()" link="GtkTextIter.html#gtk-text-iter-set-visible-line-index"/>
2188
+ <keyword type="function" name="gtk_text_iter_set_visible_line_offset ()" link="GtkTextIter.html#gtk-text-iter-set-visible-line-offset"/>
2189
+ <keyword type="function" name="gtk_text_iter_forward_to_end ()" link="GtkTextIter.html#gtk-text-iter-forward-to-end"/>
2190
+ <keyword type="function" name="gtk_text_iter_forward_to_line_end ()" link="GtkTextIter.html#gtk-text-iter-forward-to-line-end"/>
2191
+ <keyword type="function" name="gtk_text_iter_forward_to_tag_toggle ()" link="GtkTextIter.html#gtk-text-iter-forward-to-tag-toggle"/>
2192
+ <keyword type="function" name="gtk_text_iter_backward_to_tag_toggle ()" link="GtkTextIter.html#gtk-text-iter-backward-to-tag-toggle"/>
2193
+ <keyword type="function" name="GtkTextCharPredicate ()" link="GtkTextIter.html#GtkTextCharPredicate"/>
2194
+ <keyword type="function" name="gtk_text_iter_forward_find_char ()" link="GtkTextIter.html#gtk-text-iter-forward-find-char"/>
2195
+ <keyword type="function" name="gtk_text_iter_backward_find_char ()" link="GtkTextIter.html#gtk-text-iter-backward-find-char"/>
2196
+ <keyword type="enum" name="enum GtkTextSearchFlags" link="GtkTextIter.html#GtkTextSearchFlags"/>
2197
+ <keyword type="function" name="gtk_text_iter_forward_search ()" link="GtkTextIter.html#gtk-text-iter-forward-search"/>
2198
+ <keyword type="function" name="gtk_text_iter_backward_search ()" link="GtkTextIter.html#gtk-text-iter-backward-search"/>
2199
+ <keyword type="function" name="gtk_text_iter_equal ()" link="GtkTextIter.html#gtk-text-iter-equal"/>
2200
+ <keyword type="function" name="gtk_text_iter_compare ()" link="GtkTextIter.html#gtk-text-iter-compare"/>
2201
+ <keyword type="function" name="gtk_text_iter_in_range ()" link="GtkTextIter.html#gtk-text-iter-in-range"/>
2202
+ <keyword type="function" name="gtk_text_iter_order ()" link="GtkTextIter.html#gtk-text-iter-order"/>
2203
+ <keyword type="struct" name="struct GtkTextMark" link="GtkTextMark.html#GtkTextMark-struct"/>
2201
2204
  <keyword type="function" name="gtk_text_mark_new ()" link="GtkTextMark.html#gtk-text-mark-new" since="2.12"/>
2202
2205
  <keyword type="function" name="gtk_text_mark_set_visible ()" link="GtkTextMark.html#gtk-text-mark-set-visible"/>
2203
2206
  <keyword type="function" name="gtk_text_mark_get_visible ()" link="GtkTextMark.html#gtk-text-mark-get-visible"/>
@@ -2303,14 +2306,14 @@
2303
2306
  <keyword type="signal" name="The &quot;modified-changed&quot; signal" link="GtkTextBuffer.html#GtkTextBuffer-modified-changed"/>
2304
2307
  <keyword type="signal" name="The &quot;paste-done&quot; signal" link="GtkTextBuffer.html#GtkTextBuffer-paste-done"/>
2305
2308
  <keyword type="signal" name="The &quot;remove-tag&quot; signal" link="GtkTextBuffer.html#GtkTextBuffer-remove-tag"/>
2306
- <keyword type="struct" name="GtkTextTag" link="GtkTextTag.html#GtkTextTag-struct"/>
2309
+ <keyword type="struct" name="struct GtkTextTag" link="GtkTextTag.html#GtkTextTag-struct"/>
2307
2310
  <keyword type="enum" name="enum GtkWrapMode" link="GtkTextTag.html#GtkWrapMode"/>
2308
- <keyword type="struct" name="GtkTextAttributes" link="GtkTextTag.html#GtkTextAttributes"/>
2311
+ <keyword type="struct" name="struct GtkTextAttributes" link="GtkTextTag.html#GtkTextAttributes"/>
2309
2312
  <keyword type="function" name="gtk_text_tag_new ()" link="GtkTextTag.html#gtk-text-tag-new"/>
2310
2313
  <keyword type="function" name="gtk_text_tag_get_priority ()" link="GtkTextTag.html#gtk-text-tag-get-priority"/>
2311
2314
  <keyword type="function" name="gtk_text_tag_set_priority ()" link="GtkTextTag.html#gtk-text-tag-set-priority"/>
2312
2315
  <keyword type="function" name="gtk_text_tag_event ()" link="GtkTextTag.html#gtk-text-tag-event"/>
2313
- <keyword type="struct" name="GtkTextAppearance" link="GtkTextTag.html#GtkTextAppearance"/>
2316
+ <keyword type="struct" name="struct GtkTextAppearance" link="GtkTextTag.html#GtkTextAppearance"/>
2314
2317
  <keyword type="function" name="gtk_text_attributes_new ()" link="GtkTextTag.html#gtk-text-attributes-new"/>
2315
2318
  <keyword type="function" name="gtk_text_attributes_copy ()" link="GtkTextTag.html#gtk-text-attributes-copy"/>
2316
2319
  <keyword type="function" name="gtk_text_attributes_copy_values ()" link="GtkTextTag.html#gtk-text-attributes-copy-values"/>
@@ -2382,6 +2385,7 @@
2382
2385
  <keyword type="property" name="The &quot;wrap-mode&quot; property" link="GtkTextTag.html#GtkTextTag--wrap-mode"/>
2383
2386
  <keyword type="property" name="The &quot;wrap-mode-set&quot; property" link="GtkTextTag.html#GtkTextTag--wrap-mode-set"/>
2384
2387
  <keyword type="signal" name="The &quot;event&quot; signal" link="GtkTextTag.html#GtkTextTag-event"/>
2388
+ <keyword type="" name="GtkTextTagTables as GtkBuildable" link="GtkTextTagTable.html#GtkTextTagTable-BUILDER-UI"/>
2385
2389
  <keyword type="struct" name="GtkTextTagTable" link="GtkTextTagTable.html#GtkTextTagTable-struct"/>
2386
2390
  <keyword type="function" name="GtkTextTagTableForeach ()" link="GtkTextTagTable.html#GtkTextTagTableForeach"/>
2387
2391
  <keyword type="function" name="gtk_text_tag_table_new ()" link="GtkTextTagTable.html#gtk-text-tag-table-new"/>
@@ -2393,7 +2397,7 @@
2393
2397
  <keyword type="signal" name="The &quot;tag-added&quot; signal" link="GtkTextTagTable.html#GtkTextTagTable-tag-added"/>
2394
2398
  <keyword type="signal" name="The &quot;tag-changed&quot; signal" link="GtkTextTagTable.html#GtkTextTagTable-tag-changed"/>
2395
2399
  <keyword type="signal" name="The &quot;tag-removed&quot; signal" link="GtkTextTagTable.html#GtkTextTagTable-tag-removed"/>
2396
- <keyword type="struct" name="GtkTextView" link="GtkTextView.html#GtkTextView-struct"/>
2400
+ <keyword type="struct" name="struct GtkTextView" link="GtkTextView.html#GtkTextView-struct"/>
2397
2401
  <keyword type="enum" name="enum GtkTextWindowType" link="GtkTextView.html#GtkTextWindowType"/>
2398
2402
  <keyword type="function" name="gtk_text_view_new ()" link="GtkTextView.html#gtk-text-view-new"/>
2399
2403
  <keyword type="function" name="gtk_text_view_new_with_buffer ()" link="GtkTextView.html#gtk-text-view-new-with-buffer"/>
@@ -2423,7 +2427,7 @@
2423
2427
  <keyword type="function" name="gtk_text_view_starts_display_line ()" link="GtkTextView.html#gtk-text-view-starts-display-line"/>
2424
2428
  <keyword type="function" name="gtk_text_view_move_visually ()" link="GtkTextView.html#gtk-text-view-move-visually"/>
2425
2429
  <keyword type="function" name="gtk_text_view_add_child_at_anchor ()" link="GtkTextView.html#gtk-text-view-add-child-at-anchor"/>
2426
- <keyword type="struct" name="GtkTextChildAnchor" link="GtkTextView.html#GtkTextChildAnchor-struct"/>
2430
+ <keyword type="struct" name="struct GtkTextChildAnchor" link="GtkTextView.html#GtkTextChildAnchor-struct"/>
2427
2431
  <keyword type="function" name="gtk_text_child_anchor_new ()" link="GtkTextView.html#gtk-text-child-anchor-new"/>
2428
2432
  <keyword type="function" name="gtk_text_child_anchor_get_widgets ()" link="GtkTextView.html#gtk-text-child-anchor-get-widgets"/>
2429
2433
  <keyword type="function" name="gtk_text_child_anchor_get_deleted ()" link="GtkTextView.html#gtk-text-child-anchor-get-deleted"/>
@@ -2493,13 +2497,13 @@
2493
2497
  <keyword type="signal" name="The &quot;set-scroll-adjustments&quot; signal" link="GtkTextView.html#GtkTextView-set-scroll-adjustments"/>
2494
2498
  <keyword type="signal" name="The &quot;toggle-cursor-visible&quot; signal" link="GtkTextView.html#GtkTextView-toggle-cursor-visible"/>
2495
2499
  <keyword type="signal" name="The &quot;toggle-overwrite&quot; signal" link="GtkTextView.html#GtkTextView-toggle-overwrite"/>
2496
- <keyword type="" name="Columns and cell renderers" link="TreeWidget.html#id811513"/>
2497
- <keyword type="" name="Selection handling" link="TreeWidget.html#id810241"/>
2500
+ <keyword type="" name="Columns and cell renderers" link="TreeWidget.html#id878651"/>
2501
+ <keyword type="" name="Selection handling" link="TreeWidget.html#id931207"/>
2498
2502
  <keyword type="struct" name="GtkTreeModel" link="GtkTreeModel.html#GtkTreeModel-struct"/>
2499
- <keyword type="struct" name="GtkTreeIter" link="GtkTreeModel.html#GtkTreeIter"/>
2500
- <keyword type="struct" name="GtkTreePath" link="GtkTreeModel.html#GtkTreePath"/>
2503
+ <keyword type="struct" name="struct GtkTreeIter" link="GtkTreeModel.html#GtkTreeIter-struct"/>
2504
+ <keyword type="struct" name="GtkTreePath" link="GtkTreeModel.html#GtkTreePath-struct"/>
2501
2505
  <keyword type="struct" name="GtkTreeRowReference" link="GtkTreeModel.html#GtkTreeRowReference"/>
2502
- <keyword type="struct" name="GtkTreeModelIface" link="GtkTreeModel.html#GtkTreeModelIface"/>
2506
+ <keyword type="struct" name="struct GtkTreeModelIface" link="GtkTreeModel.html#GtkTreeModelIface"/>
2503
2507
  <keyword type="function" name="GtkTreeModelForeachFunc ()" link="GtkTreeModel.html#GtkTreeModelForeachFunc"/>
2504
2508
  <keyword type="enum" name="enum GtkTreeModelFlags" link="GtkTreeModel.html#GtkTreeModelFlags"/>
2505
2509
  <keyword type="function" name="gtk_tree_path_new ()" link="GtkTreeModel.html#gtk-tree-path-new"/>
@@ -2591,7 +2595,7 @@
2591
2595
  <keyword type="signal" name="The &quot;changed&quot; signal" link="GtkTreeSelection.html#GtkTreeSelection-changed"/>
2592
2596
  <keyword type="enum" name="enum GtkTreeViewColumnSizing" link="GtkTreeViewColumn.html#GtkTreeViewColumnSizing"/>
2593
2597
  <keyword type="function" name="GtkTreeCellDataFunc ()" link="GtkTreeViewColumn.html#GtkTreeCellDataFunc"/>
2594
- <keyword type="struct" name="GtkTreeViewColumn" link="GtkTreeViewColumn.html#GtkTreeViewColumn-struct"/>
2598
+ <keyword type="struct" name="struct GtkTreeViewColumn" link="GtkTreeViewColumn.html#GtkTreeViewColumn-struct"/>
2595
2599
  <keyword type="function" name="gtk_tree_view_column_new ()" link="GtkTreeViewColumn.html#gtk-tree-view-column-new"/>
2596
2600
  <keyword type="function" name="gtk_tree_view_column_new_with_attributes ()" link="GtkTreeViewColumn.html#gtk-tree-view-column-new-with-attributes"/>
2597
2601
  <keyword type="function" name="gtk_tree_view_column_pack_start ()" link="GtkTreeViewColumn.html#gtk-tree-view-column-pack-start"/>
@@ -2662,7 +2666,7 @@
2662
2666
  <keyword type="property" name="The &quot;width&quot; property" link="GtkTreeViewColumn.html#GtkTreeViewColumn--width"/>
2663
2667
  <keyword type="signal" name="The &quot;clicked&quot; signal" link="GtkTreeViewColumn.html#GtkTreeViewColumn-clicked"/>
2664
2668
  <keyword type="" name="GtkTreeView as GtkBuildable" link="GtkTreeView.html#GtkTreeView-BUILDER-UI"/>
2665
- <keyword type="struct" name="GtkTreeView" link="GtkTreeView.html#GtkTreeView-struct"/>
2669
+ <keyword type="struct" name="struct GtkTreeView" link="GtkTreeView.html#GtkTreeView-struct"/>
2666
2670
  <keyword type="enum" name="enum GtkTreeViewDropPosition" link="GtkTreeView.html#GtkTreeViewDropPosition"/>
2667
2671
  <keyword type="struct" name="GtkTreeViewPrivate" link="GtkTreeView.html#GtkTreeViewPrivate"/>
2668
2672
  <keyword type="function" name="GtkTreeViewColumnDropFunc ()" link="GtkTreeView.html#GtkTreeViewColumnDropFunc"/>
@@ -2819,17 +2823,17 @@
2819
2823
  <keyword type="signal" name="The &quot;toggle-cursor-row&quot; signal" link="GtkTreeView.html#GtkTreeView-toggle-cursor-row"/>
2820
2824
  <keyword type="signal" name="The &quot;unselect-all&quot; signal" link="GtkTreeView.html#GtkTreeView-unselect-all"/>
2821
2825
  <keyword type="struct" name="GtkTreeDragSource" link="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSource-struct"/>
2822
- <keyword type="struct" name="GtkTreeDragSourceIface" link="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSourceIface"/>
2826
+ <keyword type="struct" name="struct GtkTreeDragSourceIface" link="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragSourceIface"/>
2823
2827
  <keyword type="function" name="gtk_tree_drag_source_drag_data_delete ()" link="gtk-GtkTreeView-drag-and-drop.html#gtk-tree-drag-source-drag-data-delete"/>
2824
2828
  <keyword type="function" name="gtk_tree_drag_source_drag_data_get ()" link="gtk-GtkTreeView-drag-and-drop.html#gtk-tree-drag-source-drag-data-get"/>
2825
2829
  <keyword type="function" name="gtk_tree_drag_source_row_draggable ()" link="gtk-GtkTreeView-drag-and-drop.html#gtk-tree-drag-source-row-draggable"/>
2826
2830
  <keyword type="struct" name="GtkTreeDragDest" link="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragDest-struct"/>
2827
- <keyword type="struct" name="GtkTreeDragDestIface" link="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragDestIface"/>
2831
+ <keyword type="struct" name="struct GtkTreeDragDestIface" link="gtk-GtkTreeView-drag-and-drop.html#GtkTreeDragDestIface"/>
2828
2832
  <keyword type="function" name="gtk_tree_drag_dest_drag_data_received ()" link="gtk-GtkTreeView-drag-and-drop.html#gtk-tree-drag-dest-drag-data-received"/>
2829
2833
  <keyword type="function" name="gtk_tree_drag_dest_row_drop_possible ()" link="gtk-GtkTreeView-drag-and-drop.html#gtk-tree-drag-dest-row-drop-possible"/>
2830
2834
  <keyword type="function" name="gtk_tree_set_row_drag_data ()" link="gtk-GtkTreeView-drag-and-drop.html#gtk-tree-set-row-drag-data"/>
2831
2835
  <keyword type="function" name="gtk_tree_get_row_drag_data ()" link="gtk-GtkTreeView-drag-and-drop.html#gtk-tree-get-row-drag-data"/>
2832
- <keyword type="struct" name="GtkCellView" link="GtkCellView.html#GtkCellView-struct"/>
2836
+ <keyword type="struct" name="struct GtkCellView" link="GtkCellView.html#GtkCellView-struct"/>
2833
2837
  <keyword type="function" name="gtk_cell_view_new ()" link="GtkCellView.html#gtk-cell-view-new" since="2.6"/>
2834
2838
  <keyword type="function" name="gtk_cell_view_new_with_text ()" link="GtkCellView.html#gtk-cell-view-new-with-text" since="2.6"/>
2835
2839
  <keyword type="function" name="gtk_cell_view_new_with_markup ()" link="GtkCellView.html#gtk-cell-view-new-with-markup" since="2.6"/>
@@ -2845,7 +2849,7 @@
2845
2849
  <keyword type="property" name="The &quot;background-gdk&quot; property" link="GtkCellView.html#GtkCellView--background-gdk"/>
2846
2850
  <keyword type="property" name="The &quot;background-set&quot; property" link="GtkCellView.html#GtkCellView--background-set"/>
2847
2851
  <keyword type="property" name="The &quot;model&quot; property" link="GtkCellView.html#GtkCellView--model"/>
2848
- <keyword type="struct" name="GtkIconView" link="GtkIconView.html#GtkIconView-struct"/>
2852
+ <keyword type="struct" name="struct GtkIconView" link="GtkIconView.html#GtkIconView-struct"/>
2849
2853
  <keyword type="function" name="GtkIconViewForeachFunc ()" link="GtkIconView.html#GtkIconViewForeachFunc"/>
2850
2854
  <keyword type="function" name="gtk_icon_view_new ()" link="GtkIconView.html#gtk-icon-view-new" since="2.6"/>
2851
2855
  <keyword type="function" name="gtk_icon_view_new_with_model ()" link="GtkIconView.html#gtk-icon-view-new-with-model" since="2.6"/>
@@ -2938,7 +2942,7 @@
2938
2942
  <keyword type="signal" name="The &quot;toggle-cursor-item&quot; signal" link="GtkIconView.html#GtkIconView-toggle-cursor-item"/>
2939
2943
  <keyword type="signal" name="The &quot;unselect-all&quot; signal" link="GtkIconView.html#GtkIconView-unselect-all"/>
2940
2944
  <keyword type="struct" name="GtkTreeSortable" link="GtkTreeSortable.html#GtkTreeSortable-struct"/>
2941
- <keyword type="struct" name="GtkTreeSortableIface" link="GtkTreeSortable.html#GtkTreeSortableIface"/>
2945
+ <keyword type="struct" name="struct GtkTreeSortableIface" link="GtkTreeSortable.html#GtkTreeSortableIface"/>
2942
2946
  <keyword type="function" name="GtkTreeIterCompareFunc ()" link="GtkTreeSortable.html#GtkTreeIterCompareFunc"/>
2943
2947
  <keyword type="function" name="gtk_tree_sortable_sort_column_changed ()" link="GtkTreeSortable.html#gtk-tree-sortable-sort-column-changed"/>
2944
2948
  <keyword type="function" name="gtk_tree_sortable_get_sort_column_id ()" link="GtkTreeSortable.html#gtk-tree-sortable-get-sort-column-id"/>
@@ -2947,7 +2951,7 @@
2947
2951
  <keyword type="function" name="gtk_tree_sortable_set_default_sort_func ()" link="GtkTreeSortable.html#gtk-tree-sortable-set-default-sort-func"/>
2948
2952
  <keyword type="function" name="gtk_tree_sortable_has_default_sort_func ()" link="GtkTreeSortable.html#gtk-tree-sortable-has-default-sort-func"/>
2949
2953
  <keyword type="signal" name="The &quot;sort-column-changed&quot; signal" link="GtkTreeSortable.html#GtkTreeSortable-sort-column-changed"/>
2950
- <keyword type="struct" name="GtkTreeModelSort" link="GtkTreeModelSort.html#GtkTreeModelSort-struct"/>
2954
+ <keyword type="struct" name="struct GtkTreeModelSort" link="GtkTreeModelSort.html#GtkTreeModelSort-struct"/>
2951
2955
  <keyword type="function" name="gtk_tree_model_sort_new_with_model ()" link="GtkTreeModelSort.html#gtk-tree-model-sort-new-with-model"/>
2952
2956
  <keyword type="function" name="gtk_tree_model_sort_get_model ()" link="GtkTreeModelSort.html#gtk-tree-model-sort-get-model"/>
2953
2957
  <keyword type="function" name="gtk_tree_model_sort_convert_child_path_to_path ()" link="GtkTreeModelSort.html#gtk-tree-model-sort-convert-child-path-to-path"/>
@@ -2958,7 +2962,7 @@
2958
2962
  <keyword type="function" name="gtk_tree_model_sort_clear_cache ()" link="GtkTreeModelSort.html#gtk-tree-model-sort-clear-cache"/>
2959
2963
  <keyword type="function" name="gtk_tree_model_sort_iter_is_valid ()" link="GtkTreeModelSort.html#gtk-tree-model-sort-iter-is-valid" since="2.2"/>
2960
2964
  <keyword type="property" name="The &quot;model&quot; property" link="GtkTreeModelSort.html#GtkTreeModelSort--model"/>
2961
- <keyword type="struct" name="GtkTreeModelFilter" link="GtkTreeModelFilter.html#GtkTreeModelFilter-struct"/>
2965
+ <keyword type="struct" name="struct GtkTreeModelFilter" link="GtkTreeModelFilter.html#GtkTreeModelFilter-struct"/>
2962
2966
  <keyword type="function" name="GtkTreeModelFilterVisibleFunc ()" link="GtkTreeModelFilter.html#GtkTreeModelFilterVisibleFunc"/>
2963
2967
  <keyword type="function" name="GtkTreeModelFilterModifyFunc ()" link="GtkTreeModelFilter.html#GtkTreeModelFilterModifyFunc"/>
2964
2968
  <keyword type="function" name="gtk_tree_model_filter_new ()" link="GtkTreeModelFilter.html#gtk-tree-model-filter-new" since="2.4"/>
@@ -2976,7 +2980,7 @@
2976
2980
  <keyword type="property" name="The &quot;virtual-root&quot; property" link="GtkTreeModelFilter.html#GtkTreeModelFilter--virtual-root"/>
2977
2981
  <keyword type="" name="GtkCellLayouts as GtkBuildable" link="GtkCellLayout.html#GtkCellLayout-BUILDER-UI"/>
2978
2982
  <keyword type="struct" name="GtkCellLayout" link="GtkCellLayout.html#GtkCellLayout-struct"/>
2979
- <keyword type="struct" name="GtkCellLayoutIface" link="GtkCellLayout.html#GtkCellLayoutIface"/>
2983
+ <keyword type="struct" name="struct GtkCellLayoutIface" link="GtkCellLayout.html#GtkCellLayoutIface"/>
2980
2984
  <keyword type="function" name="GtkCellLayoutDataFunc ()" link="GtkCellLayout.html#GtkCellLayoutDataFunc"/>
2981
2985
  <keyword type="function" name="gtk_cell_layout_pack_start ()" link="GtkCellLayout.html#gtk-cell-layout-pack-start" since="2.4"/>
2982
2986
  <keyword type="function" name="gtk_cell_layout_pack_end ()" link="GtkCellLayout.html#gtk-cell-layout-pack-end" since="2.4"/>
@@ -2989,8 +2993,8 @@
2989
2993
  <keyword type="function" name="gtk_cell_layout_clear_attributes ()" link="GtkCellLayout.html#gtk-cell-layout-clear-attributes" since="2.4"/>
2990
2994
  <keyword type="enum" name="enum GtkCellRendererState" link="GtkCellRenderer.html#GtkCellRendererState"/>
2991
2995
  <keyword type="enum" name="enum GtkCellRendererMode" link="GtkCellRenderer.html#GtkCellRendererMode"/>
2992
- <keyword type="struct" name="GtkCellRenderer" link="GtkCellRenderer.html#GtkCellRenderer-struct"/>
2993
- <keyword type="struct" name="GtkCellRendererClass" link="GtkCellRenderer.html#GtkCellRendererClass"/>
2996
+ <keyword type="struct" name="struct GtkCellRenderer" link="GtkCellRenderer.html#GtkCellRenderer-struct"/>
2997
+ <keyword type="struct" name="struct GtkCellRendererClass" link="GtkCellRenderer.html#GtkCellRendererClass"/>
2994
2998
  <keyword type="function" name="gtk_cell_renderer_get_size ()" link="GtkCellRenderer.html#gtk-cell-renderer-get-size"/>
2995
2999
  <keyword type="function" name="gtk_cell_renderer_render ()" link="GtkCellRenderer.html#gtk-cell-renderer-render"/>
2996
3000
  <keyword type="function" name="gtk_cell_renderer_activate ()" link="GtkCellRenderer.html#gtk-cell-renderer-activate"/>
@@ -3025,14 +3029,14 @@
3025
3029
  <keyword type="signal" name="The &quot;editing-canceled&quot; signal" link="GtkCellRenderer.html#GtkCellRenderer-editing-canceled"/>
3026
3030
  <keyword type="signal" name="The &quot;editing-started&quot; signal" link="GtkCellRenderer.html#GtkCellRenderer-editing-started"/>
3027
3031
  <keyword type="struct" name="GtkCellEditable" link="GtkCellEditable.html#GtkCellEditable-struct"/>
3028
- <keyword type="struct" name="GtkCellEditableIface" link="GtkCellEditable.html#GtkCellEditableIface"/>
3032
+ <keyword type="struct" name="struct GtkCellEditableIface" link="GtkCellEditable.html#GtkCellEditableIface"/>
3029
3033
  <keyword type="function" name="gtk_cell_editable_start_editing ()" link="GtkCellEditable.html#gtk-cell-editable-start-editing"/>
3030
3034
  <keyword type="function" name="gtk_cell_editable_editing_done ()" link="GtkCellEditable.html#gtk-cell-editable-editing-done"/>
3031
3035
  <keyword type="function" name="gtk_cell_editable_remove_widget ()" link="GtkCellEditable.html#gtk-cell-editable-remove-widget"/>
3032
3036
  <keyword type="property" name="The &quot;editing-canceled&quot; property" link="GtkCellEditable.html#GtkCellEditable--editing-canceled"/>
3033
3037
  <keyword type="signal" name="The &quot;editing-done&quot; signal" link="GtkCellEditable.html#GtkCellEditable-editing-done"/>
3034
3038
  <keyword type="signal" name="The &quot;remove-widget&quot; signal" link="GtkCellEditable.html#GtkCellEditable-remove-widget"/>
3035
- <keyword type="struct" name="GtkCellRendererAccel" link="GtkCellRendererAccel.html#GtkCellRendererAccel-struct"/>
3039
+ <keyword type="struct" name="struct GtkCellRendererAccel" link="GtkCellRendererAccel.html#GtkCellRendererAccel-struct"/>
3036
3040
  <keyword type="enum" name="enum GtkCellRendererAccelMode" link="GtkCellRendererAccel.html#GtkCellRendererAccelMode"/>
3037
3041
  <keyword type="function" name="gtk_cell_renderer_accel_new ()" link="GtkCellRendererAccel.html#gtk-cell-renderer-accel-new" since="2.10"/>
3038
3042
  <keyword type="property" name="The &quot;accel-key&quot; property" link="GtkCellRendererAccel.html#GtkCellRendererAccel--accel-key"/>
@@ -3041,13 +3045,13 @@
3041
3045
  <keyword type="property" name="The &quot;keycode&quot; property" link="GtkCellRendererAccel.html#GtkCellRendererAccel--keycode"/>
3042
3046
  <keyword type="signal" name="The &quot;accel-cleared&quot; signal" link="GtkCellRendererAccel.html#GtkCellRendererAccel-accel-cleared"/>
3043
3047
  <keyword type="signal" name="The &quot;accel-edited&quot; signal" link="GtkCellRendererAccel.html#GtkCellRendererAccel-accel-edited"/>
3044
- <keyword type="struct" name="GtkCellRendererCombo" link="GtkCellRendererCombo.html#GtkCellRendererCombo-struct"/>
3048
+ <keyword type="struct" name="struct GtkCellRendererCombo" link="GtkCellRendererCombo.html#GtkCellRendererCombo-struct"/>
3045
3049
  <keyword type="function" name="gtk_cell_renderer_combo_new ()" link="GtkCellRendererCombo.html#gtk-cell-renderer-combo-new" since="2.6"/>
3046
3050
  <keyword type="property" name="The &quot;has-entry&quot; property" link="GtkCellRendererCombo.html#GtkCellRendererCombo--has-entry"/>
3047
3051
  <keyword type="property" name="The &quot;model&quot; property" link="GtkCellRendererCombo.html#GtkCellRendererCombo--model"/>
3048
3052
  <keyword type="property" name="The &quot;text-column&quot; property" link="GtkCellRendererCombo.html#GtkCellRendererCombo--text-column"/>
3049
3053
  <keyword type="signal" name="The &quot;changed&quot; signal" link="GtkCellRendererCombo.html#GtkCellRendererCombo-changed"/>
3050
- <keyword type="struct" name="GtkCellRendererPixbuf" link="GtkCellRendererPixbuf.html#GtkCellRendererPixbuf-struct"/>
3054
+ <keyword type="struct" name="struct GtkCellRendererPixbuf" link="GtkCellRendererPixbuf.html#GtkCellRendererPixbuf-struct"/>
3051
3055
  <keyword type="function" name="gtk_cell_renderer_pixbuf_new ()" link="GtkCellRendererPixbuf.html#gtk-cell-renderer-pixbuf-new"/>
3052
3056
  <keyword type="property" name="The &quot;follow-state&quot; property" link="GtkCellRendererPixbuf.html#GtkCellRendererPixbuf--follow-state"/>
3053
3057
  <keyword type="property" name="The &quot;gicon&quot; property" link="GtkCellRendererPixbuf.html#GtkCellRendererPixbuf--gicon"/>
@@ -3058,7 +3062,7 @@
3058
3062
  <keyword type="property" name="The &quot;stock-detail&quot; property" link="GtkCellRendererPixbuf.html#GtkCellRendererPixbuf--stock-detail"/>
3059
3063
  <keyword type="property" name="The &quot;stock-id&quot; property" link="GtkCellRendererPixbuf.html#GtkCellRendererPixbuf--stock-id"/>
3060
3064
  <keyword type="property" name="The &quot;stock-size&quot; property" link="GtkCellRendererPixbuf.html#GtkCellRendererPixbuf--stock-size"/>
3061
- <keyword type="struct" name="GtkCellRendererProgress" link="GtkCellRendererProgress.html#GtkCellRendererProgress-struct"/>
3065
+ <keyword type="struct" name="struct GtkCellRendererProgress" link="GtkCellRendererProgress.html#GtkCellRendererProgress-struct"/>
3062
3066
  <keyword type="function" name="gtk_cell_renderer_progress_new ()" link="GtkCellRendererProgress.html#gtk-cell-renderer-progress-new" since="2.6"/>
3063
3067
  <keyword type="property" name="The &quot;orientation&quot; property" link="GtkCellRendererProgress.html#GtkCellRendererProgress--orientation"/>
3064
3068
  <keyword type="property" name="The &quot;pulse&quot; property" link="GtkCellRendererProgress.html#GtkCellRendererProgress--pulse"/>
@@ -3066,12 +3070,12 @@
3066
3070
  <keyword type="property" name="The &quot;text-xalign&quot; property" link="GtkCellRendererProgress.html#GtkCellRendererProgress--text-xalign"/>
3067
3071
  <keyword type="property" name="The &quot;text-yalign&quot; property" link="GtkCellRendererProgress.html#GtkCellRendererProgress--text-yalign"/>
3068
3072
  <keyword type="property" name="The &quot;value&quot; property" link="GtkCellRendererProgress.html#GtkCellRendererProgress--value"/>
3069
- <keyword type="struct" name="GtkCellRendererSpin" link="GtkCellRendererSpin.html#GtkCellRendererSpin-struct"/>
3073
+ <keyword type="struct" name="struct GtkCellRendererSpin" link="GtkCellRendererSpin.html#GtkCellRendererSpin-struct"/>
3070
3074
  <keyword type="function" name="gtk_cell_renderer_spin_new ()" link="GtkCellRendererSpin.html#gtk-cell-renderer-spin-new" since="2.10"/>
3071
3075
  <keyword type="property" name="The &quot;adjustment&quot; property" link="GtkCellRendererSpin.html#GtkCellRendererSpin--adjustment"/>
3072
3076
  <keyword type="property" name="The &quot;climb-rate&quot; property" link="GtkCellRendererSpin.html#GtkCellRendererSpin--climb-rate"/>
3073
3077
  <keyword type="property" name="The &quot;digits&quot; property" link="GtkCellRendererSpin.html#GtkCellRendererSpin--digits"/>
3074
- <keyword type="struct" name="GtkCellRendererText" link="GtkCellRendererText.html#GtkCellRendererText-struct"/>
3078
+ <keyword type="struct" name="struct GtkCellRendererText" link="GtkCellRendererText.html#GtkCellRendererText-struct"/>
3075
3079
  <keyword type="function" name="gtk_cell_renderer_text_new ()" link="GtkCellRendererText.html#gtk-cell-renderer-text-new"/>
3076
3080
  <keyword type="function" name="gtk_cell_renderer_text_set_fixed_height_from_font ()" link="GtkCellRendererText.html#gtk-cell-renderer-text-set-fixed-height-from-font"/>
3077
3081
  <keyword type="property" name="The &quot;align-set&quot; property" link="GtkCellRendererText.html#GtkCellRendererText--align-set"/>
@@ -3119,7 +3123,7 @@
3119
3123
  <keyword type="property" name="The &quot;wrap-mode&quot; property" link="GtkCellRendererText.html#GtkCellRendererText--wrap-mode"/>
3120
3124
  <keyword type="property" name="The &quot;wrap-width&quot; property" link="GtkCellRendererText.html#GtkCellRendererText--wrap-width"/>
3121
3125
  <keyword type="signal" name="The &quot;edited&quot; signal" link="GtkCellRendererText.html#GtkCellRendererText-edited"/>
3122
- <keyword type="struct" name="GtkCellRendererToggle" link="GtkCellRendererToggle.html#GtkCellRendererToggle-struct"/>
3126
+ <keyword type="struct" name="struct GtkCellRendererToggle" link="GtkCellRendererToggle.html#GtkCellRendererToggle-struct"/>
3123
3127
  <keyword type="function" name="gtk_cell_renderer_toggle_new ()" link="GtkCellRendererToggle.html#gtk-cell-renderer-toggle-new"/>
3124
3128
  <keyword type="function" name="gtk_cell_renderer_toggle_get_radio ()" link="GtkCellRendererToggle.html#gtk-cell-renderer-toggle-get-radio"/>
3125
3129
  <keyword type="function" name="gtk_cell_renderer_toggle_set_radio ()" link="GtkCellRendererToggle.html#gtk-cell-renderer-toggle-set-radio"/>
@@ -3133,14 +3137,14 @@
3133
3137
  <keyword type="property" name="The &quot;indicator-size&quot; property" link="GtkCellRendererToggle.html#GtkCellRendererToggle--indicator-size"/>
3134
3138
  <keyword type="property" name="The &quot;radio&quot; property" link="GtkCellRendererToggle.html#GtkCellRendererToggle--radio"/>
3135
3139
  <keyword type="signal" name="The &quot;toggled&quot; signal" link="GtkCellRendererToggle.html#GtkCellRendererToggle-toggled"/>
3136
- <keyword type="struct" name="GtkCellRendererSpinner" link="GtkCellRendererSpinner.html#GtkCellRendererSpinner-struct"/>
3140
+ <keyword type="struct" name="struct GtkCellRendererSpinner" link="GtkCellRendererSpinner.html#GtkCellRendererSpinner-struct"/>
3137
3141
  <keyword type="function" name="gtk_cell_renderer_spinner_new ()" link="GtkCellRendererSpinner.html#gtk-cell-renderer-spinner-new" since="2.20"/>
3138
3142
  <keyword type="property" name="The &quot;active&quot; property" link="GtkCellRendererSpinner.html#GtkCellRendererSpinner--active"/>
3139
3143
  <keyword type="property" name="The &quot;pulse&quot; property" link="GtkCellRendererSpinner.html#GtkCellRendererSpinner--pulse"/>
3140
3144
  <keyword type="property" name="The &quot;size&quot; property" link="GtkCellRendererSpinner.html#GtkCellRendererSpinner--size"/>
3141
- <keyword type="" name="Performance Considerations" link="GtkListStore.html#id941208"/>
3145
+ <keyword type="" name="Performance Considerations" link="GtkListStore.html#id1086496"/>
3142
3146
  <keyword type="" name="GtkListStore as GtkBuildable" link="GtkListStore.html#GtkListStore-BUILDER-UI"/>
3143
- <keyword type="struct" name="GtkListStore" link="GtkListStore.html#GtkListStore-struct"/>
3147
+ <keyword type="struct" name="struct GtkListStore" link="GtkListStore.html#GtkListStore-struct"/>
3144
3148
  <keyword type="function" name="gtk_list_store_new ()" link="GtkListStore.html#gtk-list-store-new"/>
3145
3149
  <keyword type="function" name="gtk_list_store_newv ()" link="GtkListStore.html#gtk-list-store-newv"/>
3146
3150
  <keyword type="function" name="gtk_list_store_set_column_types ()" link="GtkListStore.html#gtk-list-store-set-column-types"/>
@@ -3163,7 +3167,7 @@
3163
3167
  <keyword type="function" name="gtk_list_store_move_before ()" link="GtkListStore.html#gtk-list-store-move-before" since="2.2"/>
3164
3168
  <keyword type="function" name="gtk_list_store_move_after ()" link="GtkListStore.html#gtk-list-store-move-after" since="2.2"/>
3165
3169
  <keyword type="" name="GtkTreeStore as GtkBuildable" link="GtkTreeStore.html#GtkTreeStore-BUILDER-UI"/>
3166
- <keyword type="struct" name="GtkTreeStore" link="GtkTreeStore.html#GtkTreeStore-struct"/>
3170
+ <keyword type="struct" name="struct GtkTreeStore" link="GtkTreeStore.html#GtkTreeStore-struct"/>
3167
3171
  <keyword type="function" name="gtk_tree_store_new ()" link="GtkTreeStore.html#gtk-tree-store-new"/>
3168
3172
  <keyword type="function" name="gtk_tree_store_newv ()" link="GtkTreeStore.html#gtk-tree-store-newv"/>
3169
3173
  <keyword type="function" name="gtk_tree_store_set_column_types ()" link="GtkTreeStore.html#gtk-tree-store-set-column-types"/>
@@ -3187,9 +3191,11 @@
3187
3191
  <keyword type="function" name="gtk_tree_store_swap ()" link="GtkTreeStore.html#gtk-tree-store-swap" since="2.2"/>
3188
3192
  <keyword type="function" name="gtk_tree_store_move_before ()" link="GtkTreeStore.html#gtk-tree-store-move-before" since="2.2"/>
3189
3193
  <keyword type="function" name="gtk_tree_store_move_after ()" link="GtkTreeStore.html#gtk-tree-store-move-after" since="2.2"/>
3190
- <keyword type="struct" name="GtkComboBox" link="GtkComboBox.html#GtkComboBox-struct"/>
3194
+ <keyword type="struct" name="struct GtkComboBox" link="GtkComboBox.html#GtkComboBox-struct"/>
3191
3195
  <keyword type="function" name="gtk_combo_box_new ()" link="GtkComboBox.html#gtk-combo-box-new" since="2.4"/>
3196
+ <keyword type="function" name="gtk_combo_box_new_with_entry ()" link="GtkComboBox.html#gtk-combo-box-new-with-entry"/>
3192
3197
  <keyword type="function" name="gtk_combo_box_new_with_model ()" link="GtkComboBox.html#gtk-combo-box-new-with-model" since="2.4"/>
3198
+ <keyword type="function" name="gtk_combo_box_new_with_model_and_entry ()" link="GtkComboBox.html#gtk-combo-box-new-with-model-and-entry"/>
3193
3199
  <keyword type="function" name="gtk_combo_box_get_wrap_width ()" link="GtkComboBox.html#gtk-combo-box-get-wrap-width" since="2.6"/>
3194
3200
  <keyword type="function" name="gtk_combo_box_set_wrap_width ()" link="GtkComboBox.html#gtk-combo-box-set-wrap-width" since="2.4"/>
3195
3201
  <keyword type="function" name="gtk_combo_box_get_row_span_column ()" link="GtkComboBox.html#gtk-combo-box-get-row-span-column" since="2.6"/>
@@ -3202,12 +3208,12 @@
3202
3208
  <keyword type="function" name="gtk_combo_box_set_active_iter ()" link="GtkComboBox.html#gtk-combo-box-set-active-iter" since="2.4"/>
3203
3209
  <keyword type="function" name="gtk_combo_box_get_model ()" link="GtkComboBox.html#gtk-combo-box-get-model" since="2.4"/>
3204
3210
  <keyword type="function" name="gtk_combo_box_set_model ()" link="GtkComboBox.html#gtk-combo-box-set-model" since="2.4"/>
3205
- <keyword type="function" name="gtk_combo_box_new_text ()" link="GtkComboBox.html#gtk-combo-box-new-text" since="2.4"/>
3206
- <keyword type="function" name="gtk_combo_box_append_text ()" link="GtkComboBox.html#gtk-combo-box-append-text" since="2.4"/>
3207
- <keyword type="function" name="gtk_combo_box_insert_text ()" link="GtkComboBox.html#gtk-combo-box-insert-text" since="2.4"/>
3208
- <keyword type="function" name="gtk_combo_box_prepend_text ()" link="GtkComboBox.html#gtk-combo-box-prepend-text" since="2.4"/>
3209
- <keyword type="function" name="gtk_combo_box_remove_text ()" link="GtkComboBox.html#gtk-combo-box-remove-text" since="2.4"/>
3210
- <keyword type="function" name="gtk_combo_box_get_active_text ()" link="GtkComboBox.html#gtk-combo-box-get-active-text" since="2.6"/>
3211
+ <keyword type="function" name="gtk_combo_box_new_text ()" link="GtkComboBox.html#gtk-combo-box-new-text" deprecated="2.24: Use #GtkComboBoxText" since="2.4"/>
3212
+ <keyword type="function" name="gtk_combo_box_append_text ()" link="GtkComboBox.html#gtk-combo-box-append-text" deprecated="2.24: Use #GtkComboBoxText" since="2.4"/>
3213
+ <keyword type="function" name="gtk_combo_box_insert_text ()" link="GtkComboBox.html#gtk-combo-box-insert-text" deprecated="2.24: Use #GtkComboBoxText" since="2.4"/>
3214
+ <keyword type="function" name="gtk_combo_box_prepend_text ()" link="GtkComboBox.html#gtk-combo-box-prepend-text" deprecated="2.24: Use #GtkComboBoxText" since="2.4"/>
3215
+ <keyword type="function" name="gtk_combo_box_remove_text ()" link="GtkComboBox.html#gtk-combo-box-remove-text" deprecated="2.24: Use #GtkComboBoxText" since="2.4"/>
3216
+ <keyword type="function" name="gtk_combo_box_get_active_text ()" link="GtkComboBox.html#gtk-combo-box-get-active-text" deprecated="" since="2.6"/>
3211
3217
  <keyword type="function" name="gtk_combo_box_popup ()" link="GtkComboBox.html#gtk-combo-box-popup" since="2.4"/>
3212
3218
  <keyword type="function" name="gtk_combo_box_popdown ()" link="GtkComboBox.html#gtk-combo-box-popdown" since="2.4"/>
3213
3219
  <keyword type="function" name="gtk_combo_box_get_popup_accessible ()" link="GtkComboBox.html#gtk-combo-box-get-popup-accessible" since="2.6"/>
@@ -3221,11 +3227,16 @@
3221
3227
  <keyword type="function" name="gtk_combo_box_get_focus_on_click ()" link="GtkComboBox.html#gtk-combo-box-get-focus-on-click" since="2.6"/>
3222
3228
  <keyword type="function" name="gtk_combo_box_set_button_sensitivity ()" link="GtkComboBox.html#gtk-combo-box-set-button-sensitivity" since="2.14"/>
3223
3229
  <keyword type="function" name="gtk_combo_box_get_button_sensitivity ()" link="GtkComboBox.html#gtk-combo-box-get-button-sensitivity" since="2.14"/>
3230
+ <keyword type="function" name="gtk_combo_box_get_has_entry ()" link="GtkComboBox.html#gtk-combo-box-get-has-entry" since="2.24"/>
3231
+ <keyword type="function" name="gtk_combo_box_set_entry_text_column ()" link="GtkComboBox.html#gtk-combo-box-set-entry-text-column" since="2.24"/>
3232
+ <keyword type="function" name="gtk_combo_box_get_entry_text_column ()" link="GtkComboBox.html#gtk-combo-box-get-entry-text-column" since="2.24"/>
3224
3233
  <keyword type="property" name="The &quot;active&quot; property" link="GtkComboBox.html#GtkComboBox--active"/>
3225
3234
  <keyword type="property" name="The &quot;add-tearoffs&quot; property" link="GtkComboBox.html#GtkComboBox--add-tearoffs"/>
3226
3235
  <keyword type="property" name="The &quot;button-sensitivity&quot; property" link="GtkComboBox.html#GtkComboBox--button-sensitivity"/>
3227
3236
  <keyword type="property" name="The &quot;column-span-column&quot; property" link="GtkComboBox.html#GtkComboBox--column-span-column"/>
3237
+ <keyword type="property" name="The &quot;entry-text-column&quot; property" link="GtkComboBox.html#GtkComboBox--entry-text-column"/>
3228
3238
  <keyword type="property" name="The &quot;focus-on-click&quot; property" link="GtkComboBox.html#GtkComboBox--focus-on-click"/>
3239
+ <keyword type="property" name="The &quot;has-entry&quot; property" link="GtkComboBox.html#GtkComboBox--has-entry"/>
3229
3240
  <keyword type="property" name="The &quot;has-frame&quot; property" link="GtkComboBox.html#GtkComboBox--has-frame"/>
3230
3241
  <keyword type="property" name="The &quot;model&quot; property" link="GtkComboBox.html#GtkComboBox--model"/>
3231
3242
  <keyword type="property" name="The &quot;popup-shown&quot; property" link="GtkComboBox.html#GtkComboBox--popup-shown"/>
@@ -3239,15 +3250,24 @@
3239
3250
  <keyword type="signal" name="The &quot;move-active&quot; signal" link="GtkComboBox.html#GtkComboBox-move-active"/>
3240
3251
  <keyword type="signal" name="The &quot;popdown&quot; signal" link="GtkComboBox.html#GtkComboBox-popdown"/>
3241
3252
  <keyword type="signal" name="The &quot;popup&quot; signal" link="GtkComboBox.html#GtkComboBox-popup"/>
3253
+ <keyword type="" name="GtkComboBoxText as GtkBuildable" link="GtkComboBoxText.html#GtkComboBoxText-BUILDER-UI"/>
3254
+ <keyword type="struct" name="struct GtkComboBoxText" link="GtkComboBoxText.html#GtkComboBoxText-struct"/>
3255
+ <keyword type="function" name="gtk_combo_box_text_new ()" link="GtkComboBoxText.html#gtk-combo-box-text-new" since="2.24"/>
3256
+ <keyword type="function" name="gtk_combo_box_text_new_with_entry ()" link="GtkComboBoxText.html#gtk-combo-box-text-new-with-entry" since="2.24"/>
3257
+ <keyword type="function" name="gtk_combo_box_text_append_text ()" link="GtkComboBoxText.html#gtk-combo-box-text-append-text" since="2.24"/>
3258
+ <keyword type="function" name="gtk_combo_box_text_insert_text ()" link="GtkComboBoxText.html#gtk-combo-box-text-insert-text" since="2.24"/>
3259
+ <keyword type="function" name="gtk_combo_box_text_prepend_text ()" link="GtkComboBoxText.html#gtk-combo-box-text-prepend-text" since="2.24"/>
3260
+ <keyword type="function" name="gtk_combo_box_text_remove ()" link="GtkComboBoxText.html#gtk-combo-box-text-remove" since="2.24"/>
3261
+ <keyword type="function" name="gtk_combo_box_text_get_active_text ()" link="GtkComboBoxText.html#gtk-combo-box-text-get-active-text" since="2.24"/>
3242
3262
  <keyword type="" name="GtkComboBoxEntry as GtkBuildable" link="GtkComboBoxEntry.html#GtkComboBoxEntry-BUILDER-UI"/>
3243
- <keyword type="struct" name="GtkComboBoxEntry" link="GtkComboBoxEntry.html#GtkComboBoxEntry-struct"/>
3244
- <keyword type="function" name="gtk_combo_box_entry_new ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-new" since="2.4"/>
3245
- <keyword type="function" name="gtk_combo_box_entry_new_with_model ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-new-with-model" since="2.4"/>
3246
- <keyword type="function" name="gtk_combo_box_entry_new_text ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-new-text" since="2.4"/>
3247
- <keyword type="function" name="gtk_combo_box_entry_set_text_column ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-set-text-column" since="2.4"/>
3248
- <keyword type="function" name="gtk_combo_box_entry_get_text_column ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-get-text-column" since="2.4"/>
3263
+ <keyword type="struct" name="struct GtkComboBoxEntry" link="GtkComboBoxEntry.html#GtkComboBoxEntry-struct"/>
3264
+ <keyword type="function" name="gtk_combo_box_entry_new ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-new" deprecated="2.24: Use gtk_combo_box_new_with_entry() instead" since="2.4"/>
3265
+ <keyword type="function" name="gtk_combo_box_entry_new_with_model ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-new-with-model" deprecated="2.24: Use gtk_combo_box_new_with_model_and_entry() instead" since="2.4"/>
3266
+ <keyword type="function" name="gtk_combo_box_entry_new_text ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-new-text" deprecated="" since="2.4"/>
3267
+ <keyword type="function" name="gtk_combo_box_entry_set_text_column ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-set-text-column" deprecated="2.24: Use gtk_combo_box_set_entry_text_column() instead" since="2.4"/>
3268
+ <keyword type="function" name="gtk_combo_box_entry_get_text_column ()" link="GtkComboBoxEntry.html#gtk-combo-box-entry-get-text-column" deprecated="2.24: Use gtk_combo_box_get_entry_text_column() instead" since="2.4"/>
3249
3269
  <keyword type="property" name="The &quot;text-column&quot; property" link="GtkComboBoxEntry.html#GtkComboBoxEntry--text-column"/>
3250
- <keyword type="struct" name="GtkMenu" link="GtkMenu.html#GtkMenu-struct"/>
3270
+ <keyword type="struct" name="struct GtkMenu" link="GtkMenu.html#GtkMenu-struct"/>
3251
3271
  <keyword type="function" name="gtk_menu_new ()" link="GtkMenu.html#gtk-menu-new"/>
3252
3272
  <keyword type="function" name="gtk_menu_set_screen ()" link="GtkMenu.html#gtk-menu-set-screen" since="2.2"/>
3253
3273
  <keyword type="macro" name="gtk_menu_append()" link="GtkMenu.html#gtk-menu-append" deprecated="Use gtk_menu_shell_append() instead."/>
@@ -3298,7 +3318,7 @@
3298
3318
  <keyword type="property" name="The &quot;vertical-offset&quot; style property" link="GtkMenu.html#GtkMenu--s-vertical-offset"/>
3299
3319
  <keyword type="property" name="The &quot;vertical-padding&quot; style property" link="GtkMenu.html#GtkMenu--s-vertical-padding"/>
3300
3320
  <keyword type="signal" name="The &quot;move-scroll&quot; signal" link="GtkMenu.html#GtkMenu-move-scroll"/>
3301
- <keyword type="struct" name="GtkMenuBar" link="GtkMenuBar.html#GtkMenuBar-struct"/>
3321
+ <keyword type="struct" name="struct GtkMenuBar" link="GtkMenuBar.html#GtkMenuBar-struct"/>
3302
3322
  <keyword type="function" name="gtk_menu_bar_new ()" link="GtkMenuBar.html#gtk-menu-bar-new"/>
3303
3323
  <keyword type="macro" name="gtk_menu_bar_append()" link="GtkMenuBar.html#gtk-menu-bar-append" deprecated="Use gtk_menu_shell_append() instead."/>
3304
3324
  <keyword type="macro" name="gtk_menu_bar_prepend()" link="GtkMenuBar.html#gtk-menu-bar-prepend" deprecated="Use gtk_menu_shell_prepend() instead."/>
@@ -3313,7 +3333,7 @@
3313
3333
  <keyword type="property" name="The &quot;internal-padding&quot; style property" link="GtkMenuBar.html#GtkMenuBar--s-internal-padding"/>
3314
3334
  <keyword type="property" name="The &quot;shadow-type&quot; style property" link="GtkMenuBar.html#GtkMenuBar--s-shadow-type"/>
3315
3335
  <keyword type="" name="GtkMenuItem as GtkBuildable" link="GtkMenuItem.html#GtkMenuItem-BUILDER-UI"/>
3316
- <keyword type="struct" name="GtkMenuItem" link="GtkMenuItem.html#GtkMenuItem-struct"/>
3336
+ <keyword type="struct" name="struct GtkMenuItem" link="GtkMenuItem.html#GtkMenuItem-struct"/>
3317
3337
  <keyword type="function" name="gtk_menu_item_new ()" link="GtkMenuItem.html#gtk-menu-item-new"/>
3318
3338
  <keyword type="function" name="gtk_menu_item_new_with_label ()" link="GtkMenuItem.html#gtk-menu-item-new-with-label"/>
3319
3339
  <keyword type="function" name="gtk_menu_item_new_with_mnemonic ()" link="GtkMenuItem.html#gtk-menu-item-new-with-mnemonic"/>
@@ -3349,7 +3369,7 @@
3349
3369
  <keyword type="signal" name="The &quot;activate-item&quot; signal" link="GtkMenuItem.html#GtkMenuItem-activate-item"/>
3350
3370
  <keyword type="signal" name="The &quot;toggle-size-allocate&quot; signal" link="GtkMenuItem.html#GtkMenuItem-toggle-size-allocate"/>
3351
3371
  <keyword type="signal" name="The &quot;toggle-size-request&quot; signal" link="GtkMenuItem.html#GtkMenuItem-toggle-size-request"/>
3352
- <keyword type="struct" name="GtkImageMenuItem" link="GtkImageMenuItem.html#GtkImageMenuItem-struct"/>
3372
+ <keyword type="struct" name="struct GtkImageMenuItem" link="GtkImageMenuItem.html#GtkImageMenuItem-struct"/>
3353
3373
  <keyword type="function" name="gtk_image_menu_item_set_image ()" link="GtkImageMenuItem.html#gtk-image-menu-item-set-image"/>
3354
3374
  <keyword type="function" name="gtk_image_menu_item_get_image ()" link="GtkImageMenuItem.html#gtk-image-menu-item-get-image"/>
3355
3375
  <keyword type="function" name="gtk_image_menu_item_new ()" link="GtkImageMenuItem.html#gtk-image-menu-item-new"/>
@@ -3365,7 +3385,7 @@
3365
3385
  <keyword type="property" name="The &quot;always-show-image&quot; property" link="GtkImageMenuItem.html#GtkImageMenuItem--always-show-image"/>
3366
3386
  <keyword type="property" name="The &quot;image&quot; property" link="GtkImageMenuItem.html#GtkImageMenuItem--image"/>
3367
3387
  <keyword type="property" name="The &quot;use-stock&quot; property" link="GtkImageMenuItem.html#GtkImageMenuItem--use-stock"/>
3368
- <keyword type="struct" name="GtkRadioMenuItem" link="GtkRadioMenuItem.html#GtkRadioMenuItem-struct"/>
3388
+ <keyword type="struct" name="struct GtkRadioMenuItem" link="GtkRadioMenuItem.html#GtkRadioMenuItem-struct"/>
3369
3389
  <keyword type="function" name="gtk_radio_menu_item_new ()" link="GtkRadioMenuItem.html#gtk-radio-menu-item-new"/>
3370
3390
  <keyword type="function" name="gtk_radio_menu_item_new_with_label ()" link="GtkRadioMenuItem.html#gtk-radio-menu-item-new-with-label"/>
3371
3391
  <keyword type="function" name="gtk_radio_menu_item_new_with_mnemonic ()" link="GtkRadioMenuItem.html#gtk-radio-menu-item-new-with-mnemonic"/>
@@ -3377,7 +3397,7 @@
3377
3397
  <keyword type="function" name="gtk_radio_menu_item_get_group ()" link="GtkRadioMenuItem.html#gtk-radio-menu-item-get-group"/>
3378
3398
  <keyword type="property" name="The &quot;group&quot; property" link="GtkRadioMenuItem.html#GtkRadioMenuItem--group"/>
3379
3399
  <keyword type="signal" name="The &quot;group-changed&quot; signal" link="GtkRadioMenuItem.html#GtkRadioMenuItem-group-changed"/>
3380
- <keyword type="struct" name="GtkCheckMenuItem" link="gtk-gtkcheckmenuitem.html#GtkCheckMenuItem-struct"/>
3400
+ <keyword type="struct" name="struct GtkCheckMenuItem" link="gtk-gtkcheckmenuitem.html#GtkCheckMenuItem-struct"/>
3381
3401
  <keyword type="function" name="gtk_check_menu_item_new ()" link="gtk-gtkcheckmenuitem.html#gtk-check-menu-item-new"/>
3382
3402
  <keyword type="function" name="gtk_check_menu_item_new_with_label ()" link="gtk-gtkcheckmenuitem.html#gtk-check-menu-item-new-with-label"/>
3383
3403
  <keyword type="function" name="gtk_check_menu_item_new_with_mnemonic ()" link="gtk-gtkcheckmenuitem.html#gtk-check-menu-item-new-with-mnemonic"/>
@@ -3395,12 +3415,12 @@
3395
3415
  <keyword type="property" name="The &quot;inconsistent&quot; property" link="gtk-gtkcheckmenuitem.html#GtkCheckMenuItem--inconsistent"/>
3396
3416
  <keyword type="property" name="The &quot;indicator-size&quot; style property" link="gtk-gtkcheckmenuitem.html#GtkCheckMenuItem--s-indicator-size"/>
3397
3417
  <keyword type="signal" name="The &quot;toggled&quot; signal" link="gtk-gtkcheckmenuitem.html#GtkCheckMenuItem-toggled"/>
3398
- <keyword type="struct" name="GtkSeparatorMenuItem" link="GtkSeparatorMenuItem.html#GtkSeparatorMenuItem-struct"/>
3418
+ <keyword type="struct" name="struct GtkSeparatorMenuItem" link="GtkSeparatorMenuItem.html#GtkSeparatorMenuItem-struct"/>
3399
3419
  <keyword type="function" name="gtk_separator_menu_item_new ()" link="GtkSeparatorMenuItem.html#gtk-separator-menu-item-new"/>
3400
- <keyword type="struct" name="GtkTearoffMenuItem" link="GtkTearoffMenuItem.html#GtkTearoffMenuItem-struct"/>
3420
+ <keyword type="struct" name="struct GtkTearoffMenuItem" link="GtkTearoffMenuItem.html#GtkTearoffMenuItem-struct"/>
3401
3421
  <keyword type="function" name="gtk_tearoff_menu_item_new ()" link="GtkTearoffMenuItem.html#gtk-tearoff-menu-item-new"/>
3402
3422
  <keyword type="struct" name="GtkToolShell" link="GtkToolShell.html#GtkToolShell-struct"/>
3403
- <keyword type="struct" name="GtkToolShellIface" link="GtkToolShell.html#GtkToolShellIface"/>
3423
+ <keyword type="struct" name="struct GtkToolShellIface" link="GtkToolShell.html#GtkToolShellIface"/>
3404
3424
  <keyword type="function" name="gtk_tool_shell_get_ellipsize_mode ()" link="GtkToolShell.html#gtk-tool-shell-get-ellipsize-mode" since="2.20"/>
3405
3425
  <keyword type="function" name="gtk_tool_shell_get_icon_size ()" link="GtkToolShell.html#gtk-tool-shell-get-icon-size" since="2.14"/>
3406
3426
  <keyword type="function" name="gtk_tool_shell_get_orientation ()" link="GtkToolShell.html#gtk-tool-shell-get-orientation" since="2.14"/>
@@ -3410,10 +3430,10 @@
3410
3430
  <keyword type="function" name="gtk_tool_shell_get_text_orientation ()" link="GtkToolShell.html#gtk-tool-shell-get-text-orientation" since="2.20"/>
3411
3431
  <keyword type="function" name="gtk_tool_shell_rebuild_menu ()" link="GtkToolShell.html#gtk-tool-shell-rebuild-menu" since="2.14"/>
3412
3432
  <keyword type="function" name="gtk_tool_shell_get_text_size_group ()" link="GtkToolShell.html#gtk-tool-shell-get-text-size-group" since="2.20"/>
3413
- <keyword type="struct" name="GtkToolbar" link="GtkToolbar.html#GtkToolbar-struct"/>
3433
+ <keyword type="struct" name="struct GtkToolbar" link="GtkToolbar.html#GtkToolbar-struct"/>
3414
3434
  <keyword type="enum" name="enum GtkToolbarChildType" link="GtkToolbar.html#GtkToolbarChildType" deprecated=""/>
3415
3435
  <keyword type="enum" name="enum GtkToolbarSpaceStyle" link="GtkToolbar.html#GtkToolbarSpaceStyle"/>
3416
- <keyword type="struct" name="GtkToolbarChild" link="GtkToolbar.html#GtkToolbarChild" deprecated=""/>
3436
+ <keyword type="struct" name="struct GtkToolbarChild" link="GtkToolbar.html#GtkToolbarChild" deprecated=""/>
3417
3437
  <keyword type="function" name="gtk_toolbar_new ()" link="GtkToolbar.html#gtk-toolbar-new"/>
3418
3438
  <keyword type="function" name="gtk_toolbar_insert ()" link="GtkToolbar.html#gtk-toolbar-insert" since="2.4"/>
3419
3439
  <keyword type="function" name="gtk_toolbar_get_item_index ()" link="GtkToolbar.html#gtk-toolbar-get-item-index" since="2.4"/>
@@ -3465,7 +3485,7 @@
3465
3485
  <keyword type="signal" name="The &quot;orientation-changed&quot; signal" link="GtkToolbar.html#GtkToolbar-orientation-changed"/>
3466
3486
  <keyword type="signal" name="The &quot;popup-context-menu&quot; signal" link="GtkToolbar.html#GtkToolbar-popup-context-menu"/>
3467
3487
  <keyword type="signal" name="The &quot;style-changed&quot; signal" link="GtkToolbar.html#GtkToolbar-style-changed"/>
3468
- <keyword type="struct" name="GtkToolItem" link="GtkToolItem.html#GtkToolItem-struct"/>
3488
+ <keyword type="struct" name="struct GtkToolItem" link="GtkToolItem.html#GtkToolItem-struct"/>
3469
3489
  <keyword type="function" name="gtk_tool_item_new ()" link="GtkToolItem.html#gtk-tool-item-new" since="2.4"/>
3470
3490
  <keyword type="function" name="gtk_tool_item_set_homogeneous ()" link="GtkToolItem.html#gtk-tool-item-set-homogeneous" since="2.4"/>
3471
3491
  <keyword type="function" name="gtk_tool_item_get_homogeneous ()" link="GtkToolItem.html#gtk-tool-item-get-homogeneous" since="2.4"/>
@@ -3501,7 +3521,7 @@
3501
3521
  <keyword type="signal" name="The &quot;create-menu-proxy&quot; signal" link="GtkToolItem.html#GtkToolItem-create-menu-proxy"/>
3502
3522
  <keyword type="signal" name="The &quot;set-tooltip&quot; signal" link="GtkToolItem.html#GtkToolItem-set-tooltip"/>
3503
3523
  <keyword type="signal" name="The &quot;toolbar-reconfigured&quot; signal" link="GtkToolItem.html#GtkToolItem-toolbar-reconfigured"/>
3504
- <keyword type="struct" name="GtkToolPalette" link="GtkToolPalette.html#GtkToolPalette-struct"/>
3524
+ <keyword type="struct" name="struct GtkToolPalette" link="GtkToolPalette.html#GtkToolPalette-struct"/>
3505
3525
  <keyword type="function" name="gtk_tool_palette_new ()" link="GtkToolPalette.html#gtk-tool-palette-new" since="2.20"/>
3506
3526
  <keyword type="function" name="gtk_tool_palette_get_exclusive ()" link="GtkToolPalette.html#gtk-tool-palette-get-exclusive" since="2.20"/>
3507
3527
  <keyword type="function" name="gtk_tool_palette_set_exclusive ()" link="GtkToolPalette.html#gtk-tool-palette-set-exclusive" since="2.20"/>
@@ -3531,7 +3551,7 @@
3531
3551
  <keyword type="property" name="The &quot;exclusive&quot; child property" link="GtkToolPalette.html#GtkToolPalette--c-exclusive"/>
3532
3552
  <keyword type="property" name="The &quot;expand&quot; child property" link="GtkToolPalette.html#GtkToolPalette--c-expand"/>
3533
3553
  <keyword type="signal" name="The &quot;set-scroll-adjustments&quot; signal" link="GtkToolPalette.html#GtkToolPalette-set-scroll-adjustments"/>
3534
- <keyword type="struct" name="GtkToolItemGroup" link="GtkToolItemGroup.html#GtkToolItemGroup-struct"/>
3554
+ <keyword type="struct" name="struct GtkToolItemGroup" link="GtkToolItemGroup.html#GtkToolItemGroup-struct"/>
3535
3555
  <keyword type="function" name="gtk_tool_item_group_get_collapsed ()" link="GtkToolItemGroup.html#gtk-tool-item-group-get-collapsed" since="2.20"/>
3536
3556
  <keyword type="function" name="gtk_tool_item_group_get_drop_item ()" link="GtkToolItemGroup.html#gtk-tool-item-group-get-drop-item" since="2.20"/>
3537
3557
  <keyword type="function" name="gtk_tool_item_group_get_ellipsize ()" link="GtkToolItemGroup.html#gtk-tool-item-group-get-ellipsize" since="2.20"/>
@@ -3561,12 +3581,12 @@
3561
3581
  <keyword type="property" name="The &quot;position&quot; child property" link="GtkToolItemGroup.html#GtkToolItemGroup--c-position"/>
3562
3582
  <keyword type="property" name="The &quot;expander-size&quot; style property" link="GtkToolItemGroup.html#GtkToolItemGroup--s-expander-size"/>
3563
3583
  <keyword type="property" name="The &quot;header-spacing&quot; style property" link="GtkToolItemGroup.html#GtkToolItemGroup--s-header-spacing"/>
3564
- <keyword type="struct" name="GtkSeparatorToolItem" link="GtkSeparatorToolItem.html#GtkSeparatorToolItem-struct"/>
3584
+ <keyword type="struct" name="struct GtkSeparatorToolItem" link="GtkSeparatorToolItem.html#GtkSeparatorToolItem-struct"/>
3565
3585
  <keyword type="function" name="gtk_separator_tool_item_new ()" link="GtkSeparatorToolItem.html#gtk-separator-tool-item-new" since="2.4"/>
3566
3586
  <keyword type="function" name="gtk_separator_tool_item_set_draw ()" link="GtkSeparatorToolItem.html#gtk-separator-tool-item-set-draw" since="2.4"/>
3567
3587
  <keyword type="function" name="gtk_separator_tool_item_get_draw ()" link="GtkSeparatorToolItem.html#gtk-separator-tool-item-get-draw" since="2.4"/>
3568
3588
  <keyword type="property" name="The &quot;draw&quot; property" link="GtkSeparatorToolItem.html#GtkSeparatorToolItem--draw"/>
3569
- <keyword type="struct" name="GtkToolButton" link="GtkToolButton.html#GtkToolButton-struct"/>
3589
+ <keyword type="struct" name="struct GtkToolButton" link="GtkToolButton.html#GtkToolButton-struct"/>
3570
3590
  <keyword type="function" name="gtk_tool_button_new ()" link="GtkToolButton.html#gtk-tool-button-new" since="2.4"/>
3571
3591
  <keyword type="function" name="gtk_tool_button_new_from_stock ()" link="GtkToolButton.html#gtk-tool-button-new-from-stock" since="2.4"/>
3572
3592
  <keyword type="function" name="gtk_tool_button_set_label ()" link="GtkToolButton.html#gtk-tool-button-set-label" since="2.4"/>
@@ -3589,7 +3609,8 @@
3589
3609
  <keyword type="property" name="The &quot;use-underline&quot; property" link="GtkToolButton.html#GtkToolButton--use-underline"/>
3590
3610
  <keyword type="property" name="The &quot;icon-spacing&quot; style property" link="GtkToolButton.html#GtkToolButton--s-icon-spacing"/>
3591
3611
  <keyword type="signal" name="The &quot;clicked&quot; signal" link="GtkToolButton.html#GtkToolButton-clicked"/>
3592
- <keyword type="struct" name="GtkMenuToolButton" link="GtkMenuToolButton.html#GtkMenuToolButton-struct"/>
3612
+ <keyword type="" name="GtkMenuToolButton as GtkBuildable" link="GtkMenuToolButton.html#GtkMenuToolButton-BUILDER-UI"/>
3613
+ <keyword type="struct" name="struct GtkMenuToolButton" link="GtkMenuToolButton.html#GtkMenuToolButton-struct"/>
3593
3614
  <keyword type="function" name="gtk_menu_tool_button_new ()" link="GtkMenuToolButton.html#gtk-menu-tool-button-new" since="2.6"/>
3594
3615
  <keyword type="function" name="gtk_menu_tool_button_new_from_stock ()" link="GtkMenuToolButton.html#gtk-menu-tool-button-new-from-stock" since="2.6"/>
3595
3616
  <keyword type="function" name="gtk_menu_tool_button_set_menu ()" link="GtkMenuToolButton.html#gtk-menu-tool-button-set-menu" since="2.6"/>
@@ -3599,14 +3620,14 @@
3599
3620
  <keyword type="function" name="gtk_menu_tool_button_set_arrow_tooltip_markup ()" link="GtkMenuToolButton.html#gtk-menu-tool-button-set-arrow-tooltip-markup" since="2.12"/>
3600
3621
  <keyword type="property" name="The &quot;menu&quot; property" link="GtkMenuToolButton.html#GtkMenuToolButton--menu"/>
3601
3622
  <keyword type="signal" name="The &quot;show-menu&quot; signal" link="GtkMenuToolButton.html#GtkMenuToolButton-show-menu"/>
3602
- <keyword type="struct" name="GtkToggleToolButton" link="GtkToggleToolButton.html#GtkToggleToolButton-struct"/>
3623
+ <keyword type="struct" name="struct GtkToggleToolButton" link="GtkToggleToolButton.html#GtkToggleToolButton-struct"/>
3603
3624
  <keyword type="function" name="gtk_toggle_tool_button_new ()" link="GtkToggleToolButton.html#gtk-toggle-tool-button-new" since="2.4"/>
3604
3625
  <keyword type="function" name="gtk_toggle_tool_button_new_from_stock ()" link="GtkToggleToolButton.html#gtk-toggle-tool-button-new-from-stock" since="2.4"/>
3605
3626
  <keyword type="function" name="gtk_toggle_tool_button_set_active ()" link="GtkToggleToolButton.html#gtk-toggle-tool-button-set-active" since="2.4"/>
3606
3627
  <keyword type="function" name="gtk_toggle_tool_button_get_active ()" link="GtkToggleToolButton.html#gtk-toggle-tool-button-get-active" since="2.4"/>
3607
3628
  <keyword type="property" name="The &quot;active&quot; property" link="GtkToggleToolButton.html#GtkToggleToolButton--active"/>
3608
3629
  <keyword type="signal" name="The &quot;toggled&quot; signal" link="GtkToggleToolButton.html#GtkToggleToolButton-toggled"/>
3609
- <keyword type="struct" name="GtkRadioToolButton" link="GtkRadioToolButton.html#GtkRadioToolButton-struct"/>
3630
+ <keyword type="struct" name="struct GtkRadioToolButton" link="GtkRadioToolButton.html#GtkRadioToolButton-struct"/>
3610
3631
  <keyword type="function" name="gtk_radio_tool_button_new ()" link="GtkRadioToolButton.html#gtk-radio-tool-button-new" since="2.4"/>
3611
3632
  <keyword type="function" name="gtk_radio_tool_button_new_from_stock ()" link="GtkRadioToolButton.html#gtk-radio-tool-button-new-from-stock" since="2.4"/>
3612
3633
  <keyword type="function" name="gtk_radio_tool_button_new_from_widget ()" link="GtkRadioToolButton.html#gtk-radio-tool-button-new-from-widget" since="2.4"/>
@@ -3616,11 +3637,11 @@
3616
3637
  <keyword type="property" name="The &quot;group&quot; property" link="GtkRadioToolButton.html#GtkRadioToolButton--group"/>
3617
3638
  <keyword type="" name="UI Definitions" link="GtkUIManager.html#XML-UI"/>
3618
3639
  <keyword type="" name="UI Merging" link="GtkUIManager.html#UI-Merging"/>
3619
- <keyword type="" name="Accelerators" link="GtkUIManager.html#id1024699"/>
3640
+ <keyword type="" name="Accelerators" link="GtkUIManager.html#id1173435"/>
3620
3641
  <keyword type="" name="Smart Separators" link="GtkUIManager.html#Smart-Separators"/>
3621
- <keyword type="" name="Empty Menus" link="GtkUIManager.html#id1024749"/>
3642
+ <keyword type="" name="Empty Menus" link="GtkUIManager.html#id1173485"/>
3622
3643
  <keyword type="" name="GtkUIManager as GtkBuildable" link="GtkUIManager.html#GtkUIManager-BUILDER-UI"/>
3623
- <keyword type="struct" name="GtkUIManager" link="GtkUIManager.html#GtkUIManager-struct"/>
3644
+ <keyword type="struct" name="struct GtkUIManager" link="GtkUIManager.html#GtkUIManager-struct"/>
3624
3645
  <keyword type="function" name="gtk_ui_manager_new ()" link="GtkUIManager.html#gtk-ui-manager-new" since="2.4"/>
3625
3646
  <keyword type="function" name="gtk_ui_manager_set_add_tearoffs ()" link="GtkUIManager.html#gtk-ui-manager-set-add-tearoffs" since="2.4"/>
3626
3647
  <keyword type="function" name="gtk_ui_manager_get_add_tearoffs ()" link="GtkUIManager.html#gtk-ui-manager-get-add-tearoffs" since="2.4"/>
@@ -3632,7 +3653,7 @@
3632
3653
  <keyword type="function" name="gtk_ui_manager_get_toplevels ()" link="GtkUIManager.html#gtk-ui-manager-get-toplevels" since="2.4"/>
3633
3654
  <keyword type="function" name="gtk_ui_manager_get_action ()" link="GtkUIManager.html#gtk-ui-manager-get-action" since="2.4"/>
3634
3655
  <keyword type="function" name="gtk_ui_manager_add_ui_from_string ()" link="GtkUIManager.html#gtk-ui-manager-add-ui-from-string" since="2.4"/>
3635
- <keyword type="function" name="gtk_ui_manager_add_ui_from_file ()" link="GtkUIManager.html#gtk-ui-manager-add-ui-from-file" since="2.4"/>
3656
+ <keyword type="macro" name="gtk_ui_manager_add_ui_from_file" link="GtkUIManager.html#gtk-ui-manager-add-ui-from-file" since="2.4"/>
3636
3657
  <keyword type="function" name="gtk_ui_manager_new_merge_id ()" link="GtkUIManager.html#gtk-ui-manager-new-merge-id" since="2.4"/>
3637
3658
  <keyword type="enum" name="enum GtkUIManagerItemType" link="GtkUIManager.html#GtkUIManagerItemType"/>
3638
3659
  <keyword type="function" name="gtk_ui_manager_add_ui ()" link="GtkUIManager.html#gtk-ui-manager-add-ui" since="2.4"/>
@@ -3648,7 +3669,7 @@
3648
3669
  <keyword type="signal" name="The &quot;post-activate&quot; signal" link="GtkUIManager.html#GtkUIManager-post-activate"/>
3649
3670
  <keyword type="signal" name="The &quot;pre-activate&quot; signal" link="GtkUIManager.html#GtkUIManager-pre-activate"/>
3650
3671
  <keyword type="" name="GtkActionGroup as GtkBuildable" link="GtkActionGroup.html#GtkActionGroup-BUILDER-UI"/>
3651
- <keyword type="struct" name="GtkActionGroup" link="GtkActionGroup.html#GtkActionGroup-struct"/>
3672
+ <keyword type="struct" name="struct GtkActionGroup" link="GtkActionGroup.html#GtkActionGroup-struct"/>
3652
3673
  <keyword type="function" name="gtk_action_group_new ()" link="GtkActionGroup.html#gtk-action-group-new" since="2.4"/>
3653
3674
  <keyword type="function" name="gtk_action_group_get_name ()" link="GtkActionGroup.html#gtk-action-group-get-name" since="2.4"/>
3654
3675
  <keyword type="function" name="gtk_action_group_get_sensitive ()" link="GtkActionGroup.html#gtk-action-group-get-sensitive" since="2.4"/>
@@ -3660,13 +3681,13 @@
3660
3681
  <keyword type="function" name="gtk_action_group_add_action ()" link="GtkActionGroup.html#gtk-action-group-add-action" since="2.4"/>
3661
3682
  <keyword type="function" name="gtk_action_group_add_action_with_accel ()" link="GtkActionGroup.html#gtk-action-group-add-action-with-accel" since="2.4"/>
3662
3683
  <keyword type="function" name="gtk_action_group_remove_action ()" link="GtkActionGroup.html#gtk-action-group-remove-action" since="2.4"/>
3663
- <keyword type="struct" name="GtkActionEntry" link="GtkActionGroup.html#GtkActionEntry"/>
3684
+ <keyword type="struct" name="struct GtkActionEntry" link="GtkActionGroup.html#GtkActionEntry"/>
3664
3685
  <keyword type="function" name="gtk_action_group_add_actions ()" link="GtkActionGroup.html#gtk-action-group-add-actions" since="2.4"/>
3665
3686
  <keyword type="function" name="gtk_action_group_add_actions_full ()" link="GtkActionGroup.html#gtk-action-group-add-actions-full" since="2.4"/>
3666
- <keyword type="struct" name="GtkToggleActionEntry" link="GtkActionGroup.html#GtkToggleActionEntry"/>
3687
+ <keyword type="struct" name="struct GtkToggleActionEntry" link="GtkActionGroup.html#GtkToggleActionEntry"/>
3667
3688
  <keyword type="function" name="gtk_action_group_add_toggle_actions ()" link="GtkActionGroup.html#gtk-action-group-add-toggle-actions" since="2.4"/>
3668
3689
  <keyword type="function" name="gtk_action_group_add_toggle_actions_full ()" link="GtkActionGroup.html#gtk-action-group-add-toggle-actions-full" since="2.4"/>
3669
- <keyword type="struct" name="GtkRadioActionEntry" link="GtkActionGroup.html#GtkRadioActionEntry"/>
3690
+ <keyword type="struct" name="struct GtkRadioActionEntry" link="GtkActionGroup.html#GtkRadioActionEntry"/>
3670
3691
  <keyword type="function" name="gtk_action_group_add_radio_actions ()" link="GtkActionGroup.html#gtk-action-group-add-radio-actions" since="2.4"/>
3671
3692
  <keyword type="function" name="gtk_action_group_add_radio_actions_full ()" link="GtkActionGroup.html#gtk-action-group-add-radio-actions-full" since="2.4"/>
3672
3693
  <keyword type="function" name="gtk_action_group_set_translate_func ()" link="GtkActionGroup.html#gtk-action-group-set-translate-func" since="2.4"/>
@@ -3679,7 +3700,7 @@
3679
3700
  <keyword type="signal" name="The &quot;disconnect-proxy&quot; signal" link="GtkActionGroup.html#GtkActionGroup-disconnect-proxy"/>
3680
3701
  <keyword type="signal" name="The &quot;post-activate&quot; signal" link="GtkActionGroup.html#GtkActionGroup-post-activate"/>
3681
3702
  <keyword type="signal" name="The &quot;pre-activate&quot; signal" link="GtkActionGroup.html#GtkActionGroup-pre-activate"/>
3682
- <keyword type="struct" name="GtkAction" link="GtkAction.html#GtkAction-struct"/>
3703
+ <keyword type="struct" name="struct GtkAction" link="GtkAction.html#GtkAction-struct"/>
3683
3704
  <keyword type="function" name="gtk_action_new ()" link="GtkAction.html#gtk-action-new" since="2.4"/>
3684
3705
  <keyword type="function" name="gtk_action_get_name ()" link="GtkAction.html#gtk-action-get-name" since="2.4"/>
3685
3706
  <keyword type="function" name="gtk_action_is_sensitive ()" link="GtkAction.html#gtk-action-is-sensitive" since="2.4"/>
@@ -3743,7 +3764,7 @@
3743
3764
  <keyword type="property" name="The &quot;visible-overflown&quot; property" link="GtkAction.html#GtkAction--visible-overflown"/>
3744
3765
  <keyword type="property" name="The &quot;visible-vertical&quot; property" link="GtkAction.html#GtkAction--visible-vertical"/>
3745
3766
  <keyword type="signal" name="The &quot;activate&quot; signal" link="GtkAction.html#GtkAction-activate"/>
3746
- <keyword type="struct" name="GtkToggleAction" link="GtkToggleAction.html#GtkToggleAction-struct"/>
3767
+ <keyword type="struct" name="struct GtkToggleAction" link="GtkToggleAction.html#GtkToggleAction-struct"/>
3747
3768
  <keyword type="function" name="gtk_toggle_action_new ()" link="GtkToggleAction.html#gtk-toggle-action-new" since="2.4"/>
3748
3769
  <keyword type="function" name="gtk_toggle_action_toggled ()" link="GtkToggleAction.html#gtk-toggle-action-toggled" since="2.4"/>
3749
3770
  <keyword type="function" name="gtk_toggle_action_set_active ()" link="GtkToggleAction.html#gtk-toggle-action-set-active" since="2.4"/>
@@ -3753,7 +3774,7 @@
3753
3774
  <keyword type="property" name="The &quot;active&quot; property" link="GtkToggleAction.html#GtkToggleAction--active"/>
3754
3775
  <keyword type="property" name="The &quot;draw-as-radio&quot; property" link="GtkToggleAction.html#GtkToggleAction--draw-as-radio"/>
3755
3776
  <keyword type="signal" name="The &quot;toggled&quot; signal" link="GtkToggleAction.html#GtkToggleAction-toggled"/>
3756
- <keyword type="struct" name="GtkRadioAction" link="GtkRadioAction.html#GtkRadioAction-struct"/>
3777
+ <keyword type="struct" name="struct GtkRadioAction" link="GtkRadioAction.html#GtkRadioAction-struct"/>
3757
3778
  <keyword type="function" name="gtk_radio_action_new ()" link="GtkRadioAction.html#gtk-radio-action-new" since="2.4"/>
3758
3779
  <keyword type="function" name="gtk_radio_action_get_group ()" link="GtkRadioAction.html#gtk-radio-action-get-group" since="2.4"/>
3759
3780
  <keyword type="function" name="gtk_radio_action_set_group ()" link="GtkRadioAction.html#gtk-radio-action-set-group" since="2.4"/>
@@ -3763,15 +3784,15 @@
3763
3784
  <keyword type="property" name="The &quot;group&quot; property" link="GtkRadioAction.html#GtkRadioAction--group"/>
3764
3785
  <keyword type="property" name="The &quot;value&quot; property" link="GtkRadioAction.html#GtkRadioAction--value"/>
3765
3786
  <keyword type="signal" name="The &quot;changed&quot; signal" link="GtkRadioAction.html#GtkRadioAction-changed"/>
3766
- <keyword type="struct" name="GtkRecentAction" link="GtkRecentAction.html#GtkRecentAction-struct"/>
3787
+ <keyword type="struct" name="struct GtkRecentAction" link="GtkRecentAction.html#GtkRecentAction-struct"/>
3767
3788
  <keyword type="function" name="gtk_recent_action_new ()" link="GtkRecentAction.html#gtk-recent-action-new" since="2.12"/>
3768
3789
  <keyword type="function" name="gtk_recent_action_new_for_manager ()" link="GtkRecentAction.html#gtk-recent-action-new-for-manager" since="2.12"/>
3769
3790
  <keyword type="function" name="gtk_recent_action_get_show_numbers ()" link="GtkRecentAction.html#gtk-recent-action-get-show-numbers" since="2.12"/>
3770
3791
  <keyword type="function" name="gtk_recent_action_set_show_numbers ()" link="GtkRecentAction.html#gtk-recent-action-set-show-numbers" since="2.12"/>
3771
3792
  <keyword type="property" name="The &quot;show-numbers&quot; property" link="GtkRecentAction.html#GtkRecentAction--show-numbers"/>
3772
- <keyword type="" name="Implementing GtkActivatable" link="GtkActivatable.html#id968820"/>
3793
+ <keyword type="" name="Implementing GtkActivatable" link="GtkActivatable.html#id1172732"/>
3773
3794
  <keyword type="struct" name="GtkActivatable" link="GtkActivatable.html#GtkActivatable-struct"/>
3774
- <keyword type="struct" name="GtkActivatableIface" link="GtkActivatable.html#GtkActivatableIface" since="2.16"/>
3795
+ <keyword type="struct" name="struct GtkActivatableIface" link="GtkActivatable.html#GtkActivatableIface" since="2.16"/>
3775
3796
  <keyword type="function" name="gtk_activatable_do_set_related_action ()" link="GtkActivatable.html#gtk-activatable-do-set-related-action" since="2.16"/>
3776
3797
  <keyword type="function" name="gtk_activatable_get_related_action ()" link="GtkActivatable.html#gtk-activatable-get-related-action" since="2.16"/>
3777
3798
  <keyword type="function" name="gtk_activatable_get_use_action_appearance ()" link="GtkActivatable.html#gtk-activatable-get-use-action-appearance" since="2.16"/>
@@ -3780,7 +3801,7 @@
3780
3801
  <keyword type="function" name="gtk_activatable_set_use_action_appearance ()" link="GtkActivatable.html#gtk-activatable-set-use-action-appearance" since="2.16"/>
3781
3802
  <keyword type="property" name="The &quot;related-action&quot; property" link="GtkActivatable.html#GtkActivatable--related-action"/>
3782
3803
  <keyword type="property" name="The &quot;use-action-appearance&quot; property" link="GtkActivatable.html#GtkActivatable--use-action-appearance"/>
3783
- <keyword type="struct" name="GtkColorButton" link="GtkColorButton.html#GtkColorButton-struct"/>
3804
+ <keyword type="struct" name="struct GtkColorButton" link="GtkColorButton.html#GtkColorButton-struct"/>
3784
3805
  <keyword type="function" name="gtk_color_button_new ()" link="GtkColorButton.html#gtk-color-button-new" since="2.4"/>
3785
3806
  <keyword type="function" name="gtk_color_button_new_with_color ()" link="GtkColorButton.html#gtk-color-button-new-with-color" since="2.4"/>
3786
3807
  <keyword type="function" name="gtk_color_button_set_color ()" link="GtkColorButton.html#gtk-color-button-set-color" since="2.4"/>
@@ -3797,14 +3818,14 @@
3797
3818
  <keyword type="property" name="The &quot;use-alpha&quot; property" link="GtkColorButton.html#GtkColorButton--use-alpha"/>
3798
3819
  <keyword type="signal" name="The &quot;color-set&quot; signal" link="GtkColorButton.html#GtkColorButton-color-set"/>
3799
3820
  <keyword type="" name="GtkColorSelectionDialog as GtkBuildable" link="GtkColorSelectionDialog.html#GtkColorSelectionDialog-BUILDER-UI"/>
3800
- <keyword type="struct" name="GtkColorSelectionDialog" link="GtkColorSelectionDialog.html#GtkColorSelectionDialog-struct"/>
3821
+ <keyword type="struct" name="struct GtkColorSelectionDialog" link="GtkColorSelectionDialog.html#GtkColorSelectionDialog-struct"/>
3801
3822
  <keyword type="function" name="gtk_color_selection_dialog_new ()" link="GtkColorSelectionDialog.html#gtk-color-selection-dialog-new"/>
3802
3823
  <keyword type="function" name="gtk_color_selection_dialog_get_color_selection ()" link="GtkColorSelectionDialog.html#gtk-color-selection-dialog-get-color-selection" since="2.14"/>
3803
3824
  <keyword type="property" name="The &quot;cancel-button&quot; property" link="GtkColorSelectionDialog.html#GtkColorSelectionDialog--cancel-button"/>
3804
3825
  <keyword type="property" name="The &quot;color-selection&quot; property" link="GtkColorSelectionDialog.html#GtkColorSelectionDialog--color-selection"/>
3805
3826
  <keyword type="property" name="The &quot;help-button&quot; property" link="GtkColorSelectionDialog.html#GtkColorSelectionDialog--help-button"/>
3806
3827
  <keyword type="property" name="The &quot;ok-button&quot; property" link="GtkColorSelectionDialog.html#GtkColorSelectionDialog--ok-button"/>
3807
- <keyword type="struct" name="GtkColorSelection" link="GtkColorSelection.html#GtkColorSelection-struct"/>
3828
+ <keyword type="struct" name="struct GtkColorSelection" link="GtkColorSelection.html#GtkColorSelection-struct"/>
3808
3829
  <keyword type="function" name="gtk_color_selection_new ()" link="GtkColorSelection.html#gtk-color-selection-new"/>
3809
3830
  <keyword type="function" name="gtk_color_selection_set_update_policy ()" link="GtkColorSelection.html#gtk-color-selection-set-update-policy" deprecated=""/>
3810
3831
  <keyword type="function" name="gtk_color_selection_set_has_opacity_control ()" link="GtkColorSelection.html#gtk-color-selection-set-has-opacity-control"/>
@@ -3833,7 +3854,7 @@
3833
3854
  <keyword type="property" name="The &quot;has-opacity-control&quot; property" link="GtkColorSelection.html#GtkColorSelection--has-opacity-control"/>
3834
3855
  <keyword type="property" name="The &quot;has-palette&quot; property" link="GtkColorSelection.html#GtkColorSelection--has-palette"/>
3835
3856
  <keyword type="signal" name="The &quot;color-changed&quot; signal" link="GtkColorSelection.html#GtkColorSelection-color-changed"/>
3836
- <keyword type="struct" name="GtkHSV" link="GtkHSV.html#GtkHSV-struct"/>
3857
+ <keyword type="struct" name="struct GtkHSV" link="GtkHSV.html#GtkHSV-struct"/>
3837
3858
  <keyword type="function" name="gtk_hsv_new ()" link="GtkHSV.html#gtk-hsv-new" since="2.14"/>
3838
3859
  <keyword type="function" name="gtk_hsv_set_color ()" link="GtkHSV.html#gtk-hsv-set-color" since="2.14"/>
3839
3860
  <keyword type="function" name="gtk_hsv_get_color ()" link="GtkHSV.html#gtk-hsv-get-color" since="2.14"/>
@@ -3866,15 +3887,15 @@
3866
3887
  <keyword type="function" name="gtk_file_chooser_set_create_folders ()" link="GtkFileChooser.html#gtk-file-chooser-set-create-folders" since="2.18"/>
3867
3888
  <keyword type="function" name="gtk_file_chooser_get_create_folders ()" link="GtkFileChooser.html#gtk-file-chooser-get-create-folders" since="2.18"/>
3868
3889
  <keyword type="function" name="gtk_file_chooser_set_current_name ()" link="GtkFileChooser.html#gtk-file-chooser-set-current-name" since="2.4"/>
3869
- <keyword type="function" name="gtk_file_chooser_get_filename ()" link="GtkFileChooser.html#gtk-file-chooser-get-filename" since="2.4"/>
3870
- <keyword type="function" name="gtk_file_chooser_set_filename ()" link="GtkFileChooser.html#gtk-file-chooser-set-filename" since="2.4"/>
3871
- <keyword type="function" name="gtk_file_chooser_select_filename ()" link="GtkFileChooser.html#gtk-file-chooser-select-filename" since="2.4"/>
3872
- <keyword type="function" name="gtk_file_chooser_unselect_filename ()" link="GtkFileChooser.html#gtk-file-chooser-unselect-filename" since="2.4"/>
3890
+ <keyword type="macro" name="gtk_file_chooser_get_filename" link="GtkFileChooser.html#gtk-file-chooser-get-filename" since="2.4"/>
3891
+ <keyword type="macro" name="gtk_file_chooser_set_filename" link="GtkFileChooser.html#gtk-file-chooser-set-filename" since="2.4"/>
3892
+ <keyword type="macro" name="gtk_file_chooser_select_filename" link="GtkFileChooser.html#gtk-file-chooser-select-filename" since="2.4"/>
3893
+ <keyword type="macro" name="gtk_file_chooser_unselect_filename" link="GtkFileChooser.html#gtk-file-chooser-unselect-filename" since="2.4"/>
3873
3894
  <keyword type="function" name="gtk_file_chooser_select_all ()" link="GtkFileChooser.html#gtk-file-chooser-select-all" since="2.4"/>
3874
3895
  <keyword type="function" name="gtk_file_chooser_unselect_all ()" link="GtkFileChooser.html#gtk-file-chooser-unselect-all" since="2.4"/>
3875
- <keyword type="function" name="gtk_file_chooser_get_filenames ()" link="GtkFileChooser.html#gtk-file-chooser-get-filenames" since="2.4"/>
3876
- <keyword type="function" name="gtk_file_chooser_set_current_folder ()" link="GtkFileChooser.html#gtk-file-chooser-set-current-folder" since="2.4"/>
3877
- <keyword type="function" name="gtk_file_chooser_get_current_folder ()" link="GtkFileChooser.html#gtk-file-chooser-get-current-folder" since="2.4"/>
3896
+ <keyword type="macro" name="gtk_file_chooser_get_filenames" link="GtkFileChooser.html#gtk-file-chooser-get-filenames" since="2.4"/>
3897
+ <keyword type="macro" name="gtk_file_chooser_set_current_folder" link="GtkFileChooser.html#gtk-file-chooser-set-current-folder" since="2.4"/>
3898
+ <keyword type="macro" name="gtk_file_chooser_get_current_folder" link="GtkFileChooser.html#gtk-file-chooser-get-current-folder" since="2.4"/>
3878
3899
  <keyword type="function" name="gtk_file_chooser_get_uri ()" link="GtkFileChooser.html#gtk-file-chooser-get-uri" since="2.4"/>
3879
3900
  <keyword type="function" name="gtk_file_chooser_set_uri ()" link="GtkFileChooser.html#gtk-file-chooser-set-uri" since="2.4"/>
3880
3901
  <keyword type="function" name="gtk_file_chooser_select_uri ()" link="GtkFileChooser.html#gtk-file-chooser-select-uri" since="2.4"/>
@@ -3888,7 +3909,7 @@
3888
3909
  <keyword type="function" name="gtk_file_chooser_get_preview_widget_active ()" link="GtkFileChooser.html#gtk-file-chooser-get-preview-widget-active" since="2.4"/>
3889
3910
  <keyword type="function" name="gtk_file_chooser_set_use_preview_label ()" link="GtkFileChooser.html#gtk-file-chooser-set-use-preview-label" since="2.4"/>
3890
3911
  <keyword type="function" name="gtk_file_chooser_get_use_preview_label ()" link="GtkFileChooser.html#gtk-file-chooser-get-use-preview-label"/>
3891
- <keyword type="function" name="gtk_file_chooser_get_preview_filename ()" link="GtkFileChooser.html#gtk-file-chooser-get-preview-filename" since="2.4"/>
3912
+ <keyword type="macro" name="gtk_file_chooser_get_preview_filename" link="GtkFileChooser.html#gtk-file-chooser-get-preview-filename" since="2.4"/>
3892
3913
  <keyword type="function" name="gtk_file_chooser_get_preview_uri ()" link="GtkFileChooser.html#gtk-file-chooser-get-preview-uri" since="2.4"/>
3893
3914
  <keyword type="function" name="gtk_file_chooser_set_extra_widget ()" link="GtkFileChooser.html#gtk-file-chooser-set-extra-widget" since="2.4"/>
3894
3915
  <keyword type="function" name="gtk_file_chooser_get_extra_widget ()" link="GtkFileChooser.html#gtk-file-chooser-get-extra-widget" since="2.4"/>
@@ -3897,9 +3918,9 @@
3897
3918
  <keyword type="function" name="gtk_file_chooser_list_filters ()" link="GtkFileChooser.html#gtk-file-chooser-list-filters" since="2.4"/>
3898
3919
  <keyword type="function" name="gtk_file_chooser_set_filter ()" link="GtkFileChooser.html#gtk-file-chooser-set-filter" since="2.4"/>
3899
3920
  <keyword type="function" name="gtk_file_chooser_get_filter ()" link="GtkFileChooser.html#gtk-file-chooser-get-filter" since="2.4"/>
3900
- <keyword type="function" name="gtk_file_chooser_add_shortcut_folder ()" link="GtkFileChooser.html#gtk-file-chooser-add-shortcut-folder" since="2.4"/>
3901
- <keyword type="function" name="gtk_file_chooser_remove_shortcut_folder ()" link="GtkFileChooser.html#gtk-file-chooser-remove-shortcut-folder" since="2.4"/>
3902
- <keyword type="function" name="gtk_file_chooser_list_shortcut_folders ()" link="GtkFileChooser.html#gtk-file-chooser-list-shortcut-folders" since="2.4"/>
3921
+ <keyword type="macro" name="gtk_file_chooser_add_shortcut_folder" link="GtkFileChooser.html#gtk-file-chooser-add-shortcut-folder" since="2.4"/>
3922
+ <keyword type="macro" name="gtk_file_chooser_remove_shortcut_folder" link="GtkFileChooser.html#gtk-file-chooser-remove-shortcut-folder" since="2.4"/>
3923
+ <keyword type="macro" name="gtk_file_chooser_list_shortcut_folders" link="GtkFileChooser.html#gtk-file-chooser-list-shortcut-folders" since="2.4"/>
3903
3924
  <keyword type="function" name="gtk_file_chooser_add_shortcut_folder_uri ()" link="GtkFileChooser.html#gtk-file-chooser-add-shortcut-folder-uri" since="2.4"/>
3904
3925
  <keyword type="function" name="gtk_file_chooser_remove_shortcut_folder_uri ()" link="GtkFileChooser.html#gtk-file-chooser-remove-shortcut-folder-uri" since="2.4"/>
3905
3926
  <keyword type="function" name="gtk_file_chooser_list_shortcut_folder_uris ()" link="GtkFileChooser.html#gtk-file-chooser-list-shortcut-folder-uris" since="2.4"/>
@@ -3928,7 +3949,7 @@
3928
3949
  <keyword type="signal" name="The &quot;file-activated&quot; signal" link="GtkFileChooser.html#GtkFileChooser-file-activated"/>
3929
3950
  <keyword type="signal" name="The &quot;selection-changed&quot; signal" link="GtkFileChooser.html#GtkFileChooser-selection-changed"/>
3930
3951
  <keyword type="signal" name="The &quot;update-preview&quot; signal" link="GtkFileChooser.html#GtkFileChooser-update-preview"/>
3931
- <keyword type="struct" name="GtkFileChooserButton" link="GtkFileChooserButton.html#GtkFileChooserButton-struct"/>
3952
+ <keyword type="struct" name="struct GtkFileChooserButton" link="GtkFileChooserButton.html#GtkFileChooserButton-struct"/>
3932
3953
  <keyword type="function" name="gtk_file_chooser_button_new ()" link="GtkFileChooserButton.html#gtk-file-chooser-button-new" since="2.6"/>
3933
3954
  <keyword type="function" name="gtk_file_chooser_button_new_with_backend ()" link="GtkFileChooserButton.html#gtk-file-chooser-button-new-with-backend" deprecated="2.14: Use gtk_file_chooser_button_new() instead." since="2.6"/>
3934
3955
  <keyword type="function" name="gtk_file_chooser_button_new_with_dialog ()" link="GtkFileChooserButton.html#gtk-file-chooser-button-new-with-dialog" since="2.6"/>
@@ -3943,14 +3964,14 @@
3943
3964
  <keyword type="property" name="The &quot;title&quot; property" link="GtkFileChooserButton.html#GtkFileChooserButton--title"/>
3944
3965
  <keyword type="property" name="The &quot;width-chars&quot; property" link="GtkFileChooserButton.html#GtkFileChooserButton--width-chars"/>
3945
3966
  <keyword type="signal" name="The &quot;file-set&quot; signal" link="GtkFileChooserButton.html#GtkFileChooserButton-file-set"/>
3946
- <keyword type="struct" name="GtkFileChooserDialog" link="GtkFileChooserDialog.html#GtkFileChooserDialog-struct"/>
3967
+ <keyword type="struct" name="struct GtkFileChooserDialog" link="GtkFileChooserDialog.html#GtkFileChooserDialog-struct"/>
3947
3968
  <keyword type="function" name="gtk_file_chooser_dialog_new ()" link="GtkFileChooserDialog.html#gtk-file-chooser-dialog-new" since="2.4"/>
3948
3969
  <keyword type="function" name="gtk_file_chooser_dialog_new_with_backend ()" link="GtkFileChooserDialog.html#gtk-file-chooser-dialog-new-with-backend" deprecated="2.14: Use gtk_file_chooser_dialog_new() instead." since="2.4"/>
3949
- <keyword type="struct" name="GtkFileChooserWidget" link="GtkFileChooserWidget.html#GtkFileChooserWidget-struct"/>
3970
+ <keyword type="struct" name="struct GtkFileChooserWidget" link="GtkFileChooserWidget.html#GtkFileChooserWidget-struct"/>
3950
3971
  <keyword type="function" name="gtk_file_chooser_widget_new ()" link="GtkFileChooserWidget.html#gtk-file-chooser-widget-new" since="2.4"/>
3951
3972
  <keyword type="function" name="gtk_file_chooser_widget_new_with_backend ()" link="GtkFileChooserWidget.html#gtk-file-chooser-widget-new-with-backend" deprecated="2.14: Use gtk_file_chooser_widget_new() instead." since="2.4"/>
3952
3973
  <keyword type="struct" name="GtkFileFilter" link="gtk-gtkfilefilter.html#GtkFileFilter-struct"/>
3953
- <keyword type="struct" name="GtkFileFilterInfo" link="gtk-gtkfilefilter.html#GtkFileFilterInfo"/>
3974
+ <keyword type="struct" name="struct GtkFileFilterInfo" link="gtk-gtkfilefilter.html#GtkFileFilterInfo"/>
3954
3975
  <keyword type="enum" name="enum GtkFileFilterFlags" link="gtk-gtkfilefilter.html#GtkFileFilterFlags"/>
3955
3976
  <keyword type="function" name="GtkFileFilterFunc ()" link="gtk-gtkfilefilter.html#GtkFileFilterFunc"/>
3956
3977
  <keyword type="function" name="gtk_file_filter_new ()" link="gtk-gtkfilefilter.html#gtk-file-filter-new" since="2.4"/>
@@ -3962,7 +3983,7 @@
3962
3983
  <keyword type="function" name="gtk_file_filter_add_custom ()" link="gtk-gtkfilefilter.html#gtk-file-filter-add-custom" since="2.4"/>
3963
3984
  <keyword type="function" name="gtk_file_filter_get_needed ()" link="gtk-gtkfilefilter.html#gtk-file-filter-get-needed" since="2.4"/>
3964
3985
  <keyword type="function" name="gtk_file_filter_filter ()" link="gtk-gtkfilefilter.html#gtk-file-filter-filter" since="2.4"/>
3965
- <keyword type="struct" name="GtkFontButton" link="GtkFontButton.html#GtkFontButton-struct"/>
3986
+ <keyword type="struct" name="struct GtkFontButton" link="GtkFontButton.html#GtkFontButton-struct"/>
3966
3987
  <keyword type="function" name="gtk_font_button_new ()" link="GtkFontButton.html#gtk-font-button-new" since="2.4"/>
3967
3988
  <keyword type="function" name="gtk_font_button_new_with_font ()" link="GtkFontButton.html#gtk-font-button-new-with-font" since="2.4"/>
3968
3989
  <keyword type="function" name="gtk_font_button_set_font_name ()" link="GtkFontButton.html#gtk-font-button-set-font-name" since="2.4"/>
@@ -3984,7 +4005,7 @@
3984
4005
  <keyword type="property" name="The &quot;use-font&quot; property" link="GtkFontButton.html#GtkFontButton--use-font"/>
3985
4006
  <keyword type="property" name="The &quot;use-size&quot; property" link="GtkFontButton.html#GtkFontButton--use-size"/>
3986
4007
  <keyword type="signal" name="The &quot;font-set&quot; signal" link="GtkFontButton.html#GtkFontButton-font-set"/>
3987
- <keyword type="struct" name="GtkFontSelection" link="GtkFontSelection.html#GtkFontSelection-struct"/>
4008
+ <keyword type="struct" name="struct GtkFontSelection" link="GtkFontSelection.html#GtkFontSelection-struct"/>
3988
4009
  <keyword type="function" name="gtk_font_selection_new ()" link="GtkFontSelection.html#gtk-font-selection-new"/>
3989
4010
  <keyword type="function" name="gtk_font_selection_get_font ()" link="GtkFontSelection.html#gtk-font-selection-get-font" deprecated="2.0: Use gtk_font_selection_get_font_name() instead."/>
3990
4011
  <keyword type="function" name="gtk_font_selection_get_font_name ()" link="GtkFontSelection.html#gtk-font-selection-get-font-name"/>
@@ -4003,7 +4024,7 @@
4003
4024
  <keyword type="property" name="The &quot;font-name&quot; property" link="GtkFontSelection.html#GtkFontSelection--font-name"/>
4004
4025
  <keyword type="property" name="The &quot;preview-text&quot; property" link="GtkFontSelection.html#GtkFontSelection--preview-text"/>
4005
4026
  <keyword type="" name="GtkFontSelectionDialog as GtkBuildable" link="GtkFontSelectionDialog.html#GtkFontSelectionDialog-BUILDER-UI"/>
4006
- <keyword type="struct" name="GtkFontSelectionDialog" link="GtkFontSelectionDialog.html#GtkFontSelectionDialog-struct"/>
4027
+ <keyword type="struct" name="struct GtkFontSelectionDialog" link="GtkFontSelectionDialog.html#GtkFontSelectionDialog-struct"/>
4007
4028
  <keyword type="function" name="gtk_font_selection_dialog_new ()" link="GtkFontSelectionDialog.html#gtk-font-selection-dialog-new"/>
4008
4029
  <keyword type="function" name="gtk_font_selection_dialog_get_font ()" link="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-font" deprecated="2.0: Use gtk_font_selection_dialog_get_font_name() instead."/>
4009
4030
  <keyword type="function" name="gtk_font_selection_dialog_get_font_name ()" link="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-font-name"/>
@@ -4014,11 +4035,11 @@
4014
4035
  <keyword type="function" name="gtk_font_selection_dialog_get_cancel_button ()" link="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-cancel-button" since="2.14"/>
4015
4036
  <keyword type="function" name="gtk_font_selection_dialog_get_ok_button ()" link="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-ok-button" since="2.14"/>
4016
4037
  <keyword type="function" name="gtk_font_selection_dialog_get_font_selection ()" link="GtkFontSelectionDialog.html#gtk-font-selection-dialog-get-font-selection" since="2.22"/>
4017
- <keyword type="struct" name="GtkInputDialog" link="GtkInputDialog.html#GtkInputDialog-struct"/>
4038
+ <keyword type="struct" name="struct GtkInputDialog" link="GtkInputDialog.html#GtkInputDialog-struct"/>
4018
4039
  <keyword type="function" name="gtk_input_dialog_new ()" link="GtkInputDialog.html#gtk-input-dialog-new" deprecated="2.20: Don't use this widget anymore."/>
4019
4040
  <keyword type="signal" name="The &quot;disable-device&quot; signal" link="GtkInputDialog.html#GtkInputDialog-disable-device"/>
4020
4041
  <keyword type="signal" name="The &quot;enable-device&quot; signal" link="GtkInputDialog.html#GtkInputDialog-enable-device"/>
4021
- <keyword type="struct" name="GtkAlignment" link="GtkAlignment.html#GtkAlignment-struct"/>
4042
+ <keyword type="struct" name="struct GtkAlignment" link="GtkAlignment.html#GtkAlignment-struct"/>
4022
4043
  <keyword type="function" name="gtk_alignment_new ()" link="GtkAlignment.html#gtk-alignment-new"/>
4023
4044
  <keyword type="function" name="gtk_alignment_set ()" link="GtkAlignment.html#gtk-alignment-set"/>
4024
4045
  <keyword type="function" name="gtk_alignment_get_padding ()" link="GtkAlignment.html#gtk-alignment-get-padding" since="2.4"/>
@@ -4031,30 +4052,30 @@
4031
4052
  <keyword type="property" name="The &quot;xscale&quot; property" link="GtkAlignment.html#GtkAlignment--xscale"/>
4032
4053
  <keyword type="property" name="The &quot;yalign&quot; property" link="GtkAlignment.html#GtkAlignment--yalign"/>
4033
4054
  <keyword type="property" name="The &quot;yscale&quot; property" link="GtkAlignment.html#GtkAlignment--yscale"/>
4034
- <keyword type="struct" name="GtkAspectFrame" link="GtkAspectFrame.html#GtkAspectFrame-struct"/>
4055
+ <keyword type="struct" name="struct GtkAspectFrame" link="GtkAspectFrame.html#GtkAspectFrame-struct"/>
4035
4056
  <keyword type="function" name="gtk_aspect_frame_new ()" link="GtkAspectFrame.html#gtk-aspect-frame-new"/>
4036
4057
  <keyword type="function" name="gtk_aspect_frame_set ()" link="GtkAspectFrame.html#gtk-aspect-frame-set"/>
4037
4058
  <keyword type="property" name="The &quot;obey-child&quot; property" link="GtkAspectFrame.html#GtkAspectFrame--obey-child"/>
4038
4059
  <keyword type="property" name="The &quot;ratio&quot; property" link="GtkAspectFrame.html#GtkAspectFrame--ratio"/>
4039
4060
  <keyword type="property" name="The &quot;xalign&quot; property" link="GtkAspectFrame.html#GtkAspectFrame--xalign"/>
4040
4061
  <keyword type="property" name="The &quot;yalign&quot; property" link="GtkAspectFrame.html#GtkAspectFrame--yalign"/>
4041
- <keyword type="struct" name="GtkHBox" link="GtkHBox.html#GtkHBox-struct"/>
4062
+ <keyword type="struct" name="struct GtkHBox" link="GtkHBox.html#GtkHBox-struct"/>
4042
4063
  <keyword type="function" name="gtk_hbox_new ()" link="GtkHBox.html#gtk-hbox-new"/>
4043
- <keyword type="struct" name="GtkVBox" link="GtkVBox.html#GtkVBox-struct"/>
4064
+ <keyword type="struct" name="struct GtkVBox" link="GtkVBox.html#GtkVBox-struct"/>
4044
4065
  <keyword type="function" name="gtk_vbox_new ()" link="GtkVBox.html#gtk-vbox-new"/>
4045
- <keyword type="struct" name="GtkHButtonBox" link="GtkHButtonBox.html#GtkHButtonBox-struct"/>
4066
+ <keyword type="struct" name="struct GtkHButtonBox" link="GtkHButtonBox.html#GtkHButtonBox-struct"/>
4046
4067
  <keyword type="function" name="gtk_hbutton_box_new ()" link="GtkHButtonBox.html#gtk-hbutton-box-new"/>
4047
4068
  <keyword type="function" name="gtk_hbutton_box_get_spacing_default ()" link="GtkHButtonBox.html#gtk-hbutton-box-get-spacing-default" deprecated=""/>
4048
4069
  <keyword type="function" name="gtk_hbutton_box_get_layout_default ()" link="GtkHButtonBox.html#gtk-hbutton-box-get-layout-default" deprecated=""/>
4049
4070
  <keyword type="function" name="gtk_hbutton_box_set_spacing_default ()" link="GtkHButtonBox.html#gtk-hbutton-box-set-spacing-default" deprecated=""/>
4050
4071
  <keyword type="function" name="gtk_hbutton_box_set_layout_default ()" link="GtkHButtonBox.html#gtk-hbutton-box-set-layout-default" deprecated=""/>
4051
- <keyword type="struct" name="GtkVButtonBox" link="GtkVButtonBox.html#GtkVButtonBox-struct"/>
4072
+ <keyword type="struct" name="struct GtkVButtonBox" link="GtkVButtonBox.html#GtkVButtonBox-struct"/>
4052
4073
  <keyword type="function" name="gtk_vbutton_box_new ()" link="GtkVButtonBox.html#gtk-vbutton-box-new"/>
4053
4074
  <keyword type="function" name="gtk_vbutton_box_get_spacing_default ()" link="GtkVButtonBox.html#gtk-vbutton-box-get-spacing-default" deprecated="2.0: Use gtk_box_get_spacing() instead."/>
4054
4075
  <keyword type="function" name="gtk_vbutton_box_set_spacing_default ()" link="GtkVButtonBox.html#gtk-vbutton-box-set-spacing-default" deprecated="2.0: Use gtk_box_set_spacing() instead."/>
4055
4076
  <keyword type="function" name="gtk_vbutton_box_get_layout_default ()" link="GtkVButtonBox.html#gtk-vbutton-box-get-layout-default" deprecated="2.0: Use gtk_button_box_get_layout() instead."/>
4056
4077
  <keyword type="function" name="gtk_vbutton_box_set_layout_default ()" link="GtkVButtonBox.html#gtk-vbutton-box-set-layout-default" deprecated="2.0: Use gtk_button_box_set_layout() instead."/>
4057
- <keyword type="struct" name="GtkFixed" link="GtkFixed.html#GtkFixed-struct"/>
4078
+ <keyword type="struct" name="struct GtkFixed" link="GtkFixed.html#GtkFixed-struct"/>
4058
4079
  <keyword type="function" name="gtk_fixed_new ()" link="GtkFixed.html#gtk-fixed-new"/>
4059
4080
  <keyword type="function" name="gtk_fixed_put ()" link="GtkFixed.html#gtk-fixed-put"/>
4060
4081
  <keyword type="function" name="gtk_fixed_move ()" link="GtkFixed.html#gtk-fixed-move"/>
@@ -4062,11 +4083,11 @@
4062
4083
  <keyword type="function" name="gtk_fixed_set_has_window ()" link="GtkFixed.html#gtk-fixed-set-has-window" deprecated="2.20: Use gtk_widget_set_has_window() instead."/>
4063
4084
  <keyword type="property" name="The &quot;x&quot; child property" link="GtkFixed.html#GtkFixed--c-x"/>
4064
4085
  <keyword type="property" name="The &quot;y&quot; child property" link="GtkFixed.html#GtkFixed--c-y"/>
4065
- <keyword type="struct" name="GtkHPaned" link="GtkHPaned.html#GtkHPaned-struct"/>
4086
+ <keyword type="struct" name="struct GtkHPaned" link="GtkHPaned.html#GtkHPaned-struct"/>
4066
4087
  <keyword type="function" name="gtk_hpaned_new ()" link="GtkHPaned.html#gtk-hpaned-new"/>
4067
- <keyword type="struct" name="GtkVPaned" link="GtkVPaned.html#GtkVPaned-struct"/>
4088
+ <keyword type="struct" name="struct GtkVPaned" link="GtkVPaned.html#GtkVPaned-struct"/>
4068
4089
  <keyword type="function" name="gtk_vpaned_new ()" link="GtkVPaned.html#gtk-vpaned-new"/>
4069
- <keyword type="struct" name="GtkLayout" link="GtkLayout.html#GtkLayout-struct"/>
4090
+ <keyword type="struct" name="struct GtkLayout" link="GtkLayout.html#GtkLayout-struct"/>
4070
4091
  <keyword type="function" name="gtk_layout_new ()" link="GtkLayout.html#gtk-layout-new"/>
4071
4092
  <keyword type="function" name="gtk_layout_put ()" link="GtkLayout.html#gtk-layout-put"/>
4072
4093
  <keyword type="function" name="gtk_layout_move ()" link="GtkLayout.html#gtk-layout-move"/>
@@ -4087,7 +4108,7 @@
4087
4108
  <keyword type="property" name="The &quot;y&quot; child property" link="GtkLayout.html#GtkLayout--c-y"/>
4088
4109
  <keyword type="signal" name="The &quot;set-scroll-adjustments&quot; signal" link="GtkLayout.html#GtkLayout-set-scroll-adjustments"/>
4089
4110
  <keyword type="" name="GtkNotebook as GtkBuildable" link="GtkNotebook.html#GtkNotebook-BUILDER-UI"/>
4090
- <keyword type="struct" name="GtkNotebook" link="GtkNotebook.html#GtkNotebook-struct"/>
4111
+ <keyword type="struct" name="struct GtkNotebook" link="GtkNotebook.html#GtkNotebook-struct"/>
4091
4112
  <keyword type="struct" name="GtkNotebookPage" link="GtkNotebook.html#GtkNotebookPage" deprecated=""/>
4092
4113
  <keyword type="function" name="gtk_notebook_new ()" link="GtkNotebook.html#gtk-notebook-new"/>
4093
4114
  <keyword type="function" name="gtk_notebook_append_page ()" link="GtkNotebook.html#gtk-notebook-append-page"/>
@@ -4137,17 +4158,20 @@
4137
4158
  <keyword type="function" name="gtk_notebook_get_tab_hborder ()" link="GtkNotebook.html#gtk-notebook-get-tab-hborder" since="2.22"/>
4138
4159
  <keyword type="function" name="gtk_notebook_get_tab_vborder ()" link="GtkNotebook.html#gtk-notebook-get-tab-vborder" since="2.22"/>
4139
4160
  <keyword type="function" name="gtk_notebook_set_current_page ()" link="GtkNotebook.html#gtk-notebook-set-current-page"/>
4140
- <keyword type="function" name="gtk_notebook_set_group_id ()" link="GtkNotebook.html#gtk-notebook-set-group-id" deprecated="2.12: use gtk_notebook_set_group() instead." since="2.10"/>
4141
- <keyword type="function" name="gtk_notebook_get_group_id ()" link="GtkNotebook.html#gtk-notebook-get-group-id" deprecated="2.12: use gtk_notebook_get_group() instead." since="2.10"/>
4142
- <keyword type="function" name="gtk_notebook_set_group ()" link="GtkNotebook.html#gtk-notebook-set-group" since="2.12"/>
4143
- <keyword type="function" name="gtk_notebook_get_group ()" link="GtkNotebook.html#gtk-notebook-get-group" since="2.12"/>
4161
+ <keyword type="function" name="gtk_notebook_set_group_id ()" link="GtkNotebook.html#gtk-notebook-set-group-id" deprecated="2.12: use gtk_notebook_set_group_name() instead." since="2.10"/>
4162
+ <keyword type="function" name="gtk_notebook_get_group_id ()" link="GtkNotebook.html#gtk-notebook-get-group-id" deprecated="2.12: use gtk_notebook_get_group_name() instead." since="2.10"/>
4163
+ <keyword type="function" name="gtk_notebook_set_group ()" link="GtkNotebook.html#gtk-notebook-set-group" deprecated="2.24: Use gtk_notebook_set_group_name() instead" since="2.12"/>
4164
+ <keyword type="function" name="gtk_notebook_get_group ()" link="GtkNotebook.html#gtk-notebook-get-group" deprecated="2.24: Use gtk_notebook_get_group_name() instead" since="2.12"/>
4165
+ <keyword type="function" name="gtk_notebook_set_group_name ()" link="GtkNotebook.html#gtk-notebook-set-group-name" since="2.24"/>
4166
+ <keyword type="function" name="gtk_notebook_get_group_name ()" link="GtkNotebook.html#gtk-notebook-get-group-name" since="2.24"/>
4144
4167
  <keyword type="function" name="gtk_notebook_set_action_widget ()" link="GtkNotebook.html#gtk-notebook-set-action-widget" since="2.20"/>
4145
4168
  <keyword type="function" name="gtk_notebook_get_action_widget ()" link="GtkNotebook.html#gtk-notebook-get-action-widget" since="2.20"/>
4146
4169
  <keyword type="function" name="GtkNotebookWindowCreationFunc ()" link="GtkNotebook.html#GtkNotebookWindowCreationFunc"/>
4147
- <keyword type="function" name="gtk_notebook_set_window_creation_hook ()" link="GtkNotebook.html#gtk-notebook-set-window-creation-hook" since="2.10"/>
4170
+ <keyword type="function" name="gtk_notebook_set_window_creation_hook ()" link="GtkNotebook.html#gtk-notebook-set-window-creation-hook" deprecated="2.24: Use the #GtkNotebook::create-window signal instead" since="2.10"/>
4148
4171
  <keyword type="property" name="The &quot;enable-popup&quot; property" link="GtkNotebook.html#GtkNotebook--enable-popup"/>
4149
4172
  <keyword type="property" name="The &quot;group&quot; property" link="GtkNotebook.html#GtkNotebook--group"/>
4150
4173
  <keyword type="property" name="The &quot;group-id&quot; property" link="GtkNotebook.html#GtkNotebook--group-id"/>
4174
+ <keyword type="property" name="The &quot;group-name&quot; property" link="GtkNotebook.html#GtkNotebook--group-name"/>
4151
4175
  <keyword type="property" name="The &quot;homogeneous&quot; property" link="GtkNotebook.html#GtkNotebook--homogeneous"/>
4152
4176
  <keyword type="property" name="The &quot;page&quot; property" link="GtkNotebook.html#GtkNotebook--page"/>
4153
4177
  <keyword type="property" name="The &quot;scrollable&quot; property" link="GtkNotebook.html#GtkNotebook--scrollable"/>
@@ -4182,7 +4206,7 @@
4182
4206
  <keyword type="signal" name="The &quot;reorder-tab&quot; signal" link="GtkNotebook.html#GtkNotebook-reorder-tab"/>
4183
4207
  <keyword type="signal" name="The &quot;select-page&quot; signal" link="GtkNotebook.html#GtkNotebook-select-page"/>
4184
4208
  <keyword type="signal" name="The &quot;switch-page&quot; signal" link="GtkNotebook.html#GtkNotebook-switch-page"/>
4185
- <keyword type="struct" name="GtkTable" link="GtkTable.html#GtkTable-struct"/>
4209
+ <keyword type="struct" name="struct GtkTable" link="GtkTable.html#GtkTable-struct"/>
4186
4210
  <keyword type="function" name="gtk_table_new ()" link="GtkTable.html#gtk-table-new"/>
4187
4211
  <keyword type="function" name="gtk_table_resize ()" link="GtkTable.html#gtk-table-resize"/>
4188
4212
  <keyword type="function" name="gtk_table_attach ()" link="GtkTable.html#gtk-table-attach"/>
@@ -4212,7 +4236,7 @@
4212
4236
  <keyword type="property" name="The &quot;y-options&quot; child property" link="GtkTable.html#GtkTable--c-y-options"/>
4213
4237
  <keyword type="property" name="The &quot;y-padding&quot; child property" link="GtkTable.html#GtkTable--c-y-padding"/>
4214
4238
  <keyword type="" name="GtkExpander as GtkBuildable" link="GtkExpander.html#GtkExpander-BUILDER-UI"/>
4215
- <keyword type="struct" name="GtkExpander" link="GtkExpander.html#GtkExpander-struct"/>
4239
+ <keyword type="struct" name="struct GtkExpander" link="GtkExpander.html#GtkExpander-struct"/>
4216
4240
  <keyword type="function" name="gtk_expander_new ()" link="GtkExpander.html#gtk-expander-new" since="2.4"/>
4217
4241
  <keyword type="function" name="gtk_expander_new_with_mnemonic ()" link="GtkExpander.html#gtk-expander-new-with-mnemonic" since="2.4"/>
4218
4242
  <keyword type="function" name="gtk_expander_set_expanded ()" link="GtkExpander.html#gtk-expander-set-expanded" since="2.4"/>
@@ -4244,7 +4268,7 @@
4244
4268
  <keyword type="function" name="gtk_orientable_set_orientation ()" link="gtk-Orientable.html#gtk-orientable-set-orientation" since="2.16"/>
4245
4269
  <keyword type="property" name="The &quot;orientation&quot; property" link="gtk-Orientable.html#GtkOrientable--orientation"/>
4246
4270
  <keyword type="" name="GtkFrame as GtkBuildable" link="GtkFrame.html#GtkFrame-BUILDER-UI"/>
4247
- <keyword type="struct" name="GtkFrame" link="GtkFrame.html#GtkFrame-struct"/>
4271
+ <keyword type="struct" name="struct GtkFrame" link="GtkFrame.html#GtkFrame-struct"/>
4248
4272
  <keyword type="function" name="gtk_frame_new ()" link="GtkFrame.html#gtk-frame-new"/>
4249
4273
  <keyword type="function" name="gtk_frame_set_label ()" link="GtkFrame.html#gtk-frame-set-label"/>
4250
4274
  <keyword type="function" name="gtk_frame_set_label_widget ()" link="GtkFrame.html#gtk-frame-set-label-widget"/>
@@ -4260,15 +4284,15 @@
4260
4284
  <keyword type="property" name="The &quot;label-yalign&quot; property" link="GtkFrame.html#GtkFrame--label-yalign"/>
4261
4285
  <keyword type="property" name="The &quot;shadow&quot; property" link="GtkFrame.html#GtkFrame--shadow"/>
4262
4286
  <keyword type="property" name="The &quot;shadow-type&quot; property" link="GtkFrame.html#GtkFrame--shadow-type"/>
4263
- <keyword type="struct" name="GtkHSeparator" link="GtkHSeparator.html#GtkHSeparator-struct"/>
4287
+ <keyword type="struct" name="struct GtkHSeparator" link="GtkHSeparator.html#GtkHSeparator-struct"/>
4264
4288
  <keyword type="function" name="gtk_hseparator_new ()" link="GtkHSeparator.html#gtk-hseparator-new"/>
4265
- <keyword type="struct" name="GtkVSeparator" link="GtkVSeparator.html#GtkVSeparator-struct"/>
4289
+ <keyword type="struct" name="struct GtkVSeparator" link="GtkVSeparator.html#GtkVSeparator-struct"/>
4266
4290
  <keyword type="function" name="gtk_vseparator_new ()" link="GtkVSeparator.html#gtk-vseparator-new"/>
4267
- <keyword type="struct" name="GtkHScrollbar" link="GtkHScrollbar.html#GtkHScrollbar-struct"/>
4291
+ <keyword type="struct" name="struct GtkHScrollbar" link="GtkHScrollbar.html#GtkHScrollbar-struct"/>
4268
4292
  <keyword type="function" name="gtk_hscrollbar_new ()" link="GtkHScrollbar.html#gtk-hscrollbar-new"/>
4269
- <keyword type="struct" name="GtkVScrollbar" link="GtkVScrollbar.html#GtkVScrollbar-struct"/>
4293
+ <keyword type="struct" name="struct GtkVScrollbar" link="GtkVScrollbar.html#GtkVScrollbar-struct"/>
4270
4294
  <keyword type="function" name="gtk_vscrollbar_new ()" link="GtkVScrollbar.html#gtk-vscrollbar-new"/>
4271
- <keyword type="struct" name="GtkScrolledWindow" link="GtkScrolledWindow.html#GtkScrolledWindow-struct"/>
4295
+ <keyword type="struct" name="struct GtkScrolledWindow" link="GtkScrolledWindow.html#GtkScrolledWindow-struct"/>
4272
4296
  <keyword type="function" name="gtk_scrolled_window_new ()" link="GtkScrolledWindow.html#gtk-scrolled-window-new"/>
4273
4297
  <keyword type="function" name="gtk_scrolled_window_get_hadjustment ()" link="GtkScrolledWindow.html#gtk-scrolled-window-get-hadjustment"/>
4274
4298
  <keyword type="function" name="gtk_scrolled_window_get_vadjustment ()" link="GtkScrolledWindow.html#gtk-scrolled-window-get-vadjustment"/>
@@ -4295,7 +4319,7 @@
4295
4319
  <keyword type="property" name="The &quot;scrollbars-within-bevel&quot; style property" link="GtkScrolledWindow.html#GtkScrolledWindow--s-scrollbars-within-bevel"/>
4296
4320
  <keyword type="signal" name="The &quot;move-focus-out&quot; signal" link="GtkScrolledWindow.html#GtkScrolledWindow-move-focus-out"/>
4297
4321
  <keyword type="signal" name="The &quot;scroll-child&quot; signal" link="GtkScrolledWindow.html#GtkScrolledWindow-scroll-child"/>
4298
- <keyword type="struct" name="GtkPrintOperation" link="gtk-High-level-Printing-API.html#GtkPrintOperation-struct"/>
4322
+ <keyword type="struct" name="struct GtkPrintOperation" link="gtk-High-level-Printing-API.html#GtkPrintOperation-struct"/>
4299
4323
  <keyword type="enum" name="enum GtkPrintStatus" link="gtk-High-level-Printing-API.html#GtkPrintStatus"/>
4300
4324
  <keyword type="enum" name="enum GtkPrintOperationAction" link="gtk-High-level-Printing-API.html#GtkPrintOperationAction"/>
4301
4325
  <keyword type="enum" name="enum GtkPrintOperationResult" link="gtk-High-level-Printing-API.html#GtkPrintOperationResult"/>
@@ -4461,7 +4485,7 @@
4461
4485
  <keyword type="macro" name="GTK_PRINT_SETTINGS_PRINT_PAGES" link="GtkPrintSettings.html#GTK-PRINT-SETTINGS-PRINT-PAGES:CAPS"/>
4462
4486
  <keyword type="function" name="gtk_print_settings_get_print_pages ()" link="GtkPrintSettings.html#gtk-print-settings-get-print-pages" since="2.10"/>
4463
4487
  <keyword type="function" name="gtk_print_settings_set_print_pages ()" link="GtkPrintSettings.html#gtk-print-settings-set-print-pages" since="2.10"/>
4464
- <keyword type="struct" name="GtkPageRange" link="GtkPrintSettings.html#GtkPageRange"/>
4488
+ <keyword type="struct" name="struct GtkPageRange" link="GtkPrintSettings.html#GtkPageRange"/>
4465
4489
  <keyword type="macro" name="GTK_PRINT_SETTINGS_PAGE_RANGES" link="GtkPrintSettings.html#GTK-PRINT-SETTINGS-PAGE-RANGES:CAPS"/>
4466
4490
  <keyword type="function" name="gtk_print_settings_get_page_ranges ()" link="GtkPrintSettings.html#gtk-print-settings-get-page-ranges" since="2.10"/>
4467
4491
  <keyword type="function" name="gtk_print_settings_set_page_ranges ()" link="GtkPrintSettings.html#gtk-print-settings-set-page-ranges" since="2.10"/>
@@ -4520,37 +4544,37 @@
4520
4544
  <keyword type="function" name="gtk_page_setup_load_key_file ()" link="GtkPageSetup.html#gtk-page-setup-load-key-file" since="2.14"/>
4521
4545
  <keyword type="function" name="gtk_page_setup_to_file ()" link="GtkPageSetup.html#gtk-page-setup-to-file" since="2.12"/>
4522
4546
  <keyword type="function" name="gtk_page_setup_to_key_file ()" link="GtkPageSetup.html#gtk-page-setup-to-key-file" since="2.12"/>
4523
- <keyword type="struct" name="GtkPaperSize" link="gtk-GtkPaperSize.html#GtkPaperSize"/>
4524
- <keyword type="enum" name="enum GtkUnit" link="gtk-GtkPaperSize.html#GtkUnit"/>
4525
- <keyword type="macro" name="GTK_PAPER_NAME_A3" link="gtk-GtkPaperSize.html#GTK-PAPER-NAME-A3:CAPS"/>
4526
- <keyword type="macro" name="GTK_PAPER_NAME_A4" link="gtk-GtkPaperSize.html#GTK-PAPER-NAME-A4:CAPS"/>
4527
- <keyword type="macro" name="GTK_PAPER_NAME_A5" link="gtk-GtkPaperSize.html#GTK-PAPER-NAME-A5:CAPS"/>
4528
- <keyword type="macro" name="GTK_PAPER_NAME_B5" link="gtk-GtkPaperSize.html#GTK-PAPER-NAME-B5:CAPS"/>
4529
- <keyword type="macro" name="GTK_PAPER_NAME_LETTER" link="gtk-GtkPaperSize.html#GTK-PAPER-NAME-LETTER:CAPS"/>
4530
- <keyword type="macro" name="GTK_PAPER_NAME_EXECUTIVE" link="gtk-GtkPaperSize.html#GTK-PAPER-NAME-EXECUTIVE:CAPS"/>
4531
- <keyword type="macro" name="GTK_PAPER_NAME_LEGAL" link="gtk-GtkPaperSize.html#GTK-PAPER-NAME-LEGAL:CAPS"/>
4532
- <keyword type="function" name="gtk_paper_size_new ()" link="gtk-GtkPaperSize.html#gtk-paper-size-new" since="2.10"/>
4533
- <keyword type="function" name="gtk_paper_size_new_from_ppd ()" link="gtk-GtkPaperSize.html#gtk-paper-size-new-from-ppd" since="2.10"/>
4534
- <keyword type="function" name="gtk_paper_size_new_custom ()" link="gtk-GtkPaperSize.html#gtk-paper-size-new-custom" since="2.10"/>
4535
- <keyword type="function" name="gtk_paper_size_copy ()" link="gtk-GtkPaperSize.html#gtk-paper-size-copy" since="2.10"/>
4536
- <keyword type="function" name="gtk_paper_size_free ()" link="gtk-GtkPaperSize.html#gtk-paper-size-free" since="2.10"/>
4537
- <keyword type="function" name="gtk_paper_size_is_equal ()" link="gtk-GtkPaperSize.html#gtk-paper-size-is-equal" since="2.10"/>
4538
- <keyword type="function" name="gtk_paper_size_get_paper_sizes ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-paper-sizes" since="2.12"/>
4539
- <keyword type="function" name="gtk_paper_size_get_name ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-name" since="2.10"/>
4540
- <keyword type="function" name="gtk_paper_size_get_display_name ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-display-name" since="2.10"/>
4541
- <keyword type="function" name="gtk_paper_size_get_ppd_name ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-ppd-name" since="2.10"/>
4542
- <keyword type="function" name="gtk_paper_size_get_width ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-width" since="2.10"/>
4543
- <keyword type="function" name="gtk_paper_size_get_height ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-height" since="2.10"/>
4544
- <keyword type="function" name="gtk_paper_size_is_custom ()" link="gtk-GtkPaperSize.html#gtk-paper-size-is-custom"/>
4545
- <keyword type="function" name="gtk_paper_size_set_size ()" link="gtk-GtkPaperSize.html#gtk-paper-size-set-size" since="2.10"/>
4546
- <keyword type="function" name="gtk_paper_size_get_default_top_margin ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-default-top-margin" since="2.10"/>
4547
- <keyword type="function" name="gtk_paper_size_get_default_bottom_margin ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-default-bottom-margin" since="2.10"/>
4548
- <keyword type="function" name="gtk_paper_size_get_default_left_margin ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-default-left-margin" since="2.10"/>
4549
- <keyword type="function" name="gtk_paper_size_get_default_right_margin ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-default-right-margin" since="2.10"/>
4550
- <keyword type="function" name="gtk_paper_size_get_default ()" link="gtk-GtkPaperSize.html#gtk-paper-size-get-default" since="2.10"/>
4551
- <keyword type="function" name="gtk_paper_size_new_from_key_file ()" link="gtk-GtkPaperSize.html#gtk-paper-size-new-from-key-file" since="2.12"/>
4552
- <keyword type="function" name="gtk_paper_size_to_key_file ()" link="gtk-GtkPaperSize.html#gtk-paper-size-to-key-file" since="2.12"/>
4553
- <keyword type="struct" name="GtkPrinter" link="GtkPrinter.html#GtkPrinter-struct"/>
4547
+ <keyword type="struct" name="GtkPaperSize" link="GtkPaperSize.html#GtkPaperSize-struct"/>
4548
+ <keyword type="enum" name="enum GtkUnit" link="GtkPaperSize.html#GtkUnit"/>
4549
+ <keyword type="macro" name="GTK_PAPER_NAME_A3" link="GtkPaperSize.html#GTK-PAPER-NAME-A3:CAPS"/>
4550
+ <keyword type="macro" name="GTK_PAPER_NAME_A4" link="GtkPaperSize.html#GTK-PAPER-NAME-A4:CAPS"/>
4551
+ <keyword type="macro" name="GTK_PAPER_NAME_A5" link="GtkPaperSize.html#GTK-PAPER-NAME-A5:CAPS"/>
4552
+ <keyword type="macro" name="GTK_PAPER_NAME_B5" link="GtkPaperSize.html#GTK-PAPER-NAME-B5:CAPS"/>
4553
+ <keyword type="macro" name="GTK_PAPER_NAME_LETTER" link="GtkPaperSize.html#GTK-PAPER-NAME-LETTER:CAPS"/>
4554
+ <keyword type="macro" name="GTK_PAPER_NAME_EXECUTIVE" link="GtkPaperSize.html#GTK-PAPER-NAME-EXECUTIVE:CAPS"/>
4555
+ <keyword type="macro" name="GTK_PAPER_NAME_LEGAL" link="GtkPaperSize.html#GTK-PAPER-NAME-LEGAL:CAPS"/>
4556
+ <keyword type="function" name="gtk_paper_size_new ()" link="GtkPaperSize.html#gtk-paper-size-new" since="2.10"/>
4557
+ <keyword type="function" name="gtk_paper_size_new_from_ppd ()" link="GtkPaperSize.html#gtk-paper-size-new-from-ppd" since="2.10"/>
4558
+ <keyword type="function" name="gtk_paper_size_new_custom ()" link="GtkPaperSize.html#gtk-paper-size-new-custom" since="2.10"/>
4559
+ <keyword type="function" name="gtk_paper_size_copy ()" link="GtkPaperSize.html#gtk-paper-size-copy" since="2.10"/>
4560
+ <keyword type="function" name="gtk_paper_size_free ()" link="GtkPaperSize.html#gtk-paper-size-free" since="2.10"/>
4561
+ <keyword type="function" name="gtk_paper_size_is_equal ()" link="GtkPaperSize.html#gtk-paper-size-is-equal" since="2.10"/>
4562
+ <keyword type="function" name="gtk_paper_size_get_paper_sizes ()" link="GtkPaperSize.html#gtk-paper-size-get-paper-sizes" since="2.12"/>
4563
+ <keyword type="function" name="gtk_paper_size_get_name ()" link="GtkPaperSize.html#gtk-paper-size-get-name" since="2.10"/>
4564
+ <keyword type="function" name="gtk_paper_size_get_display_name ()" link="GtkPaperSize.html#gtk-paper-size-get-display-name" since="2.10"/>
4565
+ <keyword type="function" name="gtk_paper_size_get_ppd_name ()" link="GtkPaperSize.html#gtk-paper-size-get-ppd-name" since="2.10"/>
4566
+ <keyword type="function" name="gtk_paper_size_get_width ()" link="GtkPaperSize.html#gtk-paper-size-get-width" since="2.10"/>
4567
+ <keyword type="function" name="gtk_paper_size_get_height ()" link="GtkPaperSize.html#gtk-paper-size-get-height" since="2.10"/>
4568
+ <keyword type="function" name="gtk_paper_size_is_custom ()" link="GtkPaperSize.html#gtk-paper-size-is-custom"/>
4569
+ <keyword type="function" name="gtk_paper_size_set_size ()" link="GtkPaperSize.html#gtk-paper-size-set-size" since="2.10"/>
4570
+ <keyword type="function" name="gtk_paper_size_get_default_top_margin ()" link="GtkPaperSize.html#gtk-paper-size-get-default-top-margin" since="2.10"/>
4571
+ <keyword type="function" name="gtk_paper_size_get_default_bottom_margin ()" link="GtkPaperSize.html#gtk-paper-size-get-default-bottom-margin" since="2.10"/>
4572
+ <keyword type="function" name="gtk_paper_size_get_default_left_margin ()" link="GtkPaperSize.html#gtk-paper-size-get-default-left-margin" since="2.10"/>
4573
+ <keyword type="function" name="gtk_paper_size_get_default_right_margin ()" link="GtkPaperSize.html#gtk-paper-size-get-default-right-margin" since="2.10"/>
4574
+ <keyword type="function" name="gtk_paper_size_get_default ()" link="GtkPaperSize.html#gtk-paper-size-get-default" since="2.10"/>
4575
+ <keyword type="function" name="gtk_paper_size_new_from_key_file ()" link="GtkPaperSize.html#gtk-paper-size-new-from-key-file" since="2.12"/>
4576
+ <keyword type="function" name="gtk_paper_size_to_key_file ()" link="GtkPaperSize.html#gtk-paper-size-to-key-file" since="2.12"/>
4577
+ <keyword type="struct" name="struct GtkPrinter" link="GtkPrinter.html#GtkPrinter-struct"/>
4554
4578
  <keyword type="struct" name="GtkPrintBackend" link="GtkPrinter.html#GtkPrintBackend-struct"/>
4555
4579
  <keyword type="function" name="gtk_printer_new ()" link="GtkPrinter.html#gtk-printer-new" since="2.10"/>
4556
4580
  <keyword type="function" name="gtk_printer_get_backend ()" link="GtkPrinter.html#gtk-printer-get-backend" since="2.10"/>
@@ -4588,7 +4612,7 @@
4588
4612
  <keyword type="property" name="The &quot;paused&quot; property" link="GtkPrinter.html#GtkPrinter--paused"/>
4589
4613
  <keyword type="property" name="The &quot;state-message&quot; property" link="GtkPrinter.html#GtkPrinter--state-message"/>
4590
4614
  <keyword type="signal" name="The &quot;details-acquired&quot; signal" link="GtkPrinter.html#GtkPrinter-details-acquired"/>
4591
- <keyword type="struct" name="GtkPrintJob" link="GtkPrintJob.html#GtkPrintJob-struct"/>
4615
+ <keyword type="struct" name="struct GtkPrintJob" link="GtkPrintJob.html#GtkPrintJob-struct"/>
4592
4616
  <keyword type="function" name="GtkPrintJobCompleteFunc ()" link="GtkPrintJob.html#GtkPrintJobCompleteFunc"/>
4593
4617
  <keyword type="function" name="gtk_print_job_new ()" link="GtkPrintJob.html#gtk-print-job-new" since="2.10"/>
4594
4618
  <keyword type="function" name="gtk_print_job_get_settings ()" link="GtkPrintJob.html#gtk-print-job-get-settings" since="2.10"/>
@@ -4607,7 +4631,7 @@
4607
4631
  <keyword type="property" name="The &quot;track-print-status&quot; property" link="GtkPrintJob.html#GtkPrintJob--track-print-status"/>
4608
4632
  <keyword type="signal" name="The &quot;status-changed&quot; signal" link="GtkPrintJob.html#GtkPrintJob-status-changed"/>
4609
4633
  <keyword type="" name="GtkPrintUnixDialog as GtkBuildable" link="GtkPrintUnixDialog.html#GtkPrintUnixDialog-BUILDER-UI"/>
4610
- <keyword type="struct" name="GtkPrintUnixDialog" link="GtkPrintUnixDialog.html#GtkPrintUnixDialog-struct"/>
4634
+ <keyword type="struct" name="struct GtkPrintUnixDialog" link="GtkPrintUnixDialog.html#GtkPrintUnixDialog-struct"/>
4611
4635
  <keyword type="function" name="gtk_print_unix_dialog_new ()" link="GtkPrintUnixDialog.html#gtk-print-unix-dialog-new" since="2.10"/>
4612
4636
  <keyword type="function" name="gtk_print_unix_dialog_set_page_setup ()" link="GtkPrintUnixDialog.html#gtk-print-unix-dialog-set-page-setup" since="2.10"/>
4613
4637
  <keyword type="function" name="gtk_print_unix_dialog_get_page_setup ()" link="GtkPrintUnixDialog.html#gtk-print-unix-dialog-get-page-setup" since="2.10"/>
@@ -4635,13 +4659,13 @@
4635
4659
  <keyword type="property" name="The &quot;print-settings&quot; property" link="GtkPrintUnixDialog.html#GtkPrintUnixDialog--print-settings"/>
4636
4660
  <keyword type="property" name="The &quot;selected-printer&quot; property" link="GtkPrintUnixDialog.html#GtkPrintUnixDialog--selected-printer"/>
4637
4661
  <keyword type="property" name="The &quot;support-selection&quot; property" link="GtkPrintUnixDialog.html#GtkPrintUnixDialog--support-selection"/>
4638
- <keyword type="struct" name="GtkPageSetupUnixDialog" link="GtkPageSetupUnixDialog.html#GtkPageSetupUnixDialog-struct"/>
4662
+ <keyword type="struct" name="struct GtkPageSetupUnixDialog" link="GtkPageSetupUnixDialog.html#GtkPageSetupUnixDialog-struct"/>
4639
4663
  <keyword type="function" name="gtk_page_setup_unix_dialog_new ()" link="GtkPageSetupUnixDialog.html#gtk-page-setup-unix-dialog-new" since="2.10"/>
4640
4664
  <keyword type="function" name="gtk_page_setup_unix_dialog_set_page_setup ()" link="GtkPageSetupUnixDialog.html#gtk-page-setup-unix-dialog-set-page-setup" since="2.10"/>
4641
4665
  <keyword type="function" name="gtk_page_setup_unix_dialog_get_page_setup ()" link="GtkPageSetupUnixDialog.html#gtk-page-setup-unix-dialog-get-page-setup" since="2.10"/>
4642
4666
  <keyword type="function" name="gtk_page_setup_unix_dialog_set_print_settings ()" link="GtkPageSetupUnixDialog.html#gtk-page-setup-unix-dialog-set-print-settings" since="2.10"/>
4643
4667
  <keyword type="function" name="gtk_page_setup_unix_dialog_get_print_settings ()" link="GtkPageSetupUnixDialog.html#gtk-page-setup-unix-dialog-get-print-settings" since="2.10"/>
4644
- <keyword type="struct" name="GtkAdjustment" link="GtkAdjustment.html#GtkAdjustment-struct"/>
4668
+ <keyword type="struct" name="struct GtkAdjustment" link="GtkAdjustment.html#GtkAdjustment-struct"/>
4645
4669
  <keyword type="function" name="gtk_adjustment_new ()" link="GtkAdjustment.html#gtk-adjustment-new"/>
4646
4670
  <keyword type="function" name="gtk_adjustment_get_value ()" link="GtkAdjustment.html#gtk-adjustment-get-value"/>
4647
4671
  <keyword type="function" name="gtk_adjustment_set_value ()" link="GtkAdjustment.html#gtk-adjustment-set-value"/>
@@ -4667,13 +4691,13 @@
4667
4691
  <keyword type="property" name="The &quot;value&quot; property" link="GtkAdjustment.html#GtkAdjustment--value"/>
4668
4692
  <keyword type="signal" name="The &quot;changed&quot; signal" link="GtkAdjustment.html#GtkAdjustment-changed"/>
4669
4693
  <keyword type="signal" name="The &quot;value-changed&quot; signal" link="GtkAdjustment.html#GtkAdjustment-value-changed"/>
4670
- <keyword type="struct" name="GtkArrow" link="GtkArrow.html#GtkArrow-struct"/>
4694
+ <keyword type="struct" name="struct GtkArrow" link="GtkArrow.html#GtkArrow-struct"/>
4671
4695
  <keyword type="function" name="gtk_arrow_new ()" link="GtkArrow.html#gtk-arrow-new"/>
4672
4696
  <keyword type="function" name="gtk_arrow_set ()" link="GtkArrow.html#gtk-arrow-set"/>
4673
4697
  <keyword type="property" name="The &quot;arrow-type&quot; property" link="GtkArrow.html#GtkArrow--arrow-type"/>
4674
4698
  <keyword type="property" name="The &quot;shadow-type&quot; property" link="GtkArrow.html#GtkArrow--shadow-type"/>
4675
4699
  <keyword type="property" name="The &quot;arrow-scaling&quot; style property" link="GtkArrow.html#GtkArrow--s-arrow-scaling"/>
4676
- <keyword type="struct" name="GtkCalendar" link="GtkCalendar.html#GtkCalendar-struct"/>
4700
+ <keyword type="struct" name="struct GtkCalendar" link="GtkCalendar.html#GtkCalendar-struct"/>
4677
4701
  <keyword type="function" name="GtkCalendarDetailFunc ()" link="GtkCalendar.html#GtkCalendarDetailFunc" since="2.14"/>
4678
4702
  <keyword type="enum" name="enum GtkCalendarDisplayOptions" link="GtkCalendar.html#GtkCalendarDisplayOptions"/>
4679
4703
  <keyword type="function" name="gtk_calendar_new ()" link="GtkCalendar.html#gtk-calendar-new"/>
@@ -4713,10 +4737,10 @@
4713
4737
  <keyword type="signal" name="The &quot;next-year&quot; signal" link="GtkCalendar.html#GtkCalendar-next-year"/>
4714
4738
  <keyword type="signal" name="The &quot;prev-month&quot; signal" link="GtkCalendar.html#GtkCalendar-prev-month"/>
4715
4739
  <keyword type="signal" name="The &quot;prev-year&quot; signal" link="GtkCalendar.html#GtkCalendar-prev-year"/>
4716
- <keyword type="struct" name="GtkDrawingArea" link="GtkDrawingArea.html#GtkDrawingArea-struct"/>
4740
+ <keyword type="struct" name="struct GtkDrawingArea" link="GtkDrawingArea.html#GtkDrawingArea-struct"/>
4717
4741
  <keyword type="function" name="gtk_drawing_area_new ()" link="GtkDrawingArea.html#gtk-drawing-area-new"/>
4718
4742
  <keyword type="function" name="gtk_drawing_area_size ()" link="GtkDrawingArea.html#gtk-drawing-area-size" deprecated="Use gtk_widget_set_size_request() instead."/>
4719
- <keyword type="struct" name="GtkEventBox" link="GtkEventBox.html#GtkEventBox-struct"/>
4743
+ <keyword type="struct" name="struct GtkEventBox" link="GtkEventBox.html#GtkEventBox-struct"/>
4720
4744
  <keyword type="function" name="gtk_event_box_new ()" link="GtkEventBox.html#gtk-event-box-new"/>
4721
4745
  <keyword type="function" name="gtk_event_box_set_above_child ()" link="GtkEventBox.html#gtk-event-box-set-above-child" since="2.4"/>
4722
4746
  <keyword type="function" name="gtk_event_box_get_above_child ()" link="GtkEventBox.html#gtk-event-box-get-above-child" since="2.4"/>
@@ -4724,7 +4748,7 @@
4724
4748
  <keyword type="function" name="gtk_event_box_get_visible_window ()" link="GtkEventBox.html#gtk-event-box-get-visible-window" since="2.4"/>
4725
4749
  <keyword type="property" name="The &quot;above-child&quot; property" link="GtkEventBox.html#GtkEventBox--above-child"/>
4726
4750
  <keyword type="property" name="The &quot;visible-window&quot; property" link="GtkEventBox.html#GtkEventBox--visible-window"/>
4727
- <keyword type="struct" name="GtkHandleBox" link="GtkHandleBox.html#GtkHandleBox-struct"/>
4751
+ <keyword type="struct" name="struct GtkHandleBox" link="GtkHandleBox.html#GtkHandleBox-struct"/>
4728
4752
  <keyword type="function" name="gtk_handle_box_new ()" link="GtkHandleBox.html#gtk-handle-box-new"/>
4729
4753
  <keyword type="function" name="gtk_handle_box_set_shadow_type ()" link="GtkHandleBox.html#gtk-handle-box-set-shadow-type"/>
4730
4754
  <keyword type="function" name="gtk_handle_box_set_handle_position ()" link="GtkHandleBox.html#gtk-handle-box-set-handle-position"/>
@@ -4741,17 +4765,17 @@
4741
4765
  <keyword type="property" name="The &quot;snap-edge-set&quot; property" link="GtkHandleBox.html#GtkHandleBox--snap-edge-set"/>
4742
4766
  <keyword type="signal" name="The &quot;child-attached&quot; signal" link="GtkHandleBox.html#GtkHandleBox-child-attached"/>
4743
4767
  <keyword type="signal" name="The &quot;child-detached&quot; signal" link="GtkHandleBox.html#GtkHandleBox-child-detached"/>
4744
- <keyword type="struct" name="GtkIMContextSimple" link="GtkIMContextSimple.html#GtkIMContextSimple-struct"/>
4768
+ <keyword type="struct" name="struct GtkIMContextSimple" link="GtkIMContextSimple.html#GtkIMContextSimple-struct"/>
4745
4769
  <keyword type="function" name="gtk_im_context_simple_new ()" link="GtkIMContextSimple.html#gtk-im-context-simple-new"/>
4746
4770
  <keyword type="function" name="gtk_im_context_simple_add_table ()" link="GtkIMContextSimple.html#gtk-im-context-simple-add-table"/>
4747
4771
  <keyword type="macro" name="GTK_MAX_COMPOSE_LEN" link="GtkIMContextSimple.html#GTK-MAX-COMPOSE-LEN:CAPS"/>
4748
- <keyword type="struct" name="GtkIMMulticontext" link="GtkIMMulticontext.html#GtkIMMulticontext-struct"/>
4772
+ <keyword type="struct" name="struct GtkIMMulticontext" link="GtkIMMulticontext.html#GtkIMMulticontext-struct"/>
4749
4773
  <keyword type="function" name="gtk_im_multicontext_new ()" link="GtkIMMulticontext.html#gtk-im-multicontext-new"/>
4750
4774
  <keyword type="function" name="gtk_im_multicontext_append_menuitems ()" link="GtkIMMulticontext.html#gtk-im-multicontext-append-menuitems"/>
4751
4775
  <keyword type="function" name="gtk_im_multicontext_get_context_id ()" link="GtkIMMulticontext.html#gtk-im-multicontext-get-context-id" since="2.16"/>
4752
4776
  <keyword type="function" name="gtk_im_multicontext_set_context_id ()" link="GtkIMMulticontext.html#gtk-im-multicontext-set-context-id" since="2.16"/>
4753
4777
  <keyword type="" name="GtkSizeGroup as GtkBuildable" link="GtkSizeGroup.html#GtkSizeGroup-BUILDER-UI"/>
4754
- <keyword type="struct" name="GtkSizeGroup" link="GtkSizeGroup.html#GtkSizeGroup-struct"/>
4778
+ <keyword type="struct" name="struct GtkSizeGroup" link="GtkSizeGroup.html#GtkSizeGroup-struct"/>
4755
4779
  <keyword type="enum" name="enum GtkSizeGroupMode" link="GtkSizeGroup.html#GtkSizeGroupMode"/>
4756
4780
  <keyword type="function" name="gtk_size_group_new ()" link="GtkSizeGroup.html#gtk-size-group-new"/>
4757
4781
  <keyword type="function" name="gtk_size_group_set_mode ()" link="GtkSizeGroup.html#gtk-size-group-set-mode"/>
@@ -4773,7 +4797,7 @@
4773
4797
  <keyword type="function" name="gtk_tooltip_set_custom ()" link="GtkTooltip.html#gtk-tooltip-set-custom" since="2.12"/>
4774
4798
  <keyword type="function" name="gtk_tooltip_trigger_tooltip_query ()" link="GtkTooltip.html#gtk-tooltip-trigger-tooltip-query" since="2.12"/>
4775
4799
  <keyword type="function" name="gtk_tooltip_set_tip_area ()" link="GtkTooltip.html#gtk-tooltip-set-tip-area" since="2.12"/>
4776
- <keyword type="struct" name="GtkViewport" link="GtkViewport.html#GtkViewport-struct"/>
4800
+ <keyword type="struct" name="struct GtkViewport" link="GtkViewport.html#GtkViewport-struct"/>
4777
4801
  <keyword type="function" name="gtk_viewport_new ()" link="GtkViewport.html#gtk-viewport-new"/>
4778
4802
  <keyword type="function" name="gtk_viewport_get_hadjustment ()" link="GtkViewport.html#gtk-viewport-get-hadjustment"/>
4779
4803
  <keyword type="function" name="gtk_viewport_get_vadjustment ()" link="GtkViewport.html#gtk-viewport-get-vadjustment"/>
@@ -4787,14 +4811,14 @@
4787
4811
  <keyword type="property" name="The &quot;shadow-type&quot; property" link="GtkViewport.html#GtkViewport--shadow-type"/>
4788
4812
  <keyword type="property" name="The &quot;vadjustment&quot; property" link="GtkViewport.html#GtkViewport--vadjustment"/>
4789
4813
  <keyword type="signal" name="The &quot;set-scroll-adjustments&quot; signal" link="GtkViewport.html#GtkViewport-set-scroll-adjustments"/>
4790
- <keyword type="struct" name="GtkAccessible" link="GtkAccessible.html#GtkAccessible-struct"/>
4814
+ <keyword type="struct" name="struct GtkAccessible" link="GtkAccessible.html#GtkAccessible-struct"/>
4791
4815
  <keyword type="function" name="gtk_accessible_connect_widget_destroyed ()" link="GtkAccessible.html#gtk-accessible-connect-widget-destroyed"/>
4792
4816
  <keyword type="function" name="gtk_accessible_get_widget ()" link="GtkAccessible.html#gtk-accessible-get-widget" since="2.22"/>
4793
4817
  <keyword type="function" name="gtk_accessible_set_widget ()" link="GtkAccessible.html#gtk-accessible-set-widget" since="2.22"/>
4794
- <keyword type="struct" name="GtkBin" link="GtkBin.html#GtkBin-struct"/>
4818
+ <keyword type="struct" name="struct GtkBin" link="GtkBin.html#GtkBin-struct"/>
4795
4819
  <keyword type="function" name="gtk_bin_get_child ()" link="GtkBin.html#gtk-bin-get-child"/>
4796
- <keyword type="struct" name="GtkBox" link="GtkBox.html#GtkBox-struct"/>
4797
- <keyword type="struct" name="GtkBoxChild" link="GtkBox.html#GtkBoxChild" deprecated="2.22: Use gtk_container_get_children() instead."/>
4820
+ <keyword type="struct" name="struct GtkBox" link="GtkBox.html#GtkBox-struct"/>
4821
+ <keyword type="struct" name="struct GtkBoxChild" link="GtkBox.html#GtkBoxChild" deprecated="2.22: Use gtk_container_get_children() instead."/>
4798
4822
  <keyword type="function" name="gtk_box_pack_start ()" link="GtkBox.html#gtk-box-pack-start"/>
4799
4823
  <keyword type="function" name="gtk_box_pack_end ()" link="GtkBox.html#gtk-box-pack-end"/>
4800
4824
  <keyword type="function" name="gtk_box_pack_start_defaults ()" link="GtkBox.html#gtk-box-pack-start-defaults" deprecated="2.14: Use gtk_box_pack_start()"/>
@@ -4813,7 +4837,7 @@
4813
4837
  <keyword type="property" name="The &quot;pack-type&quot; child property" link="GtkBox.html#GtkBox--c-pack-type"/>
4814
4838
  <keyword type="property" name="The &quot;padding&quot; child property" link="GtkBox.html#GtkBox--c-padding"/>
4815
4839
  <keyword type="property" name="The &quot;position&quot; child property" link="GtkBox.html#GtkBox--c-position"/>
4816
- <keyword type="struct" name="GtkButtonBox" link="GtkButtonBox.html#GtkButtonBox-struct"/>
4840
+ <keyword type="struct" name="struct GtkButtonBox" link="GtkButtonBox.html#GtkButtonBox-struct"/>
4817
4841
  <keyword type="macro" name="GTK_BUTTONBOX_DEFAULT" link="GtkButtonBox.html#GTK-BUTTONBOX-DEFAULT:CAPS"/>
4818
4842
  <keyword type="macro" name="gtk_button_box_get_spacing()" link="GtkButtonBox.html#gtk-button-box-get-spacing" deprecated="Use gtk_box_get_spacing() instead."/>
4819
4843
  <keyword type="function" name="gtk_button_box_get_layout ()" link="GtkButtonBox.html#gtk-button-box-get-layout"/>
@@ -4835,7 +4859,7 @@
4835
4859
  <keyword type="" name="Size Allocation" link="GtkContainer.html#size-allocation"/>
4836
4860
  <keyword type="" name="Child properties" link="GtkContainer.html#child-properties"/>
4837
4861
  <keyword type="" name="GtkContainer as GtkBuildable" link="GtkContainer.html#GtkContainer-BUILDER-UI"/>
4838
- <keyword type="struct" name="GtkContainer" link="GtkContainer.html#GtkContainer-struct"/>
4862
+ <keyword type="struct" name="struct GtkContainer" link="GtkContainer.html#GtkContainer-struct"/>
4839
4863
  <keyword type="macro" name="GTK_IS_RESIZE_CONTAINER()" link="GtkContainer.html#GTK-IS-RESIZE-CONTAINER:CAPS"/>
4840
4864
  <keyword type="macro" name="GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID()" link="GtkContainer.html#GTK-CONTAINER-WARN-INVALID-CHILD-PROPERTY-ID:CAPS"/>
4841
4865
  <keyword type="macro" name="gtk_container_border_width" link="GtkContainer.html#gtk-container-border-width" deprecated="Use gtk_container_set_border_width() instead."/>
@@ -4881,14 +4905,14 @@
4881
4905
  <keyword type="signal" name="The &quot;check-resize&quot; signal" link="GtkContainer.html#GtkContainer-check-resize"/>
4882
4906
  <keyword type="signal" name="The &quot;remove&quot; signal" link="GtkContainer.html#GtkContainer-remove"/>
4883
4907
  <keyword type="signal" name="The &quot;set-focus-child&quot; signal" link="GtkContainer.html#GtkContainer-set-focus-child"/>
4884
- <keyword type="struct" name="GtkItem" link="GtkItem.html#GtkItem-struct"/>
4908
+ <keyword type="struct" name="struct GtkItem" link="GtkItem.html#GtkItem-struct"/>
4885
4909
  <keyword type="function" name="gtk_item_select ()" link="GtkItem.html#gtk-item-select" deprecated="2.22: Use gtk_menu_item_select() instead"/>
4886
4910
  <keyword type="function" name="gtk_item_deselect ()" link="GtkItem.html#gtk-item-deselect" deprecated="2.22: Use gtk_menu_item_deselect() instead"/>
4887
4911
  <keyword type="function" name="gtk_item_toggle ()" link="GtkItem.html#gtk-item-toggle" deprecated="2.22: This function will be removed in GTK+ 3"/>
4888
4912
  <keyword type="signal" name="The &quot;deselect&quot; signal" link="GtkItem.html#GtkItem-deselect"/>
4889
4913
  <keyword type="signal" name="The &quot;select&quot; signal" link="GtkItem.html#GtkItem-select"/>
4890
4914
  <keyword type="signal" name="The &quot;toggle&quot; signal" link="GtkItem.html#GtkItem-toggle"/>
4891
- <keyword type="struct" name="GtkMenuShell" link="GtkMenuShell.html#GtkMenuShell-struct"/>
4915
+ <keyword type="struct" name="struct GtkMenuShell" link="GtkMenuShell.html#GtkMenuShell-struct"/>
4892
4916
  <keyword type="function" name="gtk_menu_shell_append ()" link="GtkMenuShell.html#gtk-menu-shell-append"/>
4893
4917
  <keyword type="function" name="gtk_menu_shell_prepend ()" link="GtkMenuShell.html#gtk-menu-shell-prepend"/>
4894
4918
  <keyword type="function" name="gtk_menu_shell_insert ()" link="GtkMenuShell.html#gtk-menu-shell-insert"/>
@@ -4909,7 +4933,7 @@
4909
4933
  <keyword type="signal" name="The &quot;move-current&quot; signal" link="GtkMenuShell.html#GtkMenuShell-move-current"/>
4910
4934
  <keyword type="signal" name="The &quot;move-selected&quot; signal" link="GtkMenuShell.html#GtkMenuShell-move-selected"/>
4911
4935
  <keyword type="signal" name="The &quot;selection-done&quot; signal" link="GtkMenuShell.html#GtkMenuShell-selection-done"/>
4912
- <keyword type="struct" name="GtkMisc" link="GtkMisc.html#GtkMisc-struct"/>
4936
+ <keyword type="struct" name="struct GtkMisc" link="GtkMisc.html#GtkMisc-struct"/>
4913
4937
  <keyword type="function" name="gtk_misc_set_alignment ()" link="GtkMisc.html#gtk-misc-set-alignment"/>
4914
4938
  <keyword type="function" name="gtk_misc_set_padding ()" link="GtkMisc.html#gtk-misc-set-padding"/>
4915
4939
  <keyword type="function" name="gtk_misc_get_alignment ()" link="GtkMisc.html#gtk-misc-get-alignment"/>
@@ -4918,7 +4942,7 @@
4918
4942
  <keyword type="property" name="The &quot;xpad&quot; property" link="GtkMisc.html#GtkMisc--xpad"/>
4919
4943
  <keyword type="property" name="The &quot;yalign&quot; property" link="GtkMisc.html#GtkMisc--yalign"/>
4920
4944
  <keyword type="property" name="The &quot;ypad&quot; property" link="GtkMisc.html#GtkMisc--ypad"/>
4921
- <keyword type="" name="Description" link="GtkObject.html#id1237917"/>
4945
+ <keyword type="" name="Description" link="GtkObject.html#id1387115"/>
4922
4946
  <keyword type="struct" name="GtkObject" link="GtkObject.html#GtkObject-struct"/>
4923
4947
  <keyword type="macro" name="GTK_OBJECT_TYPE" link="GtkObject.html#GTK-OBJECT-TYPE:CAPS" deprecated="2.20: Use G_OBJECT_TYPE() instead."/>
4924
4948
  <keyword type="macro" name="GTK_OBJECT_TYPE_NAME" link="GtkObject.html#GTK-OBJECT-TYPE-NAME:CAPS" deprecated="2.20: Use G_OBJECT_TYPE_NAME() instead."/>
@@ -4932,7 +4956,7 @@
4932
4956
  <keyword type="function" name="gtk_object_unref ()" link="GtkObject.html#gtk-object-unref" deprecated="Use g_object_unref() instead."/>
4933
4957
  <keyword type="function" name="gtk_object_weakref ()" link="GtkObject.html#gtk-object-weakref" deprecated="Use g_object_weak_ref() instead."/>
4934
4958
  <keyword type="function" name="gtk_object_weakunref ()" link="GtkObject.html#gtk-object-weakunref" deprecated="Use g_object_weak_unref() instead."/>
4935
- <keyword type="function" name="gtk_object_destroy ()" link="GtkObject.html#gtk-object-destroy"/>
4959
+ <keyword type="function" name="gtk_object_destroy ()" link="GtkObject.html#gtk-object-destroy" deprecated="2.24: Use gtk_widget_destroy() instead (if @object is a widget)"/>
4936
4960
  <keyword type="function" name="gtk_object_get ()" link="GtkObject.html#gtk-object-get" deprecated="Use g_object_get() instead."/>
4937
4961
  <keyword type="function" name="gtk_object_set ()" link="GtkObject.html#gtk-object-set" deprecated="Use g_object_set() instead."/>
4938
4962
  <keyword type="function" name="gtk_object_set_data ()" link="GtkObject.html#gtk-object-set-data" deprecated="Use g_object_set_data() instead."/>
@@ -4952,7 +4976,7 @@
4952
4976
  <keyword type="macro" name="gtk_object_data_force_id" link="GtkObject.html#gtk-object-data-force-id" deprecated=""/>
4953
4977
  <keyword type="property" name="The &quot;user-data&quot; property" link="GtkObject.html#GtkObject--user-data"/>
4954
4978
  <keyword type="signal" name="The &quot;destroy&quot; signal" link="GtkObject.html#GtkObject-destroy"/>
4955
- <keyword type="struct" name="GtkPaned" link="GtkPaned.html#GtkPaned-struct"/>
4979
+ <keyword type="struct" name="struct GtkPaned" link="GtkPaned.html#GtkPaned-struct"/>
4956
4980
  <keyword type="function" name="gtk_paned_add1 ()" link="GtkPaned.html#gtk-paned-add1"/>
4957
4981
  <keyword type="function" name="gtk_paned_add2 ()" link="GtkPaned.html#gtk-paned-add2"/>
4958
4982
  <keyword type="macro" name="gtk_paned_gutter_size()" link="GtkPaned.html#gtk-paned-gutter-size" deprecated=""/>
@@ -4977,7 +5001,7 @@
4977
5001
  <keyword type="signal" name="The &quot;cycle-handle-focus&quot; signal" link="GtkPaned.html#GtkPaned-cycle-handle-focus"/>
4978
5002
  <keyword type="signal" name="The &quot;move-handle&quot; signal" link="GtkPaned.html#GtkPaned-move-handle"/>
4979
5003
  <keyword type="signal" name="The &quot;toggle-handle-focus&quot; signal" link="GtkPaned.html#GtkPaned-toggle-handle-focus"/>
4980
- <keyword type="struct" name="GtkRange" link="GtkRange.html#GtkRange-struct"/>
5004
+ <keyword type="struct" name="struct GtkRange" link="GtkRange.html#GtkRange-struct"/>
4981
5005
  <keyword type="function" name="gtk_range_get_fill_level ()" link="GtkRange.html#gtk-range-get-fill-level" since="2.12"/>
4982
5006
  <keyword type="function" name="gtk_range_get_restrict_to_fill_level ()" link="GtkRange.html#gtk-range-get-restrict-to-fill-level" since="2.12"/>
4983
5007
  <keyword type="function" name="gtk_range_get_show_fill_level ()" link="GtkRange.html#gtk-range-get-show-fill-level" since="2.12"/>
@@ -4985,15 +5009,17 @@
4985
5009
  <keyword type="function" name="gtk_range_set_restrict_to_fill_level ()" link="GtkRange.html#gtk-range-set-restrict-to-fill-level" since="2.12"/>
4986
5010
  <keyword type="function" name="gtk_range_set_show_fill_level ()" link="GtkRange.html#gtk-range-set-show-fill-level" since="2.12"/>
4987
5011
  <keyword type="function" name="gtk_range_get_adjustment ()" link="GtkRange.html#gtk-range-get-adjustment"/>
4988
- <keyword type="function" name="gtk_range_set_update_policy ()" link="GtkRange.html#gtk-range-set-update-policy"/>
5012
+ <keyword type="function" name="gtk_range_set_update_policy ()" link="GtkRange.html#gtk-range-set-update-policy" deprecated=""/>
4989
5013
  <keyword type="function" name="gtk_range_set_adjustment ()" link="GtkRange.html#gtk-range-set-adjustment"/>
4990
5014
  <keyword type="function" name="gtk_range_get_inverted ()" link="GtkRange.html#gtk-range-get-inverted"/>
4991
5015
  <keyword type="function" name="gtk_range_set_inverted ()" link="GtkRange.html#gtk-range-set-inverted"/>
4992
- <keyword type="function" name="gtk_range_get_update_policy ()" link="GtkRange.html#gtk-range-get-update-policy"/>
4993
- <keyword type="function" name="gtk_range_get_value ()" link="GtkRange.html#gtk-range-get-value"/>
5016
+ <keyword type="function" name="gtk_range_get_update_policy ()" link="GtkRange.html#gtk-range-get-update-policy" deprecated=""/>
4994
5017
  <keyword type="function" name="gtk_range_set_increments ()" link="GtkRange.html#gtk-range-set-increments"/>
4995
5018
  <keyword type="function" name="gtk_range_set_range ()" link="GtkRange.html#gtk-range-set-range"/>
5019
+ <keyword type="function" name="gtk_range_get_value ()" link="GtkRange.html#gtk-range-get-value"/>
4996
5020
  <keyword type="function" name="gtk_range_set_value ()" link="GtkRange.html#gtk-range-set-value"/>
5021
+ <keyword type="function" name="gtk_range_get_round_digits ()" link="GtkRange.html#gtk-range-get-round-digits" since="2.24"/>
5022
+ <keyword type="function" name="gtk_range_set_round_digits ()" link="GtkRange.html#gtk-range-set-round-digits" since="2.24"/>
4997
5023
  <keyword type="enum" name="enum GtkSensitivityType" link="GtkRange.html#GtkSensitivityType"/>
4998
5024
  <keyword type="function" name="gtk_range_set_lower_stepper_sensitivity ()" link="GtkRange.html#gtk-range-set-lower-stepper-sensitivity" since="2.10"/>
4999
5025
  <keyword type="function" name="gtk_range_get_lower_stepper_sensitivity ()" link="GtkRange.html#gtk-range-get-lower-stepper-sensitivity" since="2.10"/>
@@ -5012,6 +5038,7 @@
5012
5038
  <keyword type="property" name="The &quot;inverted&quot; property" link="GtkRange.html#GtkRange--inverted"/>
5013
5039
  <keyword type="property" name="The &quot;lower-stepper-sensitivity&quot; property" link="GtkRange.html#GtkRange--lower-stepper-sensitivity"/>
5014
5040
  <keyword type="property" name="The &quot;restrict-to-fill-level&quot; property" link="GtkRange.html#GtkRange--restrict-to-fill-level"/>
5041
+ <keyword type="property" name="The &quot;round-digits&quot; property" link="GtkRange.html#GtkRange--round-digits"/>
5015
5042
  <keyword type="property" name="The &quot;show-fill-level&quot; property" link="GtkRange.html#GtkRange--show-fill-level"/>
5016
5043
  <keyword type="property" name="The &quot;update-policy&quot; property" link="GtkRange.html#GtkRange--update-policy"/>
5017
5044
  <keyword type="property" name="The &quot;upper-stepper-sensitivity&quot; property" link="GtkRange.html#GtkRange--upper-stepper-sensitivity"/>
@@ -5031,7 +5058,7 @@
5031
5058
  <keyword type="signal" name="The &quot;move-slider&quot; signal" link="GtkRange.html#GtkRange-move-slider"/>
5032
5059
  <keyword type="signal" name="The &quot;value-changed&quot; signal" link="GtkRange.html#GtkRange-value-changed"/>
5033
5060
  <keyword type="" name="GtkScale as GtkBuildable" link="GtkScale.html#GtkScale-BUILDER-UI"/>
5034
- <keyword type="struct" name="GtkScale" link="GtkScale.html#GtkScale-struct"/>
5061
+ <keyword type="struct" name="struct GtkScale" link="GtkScale.html#GtkScale-struct"/>
5035
5062
  <keyword type="function" name="gtk_scale_set_digits ()" link="GtkScale.html#gtk-scale-set-digits"/>
5036
5063
  <keyword type="function" name="gtk_scale_set_draw_value ()" link="GtkScale.html#gtk-scale-set-draw-value"/>
5037
5064
  <keyword type="function" name="gtk_scale_set_value_pos ()" link="GtkScale.html#gtk-scale-set-value-pos"/>
@@ -5048,18 +5075,18 @@
5048
5075
  <keyword type="property" name="The &quot;slider-length&quot; style property" link="GtkScale.html#GtkScale--s-slider-length"/>
5049
5076
  <keyword type="property" name="The &quot;value-spacing&quot; style property" link="GtkScale.html#GtkScale--s-value-spacing"/>
5050
5077
  <keyword type="signal" name="The &quot;format-value&quot; signal" link="GtkScale.html#GtkScale-format-value"/>
5051
- <keyword type="struct" name="GtkScrollbar" link="GtkScrollbar.html#GtkScrollbar-struct"/>
5078
+ <keyword type="struct" name="struct GtkScrollbar" link="GtkScrollbar.html#GtkScrollbar-struct"/>
5052
5079
  <keyword type="property" name="The &quot;fixed-slider-length&quot; style property" link="GtkScrollbar.html#GtkScrollbar--s-fixed-slider-length"/>
5053
5080
  <keyword type="property" name="The &quot;has-backward-stepper&quot; style property" link="GtkScrollbar.html#GtkScrollbar--s-has-backward-stepper"/>
5054
5081
  <keyword type="property" name="The &quot;has-forward-stepper&quot; style property" link="GtkScrollbar.html#GtkScrollbar--s-has-forward-stepper"/>
5055
5082
  <keyword type="property" name="The &quot;has-secondary-backward-stepper&quot; style property" link="GtkScrollbar.html#GtkScrollbar--s-has-secondary-backward-stepper"/>
5056
5083
  <keyword type="property" name="The &quot;has-secondary-forward-stepper&quot; style property" link="GtkScrollbar.html#GtkScrollbar--s-has-secondary-forward-stepper"/>
5057
5084
  <keyword type="property" name="The &quot;min-slider-length&quot; style property" link="GtkScrollbar.html#GtkScrollbar--s-min-slider-length"/>
5058
- <keyword type="struct" name="GtkSeparator" link="GtkSeparator.html#GtkSeparator-struct"/>
5085
+ <keyword type="struct" name="struct GtkSeparator" link="GtkSeparator.html#GtkSeparator-struct"/>
5059
5086
  <keyword type="" name="" link="GtkWidget.html#style-properties"/>
5060
5087
  <keyword type="" name="GtkWidget as GtkBuildable" link="GtkWidget.html#GtkWidget-BUILDER-UI"/>
5061
5088
  <keyword type="struct" name="GtkWidget" link="GtkWidget.html#GtkWidget-struct"/>
5062
- <keyword type="struct" name="GtkWidgetClass" link="GtkWidget.html#GtkWidgetClass"/>
5089
+ <keyword type="struct" name="struct GtkWidgetClass" link="GtkWidget.html#GtkWidgetClass"/>
5063
5090
  <keyword type="enum" name="enum GtkWidgetFlags" link="GtkWidget.html#GtkWidgetFlags"/>
5064
5091
  <keyword type="macro" name="GTK_WIDGET_TYPE()" link="GtkWidget.html#GTK-WIDGET-TYPE:CAPS" deprecated="2.20: Use G_OBJECT_TYPE() instead."/>
5065
5092
  <keyword type="macro" name="GTK_WIDGET_STATE()" link="GtkWidget.html#GTK-WIDGET-STATE:CAPS" deprecated="2.20: Use gtk_widget_get_state() instead."/>
@@ -5087,11 +5114,11 @@
5087
5114
  <keyword type="macro" name="GTK_WIDGET_SET_FLAGS()" link="GtkWidget.html#GTK-WIDGET-SET-FLAGS:CAPS" deprecated=""/>
5088
5115
  <keyword type="macro" name="GTK_WIDGET_UNSET_FLAGS()" link="GtkWidget.html#GTK-WIDGET-UNSET-FLAGS:CAPS" deprecated="2.22: Use the proper function instead. See GTK_WIDGET_SET_FLAGS()."/>
5089
5116
  <keyword type="function" name="GtkCallback ()" link="GtkWidget.html#GtkCallback"/>
5090
- <keyword type="struct" name="GtkRequisition" link="GtkWidget.html#GtkRequisition"/>
5117
+ <keyword type="struct" name="struct GtkRequisition" link="GtkWidget.html#GtkRequisition-struct"/>
5091
5118
  <keyword type="struct" name="struct GtkAllocation" link="GtkWidget.html#GtkAllocation"/>
5092
- <keyword type="struct" name="GtkSelectionData" link="GtkWidget.html#GtkSelectionData"/>
5093
- <keyword type="struct" name="GtkWidgetAuxInfo" link="GtkWidget.html#GtkWidgetAuxInfo"/>
5094
- <keyword type="struct" name="GtkWidgetShapeInfo" link="GtkWidget.html#GtkWidgetShapeInfo"/>
5119
+ <keyword type="struct" name="GtkSelectionData" link="GtkWidget.html#GtkSelectionData-struct"/>
5120
+ <keyword type="struct" name="struct GtkWidgetAuxInfo" link="GtkWidget.html#GtkWidgetAuxInfo"/>
5121
+ <keyword type="struct" name="struct GtkWidgetShapeInfo" link="GtkWidget.html#GtkWidgetShapeInfo"/>
5095
5122
  <keyword type="enum" name="enum GtkWidgetHelpType" link="GtkWidget.html#GtkWidgetHelpType"/>
5096
5123
  <keyword type="function" name="gtk_widget_new ()" link="GtkWidget.html#gtk-widget-new"/>
5097
5124
  <keyword type="function" name="gtk_widget_ref ()" link="GtkWidget.html#gtk-widget-ref" deprecated="2.12: Use g_object_ref() instead."/>
@@ -5104,7 +5131,7 @@
5104
5131
  <keyword type="function" name="gtk_widget_show_now ()" link="GtkWidget.html#gtk-widget-show-now"/>
5105
5132
  <keyword type="function" name="gtk_widget_hide ()" link="GtkWidget.html#gtk-widget-hide"/>
5106
5133
  <keyword type="function" name="gtk_widget_show_all ()" link="GtkWidget.html#gtk-widget-show-all"/>
5107
- <keyword type="function" name="gtk_widget_hide_all ()" link="GtkWidget.html#gtk-widget-hide-all"/>
5134
+ <keyword type="function" name="gtk_widget_hide_all ()" link="GtkWidget.html#gtk-widget-hide-all" deprecated="2.24: Use gtk_widget_hide() instead."/>
5108
5135
  <keyword type="function" name="gtk_widget_map ()" link="GtkWidget.html#gtk-widget-map"/>
5109
5136
  <keyword type="function" name="gtk_widget_unmap ()" link="GtkWidget.html#gtk-widget-unmap"/>
5110
5137
  <keyword type="function" name="gtk_widget_realize ()" link="GtkWidget.html#gtk-widget-realize"/>
@@ -5190,7 +5217,7 @@
5190
5217
  <keyword type="function" name="gtk_widget_queue_clear ()" link="GtkWidget.html#gtk-widget-queue-clear" deprecated="2.2: Use gtk_widget_queue_draw() instead."/>
5191
5218
  <keyword type="function" name="gtk_widget_queue_clear_area ()" link="GtkWidget.html#gtk-widget-queue-clear-area" deprecated="2.2: Use gtk_widget_queue_draw_area() instead."/>
5192
5219
  <keyword type="function" name="gtk_widget_queue_draw_area ()" link="GtkWidget.html#gtk-widget-queue-draw-area"/>
5193
- <keyword type="function" name="gtk_widget_reset_shapes ()" link="GtkWidget.html#gtk-widget-reset-shapes"/>
5220
+ <keyword type="function" name="gtk_widget_reset_shapes ()" link="GtkWidget.html#gtk-widget-reset-shapes" deprecated="This function is being removed in GTK+ 3.0. Don't use it."/>
5194
5221
  <keyword type="function" name="gtk_widget_set_app_paintable ()" link="GtkWidget.html#gtk-widget-set-app-paintable"/>
5195
5222
  <keyword type="function" name="gtk_widget_set_double_buffered ()" link="GtkWidget.html#gtk-widget-set-double-buffered"/>
5196
5223
  <keyword type="function" name="gtk_widget_set_redraw_on_allocate ()" link="GtkWidget.html#gtk-widget-set-redraw-on-allocate"/>
@@ -5385,9 +5412,9 @@
5385
5412
  <keyword type="signal" name="The &quot;unrealize&quot; signal" link="GtkWidget.html#GtkWidget-unrealize"/>
5386
5413
  <keyword type="signal" name="The &quot;visibility-notify-event&quot; signal" link="GtkWidget.html#GtkWidget-visibility-notify-event"/>
5387
5414
  <keyword type="signal" name="The &quot;window-state-event&quot; signal" link="GtkWidget.html#GtkWidget-window-state-event"/>
5388
- <keyword type="struct" name="GtkIMContext" link="GtkIMContext.html#GtkIMContext-struct"/>
5389
- <keyword type="struct" name="GtkIMContextClass" link="GtkIMContext.html#GtkIMContextClass"/>
5390
- <keyword type="struct" name="GtkIMContextInfo" link="GtkIMContext.html#GtkIMContextInfo"/>
5415
+ <keyword type="struct" name="struct GtkIMContext" link="GtkIMContext.html#GtkIMContext-struct"/>
5416
+ <keyword type="struct" name="struct GtkIMContextClass" link="GtkIMContext.html#GtkIMContextClass"/>
5417
+ <keyword type="struct" name="struct GtkIMContextInfo" link="GtkIMContext.html#GtkIMContextInfo"/>
5391
5418
  <keyword type="function" name="gtk_im_context_set_client_window ()" link="GtkIMContext.html#gtk-im-context-set-client-window"/>
5392
5419
  <keyword type="function" name="gtk_im_context_get_preedit_string ()" link="GtkIMContext.html#gtk-im-context-get-preedit-string"/>
5393
5420
  <keyword type="function" name="gtk_im_context_filter_keypress ()" link="GtkIMContext.html#gtk-im-context-filter-keypress"/>
@@ -5405,7 +5432,7 @@
5405
5432
  <keyword type="signal" name="The &quot;preedit-end&quot; signal" link="GtkIMContext.html#GtkIMContext-preedit-end"/>
5406
5433
  <keyword type="signal" name="The &quot;preedit-start&quot; signal" link="GtkIMContext.html#GtkIMContext-preedit-start"/>
5407
5434
  <keyword type="signal" name="The &quot;retrieve-surrounding&quot; signal" link="GtkIMContext.html#GtkIMContext-retrieve-surrounding"/>
5408
- <keyword type="struct" name="GtkPlug" link="GtkPlug.html#GtkPlug-struct"/>
5435
+ <keyword type="struct" name="struct GtkPlug" link="GtkPlug.html#GtkPlug-struct"/>
5409
5436
  <keyword type="function" name="gtk_plug_construct ()" link="GtkPlug.html#gtk-plug-construct"/>
5410
5437
  <keyword type="function" name="gtk_plug_construct_for_display ()" link="GtkPlug.html#gtk-plug-construct-for-display" since="2.2"/>
5411
5438
  <keyword type="function" name="gtk_plug_new ()" link="GtkPlug.html#gtk-plug-new"/>
@@ -5416,7 +5443,7 @@
5416
5443
  <keyword type="property" name="The &quot;embedded&quot; property" link="GtkPlug.html#GtkPlug--embedded"/>
5417
5444
  <keyword type="property" name="The &quot;socket-window&quot; property" link="GtkPlug.html#GtkPlug--socket-window"/>
5418
5445
  <keyword type="signal" name="The &quot;embedded&quot; signal" link="GtkPlug.html#GtkPlug-embedded"/>
5419
- <keyword type="struct" name="GtkSocket" link="GtkSocket.html#GtkSocket-struct"/>
5446
+ <keyword type="struct" name="struct GtkSocket" link="GtkSocket.html#GtkSocket-struct"/>
5420
5447
  <keyword type="function" name="gtk_socket_new ()" link="GtkSocket.html#gtk-socket-new"/>
5421
5448
  <keyword type="function" name="gtk_socket_steal ()" link="GtkSocket.html#gtk-socket-steal" deprecated=""/>
5422
5449
  <keyword type="function" name="gtk_socket_add_id ()" link="GtkSocket.html#gtk-socket-add-id"/>
@@ -5424,7 +5451,7 @@
5424
5451
  <keyword type="function" name="gtk_socket_get_plug_window ()" link="GtkSocket.html#gtk-socket-get-plug-window" since="2.14"/>
5425
5452
  <keyword type="signal" name="The &quot;plug-added&quot; signal" link="GtkSocket.html#GtkSocket-plug-added"/>
5426
5453
  <keyword type="signal" name="The &quot;plug-removed&quot; signal" link="GtkSocket.html#GtkSocket-plug-removed"/>
5427
- <keyword type="struct" name="GtkCurve" link="GtkCurve.html#GtkCurve-struct"/>
5454
+ <keyword type="struct" name="struct GtkCurve" link="GtkCurve.html#GtkCurve-struct"/>
5428
5455
  <keyword type="function" name="gtk_curve_new ()" link="GtkCurve.html#gtk-curve-new" deprecated="2.20: Don't use this widget anymore."/>
5429
5456
  <keyword type="function" name="gtk_curve_reset ()" link="GtkCurve.html#gtk-curve-reset" deprecated="2.20: Don't use this widget anymore."/>
5430
5457
  <keyword type="function" name="gtk_curve_set_gamma ()" link="GtkCurve.html#gtk-curve-set-gamma" deprecated="2.20: Don't use this widget anymore."/>
@@ -5438,26 +5465,26 @@
5438
5465
  <keyword type="property" name="The &quot;min-x&quot; property" link="GtkCurve.html#GtkCurve--min-x"/>
5439
5466
  <keyword type="property" name="The &quot;min-y&quot; property" link="GtkCurve.html#GtkCurve--min-y"/>
5440
5467
  <keyword type="signal" name="The &quot;curve-type-changed&quot; signal" link="GtkCurve.html#GtkCurve-curve-type-changed"/>
5441
- <keyword type="struct" name="GtkGammaCurve" link="GtkGammaCurve.html#GtkGammaCurve-struct"/>
5468
+ <keyword type="struct" name="struct GtkGammaCurve" link="GtkGammaCurve.html#GtkGammaCurve-struct"/>
5442
5469
  <keyword type="function" name="gtk_gamma_curve_new ()" link="GtkGammaCurve.html#gtk-gamma-curve-new" deprecated="2.20: Don't use this widget anymore."/>
5443
- <keyword type="struct" name="GtkRuler" link="GtkRuler.html#GtkRuler-struct"/>
5444
- <keyword type="struct" name="GtkRulerMetric" link="GtkRuler.html#GtkRulerMetric"/>
5445
- <keyword type="function" name="gtk_ruler_set_metric ()" link="GtkRuler.html#gtk-ruler-set-metric"/>
5446
- <keyword type="function" name="gtk_ruler_set_range ()" link="GtkRuler.html#gtk-ruler-set-range"/>
5447
- <keyword type="function" name="gtk_ruler_get_metric ()" link="GtkRuler.html#gtk-ruler-get-metric"/>
5448
- <keyword type="function" name="gtk_ruler_get_range ()" link="GtkRuler.html#gtk-ruler-get-range"/>
5470
+ <keyword type="struct" name="struct GtkRuler" link="GtkRuler.html#GtkRuler-struct"/>
5471
+ <keyword type="struct" name="struct GtkRulerMetric" link="GtkRuler.html#GtkRulerMetric" deprecated=""/>
5472
+ <keyword type="function" name="gtk_ruler_set_metric ()" link="GtkRuler.html#gtk-ruler-set-metric" deprecated=""/>
5473
+ <keyword type="function" name="gtk_ruler_set_range ()" link="GtkRuler.html#gtk-ruler-set-range" deprecated=""/>
5474
+ <keyword type="function" name="gtk_ruler_get_metric ()" link="GtkRuler.html#gtk-ruler-get-metric" deprecated=""/>
5475
+ <keyword type="function" name="gtk_ruler_get_range ()" link="GtkRuler.html#gtk-ruler-get-range" deprecated=""/>
5449
5476
  <keyword type="property" name="The &quot;lower&quot; property" link="GtkRuler.html#GtkRuler--lower"/>
5450
5477
  <keyword type="property" name="The &quot;max-size&quot; property" link="GtkRuler.html#GtkRuler--max-size"/>
5451
5478
  <keyword type="property" name="The &quot;metric&quot; property" link="GtkRuler.html#GtkRuler--metric"/>
5452
5479
  <keyword type="property" name="The &quot;position&quot; property" link="GtkRuler.html#GtkRuler--position"/>
5453
5480
  <keyword type="property" name="The &quot;upper&quot; property" link="GtkRuler.html#GtkRuler--upper"/>
5454
- <keyword type="struct" name="GtkHRuler" link="GtkHRuler.html#GtkHRuler-struct"/>
5455
- <keyword type="function" name="gtk_hruler_new ()" link="GtkHRuler.html#gtk-hruler-new"/>
5456
- <keyword type="struct" name="GtkVRuler" link="GtkVRuler.html#GtkVRuler-struct"/>
5457
- <keyword type="function" name="gtk_vruler_new ()" link="GtkVRuler.html#gtk-vruler-new"/>
5458
- <keyword type="struct" name="GtkRecentManager" link="GtkRecentManager.html#GtkRecentManager-struct"/>
5481
+ <keyword type="struct" name="struct GtkHRuler" link="GtkHRuler.html#GtkHRuler-struct"/>
5482
+ <keyword type="function" name="gtk_hruler_new ()" link="GtkHRuler.html#gtk-hruler-new" deprecated=""/>
5483
+ <keyword type="struct" name="struct GtkVRuler" link="GtkVRuler.html#GtkVRuler-struct"/>
5484
+ <keyword type="function" name="gtk_vruler_new ()" link="GtkVRuler.html#gtk-vruler-new" deprecated=""/>
5485
+ <keyword type="struct" name="struct GtkRecentManager" link="GtkRecentManager.html#GtkRecentManager-struct"/>
5459
5486
  <keyword type="struct" name="GtkRecentInfo" link="GtkRecentManager.html#GtkRecentInfo"/>
5460
- <keyword type="struct" name="GtkRecentData" link="GtkRecentManager.html#GtkRecentData"/>
5487
+ <keyword type="struct" name="struct GtkRecentData" link="GtkRecentManager.html#GtkRecentData"/>
5461
5488
  <keyword type="macro" name="GTK_RECENT_MANAGER_ERROR" link="GtkRecentManager.html#GTK-RECENT-MANAGER-ERROR:CAPS"/>
5462
5489
  <keyword type="enum" name="enum GtkRecentManagerError" link="GtkRecentManager.html#GtkRecentManagerError"/>
5463
5490
  <keyword type="function" name="gtk_recent_manager_new ()" link="GtkRecentManager.html#gtk-recent-manager-new" since="2.10"/>
@@ -5502,7 +5529,7 @@
5502
5529
  <keyword type="property" name="The &quot;size&quot; property" link="GtkRecentManager.html#GtkRecentManager--size"/>
5503
5530
  <keyword type="signal" name="The &quot;changed&quot; signal" link="GtkRecentManager.html#GtkRecentManager-changed"/>
5504
5531
  <keyword type="struct" name="GtkRecentChooser" link="GtkRecentChooser.html#GtkRecentChooser-struct"/>
5505
- <keyword type="struct" name="GtkRecentChooserIface" link="GtkRecentChooser.html#GtkRecentChooserIface"/>
5532
+ <keyword type="struct" name="struct GtkRecentChooserIface" link="GtkRecentChooser.html#GtkRecentChooserIface"/>
5506
5533
  <keyword type="macro" name="GTK_RECENT_CHOOSER_ERROR" link="GtkRecentChooser.html#GTK-RECENT-CHOOSER-ERROR:CAPS"/>
5507
5534
  <keyword type="enum" name="enum GtkRecentChooserError" link="GtkRecentChooser.html#GtkRecentChooserError"/>
5508
5535
  <keyword type="function" name="gtk_recent_chooser_set_show_private ()" link="GtkRecentChooser.html#gtk-recent-chooser-set-show-private" since="2.10"/>
@@ -5552,20 +5579,20 @@
5552
5579
  <keyword type="property" name="The &quot;sort-type&quot; property" link="GtkRecentChooser.html#GtkRecentChooser--sort-type"/>
5553
5580
  <keyword type="signal" name="The &quot;item-activated&quot; signal" link="GtkRecentChooser.html#GtkRecentChooser-item-activated"/>
5554
5581
  <keyword type="signal" name="The &quot;selection-changed&quot; signal" link="GtkRecentChooser.html#GtkRecentChooser-selection-changed"/>
5555
- <keyword type="struct" name="GtkRecentChooserDialog" link="GtkRecentChooserDialog.html#GtkRecentChooserDialog-struct"/>
5582
+ <keyword type="struct" name="struct GtkRecentChooserDialog" link="GtkRecentChooserDialog.html#GtkRecentChooserDialog-struct"/>
5556
5583
  <keyword type="function" name="gtk_recent_chooser_dialog_new ()" link="GtkRecentChooserDialog.html#gtk-recent-chooser-dialog-new" since="2.10"/>
5557
5584
  <keyword type="function" name="gtk_recent_chooser_dialog_new_for_manager ()" link="GtkRecentChooserDialog.html#gtk-recent-chooser-dialog-new-for-manager" since="2.10"/>
5558
- <keyword type="struct" name="GtkRecentChooserMenu" link="GtkRecentChooserMenu.html#GtkRecentChooserMenu-struct"/>
5585
+ <keyword type="struct" name="struct GtkRecentChooserMenu" link="GtkRecentChooserMenu.html#GtkRecentChooserMenu-struct"/>
5559
5586
  <keyword type="function" name="gtk_recent_chooser_menu_new ()" link="GtkRecentChooserMenu.html#gtk-recent-chooser-menu-new" since="2.10"/>
5560
5587
  <keyword type="function" name="gtk_recent_chooser_menu_new_for_manager ()" link="GtkRecentChooserMenu.html#gtk-recent-chooser-menu-new-for-manager" since="2.10"/>
5561
5588
  <keyword type="function" name="gtk_recent_chooser_menu_get_show_numbers ()" link="GtkRecentChooserMenu.html#gtk-recent-chooser-menu-get-show-numbers" since="2.10"/>
5562
5589
  <keyword type="function" name="gtk_recent_chooser_menu_set_show_numbers ()" link="GtkRecentChooserMenu.html#gtk-recent-chooser-menu-set-show-numbers" since="2.10"/>
5563
5590
  <keyword type="property" name="The &quot;show-numbers&quot; property" link="GtkRecentChooserMenu.html#GtkRecentChooserMenu--show-numbers"/>
5564
- <keyword type="struct" name="GtkRecentChooserWidget" link="GtkRecentChooserWidget.html#GtkRecentChooserWidget-struct"/>
5591
+ <keyword type="struct" name="struct GtkRecentChooserWidget" link="GtkRecentChooserWidget.html#GtkRecentChooserWidget-struct"/>
5565
5592
  <keyword type="function" name="gtk_recent_chooser_widget_new ()" link="GtkRecentChooserWidget.html#gtk-recent-chooser-widget-new" since="2.10"/>
5566
5593
  <keyword type="function" name="gtk_recent_chooser_widget_new_for_manager ()" link="GtkRecentChooserWidget.html#gtk-recent-chooser-widget-new-for-manager" since="2.10"/>
5567
5594
  <keyword type="struct" name="GtkRecentFilter" link="GtkRecentFilter.html#GtkRecentFilter-struct"/>
5568
- <keyword type="struct" name="GtkRecentFilterInfo" link="GtkRecentFilter.html#GtkRecentFilterInfo"/>
5595
+ <keyword type="struct" name="struct GtkRecentFilterInfo" link="GtkRecentFilter.html#GtkRecentFilterInfo"/>
5569
5596
  <keyword type="enum" name="enum GtkRecentFilterFlags" link="GtkRecentFilter.html#GtkRecentFilterFlags"/>
5570
5597
  <keyword type="function" name="GtkRecentFilterFunc ()" link="GtkRecentFilter.html#GtkRecentFilterFunc"/>
5571
5598
  <keyword type="function" name="gtk_recent_filter_new ()" link="GtkRecentFilter.html#gtk-recent-filter-new" since="2.10"/>
@@ -5581,7 +5608,7 @@
5581
5608
  <keyword type="function" name="gtk_recent_filter_get_needed ()" link="GtkRecentFilter.html#gtk-recent-filter-get-needed" since="2.10"/>
5582
5609
  <keyword type="function" name="gtk_recent_filter_filter ()" link="GtkRecentFilter.html#gtk-recent-filter-filter" since="2.10"/>
5583
5610
  <keyword type="struct" name="GtkBuildable" link="GtkBuildable.html#GtkBuildable-struct"/>
5584
- <keyword type="struct" name="GtkBuildableIface" link="GtkBuildable.html#GtkBuildableIface"/>
5611
+ <keyword type="struct" name="struct GtkBuildableIface" link="GtkBuildable.html#GtkBuildableIface"/>
5585
5612
  <keyword type="function" name="gtk_buildable_set_name ()" link="GtkBuildable.html#gtk-buildable-set-name" since="2.12"/>
5586
5613
  <keyword type="function" name="gtk_buildable_get_name ()" link="GtkBuildable.html#gtk-buildable-get-name" since="2.12"/>
5587
5614
  <keyword type="function" name="gtk_buildable_add_child ()" link="GtkBuildable.html#gtk-buildable-add-child" since="2.12"/>
@@ -5593,7 +5620,7 @@
5593
5620
  <keyword type="function" name="gtk_buildable_parser_finished ()" link="GtkBuildable.html#gtk-buildable-parser-finished" since="2.12"/>
5594
5621
  <keyword type="function" name="gtk_buildable_get_internal_child ()" link="GtkBuildable.html#gtk-buildable-get-internal-child" since="2.12"/>
5595
5622
  <keyword type="" name="GtkBuilder UI Definitions" link="GtkBuilder.html#BUILDER-UI"/>
5596
- <keyword type="struct" name="GtkBuilder" link="GtkBuilder.html#GtkBuilder-struct"/>
5623
+ <keyword type="struct" name="struct GtkBuilder" link="GtkBuilder.html#GtkBuilder-struct"/>
5597
5624
  <keyword type="function" name="GtkBuilderConnectFunc ()" link="GtkBuilder.html#GtkBuilderConnectFunc" since="2.12"/>
5598
5625
  <keyword type="enum" name="enum GtkBuilderError" link="GtkBuilder.html#GtkBuilderError"/>
5599
5626
  <keyword type="function" name="gtk_builder_new ()" link="GtkBuilder.html#gtk-builder-new" since="2.12"/>
@@ -5613,7 +5640,7 @@
5613
5640
  <keyword type="macro" name="GTK_BUILDER_WARN_INVALID_CHILD_TYPE()" link="GtkBuilder.html#GTK-BUILDER-WARN-INVALID-CHILD-TYPE:CAPS"/>
5614
5641
  <keyword type="macro" name="GTK_BUILDER_ERROR" link="GtkBuilder.html#GTK-BUILDER-ERROR:CAPS"/>
5615
5642
  <keyword type="property" name="The &quot;translation-domain&quot; property" link="GtkBuilder.html#GtkBuilder--translation-domain"/>
5616
- <keyword type="struct" name="GtkCList" link="GtkCList.html#GtkCList-struct"/>
5643
+ <keyword type="struct" name="struct GtkCList" link="GtkCList.html#GtkCList-struct"/>
5617
5644
  <keyword type="enum" name="enum GtkCellType" link="GtkCList.html#GtkCellType" deprecated=""/>
5618
5645
  <keyword type="enum" name="enum GtkButtonAction" link="GtkCList.html#GtkButtonAction" deprecated=""/>
5619
5646
  <keyword type="macro" name="GTK_CLIST_FLAGS()" link="GtkCList.html#GTK-CLIST-FLAGS:CAPS" deprecated=""/>
@@ -5635,15 +5662,15 @@
5635
5662
  <keyword type="macro" name="GTK_CELL_PIXTEXT()" link="GtkCList.html#GTK-CELL-PIXTEXT:CAPS" deprecated=""/>
5636
5663
  <keyword type="macro" name="GTK_CELL_WIDGET()" link="GtkCList.html#GTK-CELL-WIDGET:CAPS" deprecated=""/>
5637
5664
  <keyword type="function" name="GtkCListCompareFunc ()" link="GtkCList.html#GtkCListCompareFunc" deprecated=""/>
5638
- <keyword type="struct" name="GtkCListColumn" link="GtkCList.html#GtkCListColumn" deprecated=""/>
5639
- <keyword type="struct" name="GtkCListRow" link="GtkCList.html#GtkCListRow" deprecated=""/>
5640
- <keyword type="struct" name="GtkCellText" link="GtkCList.html#GtkCellText" deprecated=""/>
5641
- <keyword type="struct" name="GtkCellPixmap" link="GtkCList.html#GtkCellPixmap" deprecated=""/>
5642
- <keyword type="struct" name="GtkCellPixText" link="GtkCList.html#GtkCellPixText" deprecated=""/>
5643
- <keyword type="struct" name="GtkCellWidget" link="GtkCList.html#GtkCellWidget" deprecated=""/>
5644
- <keyword type="struct" name="GtkCell" link="GtkCList.html#GtkCell" deprecated=""/>
5645
- <keyword type="struct" name="GtkCListCellInfo" link="GtkCList.html#GtkCListCellInfo" deprecated=""/>
5646
- <keyword type="struct" name="GtkCListDestInfo" link="GtkCList.html#GtkCListDestInfo" deprecated=""/>
5665
+ <keyword type="struct" name="struct GtkCListColumn" link="GtkCList.html#GtkCListColumn" deprecated=""/>
5666
+ <keyword type="struct" name="struct GtkCListRow" link="GtkCList.html#GtkCListRow" deprecated=""/>
5667
+ <keyword type="struct" name="struct GtkCellText" link="GtkCList.html#GtkCellText" deprecated=""/>
5668
+ <keyword type="struct" name="struct GtkCellPixmap" link="GtkCList.html#GtkCellPixmap" deprecated=""/>
5669
+ <keyword type="struct" name="struct GtkCellPixText" link="GtkCList.html#GtkCellPixText" deprecated=""/>
5670
+ <keyword type="struct" name="struct GtkCellWidget" link="GtkCList.html#GtkCellWidget" deprecated=""/>
5671
+ <keyword type="struct" name="struct GtkCell" link="GtkCList.html#GtkCell" deprecated=""/>
5672
+ <keyword type="struct" name="struct GtkCListCellInfo" link="GtkCList.html#GtkCListCellInfo" deprecated=""/>
5673
+ <keyword type="struct" name="struct GtkCListDestInfo" link="GtkCList.html#GtkCListDestInfo" deprecated=""/>
5647
5674
  <keyword type="enum" name="enum GtkCListDragPos" link="GtkCList.html#GtkCListDragPos" deprecated=""/>
5648
5675
  <keyword type="function" name="gtk_clist_new ()" link="GtkCList.html#gtk-clist-new" deprecated=""/>
5649
5676
  <keyword type="function" name="gtk_clist_new_with_titles ()" link="GtkCList.html#gtk-clist-new-with-titles" deprecated=""/>
@@ -5743,7 +5770,7 @@
5743
5770
  <keyword type="signal" name="The &quot;undo-selection&quot; signal" link="GtkCList.html#GtkCList-undo-selection"/>
5744
5771
  <keyword type="signal" name="The &quot;unselect-all&quot; signal" link="GtkCList.html#GtkCList-unselect-all"/>
5745
5772
  <keyword type="signal" name="The &quot;unselect-row&quot; signal" link="GtkCList.html#GtkCList-unselect-row"/>
5746
- <keyword type="struct" name="GtkCTree" link="GtkCTree.html#GtkCTree-struct"/>
5773
+ <keyword type="struct" name="struct GtkCTree" link="GtkCTree.html#GtkCTree-struct"/>
5747
5774
  <keyword type="macro" name="GTK_CTREE_ROW()" link="GtkCTree.html#GTK-CTREE-ROW:CAPS" deprecated=""/>
5748
5775
  <keyword type="macro" name="GTK_CTREE_NODE()" link="GtkCTree.html#GTK-CTREE-NODE:CAPS" deprecated=""/>
5749
5776
  <keyword type="macro" name="GTK_CTREE_NODE_NEXT()" link="GtkCTree.html#GTK-CTREE-NODE-NEXT:CAPS" deprecated=""/>
@@ -5756,8 +5783,8 @@
5756
5783
  <keyword type="function" name="GtkCTreeFunc ()" link="GtkCTree.html#GtkCTreeFunc" deprecated=""/>
5757
5784
  <keyword type="function" name="GtkCTreeGNodeFunc ()" link="GtkCTree.html#GtkCTreeGNodeFunc" deprecated=""/>
5758
5785
  <keyword type="function" name="GtkCTreeCompareDragFunc ()" link="GtkCTree.html#GtkCTreeCompareDragFunc" deprecated=""/>
5759
- <keyword type="struct" name="GtkCTreeRow" link="GtkCTree.html#GtkCTreeRow" deprecated=""/>
5760
- <keyword type="struct" name="GtkCTreeNode" link="GtkCTree.html#GtkCTreeNode" deprecated=""/>
5786
+ <keyword type="struct" name="struct GtkCTreeRow" link="GtkCTree.html#GtkCTreeRow" deprecated=""/>
5787
+ <keyword type="struct" name="struct GtkCTreeNode" link="GtkCTree.html#GtkCTreeNode" deprecated=""/>
5761
5788
  <keyword type="macro" name="GTK_TYPE_CTREE_NODE" link="GtkCTree.html#GTK-TYPE-CTREE-NODE:CAPS" deprecated=""/>
5762
5789
  <keyword type="function" name="gtk_ctree_new_with_titles ()" link="GtkCTree.html#gtk-ctree-new-with-titles" deprecated=""/>
5763
5790
  <keyword type="function" name="gtk_ctree_new ()" link="GtkCTree.html#gtk-ctree-new" deprecated=""/>
@@ -5839,7 +5866,7 @@
5839
5866
  <keyword type="signal" name="The &quot;tree-move&quot; signal" link="GtkCTree.html#GtkCTree-tree-move"/>
5840
5867
  <keyword type="signal" name="The &quot;tree-select-row&quot; signal" link="GtkCTree.html#GtkCTree-tree-select-row"/>
5841
5868
  <keyword type="signal" name="The &quot;tree-unselect-row&quot; signal" link="GtkCTree.html#GtkCTree-tree-unselect-row"/>
5842
- <keyword type="struct" name="GtkCombo" link="GtkCombo.html#GtkCombo-struct"/>
5869
+ <keyword type="struct" name="struct GtkCombo" link="GtkCombo.html#GtkCombo-struct"/>
5843
5870
  <keyword type="function" name="gtk_combo_new ()" link="GtkCombo.html#gtk-combo-new" deprecated="2.4: Use #GtkComboBox instead."/>
5844
5871
  <keyword type="function" name="gtk_combo_set_popdown_strings ()" link="GtkCombo.html#gtk-combo-set-popdown-strings" deprecated="2.4: Use #GtkComboBox instead."/>
5845
5872
  <keyword type="function" name="gtk_combo_set_value_in_list ()" link="GtkCombo.html#gtk-combo-set-value-in-list" deprecated="2.4: Use #GtkComboBox instead."/>
@@ -5853,27 +5880,27 @@
5853
5880
  <keyword type="property" name="The &quot;enable-arrow-keys&quot; property" link="GtkCombo.html#GtkCombo--enable-arrow-keys"/>
5854
5881
  <keyword type="property" name="The &quot;enable-arrows-always&quot; property" link="GtkCombo.html#GtkCombo--enable-arrows-always"/>
5855
5882
  <keyword type="property" name="The &quot;value-in-list&quot; property" link="GtkCombo.html#GtkCombo--value-in-list"/>
5856
- <keyword type="struct" name="GtkFileSelection" link="GtkFileSelection.html#GtkFileSelection-struct"/>
5883
+ <keyword type="struct" name="struct GtkFileSelection" link="GtkFileSelection.html#GtkFileSelection-struct"/>
5857
5884
  <keyword type="function" name="gtk_file_selection_new ()" link="GtkFileSelection.html#gtk-file-selection-new" deprecated="Use gtk_file_chooser_dialog_new() instead"/>
5858
- <keyword type="function" name="gtk_file_selection_set_filename ()" link="GtkFileSelection.html#gtk-file-selection-set-filename" deprecated=""/>
5859
- <keyword type="function" name="gtk_file_selection_get_filename ()" link="GtkFileSelection.html#gtk-file-selection-get-filename" deprecated=""/>
5885
+ <keyword type="macro" name="gtk_file_selection_set_filename" link="GtkFileSelection.html#gtk-file-selection-set-filename" deprecated=""/>
5886
+ <keyword type="macro" name="gtk_file_selection_get_filename" link="GtkFileSelection.html#gtk-file-selection-get-filename" deprecated=""/>
5860
5887
  <keyword type="function" name="gtk_file_selection_complete ()" link="GtkFileSelection.html#gtk-file-selection-complete" deprecated=""/>
5861
5888
  <keyword type="function" name="gtk_file_selection_show_fileop_buttons ()" link="GtkFileSelection.html#gtk-file-selection-show-fileop-buttons" deprecated=""/>
5862
5889
  <keyword type="function" name="gtk_file_selection_hide_fileop_buttons ()" link="GtkFileSelection.html#gtk-file-selection-hide-fileop-buttons" deprecated=""/>
5863
- <keyword type="function" name="gtk_file_selection_get_selections ()" link="GtkFileSelection.html#gtk-file-selection-get-selections" deprecated=""/>
5890
+ <keyword type="macro" name="gtk_file_selection_get_selections" link="GtkFileSelection.html#gtk-file-selection-get-selections" deprecated=""/>
5864
5891
  <keyword type="function" name="gtk_file_selection_set_select_multiple ()" link="GtkFileSelection.html#gtk-file-selection-set-select-multiple" deprecated=""/>
5865
5892
  <keyword type="function" name="gtk_file_selection_get_select_multiple ()" link="GtkFileSelection.html#gtk-file-selection-get-select-multiple" deprecated=""/>
5866
5893
  <keyword type="property" name="The &quot;filename&quot; property" link="GtkFileSelection.html#GtkFileSelection--filename"/>
5867
5894
  <keyword type="property" name="The &quot;select-multiple&quot; property" link="GtkFileSelection.html#GtkFileSelection--select-multiple"/>
5868
5895
  <keyword type="property" name="The &quot;show-fileops&quot; property" link="GtkFileSelection.html#GtkFileSelection--show-fileops"/>
5869
- <keyword type="struct" name="GtkItemFactory" link="GtkItemFactory.html#GtkItemFactory-struct"/>
5896
+ <keyword type="struct" name="struct GtkItemFactory" link="GtkItemFactory.html#GtkItemFactory-struct"/>
5870
5897
  <keyword type="function" name="GtkPrintFunc ()" link="GtkItemFactory.html#GtkPrintFunc" deprecated=""/>
5871
5898
  <keyword type="function" name="GtkTranslateFunc ()" link="GtkItemFactory.html#GtkTranslateFunc"/>
5872
5899
  <keyword type="function" name="GtkItemFactoryCallback ()" link="GtkItemFactory.html#GtkItemFactoryCallback" deprecated=""/>
5873
5900
  <keyword type="function" name="GtkItemFactoryCallback1 ()" link="GtkItemFactory.html#GtkItemFactoryCallback1" deprecated=""/>
5874
5901
  <keyword type="function" name="GtkItemFactoryCallback2 ()" link="GtkItemFactory.html#GtkItemFactoryCallback2" deprecated=""/>
5875
- <keyword type="struct" name="GtkItemFactoryEntry" link="GtkItemFactory.html#GtkItemFactoryEntry" deprecated=""/>
5876
- <keyword type="struct" name="GtkItemFactoryItem" link="GtkItemFactory.html#GtkItemFactoryItem" deprecated=""/>
5902
+ <keyword type="struct" name="struct GtkItemFactoryEntry" link="GtkItemFactory.html#GtkItemFactoryEntry" deprecated=""/>
5903
+ <keyword type="struct" name="struct GtkItemFactoryItem" link="GtkItemFactory.html#GtkItemFactoryItem" deprecated=""/>
5877
5904
  <keyword type="function" name="gtk_item_factory_new ()" link="GtkItemFactory.html#gtk-item-factory-new" deprecated="2.4: Use #GtkUIManager instead."/>
5878
5905
  <keyword type="function" name="gtk_item_factory_construct ()" link="GtkItemFactory.html#gtk-item-factory-construct" deprecated="2.4: Use #GtkUIManager instead."/>
5879
5906
  <keyword type="function" name="gtk_item_factory_add_foreign ()" link="GtkItemFactory.html#gtk-item-factory-add-foreign" deprecated=""/>
@@ -5897,7 +5924,7 @@
5897
5924
  <keyword type="function" name="gtk_item_factory_create_menu_entries ()" link="GtkItemFactory.html#gtk-item-factory-create-menu-entries" deprecated="2.4: Use #GtkUIManager instead."/>
5898
5925
  <keyword type="function" name="gtk_item_factories_path_delete ()" link="GtkItemFactory.html#gtk-item-factories-path-delete" deprecated="2.4: Use #GtkUIManager instead."/>
5899
5926
  <keyword type="function" name="gtk_item_factory_set_translate_func ()" link="GtkItemFactory.html#gtk-item-factory-set-translate-func" deprecated="2.4: Use #GtkUIManager instead."/>
5900
- <keyword type="struct" name="GtkList" link="GtkList.html#GtkList-struct"/>
5927
+ <keyword type="struct" name="struct GtkList" link="GtkList.html#GtkList-struct"/>
5901
5928
  <keyword type="function" name="gtk_list_new ()" link="GtkList.html#gtk-list-new" deprecated=""/>
5902
5929
  <keyword type="function" name="gtk_list_insert_items ()" link="GtkList.html#gtk-list-insert-items" deprecated=""/>
5903
5930
  <keyword type="function" name="gtk_list_append_items ()" link="GtkList.html#gtk-list-append-items" deprecated=""/>
@@ -5927,7 +5954,7 @@
5927
5954
  <keyword type="signal" name="The &quot;select-child&quot; signal" link="GtkList.html#GtkList-select-child"/>
5928
5955
  <keyword type="signal" name="The &quot;selection-changed&quot; signal" link="GtkList.html#GtkList-selection-changed"/>
5929
5956
  <keyword type="signal" name="The &quot;unselect-child&quot; signal" link="GtkList.html#GtkList-unselect-child"/>
5930
- <keyword type="struct" name="GtkListItem" link="GtkListItem.html#GtkListItem-struct"/>
5957
+ <keyword type="struct" name="struct GtkListItem" link="GtkListItem.html#GtkListItem-struct"/>
5931
5958
  <keyword type="function" name="gtk_list_item_new ()" link="GtkListItem.html#gtk-list-item-new" deprecated=""/>
5932
5959
  <keyword type="function" name="gtk_list_item_new_with_label ()" link="GtkListItem.html#gtk-list-item-new-with-label" deprecated=""/>
5933
5960
  <keyword type="function" name="gtk_list_item_select ()" link="GtkListItem.html#gtk-list-item-select" deprecated=""/>
@@ -5942,7 +5969,7 @@
5942
5969
  <keyword type="signal" name="The &quot;toggle-focus-row&quot; signal" link="GtkListItem.html#GtkListItem-toggle-focus-row"/>
5943
5970
  <keyword type="signal" name="The &quot;undo-selection&quot; signal" link="GtkListItem.html#GtkListItem-undo-selection"/>
5944
5971
  <keyword type="signal" name="The &quot;unselect-all&quot; signal" link="GtkListItem.html#GtkListItem-unselect-all"/>
5945
- <keyword type="struct" name="GtkOldEditable" link="GtkOldEditable.html#GtkOldEditable-struct"/>
5972
+ <keyword type="struct" name="struct GtkOldEditable" link="GtkOldEditable.html#GtkOldEditable-struct"/>
5946
5973
  <keyword type="function" name="GtkTextFunction ()" link="GtkOldEditable.html#GtkTextFunction" deprecated=""/>
5947
5974
  <keyword type="function" name="gtk_old_editable_claim_selection ()" link="GtkOldEditable.html#gtk-old-editable-claim-selection" deprecated=""/>
5948
5975
  <keyword type="function" name="gtk_old_editable_changed ()" link="GtkOldEditable.html#gtk-old-editable-changed" deprecated=""/>
@@ -5961,7 +5988,7 @@
5961
5988
  <keyword type="signal" name="The &quot;move-word&quot; signal" link="GtkOldEditable.html#GtkOldEditable-move-word"/>
5962
5989
  <keyword type="signal" name="The &quot;paste-clipboard&quot; signal" link="GtkOldEditable.html#GtkOldEditable-paste-clipboard"/>
5963
5990
  <keyword type="signal" name="The &quot;set-editable&quot; signal" link="GtkOldEditable.html#GtkOldEditable-set-editable"/>
5964
- <keyword type="struct" name="GtkOptionMenu" link="GtkOptionMenu.html#GtkOptionMenu-struct"/>
5991
+ <keyword type="struct" name="struct GtkOptionMenu" link="GtkOptionMenu.html#GtkOptionMenu-struct"/>
5965
5992
  <keyword type="function" name="gtk_option_menu_new ()" link="GtkOptionMenu.html#gtk-option-menu-new" deprecated="2.4: Use #GtkComboBox instead."/>
5966
5993
  <keyword type="function" name="gtk_option_menu_get_menu ()" link="GtkOptionMenu.html#gtk-option-menu-get-menu" deprecated="2.4: Use #GtkComboBox instead."/>
5967
5994
  <keyword type="function" name="gtk_option_menu_set_menu ()" link="GtkOptionMenu.html#gtk-option-menu-set-menu" deprecated="2.4: Use #GtkComboBox instead."/>
@@ -5972,13 +5999,13 @@
5972
5999
  <keyword type="property" name="The &quot;indicator-size&quot; style property" link="GtkOptionMenu.html#GtkOptionMenu--s-indicator-size"/>
5973
6000
  <keyword type="property" name="The &quot;indicator-spacing&quot; style property" link="GtkOptionMenu.html#GtkOptionMenu--s-indicator-spacing"/>
5974
6001
  <keyword type="signal" name="The &quot;changed&quot; signal" link="GtkOptionMenu.html#GtkOptionMenu-changed"/>
5975
- <keyword type="struct" name="GtkPixmap" link="GtkPixmap.html#GtkPixmap-struct"/>
6002
+ <keyword type="struct" name="struct GtkPixmap" link="GtkPixmap.html#GtkPixmap-struct"/>
5976
6003
  <keyword type="function" name="gtk_pixmap_new ()" link="GtkPixmap.html#gtk-pixmap-new" deprecated=""/>
5977
6004
  <keyword type="function" name="gtk_pixmap_set ()" link="GtkPixmap.html#gtk-pixmap-set" deprecated=""/>
5978
6005
  <keyword type="function" name="gtk_pixmap_get ()" link="GtkPixmap.html#gtk-pixmap-get" deprecated=""/>
5979
6006
  <keyword type="function" name="gtk_pixmap_set_build_insensitive ()" link="GtkPixmap.html#gtk-pixmap-set-build-insensitive" deprecated=""/>
5980
- <keyword type="struct" name="GtkPreview" link="GtkPreview.html#GtkPreview-struct"/>
5981
- <keyword type="struct" name="GtkPreviewInfo" link="GtkPreview.html#GtkPreviewInfo" deprecated=""/>
6007
+ <keyword type="struct" name="struct GtkPreview" link="GtkPreview.html#GtkPreview-struct"/>
6008
+ <keyword type="struct" name="struct GtkPreviewInfo" link="GtkPreview.html#GtkPreviewInfo" deprecated=""/>
5982
6009
  <keyword type="union" name="union GtkDitherInfo" link="GtkPreview.html#GtkDitherInfo" deprecated=""/>
5983
6010
  <keyword type="function" name="gtk_preview_uninit ()" link="GtkPreview.html#gtk-preview-uninit" deprecated=""/>
5984
6011
  <keyword type="function" name="gtk_preview_new ()" link="GtkPreview.html#gtk-preview-new" deprecated=""/>
@@ -5996,7 +6023,7 @@
5996
6023
  <keyword type="function" name="gtk_preview_get_info ()" link="GtkPreview.html#gtk-preview-get-info" deprecated=""/>
5997
6024
  <keyword type="function" name="gtk_preview_reset ()" link="GtkPreview.html#gtk-preview-reset" deprecated=""/>
5998
6025
  <keyword type="property" name="The &quot;expand&quot; property" link="GtkPreview.html#GtkPreview--expand"/>
5999
- <keyword type="struct" name="GtkProgress" link="GtkProgress.html#GtkProgress-struct"/>
6026
+ <keyword type="struct" name="struct GtkProgress" link="GtkProgress.html#GtkProgress-struct"/>
6000
6027
  <keyword type="function" name="gtk_progress_set_show_text ()" link="GtkProgress.html#gtk-progress-set-show-text" deprecated=""/>
6001
6028
  <keyword type="function" name="gtk_progress_set_text_alignment ()" link="GtkProgress.html#gtk-progress-set-text-alignment" deprecated=""/>
6002
6029
  <keyword type="function" name="gtk_progress_set_format_string ()" link="GtkProgress.html#gtk-progress-set-format-string" deprecated=""/>
@@ -6014,9 +6041,9 @@
6014
6041
  <keyword type="property" name="The &quot;show-text&quot; property" link="GtkProgress.html#GtkProgress--show-text"/>
6015
6042
  <keyword type="property" name="The &quot;text-xalign&quot; property" link="GtkProgress.html#GtkProgress--text-xalign"/>
6016
6043
  <keyword type="property" name="The &quot;text-yalign&quot; property" link="GtkProgress.html#GtkProgress--text-yalign"/>
6017
- <keyword type="struct" name="GtkText" link="GtkText.html#GtkText-struct"/>
6044
+ <keyword type="struct" name="struct GtkText" link="GtkText.html#GtkText-struct"/>
6018
6045
  <keyword type="struct" name="GtkTextFont" link="GtkText.html#GtkTextFont" deprecated=""/>
6019
- <keyword type="struct" name="GtkPropertyMark" link="GtkText.html#GtkPropertyMark" deprecated=""/>
6046
+ <keyword type="struct" name="struct GtkPropertyMark" link="GtkText.html#GtkPropertyMark" deprecated=""/>
6020
6047
  <keyword type="function" name="gtk_text_new ()" link="GtkText.html#gtk-text-new" deprecated=""/>
6021
6048
  <keyword type="function" name="gtk_text_set_editable ()" link="GtkText.html#gtk-text-set-editable" deprecated=""/>
6022
6049
  <keyword type="function" name="gtk_text_set_word_wrap ()" link="GtkText.html#gtk-text-set-word-wrap" deprecated=""/>
@@ -6036,8 +6063,8 @@
6036
6063
  <keyword type="property" name="The &quot;vadjustment&quot; property" link="GtkText.html#GtkText--vadjustment"/>
6037
6064
  <keyword type="property" name="The &quot;word-wrap&quot; property" link="GtkText.html#GtkText--word-wrap"/>
6038
6065
  <keyword type="signal" name="The &quot;set-scroll-adjustments&quot; signal" link="GtkText.html#GtkText-set-scroll-adjustments"/>
6039
- <keyword type="struct" name="GtkTooltips" link="GtkTooltips.html#GtkTooltips-struct"/>
6040
- <keyword type="struct" name="GtkTooltipsData" link="GtkTooltips.html#GtkTooltipsData" deprecated="2.12:"/>
6066
+ <keyword type="struct" name="struct GtkTooltips" link="GtkTooltips.html#GtkTooltips-struct"/>
6067
+ <keyword type="struct" name="struct GtkTooltipsData" link="GtkTooltips.html#GtkTooltipsData" deprecated="2.12:"/>
6041
6068
  <keyword type="function" name="gtk_tooltips_new ()" link="GtkTooltips.html#gtk-tooltips-new" deprecated="2.12:"/>
6042
6069
  <keyword type="function" name="gtk_tooltips_enable ()" link="GtkTooltips.html#gtk-tooltips-enable" deprecated="2.12:"/>
6043
6070
  <keyword type="function" name="gtk_tooltips_disable ()" link="GtkTooltips.html#gtk-tooltips-disable" deprecated="2.12:"/>
@@ -6046,7 +6073,7 @@
6046
6073
  <keyword type="function" name="gtk_tooltips_data_get ()" link="GtkTooltips.html#gtk-tooltips-data-get" deprecated="2.12:"/>
6047
6074
  <keyword type="function" name="gtk_tooltips_force_window ()" link="GtkTooltips.html#gtk-tooltips-force-window" deprecated="2.12:"/>
6048
6075
  <keyword type="function" name="gtk_tooltips_get_info_from_tip_window ()" link="GtkTooltips.html#gtk-tooltips-get-info-from-tip-window" deprecated="2.12:" since="2.4"/>
6049
- <keyword type="struct" name="GtkTipsQuery" link="GtkTipsQuery.html#GtkTipsQuery-struct"/>
6076
+ <keyword type="struct" name="struct GtkTipsQuery" link="GtkTipsQuery.html#GtkTipsQuery-struct"/>
6050
6077
  <keyword type="function" name="gtk_tips_query_new ()" link="GtkTipsQuery.html#gtk-tips-query-new" deprecated=""/>
6051
6078
  <keyword type="function" name="gtk_tips_query_start_query ()" link="GtkTipsQuery.html#gtk-tips-query-start-query" deprecated=""/>
6052
6079
  <keyword type="function" name="gtk_tips_query_stop_query ()" link="GtkTipsQuery.html#gtk-tips-query-stop-query" deprecated=""/>
@@ -6060,7 +6087,7 @@
6060
6087
  <keyword type="signal" name="The &quot;stop-query&quot; signal" link="GtkTipsQuery.html#GtkTipsQuery-stop-query"/>
6061
6088
  <keyword type="signal" name="The &quot;widget-entered&quot; signal" link="GtkTipsQuery.html#GtkTipsQuery-widget-entered"/>
6062
6089
  <keyword type="signal" name="The &quot;widget-selected&quot; signal" link="GtkTipsQuery.html#GtkTipsQuery-widget-selected"/>
6063
- <keyword type="struct" name="GtkTree" link="GtkTree.html#GtkTree-struct"/>
6090
+ <keyword type="struct" name="struct GtkTree" link="GtkTree.html#GtkTree-struct"/>
6064
6091
  <keyword type="macro" name="GTK_IS_ROOT_TREE()" link="GtkTree.html#GTK-IS-ROOT-TREE:CAPS" deprecated=""/>
6065
6092
  <keyword type="macro" name="GTK_TREE_ROOT_TREE()" link="GtkTree.html#GTK-TREE-ROOT-TREE:CAPS" deprecated=""/>
6066
6093
  <keyword type="macro" name="GTK_TREE_SELECTION_OLD()" link="GtkTree.html#GTK-TREE-SELECTION-OLD:CAPS" deprecated=""/>
@@ -6083,7 +6110,7 @@
6083
6110
  <keyword type="signal" name="The &quot;select-child&quot; signal" link="GtkTree.html#GtkTree-select-child"/>
6084
6111
  <keyword type="signal" name="The &quot;selection-changed&quot; signal" link="GtkTree.html#GtkTree-selection-changed"/>
6085
6112
  <keyword type="signal" name="The &quot;unselect-child&quot; signal" link="GtkTree.html#GtkTree-unselect-child"/>
6086
- <keyword type="struct" name="GtkTreeItem" link="GtkTreeItem.html#GtkTreeItem-struct"/>
6113
+ <keyword type="struct" name="struct GtkTreeItem" link="GtkTreeItem.html#GtkTreeItem-struct"/>
6087
6114
  <keyword type="macro" name="GTK_TREE_ITEM_SUBTREE()" link="GtkTreeItem.html#GTK-TREE-ITEM-SUBTREE:CAPS" deprecated=""/>
6088
6115
  <keyword type="function" name="gtk_tree_item_new ()" link="GtkTreeItem.html#gtk-tree-item-new" deprecated=""/>
6089
6116
  <keyword type="function" name="gtk_tree_item_new_with_label ()" link="GtkTreeItem.html#gtk-tree-item-new-with-label" deprecated=""/>