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,714 @@
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: AtkDocument</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="AtkComponent.html" title="AtkComponent">
10
+ <link rel="next" href="AtkEditableText.html" title="AtkEditableText">
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="#AtkDocument.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkDocument.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_implementations">  <span class="dim">|</span> 
20
+ <a href="#AtkDocument.implementations" class="shortcut">Known Implementations</a></span><span id="nav_signals">  <span class="dim">|</span> 
21
+ <a href="#AtkDocument.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="AtkComponent.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
26
+ <td><a accesskey="n" href="AtkEditableText.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="AtkDocument"></a><div class="titlepage"></div>
30
+ <div class="refnamediv"><table width="100%"><tr>
31
+ <td valign="top">
32
+ <h2><span class="refentrytitle"><a name="AtkDocument.top_of_page"></a>AtkDocument</span></h2>
33
+ <p>AtkDocument — The ATK interface which represents the toplevel
34
+ container for document content.</p>
35
+ </td>
36
+ <td class="gallery_image" valign="top" align="right"></td>
37
+ </tr></table></div>
38
+ <div class="refsect1">
39
+ <a name="AtkDocument.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">const <span class="returnvalue">gchar</span> *
48
+ </td>
49
+ <td class="function_name">
50
+ <a class="link" href="AtkDocument.html#atk-document-get-document-type" title="atk_document_get_document_type ()">atk_document_get_document_type</a> <span class="c_punctuation">()</span>
51
+ </td>
52
+ </tr>
53
+ <tr>
54
+ <td class="function_type">
55
+ <span class="returnvalue">gpointer</span>
56
+ </td>
57
+ <td class="function_name">
58
+ <a class="link" href="AtkDocument.html#atk-document-get-document" title="atk_document_get_document ()">atk_document_get_document</a> <span class="c_punctuation">()</span>
59
+ </td>
60
+ </tr>
61
+ <tr>
62
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
63
+ </td>
64
+ <td class="function_name">
65
+ <a class="link" href="AtkDocument.html#atk-document-get-attribute-value" title="atk_document_get_attribute_value ()">atk_document_get_attribute_value</a> <span class="c_punctuation">()</span>
66
+ </td>
67
+ </tr>
68
+ <tr>
69
+ <td class="function_type">
70
+ <span class="returnvalue">gboolean</span>
71
+ </td>
72
+ <td class="function_name">
73
+ <a class="link" href="AtkDocument.html#atk-document-set-attribute-value" title="atk_document_set_attribute_value ()">atk_document_set_attribute_value</a> <span class="c_punctuation">()</span>
74
+ </td>
75
+ </tr>
76
+ <tr>
77
+ <td class="function_type">
78
+ <a class="link" href="AtkObject.html#AtkAttributeSet" title="AtkAttributeSet"><span class="returnvalue">AtkAttributeSet</span></a> *
79
+ </td>
80
+ <td class="function_name">
81
+ <a class="link" href="AtkDocument.html#atk-document-get-attributes" title="atk_document_get_attributes ()">atk_document_get_attributes</a> <span class="c_punctuation">()</span>
82
+ </td>
83
+ </tr>
84
+ <tr>
85
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
86
+ </td>
87
+ <td class="function_name">
88
+ <a class="link" href="AtkDocument.html#atk-document-get-locale" title="atk_document_get_locale ()">atk_document_get_locale</a> <span class="c_punctuation">()</span>
89
+ </td>
90
+ </tr>
91
+ <tr>
92
+ <td class="function_type">
93
+ <span class="returnvalue">gint</span>
94
+ </td>
95
+ <td class="function_name">
96
+ <a class="link" href="AtkDocument.html#atk-document-get-current-page-number" title="atk_document_get_current_page_number ()">atk_document_get_current_page_number</a> <span class="c_punctuation">()</span>
97
+ </td>
98
+ </tr>
99
+ <tr>
100
+ <td class="function_type">
101
+ <span class="returnvalue">gint</span>
102
+ </td>
103
+ <td class="function_name">
104
+ <a class="link" href="AtkDocument.html#atk-document-get-page-count" title="atk_document_get_page_count ()">atk_document_get_page_count</a> <span class="c_punctuation">()</span>
105
+ </td>
106
+ </tr>
107
+ </tbody>
108
+ </table></div>
109
+ </div>
110
+ <div class="refsect1">
111
+ <a name="AtkDocument.signals"></a><h2>Signals</h2>
112
+ <div class="informaltable"><table border="0">
113
+ <colgroup>
114
+ <col width="150px" class="signals_return">
115
+ <col width="300px" class="signals_name">
116
+ <col width="200px" class="signals_flags">
117
+ </colgroup>
118
+ <tbody>
119
+ <tr>
120
+ <td class="signal_type"><span class="returnvalue">void</span></td>
121
+ <td class="signal_name"><a class="link" href="AtkDocument.html#AtkDocument-load-complete" title="The “load-complete” signal">load-complete</a></td>
122
+ <td class="signal_flags">Run Last</td>
123
+ </tr>
124
+ <tr>
125
+ <td class="signal_type"><span class="returnvalue">void</span></td>
126
+ <td class="signal_name"><a class="link" href="AtkDocument.html#AtkDocument-load-stopped" title="The “load-stopped” signal">load-stopped</a></td>
127
+ <td class="signal_flags">Run Last</td>
128
+ </tr>
129
+ <tr>
130
+ <td class="signal_type"><span class="returnvalue">void</span></td>
131
+ <td class="signal_name"><a class="link" href="AtkDocument.html#AtkDocument-page-changed" title="The “page-changed” signal">page-changed</a></td>
132
+ <td class="signal_flags">Run Last</td>
133
+ </tr>
134
+ <tr>
135
+ <td class="signal_type"><span class="returnvalue">void</span></td>
136
+ <td class="signal_name"><a class="link" href="AtkDocument.html#AtkDocument-reload" title="The “reload” signal">reload</a></td>
137
+ <td class="signal_flags">Run Last</td>
138
+ </tr>
139
+ </tbody>
140
+ </table></div>
141
+ </div>
142
+ <div class="refsect1">
143
+ <a name="AtkDocument.other"></a><h2>Types and Values</h2>
144
+ <div class="informaltable"><table width="100%" border="0">
145
+ <colgroup>
146
+ <col width="150px" class="name">
147
+ <col class="description">
148
+ </colgroup>
149
+ <tbody>
150
+ <tr>
151
+ <td class="datatype_keyword"> </td>
152
+ <td class="function_name"><a class="link" href="AtkDocument.html#AtkDocument-struct" title="AtkDocument">AtkDocument</a></td>
153
+ </tr>
154
+ <tr>
155
+ <td class="datatype_keyword">struct</td>
156
+ <td class="function_name"><a class="link" href="AtkDocument.html#AtkDocumentIface" title="struct AtkDocumentIface">AtkDocumentIface</a></td>
157
+ </tr>
158
+ </tbody>
159
+ </table></div>
160
+ </div>
161
+ <div class="refsect1">
162
+ <a name="AtkDocument.object-hierarchy"></a><h2>Object Hierarchy</h2>
163
+ <pre class="screen"> GInterface
164
+ <span class="lineart">╰──</span> AtkDocument
165
+ </pre>
166
+ </div>
167
+ <div class="refsect1">
168
+ <a name="AtkDocument.implementations"></a><h2>Known Implementations</h2>
169
+ <p>
170
+ AtkDocument is implemented by
171
+ <a class="link" href="AtkNoOpObject.html" title="AtkNoOpObject">AtkNoOpObject</a>.</p>
172
+ </div>
173
+ <div class="refsect1">
174
+ <a name="AtkDocument.description"></a><h2>Description</h2>
175
+ <p>The AtkDocument interface should be supported by any object whose
176
+ content is a representation or view of a document. The AtkDocument
177
+ interface should appear on the toplevel container for the document
178
+ content; however AtkDocument instances may be nested (i.e. an
179
+ AtkDocument may be a descendant of another AtkDocument) in those
180
+ cases where one document contains "embedded content" which can
181
+ reasonably be considered a document in its own right.</p>
182
+ </div>
183
+ <div class="refsect1">
184
+ <a name="AtkDocument.functions_details"></a><h2>Functions</h2>
185
+ <div class="refsect2">
186
+ <a name="atk-document-get-document-type"></a><h3>atk_document_get_document_type ()</h3>
187
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
188
+ atk_document_get_document_type (<em class="parameter"><code><a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *document</code></em>);</pre>
189
+ <div class="warning">
190
+ <p><code class="literal">atk_document_get_document_type</code> is deprecated and should not be used in newly-written code.</p>
191
+ <p>Since 2.12. Please use <a class="link" href="AtkDocument.html#atk-document-get-attributes" title="atk_document_get_attributes ()"><code class="function">atk_document_get_attributes()</code></a> to
192
+ ask for the document type if it applies.</p>
193
+ </div>
194
+ <p>Gets a string indicating the document type.</p>
195
+ <div class="refsect3">
196
+ <a name="id-1.5.4.9.2.6"></a><h4>Parameters</h4>
197
+ <div class="informaltable"><table width="100%" border="0">
198
+ <colgroup>
199
+ <col width="150px" class="parameters_name">
200
+ <col class="parameters_description">
201
+ <col width="200px" class="parameters_annotations">
202
+ </colgroup>
203
+ <tbody><tr>
204
+ <td class="parameter_name"><p>document</p></td>
205
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkDocumentIface</p></td>
206
+ <td class="parameter_annotations"> </td>
207
+ </tr></tbody>
208
+ </table></div>
209
+ </div>
210
+ <div class="refsect3">
211
+ <a name="id-1.5.4.9.2.7"></a><h4>Returns</h4>
212
+ <p> a string indicating the document type</p>
213
+ <p></p>
214
+ </div>
215
+ </div>
216
+ <hr>
217
+ <div class="refsect2">
218
+ <a name="atk-document-get-document"></a><h3>atk_document_get_document ()</h3>
219
+ <pre class="programlisting"><span class="returnvalue">gpointer</span>
220
+ atk_document_get_document (<em class="parameter"><code><a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *document</code></em>);</pre>
221
+ <div class="warning">
222
+ <p><code class="literal">atk_document_get_document</code> is deprecated and should not be used in newly-written code.</p>
223
+ <p>Since 2.12. <em class="parameter"><code>document</code></em>
224
+ is already a representation of
225
+ the document. Use it directly, or one of his children, as an
226
+ instance of the DOM.</p>
227
+ </div>
228
+ <p>Gets a <code class="literal">gpointer</code> that points to an instance of the DOM. It is
229
+ up to the caller to check atk_document_get_type to determine
230
+ how to cast this pointer.</p>
231
+ <div class="refsect3">
232
+ <a name="id-1.5.4.9.3.6"></a><h4>Parameters</h4>
233
+ <div class="informaltable"><table width="100%" border="0">
234
+ <colgroup>
235
+ <col width="150px" class="parameters_name">
236
+ <col class="parameters_description">
237
+ <col width="200px" class="parameters_annotations">
238
+ </colgroup>
239
+ <tbody><tr>
240
+ <td class="parameter_name"><p>document</p></td>
241
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkDocumentIface</p></td>
242
+ <td class="parameter_annotations"> </td>
243
+ </tr></tbody>
244
+ </table></div>
245
+ </div>
246
+ <div class="refsect3">
247
+ <a name="id-1.5.4.9.3.7"></a><h4>Returns</h4>
248
+ <p> a <code class="literal">gpointer</code> that points to an instance of the DOM. </p>
249
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
250
+ </div>
251
+ </div>
252
+ <hr>
253
+ <div class="refsect2">
254
+ <a name="atk-document-get-attribute-value"></a><h3>atk_document_get_attribute_value ()</h3>
255
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
256
+ atk_document_get_attribute_value (<em class="parameter"><code><a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *document</code></em>,
257
+ <em class="parameter"><code>const <span class="type">gchar</span> *attribute_name</code></em>);</pre>
258
+ <div class="refsect3">
259
+ <a name="id-1.5.4.9.4.4"></a><h4>Parameters</h4>
260
+ <div class="informaltable"><table width="100%" border="0">
261
+ <colgroup>
262
+ <col width="150px" class="parameters_name">
263
+ <col class="parameters_description">
264
+ <col width="200px" class="parameters_annotations">
265
+ </colgroup>
266
+ <tbody>
267
+ <tr>
268
+ <td class="parameter_name"><p>document</p></td>
269
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkDocumentIface</p></td>
270
+ <td class="parameter_annotations"> </td>
271
+ </tr>
272
+ <tr>
273
+ <td class="parameter_name"><p>attribute_name</p></td>
274
+ <td class="parameter_description"><p>a character string representing the name of the attribute
275
+ whose value is being queried.</p></td>
276
+ <td class="parameter_annotations"> </td>
277
+ </tr>
278
+ </tbody>
279
+ </table></div>
280
+ </div>
281
+ <div class="refsect3">
282
+ <a name="id-1.5.4.9.4.5"></a><h4>Returns</h4>
283
+ <p> a string value associated with the named
284
+ attribute for this document, or NULL if a value for
285
+ <span class="type">attribute_name</span> has not been specified for this document. </p>
286
+ <p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>]</span></p>
287
+ </div>
288
+ <p class="since">Since 1.12</p>
289
+ </div>
290
+ <hr>
291
+ <div class="refsect2">
292
+ <a name="atk-document-set-attribute-value"></a><h3>atk_document_set_attribute_value ()</h3>
293
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
294
+ atk_document_set_attribute_value (<em class="parameter"><code><a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *document</code></em>,
295
+ <em class="parameter"><code>const <span class="type">gchar</span> *attribute_name</code></em>,
296
+ <em class="parameter"><code>const <span class="type">gchar</span> *attribute_value</code></em>);</pre>
297
+ <div class="refsect3">
298
+ <a name="id-1.5.4.9.5.4"></a><h4>Parameters</h4>
299
+ <div class="informaltable"><table width="100%" border="0">
300
+ <colgroup>
301
+ <col width="150px" class="parameters_name">
302
+ <col class="parameters_description">
303
+ <col width="200px" class="parameters_annotations">
304
+ </colgroup>
305
+ <tbody>
306
+ <tr>
307
+ <td class="parameter_name"><p>document</p></td>
308
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkDocumentIface</p></td>
309
+ <td class="parameter_annotations"> </td>
310
+ </tr>
311
+ <tr>
312
+ <td class="parameter_name"><p>attribute_name</p></td>
313
+ <td class="parameter_description"><p>a character string representing the name of the attribute
314
+ whose value is being set.</p></td>
315
+ <td class="parameter_annotations"> </td>
316
+ </tr>
317
+ <tr>
318
+ <td class="parameter_name"><p>attribute_value</p></td>
319
+ <td class="parameter_description"><p>a string value to be associated with <span class="type">attribute_name</span>.</p></td>
320
+ <td class="parameter_annotations"> </td>
321
+ </tr>
322
+ </tbody>
323
+ </table></div>
324
+ </div>
325
+ <div class="refsect3">
326
+ <a name="id-1.5.4.9.5.5"></a><h4>Returns</h4>
327
+ <p> TRUE if <span class="type">value</span> is successfully associated with <span class="type">attribute_name</span>
328
+ for this document, FALSE otherwise (e.g. if the document does not
329
+ allow the attribute to be modified).</p>
330
+ <p></p>
331
+ </div>
332
+ <p class="since">Since 1.12</p>
333
+ </div>
334
+ <hr>
335
+ <div class="refsect2">
336
+ <a name="atk-document-get-attributes"></a><h3>atk_document_get_attributes ()</h3>
337
+ <pre class="programlisting"><a class="link" href="AtkObject.html#AtkAttributeSet" title="AtkAttributeSet"><span class="returnvalue">AtkAttributeSet</span></a> *
338
+ atk_document_get_attributes (<em class="parameter"><code><a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *document</code></em>);</pre>
339
+ <p>Gets an AtkAttributeSet which describes document-wide
340
+ attributes as name-value pairs.</p>
341
+ <div class="refsect3">
342
+ <a name="id-1.5.4.9.6.5"></a><h4>Parameters</h4>
343
+ <div class="informaltable"><table width="100%" border="0">
344
+ <colgroup>
345
+ <col width="150px" class="parameters_name">
346
+ <col class="parameters_description">
347
+ <col width="200px" class="parameters_annotations">
348
+ </colgroup>
349
+ <tbody><tr>
350
+ <td class="parameter_name"><p>document</p></td>
351
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkDocumentIface</p></td>
352
+ <td class="parameter_annotations"> </td>
353
+ </tr></tbody>
354
+ </table></div>
355
+ </div>
356
+ <div class="refsect3">
357
+ <a name="id-1.5.4.9.6.6"></a><h4>Returns</h4>
358
+ <p> An AtkAttributeSet containing the explicitly
359
+ set name-value-pair attributes associated with this document
360
+ as a whole. </p>
361
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
362
+ </div>
363
+ <p class="since">Since 1.12</p>
364
+ </div>
365
+ <hr>
366
+ <div class="refsect2">
367
+ <a name="atk-document-get-locale"></a><h3>atk_document_get_locale ()</h3>
368
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
369
+ atk_document_get_locale (<em class="parameter"><code><a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *document</code></em>);</pre>
370
+ <div class="warning">
371
+ <p><code class="literal">atk_document_get_locale</code> is deprecated and should not be used in newly-written code.</p>
372
+ <p>This method is deprecated since ATK version
373
+ 2.7.90. Please use <a class="link" href="AtkObject.html#atk-object-get-object-locale" title="atk_object_get_object_locale ()"><code class="function">atk_object_get_object_locale()</code></a> instead.</p>
374
+ </div>
375
+ <p>Gets a UTF-8 string indicating the POSIX-style LC_MESSAGES locale
376
+ of the content of this document instance. Individual
377
+ text substrings or images within this document may have
378
+ a different locale, see atk_text_get_attributes and
379
+ atk_image_get_image_locale.</p>
380
+ <div class="refsect3">
381
+ <a name="id-1.5.4.9.7.6"></a><h4>Parameters</h4>
382
+ <div class="informaltable"><table width="100%" border="0">
383
+ <colgroup>
384
+ <col width="150px" class="parameters_name">
385
+ <col class="parameters_description">
386
+ <col width="200px" class="parameters_annotations">
387
+ </colgroup>
388
+ <tbody><tr>
389
+ <td class="parameter_name"><p>document</p></td>
390
+ <td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkDocumentIface</p></td>
391
+ <td class="parameter_annotations"> </td>
392
+ </tr></tbody>
393
+ </table></div>
394
+ </div>
395
+ <div class="refsect3">
396
+ <a name="id-1.5.4.9.7.7"></a><h4>Returns</h4>
397
+ <p> a UTF-8 string indicating the POSIX-style LC_MESSAGES
398
+ locale of the document content as a whole, or NULL if
399
+ the document content does not specify a locale.</p>
400
+ <p></p>
401
+ </div>
402
+ </div>
403
+ <hr>
404
+ <div class="refsect2">
405
+ <a name="atk-document-get-current-page-number"></a><h3>atk_document_get_current_page_number ()</h3>
406
+ <pre class="programlisting"><span class="returnvalue">gint</span>
407
+ atk_document_get_current_page_number (<em class="parameter"><code><a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *document</code></em>);</pre>
408
+ <div class="refsect3">
409
+ <a name="id-1.5.4.9.8.4"></a><h4>Parameters</h4>
410
+ <div class="informaltable"><table width="100%" border="0">
411
+ <colgroup>
412
+ <col width="150px" class="parameters_name">
413
+ <col class="parameters_description">
414
+ <col width="200px" class="parameters_annotations">
415
+ </colgroup>
416
+ <tbody><tr>
417
+ <td class="parameter_name"><p>document</p></td>
418
+ <td class="parameter_description"><p>the <a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a></p></td>
419
+ <td class="parameter_annotations"> </td>
420
+ </tr></tbody>
421
+ </table></div>
422
+ </div>
423
+ <div class="refsect3">
424
+ <a name="id-1.5.4.9.8.5"></a><h4>Returns</h4>
425
+ <p> current page number inside <em class="parameter"><code>document</code></em>
426
+ . -1 if not
427
+ implemented, not know by the implementor or irrelevant.</p>
428
+ <p></p>
429
+ </div>
430
+ <p class="since">Since 2.12</p>
431
+ </div>
432
+ <hr>
433
+ <div class="refsect2">
434
+ <a name="atk-document-get-page-count"></a><h3>atk_document_get_page_count ()</h3>
435
+ <pre class="programlisting"><span class="returnvalue">gint</span>
436
+ atk_document_get_page_count (<em class="parameter"><code><a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *document</code></em>);</pre>
437
+ <div class="refsect3">
438
+ <a name="id-1.5.4.9.9.4"></a><h4>Parameters</h4>
439
+ <div class="informaltable"><table width="100%" border="0">
440
+ <colgroup>
441
+ <col width="150px" class="parameters_name">
442
+ <col class="parameters_description">
443
+ <col width="200px" class="parameters_annotations">
444
+ </colgroup>
445
+ <tbody><tr>
446
+ <td class="parameter_name"><p>document</p></td>
447
+ <td class="parameter_description"><p>the <a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a></p></td>
448
+ <td class="parameter_annotations"> </td>
449
+ </tr></tbody>
450
+ </table></div>
451
+ </div>
452
+ <div class="refsect3">
453
+ <a name="id-1.5.4.9.9.5"></a><h4>Returns</h4>
454
+ <p> total page count of <em class="parameter"><code>document</code></em>
455
+ . -1 if not implemented, not
456
+ know by the implementor or irrelevant.</p>
457
+ <p></p>
458
+ </div>
459
+ <p class="since">Since 2.12</p>
460
+ </div>
461
+ </div>
462
+ <div class="refsect1">
463
+ <a name="AtkDocument.other_details"></a><h2>Types and Values</h2>
464
+ <div class="refsect2">
465
+ <a name="AtkDocument-struct"></a><h3>AtkDocument</h3>
466
+ <pre class="programlisting">typedef struct _AtkDocument AtkDocument;</pre>
467
+ <p>
468
+ </p>
469
+ </div>
470
+ <hr>
471
+ <div class="refsect2">
472
+ <a name="AtkDocumentIface"></a><h3>struct AtkDocumentIface</h3>
473
+ <pre class="programlisting">struct AtkDocumentIface {
474
+ GTypeInterface parent;
475
+ const gchar* ( *get_document_type) (AtkDocument *document);
476
+ gpointer ( *get_document) (AtkDocument *document);
477
+
478
+ const gchar* ( *get_document_locale) (AtkDocument *document);
479
+ AtkAttributeSet * ( *get_document_attributes) (AtkDocument *document);
480
+ const gchar* ( *get_document_attribute_value) (AtkDocument *document,
481
+ const gchar *attribute_name);
482
+ gboolean ( *set_document_attribute) (AtkDocument *document,
483
+ const gchar *attribute_name,
484
+ const gchar *attribute_value);
485
+ gint ( *get_current_page_number) (AtkDocument *document);
486
+ gint ( *get_page_count) (AtkDocument *document);
487
+ };
488
+ </pre>
489
+ <div class="refsect3">
490
+ <a name="id-1.5.4.10.3.4"></a><h4>Members</h4>
491
+ <div class="informaltable"><table width="100%" border="0">
492
+ <colgroup>
493
+ <col width="300px" class="struct_members_name">
494
+ <col class="struct_members_description">
495
+ <col width="200px" class="struct_members_annotations">
496
+ </colgroup>
497
+ <tbody>
498
+ <tr>
499
+ <td class="struct_member_name"><p><span class="type">GTypeInterface</span> <em class="structfield"><code><a name="AtkDocumentIface.parent"></a>parent</code></em>;</p></td>
500
+ <td class="struct_member_description"> </td>
501
+ <td class="struct_member_annotations"> </td>
502
+ </tr>
503
+ <tr>
504
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkDocumentIface.get-document-type"></a>get_document_type</code></em> ()</p></td>
505
+ <td class="struct_member_description"><p>gets a string indicating the document
506
+ type. This virtual function is deprecated since 2.12 and it
507
+ should not be overriden.</p></td>
508
+ <td class="struct_member_annotations"> </td>
509
+ </tr>
510
+ <tr>
511
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkDocumentIface.get-document"></a>get_document</code></em> ()</p></td>
512
+ <td class="struct_member_description"><p>a <span class="type">GObject</span> instance that implements
513
+ AtkDocumentIface. This virtual method is deprecated since 2.12
514
+ and it should not be overriden.</p></td>
515
+ <td class="struct_member_annotations"> </td>
516
+ </tr>
517
+ <tr>
518
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkDocumentIface.get-document-locale"></a>get_document_locale</code></em> ()</p></td>
519
+ <td class="struct_member_description"><p>gets locale. This virtual function is
520
+ deprecated since 2.7.90 and it should not be overriden.</p></td>
521
+ <td class="struct_member_annotations"> </td>
522
+ </tr>
523
+ <tr>
524
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkDocumentIface.get-document-attributes"></a>get_document_attributes</code></em> ()</p></td>
525
+ <td class="struct_member_description"><p>gets an AtkAttributeSet which describes
526
+ document-wide attributes as name-value pairs.</p></td>
527
+ <td class="struct_member_annotations"> </td>
528
+ </tr>
529
+ <tr>
530
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkDocumentIface.get-document-attribute-value"></a>get_document_attribute_value</code></em> ()</p></td>
531
+ <td class="struct_member_description"><p>returns a string value assocciated
532
+ with the named attribute for this document, or NULL</p></td>
533
+ <td class="struct_member_annotations"> </td>
534
+ </tr>
535
+ <tr>
536
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkDocumentIface.set-document-attribute"></a>set_document_attribute</code></em> ()</p></td>
537
+ <td class="struct_member_description"><p>sets the value of an attribute. Returns
538
+ TRUE on success, FALSE otherwise</p></td>
539
+ <td class="struct_member_annotations"> </td>
540
+ </tr>
541
+ <tr>
542
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkDocumentIface.get-current-page-number"></a>get_current_page_number</code></em> ()</p></td>
543
+ <td class="struct_member_description"><p>gets the current page number. Since 2.12</p></td>
544
+ <td class="struct_member_annotations"> </td>
545
+ </tr>
546
+ <tr>
547
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkDocumentIface.get-page-count"></a>get_page_count</code></em> ()</p></td>
548
+ <td class="struct_member_description"><p>gets the page count of the document. Since 2.12</p></td>
549
+ <td class="struct_member_annotations"> </td>
550
+ </tr>
551
+ </tbody>
552
+ </table></div>
553
+ </div>
554
+ </div>
555
+ </div>
556
+ <div class="refsect1">
557
+ <a name="AtkDocument.signal-details"></a><h2>Signal Details</h2>
558
+ <div class="refsect2">
559
+ <a name="AtkDocument-load-complete"></a><h3>The <code class="literal">“load-complete”</code> signal</h3>
560
+ <pre class="programlisting"><span class="returnvalue">void</span>
561
+ user_function (<a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *atkdocument,
562
+ <span class="type">gpointer</span> user_data)</pre>
563
+ <p>The 'load-complete' signal is emitted when a pending load of
564
+ a static document has completed. This signal is to be
565
+ expected by ATK clients if and when AtkDocument implementors
566
+ expose ATK_STATE_BUSY. If the state of an AtkObject which
567
+ implements AtkDocument does not include ATK_STATE_BUSY, it
568
+ should be safe for clients to assume that the AtkDocument's
569
+ static contents are fully loaded into the container.
570
+ (Dynamic document contents should be exposed via other
571
+ signals.)</p>
572
+ <div class="refsect3">
573
+ <a name="id-1.5.4.11.2.5"></a><h4>Parameters</h4>
574
+ <div class="informaltable"><table width="100%" border="0">
575
+ <colgroup>
576
+ <col width="150px" class="parameters_name">
577
+ <col class="parameters_description">
578
+ <col width="200px" class="parameters_annotations">
579
+ </colgroup>
580
+ <tbody>
581
+ <tr>
582
+ <td class="parameter_name"><p>atkdocument</p></td>
583
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
584
+ <td class="parameter_annotations"> </td>
585
+ </tr>
586
+ <tr>
587
+ <td class="parameter_name"><p>user_data</p></td>
588
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
589
+ <td class="parameter_annotations"> </td>
590
+ </tr>
591
+ </tbody>
592
+ </table></div>
593
+ </div>
594
+ <p>Flags: Run Last</p>
595
+ </div>
596
+ <hr>
597
+ <div class="refsect2">
598
+ <a name="AtkDocument-load-stopped"></a><h3>The <code class="literal">“load-stopped”</code> signal</h3>
599
+ <pre class="programlisting"><span class="returnvalue">void</span>
600
+ user_function (<a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *atkdocument,
601
+ <span class="type">gpointer</span> user_data)</pre>
602
+ <p>The 'load-stopped' signal is emitted when a pending load of
603
+ document contents is cancelled, paused, or otherwise
604
+ interrupted by the user or application logic. It should not
605
+ however be emitted while waiting for a resource (for instance
606
+ while blocking on a file or network read) unless a
607
+ user-significant timeout has occurred.</p>
608
+ <div class="refsect3">
609
+ <a name="id-1.5.4.11.3.5"></a><h4>Parameters</h4>
610
+ <div class="informaltable"><table width="100%" border="0">
611
+ <colgroup>
612
+ <col width="150px" class="parameters_name">
613
+ <col class="parameters_description">
614
+ <col width="200px" class="parameters_annotations">
615
+ </colgroup>
616
+ <tbody>
617
+ <tr>
618
+ <td class="parameter_name"><p>atkdocument</p></td>
619
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
620
+ <td class="parameter_annotations"> </td>
621
+ </tr>
622
+ <tr>
623
+ <td class="parameter_name"><p>user_data</p></td>
624
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
625
+ <td class="parameter_annotations"> </td>
626
+ </tr>
627
+ </tbody>
628
+ </table></div>
629
+ </div>
630
+ <p>Flags: Run Last</p>
631
+ </div>
632
+ <hr>
633
+ <div class="refsect2">
634
+ <a name="AtkDocument-page-changed"></a><h3>The <code class="literal">“page-changed”</code> signal</h3>
635
+ <pre class="programlisting"><span class="returnvalue">void</span>
636
+ user_function (<a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *atkdocument,
637
+ <span class="type">gint</span> page_number,
638
+ <span class="type">gpointer</span> user_data)</pre>
639
+ <p>The 'page-changed' signal is emitted when the current page of
640
+ a document changes, e.g. pressing page up/down in a document
641
+ viewer.</p>
642
+ <div class="refsect3">
643
+ <a name="id-1.5.4.11.4.5"></a><h4>Parameters</h4>
644
+ <div class="informaltable"><table width="100%" border="0">
645
+ <colgroup>
646
+ <col width="150px" class="parameters_name">
647
+ <col class="parameters_description">
648
+ <col width="200px" class="parameters_annotations">
649
+ </colgroup>
650
+ <tbody>
651
+ <tr>
652
+ <td class="parameter_name"><p>atkdocument</p></td>
653
+ <td class="parameter_description"><p>the object on which the signal was emitted</p></td>
654
+ <td class="parameter_annotations"> </td>
655
+ </tr>
656
+ <tr>
657
+ <td class="parameter_name"><p>page_number</p></td>
658
+ <td class="parameter_description"><p>the new page number. If this value is unknown
659
+ or not applicable, -1 should be provided.</p></td>
660
+ <td class="parameter_annotations"> </td>
661
+ </tr>
662
+ <tr>
663
+ <td class="parameter_name"><p>user_data</p></td>
664
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
665
+ <td class="parameter_annotations"> </td>
666
+ </tr>
667
+ </tbody>
668
+ </table></div>
669
+ </div>
670
+ <p>Flags: Run Last</p>
671
+ <p class="since">Since 2.12</p>
672
+ </div>
673
+ <hr>
674
+ <div class="refsect2">
675
+ <a name="AtkDocument-reload"></a><h3>The <code class="literal">“reload”</code> signal</h3>
676
+ <pre class="programlisting"><span class="returnvalue">void</span>
677
+ user_function (<a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *atkdocument,
678
+ <span class="type">gpointer</span> user_data)</pre>
679
+ <p>The 'reload' signal is emitted when the contents of a
680
+ document is refreshed from its source. Once 'reload' has
681
+ been emitted, a matching 'load-complete' or 'load-stopped'
682
+ signal should follow, which clients may await before
683
+ interrogating ATK for the latest document content.</p>
684
+ <div class="refsect3">
685
+ <a name="id-1.5.4.11.5.5"></a><h4>Parameters</h4>
686
+ <div class="informaltable"><table width="100%" border="0">
687
+ <colgroup>
688
+ <col width="150px" class="parameters_name">
689
+ <col class="parameters_description">
690
+ <col width="200px" class="parameters_annotations">
691
+ </colgroup>
692
+ <tbody>
693
+ <tr>
694
+ <td class="parameter_name"><p>atkdocument</p></td>
695
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
696
+ <td class="parameter_annotations"> </td>
697
+ </tr>
698
+ <tr>
699
+ <td class="parameter_name"><p>user_data</p></td>
700
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
701
+ <td class="parameter_annotations"> </td>
702
+ </tr>
703
+ </tbody>
704
+ </table></div>
705
+ </div>
706
+ <p>Flags: Run Last</p>
707
+ </div>
708
+ </div>
709
+ </div>
710
+ <div class="footer">
711
+ <hr>
712
+ Generated by GTK-Doc V1.21.1</div>
713
+ </body>
714
+ </html>