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,570 @@
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: AtkHyperlink</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="AtkGObjectAccessible.html" title="AtkGObjectAccessible">
10
+ <link rel="next" href="AtkNoOpObject.html" title="AtkNoOpObject">
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="#AtkHyperlink.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkHyperlink.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20
+ <a href="#AtkHyperlink.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
21
+ <a href="#AtkHyperlink.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
22
+ <a href="#AtkHyperlink.signals" class="shortcut">Signals</a></span>
23
+ </td>
24
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
25
+ <td><a accesskey="u" href="accessibles.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
26
+ <td><a accesskey="p" href="AtkGObjectAccessible.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
27
+ <td><a accesskey="n" href="AtkNoOpObject.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
28
+ </tr></table>
29
+ <div class="refentry">
30
+ <a name="AtkHyperlink"></a><div class="titlepage"></div>
31
+ <div class="refnamediv"><table width="100%"><tr>
32
+ <td valign="top">
33
+ <h2><span class="refentrytitle"><a name="AtkHyperlink.top_of_page"></a>AtkHyperlink</span></h2>
34
+ <p>AtkHyperlink — An ATK object which encapsulates a link or set
35
+ of links in a hypertext document.</p>
36
+ </td>
37
+ <td class="gallery_image" valign="top" align="right"></td>
38
+ </tr></table></div>
39
+ <div class="refsect1">
40
+ <a name="AtkHyperlink.functions"></a><h2>Functions</h2>
41
+ <div class="informaltable"><table width="100%" border="0">
42
+ <colgroup>
43
+ <col width="150px" class="functions_return">
44
+ <col class="functions_name">
45
+ </colgroup>
46
+ <tbody>
47
+ <tr>
48
+ <td class="function_type">
49
+ <span class="returnvalue">gchar</span> *
50
+ </td>
51
+ <td class="function_name">
52
+ <a class="link" href="AtkHyperlink.html#atk-hyperlink-get-uri" title="atk_hyperlink_get_uri ()">atk_hyperlink_get_uri</a> <span class="c_punctuation">()</span>
53
+ </td>
54
+ </tr>
55
+ <tr>
56
+ <td class="function_type">
57
+ <a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
58
+ </td>
59
+ <td class="function_name">
60
+ <a class="link" href="AtkHyperlink.html#atk-hyperlink-get-object" title="atk_hyperlink_get_object ()">atk_hyperlink_get_object</a> <span class="c_punctuation">()</span>
61
+ </td>
62
+ </tr>
63
+ <tr>
64
+ <td class="function_type">
65
+ <span class="returnvalue">gint</span>
66
+ </td>
67
+ <td class="function_name">
68
+ <a class="link" href="AtkHyperlink.html#atk-hyperlink-get-end-index" title="atk_hyperlink_get_end_index ()">atk_hyperlink_get_end_index</a> <span class="c_punctuation">()</span>
69
+ </td>
70
+ </tr>
71
+ <tr>
72
+ <td class="function_type">
73
+ <span class="returnvalue">gint</span>
74
+ </td>
75
+ <td class="function_name">
76
+ <a class="link" href="AtkHyperlink.html#atk-hyperlink-get-start-index" title="atk_hyperlink_get_start_index ()">atk_hyperlink_get_start_index</a> <span class="c_punctuation">()</span>
77
+ </td>
78
+ </tr>
79
+ <tr>
80
+ <td class="function_type">
81
+ <span class="returnvalue">gboolean</span>
82
+ </td>
83
+ <td class="function_name">
84
+ <a class="link" href="AtkHyperlink.html#atk-hyperlink-is-valid" title="atk_hyperlink_is_valid ()">atk_hyperlink_is_valid</a> <span class="c_punctuation">()</span>
85
+ </td>
86
+ </tr>
87
+ <tr>
88
+ <td class="function_type">
89
+ <span class="returnvalue">gboolean</span>
90
+ </td>
91
+ <td class="function_name">
92
+ <a class="link" href="AtkHyperlink.html#atk-hyperlink-is-inline" title="atk_hyperlink_is_inline ()">atk_hyperlink_is_inline</a> <span class="c_punctuation">()</span>
93
+ </td>
94
+ </tr>
95
+ <tr>
96
+ <td class="function_type">
97
+ <span class="returnvalue">gint</span>
98
+ </td>
99
+ <td class="function_name">
100
+ <a class="link" href="AtkHyperlink.html#atk-hyperlink-get-n-anchors" title="atk_hyperlink_get_n_anchors ()">atk_hyperlink_get_n_anchors</a> <span class="c_punctuation">()</span>
101
+ </td>
102
+ </tr>
103
+ <tr>
104
+ <td class="function_type">
105
+ <span class="returnvalue">gboolean</span>
106
+ </td>
107
+ <td class="function_name">
108
+ <a class="link" href="AtkHyperlink.html#atk-hyperlink-is-selected-link" title="atk_hyperlink_is_selected_link ()">atk_hyperlink_is_selected_link</a> <span class="c_punctuation">()</span>
109
+ </td>
110
+ </tr>
111
+ </tbody>
112
+ </table></div>
113
+ </div>
114
+ <div class="refsect1">
115
+ <a name="AtkHyperlink.properties"></a><h2>Properties</h2>
116
+ <div class="informaltable"><table border="0">
117
+ <colgroup>
118
+ <col width="150px" class="properties_type">
119
+ <col width="300px" class="properties_name">
120
+ <col width="200px" class="properties_flags">
121
+ </colgroup>
122
+ <tbody>
123
+ <tr>
124
+ <td class="property_type"><span class="type">gint</span></td>
125
+ <td class="property_name"><a class="link" href="AtkHyperlink.html#AtkHyperlink--end-index" title="The “end-index” property">end-index</a></td>
126
+ <td class="property_flags">Read</td>
127
+ </tr>
128
+ <tr>
129
+ <td class="property_type"><span class="type">gint</span></td>
130
+ <td class="property_name"><a class="link" href="AtkHyperlink.html#AtkHyperlink--number-of-anchors" title="The “number-of-anchors” property">number-of-anchors</a></td>
131
+ <td class="property_flags">Read</td>
132
+ </tr>
133
+ <tr>
134
+ <td class="property_type"><span class="type">gboolean</span></td>
135
+ <td class="property_name"><a class="link" href="AtkHyperlink.html#AtkHyperlink--selected-link" title="The “selected-link” property">selected-link</a></td>
136
+ <td class="property_flags">Read</td>
137
+ </tr>
138
+ <tr>
139
+ <td class="property_type"><span class="type">gint</span></td>
140
+ <td class="property_name"><a class="link" href="AtkHyperlink.html#AtkHyperlink--start-index" title="The “start-index” property">start-index</a></td>
141
+ <td class="property_flags">Read</td>
142
+ </tr>
143
+ </tbody>
144
+ </table></div>
145
+ </div>
146
+ <div class="refsect1">
147
+ <a name="AtkHyperlink.signals"></a><h2>Signals</h2>
148
+ <div class="informaltable"><table border="0">
149
+ <colgroup>
150
+ <col width="150px" class="signals_return">
151
+ <col width="300px" class="signals_name">
152
+ <col width="200px" class="signals_flags">
153
+ </colgroup>
154
+ <tbody><tr>
155
+ <td class="signal_type"><span class="returnvalue">void</span></td>
156
+ <td class="signal_name"><a class="link" href="AtkHyperlink.html#AtkHyperlink-link-activated" title="The “link-activated” signal">link-activated</a></td>
157
+ <td class="signal_flags">Run Last</td>
158
+ </tr></tbody>
159
+ </table></div>
160
+ </div>
161
+ <div class="refsect1">
162
+ <a name="AtkHyperlink.other"></a><h2>Types and Values</h2>
163
+ <div class="informaltable"><table width="100%" border="0">
164
+ <colgroup>
165
+ <col width="150px" class="name">
166
+ <col class="description">
167
+ </colgroup>
168
+ <tbody>
169
+ <tr>
170
+ <td class="datatype_keyword">struct</td>
171
+ <td class="function_name"><a class="link" href="AtkHyperlink.html#AtkHyperlink-struct" title="struct AtkHyperlink">AtkHyperlink</a></td>
172
+ </tr>
173
+ <tr>
174
+ <td class="datatype_keyword">enum</td>
175
+ <td class="function_name"><a class="link" href="AtkHyperlink.html#AtkHyperlinkStateFlags" title="enum AtkHyperlinkStateFlags">AtkHyperlinkStateFlags</a></td>
176
+ </tr>
177
+ </tbody>
178
+ </table></div>
179
+ </div>
180
+ <div class="refsect1">
181
+ <a name="AtkHyperlink.object-hierarchy"></a><h2>Object Hierarchy</h2>
182
+ <pre class="screen"> GObject
183
+ <span class="lineart">╰──</span> AtkHyperlink
184
+ </pre>
185
+ </div>
186
+ <div class="refsect1">
187
+ <a name="AtkHyperlink.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
188
+ <p>
189
+ AtkHyperlink implements
190
+ <a class="link" href="AtkAction.html" title="AtkAction">AtkAction</a>.</p>
191
+ </div>
192
+ <div class="refsect1">
193
+ <a name="AtkHyperlink.description"></a><h2>Description</h2>
194
+ <p>An ATK object which encapsulates a link or set of links (for
195
+ instance in the case of client-side image maps) in a hypertext
196
+ document. It may implement the AtkAction interface. AtkHyperlink
197
+ may also be used to refer to inline embedded content, since it
198
+ allows specification of a start and end offset within the host
199
+ AtkHypertext object.</p>
200
+ </div>
201
+ <div class="refsect1">
202
+ <a name="AtkHyperlink.functions_details"></a><h2>Functions</h2>
203
+ <div class="refsect2">
204
+ <a name="atk-hyperlink-get-uri"></a><h3>atk_hyperlink_get_uri ()</h3>
205
+ <pre class="programlisting"><span class="returnvalue">gchar</span> *
206
+ atk_hyperlink_get_uri (<em class="parameter"><code><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a> *link_</code></em>,
207
+ <em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
208
+ <p>Get a the URI associated with the anchor specified
209
+ by <em class="parameter"><code>i</code></em>
210
+ of <em class="parameter"><code>link_</code></em>
211
+ . </p>
212
+ <p>Multiple anchors are primarily used by client-side image maps.</p>
213
+ <div class="refsect3">
214
+ <a name="id-1.7.3.10.2.6"></a><h4>Parameters</h4>
215
+ <div class="informaltable"><table width="100%" border="0">
216
+ <colgroup>
217
+ <col width="150px" class="parameters_name">
218
+ <col class="parameters_description">
219
+ <col width="200px" class="parameters_annotations">
220
+ </colgroup>
221
+ <tbody>
222
+ <tr>
223
+ <td class="parameter_name"><p>link_</p></td>
224
+ <td class="parameter_description"><p>an <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a></p></td>
225
+ <td class="parameter_annotations"> </td>
226
+ </tr>
227
+ <tr>
228
+ <td class="parameter_name"><p>i</p></td>
229
+ <td class="parameter_description"><p>a (zero-index) integer specifying the desired anchor</p></td>
230
+ <td class="parameter_annotations"> </td>
231
+ </tr>
232
+ </tbody>
233
+ </table></div>
234
+ </div>
235
+ <div class="refsect3">
236
+ <a name="id-1.7.3.10.2.7"></a><h4>Returns</h4>
237
+ <p> a string specifying the URI </p>
238
+ <p></p>
239
+ </div>
240
+ </div>
241
+ <hr>
242
+ <div class="refsect2">
243
+ <a name="atk-hyperlink-get-object"></a><h3>atk_hyperlink_get_object ()</h3>
244
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
245
+ atk_hyperlink_get_object (<em class="parameter"><code><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a> *link_</code></em>,
246
+ <em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
247
+ <p>Returns the item associated with this hyperlinks nth anchor.
248
+ For instance, the returned <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> will implement <a class="link" href="AtkText.html" title="AtkText"><span class="type">AtkText</span></a>
249
+ if <em class="parameter"><code>link_</code></em>
250
+ is a text hyperlink, <a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a> if <em class="parameter"><code>link_</code></em>
251
+ is an image
252
+ hyperlink etc. </p>
253
+ <p>Multiple anchors are primarily used by client-side image maps.</p>
254
+ <div class="refsect3">
255
+ <a name="id-1.7.3.10.3.6"></a><h4>Parameters</h4>
256
+ <div class="informaltable"><table width="100%" border="0">
257
+ <colgroup>
258
+ <col width="150px" class="parameters_name">
259
+ <col class="parameters_description">
260
+ <col width="200px" class="parameters_annotations">
261
+ </colgroup>
262
+ <tbody>
263
+ <tr>
264
+ <td class="parameter_name"><p>link_</p></td>
265
+ <td class="parameter_description"><p>an <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a></p></td>
266
+ <td class="parameter_annotations"> </td>
267
+ </tr>
268
+ <tr>
269
+ <td class="parameter_name"><p>i</p></td>
270
+ <td class="parameter_description"><p>a (zero-index) integer specifying the desired anchor</p></td>
271
+ <td class="parameter_annotations"> </td>
272
+ </tr>
273
+ </tbody>
274
+ </table></div>
275
+ </div>
276
+ <div class="refsect3">
277
+ <a name="id-1.7.3.10.3.7"></a><h4>Returns</h4>
278
+ <p> an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> associated with this hyperlinks
279
+ i-th anchor. </p>
280
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
281
+ </div>
282
+ </div>
283
+ <hr>
284
+ <div class="refsect2">
285
+ <a name="atk-hyperlink-get-end-index"></a><h3>atk_hyperlink_get_end_index ()</h3>
286
+ <pre class="programlisting"><span class="returnvalue">gint</span>
287
+ atk_hyperlink_get_end_index (<em class="parameter"><code><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a> *link_</code></em>);</pre>
288
+ <p>Gets the index with the hypertext document at which this link ends.</p>
289
+ <div class="refsect3">
290
+ <a name="id-1.7.3.10.4.5"></a><h4>Parameters</h4>
291
+ <div class="informaltable"><table width="100%" border="0">
292
+ <colgroup>
293
+ <col width="150px" class="parameters_name">
294
+ <col class="parameters_description">
295
+ <col width="200px" class="parameters_annotations">
296
+ </colgroup>
297
+ <tbody><tr>
298
+ <td class="parameter_name"><p>link_</p></td>
299
+ <td class="parameter_description"><p>an <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a></p></td>
300
+ <td class="parameter_annotations"> </td>
301
+ </tr></tbody>
302
+ </table></div>
303
+ </div>
304
+ <div class="refsect3">
305
+ <a name="id-1.7.3.10.4.6"></a><h4>Returns</h4>
306
+ <p> the index with the hypertext document at which this link ends</p>
307
+ <p></p>
308
+ </div>
309
+ </div>
310
+ <hr>
311
+ <div class="refsect2">
312
+ <a name="atk-hyperlink-get-start-index"></a><h3>atk_hyperlink_get_start_index ()</h3>
313
+ <pre class="programlisting"><span class="returnvalue">gint</span>
314
+ atk_hyperlink_get_start_index (<em class="parameter"><code><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a> *link_</code></em>);</pre>
315
+ <p>Gets the index with the hypertext document at which this link begins.</p>
316
+ <div class="refsect3">
317
+ <a name="id-1.7.3.10.5.5"></a><h4>Parameters</h4>
318
+ <div class="informaltable"><table width="100%" border="0">
319
+ <colgroup>
320
+ <col width="150px" class="parameters_name">
321
+ <col class="parameters_description">
322
+ <col width="200px" class="parameters_annotations">
323
+ </colgroup>
324
+ <tbody><tr>
325
+ <td class="parameter_name"><p>link_</p></td>
326
+ <td class="parameter_description"><p>an <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a></p></td>
327
+ <td class="parameter_annotations"> </td>
328
+ </tr></tbody>
329
+ </table></div>
330
+ </div>
331
+ <div class="refsect3">
332
+ <a name="id-1.7.3.10.5.6"></a><h4>Returns</h4>
333
+ <p> the index with the hypertext document at which this link begins</p>
334
+ <p></p>
335
+ </div>
336
+ </div>
337
+ <hr>
338
+ <div class="refsect2">
339
+ <a name="atk-hyperlink-is-valid"></a><h3>atk_hyperlink_is_valid ()</h3>
340
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
341
+ atk_hyperlink_is_valid (<em class="parameter"><code><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a> *link_</code></em>);</pre>
342
+ <p>Since the document that a link is associated with may have changed
343
+ this method returns <code class="literal">TRUE</code> if the link is still valid (with
344
+ respect to the document it references) and <code class="literal">FALSE</code> otherwise.</p>
345
+ <div class="refsect3">
346
+ <a name="id-1.7.3.10.6.5"></a><h4>Parameters</h4>
347
+ <div class="informaltable"><table width="100%" border="0">
348
+ <colgroup>
349
+ <col width="150px" class="parameters_name">
350
+ <col class="parameters_description">
351
+ <col width="200px" class="parameters_annotations">
352
+ </colgroup>
353
+ <tbody><tr>
354
+ <td class="parameter_name"><p>link_</p></td>
355
+ <td class="parameter_description"><p>an <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a></p></td>
356
+ <td class="parameter_annotations"> </td>
357
+ </tr></tbody>
358
+ </table></div>
359
+ </div>
360
+ <div class="refsect3">
361
+ <a name="id-1.7.3.10.6.6"></a><h4>Returns</h4>
362
+ <p> whether or not this link is still valid</p>
363
+ <p></p>
364
+ </div>
365
+ </div>
366
+ <hr>
367
+ <div class="refsect2">
368
+ <a name="atk-hyperlink-is-inline"></a><h3>atk_hyperlink_is_inline ()</h3>
369
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
370
+ atk_hyperlink_is_inline (<em class="parameter"><code><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a> *link_</code></em>);</pre>
371
+ <p>Indicates whether the link currently displays some or all of its
372
+ content inline. Ordinary HTML links will usually return
373
+ <code class="literal">FALSE</code>, but an inline &lt;src&gt; HTML element will return
374
+ <code class="literal">TRUE</code>.</p>
375
+ <div class="refsect3">
376
+ <a name="id-1.7.3.10.7.5"></a><h4>Parameters</h4>
377
+ <div class="informaltable"><table width="100%" border="0">
378
+ <colgroup>
379
+ <col width="150px" class="parameters_name">
380
+ <col class="parameters_description">
381
+ <col width="200px" class="parameters_annotations">
382
+ </colgroup>
383
+ <tbody><tr>
384
+ <td class="parameter_name"><p>link_</p></td>
385
+ <td class="parameter_description"><p>an <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a></p></td>
386
+ <td class="parameter_annotations"> </td>
387
+ </tr></tbody>
388
+ </table></div>
389
+ </div>
390
+ <div class="refsect3">
391
+ <a name="id-1.7.3.10.7.6"></a><h4>Returns</h4>
392
+ <p> whether or not this link displays its content inline.</p>
393
+ <p></p>
394
+ </div>
395
+ </div>
396
+ <hr>
397
+ <div class="refsect2">
398
+ <a name="atk-hyperlink-get-n-anchors"></a><h3>atk_hyperlink_get_n_anchors ()</h3>
399
+ <pre class="programlisting"><span class="returnvalue">gint</span>
400
+ atk_hyperlink_get_n_anchors (<em class="parameter"><code><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a> *link_</code></em>);</pre>
401
+ <p>Gets the number of anchors associated with this hyperlink.</p>
402
+ <div class="refsect3">
403
+ <a name="id-1.7.3.10.8.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><tr>
411
+ <td class="parameter_name"><p>link_</p></td>
412
+ <td class="parameter_description"><p>an <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a></p></td>
413
+ <td class="parameter_annotations"> </td>
414
+ </tr></tbody>
415
+ </table></div>
416
+ </div>
417
+ <div class="refsect3">
418
+ <a name="id-1.7.3.10.8.6"></a><h4>Returns</h4>
419
+ <p> the number of anchors associated with this hyperlink</p>
420
+ <p></p>
421
+ </div>
422
+ </div>
423
+ <hr>
424
+ <div class="refsect2">
425
+ <a name="atk-hyperlink-is-selected-link"></a><h3>atk_hyperlink_is_selected_link ()</h3>
426
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
427
+ atk_hyperlink_is_selected_link (<em class="parameter"><code><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a> *link_</code></em>);</pre>
428
+ <div class="warning">
429
+ <p><code class="literal">atk_hyperlink_is_selected_link</code> is deprecated and should not be used in newly-written code.</p>
430
+ <p>This method is deprecated since ATK version 1.8.
431
+ Please use ATK_STATE_FOCUSABLE for all links, and ATK_STATE_FOCUSED
432
+ for focused links.</p>
433
+ </div>
434
+ <p>Determines whether this AtkHyperlink is selected</p>
435
+ <div class="refsect3">
436
+ <a name="id-1.7.3.10.9.7"></a><h4>Parameters</h4>
437
+ <div class="informaltable"><table width="100%" border="0">
438
+ <colgroup>
439
+ <col width="150px" class="parameters_name">
440
+ <col class="parameters_description">
441
+ <col width="200px" class="parameters_annotations">
442
+ </colgroup>
443
+ <tbody><tr>
444
+ <td class="parameter_name"><p>link_</p></td>
445
+ <td class="parameter_description"><p>an <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a></p></td>
446
+ <td class="parameter_annotations"> </td>
447
+ </tr></tbody>
448
+ </table></div>
449
+ </div>
450
+ <div class="refsect3">
451
+ <a name="id-1.7.3.10.9.8"></a><h4>Returns</h4>
452
+ <p> True if the AtkHyperlink is selected, False otherwise</p>
453
+ <p></p>
454
+ </div>
455
+ <p class="since">Since 1.4</p>
456
+ </div>
457
+ </div>
458
+ <div class="refsect1">
459
+ <a name="AtkHyperlink.other_details"></a><h2>Types and Values</h2>
460
+ <div class="refsect2">
461
+ <a name="AtkHyperlink-struct"></a><h3>struct AtkHyperlink</h3>
462
+ <pre class="programlisting">struct AtkHyperlink;</pre>
463
+ <p>
464
+ </p>
465
+ </div>
466
+ <hr>
467
+ <div class="refsect2">
468
+ <a name="AtkHyperlinkStateFlags"></a><h3>enum AtkHyperlinkStateFlags</h3>
469
+ <p>Describes the type of link</p>
470
+ <div class="refsect3">
471
+ <a name="id-1.7.3.11.3.4"></a><h4>Members</h4>
472
+ <div class="informaltable"><table width="100%" border="0">
473
+ <colgroup>
474
+ <col width="300px" class="enum_members_name">
475
+ <col class="enum_members_description">
476
+ <col width="200px" class="enum_members_annotations">
477
+ </colgroup>
478
+ <tbody><tr>
479
+ <td class="enum_member_name"><p><a name="ATK-HYPERLINK-IS-INLINE:CAPS"></a>ATK_HYPERLINK_IS_INLINE</p></td>
480
+ <td class="enum_member_description">
481
+ <p>Link is inline</p>
482
+ </td>
483
+ <td class="enum_member_annotations"> </td>
484
+ </tr></tbody>
485
+ </table></div>
486
+ </div>
487
+ </div>
488
+ </div>
489
+ <div class="refsect1">
490
+ <a name="AtkHyperlink.property-details"></a><h2>Property Details</h2>
491
+ <div class="refsect2">
492
+ <a name="AtkHyperlink--end-index"></a><h3>The <code class="literal">“end-index”</code> property</h3>
493
+ <pre class="programlisting"> “end-index” <span class="type">gint</span></pre>
494
+ <p>The end index of the AtkHyperlink object.</p>
495
+ <p>Flags: Read</p>
496
+ <p>Allowed values: &gt;= 0</p>
497
+ <p>Default value: 0</p>
498
+ </div>
499
+ <hr>
500
+ <div class="refsect2">
501
+ <a name="AtkHyperlink--number-of-anchors"></a><h3>The <code class="literal">“number-of-anchors”</code> property</h3>
502
+ <pre class="programlisting"> “number-of-anchors” <span class="type">gint</span></pre>
503
+ <p>The number of anchors associated with the AtkHyperlink object.</p>
504
+ <p>Flags: Read</p>
505
+ <p>Allowed values: &gt;= 0</p>
506
+ <p>Default value: 0</p>
507
+ </div>
508
+ <hr>
509
+ <div class="refsect2">
510
+ <a name="AtkHyperlink--selected-link"></a><h3>The <code class="literal">“selected-link”</code> property</h3>
511
+ <pre class="programlisting"> “selected-link” <span class="type">gboolean</span></pre>
512
+ <p>Selected link</p>
513
+ <div class="warning">
514
+ <p><code class="literal">AtkHyperlink:selected-link</code> is deprecated and should not be used in newly-written code.</p>
515
+ <p>Since 1.8. This property is deprecated since ATK
516
+ version 1.8. Please use ATK_STATE_FOCUSABLE for all links, and
517
+ ATK_STATE_FOCUSED for focused links.</p>
518
+ </div>
519
+ <p>Flags: Read</p>
520
+ <p>Default value: FALSE</p>
521
+ </div>
522
+ <hr>
523
+ <div class="refsect2">
524
+ <a name="AtkHyperlink--start-index"></a><h3>The <code class="literal">“start-index”</code> property</h3>
525
+ <pre class="programlisting"> “start-index” <span class="type">gint</span></pre>
526
+ <p>The start index of the AtkHyperlink object.</p>
527
+ <p>Flags: Read</p>
528
+ <p>Allowed values: &gt;= 0</p>
529
+ <p>Default value: 0</p>
530
+ </div>
531
+ </div>
532
+ <div class="refsect1">
533
+ <a name="AtkHyperlink.signal-details"></a><h2>Signal Details</h2>
534
+ <div class="refsect2">
535
+ <a name="AtkHyperlink-link-activated"></a><h3>The <code class="literal">“link-activated”</code> signal</h3>
536
+ <pre class="programlisting"><span class="returnvalue">void</span>
537
+ user_function (<a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="type">AtkHyperlink</span></a> *atkhyperlink,
538
+ <span class="type">gpointer</span> user_data)</pre>
539
+ <p>The signal link-activated is emitted when a link is activated.</p>
540
+ <div class="refsect3">
541
+ <a name="id-1.7.3.13.2.5"></a><h4>Parameters</h4>
542
+ <div class="informaltable"><table width="100%" border="0">
543
+ <colgroup>
544
+ <col width="150px" class="parameters_name">
545
+ <col class="parameters_description">
546
+ <col width="200px" class="parameters_annotations">
547
+ </colgroup>
548
+ <tbody>
549
+ <tr>
550
+ <td class="parameter_name"><p>atkhyperlink</p></td>
551
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
552
+ <td class="parameter_annotations"> </td>
553
+ </tr>
554
+ <tr>
555
+ <td class="parameter_name"><p>user_data</p></td>
556
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
557
+ <td class="parameter_annotations"> </td>
558
+ </tr>
559
+ </tbody>
560
+ </table></div>
561
+ </div>
562
+ <p>Flags: Run Last</p>
563
+ </div>
564
+ </div>
565
+ </div>
566
+ <div class="footer">
567
+ <hr>
568
+ Generated by GTK-Doc V1.21.1</div>
569
+ </body>
570
+ </html>