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,89 @@
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 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="AtkUtil.html" title="AtkUtil">
10
+ <link rel="next" href="AtkAction.html" title="AtkAction">
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="AtkUtil.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="AtkAction.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="interfaces"></a>ATK Interfaces</h1></div></div></div>
25
+ <div class="toc"><dl class="toc">
26
+ <dt>
27
+ <span class="refentrytitle"><a href="AtkAction.html">AtkAction</a></span><span class="refpurpose"> — The ATK interface provided by UI components
28
+ which the user can activate/interact with.</span>
29
+ </dt>
30
+ <dt>
31
+ <span class="refentrytitle"><a href="AtkComponent.html">AtkComponent</a></span><span class="refpurpose"> — The ATK interface provided by UI components
32
+ which occupy a physical area on the screen.
33
+ which the user can activate/interact with.</span>
34
+ </dt>
35
+ <dt>
36
+ <span class="refentrytitle"><a href="AtkDocument.html">AtkDocument</a></span><span class="refpurpose"> — The ATK interface which represents the toplevel
37
+ container for document content.</span>
38
+ </dt>
39
+ <dt>
40
+ <span class="refentrytitle"><a href="AtkEditableText.html">AtkEditableText</a></span><span class="refpurpose"> — The ATK interface implemented by components
41
+ containing user-editable text content.</span>
42
+ </dt>
43
+ <dt>
44
+ <span class="refentrytitle"><a href="atk-AtkHyperlinkImpl.html">AtkHyperlinImpl</a></span><span class="refpurpose"> — An interface from which the AtkHyperlink
45
+ associated with an AtkObject may be obtained.</span>
46
+ </dt>
47
+ <dt>
48
+ <span class="refentrytitle"><a href="AtkHypertext.html">AtkHypertext</a></span><span class="refpurpose"> — The ATK interface which provides standard
49
+ mechanism for manipulating hyperlinks.</span>
50
+ </dt>
51
+ <dt>
52
+ <span class="refentrytitle"><a href="AtkImage.html">AtkImage</a></span><span class="refpurpose"> — The ATK Interface implemented by components
53
+ which expose image or pixmap content on-screen.</span>
54
+ </dt>
55
+ <dt>
56
+ <span class="refentrytitle"><a href="AtkSelection.html">AtkSelection</a></span><span class="refpurpose">The ATK interface implemented by container
57
+ objects whose <span class="type">AtkObject</span> children can be selected.</span>
58
+ </dt>
59
+ <dt>
60
+ <span class="refentrytitle"><a href="AtkStreamableContent.html">AtkStreamableContent</a></span><span class="refpurpose"> — The ATK interface which provides access to
61
+ streamable content.</span>
62
+ </dt>
63
+ <dt>
64
+ <span class="refentrytitle"><a href="AtkTable.html">AtkTable</a></span><span class="refpurpose"> — The ATK interface implemented for UI components
65
+ which contain tabular or row/column information.</span>
66
+ </dt>
67
+ <dt>
68
+ <span class="refentrytitle"><a href="AtkTableCell.html">AtkTableCell</a></span><span class="refpurpose">The ATK interface implemented for a cell inside
69
+ a two-dimentional <span class="type">AtkTable</span></span>
70
+ </dt>
71
+ <dt>
72
+ <span class="refentrytitle"><a href="AtkText.html">AtkText</a></span><span class="refpurpose"> — The ATK interface implemented by components
73
+ with text content.</span>
74
+ </dt>
75
+ <dt>
76
+ <span class="refentrytitle"><a href="AtkValue.html">AtkValue</a></span><span class="refpurpose"> — The ATK interface implemented by valuators and
77
+ components which display or select a value from a bounded range of
78
+ values.</span>
79
+ </dt>
80
+ <dt>
81
+ <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>
82
+ </dt>
83
+ </dl></div>
84
+ </div>
85
+ <div class="footer">
86
+ <hr>
87
+ Generated by GTK-Doc V1.21.1</div>
88
+ </body>
89
+ </html>
@@ -0,0 +1,47 @@
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: Overview</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="index.html" title="ATK - Accessibility Toolkit">
10
+ <link rel="next" href="atkobject.html" title="Base accessibility object">
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="index.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="overview"></a>Overview</h1></div></div></div>
25
+ <p>
26
+ GNOME provides support for accessibility devices using the ATK
27
+ framework. This framework defines a set of interfaces to which
28
+ graphical interface components adhere. This allows, for instance,
29
+ screen readers to read the text of an interface and interact with its
30
+ controls. ATK support is built into GTK+ and the rest of the GNOME
31
+ platform, so any application using GTK+ will have reasonable
32
+ accessibility support for free.
33
+ </p>
34
+ <p>
35
+ Nonetheless, you should be aware of accessibility issues when when
36
+ developing your applications. Although GTK+ interfaces provide
37
+ reasonable accessibility by default, you can often improve how well
38
+ your program behaves with accessibility tools by providing additional
39
+ information to ATK. If you develop custom widgets, you should ensure
40
+ that they expose their properties to ATK
41
+ </p>
42
+ </div>
43
+ <div class="footer">
44
+ <hr>
45
+ Generated by GTK-Doc V1.21.1</div>
46
+ </body>
47
+ </html>
@@ -0,0 +1,476 @@
1
+ body
2
+ {
3
+ font-family: cantarell, sans-serif;
4
+ }
5
+ .synopsis, .classsynopsis
6
+ {
7
+ /* tango:aluminium 1/2 */
8
+ background: #eeeeec;
9
+ background: rgba(238, 238, 236, 0.5);
10
+ border: solid 1px rgb(238, 238, 236);
11
+ padding: 0.5em;
12
+ }
13
+ .programlisting
14
+ {
15
+ /* tango:sky blue 0/1 */
16
+ /* fallback for no rgba support */
17
+ background: #e6f3ff;
18
+ border: solid 1px #729fcf;
19
+ background: rgba(114, 159, 207, 0.1);
20
+ border: solid 1px rgba(114, 159, 207, 0.2);
21
+ padding: 0.5em;
22
+ }
23
+ .variablelist
24
+ {
25
+ padding: 4px;
26
+ margin-left: 3em;
27
+ }
28
+ .variablelist td:first-child
29
+ {
30
+ vertical-align: top;
31
+ }
32
+
33
+ div.gallery-float
34
+ {
35
+ float: left;
36
+ padding: 10px;
37
+ }
38
+ div.gallery-float img
39
+ {
40
+ border-style: none;
41
+ }
42
+ div.gallery-spacer
43
+ {
44
+ clear: both;
45
+ }
46
+
47
+ a, a:visited
48
+ {
49
+ text-decoration: none;
50
+ /* tango:sky blue 2 */
51
+ color: #3465a4;
52
+ }
53
+ a:hover
54
+ {
55
+ text-decoration: underline;
56
+ /* tango:sky blue 1 */
57
+ color: #729fcf;
58
+ }
59
+
60
+ div.informaltable table
61
+ {
62
+ border-collapse: separate;
63
+ border-spacing: 1em 0.5em;
64
+ border: none;
65
+ }
66
+
67
+ div.informaltable table td, div.informaltable table th
68
+ {
69
+ vertical-align: top;
70
+ }
71
+
72
+ .function_type,
73
+ .variable_type,
74
+ .property_type,
75
+ .signal_type,
76
+ .parameter_name,
77
+ .struct_member_name,
78
+ .union_member_name,
79
+ .define_keyword,
80
+ .datatype_keyword,
81
+ .typedef_keyword
82
+ {
83
+ text-align: right;
84
+ }
85
+
86
+ /* dim non-primary columns */
87
+ .c_punctuation,
88
+ .function_type,
89
+ .variable_type,
90
+ .property_type,
91
+ .signal_type,
92
+ .define_keyword,
93
+ .datatype_keyword,
94
+ .typedef_keyword,
95
+ .property_flags,
96
+ .signal_flags,
97
+ .parameter_annotations,
98
+ .enum_member_annotations,
99
+ .struct_member_annotations,
100
+ .union_member_annotations
101
+ {
102
+ color: #888a85;
103
+ }
104
+
105
+ .function_type a,
106
+ .function_type a:visited,
107
+ .function_type a:hover,
108
+ .property_type a,
109
+ .property_type a:visited,
110
+ .property_type a:hover,
111
+ .signal_type a,
112
+ .signal_type a:visited,
113
+ .signal_type a:hover,
114
+ .signal_flags a,
115
+ .signal_flags a:visited,
116
+ .signal_flags a:hover
117
+ {
118
+ color: #729fcf;
119
+ }
120
+
121
+ td p
122
+ {
123
+ margin: 0.25em;
124
+ }
125
+
126
+ div.table table
127
+ {
128
+ border-collapse: collapse;
129
+ border-spacing: 0px;
130
+ /* tango:aluminium 3 */
131
+ border: solid 1px #babdb6;
132
+ }
133
+
134
+ div.table table td, div.table table th
135
+ {
136
+ /* tango:aluminium 3 */
137
+ border: solid 1px #babdb6;
138
+ padding: 3px;
139
+ vertical-align: top;
140
+ }
141
+
142
+ div.table table th
143
+ {
144
+ /* tango:aluminium 2 */
145
+ background-color: #d3d7cf;
146
+ }
147
+
148
+ h4
149
+ {
150
+ color: #555753;
151
+ }
152
+
153
+ hr
154
+ {
155
+ /* tango:aluminium 1 */
156
+ color: #d3d7cf;
157
+ background: #d3d7cf;
158
+ border: none 0px;
159
+ height: 1px;
160
+ clear: both;
161
+ margin: 2.0em 0em 2.0em 0em;
162
+ }
163
+
164
+ dl.toc dt
165
+ {
166
+ padding-bottom: 0.25em;
167
+ }
168
+
169
+ dl.toc > dd > dl > dt
170
+ {
171
+ padding-top: 0.25em;
172
+ padding-bottom: 0.25em;
173
+ }
174
+
175
+ dl.toc > dt
176
+ {
177
+ padding-top: 1em;
178
+ padding-bottom: 0.5em;
179
+ font-weight: bold;
180
+ }
181
+
182
+ .parameter
183
+ {
184
+ font-style: normal;
185
+ }
186
+
187
+ .footer
188
+ {
189
+ padding-top: 3.5em;
190
+ /* tango:aluminium 3 */
191
+ color: #babdb6;
192
+ text-align: center;
193
+ font-size: 80%;
194
+ }
195
+
196
+ .informalfigure,
197
+ .figure
198
+ {
199
+ margin: 1em;
200
+ }
201
+
202
+ .informalexample,
203
+ .example
204
+ {
205
+ margin-top: 1em;
206
+ margin-bottom: 1em;
207
+ }
208
+
209
+ .warning
210
+ {
211
+ /* tango:orange 0/1 */
212
+ background: #ffeed9;
213
+ background: rgba(252, 175, 62, 0.1);
214
+ border-color: #ffb04f;
215
+ border-color: rgba(252, 175, 62, 0.2);
216
+ }
217
+ .note
218
+ {
219
+ /* tango:chameleon 0/0.5 */
220
+ background: #d8ffb2;
221
+ background: rgba(138, 226, 52, 0.1);
222
+ border-color: #abf562;
223
+ border-color: rgba(138, 226, 52, 0.2);
224
+ }
225
+ div.blockquote
226
+ {
227
+ border-color: #eeeeec;
228
+ }
229
+ .note, .warning, div.blockquote
230
+ {
231
+ padding: 0.5em;
232
+ border-width: 1px;
233
+ border-style: solid;
234
+ margin: 2em;
235
+ }
236
+ .note p, .warning p
237
+ {
238
+ margin: 0;
239
+ }
240
+
241
+ div.warning h3.title,
242
+ div.note h3.title
243
+ {
244
+ display: none;
245
+ }
246
+
247
+ p + div.section
248
+ {
249
+ margin-top: 1em;
250
+ }
251
+
252
+ div.refnamediv,
253
+ div.refsynopsisdiv,
254
+ div.refsect1,
255
+ div.refsect2,
256
+ div.toc,
257
+ div.section
258
+ {
259
+ margin-bottom: 1em;
260
+ }
261
+
262
+ /* blob links */
263
+ h2 .extralinks, h3 .extralinks
264
+ {
265
+ float: right;
266
+ /* tango:aluminium 3 */
267
+ color: #babdb6;
268
+ font-size: 80%;
269
+ font-weight: normal;
270
+ }
271
+
272
+ .lineart
273
+ {
274
+ color: #d3d7cf;
275
+ font-weight: normal;
276
+ }
277
+
278
+ .annotation
279
+ {
280
+ /* tango:aluminium 5 */
281
+ color: #555753;
282
+ font-weight: normal;
283
+ }
284
+
285
+ .structfield
286
+ {
287
+ font-style: normal;
288
+ font-weight: normal;
289
+ }
290
+
291
+ acronym,abbr
292
+ {
293
+ border-bottom: 1px dotted gray;
294
+ }
295
+
296
+ /* code listings */
297
+
298
+ .listing_code .programlisting .normal,
299
+ .listing_code .programlisting .normal a,
300
+ .listing_code .programlisting .number,
301
+ .listing_code .programlisting .cbracket,
302
+ .listing_code .programlisting .symbol { color: #555753; }
303
+ .listing_code .programlisting .comment,
304
+ .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
305
+ .listing_code .programlisting .function,
306
+ .listing_code .programlisting .function a,
307
+ .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
308
+ .listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */
309
+ .listing_code .programlisting .keyword,
310
+ .listing_code .programlisting .usertype,
311
+ .listing_code .programlisting .type,
312
+ .listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */
313
+
314
+ .listing_frame {
315
+ /* tango:sky blue 1 */
316
+ border: solid 1px #729fcf;
317
+ border: solid 1px rgba(114, 159, 207, 0.2);
318
+ padding: 0px;
319
+ }
320
+
321
+ .listing_lines, .listing_code {
322
+ margin-top: 0px;
323
+ margin-bottom: 0px;
324
+ padding: 0.5em;
325
+ }
326
+ .listing_lines {
327
+ /* tango:sky blue 0.5 */
328
+ background: #a6c5e3;
329
+ background: rgba(114, 159, 207, 0.2);
330
+ /* tango:aluminium 6 */
331
+ color: #2e3436;
332
+ }
333
+ .listing_code {
334
+ /* tango:sky blue 0 */
335
+ background: #e6f3ff;
336
+ background: rgba(114, 159, 207, 0.1);
337
+ }
338
+ .listing_code .programlisting {
339
+ /* override from previous */
340
+ border: none 0px;
341
+ padding: 0px;
342
+ background: none;
343
+ }
344
+ .listing_lines pre, .listing_code pre {
345
+ margin: 0px;
346
+ }
347
+
348
+ @media screen {
349
+ sup a.footnote
350
+ {
351
+ position: relative;
352
+ top: 0em ! important;
353
+ }
354
+ /* this is needed so that the local anchors are displayed below the naviagtion */
355
+ div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
356
+ {
357
+ display: inline-block;
358
+ position: relative;
359
+ top:-5em;
360
+ }
361
+ /* this seems to be a bug in the xsl style sheets when generating indexes */
362
+ div.index div.index
363
+ {
364
+ top: 0em;
365
+ }
366
+ /* make space for the fixed navigation bar and add space at the bottom so that
367
+ * link targets appear somewhat close to top
368
+ */
369
+ body
370
+ {
371
+ padding-top: 2.5em;
372
+ padding-bottom: 500px;
373
+ max-width: 60em;
374
+ }
375
+ p
376
+ {
377
+ max-width: 60em;
378
+ }
379
+ /* style and size the navigation bar */
380
+ table.navigation#top
381
+ {
382
+ position: fixed;
383
+ background: #e2e2e2;
384
+ border-bottom: solid 1px #babdb6;
385
+ border-spacing: 5px;
386
+ margin-top: 0;
387
+ margin-bottom: 0;
388
+ top: 0;
389
+ left: 0;
390
+ z-index: 10;
391
+ }
392
+ table.navigation#top td
393
+ {
394
+ padding-left: 6px;
395
+ padding-right: 6px;
396
+ }
397
+ .navigation a, .navigation a:visited
398
+ {
399
+ /* tango:sky blue 3 */
400
+ color: #204a87;
401
+ }
402
+ .navigation a:hover
403
+ {
404
+ /* tango:sky blue 2 */
405
+ color: #3465a4;
406
+ }
407
+ td.shortcuts
408
+ {
409
+ /* tango:sky blue 2 */
410
+ color: #3465a4;
411
+ font-size: 80%;
412
+ white-space: nowrap;
413
+ }
414
+ td.shortcuts .dim
415
+ {
416
+ color: #babdb6;
417
+ }
418
+ .navigation .title
419
+ {
420
+ font-size: 80%;
421
+ max-width: none;
422
+ margin: 0px;
423
+ font-weight: normal;
424
+ }
425
+ }
426
+ @media screen and (min-width: 60em) {
427
+ /* screen larger than 60em */
428
+ body { margin: auto; }
429
+ }
430
+ @media screen and (max-width: 60em) {
431
+ /* screen less than 60em */
432
+ #nav_hierarchy { display: none; }
433
+ #nav_interfaces { display: none; }
434
+ #nav_prerequisites { display: none; }
435
+ #nav_derived_interfaces { display: none; }
436
+ #nav_implementations { display: none; }
437
+ #nav_child_properties { display: none; }
438
+ #nav_style_properties { display: none; }
439
+ #nav_index { display: none; }
440
+ #nav_glossary { display: none; }
441
+ .gallery_image { display: none; }
442
+ .property_flags { display: none; }
443
+ .signal_flags { display: none; }
444
+ .parameter_annotations { display: none; }
445
+ .enum_member_annotations { display: none; }
446
+ .struct_member_annotations { display: none; }
447
+ .union_member_annotations { display: none; }
448
+ /* now that a column is hidden, optimize space */
449
+ col.parameters_name { width: auto; }
450
+ col.parameters_description { width: auto; }
451
+ col.struct_members_name { width: auto; }
452
+ col.struct_members_description { width: auto; }
453
+ col.enum_members_name { width: auto; }
454
+ col.enum_members_description { width: auto; }
455
+ col.union_members_name { width: auto; }
456
+ col.union_members_description { width: auto; }
457
+ .listing_lines { display: none; }
458
+ }
459
+ @media print {
460
+ table.navigation {
461
+ visibility: collapse;
462
+ display: none;
463
+ }
464
+ div.titlepage table.navigation {
465
+ visibility: visible;
466
+ display: table;
467
+ background: #e2e2e2;
468
+ border: solid 1px #babdb6;
469
+ margin-top: 0;
470
+ margin-bottom: 0;
471
+ top: 0;
472
+ left: 0;
473
+ height: 3em;
474
+ }
475
+ }
476
+