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,142 @@
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: AtkHyperlinImpl</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="ATK - Accessibility Toolkit">
8
+ <link rel="up" href="interfaces.html" title="ATK Interfaces">
9
+ <link rel="prev" href="AtkEditableText.html" title="AtkEditableText">
10
+ <link rel="next" href="AtkHypertext.html" title="AtkHypertext">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#atk-AtkHyperlinkImpl.description" class="shortcut">Description</a></span>
19
+ </td>
20
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21
+ <td><a accesskey="u" href="interfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22
+ <td><a accesskey="p" href="AtkEditableText.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23
+ <td><a accesskey="n" href="AtkHypertext.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24
+ </tr></table>
25
+ <div class="refentry">
26
+ <a name="atk-AtkHyperlinkImpl"></a><div class="titlepage"></div>
27
+ <div class="refnamediv"><table width="100%"><tr>
28
+ <td valign="top">
29
+ <h2><span class="refentrytitle"><a name="atk-AtkHyperlinkImpl.top_of_page"></a>AtkHyperlinImpl</span></h2>
30
+ <p>AtkHyperlinImpl — An interface from which the AtkHyperlink
31
+ associated with an AtkObject may be obtained.</p>
32
+ </td>
33
+ <td class="gallery_image" valign="top" align="right"></td>
34
+ </tr></table></div>
35
+ <div class="refsect1">
36
+ <a name="atk-AtkHyperlinkImpl.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><tr>
43
+ <td class="function_type">
44
+ <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="returnvalue">AtkHyperlink</span></a> *
45
+ </td>
46
+ <td class="function_name">
47
+ <a class="link" href="atk-AtkHyperlinkImpl.html#atk-hyperlink-impl-get-hyperlink" title="atk_hyperlink_impl_get_hyperlink ()">atk_hyperlink_impl_get_hyperlink</a> <span class="c_punctuation">()</span>
48
+ </td>
49
+ </tr></tbody>
50
+ </table></div>
51
+ </div>
52
+ <div class="refsect1">
53
+ <a name="atk-AtkHyperlinkImpl.other"></a><h2>Types and Values</h2>
54
+ <div class="informaltable"><table width="100%" border="0">
55
+ <colgroup>
56
+ <col width="150px" class="name">
57
+ <col class="description">
58
+ </colgroup>
59
+ <tbody><tr>
60
+ <td class="datatype_keyword"> </td>
61
+ <td class="function_name"><a class="link" href="atk-AtkHyperlinkImpl.html#AtkHyperlinkImpl" title="AtkHyperlinkImpl">AtkHyperlinkImpl</a></td>
62
+ </tr></tbody>
63
+ </table></div>
64
+ </div>
65
+ <div class="refsect1">
66
+ <a name="atk-AtkHyperlinkImpl.description"></a><h2>Description</h2>
67
+ <p>AtkHyperlinkImpl allows AtkObjects to refer to their associated
68
+ AtkHyperlink instance, if one exists. AtkHyperlinkImpl differs
69
+ from AtkHyperlink in that AtkHyperlinkImpl is an interface, whereas
70
+ AtkHyperlink is a object type. The AtkHyperlinkImpl interface
71
+ allows a client to query an AtkObject for the availability of an
72
+ associated AtkHyperlink instance, and obtain that instance. It is
73
+ thus particularly useful in cases where embedded content or inline
74
+ content within a text object is present, since the embedding text
75
+ object implements AtkHypertext and the inline/embedded objects are
76
+ exposed as children which implement AtkHyperlinkImpl, in addition
77
+ to their being obtainable via AtkHypertext:getLink followed by
78
+ AtkHyperlink:getObject.</p>
79
+ <p>The AtkHyperlinkImpl interface should be supported by objects
80
+ exposed within the hierarchy as children of an AtkHypertext
81
+ container which correspond to "links" or embedded content within
82
+ the text. HTML anchors are not, for instance, normally exposed
83
+ this way, but embedded images and components which appear inline in
84
+ the content of a text object are. The AtkHyperlinkIface interface
85
+ allows a means of determining which children are hyperlinks in this
86
+ sense of the word, and for obtaining their corresponding
87
+ AtkHyperlink object, from which the embedding range, URI, etc. can
88
+ be obtained.</p>
89
+ <p>To some extent this interface exists because, for historical
90
+ reasons, AtkHyperlink was defined as an object type, not an
91
+ interface. Thus, in order to interact with AtkObjects via
92
+ AtkHyperlink semantics, a new interface was required.</p>
93
+ </div>
94
+ <div class="refsect1">
95
+ <a name="atk-AtkHyperlinkImpl.functions_details"></a><h2>Functions</h2>
96
+ <div class="refsect2">
97
+ <a name="atk-hyperlink-impl-get-hyperlink"></a><h3>atk_hyperlink_impl_get_hyperlink ()</h3>
98
+ <pre class="programlisting"><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="returnvalue">AtkHyperlink</span></a> *
99
+ atk_hyperlink_impl_get_hyperlink (<em class="parameter"><code><a class="link" href="atk-AtkHyperlinkImpl.html#AtkHyperlinkImpl" title="AtkHyperlinkImpl"><span class="type">AtkHyperlinkImpl</span></a> *impl</code></em>);</pre>
100
+ <p>Gets the hyperlink associated with this object.</p>
101
+ <div class="refsect3">
102
+ <a name="id-1.5.6.6.2.5"></a><h4>Parameters</h4>
103
+ <div class="informaltable"><table width="100%" border="0">
104
+ <colgroup>
105
+ <col width="150px" class="parameters_name">
106
+ <col class="parameters_description">
107
+ <col width="200px" class="parameters_annotations">
108
+ </colgroup>
109
+ <tbody><tr>
110
+ <td class="parameter_name"><p>impl</p></td>
111
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkHyperlinkImplIface</p></td>
112
+ <td class="parameter_annotations"> </td>
113
+ </tr></tbody>
114
+ </table></div>
115
+ </div>
116
+ <div class="refsect3">
117
+ <a name="id-1.5.6.6.2.6"></a><h4>Returns</h4>
118
+ <p> an AtkHyperlink object which points to this
119
+ implementing AtkObject. </p>
120
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
121
+ </div>
122
+ <p class="since">Since 1.12</p>
123
+ </div>
124
+ </div>
125
+ <div class="refsect1">
126
+ <a name="atk-AtkHyperlinkImpl.other_details"></a><h2>Types and Values</h2>
127
+ <div class="refsect2">
128
+ <a name="AtkHyperlinkImpl"></a><h3>AtkHyperlinkImpl</h3>
129
+ <pre class="programlisting">typedef struct _AtkHyperlinkImpl AtkHyperlinkImpl;</pre>
130
+ <p>A queryable interface which allows AtkHyperlink instances
131
+ associated with an AtkObject to be obtained. AtkHyperlinkImpl
132
+ corresponds to AT-SPI's Hyperlink interface, and differs from
133
+ AtkHyperlink in that AtkHyperlink is an object type, rather than an
134
+ interface, and thus cannot be directly queried. FTW</p>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ <div class="footer">
139
+ <hr>
140
+ Generated by GTK-Doc V1.21.1</div>
141
+ </body>
142
+ </html>
@@ -0,0 +1,147 @@
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: AtkPlug</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="ATK - Accessibility Toolkit">
8
+ <link rel="up" href="accessibles.html" title="Custom accessible objects">
9
+ <link rel="prev" href="AtkNoOpObject.html" title="AtkNoOpObject">
10
+ <link rel="next" href="atk-AtkSocket.html" title="AtkSocket">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#atk-AtkPlug.description" class="shortcut">Description</a></span>
19
+ </td>
20
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21
+ <td><a accesskey="u" href="accessibles.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22
+ <td><a accesskey="p" href="AtkNoOpObject.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23
+ <td><a accesskey="n" href="atk-AtkSocket.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24
+ </tr></table>
25
+ <div class="refentry">
26
+ <a name="atk-AtkPlug"></a><div class="titlepage"></div>
27
+ <div class="refnamediv"><table width="100%"><tr>
28
+ <td valign="top">
29
+ <h2><span class="refentrytitle"><a name="atk-AtkPlug.top_of_page"></a>AtkPlug</span></h2>
30
+ <p>AtkPlug — Toplevel for embedding into other processes</p>
31
+ </td>
32
+ <td class="gallery_image" valign="top" align="right"></td>
33
+ </tr></table></div>
34
+ <div class="refsect1">
35
+ <a name="atk-AtkPlug.functions"></a><h2>Functions</h2>
36
+ <div class="informaltable"><table width="100%" border="0">
37
+ <colgroup>
38
+ <col width="150px" class="functions_return">
39
+ <col class="functions_name">
40
+ </colgroup>
41
+ <tbody>
42
+ <tr>
43
+ <td class="function_type">
44
+ <a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
45
+ </td>
46
+ <td class="function_name">
47
+ <a class="link" href="atk-AtkPlug.html#atk-plug-new" title="atk_plug_new ()">atk_plug_new</a> <span class="c_punctuation">()</span>
48
+ </td>
49
+ </tr>
50
+ <tr>
51
+ <td class="function_type">
52
+ <span class="returnvalue">gchar</span> *
53
+ </td>
54
+ <td class="function_name">
55
+ <a class="link" href="atk-AtkPlug.html#atk-plug-get-id" title="atk_plug_get_id ()">atk_plug_get_id</a> <span class="c_punctuation">()</span>
56
+ </td>
57
+ </tr>
58
+ </tbody>
59
+ </table></div>
60
+ </div>
61
+ <div class="refsect1">
62
+ <a name="atk-AtkPlug.other"></a><h2>Types and Values</h2>
63
+ <div class="informaltable"><table width="100%" border="0">
64
+ <colgroup>
65
+ <col width="150px" class="name">
66
+ <col class="description">
67
+ </colgroup>
68
+ <tbody><tr>
69
+ <td class="datatype_keyword">struct</td>
70
+ <td class="function_name"><a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug">AtkPlug</a></td>
71
+ </tr></tbody>
72
+ </table></div>
73
+ </div>
74
+ <div class="refsect1">
75
+ <a name="atk-AtkPlug.description"></a><h2>Description</h2>
76
+ <p>See <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a></p>
77
+ </div>
78
+ <div class="refsect1">
79
+ <a name="atk-AtkPlug.functions_details"></a><h2>Functions</h2>
80
+ <div class="refsect2">
81
+ <a name="atk-plug-new"></a><h3>atk_plug_new ()</h3>
82
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
83
+ atk_plug_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
84
+ <p>
85
+ </p>
86
+ <div class="refsect3">
87
+ <a name="id-1.7.5.6.2.5"></a><h4>Returns</h4>
88
+ <p></p>
89
+ </div>
90
+ </div>
91
+ <hr>
92
+ <div class="refsect2">
93
+ <a name="atk-plug-get-id"></a><h3>atk_plug_get_id ()</h3>
94
+ <pre class="programlisting"><span class="returnvalue">gchar</span> *
95
+ atk_plug_get_id (<em class="parameter"><code><a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a> *plug</code></em>);</pre>
96
+ <p>Gets the unique ID of an <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a> object, which can be used to
97
+ embed inside of an <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a> using <a class="link" href="atk-AtkSocket.html#atk-socket-embed" title="atk_socket_embed ()"><code class="function">atk_socket_embed()</code></a>.</p>
98
+ <p>Internally, this calls a class function that should be registered
99
+ by the IPC layer (usually at-spi2-atk). The implementor of an
100
+ <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a> object should call this function (after atk-bridge is
101
+ loaded) and pass the value to the process implementing the
102
+ <a class="link" href="atk-AtkSocket.html#AtkSocket" title="struct AtkSocket"><span class="type">AtkSocket</span></a>, so it could embed the plug.</p>
103
+ <div class="refsect3">
104
+ <a name="id-1.7.5.6.3.6"></a><h4>Parameters</h4>
105
+ <div class="informaltable"><table width="100%" border="0">
106
+ <colgroup>
107
+ <col width="150px" class="parameters_name">
108
+ <col class="parameters_description">
109
+ <col width="200px" class="parameters_annotations">
110
+ </colgroup>
111
+ <tbody><tr>
112
+ <td class="parameter_name"><p>plug</p></td>
113
+ <td class="parameter_description"><p>an <a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a></p></td>
114
+ <td class="parameter_annotations"> </td>
115
+ </tr></tbody>
116
+ </table></div>
117
+ </div>
118
+ <div class="refsect3">
119
+ <a name="id-1.7.5.6.3.7"></a><h4>Returns</h4>
120
+ <p> the unique ID for the plug</p>
121
+ <p></p>
122
+ </div>
123
+ <p class="since">Since 1.30</p>
124
+ </div>
125
+ </div>
126
+ <div class="refsect1">
127
+ <a name="atk-AtkPlug.other_details"></a><h2>Types and Values</h2>
128
+ <div class="refsect2">
129
+ <a name="AtkPlug"></a><h3>struct AtkPlug</h3>
130
+ <pre class="programlisting">struct AtkPlug {
131
+ AtkObject parent;
132
+ };
133
+ </pre>
134
+ <p>
135
+ </p>
136
+ </div>
137
+ </div>
138
+ <div class="refsect1">
139
+ <a name="atk-AtkPlug.see-also"></a><h2>See Also</h2>
140
+ <p><a class="link" href="atk-AtkPlug.html#AtkPlug" title="struct AtkPlug"><span class="type">AtkPlug</span></a></p>
141
+ </div>
142
+ </div>
143
+ <div class="footer">
144
+ <hr>
145
+ Generated by GTK-Doc V1.21.1</div>
146
+ </body>
147
+ </html>
@@ -0,0 +1,328 @@
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: AtkRange</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="data.html" title="Basic accessible data types">
10
+ <link rel="next" href="AtkRelation.html" title="AtkRelation">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#atk-AtkRange.description" class="shortcut">Description</a></span>
19
+ </td>
20
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21
+ <td><a accesskey="u" href="data.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22
+ <td><a accesskey="p" href="data.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23
+ <td><a accesskey="n" href="AtkRelation.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24
+ </tr></table>
25
+ <div class="refentry">
26
+ <a name="atk-AtkRange"></a><div class="titlepage"></div>
27
+ <div class="refnamediv"><table width="100%"><tr>
28
+ <td valign="top">
29
+ <h2><span class="refentrytitle"><a name="atk-AtkRange.top_of_page"></a>AtkRange</span></h2>
30
+ <p>AtkRange — A given range or subrange, to be used with <a class="link" href="AtkValue.html" title="AtkValue"><span class="type">AtkValue</span></a></p>
31
+ </td>
32
+ <td class="gallery_image" valign="top" align="right"></td>
33
+ </tr></table></div>
34
+ <div class="refsect1">
35
+ <a name="atk-AtkRange.functions"></a><h2>Functions</h2>
36
+ <div class="informaltable"><table width="100%" border="0">
37
+ <colgroup>
38
+ <col width="150px" class="functions_return">
39
+ <col class="functions_name">
40
+ </colgroup>
41
+ <tbody>
42
+ <tr>
43
+ <td class="define_keyword">#define</td>
44
+ <td class="function_name"><a class="link" href="atk-AtkRange.html#ATK-TYPE-RANGE:CAPS" title="ATK_TYPE_RANGE">ATK_TYPE_RANGE</a></td>
45
+ </tr>
46
+ <tr>
47
+ <td class="function_type">
48
+ <span class="returnvalue">AtkRange</span> *
49
+ </td>
50
+ <td class="function_name">
51
+ <a class="link" href="atk-AtkRange.html#atk-range-copy" title="atk_range_copy ()">atk_range_copy</a> <span class="c_punctuation">()</span>
52
+ </td>
53
+ </tr>
54
+ <tr>
55
+ <td class="function_type">
56
+ <span class="returnvalue">void</span>
57
+ </td>
58
+ <td class="function_name">
59
+ <a class="link" href="atk-AtkRange.html#atk-range-free" title="atk_range_free ()">atk_range_free</a> <span class="c_punctuation">()</span>
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <td class="function_type">
64
+ <span class="returnvalue">gdouble</span>
65
+ </td>
66
+ <td class="function_name">
67
+ <a class="link" href="atk-AtkRange.html#atk-range-get-lower-limit" title="atk_range_get_lower_limit ()">atk_range_get_lower_limit</a> <span class="c_punctuation">()</span>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td class="function_type">
72
+ <span class="returnvalue">gdouble</span>
73
+ </td>
74
+ <td class="function_name">
75
+ <a class="link" href="atk-AtkRange.html#atk-range-get-upper-limit" title="atk_range_get_upper_limit ()">atk_range_get_upper_limit</a> <span class="c_punctuation">()</span>
76
+ </td>
77
+ </tr>
78
+ <tr>
79
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
80
+ </td>
81
+ <td class="function_name">
82
+ <a class="link" href="atk-AtkRange.html#atk-range-get-description" title="atk_range_get_description ()">atk_range_get_description</a> <span class="c_punctuation">()</span>
83
+ </td>
84
+ </tr>
85
+ <tr>
86
+ <td class="function_type">
87
+ <span class="returnvalue">AtkRange</span> *
88
+ </td>
89
+ <td class="function_name">
90
+ <a class="link" href="atk-AtkRange.html#atk-range-new" title="atk_range_new ()">atk_range_new</a> <span class="c_punctuation">()</span>
91
+ </td>
92
+ </tr>
93
+ <tr>
94
+ <td class="function_type">
95
+ <span class="returnvalue">GType</span>
96
+ </td>
97
+ <td class="function_name">
98
+ <a class="link" href="atk-AtkRange.html#atk-range-get-type" title="atk_range_get_type ()">atk_range_get_type</a> <span class="c_punctuation">()</span>
99
+ </td>
100
+ </tr>
101
+ </tbody>
102
+ </table></div>
103
+ </div>
104
+ <div class="refsect1">
105
+ <a name="atk-AtkRange.description"></a><h2>Description</h2>
106
+ <p><span class="type">AtkRange</span> are used on <a class="link" href="AtkValue.html" title="AtkValue"><span class="type">AtkValue</span></a>, in order to represent the full
107
+ range of a given component (for example an slider or a range
108
+ control), or to define each individual subrange this full range is
109
+ splitted if available. See <a class="link" href="AtkValue.html" title="AtkValue"><span class="type">AtkValue</span></a> documentation for further
110
+ details.</p>
111
+ </div>
112
+ <div class="refsect1">
113
+ <a name="atk-AtkRange.functions_details"></a><h2>Functions</h2>
114
+ <div class="refsect2">
115
+ <a name="ATK-TYPE-RANGE:CAPS"></a><h3>ATK_TYPE_RANGE</h3>
116
+ <pre class="programlisting">#define ATK_TYPE_RANGE (atk_range_get_type ())
117
+ </pre>
118
+ <p>
119
+ </p>
120
+ </div>
121
+ <hr>
122
+ <div class="refsect2">
123
+ <a name="atk-range-copy"></a><h3>atk_range_copy ()</h3>
124
+ <pre class="programlisting"><span class="returnvalue">AtkRange</span> *
125
+ atk_range_copy (<em class="parameter"><code><span class="type">AtkRange</span> *src</code></em>);</pre>
126
+ <p>Returns a new <span class="type">AtkRange</span> that is a exact copy of <em class="parameter"><code>src</code></em>
127
+ </p>
128
+ <div class="refsect3">
129
+ <a name="id-1.6.2.5.3.5"></a><h4>Parameters</h4>
130
+ <div class="informaltable"><table width="100%" border="0">
131
+ <colgroup>
132
+ <col width="150px" class="parameters_name">
133
+ <col class="parameters_description">
134
+ <col width="200px" class="parameters_annotations">
135
+ </colgroup>
136
+ <tbody><tr>
137
+ <td class="parameter_name"><p>src</p></td>
138
+ <td class="parameter_description"><p><span class="type">AtkRange</span> to copy</p></td>
139
+ <td class="parameter_annotations"> </td>
140
+ </tr></tbody>
141
+ </table></div>
142
+ </div>
143
+ <div class="refsect3">
144
+ <a name="id-1.6.2.5.3.6"></a><h4>Returns</h4>
145
+ <p> a new <span class="type">AtkRange</span> copy of <em class="parameter"><code>src</code></em>
146
+ . </p>
147
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
148
+ </div>
149
+ <p class="since">Since 2.12</p>
150
+ </div>
151
+ <hr>
152
+ <div class="refsect2">
153
+ <a name="atk-range-free"></a><h3>atk_range_free ()</h3>
154
+ <pre class="programlisting"><span class="returnvalue">void</span>
155
+ atk_range_free (<em class="parameter"><code><span class="type">AtkRange</span> *range</code></em>);</pre>
156
+ <p>Free <em class="parameter"><code>range</code></em>
157
+ </p>
158
+ <div class="refsect3">
159
+ <a name="id-1.6.2.5.4.5"></a><h4>Parameters</h4>
160
+ <div class="informaltable"><table width="100%" border="0">
161
+ <colgroup>
162
+ <col width="150px" class="parameters_name">
163
+ <col class="parameters_description">
164
+ <col width="200px" class="parameters_annotations">
165
+ </colgroup>
166
+ <tbody><tr>
167
+ <td class="parameter_name"><p>range</p></td>
168
+ <td class="parameter_description"><p><span class="type">AtkRange</span> to free</p></td>
169
+ <td class="parameter_annotations"> </td>
170
+ </tr></tbody>
171
+ </table></div>
172
+ </div>
173
+ <p class="since">Since 2.12</p>
174
+ </div>
175
+ <hr>
176
+ <div class="refsect2">
177
+ <a name="atk-range-get-lower-limit"></a><h3>atk_range_get_lower_limit ()</h3>
178
+ <pre class="programlisting"><span class="returnvalue">gdouble</span>
179
+ atk_range_get_lower_limit (<em class="parameter"><code><span class="type">AtkRange</span> *range</code></em>);</pre>
180
+ <p>Returns the lower limit of <em class="parameter"><code>range</code></em>
181
+ </p>
182
+ <div class="refsect3">
183
+ <a name="id-1.6.2.5.5.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>range</p></td>
192
+ <td class="parameter_description"><p>an <span class="type">AtkRange</span></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.2.5.5.6"></a><h4>Returns</h4>
199
+ <p> the lower limit of <em class="parameter"><code>range</code></em>
200
+ </p>
201
+ <p></p>
202
+ </div>
203
+ <p class="since">Since 2.12</p>
204
+ </div>
205
+ <hr>
206
+ <div class="refsect2">
207
+ <a name="atk-range-get-upper-limit"></a><h3>atk_range_get_upper_limit ()</h3>
208
+ <pre class="programlisting"><span class="returnvalue">gdouble</span>
209
+ atk_range_get_upper_limit (<em class="parameter"><code><span class="type">AtkRange</span> *range</code></em>);</pre>
210
+ <p>Returns the upper limit of <em class="parameter"><code>range</code></em>
211
+ </p>
212
+ <div class="refsect3">
213
+ <a name="id-1.6.2.5.6.5"></a><h4>Parameters</h4>
214
+ <div class="informaltable"><table width="100%" border="0">
215
+ <colgroup>
216
+ <col width="150px" class="parameters_name">
217
+ <col class="parameters_description">
218
+ <col width="200px" class="parameters_annotations">
219
+ </colgroup>
220
+ <tbody><tr>
221
+ <td class="parameter_name"><p>range</p></td>
222
+ <td class="parameter_description"><p>an <span class="type">AtkRange</span></p></td>
223
+ <td class="parameter_annotations"> </td>
224
+ </tr></tbody>
225
+ </table></div>
226
+ </div>
227
+ <div class="refsect3">
228
+ <a name="id-1.6.2.5.6.6"></a><h4>Returns</h4>
229
+ <p> the upper limit of <em class="parameter"><code>range</code></em>
230
+ </p>
231
+ <p></p>
232
+ </div>
233
+ <p class="since">Since 2.12</p>
234
+ </div>
235
+ <hr>
236
+ <div class="refsect2">
237
+ <a name="atk-range-get-description"></a><h3>atk_range_get_description ()</h3>
238
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
239
+ atk_range_get_description (<em class="parameter"><code><span class="type">AtkRange</span> *range</code></em>);</pre>
240
+ <p>Returns the human readable description of <em class="parameter"><code>range</code></em>
241
+ </p>
242
+ <div class="refsect3">
243
+ <a name="id-1.6.2.5.7.5"></a><h4>Parameters</h4>
244
+ <div class="informaltable"><table width="100%" border="0">
245
+ <colgroup>
246
+ <col width="150px" class="parameters_name">
247
+ <col class="parameters_description">
248
+ <col width="200px" class="parameters_annotations">
249
+ </colgroup>
250
+ <tbody><tr>
251
+ <td class="parameter_name"><p>range</p></td>
252
+ <td class="parameter_description"><p>an <span class="type">AtkRange</span></p></td>
253
+ <td class="parameter_annotations"> </td>
254
+ </tr></tbody>
255
+ </table></div>
256
+ </div>
257
+ <div class="refsect3">
258
+ <a name="id-1.6.2.5.7.6"></a><h4>Returns</h4>
259
+ <p> the human-readable description of <em class="parameter"><code>range</code></em>
260
+ </p>
261
+ <p></p>
262
+ </div>
263
+ <p class="since">Since 2.12</p>
264
+ </div>
265
+ <hr>
266
+ <div class="refsect2">
267
+ <a name="atk-range-new"></a><h3>atk_range_new ()</h3>
268
+ <pre class="programlisting"><span class="returnvalue">AtkRange</span> *
269
+ atk_range_new (<em class="parameter"><code><span class="type">gdouble</span> lower_limit</code></em>,
270
+ <em class="parameter"><code><span class="type">gdouble</span> upper_limit</code></em>,
271
+ <em class="parameter"><code>const <span class="type">gchar</span> *description</code></em>);</pre>
272
+ <p>Creates a new <span class="type">AtkRange</span>.</p>
273
+ <div class="refsect3">
274
+ <a name="id-1.6.2.5.8.5"></a><h4>Parameters</h4>
275
+ <div class="informaltable"><table width="100%" border="0">
276
+ <colgroup>
277
+ <col width="150px" class="parameters_name">
278
+ <col class="parameters_description">
279
+ <col width="200px" class="parameters_annotations">
280
+ </colgroup>
281
+ <tbody>
282
+ <tr>
283
+ <td class="parameter_name"><p>lower_limit</p></td>
284
+ <td class="parameter_description"><p>inferior limit for this range</p></td>
285
+ <td class="parameter_annotations"> </td>
286
+ </tr>
287
+ <tr>
288
+ <td class="parameter_name"><p>upper_limit</p></td>
289
+ <td class="parameter_description"><p>superior limit for this range</p></td>
290
+ <td class="parameter_annotations"> </td>
291
+ </tr>
292
+ <tr>
293
+ <td class="parameter_name"><p>description</p></td>
294
+ <td class="parameter_description"><p>human readable description of this range.</p></td>
295
+ <td class="parameter_annotations"> </td>
296
+ </tr>
297
+ </tbody>
298
+ </table></div>
299
+ </div>
300
+ <div class="refsect3">
301
+ <a name="id-1.6.2.5.8.6"></a><h4>Returns</h4>
302
+ <p> a new <span class="type">AtkRange</span>. </p>
303
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
304
+ </div>
305
+ <p class="since">Since 2.12</p>
306
+ </div>
307
+ <hr>
308
+ <div class="refsect2">
309
+ <a name="atk-range-get-type"></a><h3>atk_range_get_type ()</h3>
310
+ <pre class="programlisting"><span class="returnvalue">GType</span>
311
+ atk_range_get_type (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
312
+ <p>
313
+ </p>
314
+ <div class="refsect3">
315
+ <a name="id-1.6.2.5.9.5"></a><h4>Returns</h4>
316
+ <p></p>
317
+ </div>
318
+ </div>
319
+ </div>
320
+ <div class="refsect1">
321
+ <a name="atk-AtkRange.other_details"></a><h2>Types and Values</h2>
322
+ </div>
323
+ </div>
324
+ <div class="footer">
325
+ <hr>
326
+ Generated by GTK-Doc V1.21.1</div>
327
+ </body>
328
+ </html>