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,539 @@
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: AtkStateSet</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="atk-AtkState.html" title="AtkState">
10
+ <link rel="next" href="accessibles.html" title="Custom accessible objects">
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="#AtkStateSet.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkStateSet.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="atk-AtkState.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="accessibles.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="AtkStateSet"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="AtkStateSet.top_of_page"></a>AtkStateSet</span></h2>
31
+ <p>AtkStateSet — An AtkStateSet determines a component's state set.</p>
32
+ </td>
33
+ <td class="gallery_image" valign="top" align="right"></td>
34
+ </tr></table></div>
35
+ <div class="refsect1">
36
+ <a name="AtkStateSet.functions"></a><h2>Functions</h2>
37
+ <div class="informaltable"><table width="100%" border="0">
38
+ <colgroup>
39
+ <col width="150px" class="functions_return">
40
+ <col class="functions_name">
41
+ </colgroup>
42
+ <tbody>
43
+ <tr>
44
+ <td class="function_type">
45
+ <a class="link" href="AtkObject.html#AtkStateSet"><span class="returnvalue">AtkStateSet</span></a> *
46
+ </td>
47
+ <td class="function_name">
48
+ <a class="link" href="AtkStateSet.html#atk-state-set-new" title="atk_state_set_new ()">atk_state_set_new</a> <span class="c_punctuation">()</span>
49
+ </td>
50
+ </tr>
51
+ <tr>
52
+ <td class="function_type">
53
+ <span class="returnvalue">gboolean</span>
54
+ </td>
55
+ <td class="function_name">
56
+ <a class="link" href="AtkStateSet.html#atk-state-set-is-empty" title="atk_state_set_is_empty ()">atk_state_set_is_empty</a> <span class="c_punctuation">()</span>
57
+ </td>
58
+ </tr>
59
+ <tr>
60
+ <td class="function_type">
61
+ <span class="returnvalue">gboolean</span>
62
+ </td>
63
+ <td class="function_name">
64
+ <a class="link" href="AtkStateSet.html#atk-state-set-add-state" title="atk_state_set_add_state ()">atk_state_set_add_state</a> <span class="c_punctuation">()</span>
65
+ </td>
66
+ </tr>
67
+ <tr>
68
+ <td class="function_type">
69
+ <span class="returnvalue">void</span>
70
+ </td>
71
+ <td class="function_name">
72
+ <a class="link" href="AtkStateSet.html#atk-state-set-add-states" title="atk_state_set_add_states ()">atk_state_set_add_states</a> <span class="c_punctuation">()</span>
73
+ </td>
74
+ </tr>
75
+ <tr>
76
+ <td class="function_type">
77
+ <span class="returnvalue">void</span>
78
+ </td>
79
+ <td class="function_name">
80
+ <a class="link" href="AtkStateSet.html#atk-state-set-clear-states" title="atk_state_set_clear_states ()">atk_state_set_clear_states</a> <span class="c_punctuation">()</span>
81
+ </td>
82
+ </tr>
83
+ <tr>
84
+ <td class="function_type">
85
+ <span class="returnvalue">gboolean</span>
86
+ </td>
87
+ <td class="function_name">
88
+ <a class="link" href="AtkStateSet.html#atk-state-set-contains-state" title="atk_state_set_contains_state ()">atk_state_set_contains_state</a> <span class="c_punctuation">()</span>
89
+ </td>
90
+ </tr>
91
+ <tr>
92
+ <td class="function_type">
93
+ <span class="returnvalue">gboolean</span>
94
+ </td>
95
+ <td class="function_name">
96
+ <a class="link" href="AtkStateSet.html#atk-state-set-contains-states" title="atk_state_set_contains_states ()">atk_state_set_contains_states</a> <span class="c_punctuation">()</span>
97
+ </td>
98
+ </tr>
99
+ <tr>
100
+ <td class="function_type">
101
+ <span class="returnvalue">gboolean</span>
102
+ </td>
103
+ <td class="function_name">
104
+ <a class="link" href="AtkStateSet.html#atk-state-set-remove-state" title="atk_state_set_remove_state ()">atk_state_set_remove_state</a> <span class="c_punctuation">()</span>
105
+ </td>
106
+ </tr>
107
+ <tr>
108
+ <td class="function_type">
109
+ <a class="link" href="AtkObject.html#AtkStateSet"><span class="returnvalue">AtkStateSet</span></a> *
110
+ </td>
111
+ <td class="function_name">
112
+ <a class="link" href="AtkStateSet.html#atk-state-set-and-sets" title="atk_state_set_and_sets ()">atk_state_set_and_sets</a> <span class="c_punctuation">()</span>
113
+ </td>
114
+ </tr>
115
+ <tr>
116
+ <td class="function_type">
117
+ <a class="link" href="AtkObject.html#AtkStateSet"><span class="returnvalue">AtkStateSet</span></a> *
118
+ </td>
119
+ <td class="function_name">
120
+ <a class="link" href="AtkStateSet.html#atk-state-set-or-sets" title="atk_state_set_or_sets ()">atk_state_set_or_sets</a> <span class="c_punctuation">()</span>
121
+ </td>
122
+ </tr>
123
+ <tr>
124
+ <td class="function_type">
125
+ <a class="link" href="AtkObject.html#AtkStateSet"><span class="returnvalue">AtkStateSet</span></a> *
126
+ </td>
127
+ <td class="function_name">
128
+ <a class="link" href="AtkStateSet.html#atk-state-set-xor-sets" title="atk_state_set_xor_sets ()">atk_state_set_xor_sets</a> <span class="c_punctuation">()</span>
129
+ </td>
130
+ </tr>
131
+ </tbody>
132
+ </table></div>
133
+ </div>
134
+ <div class="refsect1">
135
+ <a name="AtkStateSet.other"></a><h2>Types and Values</h2>
136
+ <div class="informaltable"><table width="100%" border="0">
137
+ <colgroup>
138
+ <col width="150px" class="name">
139
+ <col class="description">
140
+ </colgroup>
141
+ <tbody><tr>
142
+ <td class="datatype_keyword"> </td>
143
+ <td class="function_name"><a class="link" href="AtkStateSet.html#AtkStateSet-struct" title="AtkStateSet">AtkStateSet</a></td>
144
+ </tr></tbody>
145
+ </table></div>
146
+ </div>
147
+ <div class="refsect1">
148
+ <a name="AtkStateSet.object-hierarchy"></a><h2>Object Hierarchy</h2>
149
+ <pre class="screen"> GObject
150
+ <span class="lineart">╰──</span> AtkStateSet
151
+ </pre>
152
+ </div>
153
+ <div class="refsect1">
154
+ <a name="AtkStateSet.description"></a><h2>Description</h2>
155
+ <p>An AtkStateSet determines a component's state set. It is composed
156
+ of a set of AtkStates.</p>
157
+ </div>
158
+ <div class="refsect1">
159
+ <a name="AtkStateSet.functions_details"></a><h2>Functions</h2>
160
+ <div class="refsect2">
161
+ <a name="atk-state-set-new"></a><h3>atk_state_set_new ()</h3>
162
+ <pre class="programlisting"><a class="link" href="AtkObject.html#AtkStateSet"><span class="returnvalue">AtkStateSet</span></a> *
163
+ atk_state_set_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
164
+ <p>Creates a new empty state set.</p>
165
+ <div class="refsect3">
166
+ <a name="id-1.6.6.7.2.5"></a><h4>Returns</h4>
167
+ <p> a new <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> </p>
168
+ <p></p>
169
+ </div>
170
+ </div>
171
+ <hr>
172
+ <div class="refsect2">
173
+ <a name="atk-state-set-is-empty"></a><h3>atk_state_set_is_empty ()</h3>
174
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
175
+ atk_state_set_is_empty (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>);</pre>
176
+ <p>Checks whether the state set is empty, i.e. has no states set.</p>
177
+ <div class="refsect3">
178
+ <a name="id-1.6.6.7.3.5"></a><h4>Parameters</h4>
179
+ <div class="informaltable"><table width="100%" border="0">
180
+ <colgroup>
181
+ <col width="150px" class="parameters_name">
182
+ <col class="parameters_description">
183
+ <col width="200px" class="parameters_annotations">
184
+ </colgroup>
185
+ <tbody><tr>
186
+ <td class="parameter_name"><p>set</p></td>
187
+ <td class="parameter_description"><p>an <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a></p></td>
188
+ <td class="parameter_annotations"> </td>
189
+ </tr></tbody>
190
+ </table></div>
191
+ </div>
192
+ <div class="refsect3">
193
+ <a name="id-1.6.6.7.3.6"></a><h4>Returns</h4>
194
+ <p> <code class="literal">TRUE</code> if <em class="parameter"><code>set</code></em>
195
+ has no states set, otherwise <code class="literal">FALSE</code></p>
196
+ <p></p>
197
+ </div>
198
+ </div>
199
+ <hr>
200
+ <div class="refsect2">
201
+ <a name="atk-state-set-add-state"></a><h3>atk_state_set_add_state ()</h3>
202
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
203
+ atk_state_set_add_state (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>,
204
+ <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>
205
+ <p>Add a new state for the specified type to the current state set if
206
+ it is not already present.</p>
207
+ <div class="refsect3">
208
+ <a name="id-1.6.6.7.4.5"></a><h4>Parameters</h4>
209
+ <div class="informaltable"><table width="100%" border="0">
210
+ <colgroup>
211
+ <col width="150px" class="parameters_name">
212
+ <col class="parameters_description">
213
+ <col width="200px" class="parameters_annotations">
214
+ </colgroup>
215
+ <tbody>
216
+ <tr>
217
+ <td class="parameter_name"><p>set</p></td>
218
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
219
+ <td class="parameter_annotations"> </td>
220
+ </tr>
221
+ <tr>
222
+ <td class="parameter_name"><p>type</p></td>
223
+ <td class="parameter_description"><p>an <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a></p></td>
224
+ <td class="parameter_annotations"> </td>
225
+ </tr>
226
+ </tbody>
227
+ </table></div>
228
+ </div>
229
+ <div class="refsect3">
230
+ <a name="id-1.6.6.7.4.6"></a><h4>Returns</h4>
231
+ <p> <code class="literal">TRUE</code> if the state for <em class="parameter"><code>type</code></em>
232
+ is not already in <em class="parameter"><code>set</code></em>
233
+ .</p>
234
+ <p></p>
235
+ </div>
236
+ </div>
237
+ <hr>
238
+ <div class="refsect2">
239
+ <a name="atk-state-set-add-states"></a><h3>atk_state_set_add_states ()</h3>
240
+ <pre class="programlisting"><span class="returnvalue">void</span>
241
+ atk_state_set_add_states (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>,
242
+ <em class="parameter"><code><a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a> *types</code></em>,
243
+ <em class="parameter"><code><span class="type">gint</span> n_types</code></em>);</pre>
244
+ <p>Add the states for the specified types to the current state set.</p>
245
+ <div class="refsect3">
246
+ <a name="id-1.6.6.7.5.5"></a><h4>Parameters</h4>
247
+ <div class="informaltable"><table width="100%" border="0">
248
+ <colgroup>
249
+ <col width="150px" class="parameters_name">
250
+ <col class="parameters_description">
251
+ <col width="200px" class="parameters_annotations">
252
+ </colgroup>
253
+ <tbody>
254
+ <tr>
255
+ <td class="parameter_name"><p>set</p></td>
256
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
257
+ <td class="parameter_annotations"> </td>
258
+ </tr>
259
+ <tr>
260
+ <td class="parameter_name"><p>types</p></td>
261
+ <td class="parameter_description"><p> an array of <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a>. </p></td>
262
+ <td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/array"><span class="acronym">array</span></a> length=n_types]</span></td>
263
+ </tr>
264
+ <tr>
265
+ <td class="parameter_name"><p>n_types</p></td>
266
+ <td class="parameter_description"><p>The number of elements in the array</p></td>
267
+ <td class="parameter_annotations"> </td>
268
+ </tr>
269
+ </tbody>
270
+ </table></div>
271
+ </div>
272
+ </div>
273
+ <hr>
274
+ <div class="refsect2">
275
+ <a name="atk-state-set-clear-states"></a><h3>atk_state_set_clear_states ()</h3>
276
+ <pre class="programlisting"><span class="returnvalue">void</span>
277
+ atk_state_set_clear_states (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>);</pre>
278
+ <p>Removes all states from the state set.</p>
279
+ <div class="refsect3">
280
+ <a name="id-1.6.6.7.6.5"></a><h4>Parameters</h4>
281
+ <div class="informaltable"><table width="100%" border="0">
282
+ <colgroup>
283
+ <col width="150px" class="parameters_name">
284
+ <col class="parameters_description">
285
+ <col width="200px" class="parameters_annotations">
286
+ </colgroup>
287
+ <tbody><tr>
288
+ <td class="parameter_name"><p>set</p></td>
289
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
290
+ <td class="parameter_annotations"> </td>
291
+ </tr></tbody>
292
+ </table></div>
293
+ </div>
294
+ </div>
295
+ <hr>
296
+ <div class="refsect2">
297
+ <a name="atk-state-set-contains-state"></a><h3>atk_state_set_contains_state ()</h3>
298
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
299
+ atk_state_set_contains_state (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>,
300
+ <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>
301
+ <p>Checks whether the state for the specified type is in the specified set.</p>
302
+ <div class="refsect3">
303
+ <a name="id-1.6.6.7.7.5"></a><h4>Parameters</h4>
304
+ <div class="informaltable"><table width="100%" border="0">
305
+ <colgroup>
306
+ <col width="150px" class="parameters_name">
307
+ <col class="parameters_description">
308
+ <col width="200px" class="parameters_annotations">
309
+ </colgroup>
310
+ <tbody>
311
+ <tr>
312
+ <td class="parameter_name"><p>set</p></td>
313
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
314
+ <td class="parameter_annotations"> </td>
315
+ </tr>
316
+ <tr>
317
+ <td class="parameter_name"><p>type</p></td>
318
+ <td class="parameter_description"><p>an <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a></p></td>
319
+ <td class="parameter_annotations"> </td>
320
+ </tr>
321
+ </tbody>
322
+ </table></div>
323
+ </div>
324
+ <div class="refsect3">
325
+ <a name="id-1.6.6.7.7.6"></a><h4>Returns</h4>
326
+ <p> <code class="literal">TRUE</code> if <em class="parameter"><code>type</code></em>
327
+ is the state type is in <em class="parameter"><code>set</code></em>
328
+ .</p>
329
+ <p></p>
330
+ </div>
331
+ </div>
332
+ <hr>
333
+ <div class="refsect2">
334
+ <a name="atk-state-set-contains-states"></a><h3>atk_state_set_contains_states ()</h3>
335
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
336
+ atk_state_set_contains_states (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>,
337
+ <em class="parameter"><code><a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a> *types</code></em>,
338
+ <em class="parameter"><code><span class="type">gint</span> n_types</code></em>);</pre>
339
+ <p>Checks whether the states for all the specified types are in the
340
+ specified set.</p>
341
+ <div class="refsect3">
342
+ <a name="id-1.6.6.7.8.5"></a><h4>Parameters</h4>
343
+ <div class="informaltable"><table width="100%" border="0">
344
+ <colgroup>
345
+ <col width="150px" class="parameters_name">
346
+ <col class="parameters_description">
347
+ <col width="200px" class="parameters_annotations">
348
+ </colgroup>
349
+ <tbody>
350
+ <tr>
351
+ <td class="parameter_name"><p>set</p></td>
352
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
353
+ <td class="parameter_annotations"> </td>
354
+ </tr>
355
+ <tr>
356
+ <td class="parameter_name"><p>types</p></td>
357
+ <td class="parameter_description"><p> an array of <a class="link" href="atk-AtkState.html#AtkStateType" title="enum AtkStateType"><span class="type">AtkStateType</span></a>. </p></td>
358
+ <td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/array"><span class="acronym">array</span></a> length=n_types]</span></td>
359
+ </tr>
360
+ <tr>
361
+ <td class="parameter_name"><p>n_types</p></td>
362
+ <td class="parameter_description"><p>The number of elements in the array</p></td>
363
+ <td class="parameter_annotations"> </td>
364
+ </tr>
365
+ </tbody>
366
+ </table></div>
367
+ </div>
368
+ <div class="refsect3">
369
+ <a name="id-1.6.6.7.8.6"></a><h4>Returns</h4>
370
+ <p> <code class="literal">TRUE</code> if all the states for <em class="parameter"><code>type</code></em>
371
+ are in <em class="parameter"><code>set</code></em>
372
+ .</p>
373
+ <p></p>
374
+ </div>
375
+ </div>
376
+ <hr>
377
+ <div class="refsect2">
378
+ <a name="atk-state-set-remove-state"></a><h3>atk_state_set_remove_state ()</h3>
379
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
380
+ atk_state_set_remove_state (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>,
381
+ <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>
382
+ <p>Removes the state for the specified type from the state set.</p>
383
+ <div class="refsect3">
384
+ <a name="id-1.6.6.7.9.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>
392
+ <tr>
393
+ <td class="parameter_name"><p>set</p></td>
394
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
395
+ <td class="parameter_annotations"> </td>
396
+ </tr>
397
+ <tr>
398
+ <td class="parameter_name"><p>type</p></td>
399
+ <td class="parameter_description"><p>an <span class="type">AtkType</span></p></td>
400
+ <td class="parameter_annotations"> </td>
401
+ </tr>
402
+ </tbody>
403
+ </table></div>
404
+ </div>
405
+ <div class="refsect3">
406
+ <a name="id-1.6.6.7.9.6"></a><h4>Returns</h4>
407
+ <p> <code class="literal">TRUE</code> if <em class="parameter"><code>type</code></em>
408
+ was the state type is in <em class="parameter"><code>set</code></em>
409
+ .</p>
410
+ <p></p>
411
+ </div>
412
+ </div>
413
+ <hr>
414
+ <div class="refsect2">
415
+ <a name="atk-state-set-and-sets"></a><h3>atk_state_set_and_sets ()</h3>
416
+ <pre class="programlisting"><a class="link" href="AtkObject.html#AtkStateSet"><span class="returnvalue">AtkStateSet</span></a> *
417
+ atk_state_set_and_sets (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>,
418
+ <em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *compare_set</code></em>);</pre>
419
+ <p>Constructs the intersection of the two sets, returning <code class="literal">NULL</code> if the
420
+ intersection is empty.</p>
421
+ <div class="refsect3">
422
+ <a name="id-1.6.6.7.10.5"></a><h4>Parameters</h4>
423
+ <div class="informaltable"><table width="100%" border="0">
424
+ <colgroup>
425
+ <col width="150px" class="parameters_name">
426
+ <col class="parameters_description">
427
+ <col width="200px" class="parameters_annotations">
428
+ </colgroup>
429
+ <tbody>
430
+ <tr>
431
+ <td class="parameter_name"><p>set</p></td>
432
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
433
+ <td class="parameter_annotations"> </td>
434
+ </tr>
435
+ <tr>
436
+ <td class="parameter_name"><p>compare_set</p></td>
437
+ <td class="parameter_description"><p>another <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
438
+ <td class="parameter_annotations"> </td>
439
+ </tr>
440
+ </tbody>
441
+ </table></div>
442
+ </div>
443
+ <div class="refsect3">
444
+ <a name="id-1.6.6.7.10.6"></a><h4>Returns</h4>
445
+ <p> a new <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> which is the intersection of
446
+ the two sets. </p>
447
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
448
+ </div>
449
+ </div>
450
+ <hr>
451
+ <div class="refsect2">
452
+ <a name="atk-state-set-or-sets"></a><h3>atk_state_set_or_sets ()</h3>
453
+ <pre class="programlisting"><a class="link" href="AtkObject.html#AtkStateSet"><span class="returnvalue">AtkStateSet</span></a> *
454
+ atk_state_set_or_sets (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>,
455
+ <em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *compare_set</code></em>);</pre>
456
+ <p>Constructs the union of the two sets.</p>
457
+ <div class="refsect3">
458
+ <a name="id-1.6.6.7.11.5"></a><h4>Parameters</h4>
459
+ <div class="informaltable"><table width="100%" border="0">
460
+ <colgroup>
461
+ <col width="150px" class="parameters_name">
462
+ <col class="parameters_description">
463
+ <col width="200px" class="parameters_annotations">
464
+ </colgroup>
465
+ <tbody>
466
+ <tr>
467
+ <td class="parameter_name"><p>set</p></td>
468
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
469
+ <td class="parameter_annotations"> </td>
470
+ </tr>
471
+ <tr>
472
+ <td class="parameter_name"><p>compare_set</p></td>
473
+ <td class="parameter_description"><p>another <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
474
+ <td class="parameter_annotations"> </td>
475
+ </tr>
476
+ </tbody>
477
+ </table></div>
478
+ </div>
479
+ <div class="refsect3">
480
+ <a name="id-1.6.6.7.11.6"></a><h4>Returns</h4>
481
+ <p> a new <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> which is
482
+ the union of the two sets, returning <code class="literal">NULL</code> is empty. </p>
483
+ <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>
484
+ </div>
485
+ </div>
486
+ <hr>
487
+ <div class="refsect2">
488
+ <a name="atk-state-set-xor-sets"></a><h3>atk_state_set_xor_sets ()</h3>
489
+ <pre class="programlisting"><a class="link" href="AtkObject.html#AtkStateSet"><span class="returnvalue">AtkStateSet</span></a> *
490
+ atk_state_set_xor_sets (<em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *set</code></em>,
491
+ <em class="parameter"><code><a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> *compare_set</code></em>);</pre>
492
+ <p>Constructs the exclusive-or of the two sets, returning <code class="literal">NULL</code> is empty.
493
+ The set returned by this operation contains the states in exactly
494
+ one of the two sets.</p>
495
+ <div class="refsect3">
496
+ <a name="id-1.6.6.7.12.5"></a><h4>Parameters</h4>
497
+ <div class="informaltable"><table width="100%" border="0">
498
+ <colgroup>
499
+ <col width="150px" class="parameters_name">
500
+ <col class="parameters_description">
501
+ <col width="200px" class="parameters_annotations">
502
+ </colgroup>
503
+ <tbody>
504
+ <tr>
505
+ <td class="parameter_name"><p>set</p></td>
506
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
507
+ <td class="parameter_annotations"> </td>
508
+ </tr>
509
+ <tr>
510
+ <td class="parameter_name"><p>compare_set</p></td>
511
+ <td class="parameter_description"><p>another <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a></p></td>
512
+ <td class="parameter_annotations"> </td>
513
+ </tr>
514
+ </tbody>
515
+ </table></div>
516
+ </div>
517
+ <div class="refsect3">
518
+ <a name="id-1.6.6.7.12.6"></a><h4>Returns</h4>
519
+ <p> a new <a class="link" href="AtkObject.html#AtkStateSet"><span class="type">AtkStateSet</span></a> which contains the states
520
+ which are in exactly one of the two sets. </p>
521
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
522
+ </div>
523
+ </div>
524
+ </div>
525
+ <div class="refsect1">
526
+ <a name="AtkStateSet.other_details"></a><h2>Types and Values</h2>
527
+ <div class="refsect2">
528
+ <a name="AtkStateSet-struct"></a><h3>AtkStateSet</h3>
529
+ <pre class="programlisting">typedef struct _AtkStateSet AtkStateSet;</pre>
530
+ <p>
531
+ </p>
532
+ </div>
533
+ </div>
534
+ </div>
535
+ <div class="footer">
536
+ <hr>
537
+ Generated by GTK-Doc V1.21.1</div>
538
+ </body>
539
+ </html>