atk 2.2.4-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
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,207 @@
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: AtkSocket</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="accessibles.html" title="Custom accessible objects">
9
+ <link rel="prev" href="atk-AtkPlug.html" title="AtkPlug">
10
+ <link rel="next" href="utilities.html" title="Utilities">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#atk-AtkSocket.description" class="shortcut">Description</a></span>
19
+ </td>
20
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21
+ <td><a accesskey="u" href="accessibles.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22
+ <td><a accesskey="p" href="atk-AtkPlug.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23
+ <td><a accesskey="n" href="utilities.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24
+ </tr></table>
25
+ <div class="refentry">
26
+ <a name="atk-AtkSocket"></a><div class="titlepage"></div>
27
+ <div class="refnamediv"><table width="100%"><tr>
28
+ <td valign="top">
29
+ <h2><span class="refentrytitle"><a name="atk-AtkSocket.top_of_page"></a>AtkSocket</span></h2>
30
+ <p>AtkSocket — Container for AtkPlug objects from other processes</p>
31
+ </td>
32
+ <td class="gallery_image" valign="top" align="right"></td>
33
+ </tr></table></div>
34
+ <div class="refsect1">
35
+ <a name="atk-AtkSocket.functions"></a><h2>Functions</h2>
36
+ <div class="informaltable"><table width="100%" border="0">
37
+ <colgroup>
38
+ <col width="150px" class="functions_return">
39
+ <col class="functions_name">
40
+ </colgroup>
41
+ <tbody>
42
+ <tr>
43
+ <td class="function_type">
44
+ <a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
45
+ </td>
46
+ <td class="function_name">
47
+ <a class="link" href="atk-AtkSocket.html#atk-socket-new" title="atk_socket_new ()">atk_socket_new</a> <span class="c_punctuation">()</span>
48
+ </td>
49
+ </tr>
50
+ <tr>
51
+ <td class="function_type">
52
+ <span class="returnvalue">void</span>
53
+ </td>
54
+ <td class="function_name">
55
+ <a class="link" href="atk-AtkSocket.html#atk-socket-embed" title="atk_socket_embed ()">atk_socket_embed</a> <span class="c_punctuation">()</span>
56
+ </td>
57
+ </tr>
58
+ <tr>
59
+ <td class="function_type">
60
+ <span class="returnvalue">gboolean</span>
61
+ </td>
62
+ <td class="function_name">
63
+ <a class="link" href="atk-AtkSocket.html#atk-socket-is-occupied" title="atk_socket_is_occupied ()">atk_socket_is_occupied</a> <span class="c_punctuation">()</span>
64
+ </td>
65
+ </tr>
66
+ </tbody>
67
+ </table></div>
68
+ </div>
69
+ <div class="refsect1">
70
+ <a name="atk-AtkSocket.other"></a><h2>Types and Values</h2>
71
+ <div class="informaltable"><table width="100%" border="0">
72
+ <colgroup>
73
+ <col width="150px" class="name">
74
+ <col class="description">
75
+ </colgroup>
76
+ <tbody><tr>
77
+ <td class="datatype_keyword">struct</td>
78
+ <td class="function_name"><a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket">AtkSocket</a></td>
79
+ </tr></tbody>
80
+ </table></div>
81
+ </div>
82
+ <div class="refsect1">
83
+ <a name="atk-AtkSocket.description"></a><h2>Description</h2>
84
+ <p>Together with <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a>, <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a> provides the ability to embed
85
+ accessibles from one process into another in a fashion that is
86
+ transparent to assistive technologies. <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a> works as the
87
+ container of <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a>, embedding it using the method
88
+ <a class="link" href="atk-AtkSocket.html#atk-socket-embed" title="atk_socket_embed ()"><code class="function">atk_socket_embed()</code></a>. Any accessible contained in the <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a> will
89
+ appear to the assistive technologies as being inside the
90
+ application that created the <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a>.</p>
91
+ <p>The communication between a <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a> and a <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a> is done by
92
+ the IPC layer of the accessibility framework, normally implemented
93
+ by the D-Bus based implementation of AT-SPI (at-spi2). If that is
94
+ the case, at-spi-atk2 is the responsible to implement the abstract
95
+ methods <a class="link" href="atk-AtkPlug.html#atk-plug-get-id" title="atk_plug_get_id ()"><code class="function">atk_plug_get_id()</code></a> and <a class="link" href="atk-AtkSocket.html#atk-socket-embed" title="atk_socket_embed ()"><code class="function">atk_socket_embed()</code></a>, so an ATK
96
+ implementor shouldn't reimplement them. The process that contains
97
+ the <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a> is responsible to send the ID returned by
98
+ <code class="function">atk_plug_id()</code> to the process that contains the <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a>, so it
99
+ could call the method <a class="link" href="atk-AtkSocket.html#atk-socket-embed" title="atk_socket_embed ()"><code class="function">atk_socket_embed()</code></a> in order to embed it.</p>
100
+ <p>For the same reasons, an implementor doesn't need to implement
101
+ <a class="link" href="AtkObject.html#atk-object-get-n-accessible-children" title="atk_object_get_n_accessible_children ()"><code class="function">atk_object_get_n_accessible_children()</code></a> and
102
+ <a class="link" href="AtkObject.html#atk-object-ref-accessible-child" title="atk_object_ref_accessible_child ()"><code class="function">atk_object_ref_accessible_child()</code></a>. All the logic related to those
103
+ functions will be implemented by the IPC layer.</p>
104
+ </div>
105
+ <div class="refsect1">
106
+ <a name="atk-AtkSocket.functions_details"></a><h2>Functions</h2>
107
+ <div class="refsect2">
108
+ <a name="atk-socket-new"></a><h3>atk_socket_new ()</h3>
109
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
110
+ atk_socket_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
111
+ <p>
112
+ </p>
113
+ <div class="refsect3">
114
+ <a name="id-1.7.6.6.2.5"></a><h4>Returns</h4>
115
+ <p></p>
116
+ </div>
117
+ </div>
118
+ <hr>
119
+ <div class="refsect2">
120
+ <a name="atk-socket-embed"></a><h3>atk_socket_embed ()</h3>
121
+ <pre class="programlisting"><span class="returnvalue">void</span>
122
+ atk_socket_embed (<em class="parameter"><code><a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a> *obj</code></em>,
123
+ <em class="parameter"><code><span class="type">gchar</span> *plug_id</code></em>);</pre>
124
+ <p>Embeds the children of an <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a> as the children of the
125
+ <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a>. The plug may be in the same process or in a different
126
+ process.</p>
127
+ <p>The class item used by this function should be filled in by the IPC
128
+ layer (usually at-spi2-atk). The implementor of the AtkSocket
129
+ should call this function and pass the id for the plug as returned
130
+ by <a class="link" href="atk-AtkPlug.html#atk-plug-get-id" title="atk_plug_get_id ()"><code class="function">atk_plug_get_id()</code></a>. It is the responsibility of the application
131
+ to pass the plug id on to the process implementing the <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a>
132
+ as needed.</p>
133
+ <div class="refsect3">
134
+ <a name="id-1.7.6.6.3.6"></a><h4>Parameters</h4>
135
+ <div class="informaltable"><table width="100%" border="0">
136
+ <colgroup>
137
+ <col width="150px" class="parameters_name">
138
+ <col class="parameters_description">
139
+ <col width="200px" class="parameters_annotations">
140
+ </colgroup>
141
+ <tbody>
142
+ <tr>
143
+ <td class="parameter_name"><p>obj</p></td>
144
+ <td class="parameter_description"><p>an <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a></p></td>
145
+ <td class="parameter_annotations"> </td>
146
+ </tr>
147
+ <tr>
148
+ <td class="parameter_name"><p>plug_id</p></td>
149
+ <td class="parameter_description"><p>the ID of an <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a></p></td>
150
+ <td class="parameter_annotations"> </td>
151
+ </tr>
152
+ </tbody>
153
+ </table></div>
154
+ </div>
155
+ <p class="since">Since 1.30</p>
156
+ </div>
157
+ <hr>
158
+ <div class="refsect2">
159
+ <a name="atk-socket-is-occupied"></a><h3>atk_socket_is_occupied ()</h3>
160
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
161
+ atk_socket_is_occupied (<em class="parameter"><code><a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a> *obj</code></em>);</pre>
162
+ <p>Determines whether or not the socket has an embedded plug.</p>
163
+ <div class="refsect3">
164
+ <a name="id-1.7.6.6.4.5"></a><h4>Parameters</h4>
165
+ <div class="informaltable"><table width="100%" border="0">
166
+ <colgroup>
167
+ <col width="150px" class="parameters_name">
168
+ <col class="parameters_description">
169
+ <col width="200px" class="parameters_annotations">
170
+ </colgroup>
171
+ <tbody><tr>
172
+ <td class="parameter_name"><p>obj</p></td>
173
+ <td class="parameter_description"><p>an <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a></p></td>
174
+ <td class="parameter_annotations"> </td>
175
+ </tr></tbody>
176
+ </table></div>
177
+ </div>
178
+ <div class="refsect3">
179
+ <a name="id-1.7.6.6.4.6"></a><h4>Returns</h4>
180
+ <p> TRUE if a plug is embedded in the socket</p>
181
+ <p></p>
182
+ </div>
183
+ <p class="since">Since 1.30</p>
184
+ </div>
185
+ </div>
186
+ <div class="refsect1">
187
+ <a name="atk-AtkSocket.other_details"></a><h2>Types and Values</h2>
188
+ <div class="refsect2">
189
+ <a name="AtkSocket"></a><h3>struct AtkSocket</h3>
190
+ <pre class="programlisting">struct AtkSocket {
191
+ AtkObject parent;
192
+ };
193
+ </pre>
194
+ <p>
195
+ </p>
196
+ </div>
197
+ </div>
198
+ <div class="refsect1">
199
+ <a name="atk-AtkSocket.see-also"></a><h2>See Also</h2>
200
+ <p><a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a></p>
201
+ </div>
202
+ </div>
203
+ <div class="footer">
204
+ <hr>
205
+ Generated by GTK-Doc V1.21.1</div>
206
+ </body>
207
+ </html>
@@ -0,0 +1,556 @@
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: AtkState</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="data.html" title="Basic accessible data types">
9
+ <link rel="prev" href="AtkRelationSet.html" title="AtkRelationSet">
10
+ <link rel="next" href="AtkStateSet.html" title="AtkStateSet">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#atk-AtkState.description" class="shortcut">Description</a></span>
19
+ </td>
20
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21
+ <td><a accesskey="u" href="data.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22
+ <td><a accesskey="p" href="AtkRelationSet.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23
+ <td><a accesskey="n" href="AtkStateSet.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24
+ </tr></table>
25
+ <div class="refentry">
26
+ <a name="atk-AtkState"></a><div class="titlepage"></div>
27
+ <div class="refnamediv"><table width="100%"><tr>
28
+ <td valign="top">
29
+ <h2><span class="refentrytitle"><a name="atk-AtkState.top_of_page"></a>AtkState</span></h2>
30
+ <p>AtkState — An AtkState describes a component's particular state.</p>
31
+ </td>
32
+ <td class="gallery_image" valign="top" align="right"></td>
33
+ </tr></table></div>
34
+ <div class="refsect1">
35
+ <a name="atk-AtkState.functions"></a><h2>Functions</h2>
36
+ <div class="informaltable"><table width="100%" border="0">
37
+ <colgroup>
38
+ <col width="150px" class="functions_return">
39
+ <col class="functions_name">
40
+ </colgroup>
41
+ <tbody>
42
+ <tr>
43
+ <td class="function_type">
44
+ <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="returnvalue">AtkStateType</span></a>
45
+ </td>
46
+ <td class="function_name">
47
+ <a class="link" href="atk-AtkState.html#atk-state-type-register" title="atk_state_type_register ()">atk_state_type_register</a> <span class="c_punctuation">()</span>
48
+ </td>
49
+ </tr>
50
+ <tr>
51
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
52
+ </td>
53
+ <td class="function_name">
54
+ <a class="link" href="atk-AtkState.html#atk-state-type-get-name" title="atk_state_type_get_name ()">atk_state_type_get_name</a> <span class="c_punctuation">()</span>
55
+ </td>
56
+ </tr>
57
+ <tr>
58
+ <td class="function_type">
59
+ <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="returnvalue">AtkStateType</span></a>
60
+ </td>
61
+ <td class="function_name">
62
+ <a class="link" href="atk-AtkState.html#atk-state-type-for-name" title="atk_state_type_for_name ()">atk_state_type_for_name</a> <span class="c_punctuation">()</span>
63
+ </td>
64
+ </tr>
65
+ </tbody>
66
+ </table></div>
67
+ </div>
68
+ <div class="refsect1">
69
+ <a name="atk-AtkState.other"></a><h2>Types and Values</h2>
70
+ <div class="informaltable"><table width="100%" border="0">
71
+ <colgroup>
72
+ <col width="150px" class="name">
73
+ <col class="description">
74
+ </colgroup>
75
+ <tbody>
76
+ <tr>
77
+ <td class="datatype_keyword">enum</td>
78
+ <td class="function_name"><a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType">AtkStateType</a></td>
79
+ </tr>
80
+ <tr>
81
+ <td class="typedef_keyword">typedef</td>
82
+ <td class="function_name"><a class="link" href="atk-AtkState.html#AtkState" title="AtkState">AtkState</a></td>
83
+ </tr>
84
+ </tbody>
85
+ </table></div>
86
+ </div>
87
+ <div class="refsect1">
88
+ <a name="atk-AtkState.description"></a><h2>Description</h2>
89
+ <p>An AtkState describes a component's particular state. The actual
90
+ state of an component is described by its AtkStateSet, which is a
91
+ set of AtkStates.</p>
92
+ </div>
93
+ <div class="refsect1">
94
+ <a name="atk-AtkState.functions_details"></a><h2>Functions</h2>
95
+ <div class="refsect2">
96
+ <a name="atk-state-type-register"></a><h3>atk_state_type_register ()</h3>
97
+ <pre class="programlisting"><a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="returnvalue">AtkStateType</span></a>
98
+ atk_state_type_register (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
99
+ <p>Register a new object state.</p>
100
+ <div class="refsect3">
101
+ <a name="id-1.6.5.6.2.5"></a><h4>Parameters</h4>
102
+ <div class="informaltable"><table width="100%" border="0">
103
+ <colgroup>
104
+ <col width="150px" class="parameters_name">
105
+ <col class="parameters_description">
106
+ <col width="200px" class="parameters_annotations">
107
+ </colgroup>
108
+ <tbody><tr>
109
+ <td class="parameter_name"><p>name</p></td>
110
+ <td class="parameter_description"><p>a character string describing the new state.</p></td>
111
+ <td class="parameter_annotations"> </td>
112
+ </tr></tbody>
113
+ </table></div>
114
+ </div>
115
+ <div class="refsect3">
116
+ <a name="id-1.6.5.6.2.6"></a><h4>Returns</h4>
117
+ <p> an <a class="link" href="atk-AtkState.html#AtkState" title="AtkState"><span class="type">AtkState</span></a> value for the new state.</p>
118
+ <p></p>
119
+ </div>
120
+ </div>
121
+ <hr>
122
+ <div class="refsect2">
123
+ <a name="atk-state-type-get-name"></a><h3>atk_state_type_get_name ()</h3>
124
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
125
+ atk_state_type_get_name (<em class="parameter"><code><a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a> type</code></em>);</pre>
126
+ <p>Gets the description string describing the <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a> <em class="parameter"><code>type</code></em>
127
+ .</p>
128
+ <div class="refsect3">
129
+ <a name="id-1.6.5.6.3.5"></a><h4>Parameters</h4>
130
+ <div class="informaltable"><table width="100%" border="0">
131
+ <colgroup>
132
+ <col width="150px" class="parameters_name">
133
+ <col class="parameters_description">
134
+ <col width="200px" class="parameters_annotations">
135
+ </colgroup>
136
+ <tbody><tr>
137
+ <td class="parameter_name"><p>type</p></td>
138
+ <td class="parameter_description"><p>The <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a> whose name is required</p></td>
139
+ <td class="parameter_annotations"> </td>
140
+ </tr></tbody>
141
+ </table></div>
142
+ </div>
143
+ <div class="refsect3">
144
+ <a name="id-1.6.5.6.3.6"></a><h4>Returns</h4>
145
+ <p> the string describing the AtkStateType</p>
146
+ <p></p>
147
+ </div>
148
+ </div>
149
+ <hr>
150
+ <div class="refsect2">
151
+ <a name="atk-state-type-for-name"></a><h3>atk_state_type_for_name ()</h3>
152
+ <pre class="programlisting"><a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="returnvalue">AtkStateType</span></a>
153
+ atk_state_type_for_name (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
154
+ <p>Gets the <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a> corresponding to the description string <em class="parameter"><code>name</code></em>
155
+ .</p>
156
+ <div class="refsect3">
157
+ <a name="id-1.6.5.6.4.5"></a><h4>Parameters</h4>
158
+ <div class="informaltable"><table width="100%" border="0">
159
+ <colgroup>
160
+ <col width="150px" class="parameters_name">
161
+ <col class="parameters_description">
162
+ <col width="200px" class="parameters_annotations">
163
+ </colgroup>
164
+ <tbody><tr>
165
+ <td class="parameter_name"><p>name</p></td>
166
+ <td class="parameter_description"><p>a character string state name</p></td>
167
+ <td class="parameter_annotations"> </td>
168
+ </tr></tbody>
169
+ </table></div>
170
+ </div>
171
+ <div class="refsect3">
172
+ <a name="id-1.6.5.6.4.6"></a><h4>Returns</h4>
173
+ <p> an <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a> corresponding to <em class="parameter"><code>name</code></em>
174
+ </p>
175
+ <p></p>
176
+ </div>
177
+ </div>
178
+ </div>
179
+ <div class="refsect1">
180
+ <a name="atk-AtkState.other_details"></a><h2>Types and Values</h2>
181
+ <div class="refsect2">
182
+ <a name="AtkStateType"></a><h3>enum AtkStateType</h3>
183
+ <p>The possible types of states of an object</p>
184
+ <div class="refsect3">
185
+ <a name="id-1.6.5.7.2.4"></a><h4>Members</h4>
186
+ <div class="informaltable"><table width="100%" border="0">
187
+ <colgroup>
188
+ <col width="300px" class="enum_members_name">
189
+ <col class="enum_members_description">
190
+ <col width="200px" class="enum_members_annotations">
191
+ </colgroup>
192
+ <tbody>
193
+ <tr>
194
+ <td class="enum_member_name"><p><a name="ATK-STATE-INVALID:CAPS"></a>ATK_STATE_INVALID</p></td>
195
+ <td class="enum_member_description">
196
+ <p>Indicates an invalid state - probably an error condition.</p>
197
+ </td>
198
+ <td class="enum_member_annotations"> </td>
199
+ </tr>
200
+ <tr>
201
+ <td class="enum_member_name"><p><a name="ATK-STATE-ACTIVE:CAPS"></a>ATK_STATE_ACTIVE</p></td>
202
+ <td class="enum_member_description">
203
+ <p>Indicates a window is currently the active window, or is an active subelement within a container or table</p>
204
+ </td>
205
+ <td class="enum_member_annotations"> </td>
206
+ </tr>
207
+ <tr>
208
+ <td class="enum_member_name"><p><a name="ATK-STATE-ARMED:CAPS"></a>ATK_STATE_ARMED</p></td>
209
+ <td class="enum_member_description">
210
+ <p>Indicates that the object is 'armed', i.e. will be activated by if a pointer button-release event occurs within its bounds. Buttons often enter this state when a pointer click occurs within their bounds, as a precursor to activation.</p>
211
+ </td>
212
+ <td class="enum_member_annotations"> </td>
213
+ </tr>
214
+ <tr>
215
+ <td class="enum_member_name"><p><a name="ATK-STATE-BUSY:CAPS"></a>ATK_STATE_BUSY</p></td>
216
+ <td class="enum_member_description">
217
+ <p>Indicates the current object is busy, i.e. onscreen representation is in the process of changing, or the object is temporarily unavailable for interaction due to activity already in progress. This state may be used by implementors of Document to indicate that content loading is underway. It also may indicate other 'pending' conditions; clients may wish to interrogate this object when the ATK_STATE_BUSY flag is removed.</p>
218
+ </td>
219
+ <td class="enum_member_annotations"> </td>
220
+ </tr>
221
+ <tr>
222
+ <td class="enum_member_name"><p><a name="ATK-STATE-CHECKED:CAPS"></a>ATK_STATE_CHECKED</p></td>
223
+ <td class="enum_member_description">
224
+ <p>Indicates this object is currently checked, for instance a checkbox is 'non-empty'.</p>
225
+ </td>
226
+ <td class="enum_member_annotations"> </td>
227
+ </tr>
228
+ <tr>
229
+ <td class="enum_member_name"><p><a name="ATK-STATE-DEFUNCT:CAPS"></a>ATK_STATE_DEFUNCT</p></td>
230
+ <td class="enum_member_description">
231
+ <p>Indicates that this object no longer has a valid backing widget (for instance, if its peer object has been destroyed)</p>
232
+ </td>
233
+ <td class="enum_member_annotations"> </td>
234
+ </tr>
235
+ <tr>
236
+ <td class="enum_member_name"><p><a name="ATK-STATE-EDITABLE:CAPS"></a>ATK_STATE_EDITABLE</p></td>
237
+ <td class="enum_member_description">
238
+ <p>Indicates the user can change the contents of this object</p>
239
+ </td>
240
+ <td class="enum_member_annotations"> </td>
241
+ </tr>
242
+ <tr>
243
+ <td class="enum_member_name"><p><a name="ATK-STATE-ENABLED:CAPS"></a>ATK_STATE_ENABLED</p></td>
244
+ <td class="enum_member_description">
245
+ <p>Indicates that this object is enabled, i.e. that it currently reflects some application state. Objects that are "greyed out" may lack this state, and may lack the STATE_SENSITIVE if direct user interaction cannot cause them to acquire STATE_ENABLED. See also: ATK_STATE_SENSITIVE</p>
246
+ </td>
247
+ <td class="enum_member_annotations"> </td>
248
+ </tr>
249
+ <tr>
250
+ <td class="enum_member_name"><p><a name="ATK-STATE-EXPANDABLE:CAPS"></a>ATK_STATE_EXPANDABLE</p></td>
251
+ <td class="enum_member_description">
252
+ <p>Indicates this object allows progressive disclosure of its children</p>
253
+ </td>
254
+ <td class="enum_member_annotations"> </td>
255
+ </tr>
256
+ <tr>
257
+ <td class="enum_member_name"><p><a name="ATK-STATE-EXPANDED:CAPS"></a>ATK_STATE_EXPANDED</p></td>
258
+ <td class="enum_member_description">
259
+ <p>Indicates this object its expanded - see ATK_STATE_EXPANDABLE above</p>
260
+ </td>
261
+ <td class="enum_member_annotations"> </td>
262
+ </tr>
263
+ <tr>
264
+ <td class="enum_member_name"><p><a name="ATK-STATE-FOCUSABLE:CAPS"></a>ATK_STATE_FOCUSABLE</p></td>
265
+ <td class="enum_member_description">
266
+ <p>Indicates this object can accept keyboard focus, which means all events resulting from typing on the keyboard will normally be passed to it when it has focus</p>
267
+ </td>
268
+ <td class="enum_member_annotations"> </td>
269
+ </tr>
270
+ <tr>
271
+ <td class="enum_member_name"><p><a name="ATK-STATE-FOCUSED:CAPS"></a>ATK_STATE_FOCUSED</p></td>
272
+ <td class="enum_member_description">
273
+ <p>Indicates this object currently has the keyboard focus</p>
274
+ </td>
275
+ <td class="enum_member_annotations"> </td>
276
+ </tr>
277
+ <tr>
278
+ <td class="enum_member_name"><p><a name="ATK-STATE-HORIZONTAL:CAPS"></a>ATK_STATE_HORIZONTAL</p></td>
279
+ <td class="enum_member_description">
280
+ <p>Indicates the orientation of this object is horizontal; used, for instance, by objects of ATK_ROLE_SCROLL_BAR. For objects where vertical/horizontal orientation is especially meaningful.</p>
281
+ </td>
282
+ <td class="enum_member_annotations"> </td>
283
+ </tr>
284
+ <tr>
285
+ <td class="enum_member_name"><p><a name="ATK-STATE-ICONIFIED:CAPS"></a>ATK_STATE_ICONIFIED</p></td>
286
+ <td class="enum_member_description">
287
+ <p>Indicates this object is minimized and is represented only by an icon</p>
288
+ </td>
289
+ <td class="enum_member_annotations"> </td>
290
+ </tr>
291
+ <tr>
292
+ <td class="enum_member_name"><p><a name="ATK-STATE-MODAL:CAPS"></a>ATK_STATE_MODAL</p></td>
293
+ <td class="enum_member_description">
294
+ <p>Indicates something must be done with this object before the user can interact with an object in a different window</p>
295
+ </td>
296
+ <td class="enum_member_annotations"> </td>
297
+ </tr>
298
+ <tr>
299
+ <td class="enum_member_name"><p><a name="ATK-STATE-MULTI-LINE:CAPS"></a>ATK_STATE_MULTI_LINE</p></td>
300
+ <td class="enum_member_description">
301
+ <p>Indicates this (text) object can contain multiple lines of text</p>
302
+ </td>
303
+ <td class="enum_member_annotations"> </td>
304
+ </tr>
305
+ <tr>
306
+ <td class="enum_member_name"><p><a name="ATK-STATE-MULTISELECTABLE:CAPS"></a>ATK_STATE_MULTISELECTABLE</p></td>
307
+ <td class="enum_member_description">
308
+ <p>Indicates this object allows more than one of its children to be selected at the same time, or in the case of text objects, that the object supports non-contiguous text selections.</p>
309
+ </td>
310
+ <td class="enum_member_annotations"> </td>
311
+ </tr>
312
+ <tr>
313
+ <td class="enum_member_name"><p><a name="ATK-STATE-OPAQUE:CAPS"></a>ATK_STATE_OPAQUE</p></td>
314
+ <td class="enum_member_description">
315
+ <p>Indicates this object paints every pixel within its rectangular region.</p>
316
+ </td>
317
+ <td class="enum_member_annotations"> </td>
318
+ </tr>
319
+ <tr>
320
+ <td class="enum_member_name"><p><a name="ATK-STATE-PRESSED:CAPS"></a>ATK_STATE_PRESSED</p></td>
321
+ <td class="enum_member_description">
322
+ <p>Indicates this object is currently pressed; c.f. ATK_STATE_ARMED</p>
323
+ </td>
324
+ <td class="enum_member_annotations"> </td>
325
+ </tr>
326
+ <tr>
327
+ <td class="enum_member_name"><p><a name="ATK-STATE-RESIZABLE:CAPS"></a>ATK_STATE_RESIZABLE</p></td>
328
+ <td class="enum_member_description">
329
+ <p>Indicates the size of this object is not fixed</p>
330
+ </td>
331
+ <td class="enum_member_annotations"> </td>
332
+ </tr>
333
+ <tr>
334
+ <td class="enum_member_name"><p><a name="ATK-STATE-SELECTABLE:CAPS"></a>ATK_STATE_SELECTABLE</p></td>
335
+ <td class="enum_member_description">
336
+ <p>Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that can be selected</p>
337
+ </td>
338
+ <td class="enum_member_annotations"> </td>
339
+ </tr>
340
+ <tr>
341
+ <td class="enum_member_name"><p><a name="ATK-STATE-SELECTED:CAPS"></a>ATK_STATE_SELECTED</p></td>
342
+ <td class="enum_member_description">
343
+ <p>Indicates this object is the child of an object that allows its children to be selected and that this child is one of those children that has been selected</p>
344
+ </td>
345
+ <td class="enum_member_annotations"> </td>
346
+ </tr>
347
+ <tr>
348
+ <td class="enum_member_name"><p><a name="ATK-STATE-SENSITIVE:CAPS"></a>ATK_STATE_SENSITIVE</p></td>
349
+ <td class="enum_member_description">
350
+ <p>Indicates this object is sensitive, e.g. to user interaction.
351
+ STATE_SENSITIVE usually accompanies STATE_ENABLED for user-actionable controls,
352
+ but may be found in the absence of STATE_ENABLED if the current visible state of the
353
+ control is "disconnected" from the application state. In such cases, direct user interaction
354
+ can often result in the object gaining STATE_SENSITIVE, for instance if a user makes
355
+ an explicit selection using an object whose current state is ambiguous or undefined.
356
+ <em class="parameter"><code>see</code></em>
357
+ STATE_ENABLED, STATE_INDETERMINATE.</p>
358
+ </td>
359
+ <td class="enum_member_annotations"> </td>
360
+ </tr>
361
+ <tr>
362
+ <td class="enum_member_name"><p><a name="ATK-STATE-SHOWING:CAPS"></a>ATK_STATE_SHOWING</p></td>
363
+ <td class="enum_member_description">
364
+ <p>Indicates this object, the object's parent, the object's parent's parent, and so on,
365
+ are all 'shown' to the end-user, i.e. subject to "exposure" if blocking or obscuring objects do not interpose
366
+ between this object and the top of the window stack.</p>
367
+ </td>
368
+ <td class="enum_member_annotations"> </td>
369
+ </tr>
370
+ <tr>
371
+ <td class="enum_member_name"><p><a name="ATK-STATE-SINGLE-LINE:CAPS"></a>ATK_STATE_SINGLE_LINE</p></td>
372
+ <td class="enum_member_description">
373
+ <p>Indicates this (text) object can contain only a single line of text</p>
374
+ </td>
375
+ <td class="enum_member_annotations"> </td>
376
+ </tr>
377
+ <tr>
378
+ <td class="enum_member_name"><p><a name="ATK-STATE-STALE:CAPS"></a>ATK_STATE_STALE</p></td>
379
+ <td class="enum_member_description">
380
+ <p>Indicates that the information returned for this object may no longer be
381
+ synchronized with the application state. This is implied if the object has STATE_TRANSIENT,
382
+ and can also occur towards the end of the object peer's lifecycle. It can also be used to indicate that
383
+ the index associated with this object has changed since the user accessed the object (in lieu of
384
+ "index-in-parent-changed" events).</p>
385
+ </td>
386
+ <td class="enum_member_annotations"> </td>
387
+ </tr>
388
+ <tr>
389
+ <td class="enum_member_name"><p><a name="ATK-STATE-TRANSIENT:CAPS"></a>ATK_STATE_TRANSIENT</p></td>
390
+ <td class="enum_member_description">
391
+ <p>Indicates this object is transient, i.e. a snapshot which may not emit events when its
392
+ state changes. Data from objects with ATK_STATE_TRANSIENT should not be cached, since there may be no
393
+ notification given when the cached data becomes obsolete.</p>
394
+ </td>
395
+ <td class="enum_member_annotations"> </td>
396
+ </tr>
397
+ <tr>
398
+ <td class="enum_member_name"><p><a name="ATK-STATE-VERTICAL:CAPS"></a>ATK_STATE_VERTICAL</p></td>
399
+ <td class="enum_member_description">
400
+ <p>Indicates the orientation of this object is vertical</p>
401
+ </td>
402
+ <td class="enum_member_annotations"> </td>
403
+ </tr>
404
+ <tr>
405
+ <td class="enum_member_name"><p><a name="ATK-STATE-VISIBLE:CAPS"></a>ATK_STATE_VISIBLE</p></td>
406
+ <td class="enum_member_description">
407
+ <p>Indicates this object is visible, e.g. has been explicitly marked for exposure to the user.</p>
408
+ </td>
409
+ <td class="enum_member_annotations"> </td>
410
+ </tr>
411
+ <tr>
412
+ <td class="enum_member_name"><p><a name="ATK-STATE-MANAGES-DESCENDANTS:CAPS"></a>ATK_STATE_MANAGES_DESCENDANTS</p></td>
413
+ <td class="enum_member_description">
414
+ <p>Indicates that "active-descendant-changed" event
415
+ is sent when children become 'active' (i.e. are selected or navigated to onscreen).
416
+ Used to prevent need to enumerate all children in very large containers, like tables.
417
+ The presence of STATE_MANAGES_DESCENDANTS is an indication to the client.
418
+ that the children should not, and need not, be enumerated by the client.
419
+ Objects implementing this state are expected to provide relevant state
420
+ notifications to listening clients, for instance notifications of visibility
421
+ changes and activation of their contained child objects, without the client
422
+ having previously requested references to those children.</p>
423
+ </td>
424
+ <td class="enum_member_annotations"> </td>
425
+ </tr>
426
+ <tr>
427
+ <td class="enum_member_name"><p><a name="ATK-STATE-INDETERMINATE:CAPS"></a>ATK_STATE_INDETERMINATE</p></td>
428
+ <td class="enum_member_description">
429
+ <p>Indicates that a check box is in a state other than checked or not checked.
430
+ This usually means that the boolean value reflected or
431
+ controlled by the object does not apply consistently to the entire current context.
432
+ For example, a checkbox for the "Bold" attribute of text may have STATE_INDETERMINATE
433
+ if the currently selected text contains a mixture of weight attributes.
434
+ In many cases interacting with a STATE_INDETERMINATE object will cause
435
+ the context's corresponding boolean attribute to be homogenized, whereupon the object
436
+ will lose STATE_INDETERMINATE and a corresponding state-changed event will be fired.</p>
437
+ </td>
438
+ <td class="enum_member_annotations"> </td>
439
+ </tr>
440
+ <tr>
441
+ <td class="enum_member_name"><p><a name="ATK-STATE-TRUNCATED:CAPS"></a>ATK_STATE_TRUNCATED</p></td>
442
+ <td class="enum_member_description">
443
+ <p>Indicates that an object is truncated, e.g. a text value in a speradsheet cell.</p>
444
+ </td>
445
+ <td class="enum_member_annotations"> </td>
446
+ </tr>
447
+ <tr>
448
+ <td class="enum_member_name"><p><a name="ATK-STATE-REQUIRED:CAPS"></a>ATK_STATE_REQUIRED</p></td>
449
+ <td class="enum_member_description">
450
+ <p>Indicates that explicit user interaction with an object is required by the user interface, e.g. a required field in a "web-form" interface.</p>
451
+ </td>
452
+ <td class="enum_member_annotations"> </td>
453
+ </tr>
454
+ <tr>
455
+ <td class="enum_member_name"><p><a name="ATK-STATE-INVALID-ENTRY:CAPS"></a>ATK_STATE_INVALID_ENTRY</p></td>
456
+ <td class="enum_member_description">
457
+ <p>Indicates that the object has encountered an error condition due to failure of input validation. For instance, a form control may acquire this state in response to invalid or malformed user input.</p>
458
+ </td>
459
+ <td class="enum_member_annotations"> </td>
460
+ </tr>
461
+ <tr>
462
+ <td class="enum_member_name"><p><a name="ATK-STATE-SUPPORTS-AUTOCOMPLETION:CAPS"></a>ATK_STATE_SUPPORTS_AUTOCOMPLETION</p></td>
463
+ <td class="enum_member_description">
464
+ <p>Indicates that the object in question implements some form of ¨typeahead¨ or
465
+ pre-selection behavior whereby entering the first character of one or more sub-elements
466
+ causes those elements to scroll into view or become selected. Subsequent character input
467
+ may narrow the selection further as long as one or more sub-elements match the string.
468
+ This state is normally only useful and encountered on objects that implement Selection.
469
+ In some cases the typeahead behavior may result in full or partial ¨completion¨ of
470
+ the data in the input field, in which case these input events may trigger text-changed
471
+ events from the AtkText interface. This state supplants <em class="parameter"><code>ATK_ROLE_AUTOCOMPLETE</code></em>
472
+ .</p>
473
+ </td>
474
+ <td class="enum_member_annotations"> </td>
475
+ </tr>
476
+ <tr>
477
+ <td class="enum_member_name"><p><a name="ATK-STATE-SELECTABLE-TEXT:CAPS"></a>ATK_STATE_SELECTABLE_TEXT</p></td>
478
+ <td class="enum_member_description">
479
+ <p>Indicates that the object in question supports text selection. It should only be exposed on objects which implement the Text interface, in order to distinguish this state from <em class="parameter"><code>ATK_STATE_SELECTABLE</code></em>
480
+ , which infers that the object in question is a selectable child of an object which implements Selection. While similar, text selection and subelement selection are distinct operations.</p>
481
+ </td>
482
+ <td class="enum_member_annotations"> </td>
483
+ </tr>
484
+ <tr>
485
+ <td class="enum_member_name"><p><a name="ATK-STATE-DEFAULT:CAPS"></a>ATK_STATE_DEFAULT</p></td>
486
+ <td class="enum_member_description">
487
+ <p>Indicates that the object is the "default" active component, i.e. the object which is activated by an end-user press of the "Enter" or "Return" key. Typically a "close" or "submit" button.</p>
488
+ </td>
489
+ <td class="enum_member_annotations"> </td>
490
+ </tr>
491
+ <tr>
492
+ <td class="enum_member_name"><p><a name="ATK-STATE-ANIMATED:CAPS"></a>ATK_STATE_ANIMATED</p></td>
493
+ <td class="enum_member_description">
494
+ <p>Indicates that the object changes its appearance dynamically as an inherent part of its presentation. This state may come and go if an object is only temporarily animated on the way to a 'final' onscreen presentation.
495
+ <em class="parameter"><code>note</code></em>
496
+ some applications, notably content viewers, may not be able to detect
497
+ all kinds of animated content. Therefore the absence of this state should not
498
+ be taken as definitive evidence that the object's visual representation is
499
+ static; this state is advisory.</p>
500
+ </td>
501
+ <td class="enum_member_annotations"> </td>
502
+ </tr>
503
+ <tr>
504
+ <td class="enum_member_name"><p><a name="ATK-STATE-VISITED:CAPS"></a>ATK_STATE_VISITED</p></td>
505
+ <td class="enum_member_description">
506
+ <p>Indicates that the object (typically a hyperlink) has already been 'activated', and/or its backing data has already been downloaded, rendered, or otherwise "visited".</p>
507
+ </td>
508
+ <td class="enum_member_annotations"> </td>
509
+ </tr>
510
+ <tr>
511
+ <td class="enum_member_name"><p><a name="ATK-STATE-CHECKABLE:CAPS"></a>ATK_STATE_CHECKABLE</p></td>
512
+ <td class="enum_member_description">
513
+ <p>Indicates this object has the potential to be
514
+ checked, such as a checkbox or toggle-able table cell. <em class="parameter"><code>Since</code></em>
515
+ :
516
+ ATK-2.12</p>
517
+ </td>
518
+ <td class="enum_member_annotations"> </td>
519
+ </tr>
520
+ <tr>
521
+ <td class="enum_member_name"><p><a name="ATK-STATE-HAS-POPUP:CAPS"></a>ATK_STATE_HAS_POPUP</p></td>
522
+ <td class="enum_member_description">
523
+ <p>Indicates that the object has a popup context
524
+ menu or sub-level menu which may or may not be showing. This means
525
+ that activation renders conditional content. Note that ordinary
526
+ tooltips are not considered popups in this context. <em class="parameter"><code>Since</code></em>
527
+ : ATK-2.12</p>
528
+ </td>
529
+ <td class="enum_member_annotations"> </td>
530
+ </tr>
531
+ <tr>
532
+ <td class="enum_member_name"><p><a name="ATK-STATE-LAST-DEFINED:CAPS"></a>ATK_STATE_LAST_DEFINED</p></td>
533
+ <td class="enum_member_description">
534
+ <p>Not a valid state, used for finding end of enumeration</p>
535
+ </td>
536
+ <td class="enum_member_annotations"> </td>
537
+ </tr>
538
+ </tbody>
539
+ </table></div>
540
+ </div>
541
+ </div>
542
+ <hr>
543
+ <div class="refsect2">
544
+ <a name="AtkState"></a><h3>AtkState</h3>
545
+ <pre class="programlisting">typedef guint64 AtkState;
546
+ </pre>
547
+ <p>
548
+ </p>
549
+ </div>
550
+ </div>
551
+ </div>
552
+ <div class="footer">
553
+ <hr>
554
+ Generated by GTK-Doc V1.21.1</div>
555
+ </body>
556
+ </html>