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,286 @@
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: AtkHypertext</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="atk-AtkHyperlinkImpl.html" title="AtkHyperlinImpl">
10
+ <link rel="next" href="AtkImage.html" title="AtkImage">
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="#AtkHypertext.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkHypertext.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_implementations">  <span class="dim">|</span> 
20
+ <a href="#AtkHypertext.implementations" class="shortcut">Known Implementations</a></span><span id="nav_signals">  <span class="dim">|</span> 
21
+ <a href="#AtkHypertext.signals" class="shortcut">Signals</a></span>
22
+ </td>
23
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
24
+ <td><a accesskey="u" href="interfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
25
+ <td><a accesskey="p" href="atk-AtkHyperlinkImpl.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
26
+ <td><a accesskey="n" href="AtkImage.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
27
+ </tr></table>
28
+ <div class="refentry">
29
+ <a name="AtkHypertext"></a><div class="titlepage"></div>
30
+ <div class="refnamediv"><table width="100%"><tr>
31
+ <td valign="top">
32
+ <h2><span class="refentrytitle"><a name="AtkHypertext.top_of_page"></a>AtkHypertext</span></h2>
33
+ <p>AtkHypertext — The ATK interface which provides standard
34
+ mechanism for manipulating hyperlinks.</p>
35
+ </td>
36
+ <td class="gallery_image" valign="top" align="right"></td>
37
+ </tr></table></div>
38
+ <div class="refsect1">
39
+ <a name="AtkHypertext.functions"></a><h2>Functions</h2>
40
+ <div class="informaltable"><table width="100%" border="0">
41
+ <colgroup>
42
+ <col width="150px" class="functions_return">
43
+ <col class="functions_name">
44
+ </colgroup>
45
+ <tbody>
46
+ <tr>
47
+ <td class="function_type">
48
+ <a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="returnvalue">AtkHyperlink</span></a> *
49
+ </td>
50
+ <td class="function_name">
51
+ <a class="link" href="AtkHypertext.html#atk-hypertext-get-link" title="atk_hypertext_get_link ()">atk_hypertext_get_link</a> <span class="c_punctuation">()</span>
52
+ </td>
53
+ </tr>
54
+ <tr>
55
+ <td class="function_type">
56
+ <span class="returnvalue">gint</span>
57
+ </td>
58
+ <td class="function_name">
59
+ <a class="link" href="AtkHypertext.html#atk-hypertext-get-n-links" title="atk_hypertext_get_n_links ()">atk_hypertext_get_n_links</a> <span class="c_punctuation">()</span>
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <td class="function_type">
64
+ <span class="returnvalue">gint</span>
65
+ </td>
66
+ <td class="function_name">
67
+ <a class="link" href="AtkHypertext.html#atk-hypertext-get-link-index" title="atk_hypertext_get_link_index ()">atk_hypertext_get_link_index</a> <span class="c_punctuation">()</span>
68
+ </td>
69
+ </tr>
70
+ </tbody>
71
+ </table></div>
72
+ </div>
73
+ <div class="refsect1">
74
+ <a name="AtkHypertext.signals"></a><h2>Signals</h2>
75
+ <div class="informaltable"><table border="0">
76
+ <colgroup>
77
+ <col width="150px" class="signals_return">
78
+ <col width="300px" class="signals_name">
79
+ <col width="200px" class="signals_flags">
80
+ </colgroup>
81
+ <tbody><tr>
82
+ <td class="signal_type"><span class="returnvalue">void</span></td>
83
+ <td class="signal_name"><a class="link" href="AtkHypertext.html#AtkHypertext-link-selected" title="The “link-selected” signal">link-selected</a></td>
84
+ <td class="signal_flags">Run Last</td>
85
+ </tr></tbody>
86
+ </table></div>
87
+ </div>
88
+ <div class="refsect1">
89
+ <a name="AtkHypertext.other"></a><h2>Types and Values</h2>
90
+ <div class="informaltable"><table width="100%" border="0">
91
+ <colgroup>
92
+ <col width="150px" class="name">
93
+ <col class="description">
94
+ </colgroup>
95
+ <tbody><tr>
96
+ <td class="datatype_keyword"> </td>
97
+ <td class="function_name"><a class="link" href="AtkHypertext.html#AtkHypertext-struct" title="AtkHypertext">AtkHypertext</a></td>
98
+ </tr></tbody>
99
+ </table></div>
100
+ </div>
101
+ <div class="refsect1">
102
+ <a name="AtkHypertext.object-hierarchy"></a><h2>Object Hierarchy</h2>
103
+ <pre class="screen"> GInterface
104
+ <span class="lineart">╰──</span> AtkHypertext
105
+ </pre>
106
+ </div>
107
+ <div class="refsect1">
108
+ <a name="AtkHypertext.implementations"></a><h2>Known Implementations</h2>
109
+ <p>
110
+ AtkHypertext is implemented by
111
+ <a class="link" href="AtkNoOpObject.html" title="AtkNoOpObject">AtkNoOpObject</a>.</p>
112
+ </div>
113
+ <div class="refsect1">
114
+ <a name="AtkHypertext.description"></a><h2>Description</h2>
115
+ <p>An interface used for objects which implement linking between
116
+ multiple resource or content locations, or multiple 'markers'
117
+ within a single document. A Hypertext instance is associated with
118
+ one or more Hyperlinks, which are associated with particular
119
+ offsets within the Hypertext's included content. While this
120
+ interface is derived from Text, there is no requirement that
121
+ Hypertext instances have textual content; they may implement Image
122
+ as well, and Hyperlinks need not have non-zero text offsets.</p>
123
+ </div>
124
+ <div class="refsect1">
125
+ <a name="AtkHypertext.functions_details"></a><h2>Functions</h2>
126
+ <div class="refsect2">
127
+ <a name="atk-hypertext-get-link"></a><h3>atk_hypertext_get_link ()</h3>
128
+ <pre class="programlisting"><a class="link" href="AtkHyperlink.html" title="AtkHyperlink"><span class="returnvalue">AtkHyperlink</span></a> *
129
+ atk_hypertext_get_link (<em class="parameter"><code><a class="link" href="AtkHypertext.html" title="AtkHypertext"><span class="type">AtkHypertext</span></a> *hypertext</code></em>,
130
+ <em class="parameter"><code><span class="type">gint</span> link_index</code></em>);</pre>
131
+ <p>Gets the link in this hypertext document at index
132
+ <em class="parameter"><code>link_index</code></em>
133
+ </p>
134
+ <div class="refsect3">
135
+ <a name="id-1.5.7.9.2.5"></a><h4>Parameters</h4>
136
+ <div class="informaltable"><table width="100%" border="0">
137
+ <colgroup>
138
+ <col width="150px" class="parameters_name">
139
+ <col class="parameters_description">
140
+ <col width="200px" class="parameters_annotations">
141
+ </colgroup>
142
+ <tbody>
143
+ <tr>
144
+ <td class="parameter_name"><p>hypertext</p></td>
145
+ <td class="parameter_description"><p>an <a class="link" href="AtkHypertext.html" title="AtkHypertext"><span class="type">AtkHypertext</span></a></p></td>
146
+ <td class="parameter_annotations"> </td>
147
+ </tr>
148
+ <tr>
149
+ <td class="parameter_name"><p>link_index</p></td>
150
+ <td class="parameter_description"><p>an integer specifying the desired link</p></td>
151
+ <td class="parameter_annotations"> </td>
152
+ </tr>
153
+ </tbody>
154
+ </table></div>
155
+ </div>
156
+ <div class="refsect3">
157
+ <a name="id-1.5.7.9.2.6"></a><h4>Returns</h4>
158
+ <p> the link in this hypertext document at
159
+ index <em class="parameter"><code>link_index</code></em>
160
+ . </p>
161
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
162
+ </div>
163
+ </div>
164
+ <hr>
165
+ <div class="refsect2">
166
+ <a name="atk-hypertext-get-n-links"></a><h3>atk_hypertext_get_n_links ()</h3>
167
+ <pre class="programlisting"><span class="returnvalue">gint</span>
168
+ atk_hypertext_get_n_links (<em class="parameter"><code><a class="link" href="AtkHypertext.html" title="AtkHypertext"><span class="type">AtkHypertext</span></a> *hypertext</code></em>);</pre>
169
+ <p>Gets the number of links within this hypertext document.</p>
170
+ <div class="refsect3">
171
+ <a name="id-1.5.7.9.3.5"></a><h4>Parameters</h4>
172
+ <div class="informaltable"><table width="100%" border="0">
173
+ <colgroup>
174
+ <col width="150px" class="parameters_name">
175
+ <col class="parameters_description">
176
+ <col width="200px" class="parameters_annotations">
177
+ </colgroup>
178
+ <tbody><tr>
179
+ <td class="parameter_name"><p>hypertext</p></td>
180
+ <td class="parameter_description"><p>an <a class="link" href="AtkHypertext.html" title="AtkHypertext"><span class="type">AtkHypertext</span></a></p></td>
181
+ <td class="parameter_annotations"> </td>
182
+ </tr></tbody>
183
+ </table></div>
184
+ </div>
185
+ <div class="refsect3">
186
+ <a name="id-1.5.7.9.3.6"></a><h4>Returns</h4>
187
+ <p> the number of links within this hypertext document</p>
188
+ <p></p>
189
+ </div>
190
+ </div>
191
+ <hr>
192
+ <div class="refsect2">
193
+ <a name="atk-hypertext-get-link-index"></a><h3>atk_hypertext_get_link_index ()</h3>
194
+ <pre class="programlisting"><span class="returnvalue">gint</span>
195
+ atk_hypertext_get_link_index (<em class="parameter"><code><a class="link" href="AtkHypertext.html" title="AtkHypertext"><span class="type">AtkHypertext</span></a> *hypertext</code></em>,
196
+ <em class="parameter"><code><span class="type">gint</span> char_index</code></em>);</pre>
197
+ <p>Gets the index into the array of hyperlinks that is associated with
198
+ the character specified by <em class="parameter"><code>char_index</code></em>
199
+ .</p>
200
+ <div class="refsect3">
201
+ <a name="id-1.5.7.9.4.5"></a><h4>Parameters</h4>
202
+ <div class="informaltable"><table width="100%" border="0">
203
+ <colgroup>
204
+ <col width="150px" class="parameters_name">
205
+ <col class="parameters_description">
206
+ <col width="200px" class="parameters_annotations">
207
+ </colgroup>
208
+ <tbody>
209
+ <tr>
210
+ <td class="parameter_name"><p>hypertext</p></td>
211
+ <td class="parameter_description"><p>an <a class="link" href="AtkHypertext.html" title="AtkHypertext"><span class="type">AtkHypertext</span></a></p></td>
212
+ <td class="parameter_annotations"> </td>
213
+ </tr>
214
+ <tr>
215
+ <td class="parameter_name"><p>char_index</p></td>
216
+ <td class="parameter_description"><p>a character index</p></td>
217
+ <td class="parameter_annotations"> </td>
218
+ </tr>
219
+ </tbody>
220
+ </table></div>
221
+ </div>
222
+ <div class="refsect3">
223
+ <a name="id-1.5.7.9.4.6"></a><h4>Returns</h4>
224
+ <p> an index into the array of hyperlinks in <em class="parameter"><code>hypertext</code></em>
225
+ ,
226
+ or -1 if there is no hyperlink associated with this character.</p>
227
+ <p></p>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ <div class="refsect1">
232
+ <a name="AtkHypertext.other_details"></a><h2>Types and Values</h2>
233
+ <div class="refsect2">
234
+ <a name="AtkHypertext-struct"></a><h3>AtkHypertext</h3>
235
+ <pre class="programlisting">typedef struct _AtkHypertext AtkHypertext;</pre>
236
+ <p>
237
+ </p>
238
+ </div>
239
+ </div>
240
+ <div class="refsect1">
241
+ <a name="AtkHypertext.signal-details"></a><h2>Signal Details</h2>
242
+ <div class="refsect2">
243
+ <a name="AtkHypertext-link-selected"></a><h3>The <code class="literal">“link-selected”</code> signal</h3>
244
+ <pre class="programlisting"><span class="returnvalue">void</span>
245
+ user_function (<a class="link" href="AtkHypertext.html" title="AtkHypertext"><span class="type">AtkHypertext</span></a> *atkhypertext,
246
+ <span class="type">gint</span> arg1,
247
+ <span class="type">gpointer</span> user_data)</pre>
248
+ <p>The "link-selected" signal is emitted by an AtkHyperText
249
+ object when one of the hyperlinks associated with the object
250
+ is selected.</p>
251
+ <div class="refsect3">
252
+ <a name="id-1.5.7.11.2.5"></a><h4>Parameters</h4>
253
+ <div class="informaltable"><table width="100%" border="0">
254
+ <colgroup>
255
+ <col width="150px" class="parameters_name">
256
+ <col class="parameters_description">
257
+ <col width="200px" class="parameters_annotations">
258
+ </colgroup>
259
+ <tbody>
260
+ <tr>
261
+ <td class="parameter_name"><p>atkhypertext</p></td>
262
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
263
+ <td class="parameter_annotations"> </td>
264
+ </tr>
265
+ <tr>
266
+ <td class="parameter_name"><p>arg1</p></td>
267
+ <td class="parameter_description"><p>the index of the hyperlink which is selected</p></td>
268
+ <td class="parameter_annotations"> </td>
269
+ </tr>
270
+ <tr>
271
+ <td class="parameter_name"><p>user_data</p></td>
272
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
273
+ <td class="parameter_annotations"> </td>
274
+ </tr>
275
+ </tbody>
276
+ </table></div>
277
+ </div>
278
+ <p>Flags: Run Last</p>
279
+ </div>
280
+ </div>
281
+ </div>
282
+ <div class="footer">
283
+ <hr>
284
+ Generated by GTK-Doc V1.21.1</div>
285
+ </body>
286
+ </html>
@@ -0,0 +1,319 @@
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: AtkImage</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="AtkHypertext.html" title="AtkHypertext">
10
+ <link rel="next" href="AtkSelection.html" title="AtkSelection">
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="#AtkImage.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkImage.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_implementations">  <span class="dim">|</span> 
20
+ <a href="#AtkImage.implementations" class="shortcut">Known Implementations</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="interfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
24
+ <td><a accesskey="p" href="AtkHypertext.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25
+ <td><a accesskey="n" href="AtkSelection.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="AtkImage"></a><div class="titlepage"></div>
29
+ <div class="refnamediv"><table width="100%"><tr>
30
+ <td valign="top">
31
+ <h2><span class="refentrytitle"><a name="AtkImage.top_of_page"></a>AtkImage</span></h2>
32
+ <p>AtkImage — The ATK Interface implemented by components
33
+ which expose image or pixmap content on-screen.</p>
34
+ </td>
35
+ <td class="gallery_image" valign="top" align="right"></td>
36
+ </tr></table></div>
37
+ <div class="refsect1">
38
+ <a name="AtkImage.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
+ <span class="returnvalue">void</span>
48
+ </td>
49
+ <td class="function_name">
50
+ <a class="link" href="AtkImage.html#atk-image-get-image-position" title="atk_image_get_image_position ()">atk_image_get_image_position</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="AtkImage.html#atk-image-get-image-description" title="atk_image_get_image_description ()">atk_image_get_image_description</a> <span class="c_punctuation">()</span>
58
+ </td>
59
+ </tr>
60
+ <tr>
61
+ <td class="function_type">
62
+ <span class="returnvalue">gboolean</span>
63
+ </td>
64
+ <td class="function_name">
65
+ <a class="link" href="AtkImage.html#atk-image-set-image-description" title="atk_image_set_image_description ()">atk_image_set_image_description</a> <span class="c_punctuation">()</span>
66
+ </td>
67
+ </tr>
68
+ <tr>
69
+ <td class="function_type">
70
+ <span class="returnvalue">void</span>
71
+ </td>
72
+ <td class="function_name">
73
+ <a class="link" href="AtkImage.html#atk-image-get-image-size" title="atk_image_get_image_size ()">atk_image_get_image_size</a> <span class="c_punctuation">()</span>
74
+ </td>
75
+ </tr>
76
+ <tr>
77
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
78
+ </td>
79
+ <td class="function_name">
80
+ <a class="link" href="AtkImage.html#atk-image-get-image-locale" title="atk_image_get_image_locale ()">atk_image_get_image_locale</a> <span class="c_punctuation">()</span>
81
+ </td>
82
+ </tr>
83
+ </tbody>
84
+ </table></div>
85
+ </div>
86
+ <div class="refsect1">
87
+ <a name="AtkImage.other"></a><h2>Types and Values</h2>
88
+ <div class="informaltable"><table width="100%" border="0">
89
+ <colgroup>
90
+ <col width="150px" class="name">
91
+ <col class="description">
92
+ </colgroup>
93
+ <tbody><tr>
94
+ <td class="datatype_keyword"> </td>
95
+ <td class="function_name"><a class="link" href="AtkImage.html#AtkImage-struct" title="AtkImage">AtkImage</a></td>
96
+ </tr></tbody>
97
+ </table></div>
98
+ </div>
99
+ <div class="refsect1">
100
+ <a name="AtkImage.object-hierarchy"></a><h2>Object Hierarchy</h2>
101
+ <pre class="screen"> GInterface
102
+ <span class="lineart">╰──</span> AtkImage
103
+ </pre>
104
+ </div>
105
+ <div class="refsect1">
106
+ <a name="AtkImage.implementations"></a><h2>Known Implementations</h2>
107
+ <p>
108
+ AtkImage is implemented by
109
+ <a class="link" href="AtkNoOpObject.html" title="AtkNoOpObject">AtkNoOpObject</a>.</p>
110
+ </div>
111
+ <div class="refsect1">
112
+ <a name="AtkImage.description"></a><h2>Description</h2>
113
+ <p><a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a> should be implemented by <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> subtypes on behalf of
114
+ components which display image/pixmap information onscreen, and
115
+ which provide information (other than just widget borders, etc.)
116
+ via that image content. For instance, icons, buttons with icons,
117
+ toolbar elements, and image viewing panes typically should
118
+ implement <a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a>.</p>
119
+ <p><a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a> primarily provides two types of information: coordinate
120
+ information (useful for screen review mode of screenreaders, and
121
+ for use by onscreen magnifiers), and descriptive information. The
122
+ descriptive information is provided for alternative, text-only
123
+ presentation of the most significant information present in the
124
+ image.</p>
125
+ </div>
126
+ <div class="refsect1">
127
+ <a name="AtkImage.functions_details"></a><h2>Functions</h2>
128
+ <div class="refsect2">
129
+ <a name="atk-image-get-image-position"></a><h3>atk_image_get_image_position ()</h3>
130
+ <pre class="programlisting"><span class="returnvalue">void</span>
131
+ atk_image_get_image_position (<em class="parameter"><code><a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a> *image</code></em>,
132
+ <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
133
+ <em class="parameter"><code><span class="type">gint</span> *y</code></em>,
134
+ <em class="parameter"><code><a class="link" href="AtkUtil.html#AtkCoordType" title="enum AtkCoordType"><span class="type">AtkCoordType</span></a> coord_type</code></em>);</pre>
135
+ <p>Gets the position of the image in the form of a point specifying the
136
+ images top-left corner.</p>
137
+ <div class="refsect3">
138
+ <a name="id-1.5.8.8.2.5"></a><h4>Parameters</h4>
139
+ <div class="informaltable"><table width="100%" border="0">
140
+ <colgroup>
141
+ <col width="150px" class="parameters_name">
142
+ <col class="parameters_description">
143
+ <col width="200px" class="parameters_annotations">
144
+ </colgroup>
145
+ <tbody>
146
+ <tr>
147
+ <td class="parameter_name"><p>image</p></td>
148
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkImageIface</p></td>
149
+ <td class="parameter_annotations"> </td>
150
+ </tr>
151
+ <tr>
152
+ <td class="parameter_name"><p>x</p></td>
153
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put x coordinate position; otherwise, -1 if value cannot be obtained.</p></td>
154
+ <td class="parameter_annotations"> </td>
155
+ </tr>
156
+ <tr>
157
+ <td class="parameter_name"><p>y</p></td>
158
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put y coordinate position; otherwise, -1 if value cannot be obtained.</p></td>
159
+ <td class="parameter_annotations"> </td>
160
+ </tr>
161
+ <tr>
162
+ <td class="parameter_name"><p>coord_type</p></td>
163
+ <td class="parameter_description"><p>specifies whether the coordinates are relative to the screen
164
+ or to the components top level window</p></td>
165
+ <td class="parameter_annotations"> </td>
166
+ </tr>
167
+ </tbody>
168
+ </table></div>
169
+ </div>
170
+ </div>
171
+ <hr>
172
+ <div class="refsect2">
173
+ <a name="atk-image-get-image-description"></a><h3>atk_image_get_image_description ()</h3>
174
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
175
+ atk_image_get_image_description (<em class="parameter"><code><a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a> *image</code></em>);</pre>
176
+ <p>Get a textual description of this image.</p>
177
+ <div class="refsect3">
178
+ <a name="id-1.5.8.8.3.5"></a><h4>Parameters</h4>
179
+ <div class="informaltable"><table width="100%" border="0">
180
+ <colgroup>
181
+ <col width="150px" class="parameters_name">
182
+ <col class="parameters_description">
183
+ <col width="200px" class="parameters_annotations">
184
+ </colgroup>
185
+ <tbody><tr>
186
+ <td class="parameter_name"><p>image</p></td>
187
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkImageIface</p></td>
188
+ <td class="parameter_annotations"> </td>
189
+ </tr></tbody>
190
+ </table></div>
191
+ </div>
192
+ <div class="refsect3">
193
+ <a name="id-1.5.8.8.3.6"></a><h4>Returns</h4>
194
+ <p> a string representing the image description</p>
195
+ <p></p>
196
+ </div>
197
+ </div>
198
+ <hr>
199
+ <div class="refsect2">
200
+ <a name="atk-image-set-image-description"></a><h3>atk_image_set_image_description ()</h3>
201
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
202
+ atk_image_set_image_description (<em class="parameter"><code><a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a> *image</code></em>,
203
+ <em class="parameter"><code>const <span class="type">gchar</span> *description</code></em>);</pre>
204
+ <p>Sets the textual description for this image.</p>
205
+ <div class="refsect3">
206
+ <a name="id-1.5.8.8.4.5"></a><h4>Parameters</h4>
207
+ <div class="informaltable"><table width="100%" border="0">
208
+ <colgroup>
209
+ <col width="150px" class="parameters_name">
210
+ <col class="parameters_description">
211
+ <col width="200px" class="parameters_annotations">
212
+ </colgroup>
213
+ <tbody>
214
+ <tr>
215
+ <td class="parameter_name"><p>image</p></td>
216
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkImageIface</p></td>
217
+ <td class="parameter_annotations"> </td>
218
+ </tr>
219
+ <tr>
220
+ <td class="parameter_name"><p>description</p></td>
221
+ <td class="parameter_description"><p>a string description to set for <em class="parameter"><code>image</code></em>
222
+ </p></td>
223
+ <td class="parameter_annotations"> </td>
224
+ </tr>
225
+ </tbody>
226
+ </table></div>
227
+ </div>
228
+ <div class="refsect3">
229
+ <a name="id-1.5.8.8.4.6"></a><h4>Returns</h4>
230
+ <p> boolean TRUE, or FALSE if operation could
231
+ not be completed.</p>
232
+ <p></p>
233
+ </div>
234
+ </div>
235
+ <hr>
236
+ <div class="refsect2">
237
+ <a name="atk-image-get-image-size"></a><h3>atk_image_get_image_size ()</h3>
238
+ <pre class="programlisting"><span class="returnvalue">void</span>
239
+ atk_image_get_image_size (<em class="parameter"><code><a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a> *image</code></em>,
240
+ <em class="parameter"><code><span class="type">gint</span> *width</code></em>,
241
+ <em class="parameter"><code><span class="type">gint</span> *height</code></em>);</pre>
242
+ <p>Get the width and height in pixels for the specified image.
243
+ The values of <em class="parameter"><code>width</code></em>
244
+ and <em class="parameter"><code>height</code></em>
245
+ are returned as -1 if the
246
+ values cannot be obtained (for instance, if the object is not onscreen).</p>
247
+ <div class="refsect3">
248
+ <a name="id-1.5.8.8.5.5"></a><h4>Parameters</h4>
249
+ <div class="informaltable"><table width="100%" border="0">
250
+ <colgroup>
251
+ <col width="150px" class="parameters_name">
252
+ <col class="parameters_description">
253
+ <col width="200px" class="parameters_annotations">
254
+ </colgroup>
255
+ <tbody>
256
+ <tr>
257
+ <td class="parameter_name"><p>image</p></td>
258
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkImageIface</p></td>
259
+ <td class="parameter_annotations"> </td>
260
+ </tr>
261
+ <tr>
262
+ <td class="parameter_name"><p>width</p></td>
263
+ <td class="parameter_description"><p>filled with the image width, or -1 if the value cannot be obtained.</p></td>
264
+ <td class="parameter_annotations"> </td>
265
+ </tr>
266
+ <tr>
267
+ <td class="parameter_name"><p>height</p></td>
268
+ <td class="parameter_description"><p>filled with the image height, or -1 if the value cannot be obtained.</p></td>
269
+ <td class="parameter_annotations"> </td>
270
+ </tr>
271
+ </tbody>
272
+ </table></div>
273
+ </div>
274
+ </div>
275
+ <hr>
276
+ <div class="refsect2">
277
+ <a name="atk-image-get-image-locale"></a><h3>atk_image_get_image_locale ()</h3>
278
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
279
+ atk_image_get_image_locale (<em class="parameter"><code><a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a> *image</code></em>);</pre>
280
+ <p>Since ATK 1.12</p>
281
+ <div class="refsect3">
282
+ <a name="id-1.5.8.8.6.5"></a><h4>Parameters</h4>
283
+ <div class="informaltable"><table width="100%" border="0">
284
+ <colgroup>
285
+ <col width="150px" class="parameters_name">
286
+ <col class="parameters_description">
287
+ <col width="200px" class="parameters_annotations">
288
+ </colgroup>
289
+ <tbody><tr>
290
+ <td class="parameter_name"><p>image</p></td>
291
+ <td class="parameter_description"><p>An <a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a></p></td>
292
+ <td class="parameter_annotations"> </td>
293
+ </tr></tbody>
294
+ </table></div>
295
+ </div>
296
+ <div class="refsect3">
297
+ <a name="id-1.5.8.8.6.6"></a><h4>Returns</h4>
298
+ <p> a string corresponding to the POSIX
299
+ LC_MESSAGES locale used by the image description, or <code class="literal">NULL</code> if the
300
+ image does not specify a locale. </p>
301
+ <p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>]</span></p>
302
+ </div>
303
+ </div>
304
+ </div>
305
+ <div class="refsect1">
306
+ <a name="AtkImage.other_details"></a><h2>Types and Values</h2>
307
+ <div class="refsect2">
308
+ <a name="AtkImage-struct"></a><h3>AtkImage</h3>
309
+ <pre class="programlisting">typedef struct _AtkImage AtkImage;</pre>
310
+ <p>
311
+ </p>
312
+ </div>
313
+ </div>
314
+ </div>
315
+ <div class="footer">
316
+ <hr>
317
+ Generated by GTK-Doc V1.21.1</div>
318
+ </body>
319
+ </html>