atk 2.2.4-x64-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 (252) hide show
  1. checksums.yaml +7 -0
  2. data/README +30 -0
  3. data/Rakefile +31 -0
  4. data/ext/atk/atk.def +2 -0
  5. data/ext/atk/depend +11 -0
  6. data/ext/atk/extconf.rb +81 -0
  7. data/ext/atk/rbatk.c +66 -0
  8. data/ext/atk/rbatk.h +47 -0
  9. data/ext/atk/rbatkaction.c +85 -0
  10. data/ext/atk/rbatkcomponent.c +175 -0
  11. data/ext/atk/rbatkconversions.h +70 -0
  12. data/ext/atk/rbatkdocument.c +96 -0
  13. data/ext/atk/rbatkeditabletext.c +177 -0
  14. data/ext/atk/rbatkgobjectaccessible.c +46 -0
  15. data/ext/atk/rbatkhyperlink.c +71 -0
  16. data/ext/atk/rbatkhypertext.c +53 -0
  17. data/ext/atk/rbatkimage.c +68 -0
  18. data/ext/atk/rbatkimplementor.c +38 -0
  19. data/ext/atk/rbatknoopobject.c +40 -0
  20. data/ext/atk/rbatknoopobjectfactory.c +40 -0
  21. data/ext/atk/rbatkobject.c +153 -0
  22. data/ext/atk/rbatkobjectfactory.c +53 -0
  23. data/ext/atk/rbatkobjectrole.c +50 -0
  24. data/ext/atk/rbatkprivate.h +48 -0
  25. data/ext/atk/rbatkregistry.c +63 -0
  26. data/ext/atk/rbatkrelation.c +98 -0
  27. data/ext/atk/rbatkrelationset.c +95 -0
  28. data/ext/atk/rbatkrelationtype.c +38 -0
  29. data/ext/atk/rbatkselection.c +87 -0
  30. data/ext/atk/rbatkstate.c +51 -0
  31. data/ext/atk/rbatkstateset.c +180 -0
  32. data/ext/atk/rbatkstreamablecontent.c +57 -0
  33. data/ext/atk/rbatktable.c +271 -0
  34. data/ext/atk/rbatktext.c +318 -0
  35. data/ext/atk/rbatktextattribute.c +54 -0
  36. data/ext/atk/rbatktextrange.c +92 -0
  37. data/ext/atk/rbatktextrectangle.c +149 -0
  38. data/ext/atk/rbatkutil.c +122 -0
  39. data/ext/atk/rbatkvalue.c +78 -0
  40. data/extconf.rb +49 -0
  41. data/lib/2.0/atk.so +0 -0
  42. data/lib/2.1/atk.so +0 -0
  43. data/lib/2.2/atk.so +0 -0
  44. data/lib/atk.rb +21 -0
  45. data/test/atk-test-utils.rb +21 -0
  46. data/test/run-test.rb +45 -0
  47. data/test/test-text-rectangle.rb +26 -0
  48. data/vendor/local/bin/libatk-1.0-0.dll +0 -0
  49. data/vendor/local/include/atk-1.0/atk/atk-enum-types.h +63 -0
  50. data/vendor/local/include/atk-1.0/atk/atk.h +61 -0
  51. data/vendor/local/include/atk-1.0/atk/atkaction.h +117 -0
  52. data/vendor/local/include/atk-1.0/atk/atkcomponent.h +225 -0
  53. data/vendor/local/include/atk-1.0/atk/atkdocument.h +113 -0
  54. data/vendor/local/include/atk-1.0/atk/atkeditabletext.h +109 -0
  55. data/vendor/local/include/atk-1.0/atk/atkgobjectaccessible.h +68 -0
  56. data/vendor/local/include/atk-1.0/atk/atkhyperlink.h +114 -0
  57. data/vendor/local/include/atk-1.0/atk/atkhyperlinkimpl.h +68 -0
  58. data/vendor/local/include/atk-1.0/atk/atkhypertext.h +78 -0
  59. data/vendor/local/include/atk-1.0/atk/atkimage.h +90 -0
  60. data/vendor/local/include/atk-1.0/atk/atkmisc.h +112 -0
  61. data/vendor/local/include/atk-1.0/atk/atknoopobject.h +59 -0
  62. data/vendor/local/include/atk-1.0/atk/atknoopobjectfactory.h +59 -0
  63. data/vendor/local/include/atk-1.0/atk/atkobject.h +751 -0
  64. data/vendor/local/include/atk-1.0/atk/atkobjectfactory.h +72 -0
  65. data/vendor/local/include/atk-1.0/atk/atkplug.h +66 -0
  66. data/vendor/local/include/atk-1.0/atk/atkrange.h +59 -0
  67. data/vendor/local/include/atk-1.0/atk/atkregistry.h +74 -0
  68. data/vendor/local/include/atk-1.0/atk/atkrelation.h +99 -0
  69. data/vendor/local/include/atk-1.0/atk/atkrelationset.h +91 -0
  70. data/vendor/local/include/atk-1.0/atk/atkrelationtype.h +83 -0
  71. data/vendor/local/include/atk-1.0/atk/atkselection.h +100 -0
  72. data/vendor/local/include/atk-1.0/atk/atksocket.h +71 -0
  73. data/vendor/local/include/atk-1.0/atk/atkstate.h +190 -0
  74. data/vendor/local/include/atk-1.0/atk/atkstateset.h +92 -0
  75. data/vendor/local/include/atk-1.0/atk/atkstreamablecontent.h +110 -0
  76. data/vendor/local/include/atk-1.0/atk/atktable.h +233 -0
  77. data/vendor/local/include/atk-1.0/atk/atktablecell.h +104 -0
  78. data/vendor/local/include/atk-1.0/atk/atktext.h +453 -0
  79. data/vendor/local/include/atk-1.0/atk/atkutil.h +357 -0
  80. data/vendor/local/include/atk-1.0/atk/atkvalue.h +163 -0
  81. data/vendor/local/include/atk-1.0/atk/atkversion.h +394 -0
  82. data/vendor/local/include/atk-1.0/atk/atkwindow.h +53 -0
  83. data/vendor/local/lib/girepository-1.0/Atk-1.0.typelib +0 -0
  84. data/vendor/local/lib/libatk-1.0.dll.a +0 -0
  85. data/vendor/local/lib/libatk-1.0.la +41 -0
  86. data/vendor/local/lib/pkgconfig/atk.pc +11 -0
  87. data/vendor/local/share/gir-1.0/Atk-1.0.gir +15525 -0
  88. data/vendor/local/share/gtk-doc/html/atk/AtkAction.html +477 -0
  89. data/vendor/local/share/gtk-doc/html/atk/AtkComponent.html +1146 -0
  90. data/vendor/local/share/gtk-doc/html/atk/AtkDocument.html +714 -0
  91. data/vendor/local/share/gtk-doc/html/atk/AtkEditableText.html +429 -0
  92. data/vendor/local/share/gtk-doc/html/atk/AtkGObjectAccessible.html +166 -0
  93. data/vendor/local/share/gtk-doc/html/atk/AtkHyperlink.html +570 -0
  94. data/vendor/local/share/gtk-doc/html/atk/AtkHypertext.html +286 -0
  95. data/vendor/local/share/gtk-doc/html/atk/AtkImage.html +319 -0
  96. data/vendor/local/share/gtk-doc/html/atk/AtkMisc.html +191 -0
  97. data/vendor/local/share/gtk-doc/html/atk/AtkNoOpObject.html +130 -0
  98. data/vendor/local/share/gtk-doc/html/atk/AtkNoOpObjectFactory.html +107 -0
  99. data/vendor/local/share/gtk-doc/html/atk/AtkObject.html +3056 -0
  100. data/vendor/local/share/gtk-doc/html/atk/AtkObjectFactory.html +214 -0
  101. data/vendor/local/share/gtk-doc/html/atk/AtkRegistry.html +265 -0
  102. data/vendor/local/share/gtk-doc/html/atk/AtkRelation.html +659 -0
  103. data/vendor/local/share/gtk-doc/html/atk/AtkRelationSet.html +413 -0
  104. data/vendor/local/share/gtk-doc/html/atk/AtkSelection.html +453 -0
  105. data/vendor/local/share/gtk-doc/html/atk/AtkStateSet.html +539 -0
  106. data/vendor/local/share/gtk-doc/html/atk/AtkStreamableContent.html +274 -0
  107. data/vendor/local/share/gtk-doc/html/atk/AtkTable.html +1790 -0
  108. data/vendor/local/share/gtk-doc/html/atk/AtkTableCell.html +497 -0
  109. data/vendor/local/share/gtk-doc/html/atk/AtkText.html +2547 -0
  110. data/vendor/local/share/gtk-doc/html/atk/AtkUtil.html +1111 -0
  111. data/vendor/local/share/gtk-doc/html/atk/AtkValue.html +743 -0
  112. data/vendor/local/share/gtk-doc/html/atk/AtkWindow.html +452 -0
  113. data/vendor/local/share/gtk-doc/html/atk/accessibles.html +49 -0
  114. data/vendor/local/share/gtk-doc/html/atk/api-index-1-12.html +51 -0
  115. data/vendor/local/share/gtk-doc/html/atk/api-index-1-13.html +41 -0
  116. data/vendor/local/share/gtk-doc/html/atk/api-index-1-20.html +35 -0
  117. data/vendor/local/share/gtk-doc/html/atk/api-index-1-22.html +45 -0
  118. data/vendor/local/share/gtk-doc/html/atk/api-index-1-3.html +41 -0
  119. data/vendor/local/share/gtk-doc/html/atk/api-index-1-30.html +41 -0
  120. data/vendor/local/share/gtk-doc/html/atk/api-index-1-4.html +35 -0
  121. data/vendor/local/share/gtk-doc/html/atk/api-index-1-6.html +35 -0
  122. data/vendor/local/share/gtk-doc/html/atk/api-index-1-9.html +39 -0
  123. data/vendor/local/share/gtk-doc/html/atk/api-index-2-10.html +35 -0
  124. data/vendor/local/share/gtk-doc/html/atk/api-index-2-12.html +78 -0
  125. data/vendor/local/share/gtk-doc/html/atk/api-index-2-2.html +53 -0
  126. data/vendor/local/share/gtk-doc/html/atk/api-index-2-8.html +47 -0
  127. data/vendor/local/share/gtk-doc/html/atk/api-index-deprecated.html +119 -0
  128. data/vendor/local/share/gtk-doc/html/atk/api-index-full.html +775 -0
  129. data/vendor/local/share/gtk-doc/html/atk/atk-AtkHyperlinkImpl.html +142 -0
  130. data/vendor/local/share/gtk-doc/html/atk/atk-AtkPlug.html +147 -0
  131. data/vendor/local/share/gtk-doc/html/atk/atk-AtkRange.html +328 -0
  132. data/vendor/local/share/gtk-doc/html/atk/atk-AtkSocket.html +207 -0
  133. data/vendor/local/share/gtk-doc/html/atk/atk-AtkState.html +556 -0
  134. data/vendor/local/share/gtk-doc/html/atk/atk-Versioning-Utilities.html +293 -0
  135. data/vendor/local/share/gtk-doc/html/atk/atk.devhelp2 +441 -0
  136. data/vendor/local/share/gtk-doc/html/atk/atkobject.html +33 -0
  137. data/vendor/local/share/gtk-doc/html/atk/data.html +49 -0
  138. data/vendor/local/share/gtk-doc/html/atk/deprecated.html +33 -0
  139. data/vendor/local/share/gtk-doc/html/atk/home.png +0 -0
  140. data/vendor/local/share/gtk-doc/html/atk/index.html +175 -0
  141. data/vendor/local/share/gtk-doc/html/atk/index.sgml +632 -0
  142. data/vendor/local/share/gtk-doc/html/atk/interfaces.html +89 -0
  143. data/vendor/local/share/gtk-doc/html/atk/left-insensitive.png +0 -0
  144. data/vendor/local/share/gtk-doc/html/atk/left.png +0 -0
  145. data/vendor/local/share/gtk-doc/html/atk/overview.html +47 -0
  146. data/vendor/local/share/gtk-doc/html/atk/right-insensitive.png +0 -0
  147. data/vendor/local/share/gtk-doc/html/atk/right.png +0 -0
  148. data/vendor/local/share/gtk-doc/html/atk/style.css +476 -0
  149. data/vendor/local/share/gtk-doc/html/atk/toolkit.html +33 -0
  150. data/vendor/local/share/gtk-doc/html/atk/up-insensitive.png +0 -0
  151. data/vendor/local/share/gtk-doc/html/atk/up.png +0 -0
  152. data/vendor/local/share/gtk-doc/html/atk/utilities.html +47 -0
  153. data/vendor/local/share/license/atk/AUTHORS +18 -0
  154. data/vendor/local/share/license/atk/COPYING +482 -0
  155. data/vendor/local/share/locale/af/LC_MESSAGES/atk10.mo +0 -0
  156. data/vendor/local/share/locale/am/LC_MESSAGES/atk10.mo +0 -0
  157. data/vendor/local/share/locale/an/LC_MESSAGES/atk10.mo +0 -0
  158. data/vendor/local/share/locale/ar/LC_MESSAGES/atk10.mo +0 -0
  159. data/vendor/local/share/locale/as/LC_MESSAGES/atk10.mo +0 -0
  160. data/vendor/local/share/locale/ast/LC_MESSAGES/atk10.mo +0 -0
  161. data/vendor/local/share/locale/az/LC_MESSAGES/atk10.mo +0 -0
  162. data/vendor/local/share/locale/be/LC_MESSAGES/atk10.mo +0 -0
  163. data/vendor/local/share/locale/be@latin/LC_MESSAGES/atk10.mo +0 -0
  164. data/vendor/local/share/locale/bg/LC_MESSAGES/atk10.mo +0 -0
  165. data/vendor/local/share/locale/bn/LC_MESSAGES/atk10.mo +0 -0
  166. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/atk10.mo +0 -0
  167. data/vendor/local/share/locale/bs/LC_MESSAGES/atk10.mo +0 -0
  168. data/vendor/local/share/locale/ca/LC_MESSAGES/atk10.mo +0 -0
  169. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/atk10.mo +0 -0
  170. data/vendor/local/share/locale/cs/LC_MESSAGES/atk10.mo +0 -0
  171. data/vendor/local/share/locale/cy/LC_MESSAGES/atk10.mo +0 -0
  172. data/vendor/local/share/locale/da/LC_MESSAGES/atk10.mo +0 -0
  173. data/vendor/local/share/locale/de/LC_MESSAGES/atk10.mo +0 -0
  174. data/vendor/local/share/locale/dz/LC_MESSAGES/atk10.mo +0 -0
  175. data/vendor/local/share/locale/el/LC_MESSAGES/atk10.mo +0 -0
  176. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/atk10.mo +0 -0
  177. data/vendor/local/share/locale/en_CA/LC_MESSAGES/atk10.mo +0 -0
  178. data/vendor/local/share/locale/en_GB/LC_MESSAGES/atk10.mo +0 -0
  179. data/vendor/local/share/locale/eo/LC_MESSAGES/atk10.mo +0 -0
  180. data/vendor/local/share/locale/es/LC_MESSAGES/atk10.mo +0 -0
  181. data/vendor/local/share/locale/et/LC_MESSAGES/atk10.mo +0 -0
  182. data/vendor/local/share/locale/eu/LC_MESSAGES/atk10.mo +0 -0
  183. data/vendor/local/share/locale/fa/LC_MESSAGES/atk10.mo +0 -0
  184. data/vendor/local/share/locale/fi/LC_MESSAGES/atk10.mo +0 -0
  185. data/vendor/local/share/locale/fr/LC_MESSAGES/atk10.mo +0 -0
  186. data/vendor/local/share/locale/ga/LC_MESSAGES/atk10.mo +0 -0
  187. data/vendor/local/share/locale/gl/LC_MESSAGES/atk10.mo +0 -0
  188. data/vendor/local/share/locale/gu/LC_MESSAGES/atk10.mo +0 -0
  189. data/vendor/local/share/locale/he/LC_MESSAGES/atk10.mo +0 -0
  190. data/vendor/local/share/locale/hi/LC_MESSAGES/atk10.mo +0 -0
  191. data/vendor/local/share/locale/hr/LC_MESSAGES/atk10.mo +0 -0
  192. data/vendor/local/share/locale/hu/LC_MESSAGES/atk10.mo +0 -0
  193. data/vendor/local/share/locale/hy/LC_MESSAGES/atk10.mo +0 -0
  194. data/vendor/local/share/locale/id/LC_MESSAGES/atk10.mo +0 -0
  195. data/vendor/local/share/locale/is/LC_MESSAGES/atk10.mo +0 -0
  196. data/vendor/local/share/locale/it/LC_MESSAGES/atk10.mo +0 -0
  197. data/vendor/local/share/locale/ja/LC_MESSAGES/atk10.mo +0 -0
  198. data/vendor/local/share/locale/ka/LC_MESSAGES/atk10.mo +0 -0
  199. data/vendor/local/share/locale/kk/LC_MESSAGES/atk10.mo +0 -0
  200. data/vendor/local/share/locale/km/LC_MESSAGES/atk10.mo +0 -0
  201. data/vendor/local/share/locale/kn/LC_MESSAGES/atk10.mo +0 -0
  202. data/vendor/local/share/locale/ko/LC_MESSAGES/atk10.mo +0 -0
  203. data/vendor/local/share/locale/ku/LC_MESSAGES/atk10.mo +0 -0
  204. data/vendor/local/share/locale/li/LC_MESSAGES/atk10.mo +0 -0
  205. data/vendor/local/share/locale/lt/LC_MESSAGES/atk10.mo +0 -0
  206. data/vendor/local/share/locale/lv/LC_MESSAGES/atk10.mo +0 -0
  207. data/vendor/local/share/locale/mai/LC_MESSAGES/atk10.mo +0 -0
  208. data/vendor/local/share/locale/mk/LC_MESSAGES/atk10.mo +0 -0
  209. data/vendor/local/share/locale/ml/LC_MESSAGES/atk10.mo +0 -0
  210. data/vendor/local/share/locale/mn/LC_MESSAGES/atk10.mo +0 -0
  211. data/vendor/local/share/locale/mr/LC_MESSAGES/atk10.mo +0 -0
  212. data/vendor/local/share/locale/ms/LC_MESSAGES/atk10.mo +0 -0
  213. data/vendor/local/share/locale/nb/LC_MESSAGES/atk10.mo +0 -0
  214. data/vendor/local/share/locale/ne/LC_MESSAGES/atk10.mo +0 -0
  215. data/vendor/local/share/locale/nl/LC_MESSAGES/atk10.mo +0 -0
  216. data/vendor/local/share/locale/nn/LC_MESSAGES/atk10.mo +0 -0
  217. data/vendor/local/share/locale/oc/LC_MESSAGES/atk10.mo +0 -0
  218. data/vendor/local/share/locale/or/LC_MESSAGES/atk10.mo +0 -0
  219. data/vendor/local/share/locale/pa/LC_MESSAGES/atk10.mo +0 -0
  220. data/vendor/local/share/locale/pl/LC_MESSAGES/atk10.mo +0 -0
  221. data/vendor/local/share/locale/ps/LC_MESSAGES/atk10.mo +0 -0
  222. data/vendor/local/share/locale/pt/LC_MESSAGES/atk10.mo +0 -0
  223. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/atk10.mo +0 -0
  224. data/vendor/local/share/locale/ro/LC_MESSAGES/atk10.mo +0 -0
  225. data/vendor/local/share/locale/ru/LC_MESSAGES/atk10.mo +0 -0
  226. data/vendor/local/share/locale/rw/LC_MESSAGES/atk10.mo +0 -0
  227. data/vendor/local/share/locale/si/LC_MESSAGES/atk10.mo +0 -0
  228. data/vendor/local/share/locale/sk/LC_MESSAGES/atk10.mo +0 -0
  229. data/vendor/local/share/locale/sl/LC_MESSAGES/atk10.mo +0 -0
  230. data/vendor/local/share/locale/sq/LC_MESSAGES/atk10.mo +0 -0
  231. data/vendor/local/share/locale/sr/LC_MESSAGES/atk10.mo +0 -0
  232. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/atk10.mo +0 -0
  233. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/atk10.mo +0 -0
  234. data/vendor/local/share/locale/sv/LC_MESSAGES/atk10.mo +0 -0
  235. data/vendor/local/share/locale/ta/LC_MESSAGES/atk10.mo +0 -0
  236. data/vendor/local/share/locale/te/LC_MESSAGES/atk10.mo +0 -0
  237. data/vendor/local/share/locale/tg/LC_MESSAGES/atk10.mo +0 -0
  238. data/vendor/local/share/locale/th/LC_MESSAGES/atk10.mo +0 -0
  239. data/vendor/local/share/locale/tk/LC_MESSAGES/atk10.mo +0 -0
  240. data/vendor/local/share/locale/tr/LC_MESSAGES/atk10.mo +0 -0
  241. data/vendor/local/share/locale/tt/LC_MESSAGES/atk10.mo +0 -0
  242. data/vendor/local/share/locale/ug/LC_MESSAGES/atk10.mo +0 -0
  243. data/vendor/local/share/locale/uk/LC_MESSAGES/atk10.mo +0 -0
  244. data/vendor/local/share/locale/vi/LC_MESSAGES/atk10.mo +0 -0
  245. data/vendor/local/share/locale/wa/LC_MESSAGES/atk10.mo +0 -0
  246. data/vendor/local/share/locale/xh/LC_MESSAGES/atk10.mo +0 -0
  247. data/vendor/local/share/locale/yi/LC_MESSAGES/atk10.mo +0 -0
  248. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/atk10.mo +0 -0
  249. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/atk10.mo +0 -0
  250. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/atk10.mo +0 -0
  251. data/vendor/local/share/locale/zu/LC_MESSAGES/atk10.mo +0 -0
  252. metadata +307 -0
@@ -0,0 +1,293 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>ATK - Accessibility Toolkit: Versioning macros</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="ATK - Accessibility Toolkit">
8
+ <link rel="up" href="utilities.html" title="Utilities">
9
+ <link rel="prev" href="AtkRegistry.html" title="AtkRegistry">
10
+ <link rel="next" href="deprecated.html" title="Deprecated Interfaces">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#atk-Versioning-Utilities.description" class="shortcut">Description</a></span>
19
+ </td>
20
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21
+ <td><a accesskey="u" href="utilities.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22
+ <td><a accesskey="p" href="AtkRegistry.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23
+ <td><a accesskey="n" href="deprecated.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24
+ </tr></table>
25
+ <div class="refentry">
26
+ <a name="atk-Versioning-Utilities"></a><div class="titlepage"></div>
27
+ <div class="refnamediv"><table width="100%"><tr>
28
+ <td valign="top">
29
+ <h2><span class="refentrytitle"><a name="atk-Versioning-Utilities.top_of_page"></a>Versioning macros</span></h2>
30
+ <p>Versioning macros — Variables and functions to check the ATK version</p>
31
+ </td>
32
+ <td class="gallery_image" valign="top" align="right"></td>
33
+ </tr></table></div>
34
+ <div class="refsect1">
35
+ <a name="atk-Versioning-Utilities.functions"></a><h2>Functions</h2>
36
+ <div class="informaltable"><table width="100%" border="0">
37
+ <colgroup>
38
+ <col width="150px" class="functions_return">
39
+ <col class="functions_name">
40
+ </colgroup>
41
+ <tbody>
42
+ <tr>
43
+ <td class="define_keyword">#define</td>
44
+ <td class="function_name"><a class="link" href="atk-Versioning-Utilities.html#ATK-BINARY-AGE:CAPS" title="ATK_BINARY_AGE">ATK_BINARY_AGE</a></td>
45
+ </tr>
46
+ <tr>
47
+ <td class="define_keyword">#define</td>
48
+ <td class="function_name"><a class="link" href="atk-Versioning-Utilities.html#ATK-INTERFACE-AGE:CAPS" title="ATK_INTERFACE_AGE">ATK_INTERFACE_AGE</a></td>
49
+ </tr>
50
+ <tr>
51
+ <td class="function_type">
52
+ <span class="returnvalue">guint</span>
53
+ </td>
54
+ <td class="function_name">
55
+ <a class="link" href="atk-Versioning-Utilities.html#atk-get-major-version" title="atk_get_major_version ()">atk_get_major_version</a> <span class="c_punctuation">()</span>
56
+ </td>
57
+ </tr>
58
+ <tr>
59
+ <td class="function_type">
60
+ <span class="returnvalue">guint</span>
61
+ </td>
62
+ <td class="function_name">
63
+ <a class="link" href="atk-Versioning-Utilities.html#atk-get-minor-version" title="atk_get_minor_version ()">atk_get_minor_version</a> <span class="c_punctuation">()</span>
64
+ </td>
65
+ </tr>
66
+ <tr>
67
+ <td class="function_type">
68
+ <span class="returnvalue">guint</span>
69
+ </td>
70
+ <td class="function_name">
71
+ <a class="link" href="atk-Versioning-Utilities.html#atk-get-micro-version" title="atk_get_micro_version ()">atk_get_micro_version</a> <span class="c_punctuation">()</span>
72
+ </td>
73
+ </tr>
74
+ <tr>
75
+ <td class="function_type">
76
+ <span class="returnvalue">guint</span>
77
+ </td>
78
+ <td class="function_name">
79
+ <a class="link" href="atk-Versioning-Utilities.html#atk-get-binary-age" title="atk_get_binary_age ()">atk_get_binary_age</a> <span class="c_punctuation">()</span>
80
+ </td>
81
+ </tr>
82
+ <tr>
83
+ <td class="function_type">
84
+ <span class="returnvalue">guint</span>
85
+ </td>
86
+ <td class="function_name">
87
+ <a class="link" href="atk-Versioning-Utilities.html#atk-get-interface-age" title="atk_get_interface_age ()">atk_get_interface_age</a> <span class="c_punctuation">()</span>
88
+ </td>
89
+ </tr>
90
+ <tr>
91
+ <td class="define_keyword">#define</td>
92
+ <td class="function_name"><a class="link" href="atk-Versioning-Utilities.html#ATK-MAJOR-VERSION:CAPS" title="ATK_MAJOR_VERSION">ATK_MAJOR_VERSION</a></td>
93
+ </tr>
94
+ <tr>
95
+ <td class="define_keyword">#define</td>
96
+ <td class="function_name"><a class="link" href="atk-Versioning-Utilities.html#ATK-MINOR-VERSION:CAPS" title="ATK_MINOR_VERSION">ATK_MINOR_VERSION</a></td>
97
+ </tr>
98
+ <tr>
99
+ <td class="define_keyword">#define</td>
100
+ <td class="function_name"><a class="link" href="atk-Versioning-Utilities.html#ATK-MICRO-VERSION:CAPS" title="ATK_MICRO_VERSION">ATK_MICRO_VERSION</a></td>
101
+ </tr>
102
+ <tr>
103
+ <td class="define_keyword">#define</td>
104
+ <td class="function_name">
105
+ <a class="link" href="atk-Versioning-Utilities.html#ATK-CHECK-VERSION:CAPS" title="ATK_CHECK_VERSION()">ATK_CHECK_VERSION</a><span class="c_punctuation">()</span>
106
+ </td>
107
+ </tr>
108
+ </tbody>
109
+ </table></div>
110
+ </div>
111
+ <div class="refsect1">
112
+ <a name="atk-Versioning-Utilities.description"></a><h2>Description</h2>
113
+ <p>ATK provides a set of macros and methods for checking the version
114
+ of the library at compile and run time.</p>
115
+ </div>
116
+ <div class="refsect1">
117
+ <a name="atk-Versioning-Utilities.functions_details"></a><h2>Functions</h2>
118
+ <div class="refsect2">
119
+ <a name="ATK-BINARY-AGE:CAPS"></a><h3>ATK_BINARY_AGE</h3>
120
+ <pre class="programlisting">#define ATK_BINARY_AGE (21410)
121
+ </pre>
122
+ <p>Like <a class="link" href="atk-Versioning-Utilities.html#atk-get-binary-age" title="atk_get_binary_age ()"><code class="function">atk_get_binary_age()</code></a>, but from the headers used at
123
+ application compile time, rather than from the library linked
124
+ against at application run time.</p>
125
+ <p class="since">Since 2.7.4</p>
126
+ </div>
127
+ <hr>
128
+ <div class="refsect2">
129
+ <a name="ATK-INTERFACE-AGE:CAPS"></a><h3>ATK_INTERFACE_AGE</h3>
130
+ <pre class="programlisting">#define ATK_INTERFACE_AGE (1)
131
+ </pre>
132
+ <p>Like <a class="link" href="atk-Versioning-Utilities.html#atk-get-interface-age" title="atk_get_interface_age ()"><code class="function">atk_get_interface_age()</code></a>, but from the headers used at
133
+ application compile time, rather than from the library linked
134
+ against at application run time.</p>
135
+ <p class="since">Since 2.7.4</p>
136
+ </div>
137
+ <hr>
138
+ <div class="refsect2">
139
+ <a name="atk-get-major-version"></a><h3>atk_get_major_version ()</h3>
140
+ <pre class="programlisting"><span class="returnvalue">guint</span>
141
+ atk_get_major_version (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
142
+ <p>Returns the major version number of the ATK library. (e.g. in ATK
143
+ version 2.7.4 this is 2.)</p>
144
+ <p>This function is in the library, so it represents the ATK library
145
+ your code is running against. In contrast, the <a class="link" href="atk-Versioning-Utilities.html#ATK-MAJOR-VERSION:CAPS" title="ATK_MAJOR_VERSION"><span class="type">ATK_MAJOR_VERSION</span></a>
146
+ macro represents the major version of the ATK headers you have
147
+ included when compiling your code.</p>
148
+ <div class="refsect3">
149
+ <a name="id-1.8.5.5.4.6"></a><h4>Returns</h4>
150
+ <p> the major version number of the ATK library</p>
151
+ <p></p>
152
+ </div>
153
+ <p class="since">Since 2.8</p>
154
+ </div>
155
+ <hr>
156
+ <div class="refsect2">
157
+ <a name="atk-get-minor-version"></a><h3>atk_get_minor_version ()</h3>
158
+ <pre class="programlisting"><span class="returnvalue">guint</span>
159
+ atk_get_minor_version (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
160
+ <p>Returns the minor version number of the ATK library. (e.g. in ATK
161
+ version 2.7.4 this is 7.)</p>
162
+ <p>This function is in the library, so it represents the ATK library
163
+ your code is are running against. In contrast, the
164
+ <a class="link" href="atk-Versioning-Utilities.html#ATK-MINOR-VERSION:CAPS" title="ATK_MINOR_VERSION"><span class="type">ATK_MINOR_VERSION</span></a> macro represents the minor version of the ATK
165
+ headers you have included when compiling your code.</p>
166
+ <div class="refsect3">
167
+ <a name="id-1.8.5.5.5.6"></a><h4>Returns</h4>
168
+ <p> the minor version number of the ATK library</p>
169
+ <p></p>
170
+ </div>
171
+ <p class="since">Since 2.8</p>
172
+ </div>
173
+ <hr>
174
+ <div class="refsect2">
175
+ <a name="atk-get-micro-version"></a><h3>atk_get_micro_version ()</h3>
176
+ <pre class="programlisting"><span class="returnvalue">guint</span>
177
+ atk_get_micro_version (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
178
+ <p>Returns the micro version number of the ATK library. (e.g. in ATK
179
+ version 2.7.4 this is 4.)</p>
180
+ <p>This function is in the library, so it represents the ATK library
181
+ your code is are running against. In contrast, the
182
+ <a class="link" href="atk-Versioning-Utilities.html#ATK-MICRO-VERSION:CAPS" title="ATK_MICRO_VERSION"><span class="type">ATK_MICRO_VERSION</span></a> macro represents the micro version of the ATK
183
+ headers you have included when compiling your code.</p>
184
+ <div class="refsect3">
185
+ <a name="id-1.8.5.5.6.6"></a><h4>Returns</h4>
186
+ <p> the micro version number of the ATK library</p>
187
+ <p></p>
188
+ </div>
189
+ <p class="since">Since 2.8</p>
190
+ </div>
191
+ <hr>
192
+ <div class="refsect2">
193
+ <a name="atk-get-binary-age"></a><h3>atk_get_binary_age ()</h3>
194
+ <pre class="programlisting"><span class="returnvalue">guint</span>
195
+ atk_get_binary_age (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
196
+ <p>Returns the binary age as passed to libtool when building the ATK
197
+ library the process is running against.</p>
198
+ <div class="refsect3">
199
+ <a name="id-1.8.5.5.7.5"></a><h4>Returns</h4>
200
+ <p> the binary age of the ATK library</p>
201
+ <p></p>
202
+ </div>
203
+ <p class="since">Since 2.8</p>
204
+ </div>
205
+ <hr>
206
+ <div class="refsect2">
207
+ <a name="atk-get-interface-age"></a><h3>atk_get_interface_age ()</h3>
208
+ <pre class="programlisting"><span class="returnvalue">guint</span>
209
+ atk_get_interface_age (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
210
+ <p>Returns the interface age as passed to libtool when building the
211
+ ATK library the process is running against.</p>
212
+ <div class="refsect3">
213
+ <a name="id-1.8.5.5.8.5"></a><h4>Returns</h4>
214
+ <p> the interface age of the ATK library</p>
215
+ <p></p>
216
+ </div>
217
+ <p class="since">Since 2.8</p>
218
+ </div>
219
+ <hr>
220
+ <div class="refsect2">
221
+ <a name="ATK-MAJOR-VERSION:CAPS"></a><h3>ATK_MAJOR_VERSION</h3>
222
+ <pre class="programlisting">#define ATK_MAJOR_VERSION (2)
223
+ </pre>
224
+ <p>Like <a class="link" href="atk-Versioning-Utilities.html#atk-get-major-version" title="atk_get_major_version ()"><code class="function">atk_get_major_version()</code></a>, but from the headers used at
225
+ application compile time, rather than from the library linked
226
+ against at application run time.</p>
227
+ <p class="since">Since 2.7.4</p>
228
+ </div>
229
+ <hr>
230
+ <div class="refsect2">
231
+ <a name="ATK-MINOR-VERSION:CAPS"></a><h3>ATK_MINOR_VERSION</h3>
232
+ <pre class="programlisting">#define ATK_MINOR_VERSION (14)
233
+ </pre>
234
+ <p>Like <a class="link" href="atk-Versioning-Utilities.html#atk-get-minor-version" title="atk_get_minor_version ()"><code class="function">atk_get_minor_version()</code></a>, but from the headers used at
235
+ application compile time, rather than from the library linked
236
+ against at application run time.</p>
237
+ <p class="since">Since 2.7.4</p>
238
+ </div>
239
+ <hr>
240
+ <div class="refsect2">
241
+ <a name="ATK-MICRO-VERSION:CAPS"></a><h3>ATK_MICRO_VERSION</h3>
242
+ <pre class="programlisting">#define ATK_MICRO_VERSION (0)
243
+ </pre>
244
+ <p>Like <a class="link" href="atk-Versioning-Utilities.html#atk-get-micro-version" title="atk_get_micro_version ()"><code class="function">atk_get_micro_version()</code></a>, but from the headers used at
245
+ application compile time, rather than from the library linked
246
+ against at application run time.</p>
247
+ <p class="since">Since 2.7.4</p>
248
+ </div>
249
+ <hr>
250
+ <div class="refsect2">
251
+ <a name="ATK-CHECK-VERSION:CAPS"></a><h3>ATK_CHECK_VERSION()</h3>
252
+ <pre class="programlisting">#define ATK_CHECK_VERSION(major,minor,micro)</pre>
253
+ <p>Returns <code class="literal">TRUE</code> if the version of the ATK header files is the same as
254
+ or newer than the passed-in version.</p>
255
+ <div class="refsect3">
256
+ <a name="id-1.8.5.5.12.5"></a><h4>Parameters</h4>
257
+ <div class="informaltable"><table width="100%" border="0">
258
+ <colgroup>
259
+ <col width="150px" class="parameters_name">
260
+ <col class="parameters_description">
261
+ <col width="200px" class="parameters_annotations">
262
+ </colgroup>
263
+ <tbody>
264
+ <tr>
265
+ <td class="parameter_name"><p>major</p></td>
266
+ <td class="parameter_description"><p>major version (e.g. 1 for version 1.2.5)</p></td>
267
+ <td class="parameter_annotations"> </td>
268
+ </tr>
269
+ <tr>
270
+ <td class="parameter_name"><p>minor</p></td>
271
+ <td class="parameter_description"><p>minor version (e.g. 2 for version 1.2.5)</p></td>
272
+ <td class="parameter_annotations"> </td>
273
+ </tr>
274
+ <tr>
275
+ <td class="parameter_name"><p>micro</p></td>
276
+ <td class="parameter_description"><p>micro version (e.g. 5 for version 1.2.5)</p></td>
277
+ <td class="parameter_annotations"> </td>
278
+ </tr>
279
+ </tbody>
280
+ </table></div>
281
+ </div>
282
+ <p class="since">Since 2.7.4</p>
283
+ </div>
284
+ </div>
285
+ <div class="refsect1">
286
+ <a name="atk-Versioning-Utilities.other_details"></a><h2>Types and Values</h2>
287
+ </div>
288
+ </div>
289
+ <div class="footer">
290
+ <hr>
291
+ Generated by GTK-Doc V1.21.1</div>
292
+ </body>
293
+ </html>
@@ -0,0 +1,441 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
3
+ <book xmlns="http://www.devhelp.net/book" title="ATK - Accessibility Toolkit" link="index.html" author="" name="atk" version="2" language="c">
4
+ <chapters>
5
+ <sub name="Overview" link="overview.html"/>
6
+ <sub name="Base accessibility object" link="atkobject.html">
7
+ <sub name="AtkObject" link="AtkObject.html"/>
8
+ </sub>
9
+ <sub name="Event and toolkit support" link="toolkit.html">
10
+ <sub name="AtkUtil" link="AtkUtil.html"/>
11
+ </sub>
12
+ <sub name="ATK Interfaces" link="interfaces.html">
13
+ <sub name="AtkAction" link="AtkAction.html"/>
14
+ <sub name="AtkComponent" link="AtkComponent.html"/>
15
+ <sub name="AtkDocument" link="AtkDocument.html"/>
16
+ <sub name="AtkEditableText" link="AtkEditableText.html"/>
17
+ <sub name="AtkHyperlinImpl" link="atk-AtkHyperlinkImpl.html"/>
18
+ <sub name="AtkHypertext" link="AtkHypertext.html"/>
19
+ <sub name="AtkImage" link="AtkImage.html"/>
20
+ <sub name="AtkSelection" link="AtkSelection.html"/>
21
+ <sub name="AtkStreamableContent" link="AtkStreamableContent.html"/>
22
+ <sub name="AtkTable" link="AtkTable.html"/>
23
+ <sub name="AtkTableCell" link="AtkTableCell.html"/>
24
+ <sub name="AtkText" link="AtkText.html"/>
25
+ <sub name="AtkValue" link="AtkValue.html"/>
26
+ <sub name="AtkWindow" link="AtkWindow.html"/>
27
+ </sub>
28
+ <sub name="Basic accessible data types" link="data.html">
29
+ <sub name="AtkRange" link="atk-AtkRange.html"/>
30
+ <sub name="AtkRelation" link="AtkRelation.html"/>
31
+ <sub name="AtkRelationSet" link="AtkRelationSet.html"/>
32
+ <sub name="AtkState" link="atk-AtkState.html"/>
33
+ <sub name="AtkStateSet" link="AtkStateSet.html"/>
34
+ </sub>
35
+ <sub name="Custom accessible objects" link="accessibles.html">
36
+ <sub name="AtkGObjectAccessible" link="AtkGObjectAccessible.html"/>
37
+ <sub name="AtkHyperlink" link="AtkHyperlink.html"/>
38
+ <sub name="AtkNoOpObject" link="AtkNoOpObject.html"/>
39
+ <sub name="AtkPlug" link="atk-AtkPlug.html"/>
40
+ <sub name="AtkSocket" link="atk-AtkSocket.html"/>
41
+ </sub>
42
+ <sub name="Utilities" link="utilities.html">
43
+ <sub name="AtkNoOpObjectFactory" link="AtkNoOpObjectFactory.html"/>
44
+ <sub name="AtkObjectFactory" link="AtkObjectFactory.html"/>
45
+ <sub name="AtkRegistry" link="AtkRegistry.html"/>
46
+ <sub name="Versioning macros" link="atk-Versioning-Utilities.html"/>
47
+ </sub>
48
+ <sub name="Deprecated Interfaces" link="deprecated.html">
49
+ <sub name="AtkMisc" link="AtkMisc.html"/>
50
+ </sub>
51
+ <sub name="Index of all symbols" link="api-index-full.html"/>
52
+ <sub name="Index of deprecated symbols" link="api-index-deprecated.html"/>
53
+ <sub name="Index of new symbols in 1.3" link="api-index-1-3.html"/>
54
+ <sub name="Index of new symbols in 1.4" link="api-index-1-4.html"/>
55
+ <sub name="Index of new symbols in 1.6" link="api-index-1-6.html"/>
56
+ <sub name="Index of new symbols in 1.9" link="api-index-1-9.html"/>
57
+ <sub name="Index of new symbols in 1.12" link="api-index-1-12.html"/>
58
+ <sub name="Index of new symbols in 1.13" link="api-index-1-13.html"/>
59
+ <sub name="Index of new symbols in 1.20" link="api-index-1-20.html"/>
60
+ <sub name="Index of new symbols in 1.22" link="api-index-1-22.html"/>
61
+ <sub name="Index of new symbols in 1.30" link="api-index-1-30.html"/>
62
+ <sub name="Index of new symbols in 2.2" link="api-index-2-2.html"/>
63
+ <sub name="Index of new symbols in 2.8" link="api-index-2-8.html"/>
64
+ <sub name="Index of new symbols in 2.10" link="api-index-2-10.html"/>
65
+ <sub name="Index of new symbols in 2.12" link="api-index-2-12.html"/>
66
+ </chapters>
67
+ <functions>
68
+ <keyword type="function" name="atk_role_register ()" link="AtkObject.html#atk-role-register" deprecated=""/>
69
+ <keyword type="function" name="AtkFunction ()" link="AtkObject.html#AtkFunction"/>
70
+ <keyword type="function" name="AtkPropertyChangeHandler ()" link="AtkObject.html#AtkPropertyChangeHandler" deprecated="Since 2.12."/>
71
+ <keyword type="function" name="atk_implementor_ref_accessible ()" link="AtkObject.html#atk-implementor-ref-accessible"/>
72
+ <keyword type="function" name="atk_object_get_name ()" link="AtkObject.html#atk-object-get-name"/>
73
+ <keyword type="function" name="atk_object_get_description ()" link="AtkObject.html#atk-object-get-description"/>
74
+ <keyword type="function" name="atk_object_get_parent ()" link="AtkObject.html#atk-object-get-parent"/>
75
+ <keyword type="function" name="atk_object_peek_parent ()" link="AtkObject.html#atk-object-peek-parent"/>
76
+ <keyword type="function" name="atk_object_get_n_accessible_children ()" link="AtkObject.html#atk-object-get-n-accessible-children"/>
77
+ <keyword type="function" name="atk_object_ref_accessible_child ()" link="AtkObject.html#atk-object-ref-accessible-child"/>
78
+ <keyword type="function" name="atk_object_ref_relation_set ()" link="AtkObject.html#atk-object-ref-relation-set"/>
79
+ <keyword type="function" name="atk_object_get_layer ()" link="AtkObject.html#atk-object-get-layer" deprecated="Use atk_component_get_layer instead."/>
80
+ <keyword type="function" name="atk_object_get_mdi_zorder ()" link="AtkObject.html#atk-object-get-mdi-zorder" deprecated="Use atk_component_get_mdi_zorder instead."/>
81
+ <keyword type="function" name="atk_object_get_role ()" link="AtkObject.html#atk-object-get-role"/>
82
+ <keyword type="function" name="atk_object_ref_state_set ()" link="AtkObject.html#atk-object-ref-state-set"/>
83
+ <keyword type="function" name="atk_object_get_index_in_parent ()" link="AtkObject.html#atk-object-get-index-in-parent"/>
84
+ <keyword type="function" name="atk_object_set_name ()" link="AtkObject.html#atk-object-set-name"/>
85
+ <keyword type="function" name="atk_object_set_description ()" link="AtkObject.html#atk-object-set-description"/>
86
+ <keyword type="function" name="atk_object_set_parent ()" link="AtkObject.html#atk-object-set-parent"/>
87
+ <keyword type="function" name="atk_object_set_role ()" link="AtkObject.html#atk-object-set-role"/>
88
+ <keyword type="function" name="atk_object_connect_property_change_handler ()" link="AtkObject.html#atk-object-connect-property-change-handler" deprecated=""/>
89
+ <keyword type="function" name="atk_object_remove_property_change_handler ()" link="AtkObject.html#atk-object-remove-property-change-handler" deprecated=""/>
90
+ <keyword type="function" name="atk_object_notify_state_change ()" link="AtkObject.html#atk-object-notify-state-change"/>
91
+ <keyword type="function" name="atk_object_initialize ()" link="AtkObject.html#atk-object-initialize"/>
92
+ <keyword type="function" name="atk_object_add_relationship ()" link="AtkObject.html#atk-object-add-relationship"/>
93
+ <keyword type="function" name="atk_object_remove_relationship ()" link="AtkObject.html#atk-object-remove-relationship"/>
94
+ <keyword type="function" name="atk_object_get_attributes ()" link="AtkObject.html#atk-object-get-attributes" since="1.12"/>
95
+ <keyword type="function" name="atk_object_get_object_locale ()" link="AtkObject.html#atk-object-get-object-locale" since="2.8"/>
96
+ <keyword type="function" name="atk_role_get_name ()" link="AtkObject.html#atk-role-get-name"/>
97
+ <keyword type="function" name="atk_role_get_localized_name ()" link="AtkObject.html#atk-role-get-localized-name"/>
98
+ <keyword type="function" name="atk_role_for_name ()" link="AtkObject.html#atk-role-for-name"/>
99
+ <keyword type="struct" name="struct AtkObject" link="AtkObject.html#AtkObject-struct"/>
100
+ <keyword type="enum" name="enum AtkRole" link="AtkObject.html#AtkRole"/>
101
+ <keyword type="enum" name="enum AtkLayer" link="AtkObject.html#AtkLayer"/>
102
+ <keyword type="struct" name="AtkImplementor" link="AtkObject.html#AtkImplementor"/>
103
+ <keyword type="struct" name="struct AtkAttribute" link="AtkObject.html#AtkAttribute"/>
104
+ <keyword type="typedef" name="AtkAttributeSet" link="AtkObject.html#AtkAttributeSet"/>
105
+ <keyword type="struct" name="AtkPropertyValues" link="AtkObject.html#AtkPropertyValues"/>
106
+ <keyword type="property" name="The “accessible-component-layer” property" link="AtkObject.html#AtkObject--accessible-component-layer"/>
107
+ <keyword type="property" name="The “accessible-component-mdi-zorder” property" link="AtkObject.html#AtkObject--accessible-component-mdi-zorder"/>
108
+ <keyword type="property" name="The “accessible-description” property" link="AtkObject.html#AtkObject--accessible-description"/>
109
+ <keyword type="property" name="The “accessible-hypertext-nlinks” property" link="AtkObject.html#AtkObject--accessible-hypertext-nlinks"/>
110
+ <keyword type="property" name="The “accessible-name” property" link="AtkObject.html#AtkObject--accessible-name"/>
111
+ <keyword type="property" name="The “accessible-parent” property" link="AtkObject.html#AtkObject--accessible-parent"/>
112
+ <keyword type="property" name="The “accessible-role” property" link="AtkObject.html#AtkObject--accessible-role"/>
113
+ <keyword type="property" name="The “accessible-table-caption” property" link="AtkObject.html#AtkObject--accessible-table-caption"/>
114
+ <keyword type="property" name="The “accessible-table-caption-object” property" link="AtkObject.html#AtkObject--accessible-table-caption-object"/>
115
+ <keyword type="property" name="The “accessible-table-column-description” property" link="AtkObject.html#AtkObject--accessible-table-column-description"/>
116
+ <keyword type="property" name="The “accessible-table-column-header” property" link="AtkObject.html#AtkObject--accessible-table-column-header"/>
117
+ <keyword type="property" name="The “accessible-table-row-description” property" link="AtkObject.html#AtkObject--accessible-table-row-description"/>
118
+ <keyword type="property" name="The “accessible-table-row-header” property" link="AtkObject.html#AtkObject--accessible-table-row-header"/>
119
+ <keyword type="property" name="The “accessible-table-summary” property" link="AtkObject.html#AtkObject--accessible-table-summary"/>
120
+ <keyword type="property" name="The “accessible-value” property" link="AtkObject.html#AtkObject--accessible-value"/>
121
+ <keyword type="signal" name="The “active-descendant-changed” signal" link="AtkObject.html#AtkObject-active-descendant-changed"/>
122
+ <keyword type="signal" name="The “children-changed” signal" link="AtkObject.html#AtkObject-children-changed"/>
123
+ <keyword type="signal" name="The “focus-event” signal" link="AtkObject.html#AtkObject-focus-event"/>
124
+ <keyword type="signal" name="The “property-change” signal" link="AtkObject.html#AtkObject-property-change"/>
125
+ <keyword type="signal" name="The “state-change” signal" link="AtkObject.html#AtkObject-state-change"/>
126
+ <keyword type="signal" name="The “visible-data-changed” signal" link="AtkObject.html#AtkObject-visible-data-changed"/>
127
+ <keyword type="function" name="atk_add_focus_tracker ()" link="AtkUtil.html#atk-add-focus-tracker" deprecated=""/>
128
+ <keyword type="function" name="atk_remove_focus_tracker ()" link="AtkUtil.html#atk-remove-focus-tracker" deprecated=""/>
129
+ <keyword type="function" name="atk_focus_tracker_init ()" link="AtkUtil.html#atk-focus-tracker-init" deprecated=""/>
130
+ <keyword type="function" name="atk_focus_tracker_notify ()" link="AtkUtil.html#atk-focus-tracker-notify" deprecated=""/>
131
+ <keyword type="function" name="AtkEventListener ()" link="AtkUtil.html#AtkEventListener"/>
132
+ <keyword type="function" name="AtkEventListenerInit ()" link="AtkUtil.html#AtkEventListenerInit"/>
133
+ <keyword type="function" name="atk_add_global_event_listener ()" link="AtkUtil.html#atk-add-global-event-listener"/>
134
+ <keyword type="function" name="atk_remove_global_event_listener ()" link="AtkUtil.html#atk-remove-global-event-listener"/>
135
+ <keyword type="function" name="AtkKeySnoopFunc ()" link="AtkUtil.html#AtkKeySnoopFunc"/>
136
+ <keyword type="function" name="atk_add_key_event_listener ()" link="AtkUtil.html#atk-add-key-event-listener"/>
137
+ <keyword type="function" name="atk_remove_key_event_listener ()" link="AtkUtil.html#atk-remove-key-event-listener"/>
138
+ <keyword type="function" name="atk_get_root ()" link="AtkUtil.html#atk-get-root"/>
139
+ <keyword type="function" name="atk_get_focus_object ()" link="AtkUtil.html#atk-get-focus-object" since="1.6"/>
140
+ <keyword type="function" name="atk_get_toolkit_name ()" link="AtkUtil.html#atk-get-toolkit-name"/>
141
+ <keyword type="function" name="atk_get_toolkit_version ()" link="AtkUtil.html#atk-get-toolkit-version"/>
142
+ <keyword type="function" name="atk_get_version ()" link="AtkUtil.html#atk-get-version" since="1.20"/>
143
+ <keyword type="macro" name="ATK_DEFINE_TYPE()" link="AtkUtil.html#ATK-DEFINE-TYPE:CAPS" since="1.22"/>
144
+ <keyword type="macro" name="ATK_DEFINE_TYPE_EXTENDED()" link="AtkUtil.html#ATK-DEFINE-TYPE-EXTENDED:CAPS" since="1.22"/>
145
+ <keyword type="macro" name="ATK_DEFINE_TYPE_WITH_CODE()" link="AtkUtil.html#ATK-DEFINE-TYPE-WITH-CODE:CAPS" since="1.22"/>
146
+ <keyword type="macro" name="ATK_DEFINE_ABSTRACT_TYPE()" link="AtkUtil.html#ATK-DEFINE-ABSTRACT-TYPE:CAPS" since="1.22"/>
147
+ <keyword type="macro" name="ATK_DEFINE_ABSTRACT_TYPE_WITH_CODE()" link="AtkUtil.html#ATK-DEFINE-ABSTRACT-TYPE-WITH-CODE:CAPS" since="1.22"/>
148
+ <keyword type="struct" name="struct AtkUtil" link="AtkUtil.html#AtkUtil-struct"/>
149
+ <keyword type="struct" name="struct AtkUtilClass" link="AtkUtil.html#AtkUtilClass"/>
150
+ <keyword type="enum" name="enum AtkCoordType" link="AtkUtil.html#AtkCoordType"/>
151
+ <keyword type="struct" name="struct AtkKeyEventStruct" link="AtkUtil.html#AtkKeyEventStruct"/>
152
+ <keyword type="enum" name="enum AtkKeyEventType" link="AtkUtil.html#AtkKeyEventType"/>
153
+ <keyword type="function" name="atk_action_do_action ()" link="AtkAction.html#atk-action-do-action"/>
154
+ <keyword type="function" name="atk_action_get_n_actions ()" link="AtkAction.html#atk-action-get-n-actions"/>
155
+ <keyword type="function" name="atk_action_get_description ()" link="AtkAction.html#atk-action-get-description"/>
156
+ <keyword type="function" name="atk_action_get_name ()" link="AtkAction.html#atk-action-get-name"/>
157
+ <keyword type="function" name="atk_action_get_localized_name ()" link="AtkAction.html#atk-action-get-localized-name"/>
158
+ <keyword type="function" name="atk_action_get_keybinding ()" link="AtkAction.html#atk-action-get-keybinding"/>
159
+ <keyword type="function" name="atk_action_set_description ()" link="AtkAction.html#atk-action-set-description"/>
160
+ <keyword type="struct" name="AtkAction" link="AtkAction.html#AtkAction-struct"/>
161
+ <keyword type="struct" name="struct AtkActionIface" link="AtkAction.html#AtkActionIface"/>
162
+ <keyword type="function" name="AtkFocusHandler ()" link="AtkComponent.html#AtkFocusHandler" deprecated=""/>
163
+ <keyword type="function" name="atk_component_add_focus_handler ()" link="AtkComponent.html#atk-component-add-focus-handler" deprecated=""/>
164
+ <keyword type="function" name="atk_component_contains ()" link="AtkComponent.html#atk-component-contains"/>
165
+ <keyword type="function" name="atk_component_get_extents ()" link="AtkComponent.html#atk-component-get-extents"/>
166
+ <keyword type="function" name="atk_component_get_layer ()" link="AtkComponent.html#atk-component-get-layer"/>
167
+ <keyword type="function" name="atk_component_get_mdi_zorder ()" link="AtkComponent.html#atk-component-get-mdi-zorder"/>
168
+ <keyword type="function" name="atk_component_get_position ()" link="AtkComponent.html#atk-component-get-position" deprecated="Since 2.12. Use atk_component_get_extents() instead."/>
169
+ <keyword type="function" name="atk_component_get_size ()" link="AtkComponent.html#atk-component-get-size" deprecated="Since 2.12. Use atk_component_get_extents() instead."/>
170
+ <keyword type="function" name="atk_component_grab_focus ()" link="AtkComponent.html#atk-component-grab-focus"/>
171
+ <keyword type="function" name="atk_component_ref_accessible_at_point ()" link="AtkComponent.html#atk-component-ref-accessible-at-point"/>
172
+ <keyword type="function" name="atk_component_remove_focus_handler ()" link="AtkComponent.html#atk-component-remove-focus-handler" deprecated=""/>
173
+ <keyword type="function" name="atk_component_set_extents ()" link="AtkComponent.html#atk-component-set-extents"/>
174
+ <keyword type="function" name="atk_component_set_position ()" link="AtkComponent.html#atk-component-set-position"/>
175
+ <keyword type="function" name="atk_component_set_size ()" link="AtkComponent.html#atk-component-set-size"/>
176
+ <keyword type="function" name="atk_component_get_alpha ()" link="AtkComponent.html#atk-component-get-alpha" since="1.12"/>
177
+ <keyword type="struct" name="AtkComponent" link="AtkComponent.html#AtkComponent-struct"/>
178
+ <keyword type="struct" name="struct AtkComponentIface" link="AtkComponent.html#AtkComponentIface"/>
179
+ <keyword type="struct" name="struct AtkRectangle" link="AtkComponent.html#AtkRectangle"/>
180
+ <keyword type="signal" name="The “bounds-changed” signal" link="AtkComponent.html#AtkComponent-bounds-changed"/>
181
+ <keyword type="function" name="atk_document_get_document_type ()" link="AtkDocument.html#atk-document-get-document-type" deprecated=""/>
182
+ <keyword type="function" name="atk_document_get_document ()" link="AtkDocument.html#atk-document-get-document" deprecated=""/>
183
+ <keyword type="function" name="atk_document_get_attribute_value ()" link="AtkDocument.html#atk-document-get-attribute-value" since="1.12"/>
184
+ <keyword type="function" name="atk_document_set_attribute_value ()" link="AtkDocument.html#atk-document-set-attribute-value" since="1.12"/>
185
+ <keyword type="function" name="atk_document_get_attributes ()" link="AtkDocument.html#atk-document-get-attributes" since="1.12"/>
186
+ <keyword type="function" name="atk_document_get_locale ()" link="AtkDocument.html#atk-document-get-locale" deprecated=""/>
187
+ <keyword type="function" name="atk_document_get_current_page_number ()" link="AtkDocument.html#atk-document-get-current-page-number" since="2.12"/>
188
+ <keyword type="function" name="atk_document_get_page_count ()" link="AtkDocument.html#atk-document-get-page-count" since="2.12"/>
189
+ <keyword type="struct" name="AtkDocument" link="AtkDocument.html#AtkDocument-struct"/>
190
+ <keyword type="struct" name="struct AtkDocumentIface" link="AtkDocument.html#AtkDocumentIface"/>
191
+ <keyword type="signal" name="The “load-complete” signal" link="AtkDocument.html#AtkDocument-load-complete"/>
192
+ <keyword type="signal" name="The “load-stopped” signal" link="AtkDocument.html#AtkDocument-load-stopped"/>
193
+ <keyword type="signal" name="The “page-changed” signal" link="AtkDocument.html#AtkDocument-page-changed"/>
194
+ <keyword type="signal" name="The “reload” signal" link="AtkDocument.html#AtkDocument-reload"/>
195
+ <keyword type="function" name="atk_editable_text_set_run_attributes ()" link="AtkEditableText.html#atk-editable-text-set-run-attributes"/>
196
+ <keyword type="function" name="atk_editable_text_set_text_contents ()" link="AtkEditableText.html#atk-editable-text-set-text-contents"/>
197
+ <keyword type="function" name="atk_editable_text_insert_text ()" link="AtkEditableText.html#atk-editable-text-insert-text"/>
198
+ <keyword type="function" name="atk_editable_text_copy_text ()" link="AtkEditableText.html#atk-editable-text-copy-text"/>
199
+ <keyword type="function" name="atk_editable_text_cut_text ()" link="AtkEditableText.html#atk-editable-text-cut-text"/>
200
+ <keyword type="function" name="atk_editable_text_delete_text ()" link="AtkEditableText.html#atk-editable-text-delete-text"/>
201
+ <keyword type="function" name="atk_editable_text_paste_text ()" link="AtkEditableText.html#atk-editable-text-paste-text"/>
202
+ <keyword type="struct" name="AtkEditableText" link="AtkEditableText.html#AtkEditableText-struct"/>
203
+ <keyword type="function" name="atk_hyperlink_impl_get_hyperlink ()" link="atk-AtkHyperlinkImpl.html#atk-hyperlink-impl-get-hyperlink" since="1.12"/>
204
+ <keyword type="struct" name="AtkHyperlinkImpl" link="atk-AtkHyperlinkImpl.html#AtkHyperlinkImpl"/>
205
+ <keyword type="function" name="atk_hypertext_get_link ()" link="AtkHypertext.html#atk-hypertext-get-link"/>
206
+ <keyword type="function" name="atk_hypertext_get_n_links ()" link="AtkHypertext.html#atk-hypertext-get-n-links"/>
207
+ <keyword type="function" name="atk_hypertext_get_link_index ()" link="AtkHypertext.html#atk-hypertext-get-link-index"/>
208
+ <keyword type="struct" name="AtkHypertext" link="AtkHypertext.html#AtkHypertext-struct"/>
209
+ <keyword type="signal" name="The “link-selected” signal" link="AtkHypertext.html#AtkHypertext-link-selected"/>
210
+ <keyword type="function" name="atk_image_get_image_position ()" link="AtkImage.html#atk-image-get-image-position"/>
211
+ <keyword type="function" name="atk_image_get_image_description ()" link="AtkImage.html#atk-image-get-image-description"/>
212
+ <keyword type="function" name="atk_image_set_image_description ()" link="AtkImage.html#atk-image-set-image-description"/>
213
+ <keyword type="function" name="atk_image_get_image_size ()" link="AtkImage.html#atk-image-get-image-size"/>
214
+ <keyword type="function" name="atk_image_get_image_locale ()" link="AtkImage.html#atk-image-get-image-locale"/>
215
+ <keyword type="struct" name="AtkImage" link="AtkImage.html#AtkImage-struct"/>
216
+ <keyword type="function" name="atk_selection_add_selection ()" link="AtkSelection.html#atk-selection-add-selection"/>
217
+ <keyword type="function" name="atk_selection_clear_selection ()" link="AtkSelection.html#atk-selection-clear-selection"/>
218
+ <keyword type="function" name="atk_selection_ref_selection ()" link="AtkSelection.html#atk-selection-ref-selection"/>
219
+ <keyword type="function" name="atk_selection_get_selection_count ()" link="AtkSelection.html#atk-selection-get-selection-count"/>
220
+ <keyword type="function" name="atk_selection_is_child_selected ()" link="AtkSelection.html#atk-selection-is-child-selected"/>
221
+ <keyword type="function" name="atk_selection_remove_selection ()" link="AtkSelection.html#atk-selection-remove-selection"/>
222
+ <keyword type="function" name="atk_selection_select_all_selection ()" link="AtkSelection.html#atk-selection-select-all-selection"/>
223
+ <keyword type="struct" name="AtkSelection" link="AtkSelection.html#AtkSelection-struct"/>
224
+ <keyword type="signal" name="The “selection-changed” signal" link="AtkSelection.html#AtkSelection-selection-changed"/>
225
+ <keyword type="function" name="atk_streamable_content_get_n_mime_types ()" link="AtkStreamableContent.html#atk-streamable-content-get-n-mime-types"/>
226
+ <keyword type="function" name="atk_streamable_content_get_mime_type ()" link="AtkStreamableContent.html#atk-streamable-content-get-mime-type"/>
227
+ <keyword type="function" name="atk_streamable_content_get_stream ()" link="AtkStreamableContent.html#atk-streamable-content-get-stream"/>
228
+ <keyword type="function" name="atk_streamable_content_get_uri ()" link="AtkStreamableContent.html#atk-streamable-content-get-uri" since="1.12"/>
229
+ <keyword type="struct" name="AtkStreamableContent" link="AtkStreamableContent.html#AtkStreamableContent-struct"/>
230
+ <keyword type="function" name="atk_table_ref_at ()" link="AtkTable.html#atk-table-ref-at"/>
231
+ <keyword type="function" name="atk_table_get_index_at ()" link="AtkTable.html#atk-table-get-index-at" deprecated=""/>
232
+ <keyword type="function" name="atk_table_get_column_at_index ()" link="AtkTable.html#atk-table-get-column-at-index" deprecated="Since 2.12."/>
233
+ <keyword type="function" name="atk_table_get_row_at_index ()" link="AtkTable.html#atk-table-get-row-at-index" deprecated="since 2.12."/>
234
+ <keyword type="function" name="atk_table_get_n_columns ()" link="AtkTable.html#atk-table-get-n-columns"/>
235
+ <keyword type="function" name="atk_table_get_n_rows ()" link="AtkTable.html#atk-table-get-n-rows"/>
236
+ <keyword type="function" name="atk_table_get_column_extent_at ()" link="AtkTable.html#atk-table-get-column-extent-at"/>
237
+ <keyword type="function" name="atk_table_get_row_extent_at ()" link="AtkTable.html#atk-table-get-row-extent-at"/>
238
+ <keyword type="function" name="atk_table_get_caption ()" link="AtkTable.html#atk-table-get-caption"/>
239
+ <keyword type="function" name="atk_table_get_column_description ()" link="AtkTable.html#atk-table-get-column-description"/>
240
+ <keyword type="function" name="atk_table_get_row_description ()" link="AtkTable.html#atk-table-get-row-description"/>
241
+ <keyword type="function" name="atk_table_get_column_header ()" link="AtkTable.html#atk-table-get-column-header"/>
242
+ <keyword type="function" name="atk_table_get_row_header ()" link="AtkTable.html#atk-table-get-row-header"/>
243
+ <keyword type="function" name="atk_table_get_summary ()" link="AtkTable.html#atk-table-get-summary"/>
244
+ <keyword type="function" name="atk_table_set_caption ()" link="AtkTable.html#atk-table-set-caption"/>
245
+ <keyword type="function" name="atk_table_set_row_description ()" link="AtkTable.html#atk-table-set-row-description"/>
246
+ <keyword type="function" name="atk_table_set_column_description ()" link="AtkTable.html#atk-table-set-column-description"/>
247
+ <keyword type="function" name="atk_table_set_row_header ()" link="AtkTable.html#atk-table-set-row-header"/>
248
+ <keyword type="function" name="atk_table_set_column_header ()" link="AtkTable.html#atk-table-set-column-header"/>
249
+ <keyword type="function" name="atk_table_set_summary ()" link="AtkTable.html#atk-table-set-summary"/>
250
+ <keyword type="function" name="atk_table_get_selected_columns ()" link="AtkTable.html#atk-table-get-selected-columns"/>
251
+ <keyword type="function" name="atk_table_get_selected_rows ()" link="AtkTable.html#atk-table-get-selected-rows"/>
252
+ <keyword type="function" name="atk_table_is_column_selected ()" link="AtkTable.html#atk-table-is-column-selected"/>
253
+ <keyword type="function" name="atk_table_is_row_selected ()" link="AtkTable.html#atk-table-is-row-selected"/>
254
+ <keyword type="function" name="atk_table_is_selected ()" link="AtkTable.html#atk-table-is-selected"/>
255
+ <keyword type="function" name="atk_table_add_column_selection ()" link="AtkTable.html#atk-table-add-column-selection"/>
256
+ <keyword type="function" name="atk_table_add_row_selection ()" link="AtkTable.html#atk-table-add-row-selection"/>
257
+ <keyword type="function" name="atk_table_remove_column_selection ()" link="AtkTable.html#atk-table-remove-column-selection"/>
258
+ <keyword type="function" name="atk_table_remove_row_selection ()" link="AtkTable.html#atk-table-remove-row-selection"/>
259
+ <keyword type="struct" name="AtkTable" link="AtkTable.html#AtkTable-struct"/>
260
+ <keyword type="signal" name="The “column-deleted” signal" link="AtkTable.html#AtkTable-column-deleted"/>
261
+ <keyword type="signal" name="The “column-inserted” signal" link="AtkTable.html#AtkTable-column-inserted"/>
262
+ <keyword type="signal" name="The “column-reordered” signal" link="AtkTable.html#AtkTable-column-reordered"/>
263
+ <keyword type="signal" name="The “model-changed” signal" link="AtkTable.html#AtkTable-model-changed"/>
264
+ <keyword type="signal" name="The “row-deleted” signal" link="AtkTable.html#AtkTable-row-deleted"/>
265
+ <keyword type="signal" name="The “row-inserted” signal" link="AtkTable.html#AtkTable-row-inserted"/>
266
+ <keyword type="signal" name="The “row-reordered” signal" link="AtkTable.html#AtkTable-row-reordered"/>
267
+ <keyword type="function" name="atk_table_cell_get_column_span ()" link="AtkTableCell.html#atk-table-cell-get-column-span" since="2.12"/>
268
+ <keyword type="function" name="atk_table_cell_get_column_header_cells ()" link="AtkTableCell.html#atk-table-cell-get-column-header-cells" since="2.12"/>
269
+ <keyword type="function" name="atk_table_cell_get_position ()" link="AtkTableCell.html#atk-table-cell-get-position" since="2.12"/>
270
+ <keyword type="function" name="atk_table_cell_get_row_span ()" link="AtkTableCell.html#atk-table-cell-get-row-span" since="2.12"/>
271
+ <keyword type="function" name="atk_table_cell_get_row_header_cells ()" link="AtkTableCell.html#atk-table-cell-get-row-header-cells" since="2.12"/>
272
+ <keyword type="function" name="atk_table_cell_get_row_column_span ()" link="AtkTableCell.html#atk-table-cell-get-row-column-span" since="2.12"/>
273
+ <keyword type="function" name="atk_table_cell_get_table ()" link="AtkTableCell.html#atk-table-cell-get-table" since="2.12"/>
274
+ <keyword type="struct" name="AtkTableCell" link="AtkTableCell.html#AtkTableCell-struct"/>
275
+ <keyword type="struct" name="struct AtkTableCellIface" link="AtkTableCell.html#AtkTableCellIface"/>
276
+ <keyword type="function" name="atk_text_get_text ()" link="AtkText.html#atk-text-get-text"/>
277
+ <keyword type="function" name="atk_text_get_character_at_offset ()" link="AtkText.html#atk-text-get-character-at-offset"/>
278
+ <keyword type="function" name="atk_text_get_text_after_offset ()" link="AtkText.html#atk-text-get-text-after-offset" deprecated=""/>
279
+ <keyword type="function" name="atk_text_get_text_at_offset ()" link="AtkText.html#atk-text-get-text-at-offset" deprecated=""/>
280
+ <keyword type="function" name="atk_text_get_text_before_offset ()" link="AtkText.html#atk-text-get-text-before-offset" deprecated=""/>
281
+ <keyword type="function" name="atk_text_get_string_at_offset ()" link="AtkText.html#atk-text-get-string-at-offset" since="2.10"/>
282
+ <keyword type="function" name="atk_text_get_caret_offset ()" link="AtkText.html#atk-text-get-caret-offset"/>
283
+ <keyword type="function" name="atk_text_get_character_extents ()" link="AtkText.html#atk-text-get-character-extents"/>
284
+ <keyword type="function" name="atk_text_get_run_attributes ()" link="AtkText.html#atk-text-get-run-attributes"/>
285
+ <keyword type="function" name="atk_text_get_default_attributes ()" link="AtkText.html#atk-text-get-default-attributes"/>
286
+ <keyword type="function" name="atk_text_get_character_count ()" link="AtkText.html#atk-text-get-character-count"/>
287
+ <keyword type="function" name="atk_text_get_offset_at_point ()" link="AtkText.html#atk-text-get-offset-at-point"/>
288
+ <keyword type="function" name="atk_text_get_bounded_ranges ()" link="AtkText.html#atk-text-get-bounded-ranges" since="1.3"/>
289
+ <keyword type="function" name="atk_text_get_range_extents ()" link="AtkText.html#atk-text-get-range-extents" since="1.3"/>
290
+ <keyword type="function" name="atk_text_free_ranges ()" link="AtkText.html#atk-text-free-ranges" since="1.3"/>
291
+ <keyword type="function" name="atk_text_get_n_selections ()" link="AtkText.html#atk-text-get-n-selections"/>
292
+ <keyword type="function" name="atk_text_get_selection ()" link="AtkText.html#atk-text-get-selection"/>
293
+ <keyword type="function" name="atk_text_add_selection ()" link="AtkText.html#atk-text-add-selection"/>
294
+ <keyword type="function" name="atk_text_remove_selection ()" link="AtkText.html#atk-text-remove-selection"/>
295
+ <keyword type="function" name="atk_text_set_selection ()" link="AtkText.html#atk-text-set-selection"/>
296
+ <keyword type="function" name="atk_text_set_caret_offset ()" link="AtkText.html#atk-text-set-caret-offset"/>
297
+ <keyword type="function" name="atk_attribute_set_free ()" link="AtkText.html#atk-attribute-set-free"/>
298
+ <keyword type="function" name="atk_text_attribute_register ()" link="AtkText.html#atk-text-attribute-register"/>
299
+ <keyword type="function" name="atk_text_attribute_get_name ()" link="AtkText.html#atk-text-attribute-get-name"/>
300
+ <keyword type="function" name="atk_text_attribute_for_name ()" link="AtkText.html#atk-text-attribute-for-name"/>
301
+ <keyword type="function" name="atk_text_attribute_get_value ()" link="AtkText.html#atk-text-attribute-get-value"/>
302
+ <keyword type="struct" name="AtkText" link="AtkText.html#AtkText-struct"/>
303
+ <keyword type="struct" name="struct AtkTextIface" link="AtkText.html#AtkTextIface"/>
304
+ <keyword type="enum" name="enum AtkTextBoundary" link="AtkText.html#AtkTextBoundary"/>
305
+ <keyword type="enum" name="enum AtkTextGranularity" link="AtkText.html#AtkTextGranularity"/>
306
+ <keyword type="enum" name="enum AtkTextClipType" link="AtkText.html#AtkTextClipType"/>
307
+ <keyword type="struct" name="struct AtkTextRange" link="AtkText.html#AtkTextRange"/>
308
+ <keyword type="struct" name="struct AtkTextRectangle" link="AtkText.html#AtkTextRectangle"/>
309
+ <keyword type="enum" name="enum AtkTextAttribute" link="AtkText.html#AtkTextAttribute"/>
310
+ <keyword type="signal" name="The “text-attributes-changed” signal" link="AtkText.html#AtkText-text-attributes-changed"/>
311
+ <keyword type="signal" name="The “text-caret-moved” signal" link="AtkText.html#AtkText-text-caret-moved"/>
312
+ <keyword type="signal" name="The “text-changed” signal" link="AtkText.html#AtkText-text-changed"/>
313
+ <keyword type="signal" name="The “text-insert” signal" link="AtkText.html#AtkText-text-insert"/>
314
+ <keyword type="signal" name="The “text-remove” signal" link="AtkText.html#AtkText-text-remove"/>
315
+ <keyword type="signal" name="The “text-selection-changed” signal" link="AtkText.html#AtkText-text-selection-changed"/>
316
+ <keyword type="" name="Implementor Notes" link="AtkValue.html#implementor-notes"/>
317
+ <keyword type="" name="Implementor Notes" link="AtkValue.html#ranges-implementor-notes"/>
318
+ <keyword type="function" name="atk_value_get_current_value ()" link="AtkValue.html#atk-value-get-current-value" deprecated=""/>
319
+ <keyword type="function" name="atk_value_get_maximum_value ()" link="AtkValue.html#atk-value-get-maximum-value" deprecated="Since 2.12. Use atk_value_get_range() instead."/>
320
+ <keyword type="function" name="atk_value_get_minimum_value ()" link="AtkValue.html#atk-value-get-minimum-value" deprecated="Since 2.12. Use atk_value_get_range() instead."/>
321
+ <keyword type="function" name="atk_value_set_current_value ()" link="AtkValue.html#atk-value-set-current-value" deprecated="Since 2.12. Use atk_value_set_value() instead."/>
322
+ <keyword type="function" name="atk_value_get_minimum_increment ()" link="AtkValue.html#atk-value-get-minimum-increment" deprecated="Since 2.12. Use atk_value_get_increment() instead." since="1.12"/>
323
+ <keyword type="function" name="atk_value_get_value_and_text ()" link="AtkValue.html#atk-value-get-value-and-text" since="2.12"/>
324
+ <keyword type="function" name="atk_value_get_range ()" link="AtkValue.html#atk-value-get-range" since="2.12"/>
325
+ <keyword type="function" name="atk_value_get_increment ()" link="AtkValue.html#atk-value-get-increment" since="2.12"/>
326
+ <keyword type="function" name="atk_value_get_sub_ranges ()" link="AtkValue.html#atk-value-get-sub-ranges" since="2.12"/>
327
+ <keyword type="function" name="atk_value_set_value ()" link="AtkValue.html#atk-value-set-value" since="2.12"/>
328
+ <keyword type="struct" name="AtkValue" link="AtkValue.html#AtkValue-struct"/>
329
+ <keyword type="signal" name="The “value-changed” signal" link="AtkValue.html#AtkValue-value-changed"/>
330
+ <keyword type="struct" name="AtkWindow" link="AtkWindow.html#AtkWindow-struct"/>
331
+ <keyword type="signal" name="The “activate” signal" link="AtkWindow.html#AtkWindow-activate"/>
332
+ <keyword type="signal" name="The “create” signal" link="AtkWindow.html#AtkWindow-create"/>
333
+ <keyword type="signal" name="The “deactivate” signal" link="AtkWindow.html#AtkWindow-deactivate"/>
334
+ <keyword type="signal" name="The “destroy” signal" link="AtkWindow.html#AtkWindow-destroy"/>
335
+ <keyword type="signal" name="The “maximize” signal" link="AtkWindow.html#AtkWindow-maximize"/>
336
+ <keyword type="signal" name="The “minimize” signal" link="AtkWindow.html#AtkWindow-minimize"/>
337
+ <keyword type="signal" name="The “move” signal" link="AtkWindow.html#AtkWindow-move"/>
338
+ <keyword type="signal" name="The “resize” signal" link="AtkWindow.html#AtkWindow-resize"/>
339
+ <keyword type="signal" name="The “restore” signal" link="AtkWindow.html#AtkWindow-restore"/>
340
+ <keyword type="macro" name="ATK_TYPE_RANGE" link="atk-AtkRange.html#ATK-TYPE-RANGE:CAPS"/>
341
+ <keyword type="function" name="atk_range_copy ()" link="atk-AtkRange.html#atk-range-copy" since="2.12"/>
342
+ <keyword type="function" name="atk_range_free ()" link="atk-AtkRange.html#atk-range-free" since="2.12"/>
343
+ <keyword type="function" name="atk_range_get_lower_limit ()" link="atk-AtkRange.html#atk-range-get-lower-limit" since="2.12"/>
344
+ <keyword type="function" name="atk_range_get_upper_limit ()" link="atk-AtkRange.html#atk-range-get-upper-limit" since="2.12"/>
345
+ <keyword type="function" name="atk_range_get_description ()" link="atk-AtkRange.html#atk-range-get-description" since="2.12"/>
346
+ <keyword type="function" name="atk_range_new ()" link="atk-AtkRange.html#atk-range-new" since="2.12"/>
347
+ <keyword type="function" name="atk_range_get_type ()" link="atk-AtkRange.html#atk-range-get-type"/>
348
+ <keyword type="function" name="atk_relation_type_register ()" link="AtkRelation.html#atk-relation-type-register"/>
349
+ <keyword type="function" name="atk_relation_type_get_name ()" link="AtkRelation.html#atk-relation-type-get-name"/>
350
+ <keyword type="function" name="atk_relation_type_for_name ()" link="AtkRelation.html#atk-relation-type-for-name"/>
351
+ <keyword type="function" name="atk_relation_new ()" link="AtkRelation.html#atk-relation-new"/>
352
+ <keyword type="function" name="atk_relation_get_relation_type ()" link="AtkRelation.html#atk-relation-get-relation-type"/>
353
+ <keyword type="function" name="atk_relation_get_target ()" link="AtkRelation.html#atk-relation-get-target"/>
354
+ <keyword type="function" name="atk_relation_add_target ()" link="AtkRelation.html#atk-relation-add-target" since="1.9"/>
355
+ <keyword type="function" name="atk_relation_remove_target ()" link="AtkRelation.html#atk-relation-remove-target"/>
356
+ <keyword type="function" name="atk_relation_set_contains_target ()" link="AtkRelation.html#atk-relation-set-contains-target"/>
357
+ <keyword type="struct" name="struct AtkRelation" link="AtkRelation.html#AtkRelation-struct"/>
358
+ <keyword type="enum" name="enum AtkRelationType" link="AtkRelation.html#AtkRelationType"/>
359
+ <keyword type="property" name="The “relation-type” property" link="AtkRelation.html#AtkRelation--relation-type"/>
360
+ <keyword type="property" name="The “target” property" link="AtkRelation.html#AtkRelation--target"/>
361
+ <keyword type="function" name="atk_relation_set_new ()" link="AtkRelationSet.html#atk-relation-set-new"/>
362
+ <keyword type="function" name="atk_relation_set_contains ()" link="AtkRelationSet.html#atk-relation-set-contains"/>
363
+ <keyword type="function" name="atk_relation_set_remove ()" link="AtkRelationSet.html#atk-relation-set-remove"/>
364
+ <keyword type="function" name="atk_relation_set_add ()" link="AtkRelationSet.html#atk-relation-set-add"/>
365
+ <keyword type="function" name="atk_relation_set_get_n_relations ()" link="AtkRelationSet.html#atk-relation-set-get-n-relations"/>
366
+ <keyword type="function" name="atk_relation_set_get_relation ()" link="AtkRelationSet.html#atk-relation-set-get-relation"/>
367
+ <keyword type="function" name="atk_relation_set_get_relation_by_type ()" link="AtkRelationSet.html#atk-relation-set-get-relation-by-type"/>
368
+ <keyword type="function" name="atk_relation_set_add_relation_by_type ()" link="AtkRelationSet.html#atk-relation-set-add-relation-by-type" since="1.9"/>
369
+ <keyword type="struct" name="AtkRelationSet" link="AtkRelationSet.html#AtkRelationSet-struct"/>
370
+ <keyword type="function" name="atk_state_type_register ()" link="atk-AtkState.html#atk-state-type-register"/>
371
+ <keyword type="function" name="atk_state_type_get_name ()" link="atk-AtkState.html#atk-state-type-get-name"/>
372
+ <keyword type="function" name="atk_state_type_for_name ()" link="atk-AtkState.html#atk-state-type-for-name"/>
373
+ <keyword type="enum" name="enum AtkStateType" link="atk-AtkState.html#AtkStateType"/>
374
+ <keyword type="typedef" name="AtkState" link="atk-AtkState.html#AtkState"/>
375
+ <keyword type="function" name="atk_state_set_new ()" link="AtkStateSet.html#atk-state-set-new"/>
376
+ <keyword type="function" name="atk_state_set_is_empty ()" link="AtkStateSet.html#atk-state-set-is-empty"/>
377
+ <keyword type="function" name="atk_state_set_add_state ()" link="AtkStateSet.html#atk-state-set-add-state"/>
378
+ <keyword type="function" name="atk_state_set_add_states ()" link="AtkStateSet.html#atk-state-set-add-states"/>
379
+ <keyword type="function" name="atk_state_set_clear_states ()" link="AtkStateSet.html#atk-state-set-clear-states"/>
380
+ <keyword type="function" name="atk_state_set_contains_state ()" link="AtkStateSet.html#atk-state-set-contains-state"/>
381
+ <keyword type="function" name="atk_state_set_contains_states ()" link="AtkStateSet.html#atk-state-set-contains-states"/>
382
+ <keyword type="function" name="atk_state_set_remove_state ()" link="AtkStateSet.html#atk-state-set-remove-state"/>
383
+ <keyword type="function" name="atk_state_set_and_sets ()" link="AtkStateSet.html#atk-state-set-and-sets"/>
384
+ <keyword type="function" name="atk_state_set_or_sets ()" link="AtkStateSet.html#atk-state-set-or-sets"/>
385
+ <keyword type="function" name="atk_state_set_xor_sets ()" link="AtkStateSet.html#atk-state-set-xor-sets"/>
386
+ <keyword type="struct" name="AtkStateSet" link="AtkStateSet.html#AtkStateSet-struct"/>
387
+ <keyword type="function" name="atk_gobject_accessible_for_object ()" link="AtkGObjectAccessible.html#atk-gobject-accessible-for-object"/>
388
+ <keyword type="function" name="atk_gobject_accessible_get_object ()" link="AtkGObjectAccessible.html#atk-gobject-accessible-get-object"/>
389
+ <keyword type="struct" name="struct AtkGObjectAccessible" link="AtkGObjectAccessible.html#AtkGObjectAccessible-struct"/>
390
+ <keyword type="function" name="atk_hyperlink_get_uri ()" link="AtkHyperlink.html#atk-hyperlink-get-uri"/>
391
+ <keyword type="function" name="atk_hyperlink_get_object ()" link="AtkHyperlink.html#atk-hyperlink-get-object"/>
392
+ <keyword type="function" name="atk_hyperlink_get_end_index ()" link="AtkHyperlink.html#atk-hyperlink-get-end-index"/>
393
+ <keyword type="function" name="atk_hyperlink_get_start_index ()" link="AtkHyperlink.html#atk-hyperlink-get-start-index"/>
394
+ <keyword type="function" name="atk_hyperlink_is_valid ()" link="AtkHyperlink.html#atk-hyperlink-is-valid"/>
395
+ <keyword type="function" name="atk_hyperlink_is_inline ()" link="AtkHyperlink.html#atk-hyperlink-is-inline"/>
396
+ <keyword type="function" name="atk_hyperlink_get_n_anchors ()" link="AtkHyperlink.html#atk-hyperlink-get-n-anchors"/>
397
+ <keyword type="function" name="atk_hyperlink_is_selected_link ()" link="AtkHyperlink.html#atk-hyperlink-is-selected-link" deprecated="" since="1.4"/>
398
+ <keyword type="struct" name="struct AtkHyperlink" link="AtkHyperlink.html#AtkHyperlink-struct"/>
399
+ <keyword type="enum" name="enum AtkHyperlinkStateFlags" link="AtkHyperlink.html#AtkHyperlinkStateFlags"/>
400
+ <keyword type="property" name="The “end-index” property" link="AtkHyperlink.html#AtkHyperlink--end-index"/>
401
+ <keyword type="property" name="The “number-of-anchors” property" link="AtkHyperlink.html#AtkHyperlink--number-of-anchors"/>
402
+ <keyword type="property" name="The “selected-link” property" link="AtkHyperlink.html#AtkHyperlink--selected-link"/>
403
+ <keyword type="property" name="The “start-index” property" link="AtkHyperlink.html#AtkHyperlink--start-index"/>
404
+ <keyword type="signal" name="The “link-activated” signal" link="AtkHyperlink.html#AtkHyperlink-link-activated"/>
405
+ <keyword type="function" name="atk_no_op_object_new ()" link="AtkNoOpObject.html#atk-no-op-object-new"/>
406
+ <keyword type="struct" name="struct AtkNoOpObject" link="AtkNoOpObject.html#AtkNoOpObject-struct"/>
407
+ <keyword type="function" name="atk_plug_new ()" link="atk-AtkPlug.html#atk-plug-new"/>
408
+ <keyword type="function" name="atk_plug_get_id ()" link="atk-AtkPlug.html#atk-plug-get-id" since="1.30"/>
409
+ <keyword type="struct" name="struct AtkPlug" link="atk-AtkPlug.html#AtkPlug"/>
410
+ <keyword type="function" name="atk_socket_new ()" link="atk-AtkSocket.html#atk-socket-new"/>
411
+ <keyword type="function" name="atk_socket_embed ()" link="atk-AtkSocket.html#atk-socket-embed" since="1.30"/>
412
+ <keyword type="function" name="atk_socket_is_occupied ()" link="atk-AtkSocket.html#atk-socket-is-occupied" since="1.30"/>
413
+ <keyword type="struct" name="struct AtkSocket" link="atk-AtkSocket.html#AtkSocket"/>
414
+ <keyword type="function" name="atk_no_op_object_factory_new ()" link="AtkNoOpObjectFactory.html#atk-no-op-object-factory-new"/>
415
+ <keyword type="struct" name="struct AtkNoOpObjectFactory" link="AtkNoOpObjectFactory.html#AtkNoOpObjectFactory-struct"/>
416
+ <keyword type="function" name="atk_object_factory_create_accessible ()" link="AtkObjectFactory.html#atk-object-factory-create-accessible"/>
417
+ <keyword type="function" name="atk_object_factory_get_accessible_type ()" link="AtkObjectFactory.html#atk-object-factory-get-accessible-type"/>
418
+ <keyword type="function" name="atk_object_factory_invalidate ()" link="AtkObjectFactory.html#atk-object-factory-invalidate"/>
419
+ <keyword type="struct" name="struct AtkObjectFactory" link="AtkObjectFactory.html#AtkObjectFactory-struct"/>
420
+ <keyword type="function" name="atk_registry_set_factory_type ()" link="AtkRegistry.html#atk-registry-set-factory-type"/>
421
+ <keyword type="function" name="atk_registry_get_factory_type ()" link="AtkRegistry.html#atk-registry-get-factory-type"/>
422
+ <keyword type="function" name="atk_registry_get_factory ()" link="AtkRegistry.html#atk-registry-get-factory"/>
423
+ <keyword type="function" name="atk_get_default_registry ()" link="AtkRegistry.html#atk-get-default-registry"/>
424
+ <keyword type="struct" name="AtkRegistry" link="AtkRegistry.html#AtkRegistry-struct"/>
425
+ <keyword type="macro" name="ATK_BINARY_AGE" link="atk-Versioning-Utilities.html#ATK-BINARY-AGE:CAPS" since="2.7.4"/>
426
+ <keyword type="macro" name="ATK_INTERFACE_AGE" link="atk-Versioning-Utilities.html#ATK-INTERFACE-AGE:CAPS" since="2.7.4"/>
427
+ <keyword type="function" name="atk_get_major_version ()" link="atk-Versioning-Utilities.html#atk-get-major-version" since="2.8"/>
428
+ <keyword type="function" name="atk_get_minor_version ()" link="atk-Versioning-Utilities.html#atk-get-minor-version" since="2.8"/>
429
+ <keyword type="function" name="atk_get_micro_version ()" link="atk-Versioning-Utilities.html#atk-get-micro-version" since="2.8"/>
430
+ <keyword type="function" name="atk_get_binary_age ()" link="atk-Versioning-Utilities.html#atk-get-binary-age" since="2.8"/>
431
+ <keyword type="function" name="atk_get_interface_age ()" link="atk-Versioning-Utilities.html#atk-get-interface-age" since="2.8"/>
432
+ <keyword type="macro" name="ATK_MAJOR_VERSION" link="atk-Versioning-Utilities.html#ATK-MAJOR-VERSION:CAPS" since="2.7.4"/>
433
+ <keyword type="macro" name="ATK_MINOR_VERSION" link="atk-Versioning-Utilities.html#ATK-MINOR-VERSION:CAPS" since="2.7.4"/>
434
+ <keyword type="macro" name="ATK_MICRO_VERSION" link="atk-Versioning-Utilities.html#ATK-MICRO-VERSION:CAPS" since="2.7.4"/>
435
+ <keyword type="macro" name="ATK_CHECK_VERSION()" link="atk-Versioning-Utilities.html#ATK-CHECK-VERSION:CAPS" since="2.7.4"/>
436
+ <keyword type="function" name="atk_misc_threads_enter ()" link="AtkMisc.html#atk-misc-threads-enter" deprecated="Since 2.12." since="1.13"/>
437
+ <keyword type="function" name="atk_misc_threads_leave ()" link="AtkMisc.html#atk-misc-threads-leave" deprecated="Since 2.12." since="1.13"/>
438
+ <keyword type="function" name="atk_misc_get_instance ()" link="AtkMisc.html#atk-misc-get-instance" deprecated="Since 2.12." since="1.13"/>
439
+ <keyword type="struct" name="struct AtkMisc" link="AtkMisc.html#AtkMisc-struct"/>
440
+ </functions>
441
+ </book>