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,33 @@
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: Base accessibility object</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="index.html" title="ATK - Accessibility Toolkit">
9
+ <link rel="prev" href="overview.html" title="Overview">
10
+ <link rel="next" href="AtkObject.html" title="AtkObject">
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"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="overview.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="AtkObject.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="chapter">
23
+ <div class="titlepage"><div><div><h1 class="title">
24
+ <a name="atkobject"></a>Base accessibility object</h1></div></div></div>
25
+ <div class="toc"><dl class="toc"><dt>
26
+ <span class="refentrytitle"><a href="AtkObject.html">AtkObject</a></span><span class="refpurpose"> — The base object class for the Accessibility Toolkit API.</span>
27
+ </dt></dl></div>
28
+ </div>
29
+ <div class="footer">
30
+ <hr>
31
+ Generated by GTK-Doc V1.21.1</div>
32
+ </body>
33
+ </html>
@@ -0,0 +1,49 @@
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: Basic accessible data types</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="index.html" title="ATK - Accessibility Toolkit">
9
+ <link rel="prev" href="AtkWindow.html" title="AtkWindow">
10
+ <link rel="next" href="atk-AtkRange.html" title="AtkRange">
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"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="AtkWindow.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="atk-AtkRange.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="chapter">
23
+ <div class="titlepage"><div><div><h1 class="title">
24
+ <a name="data"></a>Basic accessible data types</h1></div></div></div>
25
+ <div class="toc"><dl class="toc">
26
+ <dt>
27
+ <span class="refentrytitle"><a href="atk-AtkRange.html">AtkRange</a></span><span class="refpurpose">A given range or subrange, to be used with <span class="type">AtkValue</span></span>
28
+ </dt>
29
+ <dt>
30
+ <span class="refentrytitle"><a href="AtkRelation.html">AtkRelation</a></span><span class="refpurpose"> — An object used to describe a relation between a
31
+ object and one or more other objects.</span>
32
+ </dt>
33
+ <dt>
34
+ <span class="refentrytitle"><a href="AtkRelationSet.html">AtkRelationSet</a></span><span class="refpurpose"> — A set of AtkRelations, normally the set of
35
+ AtkRelations which an AtkObject has.</span>
36
+ </dt>
37
+ <dt>
38
+ <span class="refentrytitle"><a href="atk-AtkState.html">AtkState</a></span><span class="refpurpose"> — An AtkState describes a component's particular state.</span>
39
+ </dt>
40
+ <dt>
41
+ <span class="refentrytitle"><a href="AtkStateSet.html">AtkStateSet</a></span><span class="refpurpose"> — An AtkStateSet determines a component's state set.</span>
42
+ </dt>
43
+ </dl></div>
44
+ </div>
45
+ <div class="footer">
46
+ <hr>
47
+ Generated by GTK-Doc V1.21.1</div>
48
+ </body>
49
+ </html>
@@ -0,0 +1,33 @@
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: Deprecated Interfaces</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="index.html" title="ATK - Accessibility Toolkit">
9
+ <link rel="prev" href="atk-Versioning-Utilities.html" title="Versioning macros">
10
+ <link rel="next" href="AtkMisc.html" title="AtkMisc">
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"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="atk-Versioning-Utilities.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="AtkMisc.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="chapter">
23
+ <div class="titlepage"><div><div><h1 class="title">
24
+ <a name="deprecated"></a>Deprecated Interfaces</h1></div></div></div>
25
+ <div class="toc"><dl class="toc"><dt>
26
+ <span class="refentrytitle"><a href="AtkMisc.html">AtkMisc</a></span><span class="refpurpose"> — A set of ATK utility functions for thread locking</span>
27
+ </dt></dl></div>
28
+ </div>
29
+ <div class="footer">
30
+ <hr>
31
+ Generated by GTK-Doc V1.21.1</div>
32
+ </body>
33
+ </html>
@@ -0,0 +1,175 @@
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: ATK - Accessibility Toolkit</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="next" href="overview.html" title="Overview">
9
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
10
+ <link rel="stylesheet" href="style.css" type="text/css">
11
+ </head>
12
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13
+ <div class="book">
14
+ <div class="titlepage">
15
+ <div>
16
+ <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">ATK - Accessibility Toolkit</p></th></tr></table></div>
17
+ <div><p class="releaseinfo">for ATK 2.14.0
18
+ </p></div>
19
+ </div>
20
+ <hr>
21
+ </div>
22
+ <div class="toc"><dl class="toc">
23
+ <dt><span class="chapter"><a href="overview.html">Overview</a></span></dt>
24
+ <dt><span class="chapter"><a href="atkobject.html">Base accessibility object</a></span></dt>
25
+ <dd><dl><dt>
26
+ <span class="refentrytitle"><a href="AtkObject.html">AtkObject</a></span><span class="refpurpose"> — The base object class for the Accessibility Toolkit API.</span>
27
+ </dt></dl></dd>
28
+ <dt><span class="chapter"><a href="toolkit.html">Event and toolkit support</a></span></dt>
29
+ <dd><dl><dt>
30
+ <span class="refentrytitle"><a href="AtkUtil.html">AtkUtil</a></span><span class="refpurpose"> — A set of ATK utility functions for event and toolkit support.</span>
31
+ </dt></dl></dd>
32
+ <dt><span class="chapter"><a href="interfaces.html">ATK Interfaces</a></span></dt>
33
+ <dd><dl>
34
+ <dt>
35
+ <span class="refentrytitle"><a href="AtkAction.html">AtkAction</a></span><span class="refpurpose"> — The ATK interface provided by UI components
36
+ which the user can activate/interact with.</span>
37
+ </dt>
38
+ <dt>
39
+ <span class="refentrytitle"><a href="AtkComponent.html">AtkComponent</a></span><span class="refpurpose"> — The ATK interface provided by UI components
40
+ which occupy a physical area on the screen.
41
+ which the user can activate/interact with.</span>
42
+ </dt>
43
+ <dt>
44
+ <span class="refentrytitle"><a href="AtkDocument.html">AtkDocument</a></span><span class="refpurpose"> — The ATK interface which represents the toplevel
45
+ container for document content.</span>
46
+ </dt>
47
+ <dt>
48
+ <span class="refentrytitle"><a href="AtkEditableText.html">AtkEditableText</a></span><span class="refpurpose"> — The ATK interface implemented by components
49
+ containing user-editable text content.</span>
50
+ </dt>
51
+ <dt>
52
+ <span class="refentrytitle"><a href="atk-AtkHyperlinkImpl.html">AtkHyperlinImpl</a></span><span class="refpurpose"> — An interface from which the AtkHyperlink
53
+ associated with an AtkObject may be obtained.</span>
54
+ </dt>
55
+ <dt>
56
+ <span class="refentrytitle"><a href="AtkHypertext.html">AtkHypertext</a></span><span class="refpurpose"> — The ATK interface which provides standard
57
+ mechanism for manipulating hyperlinks.</span>
58
+ </dt>
59
+ <dt>
60
+ <span class="refentrytitle"><a href="AtkImage.html">AtkImage</a></span><span class="refpurpose"> — The ATK Interface implemented by components
61
+ which expose image or pixmap content on-screen.</span>
62
+ </dt>
63
+ <dt>
64
+ <span class="refentrytitle"><a href="AtkSelection.html">AtkSelection</a></span><span class="refpurpose">The ATK interface implemented by container
65
+ objects whose <span class="type">AtkObject</span> children can be selected.</span>
66
+ </dt>
67
+ <dt>
68
+ <span class="refentrytitle"><a href="AtkStreamableContent.html">AtkStreamableContent</a></span><span class="refpurpose"> — The ATK interface which provides access to
69
+ streamable content.</span>
70
+ </dt>
71
+ <dt>
72
+ <span class="refentrytitle"><a href="AtkTable.html">AtkTable</a></span><span class="refpurpose"> — The ATK interface implemented for UI components
73
+ which contain tabular or row/column information.</span>
74
+ </dt>
75
+ <dt>
76
+ <span class="refentrytitle"><a href="AtkTableCell.html">AtkTableCell</a></span><span class="refpurpose">The ATK interface implemented for a cell inside
77
+ a two-dimentional <span class="type">AtkTable</span></span>
78
+ </dt>
79
+ <dt>
80
+ <span class="refentrytitle"><a href="AtkText.html">AtkText</a></span><span class="refpurpose"> — The ATK interface implemented by components
81
+ with text content.</span>
82
+ </dt>
83
+ <dt>
84
+ <span class="refentrytitle"><a href="AtkValue.html">AtkValue</a></span><span class="refpurpose"> — The ATK interface implemented by valuators and
85
+ components which display or select a value from a bounded range of
86
+ values.</span>
87
+ </dt>
88
+ <dt>
89
+ <span class="refentrytitle"><a href="AtkWindow.html">AtkWindow</a></span><span class="refpurpose"> — The ATK Interface provided by UI components that represent a top-level window.</span>
90
+ </dt>
91
+ </dl></dd>
92
+ <dt><span class="chapter"><a href="data.html">Basic accessible data types</a></span></dt>
93
+ <dd><dl>
94
+ <dt>
95
+ <span class="refentrytitle"><a href="atk-AtkRange.html">AtkRange</a></span><span class="refpurpose">A given range or subrange, to be used with <span class="type">AtkValue</span></span>
96
+ </dt>
97
+ <dt>
98
+ <span class="refentrytitle"><a href="AtkRelation.html">AtkRelation</a></span><span class="refpurpose"> — An object used to describe a relation between a
99
+ object and one or more other objects.</span>
100
+ </dt>
101
+ <dt>
102
+ <span class="refentrytitle"><a href="AtkRelationSet.html">AtkRelationSet</a></span><span class="refpurpose"> — A set of AtkRelations, normally the set of
103
+ AtkRelations which an AtkObject has.</span>
104
+ </dt>
105
+ <dt>
106
+ <span class="refentrytitle"><a href="atk-AtkState.html">AtkState</a></span><span class="refpurpose"> — An AtkState describes a component's particular state.</span>
107
+ </dt>
108
+ <dt>
109
+ <span class="refentrytitle"><a href="AtkStateSet.html">AtkStateSet</a></span><span class="refpurpose"> — An AtkStateSet determines a component's state set.</span>
110
+ </dt>
111
+ </dl></dd>
112
+ <dt><span class="chapter"><a href="accessibles.html">Custom accessible objects</a></span></dt>
113
+ <dd><dl>
114
+ <dt>
115
+ <span class="refentrytitle"><a href="AtkGObjectAccessible.html">AtkGObjectAccessible</a></span><span class="refpurpose"> — This object class is derived from AtkObject and
116
+ can be used as a basis implementing accessible objects.</span>
117
+ </dt>
118
+ <dt>
119
+ <span class="refentrytitle"><a href="AtkHyperlink.html">AtkHyperlink</a></span><span class="refpurpose"> — An ATK object which encapsulates a link or set
120
+ of links in a hypertext document.</span>
121
+ </dt>
122
+ <dt>
123
+ <span class="refentrytitle"><a href="AtkNoOpObject.html">AtkNoOpObject</a></span><span class="refpurpose"> — An AtkObject which purports to implement all ATK interfaces.</span>
124
+ </dt>
125
+ <dt>
126
+ <span class="refentrytitle"><a href="atk-AtkPlug.html">AtkPlug</a></span><span class="refpurpose"> — Toplevel for embedding into other processes</span>
127
+ </dt>
128
+ <dt>
129
+ <span class="refentrytitle"><a href="atk-AtkSocket.html">AtkSocket</a></span><span class="refpurpose"> — Container for AtkPlug objects from other processes</span>
130
+ </dt>
131
+ </dl></dd>
132
+ <dt><span class="chapter"><a href="utilities.html">Utilities</a></span></dt>
133
+ <dd><dl>
134
+ <dt>
135
+ <span class="refentrytitle"><a href="AtkNoOpObjectFactory.html">AtkNoOpObjectFactory</a></span><span class="refpurpose"> — The AtkObjectFactory which creates an AtkNoOpObject.</span>
136
+ </dt>
137
+ <dt>
138
+ <span class="refentrytitle"><a href="AtkObjectFactory.html">AtkObjectFactory</a></span><span class="refpurpose"> — The base object class for a factory used to
139
+ create accessible objects for objects of a specific GType.</span>
140
+ </dt>
141
+ <dt>
142
+ <span class="refentrytitle"><a href="AtkRegistry.html">AtkRegistry</a></span><span class="refpurpose"> — An object used to store the GType of the
143
+ factories used to create an accessible object for an object of a
144
+ particular GType.</span>
145
+ </dt>
146
+ <dt>
147
+ <span class="refentrytitle"><a href="atk-Versioning-Utilities.html">Versioning macros</a></span><span class="refpurpose"> — Variables and functions to check the ATK version</span>
148
+ </dt>
149
+ </dl></dd>
150
+ <dt><span class="chapter"><a href="deprecated.html">Deprecated Interfaces</a></span></dt>
151
+ <dd><dl><dt>
152
+ <span class="refentrytitle"><a href="AtkMisc.html">AtkMisc</a></span><span class="refpurpose"> — A set of ATK utility functions for thread locking</span>
153
+ </dt></dl></dd>
154
+ <dt><span class="index"><a href="api-index-full.html">Index of all symbols</a></span></dt>
155
+ <dt><span class="index"><a href="api-index-deprecated.html">Index of deprecated symbols</a></span></dt>
156
+ <dt><span class="index"><a href="api-index-1-3.html">Index of new symbols in 1.3</a></span></dt>
157
+ <dt><span class="index"><a href="api-index-1-4.html">Index of new symbols in 1.4</a></span></dt>
158
+ <dt><span class="index"><a href="api-index-1-6.html">Index of new symbols in 1.6</a></span></dt>
159
+ <dt><span class="index"><a href="api-index-1-9.html">Index of new symbols in 1.9</a></span></dt>
160
+ <dt><span class="index"><a href="api-index-1-12.html">Index of new symbols in 1.12</a></span></dt>
161
+ <dt><span class="index"><a href="api-index-1-13.html">Index of new symbols in 1.13</a></span></dt>
162
+ <dt><span class="index"><a href="api-index-1-20.html">Index of new symbols in 1.20</a></span></dt>
163
+ <dt><span class="index"><a href="api-index-1-22.html">Index of new symbols in 1.22</a></span></dt>
164
+ <dt><span class="index"><a href="api-index-1-30.html">Index of new symbols in 1.30</a></span></dt>
165
+ <dt><span class="index"><a href="api-index-2-2.html">Index of new symbols in 2.2</a></span></dt>
166
+ <dt><span class="index"><a href="api-index-2-8.html">Index of new symbols in 2.8</a></span></dt>
167
+ <dt><span class="index"><a href="api-index-2-10.html">Index of new symbols in 2.10</a></span></dt>
168
+ <dt><span class="index"><a href="api-index-2-12.html">Index of new symbols in 2.12</a></span></dt>
169
+ </dl></div>
170
+ </div>
171
+ <div class="footer">
172
+ <hr>
173
+ Generated by GTK-Doc V1.21.1</div>
174
+ </body>
175
+ </html>
@@ -0,0 +1,632 @@
1
+ <ANCHOR id="AtkObject" href="atk/AtkObject.html">
2
+ <ANCHOR id="AtkObject.functions" href="atk/AtkObject.html#AtkObject.functions">
3
+ <ANCHOR id="AtkObject.properties" href="atk/AtkObject.html#AtkObject.properties">
4
+ <ANCHOR id="AtkObject.signals" href="atk/AtkObject.html#AtkObject.signals">
5
+ <ANCHOR id="AtkImplementorIface" href="atk/AtkObject.html#AtkImplementorIface">
6
+ <ANCHOR id="AtkStateSet" href="atk/AtkObject.html#AtkStateSet">
7
+ <ANCHOR id="AtkObject.other" href="atk/AtkObject.html#AtkObject.other">
8
+ <ANCHOR id="AtkObject.object-hierarchy" href="atk/AtkObject.html#AtkObject.object-hierarchy">
9
+ <ANCHOR id="AtkObject.derived-interfaces" href="atk/AtkObject.html#AtkObject.derived-interfaces">
10
+ <ANCHOR id="AtkObject.description" href="atk/AtkObject.html#AtkObject.description">
11
+ <ANCHOR id="AtkObject.functions_details" href="atk/AtkObject.html#AtkObject.functions_details">
12
+ <ANCHOR id="atk-role-register" href="atk/AtkObject.html#atk-role-register">
13
+ <ANCHOR id="AtkFunction" href="atk/AtkObject.html#AtkFunction">
14
+ <ANCHOR id="AtkPropertyChangeHandler" href="atk/AtkObject.html#AtkPropertyChangeHandler">
15
+ <ANCHOR id="atk-implementor-ref-accessible" href="atk/AtkObject.html#atk-implementor-ref-accessible">
16
+ <ANCHOR id="atk-object-get-name" href="atk/AtkObject.html#atk-object-get-name">
17
+ <ANCHOR id="atk-object-get-description" href="atk/AtkObject.html#atk-object-get-description">
18
+ <ANCHOR id="atk-object-get-parent" href="atk/AtkObject.html#atk-object-get-parent">
19
+ <ANCHOR id="atk-object-peek-parent" href="atk/AtkObject.html#atk-object-peek-parent">
20
+ <ANCHOR id="atk-object-get-n-accessible-children" href="atk/AtkObject.html#atk-object-get-n-accessible-children">
21
+ <ANCHOR id="atk-object-ref-accessible-child" href="atk/AtkObject.html#atk-object-ref-accessible-child">
22
+ <ANCHOR id="atk-object-ref-relation-set" href="atk/AtkObject.html#atk-object-ref-relation-set">
23
+ <ANCHOR id="atk-object-get-layer" href="atk/AtkObject.html#atk-object-get-layer">
24
+ <ANCHOR id="atk-object-get-mdi-zorder" href="atk/AtkObject.html#atk-object-get-mdi-zorder">
25
+ <ANCHOR id="atk-object-get-role" href="atk/AtkObject.html#atk-object-get-role">
26
+ <ANCHOR id="atk-object-ref-state-set" href="atk/AtkObject.html#atk-object-ref-state-set">
27
+ <ANCHOR id="atk-object-get-index-in-parent" href="atk/AtkObject.html#atk-object-get-index-in-parent">
28
+ <ANCHOR id="atk-object-set-name" href="atk/AtkObject.html#atk-object-set-name">
29
+ <ANCHOR id="atk-object-set-description" href="atk/AtkObject.html#atk-object-set-description">
30
+ <ANCHOR id="atk-object-set-parent" href="atk/AtkObject.html#atk-object-set-parent">
31
+ <ANCHOR id="atk-object-set-role" href="atk/AtkObject.html#atk-object-set-role">
32
+ <ANCHOR id="atk-object-connect-property-change-handler" href="atk/AtkObject.html#atk-object-connect-property-change-handler">
33
+ <ANCHOR id="atk-object-remove-property-change-handler" href="atk/AtkObject.html#atk-object-remove-property-change-handler">
34
+ <ANCHOR id="atk-object-notify-state-change" href="atk/AtkObject.html#atk-object-notify-state-change">
35
+ <ANCHOR id="atk-object-initialize" href="atk/AtkObject.html#atk-object-initialize">
36
+ <ANCHOR id="atk-object-add-relationship" href="atk/AtkObject.html#atk-object-add-relationship">
37
+ <ANCHOR id="atk-object-remove-relationship" href="atk/AtkObject.html#atk-object-remove-relationship">
38
+ <ANCHOR id="atk-object-get-attributes" href="atk/AtkObject.html#atk-object-get-attributes">
39
+ <ANCHOR id="atk-object-get-object-locale" href="atk/AtkObject.html#atk-object-get-object-locale">
40
+ <ANCHOR id="atk-role-get-name" href="atk/AtkObject.html#atk-role-get-name">
41
+ <ANCHOR id="atk-role-get-localized-name" href="atk/AtkObject.html#atk-role-get-localized-name">
42
+ <ANCHOR id="atk-role-for-name" href="atk/AtkObject.html#atk-role-for-name">
43
+ <ANCHOR id="AtkObject.other_details" href="atk/AtkObject.html#AtkObject.other_details">
44
+ <ANCHOR id="AtkObject-struct" href="atk/AtkObject.html#AtkObject-struct">
45
+ <ANCHOR id="AtkRole" href="atk/AtkObject.html#AtkRole">
46
+ <ANCHOR id="AtkLayer" href="atk/AtkObject.html#AtkLayer">
47
+ <ANCHOR id="AtkImplementor" href="atk/AtkObject.html#AtkImplementor">
48
+ <ANCHOR id="AtkAttribute" href="atk/AtkObject.html#AtkAttribute">
49
+ <ANCHOR id="AtkAttributeSet" href="atk/AtkObject.html#AtkAttributeSet">
50
+ <ANCHOR id="AtkPropertyValues" href="atk/AtkObject.html#AtkPropertyValues">
51
+ <ANCHOR id="AtkObject.property-details" href="atk/AtkObject.html#AtkObject.property-details">
52
+ <ANCHOR id="AtkObject--accessible-component-layer" href="atk/AtkObject.html#AtkObject--accessible-component-layer">
53
+ <ANCHOR id="AtkObject--accessible-component-mdi-zorder" href="atk/AtkObject.html#AtkObject--accessible-component-mdi-zorder">
54
+ <ANCHOR id="AtkObject--accessible-description" href="atk/AtkObject.html#AtkObject--accessible-description">
55
+ <ANCHOR id="AtkObject--accessible-hypertext-nlinks" href="atk/AtkObject.html#AtkObject--accessible-hypertext-nlinks">
56
+ <ANCHOR id="AtkObject--accessible-name" href="atk/AtkObject.html#AtkObject--accessible-name">
57
+ <ANCHOR id="AtkObject--accessible-parent" href="atk/AtkObject.html#AtkObject--accessible-parent">
58
+ <ANCHOR id="AtkObject--accessible-role" href="atk/AtkObject.html#AtkObject--accessible-role">
59
+ <ANCHOR id="AtkObject--accessible-table-caption" href="atk/AtkObject.html#AtkObject--accessible-table-caption">
60
+ <ANCHOR id="AtkObject--accessible-table-caption-object" href="atk/AtkObject.html#AtkObject--accessible-table-caption-object">
61
+ <ANCHOR id="AtkObject--accessible-table-column-description" href="atk/AtkObject.html#AtkObject--accessible-table-column-description">
62
+ <ANCHOR id="AtkObject--accessible-table-column-header" href="atk/AtkObject.html#AtkObject--accessible-table-column-header">
63
+ <ANCHOR id="AtkObject--accessible-table-row-description" href="atk/AtkObject.html#AtkObject--accessible-table-row-description">
64
+ <ANCHOR id="AtkObject--accessible-table-row-header" href="atk/AtkObject.html#AtkObject--accessible-table-row-header">
65
+ <ANCHOR id="AtkObject--accessible-table-summary" href="atk/AtkObject.html#AtkObject--accessible-table-summary">
66
+ <ANCHOR id="AtkObject--accessible-value" href="atk/AtkObject.html#AtkObject--accessible-value">
67
+ <ANCHOR id="AtkObject.signal-details" href="atk/AtkObject.html#AtkObject.signal-details">
68
+ <ANCHOR id="AtkObject-active-descendant-changed" href="atk/AtkObject.html#AtkObject-active-descendant-changed">
69
+ <ANCHOR id="AtkObject-children-changed" href="atk/AtkObject.html#AtkObject-children-changed">
70
+ <ANCHOR id="AtkObject-focus-event" href="atk/AtkObject.html#AtkObject-focus-event">
71
+ <ANCHOR id="AtkObject-property-change" href="atk/AtkObject.html#AtkObject-property-change">
72
+ <ANCHOR id="AtkObject-state-change" href="atk/AtkObject.html#AtkObject-state-change">
73
+ <ANCHOR id="AtkObject-visible-data-changed" href="atk/AtkObject.html#AtkObject-visible-data-changed">
74
+ <ANCHOR id="AtkUtil" href="atk/AtkUtil.html">
75
+ <ANCHOR id="AtkUtil.functions" href="atk/AtkUtil.html#AtkUtil.functions">
76
+ <ANCHOR id="AtkUtil.other" href="atk/AtkUtil.html#AtkUtil.other">
77
+ <ANCHOR id="AtkUtil.object-hierarchy" href="atk/AtkUtil.html#AtkUtil.object-hierarchy">
78
+ <ANCHOR id="AtkUtil.description" href="atk/AtkUtil.html#AtkUtil.description">
79
+ <ANCHOR id="AtkUtil.functions_details" href="atk/AtkUtil.html#AtkUtil.functions_details">
80
+ <ANCHOR id="atk-add-focus-tracker" href="atk/AtkUtil.html#atk-add-focus-tracker">
81
+ <ANCHOR id="atk-remove-focus-tracker" href="atk/AtkUtil.html#atk-remove-focus-tracker">
82
+ <ANCHOR id="atk-focus-tracker-init" href="atk/AtkUtil.html#atk-focus-tracker-init">
83
+ <ANCHOR id="atk-focus-tracker-notify" href="atk/AtkUtil.html#atk-focus-tracker-notify">
84
+ <ANCHOR id="AtkEventListener" href="atk/AtkUtil.html#AtkEventListener">
85
+ <ANCHOR id="AtkEventListenerInit" href="atk/AtkUtil.html#AtkEventListenerInit">
86
+ <ANCHOR id="atk-add-global-event-listener" href="atk/AtkUtil.html#atk-add-global-event-listener">
87
+ <ANCHOR id="atk-remove-global-event-listener" href="atk/AtkUtil.html#atk-remove-global-event-listener">
88
+ <ANCHOR id="AtkKeySnoopFunc" href="atk/AtkUtil.html#AtkKeySnoopFunc">
89
+ <ANCHOR id="atk-add-key-event-listener" href="atk/AtkUtil.html#atk-add-key-event-listener">
90
+ <ANCHOR id="atk-remove-key-event-listener" href="atk/AtkUtil.html#atk-remove-key-event-listener">
91
+ <ANCHOR id="atk-get-root" href="atk/AtkUtil.html#atk-get-root">
92
+ <ANCHOR id="atk-get-focus-object" href="atk/AtkUtil.html#atk-get-focus-object">
93
+ <ANCHOR id="atk-get-toolkit-name" href="atk/AtkUtil.html#atk-get-toolkit-name">
94
+ <ANCHOR id="atk-get-toolkit-version" href="atk/AtkUtil.html#atk-get-toolkit-version">
95
+ <ANCHOR id="atk-get-version" href="atk/AtkUtil.html#atk-get-version">
96
+ <ANCHOR id="ATK-DEFINE-TYPE:CAPS" href="atk/AtkUtil.html#ATK-DEFINE-TYPE:CAPS">
97
+ <ANCHOR id="ATK-DEFINE-TYPE-EXTENDED:CAPS" href="atk/AtkUtil.html#ATK-DEFINE-TYPE-EXTENDED:CAPS">
98
+ <ANCHOR id="ATK-DEFINE-TYPE-WITH-CODE:CAPS" href="atk/AtkUtil.html#ATK-DEFINE-TYPE-WITH-CODE:CAPS">
99
+ <ANCHOR id="ATK-DEFINE-ABSTRACT-TYPE:CAPS" href="atk/AtkUtil.html#ATK-DEFINE-ABSTRACT-TYPE:CAPS">
100
+ <ANCHOR id="ATK-DEFINE-ABSTRACT-TYPE-WITH-CODE:CAPS" href="atk/AtkUtil.html#ATK-DEFINE-ABSTRACT-TYPE-WITH-CODE:CAPS">
101
+ <ANCHOR id="AtkUtil.other_details" href="atk/AtkUtil.html#AtkUtil.other_details">
102
+ <ANCHOR id="AtkUtil-struct" href="atk/AtkUtil.html#AtkUtil-struct">
103
+ <ANCHOR id="AtkUtilClass" href="atk/AtkUtil.html#AtkUtilClass">
104
+ <ANCHOR id="AtkCoordType" href="atk/AtkUtil.html#AtkCoordType">
105
+ <ANCHOR id="AtkKeyEventStruct" href="atk/AtkUtil.html#AtkKeyEventStruct">
106
+ <ANCHOR id="AtkKeyEventType" href="atk/AtkUtil.html#AtkKeyEventType">
107
+ <ANCHOR id="AtkAction" href="atk/AtkAction.html">
108
+ <ANCHOR id="AtkAction.functions" href="atk/AtkAction.html#AtkAction.functions">
109
+ <ANCHOR id="AtkAction.other" href="atk/AtkAction.html#AtkAction.other">
110
+ <ANCHOR id="AtkAction.object-hierarchy" href="atk/AtkAction.html#AtkAction.object-hierarchy">
111
+ <ANCHOR id="AtkAction.implementations" href="atk/AtkAction.html#AtkAction.implementations">
112
+ <ANCHOR id="AtkAction.description" href="atk/AtkAction.html#AtkAction.description">
113
+ <ANCHOR id="AtkAction.functions_details" href="atk/AtkAction.html#AtkAction.functions_details">
114
+ <ANCHOR id="atk-action-do-action" href="atk/AtkAction.html#atk-action-do-action">
115
+ <ANCHOR id="atk-action-get-n-actions" href="atk/AtkAction.html#atk-action-get-n-actions">
116
+ <ANCHOR id="atk-action-get-description" href="atk/AtkAction.html#atk-action-get-description">
117
+ <ANCHOR id="atk-action-get-name" href="atk/AtkAction.html#atk-action-get-name">
118
+ <ANCHOR id="atk-action-get-localized-name" href="atk/AtkAction.html#atk-action-get-localized-name">
119
+ <ANCHOR id="atk-action-get-keybinding" href="atk/AtkAction.html#atk-action-get-keybinding">
120
+ <ANCHOR id="atk-action-set-description" href="atk/AtkAction.html#atk-action-set-description">
121
+ <ANCHOR id="AtkAction.other_details" href="atk/AtkAction.html#AtkAction.other_details">
122
+ <ANCHOR id="AtkAction-struct" href="atk/AtkAction.html#AtkAction-struct">
123
+ <ANCHOR id="AtkActionIface" href="atk/AtkAction.html#AtkActionIface">
124
+ <ANCHOR id="AtkComponent" href="atk/AtkComponent.html">
125
+ <ANCHOR id="AtkComponent.functions" href="atk/AtkComponent.html#AtkComponent.functions">
126
+ <ANCHOR id="AtkComponent.signals" href="atk/AtkComponent.html#AtkComponent.signals">
127
+ <ANCHOR id="AtkComponent.other" href="atk/AtkComponent.html#AtkComponent.other">
128
+ <ANCHOR id="AtkComponent.object-hierarchy" href="atk/AtkComponent.html#AtkComponent.object-hierarchy">
129
+ <ANCHOR id="AtkComponent.implementations" href="atk/AtkComponent.html#AtkComponent.implementations">
130
+ <ANCHOR id="AtkComponent.description" href="atk/AtkComponent.html#AtkComponent.description">
131
+ <ANCHOR id="AtkComponent.functions_details" href="atk/AtkComponent.html#AtkComponent.functions_details">
132
+ <ANCHOR id="AtkFocusHandler" href="atk/AtkComponent.html#AtkFocusHandler">
133
+ <ANCHOR id="atk-component-add-focus-handler" href="atk/AtkComponent.html#atk-component-add-focus-handler">
134
+ <ANCHOR id="atk-component-contains" href="atk/AtkComponent.html#atk-component-contains">
135
+ <ANCHOR id="atk-component-get-extents" href="atk/AtkComponent.html#atk-component-get-extents">
136
+ <ANCHOR id="atk-component-get-layer" href="atk/AtkComponent.html#atk-component-get-layer">
137
+ <ANCHOR id="atk-component-get-mdi-zorder" href="atk/AtkComponent.html#atk-component-get-mdi-zorder">
138
+ <ANCHOR id="atk-component-get-position" href="atk/AtkComponent.html#atk-component-get-position">
139
+ <ANCHOR id="atk-component-get-size" href="atk/AtkComponent.html#atk-component-get-size">
140
+ <ANCHOR id="atk-component-grab-focus" href="atk/AtkComponent.html#atk-component-grab-focus">
141
+ <ANCHOR id="atk-component-ref-accessible-at-point" href="atk/AtkComponent.html#atk-component-ref-accessible-at-point">
142
+ <ANCHOR id="atk-component-remove-focus-handler" href="atk/AtkComponent.html#atk-component-remove-focus-handler">
143
+ <ANCHOR id="atk-component-set-extents" href="atk/AtkComponent.html#atk-component-set-extents">
144
+ <ANCHOR id="atk-component-set-position" href="atk/AtkComponent.html#atk-component-set-position">
145
+ <ANCHOR id="atk-component-set-size" href="atk/AtkComponent.html#atk-component-set-size">
146
+ <ANCHOR id="atk-component-get-alpha" href="atk/AtkComponent.html#atk-component-get-alpha">
147
+ <ANCHOR id="AtkComponent.other_details" href="atk/AtkComponent.html#AtkComponent.other_details">
148
+ <ANCHOR id="AtkComponent-struct" href="atk/AtkComponent.html#AtkComponent-struct">
149
+ <ANCHOR id="AtkComponentIface" href="atk/AtkComponent.html#AtkComponentIface">
150
+ <ANCHOR id="AtkRectangle" href="atk/AtkComponent.html#AtkRectangle">
151
+ <ANCHOR id="AtkComponent.signal-details" href="atk/AtkComponent.html#AtkComponent.signal-details">
152
+ <ANCHOR id="AtkComponent-bounds-changed" href="atk/AtkComponent.html#AtkComponent-bounds-changed">
153
+ <ANCHOR id="AtkDocument" href="atk/AtkDocument.html">
154
+ <ANCHOR id="AtkDocument.functions" href="atk/AtkDocument.html#AtkDocument.functions">
155
+ <ANCHOR id="AtkDocument.signals" href="atk/AtkDocument.html#AtkDocument.signals">
156
+ <ANCHOR id="AtkDocument.other" href="atk/AtkDocument.html#AtkDocument.other">
157
+ <ANCHOR id="AtkDocument.object-hierarchy" href="atk/AtkDocument.html#AtkDocument.object-hierarchy">
158
+ <ANCHOR id="AtkDocument.implementations" href="atk/AtkDocument.html#AtkDocument.implementations">
159
+ <ANCHOR id="AtkDocument.description" href="atk/AtkDocument.html#AtkDocument.description">
160
+ <ANCHOR id="AtkDocument.functions_details" href="atk/AtkDocument.html#AtkDocument.functions_details">
161
+ <ANCHOR id="atk-document-get-document-type" href="atk/AtkDocument.html#atk-document-get-document-type">
162
+ <ANCHOR id="atk-document-get-document" href="atk/AtkDocument.html#atk-document-get-document">
163
+ <ANCHOR id="atk-document-get-attribute-value" href="atk/AtkDocument.html#atk-document-get-attribute-value">
164
+ <ANCHOR id="atk-document-set-attribute-value" href="atk/AtkDocument.html#atk-document-set-attribute-value">
165
+ <ANCHOR id="atk-document-get-attributes" href="atk/AtkDocument.html#atk-document-get-attributes">
166
+ <ANCHOR id="atk-document-get-locale" href="atk/AtkDocument.html#atk-document-get-locale">
167
+ <ANCHOR id="atk-document-get-current-page-number" href="atk/AtkDocument.html#atk-document-get-current-page-number">
168
+ <ANCHOR id="atk-document-get-page-count" href="atk/AtkDocument.html#atk-document-get-page-count">
169
+ <ANCHOR id="AtkDocument.other_details" href="atk/AtkDocument.html#AtkDocument.other_details">
170
+ <ANCHOR id="AtkDocument-struct" href="atk/AtkDocument.html#AtkDocument-struct">
171
+ <ANCHOR id="AtkDocumentIface" href="atk/AtkDocument.html#AtkDocumentIface">
172
+ <ANCHOR id="AtkDocument.signal-details" href="atk/AtkDocument.html#AtkDocument.signal-details">
173
+ <ANCHOR id="AtkDocument-load-complete" href="atk/AtkDocument.html#AtkDocument-load-complete">
174
+ <ANCHOR id="AtkDocument-load-stopped" href="atk/AtkDocument.html#AtkDocument-load-stopped">
175
+ <ANCHOR id="AtkDocument-page-changed" href="atk/AtkDocument.html#AtkDocument-page-changed">
176
+ <ANCHOR id="AtkDocument-reload" href="atk/AtkDocument.html#AtkDocument-reload">
177
+ <ANCHOR id="AtkEditableText" href="atk/AtkEditableText.html">
178
+ <ANCHOR id="AtkEditableText.functions" href="atk/AtkEditableText.html#AtkEditableText.functions">
179
+ <ANCHOR id="AtkEditableText.other" href="atk/AtkEditableText.html#AtkEditableText.other">
180
+ <ANCHOR id="AtkEditableText.object-hierarchy" href="atk/AtkEditableText.html#AtkEditableText.object-hierarchy">
181
+ <ANCHOR id="AtkEditableText.implementations" href="atk/AtkEditableText.html#AtkEditableText.implementations">
182
+ <ANCHOR id="AtkEditableText.description" href="atk/AtkEditableText.html#AtkEditableText.description">
183
+ <ANCHOR id="AtkEditableText.functions_details" href="atk/AtkEditableText.html#AtkEditableText.functions_details">
184
+ <ANCHOR id="atk-editable-text-set-run-attributes" href="atk/AtkEditableText.html#atk-editable-text-set-run-attributes">
185
+ <ANCHOR id="atk-editable-text-set-text-contents" href="atk/AtkEditableText.html#atk-editable-text-set-text-contents">
186
+ <ANCHOR id="atk-editable-text-insert-text" href="atk/AtkEditableText.html#atk-editable-text-insert-text">
187
+ <ANCHOR id="atk-editable-text-copy-text" href="atk/AtkEditableText.html#atk-editable-text-copy-text">
188
+ <ANCHOR id="atk-editable-text-cut-text" href="atk/AtkEditableText.html#atk-editable-text-cut-text">
189
+ <ANCHOR id="atk-editable-text-delete-text" href="atk/AtkEditableText.html#atk-editable-text-delete-text">
190
+ <ANCHOR id="atk-editable-text-paste-text" href="atk/AtkEditableText.html#atk-editable-text-paste-text">
191
+ <ANCHOR id="AtkEditableText.other_details" href="atk/AtkEditableText.html#AtkEditableText.other_details">
192
+ <ANCHOR id="AtkEditableText-struct" href="atk/AtkEditableText.html#AtkEditableText-struct">
193
+ <ANCHOR id="atk-AtkHyperlinkImpl" href="atk/atk-AtkHyperlinkImpl.html">
194
+ <ANCHOR id="atk-AtkHyperlinkImpl.functions" href="atk/atk-AtkHyperlinkImpl.html#atk-AtkHyperlinkImpl.functions">
195
+ <ANCHOR id="atk-AtkHyperlinkImpl.other" href="atk/atk-AtkHyperlinkImpl.html#atk-AtkHyperlinkImpl.other">
196
+ <ANCHOR id="atk-AtkHyperlinkImpl.description" href="atk/atk-AtkHyperlinkImpl.html#atk-AtkHyperlinkImpl.description">
197
+ <ANCHOR id="atk-AtkHyperlinkImpl.functions_details" href="atk/atk-AtkHyperlinkImpl.html#atk-AtkHyperlinkImpl.functions_details">
198
+ <ANCHOR id="atk-hyperlink-impl-get-hyperlink" href="atk/atk-AtkHyperlinkImpl.html#atk-hyperlink-impl-get-hyperlink">
199
+ <ANCHOR id="atk-AtkHyperlinkImpl.other_details" href="atk/atk-AtkHyperlinkImpl.html#atk-AtkHyperlinkImpl.other_details">
200
+ <ANCHOR id="AtkHyperlinkImpl" href="atk/atk-AtkHyperlinkImpl.html#AtkHyperlinkImpl">
201
+ <ANCHOR id="AtkHypertext" href="atk/AtkHypertext.html">
202
+ <ANCHOR id="AtkHypertext.functions" href="atk/AtkHypertext.html#AtkHypertext.functions">
203
+ <ANCHOR id="AtkHypertext.signals" href="atk/AtkHypertext.html#AtkHypertext.signals">
204
+ <ANCHOR id="AtkHypertext.other" href="atk/AtkHypertext.html#AtkHypertext.other">
205
+ <ANCHOR id="AtkHypertext.object-hierarchy" href="atk/AtkHypertext.html#AtkHypertext.object-hierarchy">
206
+ <ANCHOR id="AtkHypertext.implementations" href="atk/AtkHypertext.html#AtkHypertext.implementations">
207
+ <ANCHOR id="AtkHypertext.description" href="atk/AtkHypertext.html#AtkHypertext.description">
208
+ <ANCHOR id="AtkHypertext.functions_details" href="atk/AtkHypertext.html#AtkHypertext.functions_details">
209
+ <ANCHOR id="atk-hypertext-get-link" href="atk/AtkHypertext.html#atk-hypertext-get-link">
210
+ <ANCHOR id="atk-hypertext-get-n-links" href="atk/AtkHypertext.html#atk-hypertext-get-n-links">
211
+ <ANCHOR id="atk-hypertext-get-link-index" href="atk/AtkHypertext.html#atk-hypertext-get-link-index">
212
+ <ANCHOR id="AtkHypertext.other_details" href="atk/AtkHypertext.html#AtkHypertext.other_details">
213
+ <ANCHOR id="AtkHypertext-struct" href="atk/AtkHypertext.html#AtkHypertext-struct">
214
+ <ANCHOR id="AtkHypertext.signal-details" href="atk/AtkHypertext.html#AtkHypertext.signal-details">
215
+ <ANCHOR id="AtkHypertext-link-selected" href="atk/AtkHypertext.html#AtkHypertext-link-selected">
216
+ <ANCHOR id="AtkImage" href="atk/AtkImage.html">
217
+ <ANCHOR id="AtkImage.functions" href="atk/AtkImage.html#AtkImage.functions">
218
+ <ANCHOR id="AtkImage.other" href="atk/AtkImage.html#AtkImage.other">
219
+ <ANCHOR id="AtkImage.object-hierarchy" href="atk/AtkImage.html#AtkImage.object-hierarchy">
220
+ <ANCHOR id="AtkImage.implementations" href="atk/AtkImage.html#AtkImage.implementations">
221
+ <ANCHOR id="AtkImage.description" href="atk/AtkImage.html#AtkImage.description">
222
+ <ANCHOR id="AtkImage.functions_details" href="atk/AtkImage.html#AtkImage.functions_details">
223
+ <ANCHOR id="atk-image-get-image-position" href="atk/AtkImage.html#atk-image-get-image-position">
224
+ <ANCHOR id="atk-image-get-image-description" href="atk/AtkImage.html#atk-image-get-image-description">
225
+ <ANCHOR id="atk-image-set-image-description" href="atk/AtkImage.html#atk-image-set-image-description">
226
+ <ANCHOR id="atk-image-get-image-size" href="atk/AtkImage.html#atk-image-get-image-size">
227
+ <ANCHOR id="atk-image-get-image-locale" href="atk/AtkImage.html#atk-image-get-image-locale">
228
+ <ANCHOR id="AtkImage.other_details" href="atk/AtkImage.html#AtkImage.other_details">
229
+ <ANCHOR id="AtkImage-struct" href="atk/AtkImage.html#AtkImage-struct">
230
+ <ANCHOR id="AtkSelection" href="atk/AtkSelection.html">
231
+ <ANCHOR id="AtkSelection.functions" href="atk/AtkSelection.html#AtkSelection.functions">
232
+ <ANCHOR id="AtkSelection.signals" href="atk/AtkSelection.html#AtkSelection.signals">
233
+ <ANCHOR id="AtkSelection.other" href="atk/AtkSelection.html#AtkSelection.other">
234
+ <ANCHOR id="AtkSelection.object-hierarchy" href="atk/AtkSelection.html#AtkSelection.object-hierarchy">
235
+ <ANCHOR id="AtkSelection.implementations" href="atk/AtkSelection.html#AtkSelection.implementations">
236
+ <ANCHOR id="AtkSelection.description" href="atk/AtkSelection.html#AtkSelection.description">
237
+ <ANCHOR id="AtkSelection.functions_details" href="atk/AtkSelection.html#AtkSelection.functions_details">
238
+ <ANCHOR id="atk-selection-add-selection" href="atk/AtkSelection.html#atk-selection-add-selection">
239
+ <ANCHOR id="atk-selection-clear-selection" href="atk/AtkSelection.html#atk-selection-clear-selection">
240
+ <ANCHOR id="atk-selection-ref-selection" href="atk/AtkSelection.html#atk-selection-ref-selection">
241
+ <ANCHOR id="atk-selection-get-selection-count" href="atk/AtkSelection.html#atk-selection-get-selection-count">
242
+ <ANCHOR id="atk-selection-is-child-selected" href="atk/AtkSelection.html#atk-selection-is-child-selected">
243
+ <ANCHOR id="atk-selection-remove-selection" href="atk/AtkSelection.html#atk-selection-remove-selection">
244
+ <ANCHOR id="atk-selection-select-all-selection" href="atk/AtkSelection.html#atk-selection-select-all-selection">
245
+ <ANCHOR id="AtkSelection.other_details" href="atk/AtkSelection.html#AtkSelection.other_details">
246
+ <ANCHOR id="AtkSelection-struct" href="atk/AtkSelection.html#AtkSelection-struct">
247
+ <ANCHOR id="AtkSelection.signal-details" href="atk/AtkSelection.html#AtkSelection.signal-details">
248
+ <ANCHOR id="AtkSelection-selection-changed" href="atk/AtkSelection.html#AtkSelection-selection-changed">
249
+ <ANCHOR id="AtkStreamableContent" href="atk/AtkStreamableContent.html">
250
+ <ANCHOR id="AtkStreamableContent.functions" href="atk/AtkStreamableContent.html#AtkStreamableContent.functions">
251
+ <ANCHOR id="AtkStreamableContent.other" href="atk/AtkStreamableContent.html#AtkStreamableContent.other">
252
+ <ANCHOR id="AtkStreamableContent.object-hierarchy" href="atk/AtkStreamableContent.html#AtkStreamableContent.object-hierarchy">
253
+ <ANCHOR id="AtkStreamableContent.description" href="atk/AtkStreamableContent.html#AtkStreamableContent.description">
254
+ <ANCHOR id="AtkStreamableContent.functions_details" href="atk/AtkStreamableContent.html#AtkStreamableContent.functions_details">
255
+ <ANCHOR id="atk-streamable-content-get-n-mime-types" href="atk/AtkStreamableContent.html#atk-streamable-content-get-n-mime-types">
256
+ <ANCHOR id="atk-streamable-content-get-mime-type" href="atk/AtkStreamableContent.html#atk-streamable-content-get-mime-type">
257
+ <ANCHOR id="atk-streamable-content-get-stream" href="atk/AtkStreamableContent.html#atk-streamable-content-get-stream">
258
+ <ANCHOR id="atk-streamable-content-get-uri" href="atk/AtkStreamableContent.html#atk-streamable-content-get-uri">
259
+ <ANCHOR id="AtkStreamableContent.other_details" href="atk/AtkStreamableContent.html#AtkStreamableContent.other_details">
260
+ <ANCHOR id="AtkStreamableContent-struct" href="atk/AtkStreamableContent.html#AtkStreamableContent-struct">
261
+ <ANCHOR id="AtkTable" href="atk/AtkTable.html">
262
+ <ANCHOR id="AtkTable.functions" href="atk/AtkTable.html#AtkTable.functions">
263
+ <ANCHOR id="AtkTable.signals" href="atk/AtkTable.html#AtkTable.signals">
264
+ <ANCHOR id="AtkTable.other" href="atk/AtkTable.html#AtkTable.other">
265
+ <ANCHOR id="AtkTable.object-hierarchy" href="atk/AtkTable.html#AtkTable.object-hierarchy">
266
+ <ANCHOR id="AtkTable.implementations" href="atk/AtkTable.html#AtkTable.implementations">
267
+ <ANCHOR id="AtkTable.description" href="atk/AtkTable.html#AtkTable.description">
268
+ <ANCHOR id="AtkTable.functions_details" href="atk/AtkTable.html#AtkTable.functions_details">
269
+ <ANCHOR id="atk-table-ref-at" href="atk/AtkTable.html#atk-table-ref-at">
270
+ <ANCHOR id="atk-table-get-index-at" href="atk/AtkTable.html#atk-table-get-index-at">
271
+ <ANCHOR id="atk-table-get-column-at-index" href="atk/AtkTable.html#atk-table-get-column-at-index">
272
+ <ANCHOR id="atk-table-get-row-at-index" href="atk/AtkTable.html#atk-table-get-row-at-index">
273
+ <ANCHOR id="atk-table-get-n-columns" href="atk/AtkTable.html#atk-table-get-n-columns">
274
+ <ANCHOR id="atk-table-get-n-rows" href="atk/AtkTable.html#atk-table-get-n-rows">
275
+ <ANCHOR id="atk-table-get-column-extent-at" href="atk/AtkTable.html#atk-table-get-column-extent-at">
276
+ <ANCHOR id="atk-table-get-row-extent-at" href="atk/AtkTable.html#atk-table-get-row-extent-at">
277
+ <ANCHOR id="atk-table-get-caption" href="atk/AtkTable.html#atk-table-get-caption">
278
+ <ANCHOR id="atk-table-get-column-description" href="atk/AtkTable.html#atk-table-get-column-description">
279
+ <ANCHOR id="atk-table-get-row-description" href="atk/AtkTable.html#atk-table-get-row-description">
280
+ <ANCHOR id="atk-table-get-column-header" href="atk/AtkTable.html#atk-table-get-column-header">
281
+ <ANCHOR id="atk-table-get-row-header" href="atk/AtkTable.html#atk-table-get-row-header">
282
+ <ANCHOR id="atk-table-get-summary" href="atk/AtkTable.html#atk-table-get-summary">
283
+ <ANCHOR id="atk-table-set-caption" href="atk/AtkTable.html#atk-table-set-caption">
284
+ <ANCHOR id="atk-table-set-row-description" href="atk/AtkTable.html#atk-table-set-row-description">
285
+ <ANCHOR id="atk-table-set-column-description" href="atk/AtkTable.html#atk-table-set-column-description">
286
+ <ANCHOR id="atk-table-set-row-header" href="atk/AtkTable.html#atk-table-set-row-header">
287
+ <ANCHOR id="atk-table-set-column-header" href="atk/AtkTable.html#atk-table-set-column-header">
288
+ <ANCHOR id="atk-table-set-summary" href="atk/AtkTable.html#atk-table-set-summary">
289
+ <ANCHOR id="atk-table-get-selected-columns" href="atk/AtkTable.html#atk-table-get-selected-columns">
290
+ <ANCHOR id="atk-table-get-selected-rows" href="atk/AtkTable.html#atk-table-get-selected-rows">
291
+ <ANCHOR id="atk-table-is-column-selected" href="atk/AtkTable.html#atk-table-is-column-selected">
292
+ <ANCHOR id="atk-table-is-row-selected" href="atk/AtkTable.html#atk-table-is-row-selected">
293
+ <ANCHOR id="atk-table-is-selected" href="atk/AtkTable.html#atk-table-is-selected">
294
+ <ANCHOR id="atk-table-add-column-selection" href="atk/AtkTable.html#atk-table-add-column-selection">
295
+ <ANCHOR id="atk-table-add-row-selection" href="atk/AtkTable.html#atk-table-add-row-selection">
296
+ <ANCHOR id="atk-table-remove-column-selection" href="atk/AtkTable.html#atk-table-remove-column-selection">
297
+ <ANCHOR id="atk-table-remove-row-selection" href="atk/AtkTable.html#atk-table-remove-row-selection">
298
+ <ANCHOR id="AtkTable.other_details" href="atk/AtkTable.html#AtkTable.other_details">
299
+ <ANCHOR id="AtkTable-struct" href="atk/AtkTable.html#AtkTable-struct">
300
+ <ANCHOR id="AtkTable.signal-details" href="atk/AtkTable.html#AtkTable.signal-details">
301
+ <ANCHOR id="AtkTable-column-deleted" href="atk/AtkTable.html#AtkTable-column-deleted">
302
+ <ANCHOR id="AtkTable-column-inserted" href="atk/AtkTable.html#AtkTable-column-inserted">
303
+ <ANCHOR id="AtkTable-column-reordered" href="atk/AtkTable.html#AtkTable-column-reordered">
304
+ <ANCHOR id="AtkTable-model-changed" href="atk/AtkTable.html#AtkTable-model-changed">
305
+ <ANCHOR id="AtkTable-row-deleted" href="atk/AtkTable.html#AtkTable-row-deleted">
306
+ <ANCHOR id="AtkTable-row-inserted" href="atk/AtkTable.html#AtkTable-row-inserted">
307
+ <ANCHOR id="AtkTable-row-reordered" href="atk/AtkTable.html#AtkTable-row-reordered">
308
+ <ANCHOR id="AtkTableCell" href="atk/AtkTableCell.html">
309
+ <ANCHOR id="AtkTableCell.functions" href="atk/AtkTableCell.html#AtkTableCell.functions">
310
+ <ANCHOR id="AtkTableCell.other" href="atk/AtkTableCell.html#AtkTableCell.other">
311
+ <ANCHOR id="AtkTableCell.object-hierarchy" href="atk/AtkTableCell.html#AtkTableCell.object-hierarchy">
312
+ <ANCHOR id="AtkTableCell.prerequisites" href="atk/AtkTableCell.html#AtkTableCell.prerequisites">
313
+ <ANCHOR id="AtkTableCell.implementations" href="atk/AtkTableCell.html#AtkTableCell.implementations">
314
+ <ANCHOR id="AtkTableCell.description" href="atk/AtkTableCell.html#AtkTableCell.description">
315
+ <ANCHOR id="AtkTableCell.functions_details" href="atk/AtkTableCell.html#AtkTableCell.functions_details">
316
+ <ANCHOR id="atk-table-cell-get-column-span" href="atk/AtkTableCell.html#atk-table-cell-get-column-span">
317
+ <ANCHOR id="atk-table-cell-get-column-header-cells" href="atk/AtkTableCell.html#atk-table-cell-get-column-header-cells">
318
+ <ANCHOR id="atk-table-cell-get-position" href="atk/AtkTableCell.html#atk-table-cell-get-position">
319
+ <ANCHOR id="atk-table-cell-get-row-span" href="atk/AtkTableCell.html#atk-table-cell-get-row-span">
320
+ <ANCHOR id="atk-table-cell-get-row-header-cells" href="atk/AtkTableCell.html#atk-table-cell-get-row-header-cells">
321
+ <ANCHOR id="atk-table-cell-get-row-column-span" href="atk/AtkTableCell.html#atk-table-cell-get-row-column-span">
322
+ <ANCHOR id="atk-table-cell-get-table" href="atk/AtkTableCell.html#atk-table-cell-get-table">
323
+ <ANCHOR id="AtkTableCell.other_details" href="atk/AtkTableCell.html#AtkTableCell.other_details">
324
+ <ANCHOR id="AtkTableCell-struct" href="atk/AtkTableCell.html#AtkTableCell-struct">
325
+ <ANCHOR id="AtkTableCellIface" href="atk/AtkTableCell.html#AtkTableCellIface">
326
+ <ANCHOR id="AtkText" href="atk/AtkText.html">
327
+ <ANCHOR id="AtkText.functions" href="atk/AtkText.html#AtkText.functions">
328
+ <ANCHOR id="AtkText.signals" href="atk/AtkText.html#AtkText.signals">
329
+ <ANCHOR id="AtkText.other" href="atk/AtkText.html#AtkText.other">
330
+ <ANCHOR id="AtkText.object-hierarchy" href="atk/AtkText.html#AtkText.object-hierarchy">
331
+ <ANCHOR id="AtkText.implementations" href="atk/AtkText.html#AtkText.implementations">
332
+ <ANCHOR id="AtkText.description" href="atk/AtkText.html#AtkText.description">
333
+ <ANCHOR id="AtkText.functions_details" href="atk/AtkText.html#AtkText.functions_details">
334
+ <ANCHOR id="atk-text-get-text" href="atk/AtkText.html#atk-text-get-text">
335
+ <ANCHOR id="atk-text-get-character-at-offset" href="atk/AtkText.html#atk-text-get-character-at-offset">
336
+ <ANCHOR id="atk-text-get-text-after-offset" href="atk/AtkText.html#atk-text-get-text-after-offset">
337
+ <ANCHOR id="atk-text-get-text-at-offset" href="atk/AtkText.html#atk-text-get-text-at-offset">
338
+ <ANCHOR id="atk-text-get-text-before-offset" href="atk/AtkText.html#atk-text-get-text-before-offset">
339
+ <ANCHOR id="atk-text-get-string-at-offset" href="atk/AtkText.html#atk-text-get-string-at-offset">
340
+ <ANCHOR id="atk-text-get-caret-offset" href="atk/AtkText.html#atk-text-get-caret-offset">
341
+ <ANCHOR id="atk-text-get-character-extents" href="atk/AtkText.html#atk-text-get-character-extents">
342
+ <ANCHOR id="atk-text-get-run-attributes" href="atk/AtkText.html#atk-text-get-run-attributes">
343
+ <ANCHOR id="atk-text-get-default-attributes" href="atk/AtkText.html#atk-text-get-default-attributes">
344
+ <ANCHOR id="atk-text-get-character-count" href="atk/AtkText.html#atk-text-get-character-count">
345
+ <ANCHOR id="atk-text-get-offset-at-point" href="atk/AtkText.html#atk-text-get-offset-at-point">
346
+ <ANCHOR id="atk-text-get-bounded-ranges" href="atk/AtkText.html#atk-text-get-bounded-ranges">
347
+ <ANCHOR id="atk-text-get-range-extents" href="atk/AtkText.html#atk-text-get-range-extents">
348
+ <ANCHOR id="atk-text-free-ranges" href="atk/AtkText.html#atk-text-free-ranges">
349
+ <ANCHOR id="atk-text-get-n-selections" href="atk/AtkText.html#atk-text-get-n-selections">
350
+ <ANCHOR id="atk-text-get-selection" href="atk/AtkText.html#atk-text-get-selection">
351
+ <ANCHOR id="atk-text-add-selection" href="atk/AtkText.html#atk-text-add-selection">
352
+ <ANCHOR id="atk-text-remove-selection" href="atk/AtkText.html#atk-text-remove-selection">
353
+ <ANCHOR id="atk-text-set-selection" href="atk/AtkText.html#atk-text-set-selection">
354
+ <ANCHOR id="atk-text-set-caret-offset" href="atk/AtkText.html#atk-text-set-caret-offset">
355
+ <ANCHOR id="atk-attribute-set-free" href="atk/AtkText.html#atk-attribute-set-free">
356
+ <ANCHOR id="atk-text-attribute-register" href="atk/AtkText.html#atk-text-attribute-register">
357
+ <ANCHOR id="atk-text-attribute-get-name" href="atk/AtkText.html#atk-text-attribute-get-name">
358
+ <ANCHOR id="atk-text-attribute-for-name" href="atk/AtkText.html#atk-text-attribute-for-name">
359
+ <ANCHOR id="atk-text-attribute-get-value" href="atk/AtkText.html#atk-text-attribute-get-value">
360
+ <ANCHOR id="AtkText.other_details" href="atk/AtkText.html#AtkText.other_details">
361
+ <ANCHOR id="AtkText-struct" href="atk/AtkText.html#AtkText-struct">
362
+ <ANCHOR id="AtkTextIface" href="atk/AtkText.html#AtkTextIface">
363
+ <ANCHOR id="AtkTextBoundary" href="atk/AtkText.html#AtkTextBoundary">
364
+ <ANCHOR id="AtkTextGranularity" href="atk/AtkText.html#AtkTextGranularity">
365
+ <ANCHOR id="AtkTextClipType" href="atk/AtkText.html#AtkTextClipType">
366
+ <ANCHOR id="AtkTextRange" href="atk/AtkText.html#AtkTextRange">
367
+ <ANCHOR id="AtkTextRectangle" href="atk/AtkText.html#AtkTextRectangle">
368
+ <ANCHOR id="AtkTextAttribute" href="atk/AtkText.html#AtkTextAttribute">
369
+ <ANCHOR id="AtkText.signal-details" href="atk/AtkText.html#AtkText.signal-details">
370
+ <ANCHOR id="AtkText-text-attributes-changed" href="atk/AtkText.html#AtkText-text-attributes-changed">
371
+ <ANCHOR id="AtkText-text-caret-moved" href="atk/AtkText.html#AtkText-text-caret-moved">
372
+ <ANCHOR id="AtkText-text-changed" href="atk/AtkText.html#AtkText-text-changed">
373
+ <ANCHOR id="AtkText-text-insert" href="atk/AtkText.html#AtkText-text-insert">
374
+ <ANCHOR id="AtkText-text-remove" href="atk/AtkText.html#AtkText-text-remove">
375
+ <ANCHOR id="AtkText-text-selection-changed" href="atk/AtkText.html#AtkText-text-selection-changed">
376
+ <ANCHOR id="AtkValue" href="atk/AtkValue.html">
377
+ <ANCHOR id="AtkValue.functions" href="atk/AtkValue.html#AtkValue.functions">
378
+ <ANCHOR id="AtkValue.signals" href="atk/AtkValue.html#AtkValue.signals">
379
+ <ANCHOR id="AtkValue.other" href="atk/AtkValue.html#AtkValue.other">
380
+ <ANCHOR id="AtkValue.object-hierarchy" href="atk/AtkValue.html#AtkValue.object-hierarchy">
381
+ <ANCHOR id="AtkValue.implementations" href="atk/AtkValue.html#AtkValue.implementations">
382
+ <ANCHOR id="AtkValue.description" href="atk/AtkValue.html#AtkValue.description">
383
+ <ANCHOR id="current-value-text" href="atk/AtkValue.html#current-value-text">
384
+ <ANCHOR id="implementor-notes" href="atk/AtkValue.html#implementor-notes">
385
+ <ANCHOR id="ranges" href="atk/AtkValue.html#ranges">
386
+ <ANCHOR id="ranges-implementor-notes" href="atk/AtkValue.html#ranges-implementor-notes">
387
+ <ANCHOR id="localization" href="atk/AtkValue.html#localization">
388
+ <ANCHOR id="changes" href="atk/AtkValue.html#changes">
389
+ <ANCHOR id="AtkValue.functions_details" href="atk/AtkValue.html#AtkValue.functions_details">
390
+ <ANCHOR id="atk-value-get-current-value" href="atk/AtkValue.html#atk-value-get-current-value">
391
+ <ANCHOR id="atk-value-get-maximum-value" href="atk/AtkValue.html#atk-value-get-maximum-value">
392
+ <ANCHOR id="atk-value-get-minimum-value" href="atk/AtkValue.html#atk-value-get-minimum-value">
393
+ <ANCHOR id="atk-value-set-current-value" href="atk/AtkValue.html#atk-value-set-current-value">
394
+ <ANCHOR id="atk-value-get-minimum-increment" href="atk/AtkValue.html#atk-value-get-minimum-increment">
395
+ <ANCHOR id="atk-value-get-value-and-text" href="atk/AtkValue.html#atk-value-get-value-and-text">
396
+ <ANCHOR id="atk-value-get-range" href="atk/AtkValue.html#atk-value-get-range">
397
+ <ANCHOR id="atk-value-get-increment" href="atk/AtkValue.html#atk-value-get-increment">
398
+ <ANCHOR id="atk-value-get-sub-ranges" href="atk/AtkValue.html#atk-value-get-sub-ranges">
399
+ <ANCHOR id="atk-value-set-value" href="atk/AtkValue.html#atk-value-set-value">
400
+ <ANCHOR id="AtkValue.other_details" href="atk/AtkValue.html#AtkValue.other_details">
401
+ <ANCHOR id="AtkValue-struct" href="atk/AtkValue.html#AtkValue-struct">
402
+ <ANCHOR id="AtkValue.signal-details" href="atk/AtkValue.html#AtkValue.signal-details">
403
+ <ANCHOR id="AtkValue-value-changed" href="atk/AtkValue.html#AtkValue-value-changed">
404
+ <ANCHOR id="AtkWindow" href="atk/AtkWindow.html">
405
+ <ANCHOR id="AtkWindow.signals" href="atk/AtkWindow.html#AtkWindow.signals">
406
+ <ANCHOR id="AtkWindow.other" href="atk/AtkWindow.html#AtkWindow.other">
407
+ <ANCHOR id="AtkWindow.object-hierarchy" href="atk/AtkWindow.html#AtkWindow.object-hierarchy">
408
+ <ANCHOR id="AtkWindow.prerequisites" href="atk/AtkWindow.html#AtkWindow.prerequisites">
409
+ <ANCHOR id="AtkWindow.implementations" href="atk/AtkWindow.html#AtkWindow.implementations">
410
+ <ANCHOR id="AtkWindow.description" href="atk/AtkWindow.html#AtkWindow.description">
411
+ <ANCHOR id="AtkWindow.functions_details" href="atk/AtkWindow.html#AtkWindow.functions_details">
412
+ <ANCHOR id="AtkWindow.other_details" href="atk/AtkWindow.html#AtkWindow.other_details">
413
+ <ANCHOR id="AtkWindow-struct" href="atk/AtkWindow.html#AtkWindow-struct">
414
+ <ANCHOR id="AtkWindow.signal-details" href="atk/AtkWindow.html#AtkWindow.signal-details">
415
+ <ANCHOR id="AtkWindow-activate" href="atk/AtkWindow.html#AtkWindow-activate">
416
+ <ANCHOR id="AtkWindow-create" href="atk/AtkWindow.html#AtkWindow-create">
417
+ <ANCHOR id="AtkWindow-deactivate" href="atk/AtkWindow.html#AtkWindow-deactivate">
418
+ <ANCHOR id="AtkWindow-destroy" href="atk/AtkWindow.html#AtkWindow-destroy">
419
+ <ANCHOR id="AtkWindow-maximize" href="atk/AtkWindow.html#AtkWindow-maximize">
420
+ <ANCHOR id="AtkWindow-minimize" href="atk/AtkWindow.html#AtkWindow-minimize">
421
+ <ANCHOR id="AtkWindow-move" href="atk/AtkWindow.html#AtkWindow-move">
422
+ <ANCHOR id="AtkWindow-resize" href="atk/AtkWindow.html#AtkWindow-resize">
423
+ <ANCHOR id="AtkWindow-restore" href="atk/AtkWindow.html#AtkWindow-restore">
424
+ <ANCHOR id="AtkWindow.see-also" href="atk/AtkWindow.html#AtkWindow.see-also">
425
+ <ANCHOR id="atk-AtkRange" href="atk/atk-AtkRange.html">
426
+ <ANCHOR id="atk-AtkRange.functions" href="atk/atk-AtkRange.html#atk-AtkRange.functions">
427
+ <ANCHOR id="atk-AtkRange.description" href="atk/atk-AtkRange.html#atk-AtkRange.description">
428
+ <ANCHOR id="atk-AtkRange.functions_details" href="atk/atk-AtkRange.html#atk-AtkRange.functions_details">
429
+ <ANCHOR id="ATK-TYPE-RANGE:CAPS" href="atk/atk-AtkRange.html#ATK-TYPE-RANGE:CAPS">
430
+ <ANCHOR id="atk-range-copy" href="atk/atk-AtkRange.html#atk-range-copy">
431
+ <ANCHOR id="atk-range-free" href="atk/atk-AtkRange.html#atk-range-free">
432
+ <ANCHOR id="atk-range-get-lower-limit" href="atk/atk-AtkRange.html#atk-range-get-lower-limit">
433
+ <ANCHOR id="atk-range-get-upper-limit" href="atk/atk-AtkRange.html#atk-range-get-upper-limit">
434
+ <ANCHOR id="atk-range-get-description" href="atk/atk-AtkRange.html#atk-range-get-description">
435
+ <ANCHOR id="atk-range-new" href="atk/atk-AtkRange.html#atk-range-new">
436
+ <ANCHOR id="atk-range-get-type" href="atk/atk-AtkRange.html#atk-range-get-type">
437
+ <ANCHOR id="atk-AtkRange.other_details" href="atk/atk-AtkRange.html#atk-AtkRange.other_details">
438
+ <ANCHOR id="AtkRelation" href="atk/AtkRelation.html">
439
+ <ANCHOR id="AtkRelation.functions" href="atk/AtkRelation.html#AtkRelation.functions">
440
+ <ANCHOR id="AtkRelation.properties" href="atk/AtkRelation.html#AtkRelation.properties">
441
+ <ANCHOR id="AtkRelation.other" href="atk/AtkRelation.html#AtkRelation.other">
442
+ <ANCHOR id="AtkRelation.object-hierarchy" href="atk/AtkRelation.html#AtkRelation.object-hierarchy">
443
+ <ANCHOR id="AtkRelation.description" href="atk/AtkRelation.html#AtkRelation.description">
444
+ <ANCHOR id="AtkRelation.functions_details" href="atk/AtkRelation.html#AtkRelation.functions_details">
445
+ <ANCHOR id="atk-relation-type-register" href="atk/AtkRelation.html#atk-relation-type-register">
446
+ <ANCHOR id="atk-relation-type-get-name" href="atk/AtkRelation.html#atk-relation-type-get-name">
447
+ <ANCHOR id="atk-relation-type-for-name" href="atk/AtkRelation.html#atk-relation-type-for-name">
448
+ <ANCHOR id="atk-relation-new" href="atk/AtkRelation.html#atk-relation-new">
449
+ <ANCHOR id="atk-relation-get-relation-type" href="atk/AtkRelation.html#atk-relation-get-relation-type">
450
+ <ANCHOR id="atk-relation-get-target" href="atk/AtkRelation.html#atk-relation-get-target">
451
+ <ANCHOR id="atk-relation-add-target" href="atk/AtkRelation.html#atk-relation-add-target">
452
+ <ANCHOR id="atk-relation-remove-target" href="atk/AtkRelation.html#atk-relation-remove-target">
453
+ <ANCHOR id="atk-relation-set-contains-target" href="atk/AtkRelation.html#atk-relation-set-contains-target">
454
+ <ANCHOR id="AtkRelation.other_details" href="atk/AtkRelation.html#AtkRelation.other_details">
455
+ <ANCHOR id="AtkRelation-struct" href="atk/AtkRelation.html#AtkRelation-struct">
456
+ <ANCHOR id="AtkRelationType" href="atk/AtkRelation.html#AtkRelationType">
457
+ <ANCHOR id="AtkRelation.property-details" href="atk/AtkRelation.html#AtkRelation.property-details">
458
+ <ANCHOR id="AtkRelation--relation-type" href="atk/AtkRelation.html#AtkRelation--relation-type">
459
+ <ANCHOR id="AtkRelation--target" href="atk/AtkRelation.html#AtkRelation--target">
460
+ <ANCHOR id="AtkRelationSet" href="atk/AtkRelationSet.html">
461
+ <ANCHOR id="AtkRelationSet.functions" href="atk/AtkRelationSet.html#AtkRelationSet.functions">
462
+ <ANCHOR id="AtkRelationSet.other" href="atk/AtkRelationSet.html#AtkRelationSet.other">
463
+ <ANCHOR id="AtkRelationSet.object-hierarchy" href="atk/AtkRelationSet.html#AtkRelationSet.object-hierarchy">
464
+ <ANCHOR id="AtkRelationSet.description" href="atk/AtkRelationSet.html#AtkRelationSet.description">
465
+ <ANCHOR id="AtkRelationSet.functions_details" href="atk/AtkRelationSet.html#AtkRelationSet.functions_details">
466
+ <ANCHOR id="atk-relation-set-new" href="atk/AtkRelationSet.html#atk-relation-set-new">
467
+ <ANCHOR id="atk-relation-set-contains" href="atk/AtkRelationSet.html#atk-relation-set-contains">
468
+ <ANCHOR id="atk-relation-set-remove" href="atk/AtkRelationSet.html#atk-relation-set-remove">
469
+ <ANCHOR id="atk-relation-set-add" href="atk/AtkRelationSet.html#atk-relation-set-add">
470
+ <ANCHOR id="atk-relation-set-get-n-relations" href="atk/AtkRelationSet.html#atk-relation-set-get-n-relations">
471
+ <ANCHOR id="atk-relation-set-get-relation" href="atk/AtkRelationSet.html#atk-relation-set-get-relation">
472
+ <ANCHOR id="atk-relation-set-get-relation-by-type" href="atk/AtkRelationSet.html#atk-relation-set-get-relation-by-type">
473
+ <ANCHOR id="atk-relation-set-add-relation-by-type" href="atk/AtkRelationSet.html#atk-relation-set-add-relation-by-type">
474
+ <ANCHOR id="AtkRelationSet.other_details" href="atk/AtkRelationSet.html#AtkRelationSet.other_details">
475
+ <ANCHOR id="AtkRelationSet-struct" href="atk/AtkRelationSet.html#AtkRelationSet-struct">
476
+ <ANCHOR id="atk-AtkState" href="atk/atk-AtkState.html">
477
+ <ANCHOR id="atk-AtkState.functions" href="atk/atk-AtkState.html#atk-AtkState.functions">
478
+ <ANCHOR id="atk-AtkState.other" href="atk/atk-AtkState.html#atk-AtkState.other">
479
+ <ANCHOR id="atk-AtkState.description" href="atk/atk-AtkState.html#atk-AtkState.description">
480
+ <ANCHOR id="atk-AtkState.functions_details" href="atk/atk-AtkState.html#atk-AtkState.functions_details">
481
+ <ANCHOR id="atk-state-type-register" href="atk/atk-AtkState.html#atk-state-type-register">
482
+ <ANCHOR id="atk-state-type-get-name" href="atk/atk-AtkState.html#atk-state-type-get-name">
483
+ <ANCHOR id="atk-state-type-for-name" href="atk/atk-AtkState.html#atk-state-type-for-name">
484
+ <ANCHOR id="atk-AtkState.other_details" href="atk/atk-AtkState.html#atk-AtkState.other_details">
485
+ <ANCHOR id="AtkStateType" href="atk/atk-AtkState.html#AtkStateType">
486
+ <ANCHOR id="AtkState" href="atk/atk-AtkState.html#AtkState">
487
+ <ANCHOR id="AtkStateSet" href="atk/AtkStateSet.html">
488
+ <ANCHOR id="AtkStateSet.functions" href="atk/AtkStateSet.html#AtkStateSet.functions">
489
+ <ANCHOR id="AtkStateSet.other" href="atk/AtkStateSet.html#AtkStateSet.other">
490
+ <ANCHOR id="AtkStateSet.object-hierarchy" href="atk/AtkStateSet.html#AtkStateSet.object-hierarchy">
491
+ <ANCHOR id="AtkStateSet.description" href="atk/AtkStateSet.html#AtkStateSet.description">
492
+ <ANCHOR id="AtkStateSet.functions_details" href="atk/AtkStateSet.html#AtkStateSet.functions_details">
493
+ <ANCHOR id="atk-state-set-new" href="atk/AtkStateSet.html#atk-state-set-new">
494
+ <ANCHOR id="atk-state-set-is-empty" href="atk/AtkStateSet.html#atk-state-set-is-empty">
495
+ <ANCHOR id="atk-state-set-add-state" href="atk/AtkStateSet.html#atk-state-set-add-state">
496
+ <ANCHOR id="atk-state-set-add-states" href="atk/AtkStateSet.html#atk-state-set-add-states">
497
+ <ANCHOR id="atk-state-set-clear-states" href="atk/AtkStateSet.html#atk-state-set-clear-states">
498
+ <ANCHOR id="atk-state-set-contains-state" href="atk/AtkStateSet.html#atk-state-set-contains-state">
499
+ <ANCHOR id="atk-state-set-contains-states" href="atk/AtkStateSet.html#atk-state-set-contains-states">
500
+ <ANCHOR id="atk-state-set-remove-state" href="atk/AtkStateSet.html#atk-state-set-remove-state">
501
+ <ANCHOR id="atk-state-set-and-sets" href="atk/AtkStateSet.html#atk-state-set-and-sets">
502
+ <ANCHOR id="atk-state-set-or-sets" href="atk/AtkStateSet.html#atk-state-set-or-sets">
503
+ <ANCHOR id="atk-state-set-xor-sets" href="atk/AtkStateSet.html#atk-state-set-xor-sets">
504
+ <ANCHOR id="AtkStateSet.other_details" href="atk/AtkStateSet.html#AtkStateSet.other_details">
505
+ <ANCHOR id="AtkStateSet-struct" href="atk/AtkStateSet.html#AtkStateSet-struct">
506
+ <ANCHOR id="AtkGObjectAccessible" href="atk/AtkGObjectAccessible.html">
507
+ <ANCHOR id="AtkGObjectAccessible.functions" href="atk/AtkGObjectAccessible.html#AtkGObjectAccessible.functions">
508
+ <ANCHOR id="AtkGObjectAccessible.other" href="atk/AtkGObjectAccessible.html#AtkGObjectAccessible.other">
509
+ <ANCHOR id="AtkGObjectAccessible.object-hierarchy" href="atk/AtkGObjectAccessible.html#AtkGObjectAccessible.object-hierarchy">
510
+ <ANCHOR id="AtkGObjectAccessible.description" href="atk/AtkGObjectAccessible.html#AtkGObjectAccessible.description">
511
+ <ANCHOR id="AtkGObjectAccessible.functions_details" href="atk/AtkGObjectAccessible.html#AtkGObjectAccessible.functions_details">
512
+ <ANCHOR id="atk-gobject-accessible-for-object" href="atk/AtkGObjectAccessible.html#atk-gobject-accessible-for-object">
513
+ <ANCHOR id="atk-gobject-accessible-get-object" href="atk/AtkGObjectAccessible.html#atk-gobject-accessible-get-object">
514
+ <ANCHOR id="AtkGObjectAccessible.other_details" href="atk/AtkGObjectAccessible.html#AtkGObjectAccessible.other_details">
515
+ <ANCHOR id="AtkGObjectAccessible-struct" href="atk/AtkGObjectAccessible.html#AtkGObjectAccessible-struct">
516
+ <ANCHOR id="AtkHyperlink" href="atk/AtkHyperlink.html">
517
+ <ANCHOR id="AtkHyperlink.functions" href="atk/AtkHyperlink.html#AtkHyperlink.functions">
518
+ <ANCHOR id="AtkHyperlink.properties" href="atk/AtkHyperlink.html#AtkHyperlink.properties">
519
+ <ANCHOR id="AtkHyperlink.signals" href="atk/AtkHyperlink.html#AtkHyperlink.signals">
520
+ <ANCHOR id="AtkHyperlink.other" href="atk/AtkHyperlink.html#AtkHyperlink.other">
521
+ <ANCHOR id="AtkHyperlink.object-hierarchy" href="atk/AtkHyperlink.html#AtkHyperlink.object-hierarchy">
522
+ <ANCHOR id="AtkHyperlink.implemented-interfaces" href="atk/AtkHyperlink.html#AtkHyperlink.implemented-interfaces">
523
+ <ANCHOR id="AtkHyperlink.description" href="atk/AtkHyperlink.html#AtkHyperlink.description">
524
+ <ANCHOR id="AtkHyperlink.functions_details" href="atk/AtkHyperlink.html#AtkHyperlink.functions_details">
525
+ <ANCHOR id="atk-hyperlink-get-uri" href="atk/AtkHyperlink.html#atk-hyperlink-get-uri">
526
+ <ANCHOR id="atk-hyperlink-get-object" href="atk/AtkHyperlink.html#atk-hyperlink-get-object">
527
+ <ANCHOR id="atk-hyperlink-get-end-index" href="atk/AtkHyperlink.html#atk-hyperlink-get-end-index">
528
+ <ANCHOR id="atk-hyperlink-get-start-index" href="atk/AtkHyperlink.html#atk-hyperlink-get-start-index">
529
+ <ANCHOR id="atk-hyperlink-is-valid" href="atk/AtkHyperlink.html#atk-hyperlink-is-valid">
530
+ <ANCHOR id="atk-hyperlink-is-inline" href="atk/AtkHyperlink.html#atk-hyperlink-is-inline">
531
+ <ANCHOR id="atk-hyperlink-get-n-anchors" href="atk/AtkHyperlink.html#atk-hyperlink-get-n-anchors">
532
+ <ANCHOR id="atk-hyperlink-is-selected-link" href="atk/AtkHyperlink.html#atk-hyperlink-is-selected-link">
533
+ <ANCHOR id="AtkHyperlink.other_details" href="atk/AtkHyperlink.html#AtkHyperlink.other_details">
534
+ <ANCHOR id="AtkHyperlink-struct" href="atk/AtkHyperlink.html#AtkHyperlink-struct">
535
+ <ANCHOR id="AtkHyperlinkStateFlags" href="atk/AtkHyperlink.html#AtkHyperlinkStateFlags">
536
+ <ANCHOR id="AtkHyperlink.property-details" href="atk/AtkHyperlink.html#AtkHyperlink.property-details">
537
+ <ANCHOR id="AtkHyperlink--end-index" href="atk/AtkHyperlink.html#AtkHyperlink--end-index">
538
+ <ANCHOR id="AtkHyperlink--number-of-anchors" href="atk/AtkHyperlink.html#AtkHyperlink--number-of-anchors">
539
+ <ANCHOR id="AtkHyperlink--selected-link" href="atk/AtkHyperlink.html#AtkHyperlink--selected-link">
540
+ <ANCHOR id="AtkHyperlink--start-index" href="atk/AtkHyperlink.html#AtkHyperlink--start-index">
541
+ <ANCHOR id="AtkHyperlink.signal-details" href="atk/AtkHyperlink.html#AtkHyperlink.signal-details">
542
+ <ANCHOR id="AtkHyperlink-link-activated" href="atk/AtkHyperlink.html#AtkHyperlink-link-activated">
543
+ <ANCHOR id="AtkNoOpObject" href="atk/AtkNoOpObject.html">
544
+ <ANCHOR id="AtkNoOpObject.functions" href="atk/AtkNoOpObject.html#AtkNoOpObject.functions">
545
+ <ANCHOR id="AtkNoOpObject.other" href="atk/AtkNoOpObject.html#AtkNoOpObject.other">
546
+ <ANCHOR id="AtkNoOpObject.object-hierarchy" href="atk/AtkNoOpObject.html#AtkNoOpObject.object-hierarchy">
547
+ <ANCHOR id="AtkNoOpObject.implemented-interfaces" href="atk/AtkNoOpObject.html#AtkNoOpObject.implemented-interfaces">
548
+ <ANCHOR id="AtkNoOpObject.description" href="atk/AtkNoOpObject.html#AtkNoOpObject.description">
549
+ <ANCHOR id="AtkNoOpObject.functions_details" href="atk/AtkNoOpObject.html#AtkNoOpObject.functions_details">
550
+ <ANCHOR id="atk-no-op-object-new" href="atk/AtkNoOpObject.html#atk-no-op-object-new">
551
+ <ANCHOR id="AtkNoOpObject.other_details" href="atk/AtkNoOpObject.html#AtkNoOpObject.other_details">
552
+ <ANCHOR id="AtkNoOpObject-struct" href="atk/AtkNoOpObject.html#AtkNoOpObject-struct">
553
+ <ANCHOR id="atk-AtkPlug" href="atk/atk-AtkPlug.html">
554
+ <ANCHOR id="atk-AtkPlug.functions" href="atk/atk-AtkPlug.html#atk-AtkPlug.functions">
555
+ <ANCHOR id="atk-AtkPlug.other" href="atk/atk-AtkPlug.html#atk-AtkPlug.other">
556
+ <ANCHOR id="atk-AtkPlug.description" href="atk/atk-AtkPlug.html#atk-AtkPlug.description">
557
+ <ANCHOR id="atk-AtkPlug.functions_details" href="atk/atk-AtkPlug.html#atk-AtkPlug.functions_details">
558
+ <ANCHOR id="atk-plug-new" href="atk/atk-AtkPlug.html#atk-plug-new">
559
+ <ANCHOR id="atk-plug-get-id" href="atk/atk-AtkPlug.html#atk-plug-get-id">
560
+ <ANCHOR id="atk-AtkPlug.other_details" href="atk/atk-AtkPlug.html#atk-AtkPlug.other_details">
561
+ <ANCHOR id="AtkPlug" href="atk/atk-AtkPlug.html#AtkPlug">
562
+ <ANCHOR id="atk-AtkPlug.see-also" href="atk/atk-AtkPlug.html#atk-AtkPlug.see-also">
563
+ <ANCHOR id="atk-AtkSocket" href="atk/atk-AtkSocket.html">
564
+ <ANCHOR id="atk-AtkSocket.functions" href="atk/atk-AtkSocket.html#atk-AtkSocket.functions">
565
+ <ANCHOR id="atk-AtkSocket.other" href="atk/atk-AtkSocket.html#atk-AtkSocket.other">
566
+ <ANCHOR id="atk-AtkSocket.description" href="atk/atk-AtkSocket.html#atk-AtkSocket.description">
567
+ <ANCHOR id="atk-AtkSocket.functions_details" href="atk/atk-AtkSocket.html#atk-AtkSocket.functions_details">
568
+ <ANCHOR id="atk-socket-new" href="atk/atk-AtkSocket.html#atk-socket-new">
569
+ <ANCHOR id="atk-socket-embed" href="atk/atk-AtkSocket.html#atk-socket-embed">
570
+ <ANCHOR id="atk-socket-is-occupied" href="atk/atk-AtkSocket.html#atk-socket-is-occupied">
571
+ <ANCHOR id="atk-AtkSocket.other_details" href="atk/atk-AtkSocket.html#atk-AtkSocket.other_details">
572
+ <ANCHOR id="AtkSocket" href="atk/atk-AtkSocket.html#AtkSocket">
573
+ <ANCHOR id="atk-AtkSocket.see-also" href="atk/atk-AtkSocket.html#atk-AtkSocket.see-also">
574
+ <ANCHOR id="AtkNoOpObjectFactory" href="atk/AtkNoOpObjectFactory.html">
575
+ <ANCHOR id="AtkNoOpObjectFactory.functions" href="atk/AtkNoOpObjectFactory.html#AtkNoOpObjectFactory.functions">
576
+ <ANCHOR id="AtkNoOpObjectFactory.other" href="atk/AtkNoOpObjectFactory.html#AtkNoOpObjectFactory.other">
577
+ <ANCHOR id="AtkNoOpObjectFactory.object-hierarchy" href="atk/AtkNoOpObjectFactory.html#AtkNoOpObjectFactory.object-hierarchy">
578
+ <ANCHOR id="AtkNoOpObjectFactory.description" href="atk/AtkNoOpObjectFactory.html#AtkNoOpObjectFactory.description">
579
+ <ANCHOR id="AtkNoOpObjectFactory.functions_details" href="atk/AtkNoOpObjectFactory.html#AtkNoOpObjectFactory.functions_details">
580
+ <ANCHOR id="atk-no-op-object-factory-new" href="atk/AtkNoOpObjectFactory.html#atk-no-op-object-factory-new">
581
+ <ANCHOR id="AtkNoOpObjectFactory.other_details" href="atk/AtkNoOpObjectFactory.html#AtkNoOpObjectFactory.other_details">
582
+ <ANCHOR id="AtkNoOpObjectFactory-struct" href="atk/AtkNoOpObjectFactory.html#AtkNoOpObjectFactory-struct">
583
+ <ANCHOR id="AtkObjectFactory" href="atk/AtkObjectFactory.html">
584
+ <ANCHOR id="AtkObjectFactory.functions" href="atk/AtkObjectFactory.html#AtkObjectFactory.functions">
585
+ <ANCHOR id="AtkObjectFactory.other" href="atk/AtkObjectFactory.html#AtkObjectFactory.other">
586
+ <ANCHOR id="AtkObjectFactory.object-hierarchy" href="atk/AtkObjectFactory.html#AtkObjectFactory.object-hierarchy">
587
+ <ANCHOR id="AtkObjectFactory.description" href="atk/AtkObjectFactory.html#AtkObjectFactory.description">
588
+ <ANCHOR id="AtkObjectFactory.functions_details" href="atk/AtkObjectFactory.html#AtkObjectFactory.functions_details">
589
+ <ANCHOR id="atk-object-factory-create-accessible" href="atk/AtkObjectFactory.html#atk-object-factory-create-accessible">
590
+ <ANCHOR id="atk-object-factory-get-accessible-type" href="atk/AtkObjectFactory.html#atk-object-factory-get-accessible-type">
591
+ <ANCHOR id="atk-object-factory-invalidate" href="atk/AtkObjectFactory.html#atk-object-factory-invalidate">
592
+ <ANCHOR id="AtkObjectFactory.other_details" href="atk/AtkObjectFactory.html#AtkObjectFactory.other_details">
593
+ <ANCHOR id="AtkObjectFactory-struct" href="atk/AtkObjectFactory.html#AtkObjectFactory-struct">
594
+ <ANCHOR id="AtkRegistry" href="atk/AtkRegistry.html">
595
+ <ANCHOR id="AtkRegistry.functions" href="atk/AtkRegistry.html#AtkRegistry.functions">
596
+ <ANCHOR id="AtkRegistry.other" href="atk/AtkRegistry.html#AtkRegistry.other">
597
+ <ANCHOR id="AtkRegistry.object-hierarchy" href="atk/AtkRegistry.html#AtkRegistry.object-hierarchy">
598
+ <ANCHOR id="AtkRegistry.description" href="atk/AtkRegistry.html#AtkRegistry.description">
599
+ <ANCHOR id="AtkRegistry.functions_details" href="atk/AtkRegistry.html#AtkRegistry.functions_details">
600
+ <ANCHOR id="atk-registry-set-factory-type" href="atk/AtkRegistry.html#atk-registry-set-factory-type">
601
+ <ANCHOR id="atk-registry-get-factory-type" href="atk/AtkRegistry.html#atk-registry-get-factory-type">
602
+ <ANCHOR id="atk-registry-get-factory" href="atk/AtkRegistry.html#atk-registry-get-factory">
603
+ <ANCHOR id="atk-get-default-registry" href="atk/AtkRegistry.html#atk-get-default-registry">
604
+ <ANCHOR id="AtkRegistry.other_details" href="atk/AtkRegistry.html#AtkRegistry.other_details">
605
+ <ANCHOR id="AtkRegistry-struct" href="atk/AtkRegistry.html#AtkRegistry-struct">
606
+ <ANCHOR id="atk-Versioning-Utilities" href="atk/atk-Versioning-Utilities.html">
607
+ <ANCHOR id="atk-Versioning-Utilities.functions" href="atk/atk-Versioning-Utilities.html#atk-Versioning-Utilities.functions">
608
+ <ANCHOR id="atk-Versioning-Utilities.description" href="atk/atk-Versioning-Utilities.html#atk-Versioning-Utilities.description">
609
+ <ANCHOR id="atk-Versioning-Utilities.functions_details" href="atk/atk-Versioning-Utilities.html#atk-Versioning-Utilities.functions_details">
610
+ <ANCHOR id="ATK-BINARY-AGE:CAPS" href="atk/atk-Versioning-Utilities.html#ATK-BINARY-AGE:CAPS">
611
+ <ANCHOR id="ATK-INTERFACE-AGE:CAPS" href="atk/atk-Versioning-Utilities.html#ATK-INTERFACE-AGE:CAPS">
612
+ <ANCHOR id="atk-get-major-version" href="atk/atk-Versioning-Utilities.html#atk-get-major-version">
613
+ <ANCHOR id="atk-get-minor-version" href="atk/atk-Versioning-Utilities.html#atk-get-minor-version">
614
+ <ANCHOR id="atk-get-micro-version" href="atk/atk-Versioning-Utilities.html#atk-get-micro-version">
615
+ <ANCHOR id="atk-get-binary-age" href="atk/atk-Versioning-Utilities.html#atk-get-binary-age">
616
+ <ANCHOR id="atk-get-interface-age" href="atk/atk-Versioning-Utilities.html#atk-get-interface-age">
617
+ <ANCHOR id="ATK-MAJOR-VERSION:CAPS" href="atk/atk-Versioning-Utilities.html#ATK-MAJOR-VERSION:CAPS">
618
+ <ANCHOR id="ATK-MINOR-VERSION:CAPS" href="atk/atk-Versioning-Utilities.html#ATK-MINOR-VERSION:CAPS">
619
+ <ANCHOR id="ATK-MICRO-VERSION:CAPS" href="atk/atk-Versioning-Utilities.html#ATK-MICRO-VERSION:CAPS">
620
+ <ANCHOR id="ATK-CHECK-VERSION:CAPS" href="atk/atk-Versioning-Utilities.html#ATK-CHECK-VERSION:CAPS">
621
+ <ANCHOR id="atk-Versioning-Utilities.other_details" href="atk/atk-Versioning-Utilities.html#atk-Versioning-Utilities.other_details">
622
+ <ANCHOR id="AtkMisc" href="atk/AtkMisc.html">
623
+ <ANCHOR id="AtkMisc.functions" href="atk/AtkMisc.html#AtkMisc.functions">
624
+ <ANCHOR id="AtkMisc.other" href="atk/AtkMisc.html#AtkMisc.other">
625
+ <ANCHOR id="AtkMisc.object-hierarchy" href="atk/AtkMisc.html#AtkMisc.object-hierarchy">
626
+ <ANCHOR id="AtkMisc.description" href="atk/AtkMisc.html#AtkMisc.description">
627
+ <ANCHOR id="AtkMisc.functions_details" href="atk/AtkMisc.html#AtkMisc.functions_details">
628
+ <ANCHOR id="atk-misc-threads-enter" href="atk/AtkMisc.html#atk-misc-threads-enter">
629
+ <ANCHOR id="atk-misc-threads-leave" href="atk/AtkMisc.html#atk-misc-threads-leave">
630
+ <ANCHOR id="atk-misc-get-instance" href="atk/AtkMisc.html#atk-misc-get-instance">
631
+ <ANCHOR id="AtkMisc.other_details" href="atk/AtkMisc.html#AtkMisc.other_details">
632
+ <ANCHOR id="AtkMisc-struct" href="atk/AtkMisc.html#AtkMisc-struct">