atk 2.2.4-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (252) hide show
  1. checksums.yaml +7 -0
  2. data/README +30 -0
  3. data/Rakefile +31 -0
  4. data/ext/atk/atk.def +2 -0
  5. data/ext/atk/depend +11 -0
  6. data/ext/atk/extconf.rb +81 -0
  7. data/ext/atk/rbatk.c +66 -0
  8. data/ext/atk/rbatk.h +47 -0
  9. data/ext/atk/rbatkaction.c +85 -0
  10. data/ext/atk/rbatkcomponent.c +175 -0
  11. data/ext/atk/rbatkconversions.h +70 -0
  12. data/ext/atk/rbatkdocument.c +96 -0
  13. data/ext/atk/rbatkeditabletext.c +177 -0
  14. data/ext/atk/rbatkgobjectaccessible.c +46 -0
  15. data/ext/atk/rbatkhyperlink.c +71 -0
  16. data/ext/atk/rbatkhypertext.c +53 -0
  17. data/ext/atk/rbatkimage.c +68 -0
  18. data/ext/atk/rbatkimplementor.c +38 -0
  19. data/ext/atk/rbatknoopobject.c +40 -0
  20. data/ext/atk/rbatknoopobjectfactory.c +40 -0
  21. data/ext/atk/rbatkobject.c +153 -0
  22. data/ext/atk/rbatkobjectfactory.c +53 -0
  23. data/ext/atk/rbatkobjectrole.c +50 -0
  24. data/ext/atk/rbatkprivate.h +48 -0
  25. data/ext/atk/rbatkregistry.c +63 -0
  26. data/ext/atk/rbatkrelation.c +98 -0
  27. data/ext/atk/rbatkrelationset.c +95 -0
  28. data/ext/atk/rbatkrelationtype.c +38 -0
  29. data/ext/atk/rbatkselection.c +87 -0
  30. data/ext/atk/rbatkstate.c +51 -0
  31. data/ext/atk/rbatkstateset.c +180 -0
  32. data/ext/atk/rbatkstreamablecontent.c +57 -0
  33. data/ext/atk/rbatktable.c +271 -0
  34. data/ext/atk/rbatktext.c +318 -0
  35. data/ext/atk/rbatktextattribute.c +54 -0
  36. data/ext/atk/rbatktextrange.c +92 -0
  37. data/ext/atk/rbatktextrectangle.c +149 -0
  38. data/ext/atk/rbatkutil.c +122 -0
  39. data/ext/atk/rbatkvalue.c +78 -0
  40. data/extconf.rb +49 -0
  41. data/lib/2.0/atk.so +0 -0
  42. data/lib/2.1/atk.so +0 -0
  43. data/lib/2.2/atk.so +0 -0
  44. data/lib/atk.rb +21 -0
  45. data/test/atk-test-utils.rb +21 -0
  46. data/test/run-test.rb +45 -0
  47. data/test/test-text-rectangle.rb +26 -0
  48. data/vendor/local/bin/libatk-1.0-0.dll +0 -0
  49. data/vendor/local/include/atk-1.0/atk/atk-enum-types.h +63 -0
  50. data/vendor/local/include/atk-1.0/atk/atk.h +61 -0
  51. data/vendor/local/include/atk-1.0/atk/atkaction.h +117 -0
  52. data/vendor/local/include/atk-1.0/atk/atkcomponent.h +225 -0
  53. data/vendor/local/include/atk-1.0/atk/atkdocument.h +113 -0
  54. data/vendor/local/include/atk-1.0/atk/atkeditabletext.h +109 -0
  55. data/vendor/local/include/atk-1.0/atk/atkgobjectaccessible.h +68 -0
  56. data/vendor/local/include/atk-1.0/atk/atkhyperlink.h +114 -0
  57. data/vendor/local/include/atk-1.0/atk/atkhyperlinkimpl.h +68 -0
  58. data/vendor/local/include/atk-1.0/atk/atkhypertext.h +78 -0
  59. data/vendor/local/include/atk-1.0/atk/atkimage.h +90 -0
  60. data/vendor/local/include/atk-1.0/atk/atkmisc.h +112 -0
  61. data/vendor/local/include/atk-1.0/atk/atknoopobject.h +59 -0
  62. data/vendor/local/include/atk-1.0/atk/atknoopobjectfactory.h +59 -0
  63. data/vendor/local/include/atk-1.0/atk/atkobject.h +751 -0
  64. data/vendor/local/include/atk-1.0/atk/atkobjectfactory.h +72 -0
  65. data/vendor/local/include/atk-1.0/atk/atkplug.h +66 -0
  66. data/vendor/local/include/atk-1.0/atk/atkrange.h +59 -0
  67. data/vendor/local/include/atk-1.0/atk/atkregistry.h +74 -0
  68. data/vendor/local/include/atk-1.0/atk/atkrelation.h +99 -0
  69. data/vendor/local/include/atk-1.0/atk/atkrelationset.h +91 -0
  70. data/vendor/local/include/atk-1.0/atk/atkrelationtype.h +83 -0
  71. data/vendor/local/include/atk-1.0/atk/atkselection.h +100 -0
  72. data/vendor/local/include/atk-1.0/atk/atksocket.h +71 -0
  73. data/vendor/local/include/atk-1.0/atk/atkstate.h +190 -0
  74. data/vendor/local/include/atk-1.0/atk/atkstateset.h +92 -0
  75. data/vendor/local/include/atk-1.0/atk/atkstreamablecontent.h +110 -0
  76. data/vendor/local/include/atk-1.0/atk/atktable.h +233 -0
  77. data/vendor/local/include/atk-1.0/atk/atktablecell.h +104 -0
  78. data/vendor/local/include/atk-1.0/atk/atktext.h +453 -0
  79. data/vendor/local/include/atk-1.0/atk/atkutil.h +357 -0
  80. data/vendor/local/include/atk-1.0/atk/atkvalue.h +163 -0
  81. data/vendor/local/include/atk-1.0/atk/atkversion.h +394 -0
  82. data/vendor/local/include/atk-1.0/atk/atkwindow.h +53 -0
  83. data/vendor/local/lib/girepository-1.0/Atk-1.0.typelib +0 -0
  84. data/vendor/local/lib/libatk-1.0.dll.a +0 -0
  85. data/vendor/local/lib/libatk-1.0.la +41 -0
  86. data/vendor/local/lib/pkgconfig/atk.pc +11 -0
  87. data/vendor/local/share/gir-1.0/Atk-1.0.gir +15525 -0
  88. data/vendor/local/share/gtk-doc/html/atk/AtkAction.html +477 -0
  89. data/vendor/local/share/gtk-doc/html/atk/AtkComponent.html +1146 -0
  90. data/vendor/local/share/gtk-doc/html/atk/AtkDocument.html +714 -0
  91. data/vendor/local/share/gtk-doc/html/atk/AtkEditableText.html +429 -0
  92. data/vendor/local/share/gtk-doc/html/atk/AtkGObjectAccessible.html +166 -0
  93. data/vendor/local/share/gtk-doc/html/atk/AtkHyperlink.html +570 -0
  94. data/vendor/local/share/gtk-doc/html/atk/AtkHypertext.html +286 -0
  95. data/vendor/local/share/gtk-doc/html/atk/AtkImage.html +319 -0
  96. data/vendor/local/share/gtk-doc/html/atk/AtkMisc.html +191 -0
  97. data/vendor/local/share/gtk-doc/html/atk/AtkNoOpObject.html +130 -0
  98. data/vendor/local/share/gtk-doc/html/atk/AtkNoOpObjectFactory.html +107 -0
  99. data/vendor/local/share/gtk-doc/html/atk/AtkObject.html +3056 -0
  100. data/vendor/local/share/gtk-doc/html/atk/AtkObjectFactory.html +214 -0
  101. data/vendor/local/share/gtk-doc/html/atk/AtkRegistry.html +265 -0
  102. data/vendor/local/share/gtk-doc/html/atk/AtkRelation.html +659 -0
  103. data/vendor/local/share/gtk-doc/html/atk/AtkRelationSet.html +413 -0
  104. data/vendor/local/share/gtk-doc/html/atk/AtkSelection.html +453 -0
  105. data/vendor/local/share/gtk-doc/html/atk/AtkStateSet.html +539 -0
  106. data/vendor/local/share/gtk-doc/html/atk/AtkStreamableContent.html +274 -0
  107. data/vendor/local/share/gtk-doc/html/atk/AtkTable.html +1790 -0
  108. data/vendor/local/share/gtk-doc/html/atk/AtkTableCell.html +497 -0
  109. data/vendor/local/share/gtk-doc/html/atk/AtkText.html +2547 -0
  110. data/vendor/local/share/gtk-doc/html/atk/AtkUtil.html +1111 -0
  111. data/vendor/local/share/gtk-doc/html/atk/AtkValue.html +743 -0
  112. data/vendor/local/share/gtk-doc/html/atk/AtkWindow.html +452 -0
  113. data/vendor/local/share/gtk-doc/html/atk/accessibles.html +49 -0
  114. data/vendor/local/share/gtk-doc/html/atk/api-index-1-12.html +51 -0
  115. data/vendor/local/share/gtk-doc/html/atk/api-index-1-13.html +41 -0
  116. data/vendor/local/share/gtk-doc/html/atk/api-index-1-20.html +35 -0
  117. data/vendor/local/share/gtk-doc/html/atk/api-index-1-22.html +45 -0
  118. data/vendor/local/share/gtk-doc/html/atk/api-index-1-3.html +41 -0
  119. data/vendor/local/share/gtk-doc/html/atk/api-index-1-30.html +41 -0
  120. data/vendor/local/share/gtk-doc/html/atk/api-index-1-4.html +35 -0
  121. data/vendor/local/share/gtk-doc/html/atk/api-index-1-6.html +35 -0
  122. data/vendor/local/share/gtk-doc/html/atk/api-index-1-9.html +39 -0
  123. data/vendor/local/share/gtk-doc/html/atk/api-index-2-10.html +35 -0
  124. data/vendor/local/share/gtk-doc/html/atk/api-index-2-12.html +78 -0
  125. data/vendor/local/share/gtk-doc/html/atk/api-index-2-2.html +53 -0
  126. data/vendor/local/share/gtk-doc/html/atk/api-index-2-8.html +47 -0
  127. data/vendor/local/share/gtk-doc/html/atk/api-index-deprecated.html +119 -0
  128. data/vendor/local/share/gtk-doc/html/atk/api-index-full.html +775 -0
  129. data/vendor/local/share/gtk-doc/html/atk/atk-AtkHyperlinkImpl.html +142 -0
  130. data/vendor/local/share/gtk-doc/html/atk/atk-AtkPlug.html +147 -0
  131. data/vendor/local/share/gtk-doc/html/atk/atk-AtkRange.html +328 -0
  132. data/vendor/local/share/gtk-doc/html/atk/atk-AtkSocket.html +207 -0
  133. data/vendor/local/share/gtk-doc/html/atk/atk-AtkState.html +556 -0
  134. data/vendor/local/share/gtk-doc/html/atk/atk-Versioning-Utilities.html +293 -0
  135. data/vendor/local/share/gtk-doc/html/atk/atk.devhelp2 +441 -0
  136. data/vendor/local/share/gtk-doc/html/atk/atkobject.html +33 -0
  137. data/vendor/local/share/gtk-doc/html/atk/data.html +49 -0
  138. data/vendor/local/share/gtk-doc/html/atk/deprecated.html +33 -0
  139. data/vendor/local/share/gtk-doc/html/atk/home.png +0 -0
  140. data/vendor/local/share/gtk-doc/html/atk/index.html +175 -0
  141. data/vendor/local/share/gtk-doc/html/atk/index.sgml +632 -0
  142. data/vendor/local/share/gtk-doc/html/atk/interfaces.html +89 -0
  143. data/vendor/local/share/gtk-doc/html/atk/left-insensitive.png +0 -0
  144. data/vendor/local/share/gtk-doc/html/atk/left.png +0 -0
  145. data/vendor/local/share/gtk-doc/html/atk/overview.html +47 -0
  146. data/vendor/local/share/gtk-doc/html/atk/right-insensitive.png +0 -0
  147. data/vendor/local/share/gtk-doc/html/atk/right.png +0 -0
  148. data/vendor/local/share/gtk-doc/html/atk/style.css +476 -0
  149. data/vendor/local/share/gtk-doc/html/atk/toolkit.html +33 -0
  150. data/vendor/local/share/gtk-doc/html/atk/up-insensitive.png +0 -0
  151. data/vendor/local/share/gtk-doc/html/atk/up.png +0 -0
  152. data/vendor/local/share/gtk-doc/html/atk/utilities.html +47 -0
  153. data/vendor/local/share/license/atk/AUTHORS +18 -0
  154. data/vendor/local/share/license/atk/COPYING +482 -0
  155. data/vendor/local/share/locale/af/LC_MESSAGES/atk10.mo +0 -0
  156. data/vendor/local/share/locale/am/LC_MESSAGES/atk10.mo +0 -0
  157. data/vendor/local/share/locale/an/LC_MESSAGES/atk10.mo +0 -0
  158. data/vendor/local/share/locale/ar/LC_MESSAGES/atk10.mo +0 -0
  159. data/vendor/local/share/locale/as/LC_MESSAGES/atk10.mo +0 -0
  160. data/vendor/local/share/locale/ast/LC_MESSAGES/atk10.mo +0 -0
  161. data/vendor/local/share/locale/az/LC_MESSAGES/atk10.mo +0 -0
  162. data/vendor/local/share/locale/be/LC_MESSAGES/atk10.mo +0 -0
  163. data/vendor/local/share/locale/be@latin/LC_MESSAGES/atk10.mo +0 -0
  164. data/vendor/local/share/locale/bg/LC_MESSAGES/atk10.mo +0 -0
  165. data/vendor/local/share/locale/bn/LC_MESSAGES/atk10.mo +0 -0
  166. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/atk10.mo +0 -0
  167. data/vendor/local/share/locale/bs/LC_MESSAGES/atk10.mo +0 -0
  168. data/vendor/local/share/locale/ca/LC_MESSAGES/atk10.mo +0 -0
  169. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/atk10.mo +0 -0
  170. data/vendor/local/share/locale/cs/LC_MESSAGES/atk10.mo +0 -0
  171. data/vendor/local/share/locale/cy/LC_MESSAGES/atk10.mo +0 -0
  172. data/vendor/local/share/locale/da/LC_MESSAGES/atk10.mo +0 -0
  173. data/vendor/local/share/locale/de/LC_MESSAGES/atk10.mo +0 -0
  174. data/vendor/local/share/locale/dz/LC_MESSAGES/atk10.mo +0 -0
  175. data/vendor/local/share/locale/el/LC_MESSAGES/atk10.mo +0 -0
  176. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/atk10.mo +0 -0
  177. data/vendor/local/share/locale/en_CA/LC_MESSAGES/atk10.mo +0 -0
  178. data/vendor/local/share/locale/en_GB/LC_MESSAGES/atk10.mo +0 -0
  179. data/vendor/local/share/locale/eo/LC_MESSAGES/atk10.mo +0 -0
  180. data/vendor/local/share/locale/es/LC_MESSAGES/atk10.mo +0 -0
  181. data/vendor/local/share/locale/et/LC_MESSAGES/atk10.mo +0 -0
  182. data/vendor/local/share/locale/eu/LC_MESSAGES/atk10.mo +0 -0
  183. data/vendor/local/share/locale/fa/LC_MESSAGES/atk10.mo +0 -0
  184. data/vendor/local/share/locale/fi/LC_MESSAGES/atk10.mo +0 -0
  185. data/vendor/local/share/locale/fr/LC_MESSAGES/atk10.mo +0 -0
  186. data/vendor/local/share/locale/ga/LC_MESSAGES/atk10.mo +0 -0
  187. data/vendor/local/share/locale/gl/LC_MESSAGES/atk10.mo +0 -0
  188. data/vendor/local/share/locale/gu/LC_MESSAGES/atk10.mo +0 -0
  189. data/vendor/local/share/locale/he/LC_MESSAGES/atk10.mo +0 -0
  190. data/vendor/local/share/locale/hi/LC_MESSAGES/atk10.mo +0 -0
  191. data/vendor/local/share/locale/hr/LC_MESSAGES/atk10.mo +0 -0
  192. data/vendor/local/share/locale/hu/LC_MESSAGES/atk10.mo +0 -0
  193. data/vendor/local/share/locale/hy/LC_MESSAGES/atk10.mo +0 -0
  194. data/vendor/local/share/locale/id/LC_MESSAGES/atk10.mo +0 -0
  195. data/vendor/local/share/locale/is/LC_MESSAGES/atk10.mo +0 -0
  196. data/vendor/local/share/locale/it/LC_MESSAGES/atk10.mo +0 -0
  197. data/vendor/local/share/locale/ja/LC_MESSAGES/atk10.mo +0 -0
  198. data/vendor/local/share/locale/ka/LC_MESSAGES/atk10.mo +0 -0
  199. data/vendor/local/share/locale/kk/LC_MESSAGES/atk10.mo +0 -0
  200. data/vendor/local/share/locale/km/LC_MESSAGES/atk10.mo +0 -0
  201. data/vendor/local/share/locale/kn/LC_MESSAGES/atk10.mo +0 -0
  202. data/vendor/local/share/locale/ko/LC_MESSAGES/atk10.mo +0 -0
  203. data/vendor/local/share/locale/ku/LC_MESSAGES/atk10.mo +0 -0
  204. data/vendor/local/share/locale/li/LC_MESSAGES/atk10.mo +0 -0
  205. data/vendor/local/share/locale/lt/LC_MESSAGES/atk10.mo +0 -0
  206. data/vendor/local/share/locale/lv/LC_MESSAGES/atk10.mo +0 -0
  207. data/vendor/local/share/locale/mai/LC_MESSAGES/atk10.mo +0 -0
  208. data/vendor/local/share/locale/mk/LC_MESSAGES/atk10.mo +0 -0
  209. data/vendor/local/share/locale/ml/LC_MESSAGES/atk10.mo +0 -0
  210. data/vendor/local/share/locale/mn/LC_MESSAGES/atk10.mo +0 -0
  211. data/vendor/local/share/locale/mr/LC_MESSAGES/atk10.mo +0 -0
  212. data/vendor/local/share/locale/ms/LC_MESSAGES/atk10.mo +0 -0
  213. data/vendor/local/share/locale/nb/LC_MESSAGES/atk10.mo +0 -0
  214. data/vendor/local/share/locale/ne/LC_MESSAGES/atk10.mo +0 -0
  215. data/vendor/local/share/locale/nl/LC_MESSAGES/atk10.mo +0 -0
  216. data/vendor/local/share/locale/nn/LC_MESSAGES/atk10.mo +0 -0
  217. data/vendor/local/share/locale/oc/LC_MESSAGES/atk10.mo +0 -0
  218. data/vendor/local/share/locale/or/LC_MESSAGES/atk10.mo +0 -0
  219. data/vendor/local/share/locale/pa/LC_MESSAGES/atk10.mo +0 -0
  220. data/vendor/local/share/locale/pl/LC_MESSAGES/atk10.mo +0 -0
  221. data/vendor/local/share/locale/ps/LC_MESSAGES/atk10.mo +0 -0
  222. data/vendor/local/share/locale/pt/LC_MESSAGES/atk10.mo +0 -0
  223. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/atk10.mo +0 -0
  224. data/vendor/local/share/locale/ro/LC_MESSAGES/atk10.mo +0 -0
  225. data/vendor/local/share/locale/ru/LC_MESSAGES/atk10.mo +0 -0
  226. data/vendor/local/share/locale/rw/LC_MESSAGES/atk10.mo +0 -0
  227. data/vendor/local/share/locale/si/LC_MESSAGES/atk10.mo +0 -0
  228. data/vendor/local/share/locale/sk/LC_MESSAGES/atk10.mo +0 -0
  229. data/vendor/local/share/locale/sl/LC_MESSAGES/atk10.mo +0 -0
  230. data/vendor/local/share/locale/sq/LC_MESSAGES/atk10.mo +0 -0
  231. data/vendor/local/share/locale/sr/LC_MESSAGES/atk10.mo +0 -0
  232. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/atk10.mo +0 -0
  233. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/atk10.mo +0 -0
  234. data/vendor/local/share/locale/sv/LC_MESSAGES/atk10.mo +0 -0
  235. data/vendor/local/share/locale/ta/LC_MESSAGES/atk10.mo +0 -0
  236. data/vendor/local/share/locale/te/LC_MESSAGES/atk10.mo +0 -0
  237. data/vendor/local/share/locale/tg/LC_MESSAGES/atk10.mo +0 -0
  238. data/vendor/local/share/locale/th/LC_MESSAGES/atk10.mo +0 -0
  239. data/vendor/local/share/locale/tk/LC_MESSAGES/atk10.mo +0 -0
  240. data/vendor/local/share/locale/tr/LC_MESSAGES/atk10.mo +0 -0
  241. data/vendor/local/share/locale/tt/LC_MESSAGES/atk10.mo +0 -0
  242. data/vendor/local/share/locale/ug/LC_MESSAGES/atk10.mo +0 -0
  243. data/vendor/local/share/locale/uk/LC_MESSAGES/atk10.mo +0 -0
  244. data/vendor/local/share/locale/vi/LC_MESSAGES/atk10.mo +0 -0
  245. data/vendor/local/share/locale/wa/LC_MESSAGES/atk10.mo +0 -0
  246. data/vendor/local/share/locale/xh/LC_MESSAGES/atk10.mo +0 -0
  247. data/vendor/local/share/locale/yi/LC_MESSAGES/atk10.mo +0 -0
  248. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/atk10.mo +0 -0
  249. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/atk10.mo +0 -0
  250. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/atk10.mo +0 -0
  251. data/vendor/local/share/locale/zu/LC_MESSAGES/atk10.mo +0 -0
  252. metadata +307 -0
@@ -0,0 +1,659 @@
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: AtkRelation</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-AtkRange.html" title="AtkRange">
10
+ <link rel="next" href="AtkRelationSet.html" title="AtkRelationSet">
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="#AtkRelation.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkRelation.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
20
+ <a href="#AtkRelation.properties" class="shortcut">Properties</a></span>
21
+ </td>
22
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
23
+ <td><a accesskey="u" href="data.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
24
+ <td><a accesskey="p" href="atk-AtkRange.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25
+ <td><a accesskey="n" href="AtkRelationSet.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
26
+ </tr></table>
27
+ <div class="refentry">
28
+ <a name="AtkRelation"></a><div class="titlepage"></div>
29
+ <div class="refnamediv"><table width="100%"><tr>
30
+ <td valign="top">
31
+ <h2><span class="refentrytitle"><a name="AtkRelation.top_of_page"></a>AtkRelation</span></h2>
32
+ <p>AtkRelation — An object used to describe a relation between a
33
+ object and one or more other objects.</p>
34
+ </td>
35
+ <td class="gallery_image" valign="top" align="right"></td>
36
+ </tr></table></div>
37
+ <div class="refsect1">
38
+ <a name="AtkRelation.functions"></a><h2>Functions</h2>
39
+ <div class="informaltable"><table width="100%" border="0">
40
+ <colgroup>
41
+ <col width="150px" class="functions_return">
42
+ <col class="functions_name">
43
+ </colgroup>
44
+ <tbody>
45
+ <tr>
46
+ <td class="function_type">
47
+ <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="returnvalue">AtkRelationType</span></a>
48
+ </td>
49
+ <td class="function_name">
50
+ <a class="link" href="AtkRelation.html#atk-relation-type-register" title="atk_relation_type_register ()">atk_relation_type_register</a> <span class="c_punctuation">()</span>
51
+ </td>
52
+ </tr>
53
+ <tr>
54
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
55
+ </td>
56
+ <td class="function_name">
57
+ <a class="link" href="AtkRelation.html#atk-relation-type-get-name" title="atk_relation_type_get_name ()">atk_relation_type_get_name</a> <span class="c_punctuation">()</span>
58
+ </td>
59
+ </tr>
60
+ <tr>
61
+ <td class="function_type">
62
+ <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="returnvalue">AtkRelationType</span></a>
63
+ </td>
64
+ <td class="function_name">
65
+ <a class="link" href="AtkRelation.html#atk-relation-type-for-name" title="atk_relation_type_for_name ()">atk_relation_type_for_name</a> <span class="c_punctuation">()</span>
66
+ </td>
67
+ </tr>
68
+ <tr>
69
+ <td class="function_type">
70
+ <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="returnvalue">AtkRelation</span></a> *
71
+ </td>
72
+ <td class="function_name">
73
+ <a class="link" href="AtkRelation.html#atk-relation-new" title="atk_relation_new ()">atk_relation_new</a> <span class="c_punctuation">()</span>
74
+ </td>
75
+ </tr>
76
+ <tr>
77
+ <td class="function_type">
78
+ <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="returnvalue">AtkRelationType</span></a>
79
+ </td>
80
+ <td class="function_name">
81
+ <a class="link" href="AtkRelation.html#atk-relation-get-relation-type" title="atk_relation_get_relation_type ()">atk_relation_get_relation_type</a> <span class="c_punctuation">()</span>
82
+ </td>
83
+ </tr>
84
+ <tr>
85
+ <td class="function_type">
86
+ <span class="returnvalue">GPtrArray</span> *
87
+ </td>
88
+ <td class="function_name">
89
+ <a class="link" href="AtkRelation.html#atk-relation-get-target" title="atk_relation_get_target ()">atk_relation_get_target</a> <span class="c_punctuation">()</span>
90
+ </td>
91
+ </tr>
92
+ <tr>
93
+ <td class="function_type">
94
+ <span class="returnvalue">void</span>
95
+ </td>
96
+ <td class="function_name">
97
+ <a class="link" href="AtkRelation.html#atk-relation-add-target" title="atk_relation_add_target ()">atk_relation_add_target</a> <span class="c_punctuation">()</span>
98
+ </td>
99
+ </tr>
100
+ <tr>
101
+ <td class="function_type">
102
+ <span class="returnvalue">gboolean</span>
103
+ </td>
104
+ <td class="function_name">
105
+ <a class="link" href="AtkRelation.html#atk-relation-remove-target" title="atk_relation_remove_target ()">atk_relation_remove_target</a> <span class="c_punctuation">()</span>
106
+ </td>
107
+ </tr>
108
+ <tr>
109
+ <td class="function_type">
110
+ <span class="returnvalue">gboolean</span>
111
+ </td>
112
+ <td class="function_name">
113
+ <a class="link" href="AtkRelation.html#atk-relation-set-contains-target" title="atk_relation_set_contains_target ()">atk_relation_set_contains_target</a> <span class="c_punctuation">()</span>
114
+ </td>
115
+ </tr>
116
+ </tbody>
117
+ </table></div>
118
+ </div>
119
+ <div class="refsect1">
120
+ <a name="AtkRelation.properties"></a><h2>Properties</h2>
121
+ <div class="informaltable"><table border="0">
122
+ <colgroup>
123
+ <col width="150px" class="properties_type">
124
+ <col width="300px" class="properties_name">
125
+ <col width="200px" class="properties_flags">
126
+ </colgroup>
127
+ <tbody>
128
+ <tr>
129
+ <td class="property_type"><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a></td>
130
+ <td class="property_name"><a class="link" href="AtkRelation.html#AtkRelation--relation-type" title="The “relation-type” property">relation-type</a></td>
131
+ <td class="property_flags">Read / Write</td>
132
+ </tr>
133
+ <tr>
134
+ <td class="property_type">
135
+ <span class="type">GValueArray</span> *</td>
136
+ <td class="property_name"><a class="link" href="AtkRelation.html#AtkRelation--target" title="The “target” property">target</a></td>
137
+ <td class="property_flags">Read / Write</td>
138
+ </tr>
139
+ </tbody>
140
+ </table></div>
141
+ </div>
142
+ <div class="refsect1">
143
+ <a name="AtkRelation.other"></a><h2>Types and Values</h2>
144
+ <div class="informaltable"><table width="100%" border="0">
145
+ <colgroup>
146
+ <col width="150px" class="name">
147
+ <col class="description">
148
+ </colgroup>
149
+ <tbody>
150
+ <tr>
151
+ <td class="datatype_keyword">struct</td>
152
+ <td class="function_name"><a class="link" href="AtkRelation.html#AtkRelation-struct" title="struct AtkRelation">AtkRelation</a></td>
153
+ </tr>
154
+ <tr>
155
+ <td class="datatype_keyword">enum</td>
156
+ <td class="function_name"><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType">AtkRelationType</a></td>
157
+ </tr>
158
+ </tbody>
159
+ </table></div>
160
+ </div>
161
+ <div class="refsect1">
162
+ <a name="AtkRelation.object-hierarchy"></a><h2>Object Hierarchy</h2>
163
+ <pre class="screen"> GObject
164
+ <span class="lineart">╰──</span> AtkRelation
165
+ </pre>
166
+ </div>
167
+ <div class="refsect1">
168
+ <a name="AtkRelation.description"></a><h2>Description</h2>
169
+ <p>An AtkRelation describes a relation between an object and one or
170
+ more other objects. The actual relations that an object has with
171
+ other objects are defined as an AtkRelationSet, which is a set of
172
+ AtkRelations.</p>
173
+ </div>
174
+ <div class="refsect1">
175
+ <a name="AtkRelation.functions_details"></a><h2>Functions</h2>
176
+ <div class="refsect2">
177
+ <a name="atk-relation-type-register"></a><h3>atk_relation_type_register ()</h3>
178
+ <pre class="programlisting"><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="returnvalue">AtkRelationType</span></a>
179
+ atk_relation_type_register (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
180
+ <p>Associate <em class="parameter"><code>name</code></em>
181
+ with a new <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a></p>
182
+ <div class="refsect3">
183
+ <a name="id-1.6.3.8.2.5"></a><h4>Parameters</h4>
184
+ <div class="informaltable"><table width="100%" border="0">
185
+ <colgroup>
186
+ <col width="150px" class="parameters_name">
187
+ <col class="parameters_description">
188
+ <col width="200px" class="parameters_annotations">
189
+ </colgroup>
190
+ <tbody><tr>
191
+ <td class="parameter_name"><p>name</p></td>
192
+ <td class="parameter_description"><p>a name string</p></td>
193
+ <td class="parameter_annotations"> </td>
194
+ </tr></tbody>
195
+ </table></div>
196
+ </div>
197
+ <div class="refsect3">
198
+ <a name="id-1.6.3.8.2.6"></a><h4>Returns</h4>
199
+ <p> an <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> associated with <em class="parameter"><code>name</code></em>
200
+ </p>
201
+ <p></p>
202
+ </div>
203
+ </div>
204
+ <hr>
205
+ <div class="refsect2">
206
+ <a name="atk-relation-type-get-name"></a><h3>atk_relation_type_get_name ()</h3>
207
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
208
+ atk_relation_type_get_name (<em class="parameter"><code><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> type</code></em>);</pre>
209
+ <p>Gets the description string describing the <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> <em class="parameter"><code>type</code></em>
210
+ .</p>
211
+ <div class="refsect3">
212
+ <a name="id-1.6.3.8.3.5"></a><h4>Parameters</h4>
213
+ <div class="informaltable"><table width="100%" border="0">
214
+ <colgroup>
215
+ <col width="150px" class="parameters_name">
216
+ <col class="parameters_description">
217
+ <col width="200px" class="parameters_annotations">
218
+ </colgroup>
219
+ <tbody><tr>
220
+ <td class="parameter_name"><p>type</p></td>
221
+ <td class="parameter_description"><p>The <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> whose name is required</p></td>
222
+ <td class="parameter_annotations"> </td>
223
+ </tr></tbody>
224
+ </table></div>
225
+ </div>
226
+ <div class="refsect3">
227
+ <a name="id-1.6.3.8.3.6"></a><h4>Returns</h4>
228
+ <p> the string describing the AtkRelationType</p>
229
+ <p></p>
230
+ </div>
231
+ </div>
232
+ <hr>
233
+ <div class="refsect2">
234
+ <a name="atk-relation-type-for-name"></a><h3>atk_relation_type_for_name ()</h3>
235
+ <pre class="programlisting"><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="returnvalue">AtkRelationType</span></a>
236
+ atk_relation_type_for_name (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
237
+ <p>Get the <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> type corresponding to a relation name.</p>
238
+ <div class="refsect3">
239
+ <a name="id-1.6.3.8.4.5"></a><h4>Parameters</h4>
240
+ <div class="informaltable"><table width="100%" border="0">
241
+ <colgroup>
242
+ <col width="150px" class="parameters_name">
243
+ <col class="parameters_description">
244
+ <col width="200px" class="parameters_annotations">
245
+ </colgroup>
246
+ <tbody><tr>
247
+ <td class="parameter_name"><p>name</p></td>
248
+ <td class="parameter_description"><p>a string which is the (non-localized) name of an ATK relation type.</p></td>
249
+ <td class="parameter_annotations"> </td>
250
+ </tr></tbody>
251
+ </table></div>
252
+ </div>
253
+ <div class="refsect3">
254
+ <a name="id-1.6.3.8.4.6"></a><h4>Returns</h4>
255
+ <p> the <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> enumerated type corresponding to the specified name,
256
+ or <a class="link" href="AtkRelation.html#ATK-RELATION-NULL:CAPS"><span class="type">ATK_RELATION_NULL</span></a> if no matching relation type is found.</p>
257
+ <p></p>
258
+ </div>
259
+ </div>
260
+ <hr>
261
+ <div class="refsect2">
262
+ <a name="atk-relation-new"></a><h3>atk_relation_new ()</h3>
263
+ <pre class="programlisting"><a class="link" href="AtkRelation.html" title="AtkRelation"><span class="returnvalue">AtkRelation</span></a> *
264
+ atk_relation_new (<em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> **targets</code></em>,
265
+ <em class="parameter"><code><span class="type">gint</span> n_targets</code></em>,
266
+ <em class="parameter"><code><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> relationship</code></em>);</pre>
267
+ <p>Create a new relation for the specified key and the specified list
268
+ of targets. See also <a class="link" href="AtkObject.html#atk-object-add-relationship" title="atk_object_add_relationship ()"><code class="function">atk_object_add_relationship()</code></a>.</p>
269
+ <div class="refsect3">
270
+ <a name="id-1.6.3.8.5.5"></a><h4>Parameters</h4>
271
+ <div class="informaltable"><table width="100%" border="0">
272
+ <colgroup>
273
+ <col width="150px" class="parameters_name">
274
+ <col class="parameters_description">
275
+ <col width="200px" class="parameters_annotations">
276
+ </colgroup>
277
+ <tbody>
278
+ <tr>
279
+ <td class="parameter_name"><p>targets</p></td>
280
+ <td class="parameter_description"><p> an array of pointers to
281
+ <a href="AtkObject.html"><span class="type">AtkObjects</span></a>. </p></td>
282
+ <td class="parameter_annotations"><span class="annotation">[<a href="http://foldoc.org/array"><span class="acronym">array</span></a> length=n_targets]</span></td>
283
+ </tr>
284
+ <tr>
285
+ <td class="parameter_name"><p>n_targets</p></td>
286
+ <td class="parameter_description"><p>number of <a href="AtkObject.html"><span class="type">AtkObjects</span></a> pointed to by <em class="parameter"><code>targets</code></em>
287
+ </p></td>
288
+ <td class="parameter_annotations"> </td>
289
+ </tr>
290
+ <tr>
291
+ <td class="parameter_name"><p>relationship</p></td>
292
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> with which to create the new
293
+ <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a></p></td>
294
+ <td class="parameter_annotations"> </td>
295
+ </tr>
296
+ </tbody>
297
+ </table></div>
298
+ </div>
299
+ <div class="refsect3">
300
+ <a name="id-1.6.3.8.5.6"></a><h4>Returns</h4>
301
+ <p> a pointer to a new <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a></p>
302
+ <p></p>
303
+ </div>
304
+ </div>
305
+ <hr>
306
+ <div class="refsect2">
307
+ <a name="atk-relation-get-relation-type"></a><h3>atk_relation_get_relation_type ()</h3>
308
+ <pre class="programlisting"><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="returnvalue">AtkRelationType</span></a>
309
+ atk_relation_get_relation_type (<em class="parameter"><code><a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a> *relation</code></em>);</pre>
310
+ <p>Gets the type of <em class="parameter"><code>relation</code></em>
311
+ </p>
312
+ <div class="refsect3">
313
+ <a name="id-1.6.3.8.6.5"></a><h4>Parameters</h4>
314
+ <div class="informaltable"><table width="100%" border="0">
315
+ <colgroup>
316
+ <col width="150px" class="parameters_name">
317
+ <col class="parameters_description">
318
+ <col width="200px" class="parameters_annotations">
319
+ </colgroup>
320
+ <tbody><tr>
321
+ <td class="parameter_name"><p>relation</p></td>
322
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a> </p></td>
323
+ <td class="parameter_annotations"> </td>
324
+ </tr></tbody>
325
+ </table></div>
326
+ </div>
327
+ <div class="refsect3">
328
+ <a name="id-1.6.3.8.6.6"></a><h4>Returns</h4>
329
+ <p> the type of <em class="parameter"><code>relation</code></em>
330
+ </p>
331
+ <p></p>
332
+ </div>
333
+ </div>
334
+ <hr>
335
+ <div class="refsect2">
336
+ <a name="atk-relation-get-target"></a><h3>atk_relation_get_target ()</h3>
337
+ <pre class="programlisting"><span class="returnvalue">GPtrArray</span> *
338
+ atk_relation_get_target (<em class="parameter"><code><a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a> *relation</code></em>);</pre>
339
+ <p>Gets the target list of <em class="parameter"><code>relation</code></em>
340
+ </p>
341
+ <div class="refsect3">
342
+ <a name="id-1.6.3.8.7.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><tr>
350
+ <td class="parameter_name"><p>relation</p></td>
351
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a></p></td>
352
+ <td class="parameter_annotations"> </td>
353
+ </tr></tbody>
354
+ </table></div>
355
+ </div>
356
+ <div class="refsect3">
357
+ <a name="id-1.6.3.8.7.6"></a><h4>Returns</h4>
358
+ <p> the target list of <em class="parameter"><code>relation</code></em>
359
+ . </p>
360
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>][<a href="http://foldoc.org/element-type"><span class="acronym">element-type</span></a> Atk.Object]</span></p>
361
+ </div>
362
+ </div>
363
+ <hr>
364
+ <div class="refsect2">
365
+ <a name="atk-relation-add-target"></a><h3>atk_relation_add_target ()</h3>
366
+ <pre class="programlisting"><span class="returnvalue">void</span>
367
+ atk_relation_add_target (<em class="parameter"><code><a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a> *relation</code></em>,
368
+ <em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> *target</code></em>);</pre>
369
+ <p>Adds the specified AtkObject to the target for the relation, if it is
370
+ not already present. See also <a class="link" href="AtkObject.html#atk-object-add-relationship" title="atk_object_add_relationship ()"><code class="function">atk_object_add_relationship()</code></a>.</p>
371
+ <div class="refsect3">
372
+ <a name="id-1.6.3.8.8.5"></a><h4>Parameters</h4>
373
+ <div class="informaltable"><table width="100%" border="0">
374
+ <colgroup>
375
+ <col width="150px" class="parameters_name">
376
+ <col class="parameters_description">
377
+ <col width="200px" class="parameters_annotations">
378
+ </colgroup>
379
+ <tbody>
380
+ <tr>
381
+ <td class="parameter_name"><p>relation</p></td>
382
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a></p></td>
383
+ <td class="parameter_annotations"> </td>
384
+ </tr>
385
+ <tr>
386
+ <td class="parameter_name"><p>target</p></td>
387
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a></p></td>
388
+ <td class="parameter_annotations"> </td>
389
+ </tr>
390
+ </tbody>
391
+ </table></div>
392
+ </div>
393
+ <p class="since">Since 1.9</p>
394
+ </div>
395
+ <hr>
396
+ <div class="refsect2">
397
+ <a name="atk-relation-remove-target"></a><h3>atk_relation_remove_target ()</h3>
398
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
399
+ atk_relation_remove_target (<em class="parameter"><code><a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a> *relation</code></em>,
400
+ <em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> *target</code></em>);</pre>
401
+ <p>Remove the specified AtkObject from the target for the relation.</p>
402
+ <div class="refsect3">
403
+ <a name="id-1.6.3.8.9.5"></a><h4>Parameters</h4>
404
+ <div class="informaltable"><table width="100%" border="0">
405
+ <colgroup>
406
+ <col width="150px" class="parameters_name">
407
+ <col class="parameters_description">
408
+ <col width="200px" class="parameters_annotations">
409
+ </colgroup>
410
+ <tbody>
411
+ <tr>
412
+ <td class="parameter_name"><p>relation</p></td>
413
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html" title="AtkRelation"><span class="type">AtkRelation</span></a></p></td>
414
+ <td class="parameter_annotations"> </td>
415
+ </tr>
416
+ <tr>
417
+ <td class="parameter_name"><p>target</p></td>
418
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a></p></td>
419
+ <td class="parameter_annotations"> </td>
420
+ </tr>
421
+ </tbody>
422
+ </table></div>
423
+ </div>
424
+ <div class="refsect3">
425
+ <a name="id-1.6.3.8.9.6"></a><h4>Returns</h4>
426
+ <p> TRUE if the removal is successful.</p>
427
+ <p></p>
428
+ </div>
429
+ </div>
430
+ <hr>
431
+ <div class="refsect2">
432
+ <a name="atk-relation-set-contains-target"></a><h3>atk_relation_set_contains_target ()</h3>
433
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
434
+ atk_relation_set_contains_target (<em class="parameter"><code><a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a> *set</code></em>,
435
+ <em class="parameter"><code><a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a> relationship</code></em>,
436
+ <em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> *target</code></em>);</pre>
437
+ <p>Determines whether the relation set contains a relation that
438
+ matches the specified pair formed by type <em class="parameter"><code>relationship</code></em>
439
+ and object
440
+ <em class="parameter"><code>target</code></em>
441
+ .</p>
442
+ <div class="refsect3">
443
+ <a name="id-1.6.3.8.10.5"></a><h4>Parameters</h4>
444
+ <div class="informaltable"><table width="100%" border="0">
445
+ <colgroup>
446
+ <col width="150px" class="parameters_name">
447
+ <col class="parameters_description">
448
+ <col width="200px" class="parameters_annotations">
449
+ </colgroup>
450
+ <tbody>
451
+ <tr>
452
+ <td class="parameter_name"><p>set</p></td>
453
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelationSet.html" title="AtkRelationSet"><span class="type">AtkRelationSet</span></a></p></td>
454
+ <td class="parameter_annotations"> </td>
455
+ </tr>
456
+ <tr>
457
+ <td class="parameter_name"><p>relationship</p></td>
458
+ <td class="parameter_description"><p>an <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a></p></td>
459
+ <td class="parameter_annotations"> </td>
460
+ </tr>
461
+ <tr>
462
+ <td class="parameter_name"><p>target</p></td>
463
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a></p></td>
464
+ <td class="parameter_annotations"> </td>
465
+ </tr>
466
+ </tbody>
467
+ </table></div>
468
+ </div>
469
+ <div class="refsect3">
470
+ <a name="id-1.6.3.8.10.6"></a><h4>Returns</h4>
471
+ <p> <code class="literal">TRUE</code> if <em class="parameter"><code>set</code></em>
472
+ contains a relation with the relationship
473
+ type <em class="parameter"><code>relationship</code></em>
474
+ with an object <em class="parameter"><code>target</code></em>
475
+ , <code class="literal">FALSE</code> otherwise</p>
476
+ <p></p>
477
+ </div>
478
+ </div>
479
+ </div>
480
+ <div class="refsect1">
481
+ <a name="AtkRelation.other_details"></a><h2>Types and Values</h2>
482
+ <div class="refsect2">
483
+ <a name="AtkRelation-struct"></a><h3>struct AtkRelation</h3>
484
+ <pre class="programlisting">struct AtkRelation;</pre>
485
+ <p>
486
+ </p>
487
+ </div>
488
+ <hr>
489
+ <div class="refsect2">
490
+ <a name="AtkRelationType"></a><h3>enum AtkRelationType</h3>
491
+ <p>Describes the type of the relation</p>
492
+ <div class="refsect3">
493
+ <a name="id-1.6.3.9.3.4"></a><h4>Members</h4>
494
+ <div class="informaltable"><table width="100%" border="0">
495
+ <colgroup>
496
+ <col width="300px" class="enum_members_name">
497
+ <col class="enum_members_description">
498
+ <col width="200px" class="enum_members_annotations">
499
+ </colgroup>
500
+ <tbody>
501
+ <tr>
502
+ <td class="enum_member_name"><p><a name="ATK-RELATION-NULL:CAPS"></a>ATK_RELATION_NULL</p></td>
503
+ <td class="enum_member_description">
504
+ <p>Not used, represens "no relationship" or an error condition.</p>
505
+ </td>
506
+ <td class="enum_member_annotations"> </td>
507
+ </tr>
508
+ <tr>
509
+ <td class="enum_member_name"><p><a name="ATK-RELATION-CONTROLLED-BY:CAPS"></a>ATK_RELATION_CONTROLLED_BY</p></td>
510
+ <td class="enum_member_description">
511
+ <p>Indicates an object controlled by one or more target objects.</p>
512
+ </td>
513
+ <td class="enum_member_annotations"> </td>
514
+ </tr>
515
+ <tr>
516
+ <td class="enum_member_name"><p><a name="ATK-RELATION-CONTROLLER-FOR:CAPS"></a>ATK_RELATION_CONTROLLER_FOR</p></td>
517
+ <td class="enum_member_description">
518
+ <p>Indicates an object is an controller for one or more target objects.</p>
519
+ </td>
520
+ <td class="enum_member_annotations"> </td>
521
+ </tr>
522
+ <tr>
523
+ <td class="enum_member_name"><p><a name="ATK-RELATION-LABEL-FOR:CAPS"></a>ATK_RELATION_LABEL_FOR</p></td>
524
+ <td class="enum_member_description">
525
+ <p>Indicates an object is a label for one or more target objects.</p>
526
+ </td>
527
+ <td class="enum_member_annotations"> </td>
528
+ </tr>
529
+ <tr>
530
+ <td class="enum_member_name"><p><a name="ATK-RELATION-LABELLED-BY:CAPS"></a>ATK_RELATION_LABELLED_BY</p></td>
531
+ <td class="enum_member_description">
532
+ <p>Indicates an object is labelled by one or more target objects.</p>
533
+ </td>
534
+ <td class="enum_member_annotations"> </td>
535
+ </tr>
536
+ <tr>
537
+ <td class="enum_member_name"><p><a name="ATK-RELATION-MEMBER-OF:CAPS"></a>ATK_RELATION_MEMBER_OF</p></td>
538
+ <td class="enum_member_description">
539
+ <p>Indicates an object is a member of a group of one or more target objects.</p>
540
+ </td>
541
+ <td class="enum_member_annotations"> </td>
542
+ </tr>
543
+ <tr>
544
+ <td class="enum_member_name"><p><a name="ATK-RELATION-NODE-CHILD-OF:CAPS"></a>ATK_RELATION_NODE_CHILD_OF</p></td>
545
+ <td class="enum_member_description">
546
+ <p>Indicates an object is a cell in a treetable which is displayed because a cell in the same column is expanded and identifies that cell.</p>
547
+ </td>
548
+ <td class="enum_member_annotations"> </td>
549
+ </tr>
550
+ <tr>
551
+ <td class="enum_member_name"><p><a name="ATK-RELATION-FLOWS-TO:CAPS"></a>ATK_RELATION_FLOWS_TO</p></td>
552
+ <td class="enum_member_description">
553
+ <p>Indicates that the object has content that flows logically to another
554
+ AtkObject in a sequential way, (for instance text-flow).</p>
555
+ </td>
556
+ <td class="enum_member_annotations"> </td>
557
+ </tr>
558
+ <tr>
559
+ <td class="enum_member_name"><p><a name="ATK-RELATION-FLOWS-FROM:CAPS"></a>ATK_RELATION_FLOWS_FROM</p></td>
560
+ <td class="enum_member_description">
561
+ <p>Indicates that the object has content that flows logically from
562
+ another AtkObject in a sequential way, (for instance text-flow).</p>
563
+ </td>
564
+ <td class="enum_member_annotations"> </td>
565
+ </tr>
566
+ <tr>
567
+ <td class="enum_member_name"><p><a name="ATK-RELATION-SUBWINDOW-OF:CAPS"></a>ATK_RELATION_SUBWINDOW_OF</p></td>
568
+ <td class="enum_member_description">
569
+ <p>Indicates a subwindow attached to a component but otherwise has no connection in the UI heirarchy to that component.</p>
570
+ </td>
571
+ <td class="enum_member_annotations"> </td>
572
+ </tr>
573
+ <tr>
574
+ <td class="enum_member_name"><p><a name="ATK-RELATION-EMBEDS:CAPS"></a>ATK_RELATION_EMBEDS</p></td>
575
+ <td class="enum_member_description">
576
+ <p>Indicates that the object visually embeds
577
+ another object's content, i.e. this object's content flows around
578
+ another's content.</p>
579
+ </td>
580
+ <td class="enum_member_annotations"> </td>
581
+ </tr>
582
+ <tr>
583
+ <td class="enum_member_name"><p><a name="ATK-RELATION-EMBEDDED-BY:CAPS"></a>ATK_RELATION_EMBEDDED_BY</p></td>
584
+ <td class="enum_member_description">
585
+ <p>Inverse of <a class="link" href="AtkRelation.html#ATK-RELATION-EMBEDS:CAPS"><code class="literal">ATK_RELATION_EMBEDS</code></a>, indicates that
586
+ this object's content is visualy embedded in another object.</p>
587
+ </td>
588
+ <td class="enum_member_annotations"> </td>
589
+ </tr>
590
+ <tr>
591
+ <td class="enum_member_name"><p><a name="ATK-RELATION-POPUP-FOR:CAPS"></a>ATK_RELATION_POPUP_FOR</p></td>
592
+ <td class="enum_member_description">
593
+ <p>Indicates that an object is a popup for another object.</p>
594
+ </td>
595
+ <td class="enum_member_annotations"> </td>
596
+ </tr>
597
+ <tr>
598
+ <td class="enum_member_name"><p><a name="ATK-RELATION-PARENT-WINDOW-OF:CAPS"></a>ATK_RELATION_PARENT_WINDOW_OF</p></td>
599
+ <td class="enum_member_description">
600
+ <p>Indicates that an object is a parent window of another object.</p>
601
+ </td>
602
+ <td class="enum_member_annotations"> </td>
603
+ </tr>
604
+ <tr>
605
+ <td class="enum_member_name"><p><a name="ATK-RELATION-DESCRIBED-BY:CAPS"></a>ATK_RELATION_DESCRIBED_BY</p></td>
606
+ <td class="enum_member_description">
607
+ <p>Indicates that another object provides descriptive information about this object; more verbose than ATK_RELATION_LABELLED_BY.</p>
608
+ </td>
609
+ <td class="enum_member_annotations"> </td>
610
+ </tr>
611
+ <tr>
612
+ <td class="enum_member_name"><p><a name="ATK-RELATION-DESCRIPTION-FOR:CAPS"></a>ATK_RELATION_DESCRIPTION_FOR</p></td>
613
+ <td class="enum_member_description">
614
+ <p>Indicates that an object provides descriptive information about another object; more verbose than ATK_RELATION_LABEL_FOR.</p>
615
+ </td>
616
+ <td class="enum_member_annotations"> </td>
617
+ </tr>
618
+ <tr>
619
+ <td class="enum_member_name"><p><a name="ATK-RELATION-NODE-PARENT-OF:CAPS"></a>ATK_RELATION_NODE_PARENT_OF</p></td>
620
+ <td class="enum_member_description">
621
+ <p>Indicates an object is a cell in a treetable and is expanded to display other cells in the same column.</p>
622
+ </td>
623
+ <td class="enum_member_annotations"> </td>
624
+ </tr>
625
+ <tr>
626
+ <td class="enum_member_name"><p><a name="ATK-RELATION-LAST-DEFINED:CAPS"></a>ATK_RELATION_LAST_DEFINED</p></td>
627
+ <td class="enum_member_description">
628
+ <p>Not used, this value indicates the end of the enumeration.</p>
629
+ </td>
630
+ <td class="enum_member_annotations"> </td>
631
+ </tr>
632
+ </tbody>
633
+ </table></div>
634
+ </div>
635
+ </div>
636
+ </div>
637
+ <div class="refsect1">
638
+ <a name="AtkRelation.property-details"></a><h2>Property Details</h2>
639
+ <div class="refsect2">
640
+ <a name="AtkRelation--relation-type"></a><h3>The <code class="literal">“relation-type”</code> property</h3>
641
+ <pre class="programlisting"> “relation-type” <a class="link" href="AtkRelation.html#AtkRelationType" title="enum AtkRelationType"><span class="type">AtkRelationType</span></a></pre>
642
+ <p>The type of the relation.</p>
643
+ <p>Flags: Read / Write</p>
644
+ <p>Default value: ATK_RELATION_NULL</p>
645
+ </div>
646
+ <hr>
647
+ <div class="refsect2">
648
+ <a name="AtkRelation--target"></a><h3>The <code class="literal">“target”</code> property</h3>
649
+ <pre class="programlisting"> “target” <span class="type">GValueArray</span> *</pre>
650
+ <p>An array of the targets for the relation.</p>
651
+ <p>Flags: Read / Write</p>
652
+ </div>
653
+ </div>
654
+ </div>
655
+ <div class="footer">
656
+ <hr>
657
+ Generated by GTK-Doc V1.21.1</div>
658
+ </body>
659
+ </html>