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,413 @@
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: AtkRelationSet</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="AtkRelation.html" title="AtkRelation">
10
+ <link rel="next" href="atk-AtkState.html" title="AtkState">
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="#AtkRelationSet.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkRelationSet.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20
+ </td>
21
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
+ <td><a accesskey="u" href="data.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23
+ <td><a accesskey="p" href="AtkRelation.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="atk-AtkState.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25
+ </tr></table>
26
+ <div class="refentry">
27
+ <a name="AtkRelationSet"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="AtkRelationSet.top_of_page"></a>AtkRelationSet</span></h2>
31
+ <p>AtkRelationSet — A set of AtkRelations, normally the set of
32
+ AtkRelations which an AtkObject has.</p>
33
+ </td>
34
+ <td class="gallery_image" valign="top" align="right"></td>
35
+ </tr></table></div>
36
+ <div class="refsect1">
37
+ <a name="AtkRelationSet.functions"></a><h2>Functions</h2>
38
+ <div class="informaltable"><table width="100%" border="0">
39
+ <colgroup>
40
+ <col width="150px" class="functions_return">
41
+ <col class="functions_name">
42
+ </colgroup>
43
+ <tbody>
44
+ <tr>
45
+ <td class="function_type">
46
+ <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="returnvalue">AtkRelationSet</span></a> *
47
+ </td>
48
+ <td class="function_name">
49
+ <a class="link" href="AtkRelationSet.html#atk-relation-set-new" title="atk_relation_set_new ()">atk_relation_set_new</a> <span class="c_punctuation">()</span>
50
+ </td>
51
+ </tr>
52
+ <tr>
53
+ <td class="function_type">
54
+ <span class="returnvalue">gboolean</span>
55
+ </td>
56
+ <td class="function_name">
57
+ <a class="link" href="AtkRelationSet.html#atk-relation-set-contains" title="atk_relation_set_contains ()">atk_relation_set_contains</a> <span class="c_punctuation">()</span>
58
+ </td>
59
+ </tr>
60
+ <tr>
61
+ <td class="function_type">
62
+ <span class="returnvalue">void</span>
63
+ </td>
64
+ <td class="function_name">
65
+ <a class="link" href="AtkRelationSet.html#atk-relation-set-remove" title="atk_relation_set_remove ()">atk_relation_set_remove</a> <span class="c_punctuation">()</span>
66
+ </td>
67
+ </tr>
68
+ <tr>
69
+ <td class="function_type">
70
+ <span class="returnvalue">void</span>
71
+ </td>
72
+ <td class="function_name">
73
+ <a class="link" href="AtkRelationSet.html#atk-relation-set-add" title="atk_relation_set_add ()">atk_relation_set_add</a> <span class="c_punctuation">()</span>
74
+ </td>
75
+ </tr>
76
+ <tr>
77
+ <td class="function_type">
78
+ <span class="returnvalue">gint</span>
79
+ </td>
80
+ <td class="function_name">
81
+ <a class="link" href="AtkRelationSet.html#atk-relation-set-get-n-relations" title="atk_relation_set_get_n_relations ()">atk_relation_set_get_n_relations</a> <span class="c_punctuation">()</span>
82
+ </td>
83
+ </tr>
84
+ <tr>
85
+ <td class="function_type">
86
+ <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="returnvalue">AtkRelation</span></a> *
87
+ </td>
88
+ <td class="function_name">
89
+ <a class="link" href="AtkRelationSet.html#atk-relation-set-get-relation" title="atk_relation_set_get_relation ()">atk_relation_set_get_relation</a> <span class="c_punctuation">()</span>
90
+ </td>
91
+ </tr>
92
+ <tr>
93
+ <td class="function_type">
94
+ <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="returnvalue">AtkRelation</span></a> *
95
+ </td>
96
+ <td class="function_name">
97
+ <a class="link" href="AtkRelationSet.html#atk-relation-set-get-relation-by-type" title="atk_relation_set_get_relation_by_type ()">atk_relation_set_get_relation_by_type</a> <span class="c_punctuation">()</span>
98
+ </td>
99
+ </tr>
100
+ <tr>
101
+ <td class="function_type">
102
+ <span class="returnvalue">void</span>
103
+ </td>
104
+ <td class="function_name">
105
+ <a class="link" href="AtkRelationSet.html#atk-relation-set-add-relation-by-type" title="atk_relation_set_add_relation_by_type ()">atk_relation_set_add_relation_by_type</a> <span class="c_punctuation">()</span>
106
+ </td>
107
+ </tr>
108
+ </tbody>
109
+ </table></div>
110
+ </div>
111
+ <div class="refsect1">
112
+ <a name="AtkRelationSet.other"></a><h2>Types and Values</h2>
113
+ <div class="informaltable"><table width="100%" border="0">
114
+ <colgroup>
115
+ <col width="150px" class="name">
116
+ <col class="description">
117
+ </colgroup>
118
+ <tbody><tr>
119
+ <td class="datatype_keyword"> </td>
120
+ <td class="function_name"><a class="link" href="AtkRelationSet.html#AtkRelationSet-struct" title="AtkRelationSet">AtkRelationSet</a></td>
121
+ </tr></tbody>
122
+ </table></div>
123
+ </div>
124
+ <div class="refsect1">
125
+ <a name="AtkRelationSet.object-hierarchy"></a><h2>Object Hierarchy</h2>
126
+ <pre class="screen"> GObject
127
+ <span class="lineart">╰──</span> AtkRelationSet
128
+ </pre>
129
+ </div>
130
+ <div class="refsect1">
131
+ <a name="AtkRelationSet.description"></a><h2>Description</h2>
132
+ <p>The AtkRelationSet held by an object establishes its relationships
133
+ with objects beyond the normal "parent/child" hierarchical
134
+ relationships that all user interface objects have.
135
+ AtkRelationSets establish whether objects are labelled or
136
+ controlled by other components, share group membership with other
137
+ components (for instance within a radio-button group), or share
138
+ content which "flows" between them, among other types of possible
139
+ relationships.</p>
140
+ </div>
141
+ <div class="refsect1">
142
+ <a name="AtkRelationSet.functions_details"></a><h2>Functions</h2>
143
+ <div class="refsect2">
144
+ <a name="atk-relation-set-new"></a><h3>atk_relation_set_new ()</h3>
145
+ <pre class="programlisting"><a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="returnvalue">AtkRelationSet</span></a> *
146
+ atk_relation_set_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
147
+ <p>Creates a new empty relation set.</p>
148
+ <div class="refsect3">
149
+ <a name="id-1.6.4.7.2.5"></a><h4>Returns</h4>
150
+ <p> a new <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a> </p>
151
+ <p></p>
152
+ </div>
153
+ </div>
154
+ <hr>
155
+ <div class="refsect2">
156
+ <a name="atk-relation-set-contains"></a><h3>atk_relation_set_contains ()</h3>
157
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
158
+ atk_relation_set_contains (<em class="parameter"><code><a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a> *set</code></em>,
159
+ <em class="parameter"><code><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> relationship</code></em>);</pre>
160
+ <p>Determines whether the relation set contains a relation that matches the
161
+ specified type.</p>
162
+ <div class="refsect3">
163
+ <a name="id-1.6.4.7.3.5"></a><h4>Parameters</h4>
164
+ <div class="informaltable"><table width="100%" border="0">
165
+ <colgroup>
166
+ <col width="150px" class="parameters_name">
167
+ <col class="parameters_description">
168
+ <col width="200px" class="parameters_annotations">
169
+ </colgroup>
170
+ <tbody>
171
+ <tr>
172
+ <td class="parameter_name"><p>set</p></td>
173
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a></p></td>
174
+ <td class="parameter_annotations"> </td>
175
+ </tr>
176
+ <tr>
177
+ <td class="parameter_name"><p>relationship</p></td>
178
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a></p></td>
179
+ <td class="parameter_annotations"> </td>
180
+ </tr>
181
+ </tbody>
182
+ </table></div>
183
+ </div>
184
+ <div class="refsect3">
185
+ <a name="id-1.6.4.7.3.6"></a><h4>Returns</h4>
186
+ <p> <code class="literal">TRUE</code> if <em class="parameter"><code>relationship</code></em>
187
+ is the relationship type of a relation
188
+ in <em class="parameter"><code>set</code></em>
189
+ , <code class="literal">FALSE</code> otherwise</p>
190
+ <p></p>
191
+ </div>
192
+ </div>
193
+ <hr>
194
+ <div class="refsect2">
195
+ <a name="atk-relation-set-remove"></a><h3>atk_relation_set_remove ()</h3>
196
+ <pre class="programlisting"><span class="returnvalue">void</span>
197
+ atk_relation_set_remove (<em class="parameter"><code><a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a> *set</code></em>,
198
+ <em class="parameter"><code><a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a> *relation</code></em>);</pre>
199
+ <p>Removes a relation from the relation set.
200
+ This function unref's the <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a> so it will be deleted unless there
201
+ is another reference to it.</p>
202
+ <div class="refsect3">
203
+ <a name="id-1.6.4.7.4.5"></a><h4>Parameters</h4>
204
+ <div class="informaltable"><table width="100%" border="0">
205
+ <colgroup>
206
+ <col width="150px" class="parameters_name">
207
+ <col class="parameters_description">
208
+ <col width="200px" class="parameters_annotations">
209
+ </colgroup>
210
+ <tbody>
211
+ <tr>
212
+ <td class="parameter_name"><p>set</p></td>
213
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a></p></td>
214
+ <td class="parameter_annotations"> </td>
215
+ </tr>
216
+ <tr>
217
+ <td class="parameter_name"><p>relation</p></td>
218
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a></p></td>
219
+ <td class="parameter_annotations"> </td>
220
+ </tr>
221
+ </tbody>
222
+ </table></div>
223
+ </div>
224
+ </div>
225
+ <hr>
226
+ <div class="refsect2">
227
+ <a name="atk-relation-set-add"></a><h3>atk_relation_set_add ()</h3>
228
+ <pre class="programlisting"><span class="returnvalue">void</span>
229
+ atk_relation_set_add (<em class="parameter"><code><a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a> *set</code></em>,
230
+ <em class="parameter"><code><a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a> *relation</code></em>);</pre>
231
+ <p>Add a new relation to the current relation set if it is not already
232
+ present.
233
+ This function ref's the AtkRelation so the caller of this function
234
+ should unref it to ensure that it will be destroyed when the AtkRelationSet
235
+ is destroyed.</p>
236
+ <div class="refsect3">
237
+ <a name="id-1.6.4.7.5.5"></a><h4>Parameters</h4>
238
+ <div class="informaltable"><table width="100%" border="0">
239
+ <colgroup>
240
+ <col width="150px" class="parameters_name">
241
+ <col class="parameters_description">
242
+ <col width="200px" class="parameters_annotations">
243
+ </colgroup>
244
+ <tbody>
245
+ <tr>
246
+ <td class="parameter_name"><p>set</p></td>
247
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a></p></td>
248
+ <td class="parameter_annotations"> </td>
249
+ </tr>
250
+ <tr>
251
+ <td class="parameter_name"><p>relation</p></td>
252
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a></p></td>
253
+ <td class="parameter_annotations"> </td>
254
+ </tr>
255
+ </tbody>
256
+ </table></div>
257
+ </div>
258
+ </div>
259
+ <hr>
260
+ <div class="refsect2">
261
+ <a name="atk-relation-set-get-n-relations"></a><h3>atk_relation_set_get_n_relations ()</h3>
262
+ <pre class="programlisting"><span class="returnvalue">gint</span>
263
+ atk_relation_set_get_n_relations (<em class="parameter"><code><a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a> *set</code></em>);</pre>
264
+ <p>Determines the number of relations in a relation set.</p>
265
+ <div class="refsect3">
266
+ <a name="id-1.6.4.7.6.5"></a><h4>Parameters</h4>
267
+ <div class="informaltable"><table width="100%" border="0">
268
+ <colgroup>
269
+ <col width="150px" class="parameters_name">
270
+ <col class="parameters_description">
271
+ <col width="200px" class="parameters_annotations">
272
+ </colgroup>
273
+ <tbody><tr>
274
+ <td class="parameter_name"><p>set</p></td>
275
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a></p></td>
276
+ <td class="parameter_annotations"> </td>
277
+ </tr></tbody>
278
+ </table></div>
279
+ </div>
280
+ <div class="refsect3">
281
+ <a name="id-1.6.4.7.6.6"></a><h4>Returns</h4>
282
+ <p> an integer representing the number of relations in the set.</p>
283
+ <p></p>
284
+ </div>
285
+ </div>
286
+ <hr>
287
+ <div class="refsect2">
288
+ <a name="atk-relation-set-get-relation"></a><h3>atk_relation_set_get_relation ()</h3>
289
+ <pre class="programlisting"><a class="link" href="AtkRelation.html" title="AtkRelation"><span class="returnvalue">AtkRelation</span></a> *
290
+ atk_relation_set_get_relation (<em class="parameter"><code><a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a> *set</code></em>,
291
+ <em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
292
+ <p>Determines the relation at the specified position in the relation set.</p>
293
+ <div class="refsect3">
294
+ <a name="id-1.6.4.7.7.5"></a><h4>Parameters</h4>
295
+ <div class="informaltable"><table width="100%" border="0">
296
+ <colgroup>
297
+ <col width="150px" class="parameters_name">
298
+ <col class="parameters_description">
299
+ <col width="200px" class="parameters_annotations">
300
+ </colgroup>
301
+ <tbody>
302
+ <tr>
303
+ <td class="parameter_name"><p>set</p></td>
304
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a></p></td>
305
+ <td class="parameter_annotations"> </td>
306
+ </tr>
307
+ <tr>
308
+ <td class="parameter_name"><p>i</p></td>
309
+ <td class="parameter_description"><p>a gint representing a position in the set, starting from 0.</p></td>
310
+ <td class="parameter_annotations"> </td>
311
+ </tr>
312
+ </tbody>
313
+ </table></div>
314
+ </div>
315
+ <div class="refsect3">
316
+ <a name="id-1.6.4.7.7.6"></a><h4>Returns</h4>
317
+ <p> a <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a>, which is the relation at
318
+ position i in the set. </p>
319
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
320
+ </div>
321
+ </div>
322
+ <hr>
323
+ <div class="refsect2">
324
+ <a name="atk-relation-set-get-relation-by-type"></a><h3>atk_relation_set_get_relation_by_type ()</h3>
325
+ <pre class="programlisting"><a class="link" href="AtkRelation.html" title="AtkRelation"><span class="returnvalue">AtkRelation</span></a> *
326
+ atk_relation_set_get_relation_by_type (<em class="parameter"><code><a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a> *set</code></em>,
327
+ <em class="parameter"><code><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> relationship</code></em>);</pre>
328
+ <p>Finds a relation that matches the specified type.</p>
329
+ <div class="refsect3">
330
+ <a name="id-1.6.4.7.8.5"></a><h4>Parameters</h4>
331
+ <div class="informaltable"><table width="100%" border="0">
332
+ <colgroup>
333
+ <col width="150px" class="parameters_name">
334
+ <col class="parameters_description">
335
+ <col width="200px" class="parameters_annotations">
336
+ </colgroup>
337
+ <tbody>
338
+ <tr>
339
+ <td class="parameter_name"><p>set</p></td>
340
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a></p></td>
341
+ <td class="parameter_annotations"> </td>
342
+ </tr>
343
+ <tr>
344
+ <td class="parameter_name"><p>relationship</p></td>
345
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a></p></td>
346
+ <td class="parameter_annotations"> </td>
347
+ </tr>
348
+ </tbody>
349
+ </table></div>
350
+ </div>
351
+ <div class="refsect3">
352
+ <a name="id-1.6.4.7.8.6"></a><h4>Returns</h4>
353
+ <p> an <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a>, which is a relation matching the
354
+ specified type. </p>
355
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
356
+ </div>
357
+ </div>
358
+ <hr>
359
+ <div class="refsect2">
360
+ <a name="atk-relation-set-add-relation-by-type"></a><h3>atk_relation_set_add_relation_by_type ()</h3>
361
+ <pre class="programlisting"><span class="returnvalue">void</span>
362
+ atk_relation_set_add_relation_by_type (<em class="parameter"><code><a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a> *set</code></em>,
363
+ <em class="parameter"><code><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> relationship</code></em>,
364
+ <em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> *target</code></em>);</pre>
365
+ <p>Add a new relation of the specified type with the specified target to
366
+ the current relation set if the relation set does not contain a relation
367
+ of that type. If it is does contain a relation of that typea the target
368
+ is added to the relation.</p>
369
+ <div class="refsect3">
370
+ <a name="id-1.6.4.7.9.5"></a><h4>Parameters</h4>
371
+ <div class="informaltable"><table width="100%" border="0">
372
+ <colgroup>
373
+ <col width="150px" class="parameters_name">
374
+ <col class="parameters_description">
375
+ <col width="200px" class="parameters_annotations">
376
+ </colgroup>
377
+ <tbody>
378
+ <tr>
379
+ <td class="parameter_name"><p>set</p></td>
380
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a></p></td>
381
+ <td class="parameter_annotations"> </td>
382
+ </tr>
383
+ <tr>
384
+ <td class="parameter_name"><p>relationship</p></td>
385
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a></p></td>
386
+ <td class="parameter_annotations"> </td>
387
+ </tr>
388
+ <tr>
389
+ <td class="parameter_name"><p>target</p></td>
390
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a></p></td>
391
+ <td class="parameter_annotations"> </td>
392
+ </tr>
393
+ </tbody>
394
+ </table></div>
395
+ </div>
396
+ <p class="since">Since 1.9</p>
397
+ </div>
398
+ </div>
399
+ <div class="refsect1">
400
+ <a name="AtkRelationSet.other_details"></a><h2>Types and Values</h2>
401
+ <div class="refsect2">
402
+ <a name="AtkRelationSet-struct"></a><h3>AtkRelationSet</h3>
403
+ <pre class="programlisting">typedef struct _AtkRelationSet AtkRelationSet;</pre>
404
+ <p>
405
+ </p>
406
+ </div>
407
+ </div>
408
+ </div>
409
+ <div class="footer">
410
+ <hr>
411
+ Generated by GTK-Doc V1.21.1</div>
412
+ </body>
413
+ </html>
@@ -0,0 +1,453 @@
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: AtkSelection</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="interfaces.html" title="ATK Interfaces">
9
+ <link rel="prev" href="AtkImage.html" title="AtkImage">
10
+ <link rel="next" href="AtkStreamableContent.html" title="AtkStreamableContent">
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="#AtkSelection.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkSelection.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_implementations">  <span class="dim">|</span> 
20
+ <a href="#AtkSelection.implementations" class="shortcut">Known Implementations</a></span><span id="nav_signals">  <span class="dim">|</span> 
21
+ <a href="#AtkSelection.signals" class="shortcut">Signals</a></span>
22
+ </td>
23
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
24
+ <td><a accesskey="u" href="interfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
25
+ <td><a accesskey="p" href="AtkImage.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
26
+ <td><a accesskey="n" href="AtkStreamableContent.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
27
+ </tr></table>
28
+ <div class="refentry">
29
+ <a name="AtkSelection"></a><div class="titlepage"></div>
30
+ <div class="refnamediv"><table width="100%"><tr>
31
+ <td valign="top">
32
+ <h2><span class="refentrytitle"><a name="AtkSelection.top_of_page"></a>AtkSelection</span></h2>
33
+ <p>AtkSelection — The ATK interface implemented by container
34
+ objects whose <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> children can be selected.</p>
35
+ </td>
36
+ <td class="gallery_image" valign="top" align="right"></td>
37
+ </tr></table></div>
38
+ <div class="refsect1">
39
+ <a name="AtkSelection.functions"></a><h2>Functions</h2>
40
+ <div class="informaltable"><table width="100%" border="0">
41
+ <colgroup>
42
+ <col width="150px" class="functions_return">
43
+ <col class="functions_name">
44
+ </colgroup>
45
+ <tbody>
46
+ <tr>
47
+ <td class="function_type">
48
+ <span class="returnvalue">gboolean</span>
49
+ </td>
50
+ <td class="function_name">
51
+ <a class="link" href="AtkSelection.html#atk-selection-add-selection" title="atk_selection_add_selection ()">atk_selection_add_selection</a> <span class="c_punctuation">()</span>
52
+ </td>
53
+ </tr>
54
+ <tr>
55
+ <td class="function_type">
56
+ <span class="returnvalue">gboolean</span>
57
+ </td>
58
+ <td class="function_name">
59
+ <a class="link" href="AtkSelection.html#atk-selection-clear-selection" title="atk_selection_clear_selection ()">atk_selection_clear_selection</a> <span class="c_punctuation">()</span>
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <td class="function_type">
64
+ <a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
65
+ </td>
66
+ <td class="function_name">
67
+ <a class="link" href="AtkSelection.html#atk-selection-ref-selection" title="atk_selection_ref_selection ()">atk_selection_ref_selection</a> <span class="c_punctuation">()</span>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td class="function_type">
72
+ <span class="returnvalue">gint</span>
73
+ </td>
74
+ <td class="function_name">
75
+ <a class="link" href="AtkSelection.html#atk-selection-get-selection-count" title="atk_selection_get_selection_count ()">atk_selection_get_selection_count</a> <span class="c_punctuation">()</span>
76
+ </td>
77
+ </tr>
78
+ <tr>
79
+ <td class="function_type">
80
+ <span class="returnvalue">gboolean</span>
81
+ </td>
82
+ <td class="function_name">
83
+ <a class="link" href="AtkSelection.html#atk-selection-is-child-selected" title="atk_selection_is_child_selected ()">atk_selection_is_child_selected</a> <span class="c_punctuation">()</span>
84
+ </td>
85
+ </tr>
86
+ <tr>
87
+ <td class="function_type">
88
+ <span class="returnvalue">gboolean</span>
89
+ </td>
90
+ <td class="function_name">
91
+ <a class="link" href="AtkSelection.html#atk-selection-remove-selection" title="atk_selection_remove_selection ()">atk_selection_remove_selection</a> <span class="c_punctuation">()</span>
92
+ </td>
93
+ </tr>
94
+ <tr>
95
+ <td class="function_type">
96
+ <span class="returnvalue">gboolean</span>
97
+ </td>
98
+ <td class="function_name">
99
+ <a class="link" href="AtkSelection.html#atk-selection-select-all-selection" title="atk_selection_select_all_selection ()">atk_selection_select_all_selection</a> <span class="c_punctuation">()</span>
100
+ </td>
101
+ </tr>
102
+ </tbody>
103
+ </table></div>
104
+ </div>
105
+ <div class="refsect1">
106
+ <a name="AtkSelection.signals"></a><h2>Signals</h2>
107
+ <div class="informaltable"><table border="0">
108
+ <colgroup>
109
+ <col width="150px" class="signals_return">
110
+ <col width="300px" class="signals_name">
111
+ <col width="200px" class="signals_flags">
112
+ </colgroup>
113
+ <tbody><tr>
114
+ <td class="signal_type"><span class="returnvalue">void</span></td>
115
+ <td class="signal_name"><a class="link" href="AtkSelection.html#AtkSelection-selection-changed" title="The “selection-changed” signal">selection-changed</a></td>
116
+ <td class="signal_flags">Run Last</td>
117
+ </tr></tbody>
118
+ </table></div>
119
+ </div>
120
+ <div class="refsect1">
121
+ <a name="AtkSelection.other"></a><h2>Types and Values</h2>
122
+ <div class="informaltable"><table width="100%" border="0">
123
+ <colgroup>
124
+ <col width="150px" class="name">
125
+ <col class="description">
126
+ </colgroup>
127
+ <tbody><tr>
128
+ <td class="datatype_keyword"> </td>
129
+ <td class="function_name"><a class="link" href="AtkSelection.html#AtkSelection-struct" title="AtkSelection">AtkSelection</a></td>
130
+ </tr></tbody>
131
+ </table></div>
132
+ </div>
133
+ <div class="refsect1">
134
+ <a name="AtkSelection.object-hierarchy"></a><h2>Object Hierarchy</h2>
135
+ <pre class="screen"> GInterface
136
+ <span class="lineart">╰──</span> AtkSelection
137
+ </pre>
138
+ </div>
139
+ <div class="refsect1">
140
+ <a name="AtkSelection.implementations"></a><h2>Known Implementations</h2>
141
+ <p>
142
+ AtkSelection is implemented by
143
+ <a class="link" href="AtkNoOpObject.html" title="AtkNoOpObject">AtkNoOpObject</a>.</p>
144
+ </div>
145
+ <div class="refsect1">
146
+ <a name="AtkSelection.description"></a><h2>Description</h2>
147
+ <p><a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> should be implemented by UI components with children
148
+ which are exposed by <span class="type">atk_object_ref_child</span> and
149
+ <span class="type">atk_object_get_n_children</span>, if the use of the parent UI component
150
+ ordinarily involves selection of one or more of the objects
151
+ corresponding to those <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> children - for example,
152
+ selectable lists.</p>
153
+ <p>Note that other types of "selection" (for instance text selection)
154
+ are accomplished a other ATK interfaces - <a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> is limited
155
+ to the selection/deselection of children.</p>
156
+ </div>
157
+ <div class="refsect1">
158
+ <a name="AtkSelection.functions_details"></a><h2>Functions</h2>
159
+ <div class="refsect2">
160
+ <a name="atk-selection-add-selection"></a><h3>atk_selection_add_selection ()</h3>
161
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
162
+ atk_selection_add_selection (<em class="parameter"><code><a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> *selection</code></em>,
163
+ <em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
164
+ <p>Adds the specified accessible child of the object to the
165
+ object's selection.</p>
166
+ <div class="refsect3">
167
+ <a name="id-1.5.9.9.2.5"></a><h4>Parameters</h4>
168
+ <div class="informaltable"><table width="100%" border="0">
169
+ <colgroup>
170
+ <col width="150px" class="parameters_name">
171
+ <col class="parameters_description">
172
+ <col width="200px" class="parameters_annotations">
173
+ </colgroup>
174
+ <tbody>
175
+ <tr>
176
+ <td class="parameter_name"><p>selection</p></td>
177
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkSelectionIface</p></td>
178
+ <td class="parameter_annotations"> </td>
179
+ </tr>
180
+ <tr>
181
+ <td class="parameter_name"><p>i</p></td>
182
+ <td class="parameter_description"><p>a <span class="type">gint</span> specifying the child index.</p></td>
183
+ <td class="parameter_annotations"> </td>
184
+ </tr>
185
+ </tbody>
186
+ </table></div>
187
+ </div>
188
+ <div class="refsect3">
189
+ <a name="id-1.5.9.9.2.6"></a><h4>Returns</h4>
190
+ <p> TRUE if success, FALSE otherwise.</p>
191
+ <p></p>
192
+ </div>
193
+ </div>
194
+ <hr>
195
+ <div class="refsect2">
196
+ <a name="atk-selection-clear-selection"></a><h3>atk_selection_clear_selection ()</h3>
197
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
198
+ atk_selection_clear_selection (<em class="parameter"><code><a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> *selection</code></em>);</pre>
199
+ <p>Clears the selection in the object so that no children in the object
200
+ are selected.</p>
201
+ <div class="refsect3">
202
+ <a name="id-1.5.9.9.3.5"></a><h4>Parameters</h4>
203
+ <div class="informaltable"><table width="100%" border="0">
204
+ <colgroup>
205
+ <col width="150px" class="parameters_name">
206
+ <col class="parameters_description">
207
+ <col width="200px" class="parameters_annotations">
208
+ </colgroup>
209
+ <tbody><tr>
210
+ <td class="parameter_name"><p>selection</p></td>
211
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkSelectionIface</p></td>
212
+ <td class="parameter_annotations"> </td>
213
+ </tr></tbody>
214
+ </table></div>
215
+ </div>
216
+ <div class="refsect3">
217
+ <a name="id-1.5.9.9.3.6"></a><h4>Returns</h4>
218
+ <p> TRUE if success, FALSE otherwise.</p>
219
+ <p></p>
220
+ </div>
221
+ </div>
222
+ <hr>
223
+ <div class="refsect2">
224
+ <a name="atk-selection-ref-selection"></a><h3>atk_selection_ref_selection ()</h3>
225
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
226
+ atk_selection_ref_selection (<em class="parameter"><code><a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> *selection</code></em>,
227
+ <em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
228
+ <p>Gets a reference to the accessible object representing the specified
229
+ selected child of the object.
230
+ Note: callers should not rely on <code class="literal">NULL</code> or on a zero value for
231
+ indication of whether AtkSelectionIface is implemented, they should
232
+ use type checking/interface checking macros or the
233
+ <code class="function">atk_get_accessible_value()</code> convenience method.</p>
234
+ <div class="refsect3">
235
+ <a name="id-1.5.9.9.4.5"></a><h4>Parameters</h4>
236
+ <div class="informaltable"><table width="100%" border="0">
237
+ <colgroup>
238
+ <col width="150px" class="parameters_name">
239
+ <col class="parameters_description">
240
+ <col width="200px" class="parameters_annotations">
241
+ </colgroup>
242
+ <tbody>
243
+ <tr>
244
+ <td class="parameter_name"><p>selection</p></td>
245
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkSelectionIface</p></td>
246
+ <td class="parameter_annotations"> </td>
247
+ </tr>
248
+ <tr>
249
+ <td class="parameter_name"><p>i</p></td>
250
+ <td class="parameter_description"><p>a <span class="type">gint</span> specifying the index in the selection set. (e.g. the
251
+ ith selection as opposed to the ith child).</p></td>
252
+ <td class="parameter_annotations"> </td>
253
+ </tr>
254
+ </tbody>
255
+ </table></div>
256
+ </div>
257
+ <div class="refsect3">
258
+ <a name="id-1.5.9.9.4.6"></a><h4>Returns</h4>
259
+ <p> an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> representing the
260
+ selected accessible, or <code class="literal">NULL</code> if <em class="parameter"><code>selection</code></em>
261
+ does not implement this
262
+ interface. </p>
263
+ <p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>][<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
264
+ </div>
265
+ </div>
266
+ <hr>
267
+ <div class="refsect2">
268
+ <a name="atk-selection-get-selection-count"></a><h3>atk_selection_get_selection_count ()</h3>
269
+ <pre class="programlisting"><span class="returnvalue">gint</span>
270
+ atk_selection_get_selection_count (<em class="parameter"><code><a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> *selection</code></em>);</pre>
271
+ <p>Gets the number of accessible children currently selected.
272
+ Note: callers should not rely on <code class="literal">NULL</code> or on a zero value for
273
+ indication of whether AtkSelectionIface is implemented, they should
274
+ use type checking/interface checking macros or the
275
+ <code class="function">atk_get_accessible_value()</code> convenience method.</p>
276
+ <div class="refsect3">
277
+ <a name="id-1.5.9.9.5.5"></a><h4>Parameters</h4>
278
+ <div class="informaltable"><table width="100%" border="0">
279
+ <colgroup>
280
+ <col width="150px" class="parameters_name">
281
+ <col class="parameters_description">
282
+ <col width="200px" class="parameters_annotations">
283
+ </colgroup>
284
+ <tbody><tr>
285
+ <td class="parameter_name"><p>selection</p></td>
286
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkSelectionIface</p></td>
287
+ <td class="parameter_annotations"> </td>
288
+ </tr></tbody>
289
+ </table></div>
290
+ </div>
291
+ <div class="refsect3">
292
+ <a name="id-1.5.9.9.5.6"></a><h4>Returns</h4>
293
+ <p> a gint representing the number of items selected, or 0
294
+ if <em class="parameter"><code>selection</code></em>
295
+ does not implement this interface.</p>
296
+ <p></p>
297
+ </div>
298
+ </div>
299
+ <hr>
300
+ <div class="refsect2">
301
+ <a name="atk-selection-is-child-selected"></a><h3>atk_selection_is_child_selected ()</h3>
302
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
303
+ atk_selection_is_child_selected (<em class="parameter"><code><a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> *selection</code></em>,
304
+ <em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
305
+ <p>Determines if the current child of this object is selected
306
+ Note: callers should not rely on <code class="literal">NULL</code> or on a zero value for
307
+ indication of whether AtkSelectionIface is implemented, they should
308
+ use type checking/interface checking macros or the
309
+ <code class="function">atk_get_accessible_value()</code> convenience method.</p>
310
+ <div class="refsect3">
311
+ <a name="id-1.5.9.9.6.5"></a><h4>Parameters</h4>
312
+ <div class="informaltable"><table width="100%" border="0">
313
+ <colgroup>
314
+ <col width="150px" class="parameters_name">
315
+ <col class="parameters_description">
316
+ <col width="200px" class="parameters_annotations">
317
+ </colgroup>
318
+ <tbody>
319
+ <tr>
320
+ <td class="parameter_name"><p>selection</p></td>
321
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkSelectionIface</p></td>
322
+ <td class="parameter_annotations"> </td>
323
+ </tr>
324
+ <tr>
325
+ <td class="parameter_name"><p>i</p></td>
326
+ <td class="parameter_description"><p>a <span class="type">gint</span> specifying the child index.</p></td>
327
+ <td class="parameter_annotations"> </td>
328
+ </tr>
329
+ </tbody>
330
+ </table></div>
331
+ </div>
332
+ <div class="refsect3">
333
+ <a name="id-1.5.9.9.6.6"></a><h4>Returns</h4>
334
+ <p> a gboolean representing the specified child is selected, or 0
335
+ if <em class="parameter"><code>selection</code></em>
336
+ does not implement this interface.</p>
337
+ <p></p>
338
+ </div>
339
+ </div>
340
+ <hr>
341
+ <div class="refsect2">
342
+ <a name="atk-selection-remove-selection"></a><h3>atk_selection_remove_selection ()</h3>
343
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
344
+ atk_selection_remove_selection (<em class="parameter"><code><a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> *selection</code></em>,
345
+ <em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
346
+ <p>Removes the specified child of the object from the object's selection.</p>
347
+ <div class="refsect3">
348
+ <a name="id-1.5.9.9.7.5"></a><h4>Parameters</h4>
349
+ <div class="informaltable"><table width="100%" border="0">
350
+ <colgroup>
351
+ <col width="150px" class="parameters_name">
352
+ <col class="parameters_description">
353
+ <col width="200px" class="parameters_annotations">
354
+ </colgroup>
355
+ <tbody>
356
+ <tr>
357
+ <td class="parameter_name"><p>selection</p></td>
358
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkSelectionIface</p></td>
359
+ <td class="parameter_annotations"> </td>
360
+ </tr>
361
+ <tr>
362
+ <td class="parameter_name"><p>i</p></td>
363
+ <td class="parameter_description"><p>a <span class="type">gint</span> specifying the index in the selection set. (e.g. the
364
+ ith selection as opposed to the ith child).</p></td>
365
+ <td class="parameter_annotations"> </td>
366
+ </tr>
367
+ </tbody>
368
+ </table></div>
369
+ </div>
370
+ <div class="refsect3">
371
+ <a name="id-1.5.9.9.7.6"></a><h4>Returns</h4>
372
+ <p> TRUE if success, FALSE otherwise.</p>
373
+ <p></p>
374
+ </div>
375
+ </div>
376
+ <hr>
377
+ <div class="refsect2">
378
+ <a name="atk-selection-select-all-selection"></a><h3>atk_selection_select_all_selection ()</h3>
379
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
380
+ atk_selection_select_all_selection (<em class="parameter"><code><a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> *selection</code></em>);</pre>
381
+ <p>Causes every child of the object to be selected if the object
382
+ supports multiple selections.</p>
383
+ <div class="refsect3">
384
+ <a name="id-1.5.9.9.8.5"></a><h4>Parameters</h4>
385
+ <div class="informaltable"><table width="100%" border="0">
386
+ <colgroup>
387
+ <col width="150px" class="parameters_name">
388
+ <col class="parameters_description">
389
+ <col width="200px" class="parameters_annotations">
390
+ </colgroup>
391
+ <tbody><tr>
392
+ <td class="parameter_name"><p>selection</p></td>
393
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkSelectionIface</p></td>
394
+ <td class="parameter_annotations"> </td>
395
+ </tr></tbody>
396
+ </table></div>
397
+ </div>
398
+ <div class="refsect3">
399
+ <a name="id-1.5.9.9.8.6"></a><h4>Returns</h4>
400
+ <p> TRUE if success, FALSE otherwise.</p>
401
+ <p></p>
402
+ </div>
403
+ </div>
404
+ </div>
405
+ <div class="refsect1">
406
+ <a name="AtkSelection.other_details"></a><h2>Types and Values</h2>
407
+ <div class="refsect2">
408
+ <a name="AtkSelection-struct"></a><h3>AtkSelection</h3>
409
+ <pre class="programlisting">typedef struct _AtkSelection AtkSelection;</pre>
410
+ <p>
411
+ </p>
412
+ </div>
413
+ </div>
414
+ <div class="refsect1">
415
+ <a name="AtkSelection.signal-details"></a><h2>Signal Details</h2>
416
+ <div class="refsect2">
417
+ <a name="AtkSelection-selection-changed"></a><h3>The <code class="literal">“selection-changed”</code> signal</h3>
418
+ <pre class="programlisting"><span class="returnvalue">void</span>
419
+ user_function (<a class="link" href="AtkSelection.html" title="AtkSelection"><span class="type">AtkSelection</span></a> *atkselection,
420
+ <span class="type">gpointer</span> user_data)</pre>
421
+ <p>The "selection-changed" signal is emitted by an object which
422
+ implements AtkSelection interface when the selection changes.</p>
423
+ <div class="refsect3">
424
+ <a name="id-1.5.9.11.2.5"></a><h4>Parameters</h4>
425
+ <div class="informaltable"><table width="100%" border="0">
426
+ <colgroup>
427
+ <col width="150px" class="parameters_name">
428
+ <col class="parameters_description">
429
+ <col width="200px" class="parameters_annotations">
430
+ </colgroup>
431
+ <tbody>
432
+ <tr>
433
+ <td class="parameter_name"><p>atkselection</p></td>
434
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
435
+ <td class="parameter_annotations"> </td>
436
+ </tr>
437
+ <tr>
438
+ <td class="parameter_name"><p>user_data</p></td>
439
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
440
+ <td class="parameter_annotations"> </td>
441
+ </tr>
442
+ </tbody>
443
+ </table></div>
444
+ </div>
445
+ <p>Flags: Run Last</p>
446
+ </div>
447
+ </div>
448
+ </div>
449
+ <div class="footer">
450
+ <hr>
451
+ Generated by GTK-Doc V1.21.1</div>
452
+ </body>
453
+ </html>