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,113 @@
1
+ /* ATK - Accessibility Toolkit
2
+ * Copyright 2001 Sun Microsystems Inc.
3
+ *
4
+ * This library is free software; you can redistribute it and/or
5
+ * modify it under the terms of the GNU Library General Public
6
+ * License as published by the Free Software Foundation; either
7
+ * version 2 of the License, or (at your option) any later version.
8
+ *
9
+ * This library is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ * Library General Public License for more details.
13
+ *
14
+ * You should have received a copy of the GNU Library General Public
15
+ * License along with this library; if not, write to the
16
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
+ * Boston, MA 02111-1307, USA.
18
+ */
19
+
20
+ #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
21
+ #error "Only <atk/atk.h> can be included directly."
22
+ #endif
23
+
24
+ #ifndef __ATK_DOCUMENT_H__
25
+ #define __ATK_DOCUMENT_H__
26
+
27
+ #include <atk/atkobject.h>
28
+ #include <atk/atkutil.h>
29
+
30
+ G_BEGIN_DECLS
31
+
32
+ /*
33
+ * The AtkDocument interface should be supported by any object that is a container
34
+ * for 'document content' as opposed to a collection of user interface elements.
35
+ *
36
+ */
37
+
38
+ #define ATK_TYPE_DOCUMENT (atk_document_get_type ())
39
+ #define ATK_IS_DOCUMENT(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_DOCUMENT)
40
+ #define ATK_DOCUMENT(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_DOCUMENT, AtkDocument)
41
+ #define ATK_DOCUMENT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_DOCUMENT, AtkDocumentIface))
42
+
43
+ #ifndef _TYPEDEF_ATK_DOCUMENT_
44
+ #define _TYPEDEF_ATK_DOCUMENT_
45
+ typedef struct _AtkDocument AtkDocument;
46
+ #endif
47
+ typedef struct _AtkDocumentIface AtkDocumentIface;
48
+
49
+ /**
50
+ * AtkDocumentIface:
51
+ * @get_document_type: gets a string indicating the document
52
+ * type. This virtual function is deprecated since 2.12 and it
53
+ * should not be overriden.
54
+ * @get_document: a #GObject instance that implements
55
+ * AtkDocumentIface. This virtual method is deprecated since 2.12
56
+ * and it should not be overriden.
57
+ * @get_document_locale: gets locale. This virtual function is
58
+ * deprecated since 2.7.90 and it should not be overriden.
59
+ * @get_document_attributes: gets an AtkAttributeSet which describes
60
+ * document-wide attributes as name-value pairs.
61
+ * @get_document_attribute_value: returns a string value assocciated
62
+ * with the named attribute for this document, or NULL
63
+ * @set_document_attribute: sets the value of an attribute. Returns
64
+ * TRUE on success, FALSE otherwise
65
+ * @get_current_page_number: gets the current page number. Since 2.12
66
+ * @get_page_count: gets the page count of the document. Since 2.12
67
+ */
68
+ struct _AtkDocumentIface
69
+ {
70
+ GTypeInterface parent;
71
+ const gchar* ( *get_document_type) (AtkDocument *document);
72
+ gpointer ( *get_document) (AtkDocument *document);
73
+
74
+ const gchar* ( *get_document_locale) (AtkDocument *document);
75
+ AtkAttributeSet * ( *get_document_attributes) (AtkDocument *document);
76
+ const gchar* ( *get_document_attribute_value) (AtkDocument *document,
77
+ const gchar *attribute_name);
78
+ gboolean ( *set_document_attribute) (AtkDocument *document,
79
+ const gchar *attribute_name,
80
+ const gchar *attribute_value);
81
+ gint ( *get_current_page_number) (AtkDocument *document);
82
+ gint ( *get_page_count) (AtkDocument *document);
83
+ };
84
+
85
+ ATK_AVAILABLE_IN_ALL
86
+ GType atk_document_get_type (void);
87
+
88
+ ATK_DEPRECATED_IN_2_12
89
+ const gchar* atk_document_get_document_type (AtkDocument *document);
90
+
91
+ ATK_DEPRECATED_IN_2_12
92
+ gpointer atk_document_get_document (AtkDocument *document);
93
+
94
+ ATK_DEPRECATED_IN_2_8_FOR(atk_object_get_object_locale)
95
+ const gchar* atk_document_get_locale (AtkDocument *document);
96
+
97
+ ATK_AVAILABLE_IN_ALL
98
+ AtkAttributeSet* atk_document_get_attributes (AtkDocument *document);
99
+ ATK_AVAILABLE_IN_ALL
100
+ const gchar* atk_document_get_attribute_value (AtkDocument *document,
101
+ const gchar *attribute_name);
102
+ ATK_AVAILABLE_IN_ALL
103
+ gboolean atk_document_set_attribute_value (AtkDocument *document,
104
+ const gchar *attribute_name,
105
+ const gchar *attribute_value);
106
+ ATK_AVAILABLE_IN_2_12
107
+ gint atk_document_get_current_page_number (AtkDocument *document);
108
+ ATK_AVAILABLE_IN_2_12
109
+ gint atk_document_get_page_count (AtkDocument *document);
110
+
111
+ G_END_DECLS
112
+
113
+ #endif /* __ATK_DOCUMENT_H__ */
@@ -0,0 +1,109 @@
1
+ /* ATK - Accessibility Toolkit
2
+ * Copyright 2001 Sun Microsystems Inc.
3
+ *
4
+ * This library is free software; you can redistribute it and/or
5
+ * modify it under the terms of the GNU Library General Public
6
+ * License as published by the Free Software Foundation; either
7
+ * version 2 of the License, or (at your option) any later version.
8
+ *
9
+ * This library is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ * Library General Public License for more details.
13
+ *
14
+ * You should have received a copy of the GNU Library General Public
15
+ * License along with this library; if not, write to the
16
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
+ * Boston, MA 02111-1307, USA.
18
+ */
19
+
20
+ #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
21
+ #error "Only <atk/atk.h> can be included directly."
22
+ #endif
23
+
24
+ #ifndef __ATK_EDITABLE_TEXT_H__
25
+ #define __ATK_EDITABLE_TEXT_H__
26
+
27
+ #include <atk/atkobject.h>
28
+ #include <atk/atktext.h>
29
+
30
+ G_BEGIN_DECLS
31
+
32
+ /*
33
+ * AtkEditableText is used to support access in an "accessibility" context
34
+ * to editing features of editable text widgets.
35
+ */
36
+
37
+ #define ATK_TYPE_EDITABLE_TEXT (atk_editable_text_get_type ())
38
+ #define ATK_IS_EDITABLE_TEXT(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_EDITABLE_TEXT)
39
+ #define ATK_EDITABLE_TEXT(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_EDITABLE_TEXT, AtkEditableText)
40
+ #define ATK_EDITABLE_TEXT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_EDITABLE_TEXT, AtkEditableTextIface))
41
+
42
+ #ifndef _TYPEDEF_ATK_EDITABLE_TEXT_
43
+ #define _TYPEDEF_ATK_EDITABLE_TEXT_
44
+ typedef struct _AtkEditableText AtkEditableText;
45
+ #endif
46
+ typedef struct _AtkEditableTextIface AtkEditableTextIface;
47
+
48
+ struct _AtkEditableTextIface
49
+ {
50
+ GTypeInterface parent_interface;
51
+
52
+ gboolean (* set_run_attributes) (AtkEditableText *text,
53
+ AtkAttributeSet *attrib_set,
54
+ gint start_offset,
55
+ gint end_offset);
56
+ void (* set_text_contents) (AtkEditableText *text,
57
+ const gchar *string);
58
+ void (* insert_text) (AtkEditableText *text,
59
+ const gchar *string,
60
+ gint length,
61
+ gint *position);
62
+ void (* copy_text) (AtkEditableText *text,
63
+ gint start_pos,
64
+ gint end_pos);
65
+ void (* cut_text) (AtkEditableText *text,
66
+ gint start_pos,
67
+ gint end_pos);
68
+ void (* delete_text) (AtkEditableText *text,
69
+ gint start_pos,
70
+ gint end_pos);
71
+ void (* paste_text) (AtkEditableText *text,
72
+ gint position);
73
+ };
74
+ ATK_AVAILABLE_IN_ALL
75
+ GType atk_editable_text_get_type (void);
76
+
77
+
78
+ ATK_AVAILABLE_IN_ALL
79
+ gboolean atk_editable_text_set_run_attributes (AtkEditableText *text,
80
+ AtkAttributeSet *attrib_set,
81
+ gint start_offset,
82
+ gint end_offset);
83
+ ATK_AVAILABLE_IN_ALL
84
+ void atk_editable_text_set_text_contents (AtkEditableText *text,
85
+ const gchar *string);
86
+ ATK_AVAILABLE_IN_ALL
87
+ void atk_editable_text_insert_text (AtkEditableText *text,
88
+ const gchar *string,
89
+ gint length,
90
+ gint *position);
91
+ ATK_AVAILABLE_IN_ALL
92
+ void atk_editable_text_copy_text (AtkEditableText *text,
93
+ gint start_pos,
94
+ gint end_pos);
95
+ ATK_AVAILABLE_IN_ALL
96
+ void atk_editable_text_cut_text (AtkEditableText *text,
97
+ gint start_pos,
98
+ gint end_pos);
99
+ ATK_AVAILABLE_IN_ALL
100
+ void atk_editable_text_delete_text (AtkEditableText *text,
101
+ gint start_pos,
102
+ gint end_pos);
103
+ ATK_AVAILABLE_IN_ALL
104
+ void atk_editable_text_paste_text (AtkEditableText *text,
105
+ gint position);
106
+
107
+ G_END_DECLS
108
+
109
+ #endif /* __ATK_EDITABLE_TEXT_H__ */
@@ -0,0 +1,68 @@
1
+ /* ATK - Accessibility Toolkit
2
+ * Copyright 2001 Sun Microsystems Inc.
3
+ *
4
+ * This library is free software; you can redistribute it and/or
5
+ * modify it under the terms of the GNU Library General Public
6
+ * License as published by the Free Software Foundation; either
7
+ * version 2 of the License, or (at your option) any later version.
8
+ *
9
+ * This library is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ * Library General Public License for more details.
13
+ *
14
+ * You should have received a copy of the GNU Library General Public
15
+ * License along with this library; if not, write to the
16
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
+ * Boston, MA 02111-1307, USA.
18
+ */
19
+
20
+ #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
21
+ #error "Only <atk/atk.h> can be included directly."
22
+ #endif
23
+
24
+ #ifndef __ATK_GOBJECT_ACCESSIBLE_H__
25
+ #define __ATK_GOBJECT_ACCESSIBLE_H__
26
+
27
+ #include <atk/atkobject.h>
28
+
29
+ G_BEGIN_DECLS
30
+
31
+ /*
32
+ * The AtkGObjectAccessible class is provided as a basis for implementing
33
+ * accessibility support for objects which are not GTK+ widgets
34
+ */
35
+ #define ATK_TYPE_GOBJECT_ACCESSIBLE (atk_gobject_accessible_get_type ())
36
+ #define ATK_GOBJECT_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_GOBJECT_ACCESSIBLE, AtkGObjectAccessible))
37
+ #define ATK_GOBJECT_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ATK_TYPE_GOBJECT_ACCESSIBLE, AtkGObjectAccessibleClass))
38
+ #define ATK_IS_GOBJECT_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_GOBJECT_ACCESSIBLE))
39
+ #define ATK_IS_GOBJECT_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ATK_TYPE_GOBJECT_ACCESSIBLE))
40
+ #define ATK_GOBJECT_ACCESSIBLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATK_TYPE_GOBJECT_ACCESSIBLE, AtkGObjectAccessibleClass))
41
+
42
+ typedef struct _AtkGObjectAccessible AtkGObjectAccessible;
43
+ typedef struct _AtkGObjectAccessibleClass AtkGObjectAccessibleClass;
44
+
45
+ struct _AtkGObjectAccessible
46
+ {
47
+ AtkObject parent;
48
+ };
49
+
50
+ ATK_AVAILABLE_IN_ALL
51
+ GType atk_gobject_accessible_get_type (void);
52
+
53
+ struct _AtkGObjectAccessibleClass
54
+ {
55
+ AtkObjectClass parent_class;
56
+
57
+ AtkFunction pad1;
58
+ AtkFunction pad2;
59
+ };
60
+
61
+ ATK_AVAILABLE_IN_ALL
62
+ AtkObject *atk_gobject_accessible_for_object (GObject *obj);
63
+ ATK_AVAILABLE_IN_ALL
64
+ GObject *atk_gobject_accessible_get_object (AtkGObjectAccessible *obj);
65
+
66
+ G_END_DECLS
67
+
68
+ #endif /* __ATK_GOBJECT_ACCESSIBLE_H__ */
@@ -0,0 +1,114 @@
1
+ /* ATK - Accessibility Toolkit
2
+ * Copyright 2001 Sun Microsystems Inc.
3
+ *
4
+ * This library is free software; you can redistribute it and/or
5
+ * modify it under the terms of the GNU Library General Public
6
+ * License as published by the Free Software Foundation; either
7
+ * version 2 of the License, or (at your option) any later version.
8
+ *
9
+ * This library is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ * Library General Public License for more details.
13
+ *
14
+ * You should have received a copy of the GNU Library General Public
15
+ * License along with this library; if not, write to the
16
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
+ * Boston, MA 02111-1307, USA.
18
+ */
19
+
20
+ #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
21
+ #error "Only <atk/atk.h> can be included directly."
22
+ #endif
23
+
24
+ #ifndef __ATK_HYPERLINK_H__
25
+ #define __ATK_HYPERLINK_H__
26
+
27
+ #include <atk/atkaction.h>
28
+
29
+ G_BEGIN_DECLS
30
+
31
+ /*
32
+ * AtkHyperlink encapsulates a link or set of links in a hypertext document.
33
+ *
34
+ * It implements the AtkAction interface.
35
+ */
36
+
37
+ /**
38
+ *AtkHyperlinkStateFlags:
39
+ *@ATK_HYPERLINK_IS_INLINE: Link is inline
40
+ *
41
+ *Describes the type of link
42
+ **/
43
+ typedef enum
44
+ {
45
+ ATK_HYPERLINK_IS_INLINE = 1 << 0
46
+ } AtkHyperlinkStateFlags;
47
+
48
+ #define ATK_TYPE_HYPERLINK (atk_hyperlink_get_type ())
49
+ #define ATK_HYPERLINK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_HYPERLINK, AtkHyperlink))
50
+ #define ATK_HYPERLINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ATK_TYPE_HYPERLINK, AtkHyperlinkClass))
51
+ #define ATK_IS_HYPERLINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_HYPERLINK))
52
+ #define ATK_IS_HYPERLINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ATK_TYPE_HYPERLINK))
53
+ #define ATK_HYPERLINK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATK_TYPE_HYPERLINK, AtkHyperlinkClass))
54
+
55
+ typedef struct _AtkHyperlink AtkHyperlink;
56
+ typedef struct _AtkHyperlinkClass AtkHyperlinkClass;
57
+
58
+ struct _AtkHyperlink
59
+ {
60
+ GObject parent;
61
+ };
62
+
63
+ struct _AtkHyperlinkClass
64
+ {
65
+ GObjectClass parent;
66
+
67
+ gchar* (* get_uri) (AtkHyperlink *link_,
68
+ gint i);
69
+ AtkObject* (* get_object) (AtkHyperlink *link_,
70
+ gint i);
71
+ gint (* get_end_index) (AtkHyperlink *link_);
72
+ gint (* get_start_index) (AtkHyperlink *link_);
73
+ gboolean (* is_valid) (AtkHyperlink *link_);
74
+ gint (* get_n_anchors) (AtkHyperlink *link_);
75
+ guint (* link_state) (AtkHyperlink *link_);
76
+ gboolean (* is_selected_link) (AtkHyperlink *link_);
77
+
78
+ /* Signals */
79
+ void ( *link_activated) (AtkHyperlink *link_);
80
+ AtkFunction pad1;
81
+ };
82
+
83
+ ATK_AVAILABLE_IN_ALL
84
+ GType atk_hyperlink_get_type (void);
85
+
86
+ ATK_AVAILABLE_IN_ALL
87
+ gchar* atk_hyperlink_get_uri (AtkHyperlink *link_,
88
+ gint i);
89
+
90
+ ATK_AVAILABLE_IN_ALL
91
+ AtkObject* atk_hyperlink_get_object (AtkHyperlink *link_,
92
+ gint i);
93
+
94
+ ATK_AVAILABLE_IN_ALL
95
+ gint atk_hyperlink_get_end_index (AtkHyperlink *link_);
96
+
97
+ ATK_AVAILABLE_IN_ALL
98
+ gint atk_hyperlink_get_start_index (AtkHyperlink *link_);
99
+
100
+ ATK_AVAILABLE_IN_ALL
101
+ gboolean atk_hyperlink_is_valid (AtkHyperlink *link_);
102
+
103
+ ATK_AVAILABLE_IN_ALL
104
+ gboolean atk_hyperlink_is_inline (AtkHyperlink *link_);
105
+
106
+ ATK_AVAILABLE_IN_ALL
107
+ gint atk_hyperlink_get_n_anchors (AtkHyperlink *link_);
108
+
109
+ ATK_DEPRECATED
110
+ gboolean atk_hyperlink_is_selected_link (AtkHyperlink *link_);
111
+
112
+ G_END_DECLS
113
+
114
+ #endif /* __ATK_HYPERLINK_H__ */
@@ -0,0 +1,68 @@
1
+ /* ATK - Accessibility Toolkit
2
+ * Copyright 2001 Sun Microsystems Inc.
3
+ *
4
+ * This library is free software; you can redistribute it and/or
5
+ * modify it under the terms of the GNU Library General Public
6
+ * License as published by the Free Software Foundation; either
7
+ * version 2 of the License, or (at your option) any later version.
8
+ *
9
+ * This library is distributed in the hope that it will be useful,
10
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ * Library General Public License for more details.
13
+ *
14
+ * You should have received a copy of the GNU Library General Public
15
+ * License along with this library; if not, write to the
16
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
+ * Boston, MA 02111-1307, USA.
18
+ */
19
+
20
+ #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
21
+ #error "Only <atk/atk.h> can be included directly."
22
+ #endif
23
+
24
+ #ifndef __ATK_HYPERLINK_IMPL_H__
25
+ #define __ATK_HYPERLINK_IMPL_H__
26
+
27
+ #include <atk/atkobject.h>
28
+ #include <atk/atkhyperlink.h>
29
+
30
+ G_BEGIN_DECLS
31
+
32
+ #define ATK_TYPE_HYPERLINK_IMPL (atk_hyperlink_impl_get_type ())
33
+ #define ATK_IS_HYPERLINK_IMPL(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_HYPERLINK_IMPL)
34
+ #define ATK_HYPERLINK_IMPL(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_HYPERLINK_IMPL, AtkHyperlinkImpl)
35
+ #define ATK_HYPERLINK_IMPL_GET_IFACE(obj) G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_HYPERLINK_IMPL, AtkHyperlinkImplIface)
36
+
37
+ #ifndef _TYPEDEF_ATK_HYPERLINK_IMPL_
38
+ #define _TYPEDEF_ATK_HYPERLINK_IMPL__
39
+
40
+ /**
41
+ * AtkHyperlinkImpl:
42
+ *
43
+ * A queryable interface which allows AtkHyperlink instances
44
+ * associated with an AtkObject to be obtained. AtkHyperlinkImpl
45
+ * corresponds to AT-SPI's Hyperlink interface, and differs from
46
+ * AtkHyperlink in that AtkHyperlink is an object type, rather than an
47
+ * interface, and thus cannot be directly queried. FTW
48
+ */
49
+ typedef struct _AtkHyperlinkImpl AtkHyperlinkImpl;
50
+ #endif
51
+ typedef struct _AtkHyperlinkImplIface AtkHyperlinkImplIface;
52
+
53
+ struct _AtkHyperlinkImplIface
54
+ {
55
+ GTypeInterface parent;
56
+
57
+ AtkHyperlink* (* get_hyperlink) (AtkHyperlinkImpl *impl);
58
+ };
59
+
60
+ ATK_AVAILABLE_IN_ALL
61
+ GType atk_hyperlink_impl_get_type (void);
62
+
63
+ ATK_AVAILABLE_IN_ALL
64
+ AtkHyperlink *atk_hyperlink_impl_get_hyperlink (AtkHyperlinkImpl *impl);
65
+
66
+ G_END_DECLS
67
+
68
+ #endif /* __ATK_HYPERLINK_IMPL_H__ */