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,274 @@
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: AtkStreamableContent</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="AtkSelection.html" title="AtkSelection">
10
+ <link rel="next" href="AtkTable.html" title="AtkTable">
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="#AtkStreamableContent.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkStreamableContent.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20
+ </td>
21
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
+ <td><a accesskey="u" href="interfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23
+ <td><a accesskey="p" href="AtkSelection.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="AtkTable.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25
+ </tr></table>
26
+ <div class="refentry">
27
+ <a name="AtkStreamableContent"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="AtkStreamableContent.top_of_page"></a>AtkStreamableContent</span></h2>
31
+ <p>AtkStreamableContent — The ATK interface which provides access to
32
+ streamable content.</p>
33
+ </td>
34
+ <td class="gallery_image" valign="top" align="right"></td>
35
+ </tr></table></div>
36
+ <div class="refsect1">
37
+ <a name="AtkStreamableContent.functions"></a><h2>Functions</h2>
38
+ <div class="informaltable"><table width="100%" border="0">
39
+ <colgroup>
40
+ <col width="150px" class="functions_return">
41
+ <col class="functions_name">
42
+ </colgroup>
43
+ <tbody>
44
+ <tr>
45
+ <td class="function_type">
46
+ <span class="returnvalue">gint</span>
47
+ </td>
48
+ <td class="function_name">
49
+ <a class="link" href="AtkStreamableContent.html#atk-streamable-content-get-n-mime-types" title="atk_streamable_content_get_n_mime_types ()">atk_streamable_content_get_n_mime_types</a> <span class="c_punctuation">()</span>
50
+ </td>
51
+ </tr>
52
+ <tr>
53
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
54
+ </td>
55
+ <td class="function_name">
56
+ <a class="link" href="AtkStreamableContent.html#atk-streamable-content-get-mime-type" title="atk_streamable_content_get_mime_type ()">atk_streamable_content_get_mime_type</a> <span class="c_punctuation">()</span>
57
+ </td>
58
+ </tr>
59
+ <tr>
60
+ <td class="function_type">
61
+ <span class="returnvalue">GIOChannel</span> *
62
+ </td>
63
+ <td class="function_name">
64
+ <a class="link" href="AtkStreamableContent.html#atk-streamable-content-get-stream" title="atk_streamable_content_get_stream ()">atk_streamable_content_get_stream</a> <span class="c_punctuation">()</span>
65
+ </td>
66
+ </tr>
67
+ <tr>
68
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
69
+ </td>
70
+ <td class="function_name">
71
+ <a class="link" href="AtkStreamableContent.html#atk-streamable-content-get-uri" title="atk_streamable_content_get_uri ()">atk_streamable_content_get_uri</a> <span class="c_punctuation">()</span>
72
+ </td>
73
+ </tr>
74
+ </tbody>
75
+ </table></div>
76
+ </div>
77
+ <div class="refsect1">
78
+ <a name="AtkStreamableContent.other"></a><h2>Types and Values</h2>
79
+ <div class="informaltable"><table width="100%" border="0">
80
+ <colgroup>
81
+ <col width="150px" class="name">
82
+ <col class="description">
83
+ </colgroup>
84
+ <tbody><tr>
85
+ <td class="datatype_keyword"> </td>
86
+ <td class="function_name"><a class="link" href="AtkStreamableContent.html#AtkStreamableContent-struct" title="AtkStreamableContent">AtkStreamableContent</a></td>
87
+ </tr></tbody>
88
+ </table></div>
89
+ </div>
90
+ <div class="refsect1">
91
+ <a name="AtkStreamableContent.object-hierarchy"></a><h2>Object Hierarchy</h2>
92
+ <pre class="screen"> GInterface
93
+ <span class="lineart">╰──</span> AtkStreamableContent
94
+ </pre>
95
+ </div>
96
+ <div class="refsect1">
97
+ <a name="AtkStreamableContent.description"></a><h2>Description</h2>
98
+ <p>An interface whereby an object allows its backing content to be
99
+ streamed to clients. Typical implementors would be images or
100
+ icons, HTML content, or multimedia display/rendering widgets.</p>
101
+ <p>Negotiation of content type is allowed. Clients may examine the
102
+ backing data and transform, convert, or parse the content in order
103
+ to present it in an alternate form to end-users.</p>
104
+ <p>The AtkStreamableContent interface is particularly useful for
105
+ saving, printing, or post-processing entire documents, or for
106
+ persisting alternate views of a document. If document content
107
+ itself is being serialized, stored, or converted, then use of the
108
+ AtkStreamableContent interface can help address performance
109
+ issues. Unlike most ATK interfaces, this interface is not strongly
110
+ tied to the current user-agent view of the a particular document,
111
+ but may in some cases give access to the underlying model data.</p>
112
+ </div>
113
+ <div class="refsect1">
114
+ <a name="AtkStreamableContent.functions_details"></a><h2>Functions</h2>
115
+ <div class="refsect2">
116
+ <a name="atk-streamable-content-get-n-mime-types"></a><h3>atk_streamable_content_get_n_mime_types ()</h3>
117
+ <pre class="programlisting"><span class="returnvalue">gint</span>
118
+ atk_streamable_content_get_n_mime_types
119
+ (<em class="parameter"><code><a class="link" href="AtkStreamableContent.html" title="AtkStreamableContent"><span class="type">AtkStreamableContent</span></a> *streamable</code></em>);</pre>
120
+ <p>Gets the number of mime types supported by this object.</p>
121
+ <div class="refsect3">
122
+ <a name="id-1.5.10.7.2.5"></a><h4>Parameters</h4>
123
+ <div class="informaltable"><table width="100%" border="0">
124
+ <colgroup>
125
+ <col width="150px" class="parameters_name">
126
+ <col class="parameters_description">
127
+ <col width="200px" class="parameters_annotations">
128
+ </colgroup>
129
+ <tbody><tr>
130
+ <td class="parameter_name"><p>streamable</p></td>
131
+ <td class="parameter_description"><p>a GObject instance that implements AtkStreamableContentIface</p></td>
132
+ <td class="parameter_annotations"> </td>
133
+ </tr></tbody>
134
+ </table></div>
135
+ </div>
136
+ <div class="refsect3">
137
+ <a name="id-1.5.10.7.2.6"></a><h4>Returns</h4>
138
+ <p> a gint which is the number of mime types supported by the object.</p>
139
+ <p></p>
140
+ </div>
141
+ </div>
142
+ <hr>
143
+ <div class="refsect2">
144
+ <a name="atk-streamable-content-get-mime-type"></a><h3>atk_streamable_content_get_mime_type ()</h3>
145
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
146
+ atk_streamable_content_get_mime_type (<em class="parameter"><code><a class="link" href="AtkStreamableContent.html" title="AtkStreamableContent"><span class="type">AtkStreamableContent</span></a> *streamable</code></em>,
147
+ <em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
148
+ <p>Gets the character string of the specified mime type. The first mime
149
+ type is at position 0, the second at position 1, and so on.</p>
150
+ <div class="refsect3">
151
+ <a name="id-1.5.10.7.3.5"></a><h4>Parameters</h4>
152
+ <div class="informaltable"><table width="100%" border="0">
153
+ <colgroup>
154
+ <col width="150px" class="parameters_name">
155
+ <col class="parameters_description">
156
+ <col width="200px" class="parameters_annotations">
157
+ </colgroup>
158
+ <tbody>
159
+ <tr>
160
+ <td class="parameter_name"><p>streamable</p></td>
161
+ <td class="parameter_description"><p>a GObject instance that implements AtkStreamableContent</p></td>
162
+ <td class="parameter_annotations"> </td>
163
+ </tr>
164
+ <tr>
165
+ <td class="parameter_name"><p>i</p></td>
166
+ <td class="parameter_description"><p>a gint representing the position of the mime type starting from 0</p></td>
167
+ <td class="parameter_annotations"> </td>
168
+ </tr>
169
+ </tbody>
170
+ </table></div>
171
+ </div>
172
+ <div class="refsect3">
173
+ <a name="id-1.5.10.7.3.6"></a><h4>Returns</h4>
174
+ <p> a gchar* representing the specified mime type; the caller
175
+ should not free the character string.</p>
176
+ <p></p>
177
+ </div>
178
+ </div>
179
+ <hr>
180
+ <div class="refsect2">
181
+ <a name="atk-streamable-content-get-stream"></a><h3>atk_streamable_content_get_stream ()</h3>
182
+ <pre class="programlisting"><span class="returnvalue">GIOChannel</span> *
183
+ atk_streamable_content_get_stream (<em class="parameter"><code><a class="link" href="AtkStreamableContent.html" title="AtkStreamableContent"><span class="type">AtkStreamableContent</span></a> *streamable</code></em>,
184
+ <em class="parameter"><code>const <span class="type">gchar</span> *mime_type</code></em>);</pre>
185
+ <p>Gets the content in the specified mime type.</p>
186
+ <div class="refsect3">
187
+ <a name="id-1.5.10.7.4.5"></a><h4>Parameters</h4>
188
+ <div class="informaltable"><table width="100%" border="0">
189
+ <colgroup>
190
+ <col width="150px" class="parameters_name">
191
+ <col class="parameters_description">
192
+ <col width="200px" class="parameters_annotations">
193
+ </colgroup>
194
+ <tbody>
195
+ <tr>
196
+ <td class="parameter_name"><p>streamable</p></td>
197
+ <td class="parameter_description"><p>a GObject instance that implements AtkStreamableContentIface</p></td>
198
+ <td class="parameter_annotations"> </td>
199
+ </tr>
200
+ <tr>
201
+ <td class="parameter_name"><p>mime_type</p></td>
202
+ <td class="parameter_description"><p>a gchar* representing the mime type</p></td>
203
+ <td class="parameter_annotations"> </td>
204
+ </tr>
205
+ </tbody>
206
+ </table></div>
207
+ </div>
208
+ <div class="refsect3">
209
+ <a name="id-1.5.10.7.4.6"></a><h4>Returns</h4>
210
+ <p> A <span class="type">GIOChannel</span> which contains the content in the
211
+ specified mime type. </p>
212
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
213
+ </div>
214
+ </div>
215
+ <hr>
216
+ <div class="refsect2">
217
+ <a name="atk-streamable-content-get-uri"></a><h3>atk_streamable_content_get_uri ()</h3>
218
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
219
+ atk_streamable_content_get_uri (<em class="parameter"><code><a class="link" href="AtkStreamableContent.html" title="AtkStreamableContent"><span class="type">AtkStreamableContent</span></a> *streamable</code></em>,
220
+ <em class="parameter"><code>const <span class="type">gchar</span> *mime_type</code></em>);</pre>
221
+ <p>Get a string representing a URI in IETF standard format
222
+ (see http://www.ietf.org/rfc/rfc2396.txt) from which the object's content
223
+ may be streamed in the specified mime-type, if one is available.
224
+ If mime_type is NULL, the URI for the default (and possibly only) mime-type is
225
+ returned. </p>
226
+ <p>Note that it is possible for get_uri to return NULL but for
227
+ get_stream to work nonetheless, since not all GIOChannels connect to URIs.</p>
228
+ <div class="refsect3">
229
+ <a name="id-1.5.10.7.5.6"></a><h4>Parameters</h4>
230
+ <div class="informaltable"><table width="100%" border="0">
231
+ <colgroup>
232
+ <col width="150px" class="parameters_name">
233
+ <col class="parameters_description">
234
+ <col width="200px" class="parameters_annotations">
235
+ </colgroup>
236
+ <tbody>
237
+ <tr>
238
+ <td class="parameter_name"><p>streamable</p></td>
239
+ <td class="parameter_description"><p>a GObject instance that implements AtkStreamableContentIface</p></td>
240
+ <td class="parameter_annotations"> </td>
241
+ </tr>
242
+ <tr>
243
+ <td class="parameter_name"><p>mime_type</p></td>
244
+ <td class="parameter_description"><p>a gchar* representing the mime type, or NULL to request a URI
245
+ for the default mime type.</p></td>
246
+ <td class="parameter_annotations"> </td>
247
+ </tr>
248
+ </tbody>
249
+ </table></div>
250
+ </div>
251
+ <div class="refsect3">
252
+ <a name="id-1.5.10.7.5.7"></a><h4>Returns</h4>
253
+ <p> Returns a string representing a URI, or <code class="literal">NULL</code>
254
+ if no corresponding URI can be constructed. </p>
255
+ <p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>]</span></p>
256
+ </div>
257
+ <p class="since">Since 1.12</p>
258
+ </div>
259
+ </div>
260
+ <div class="refsect1">
261
+ <a name="AtkStreamableContent.other_details"></a><h2>Types and Values</h2>
262
+ <div class="refsect2">
263
+ <a name="AtkStreamableContent-struct"></a><h3>AtkStreamableContent</h3>
264
+ <pre class="programlisting">typedef struct _AtkStreamableContent AtkStreamableContent;</pre>
265
+ <p>
266
+ </p>
267
+ </div>
268
+ </div>
269
+ </div>
270
+ <div class="footer">
271
+ <hr>
272
+ Generated by GTK-Doc V1.21.1</div>
273
+ </body>
274
+ </html>
@@ -0,0 +1,1790 @@
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: AtkTable</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="AtkStreamableContent.html" title="AtkStreamableContent">
10
+ <link rel="next" href="AtkTableCell.html" title="AtkTableCell">
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="#AtkTable.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkTable.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_implementations">  <span class="dim">|</span> 
20
+ <a href="#AtkTable.implementations" class="shortcut">Known Implementations</a></span><span id="nav_signals">  <span class="dim">|</span> 
21
+ <a href="#AtkTable.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="AtkStreamableContent.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
26
+ <td><a accesskey="n" href="AtkTableCell.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="AtkTable"></a><div class="titlepage"></div>
30
+ <div class="refnamediv"><table width="100%"><tr>
31
+ <td valign="top">
32
+ <h2><span class="refentrytitle"><a name="AtkTable.top_of_page"></a>AtkTable</span></h2>
33
+ <p>AtkTable — The ATK interface implemented for UI components
34
+ which contain tabular or row/column information.</p>
35
+ </td>
36
+ <td class="gallery_image" valign="top" align="right"></td>
37
+ </tr></table></div>
38
+ <div class="refsect1">
39
+ <a name="AtkTable.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="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
49
+ </td>
50
+ <td class="function_name">
51
+ <a class="link" href="AtkTable.html#atk-table-ref-at" title="atk_table_ref_at ()">atk_table_ref_at</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="AtkTable.html#atk-table-get-index-at" title="atk_table_get_index_at ()">atk_table_get_index_at</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="AtkTable.html#atk-table-get-column-at-index" title="atk_table_get_column_at_index ()">atk_table_get_column_at_index</a> <span class="c_punctuation">()</span>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td class="function_type">
72
+ <span class="returnvalue">gint</span>
73
+ </td>
74
+ <td class="function_name">
75
+ <a class="link" href="AtkTable.html#atk-table-get-row-at-index" title="atk_table_get_row_at_index ()">atk_table_get_row_at_index</a> <span class="c_punctuation">()</span>
76
+ </td>
77
+ </tr>
78
+ <tr>
79
+ <td class="function_type">
80
+ <span class="returnvalue">gint</span>
81
+ </td>
82
+ <td class="function_name">
83
+ <a class="link" href="AtkTable.html#atk-table-get-n-columns" title="atk_table_get_n_columns ()">atk_table_get_n_columns</a> <span class="c_punctuation">()</span>
84
+ </td>
85
+ </tr>
86
+ <tr>
87
+ <td class="function_type">
88
+ <span class="returnvalue">gint</span>
89
+ </td>
90
+ <td class="function_name">
91
+ <a class="link" href="AtkTable.html#atk-table-get-n-rows" title="atk_table_get_n_rows ()">atk_table_get_n_rows</a> <span class="c_punctuation">()</span>
92
+ </td>
93
+ </tr>
94
+ <tr>
95
+ <td class="function_type">
96
+ <span class="returnvalue">gint</span>
97
+ </td>
98
+ <td class="function_name">
99
+ <a class="link" href="AtkTable.html#atk-table-get-column-extent-at" title="atk_table_get_column_extent_at ()">atk_table_get_column_extent_at</a> <span class="c_punctuation">()</span>
100
+ </td>
101
+ </tr>
102
+ <tr>
103
+ <td class="function_type">
104
+ <span class="returnvalue">gint</span>
105
+ </td>
106
+ <td class="function_name">
107
+ <a class="link" href="AtkTable.html#atk-table-get-row-extent-at" title="atk_table_get_row_extent_at ()">atk_table_get_row_extent_at</a> <span class="c_punctuation">()</span>
108
+ </td>
109
+ </tr>
110
+ <tr>
111
+ <td class="function_type">
112
+ <a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
113
+ </td>
114
+ <td class="function_name">
115
+ <a class="link" href="AtkTable.html#atk-table-get-caption" title="atk_table_get_caption ()">atk_table_get_caption</a> <span class="c_punctuation">()</span>
116
+ </td>
117
+ </tr>
118
+ <tr>
119
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
120
+ </td>
121
+ <td class="function_name">
122
+ <a class="link" href="AtkTable.html#atk-table-get-column-description" title="atk_table_get_column_description ()">atk_table_get_column_description</a> <span class="c_punctuation">()</span>
123
+ </td>
124
+ </tr>
125
+ <tr>
126
+ <td class="function_type">const <span class="returnvalue">gchar</span> *
127
+ </td>
128
+ <td class="function_name">
129
+ <a class="link" href="AtkTable.html#atk-table-get-row-description" title="atk_table_get_row_description ()">atk_table_get_row_description</a> <span class="c_punctuation">()</span>
130
+ </td>
131
+ </tr>
132
+ <tr>
133
+ <td class="function_type">
134
+ <a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
135
+ </td>
136
+ <td class="function_name">
137
+ <a class="link" href="AtkTable.html#atk-table-get-column-header" title="atk_table_get_column_header ()">atk_table_get_column_header</a> <span class="c_punctuation">()</span>
138
+ </td>
139
+ </tr>
140
+ <tr>
141
+ <td class="function_type">
142
+ <a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
143
+ </td>
144
+ <td class="function_name">
145
+ <a class="link" href="AtkTable.html#atk-table-get-row-header" title="atk_table_get_row_header ()">atk_table_get_row_header</a> <span class="c_punctuation">()</span>
146
+ </td>
147
+ </tr>
148
+ <tr>
149
+ <td class="function_type">
150
+ <a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
151
+ </td>
152
+ <td class="function_name">
153
+ <a class="link" href="AtkTable.html#atk-table-get-summary" title="atk_table_get_summary ()">atk_table_get_summary</a> <span class="c_punctuation">()</span>
154
+ </td>
155
+ </tr>
156
+ <tr>
157
+ <td class="function_type">
158
+ <span class="returnvalue">void</span>
159
+ </td>
160
+ <td class="function_name">
161
+ <a class="link" href="AtkTable.html#atk-table-set-caption" title="atk_table_set_caption ()">atk_table_set_caption</a> <span class="c_punctuation">()</span>
162
+ </td>
163
+ </tr>
164
+ <tr>
165
+ <td class="function_type">
166
+ <span class="returnvalue">void</span>
167
+ </td>
168
+ <td class="function_name">
169
+ <a class="link" href="AtkTable.html#atk-table-set-row-description" title="atk_table_set_row_description ()">atk_table_set_row_description</a> <span class="c_punctuation">()</span>
170
+ </td>
171
+ </tr>
172
+ <tr>
173
+ <td class="function_type">
174
+ <span class="returnvalue">void</span>
175
+ </td>
176
+ <td class="function_name">
177
+ <a class="link" href="AtkTable.html#atk-table-set-column-description" title="atk_table_set_column_description ()">atk_table_set_column_description</a> <span class="c_punctuation">()</span>
178
+ </td>
179
+ </tr>
180
+ <tr>
181
+ <td class="function_type">
182
+ <span class="returnvalue">void</span>
183
+ </td>
184
+ <td class="function_name">
185
+ <a class="link" href="AtkTable.html#atk-table-set-row-header" title="atk_table_set_row_header ()">atk_table_set_row_header</a> <span class="c_punctuation">()</span>
186
+ </td>
187
+ </tr>
188
+ <tr>
189
+ <td class="function_type">
190
+ <span class="returnvalue">void</span>
191
+ </td>
192
+ <td class="function_name">
193
+ <a class="link" href="AtkTable.html#atk-table-set-column-header" title="atk_table_set_column_header ()">atk_table_set_column_header</a> <span class="c_punctuation">()</span>
194
+ </td>
195
+ </tr>
196
+ <tr>
197
+ <td class="function_type">
198
+ <span class="returnvalue">void</span>
199
+ </td>
200
+ <td class="function_name">
201
+ <a class="link" href="AtkTable.html#atk-table-set-summary" title="atk_table_set_summary ()">atk_table_set_summary</a> <span class="c_punctuation">()</span>
202
+ </td>
203
+ </tr>
204
+ <tr>
205
+ <td class="function_type">
206
+ <span class="returnvalue">gint</span>
207
+ </td>
208
+ <td class="function_name">
209
+ <a class="link" href="AtkTable.html#atk-table-get-selected-columns" title="atk_table_get_selected_columns ()">atk_table_get_selected_columns</a> <span class="c_punctuation">()</span>
210
+ </td>
211
+ </tr>
212
+ <tr>
213
+ <td class="function_type">
214
+ <span class="returnvalue">gint</span>
215
+ </td>
216
+ <td class="function_name">
217
+ <a class="link" href="AtkTable.html#atk-table-get-selected-rows" title="atk_table_get_selected_rows ()">atk_table_get_selected_rows</a> <span class="c_punctuation">()</span>
218
+ </td>
219
+ </tr>
220
+ <tr>
221
+ <td class="function_type">
222
+ <span class="returnvalue">gboolean</span>
223
+ </td>
224
+ <td class="function_name">
225
+ <a class="link" href="AtkTable.html#atk-table-is-column-selected" title="atk_table_is_column_selected ()">atk_table_is_column_selected</a> <span class="c_punctuation">()</span>
226
+ </td>
227
+ </tr>
228
+ <tr>
229
+ <td class="function_type">
230
+ <span class="returnvalue">gboolean</span>
231
+ </td>
232
+ <td class="function_name">
233
+ <a class="link" href="AtkTable.html#atk-table-is-row-selected" title="atk_table_is_row_selected ()">atk_table_is_row_selected</a> <span class="c_punctuation">()</span>
234
+ </td>
235
+ </tr>
236
+ <tr>
237
+ <td class="function_type">
238
+ <span class="returnvalue">gboolean</span>
239
+ </td>
240
+ <td class="function_name">
241
+ <a class="link" href="AtkTable.html#atk-table-is-selected" title="atk_table_is_selected ()">atk_table_is_selected</a> <span class="c_punctuation">()</span>
242
+ </td>
243
+ </tr>
244
+ <tr>
245
+ <td class="function_type">
246
+ <span class="returnvalue">gboolean</span>
247
+ </td>
248
+ <td class="function_name">
249
+ <a class="link" href="AtkTable.html#atk-table-add-column-selection" title="atk_table_add_column_selection ()">atk_table_add_column_selection</a> <span class="c_punctuation">()</span>
250
+ </td>
251
+ </tr>
252
+ <tr>
253
+ <td class="function_type">
254
+ <span class="returnvalue">gboolean</span>
255
+ </td>
256
+ <td class="function_name">
257
+ <a class="link" href="AtkTable.html#atk-table-add-row-selection" title="atk_table_add_row_selection ()">atk_table_add_row_selection</a> <span class="c_punctuation">()</span>
258
+ </td>
259
+ </tr>
260
+ <tr>
261
+ <td class="function_type">
262
+ <span class="returnvalue">gboolean</span>
263
+ </td>
264
+ <td class="function_name">
265
+ <a class="link" href="AtkTable.html#atk-table-remove-column-selection" title="atk_table_remove_column_selection ()">atk_table_remove_column_selection</a> <span class="c_punctuation">()</span>
266
+ </td>
267
+ </tr>
268
+ <tr>
269
+ <td class="function_type">
270
+ <span class="returnvalue">gboolean</span>
271
+ </td>
272
+ <td class="function_name">
273
+ <a class="link" href="AtkTable.html#atk-table-remove-row-selection" title="atk_table_remove_row_selection ()">atk_table_remove_row_selection</a> <span class="c_punctuation">()</span>
274
+ </td>
275
+ </tr>
276
+ </tbody>
277
+ </table></div>
278
+ </div>
279
+ <div class="refsect1">
280
+ <a name="AtkTable.signals"></a><h2>Signals</h2>
281
+ <div class="informaltable"><table border="0">
282
+ <colgroup>
283
+ <col width="150px" class="signals_return">
284
+ <col width="300px" class="signals_name">
285
+ <col width="200px" class="signals_flags">
286
+ </colgroup>
287
+ <tbody>
288
+ <tr>
289
+ <td class="signal_type"><span class="returnvalue">void</span></td>
290
+ <td class="signal_name"><a class="link" href="AtkTable.html#AtkTable-column-deleted" title="The “column-deleted” signal">column-deleted</a></td>
291
+ <td class="signal_flags">Run Last</td>
292
+ </tr>
293
+ <tr>
294
+ <td class="signal_type"><span class="returnvalue">void</span></td>
295
+ <td class="signal_name"><a class="link" href="AtkTable.html#AtkTable-column-inserted" title="The “column-inserted” signal">column-inserted</a></td>
296
+ <td class="signal_flags">Run Last</td>
297
+ </tr>
298
+ <tr>
299
+ <td class="signal_type"><span class="returnvalue">void</span></td>
300
+ <td class="signal_name"><a class="link" href="AtkTable.html#AtkTable-column-reordered" title="The “column-reordered” signal">column-reordered</a></td>
301
+ <td class="signal_flags">Run Last</td>
302
+ </tr>
303
+ <tr>
304
+ <td class="signal_type"><span class="returnvalue">void</span></td>
305
+ <td class="signal_name"><a class="link" href="AtkTable.html#AtkTable-model-changed" title="The “model-changed” signal">model-changed</a></td>
306
+ <td class="signal_flags">Run Last</td>
307
+ </tr>
308
+ <tr>
309
+ <td class="signal_type"><span class="returnvalue">void</span></td>
310
+ <td class="signal_name"><a class="link" href="AtkTable.html#AtkTable-row-deleted" title="The “row-deleted” signal">row-deleted</a></td>
311
+ <td class="signal_flags">Run Last</td>
312
+ </tr>
313
+ <tr>
314
+ <td class="signal_type"><span class="returnvalue">void</span></td>
315
+ <td class="signal_name"><a class="link" href="AtkTable.html#AtkTable-row-inserted" title="The “row-inserted” signal">row-inserted</a></td>
316
+ <td class="signal_flags">Run Last</td>
317
+ </tr>
318
+ <tr>
319
+ <td class="signal_type"><span class="returnvalue">void</span></td>
320
+ <td class="signal_name"><a class="link" href="AtkTable.html#AtkTable-row-reordered" title="The “row-reordered” signal">row-reordered</a></td>
321
+ <td class="signal_flags">Run Last</td>
322
+ </tr>
323
+ </tbody>
324
+ </table></div>
325
+ </div>
326
+ <div class="refsect1">
327
+ <a name="AtkTable.other"></a><h2>Types and Values</h2>
328
+ <div class="informaltable"><table width="100%" border="0">
329
+ <colgroup>
330
+ <col width="150px" class="name">
331
+ <col class="description">
332
+ </colgroup>
333
+ <tbody><tr>
334
+ <td class="datatype_keyword"> </td>
335
+ <td class="function_name"><a class="link" href="AtkTable.html#AtkTable-struct" title="AtkTable">AtkTable</a></td>
336
+ </tr></tbody>
337
+ </table></div>
338
+ </div>
339
+ <div class="refsect1">
340
+ <a name="AtkTable.object-hierarchy"></a><h2>Object Hierarchy</h2>
341
+ <pre class="screen"> GInterface
342
+ <span class="lineart">╰──</span> AtkTable
343
+ </pre>
344
+ </div>
345
+ <div class="refsect1">
346
+ <a name="AtkTable.implementations"></a><h2>Known Implementations</h2>
347
+ <p>
348
+ AtkTable is implemented by
349
+ <a class="link" href="AtkNoOpObject.html" title="AtkNoOpObject">AtkNoOpObject</a>.</p>
350
+ </div>
351
+ <div class="refsect1">
352
+ <a name="AtkTable.description"></a><h2>Description</h2>
353
+ <p><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> should be implemented by components which present
354
+ elements ordered via rows and columns. It may also be used to
355
+ present tree-structured information if the nodes of the trees can
356
+ be said to contain multiple "columns". Individual elements of an
357
+ <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> are typically referred to as "cells". Those cells should
358
+ implement the interface <a class="link" href="AtkTableCell.html" title="AtkTableCell"><span class="type">AtkTableCell</span></a>, but <span class="type">Atk</span> doesn't require
359
+ them to be direct children of the current <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a>. They can be
360
+ grand-children, grand-grand-children etc. <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> provides the
361
+ API needed to get a individual cell based on the row and column
362
+ numbers.</p>
363
+ <p>Children of <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> are frequently "lightweight" objects, that
364
+ is, they may not have backing widgets in the host UI toolkit. They
365
+ are therefore often transient.</p>
366
+ <p>Since tables are often very complex, <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> includes provision
367
+ for offering simplified summary information, as well as row and
368
+ column headers and captions. Headers and captions are <a href="AtkObject.html"><span class="type">AtkObjects</span></a>
369
+ which may implement other interfaces (<a class="link" href="AtkText.html" title="AtkText"><span class="type">AtkText</span></a>, <a class="link" href="AtkImage.html" title="AtkImage"><span class="type">AtkImage</span></a>, etc.) as
370
+ appropriate. <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> summaries may themselves be (simplified)
371
+ <a href="AtkTable.html"><span class="type">AtkTables</span></a>, etc.</p>
372
+ <p>Note for implementors: in the past, <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> required that all the
373
+ cells should be direct children of <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a>, and provided some
374
+ index based methods to request the cells. The practice showed that
375
+ that forcing made <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> implementation complex, and hard to
376
+ expose other kind of children, like rows or captions. Right now,
377
+ index-based methods are deprecated.</p>
378
+ </div>
379
+ <div class="refsect1">
380
+ <a name="AtkTable.functions_details"></a><h2>Functions</h2>
381
+ <div class="refsect2">
382
+ <a name="atk-table-ref-at"></a><h3>atk_table_ref_at ()</h3>
383
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
384
+ atk_table_ref_at (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
385
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>,
386
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
387
+ <p>Get a reference to the table cell at <em class="parameter"><code>row</code></em>
388
+ , <em class="parameter"><code>column</code></em>
389
+ . This cell
390
+ should implement the interface <a class="link" href="AtkTableCell.html" title="AtkTableCell"><span class="type">AtkTableCell</span></a></p>
391
+ <div class="refsect3">
392
+ <a name="id-1.5.11.9.2.5"></a><h4>Parameters</h4>
393
+ <div class="informaltable"><table width="100%" border="0">
394
+ <colgroup>
395
+ <col width="150px" class="parameters_name">
396
+ <col class="parameters_description">
397
+ <col width="200px" class="parameters_annotations">
398
+ </colgroup>
399
+ <tbody>
400
+ <tr>
401
+ <td class="parameter_name"><p>table</p></td>
402
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
403
+ <td class="parameter_annotations"> </td>
404
+ </tr>
405
+ <tr>
406
+ <td class="parameter_name"><p>row</p></td>
407
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
408
+ </p></td>
409
+ <td class="parameter_annotations"> </td>
410
+ </tr>
411
+ <tr>
412
+ <td class="parameter_name"><p>column</p></td>
413
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
414
+ </p></td>
415
+ <td class="parameter_annotations"> </td>
416
+ </tr>
417
+ </tbody>
418
+ </table></div>
419
+ </div>
420
+ <div class="refsect3">
421
+ <a name="id-1.5.11.9.2.6"></a><h4>Returns</h4>
422
+ <p> an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> representing the referred
423
+ to accessible. </p>
424
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
425
+ </div>
426
+ </div>
427
+ <hr>
428
+ <div class="refsect2">
429
+ <a name="atk-table-get-index-at"></a><h3>atk_table_get_index_at ()</h3>
430
+ <pre class="programlisting"><span class="returnvalue">gint</span>
431
+ atk_table_get_index_at (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
432
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>,
433
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
434
+ <div class="warning">
435
+ <p><code class="literal">atk_table_get_index_at</code> is deprecated and should not be used in newly-written code.</p>
436
+ <p>Since 2.12. Use <a class="link" href="AtkTable.html#atk-table-ref-at" title="atk_table_ref_at ()"><code class="function">atk_table_ref_at()</code></a> in order to get the
437
+ accessible that represents the cell at (<em class="parameter"><code>row</code></em>
438
+ , <em class="parameter"><code>column</code></em>
439
+ )</p>
440
+ </div>
441
+ <p>Gets a <span class="type">gint</span> representing the index at the specified <em class="parameter"><code>row</code></em>
442
+ and
443
+ <em class="parameter"><code>column</code></em>
444
+ .</p>
445
+ <div class="refsect3">
446
+ <a name="id-1.5.11.9.3.6"></a><h4>Parameters</h4>
447
+ <div class="informaltable"><table width="100%" border="0">
448
+ <colgroup>
449
+ <col width="150px" class="parameters_name">
450
+ <col class="parameters_description">
451
+ <col width="200px" class="parameters_annotations">
452
+ </colgroup>
453
+ <tbody>
454
+ <tr>
455
+ <td class="parameter_name"><p>table</p></td>
456
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
457
+ <td class="parameter_annotations"> </td>
458
+ </tr>
459
+ <tr>
460
+ <td class="parameter_name"><p>row</p></td>
461
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
462
+ </p></td>
463
+ <td class="parameter_annotations"> </td>
464
+ </tr>
465
+ <tr>
466
+ <td class="parameter_name"><p>column</p></td>
467
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
468
+ </p></td>
469
+ <td class="parameter_annotations"> </td>
470
+ </tr>
471
+ </tbody>
472
+ </table></div>
473
+ </div>
474
+ <div class="refsect3">
475
+ <a name="id-1.5.11.9.3.7"></a><h4>Returns</h4>
476
+ <p> a <span class="type">gint</span> representing the index at specified position.
477
+ The value -1 is returned if the object at row,column is not a child
478
+ of table or table does not implement this interface.</p>
479
+ <p></p>
480
+ </div>
481
+ </div>
482
+ <hr>
483
+ <div class="refsect2">
484
+ <a name="atk-table-get-column-at-index"></a><h3>atk_table_get_column_at_index ()</h3>
485
+ <pre class="programlisting"><span class="returnvalue">gint</span>
486
+ atk_table_get_column_at_index (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
487
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);</pre>
488
+ <div class="warning">
489
+ <p><code class="literal">atk_table_get_column_at_index</code> is deprecated and should not be used in newly-written code.</p>
490
+ <p>Since 2.12.</p>
491
+ </div>
492
+ <p>Gets a <span class="type">gint</span> representing the column at the specified <em class="parameter"><code>index_</code></em>
493
+ .</p>
494
+ <div class="refsect3">
495
+ <a name="id-1.5.11.9.4.6"></a><h4>Parameters</h4>
496
+ <div class="informaltable"><table width="100%" border="0">
497
+ <colgroup>
498
+ <col width="150px" class="parameters_name">
499
+ <col class="parameters_description">
500
+ <col width="200px" class="parameters_annotations">
501
+ </colgroup>
502
+ <tbody>
503
+ <tr>
504
+ <td class="parameter_name"><p>table</p></td>
505
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableInterface</p></td>
506
+ <td class="parameter_annotations"> </td>
507
+ </tr>
508
+ <tr>
509
+ <td class="parameter_name"><p>index_</p></td>
510
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing an index in <em class="parameter"><code>table</code></em>
511
+ </p></td>
512
+ <td class="parameter_annotations"> </td>
513
+ </tr>
514
+ </tbody>
515
+ </table></div>
516
+ </div>
517
+ <div class="refsect3">
518
+ <a name="id-1.5.11.9.4.7"></a><h4>Returns</h4>
519
+ <p> a gint representing the column at the specified index,
520
+ or -1 if the table does not implement this method.</p>
521
+ <p></p>
522
+ </div>
523
+ </div>
524
+ <hr>
525
+ <div class="refsect2">
526
+ <a name="atk-table-get-row-at-index"></a><h3>atk_table_get_row_at_index ()</h3>
527
+ <pre class="programlisting"><span class="returnvalue">gint</span>
528
+ atk_table_get_row_at_index (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
529
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);</pre>
530
+ <div class="warning">
531
+ <p><code class="literal">atk_table_get_row_at_index</code> is deprecated and should not be used in newly-written code.</p>
532
+ <p>since 2.12.</p>
533
+ </div>
534
+ <p>Gets a <span class="type">gint</span> representing the row at the specified <em class="parameter"><code>index_</code></em>
535
+ .</p>
536
+ <div class="refsect3">
537
+ <a name="id-1.5.11.9.5.6"></a><h4>Parameters</h4>
538
+ <div class="informaltable"><table width="100%" border="0">
539
+ <colgroup>
540
+ <col width="150px" class="parameters_name">
541
+ <col class="parameters_description">
542
+ <col width="200px" class="parameters_annotations">
543
+ </colgroup>
544
+ <tbody>
545
+ <tr>
546
+ <td class="parameter_name"><p>table</p></td>
547
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableInterface</p></td>
548
+ <td class="parameter_annotations"> </td>
549
+ </tr>
550
+ <tr>
551
+ <td class="parameter_name"><p>index_</p></td>
552
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing an index in <em class="parameter"><code>table</code></em>
553
+ </p></td>
554
+ <td class="parameter_annotations"> </td>
555
+ </tr>
556
+ </tbody>
557
+ </table></div>
558
+ </div>
559
+ <div class="refsect3">
560
+ <a name="id-1.5.11.9.5.7"></a><h4>Returns</h4>
561
+ <p> a gint representing the row at the specified index,
562
+ or -1 if the table does not implement this method.</p>
563
+ <p></p>
564
+ </div>
565
+ </div>
566
+ <hr>
567
+ <div class="refsect2">
568
+ <a name="atk-table-get-n-columns"></a><h3>atk_table_get_n_columns ()</h3>
569
+ <pre class="programlisting"><span class="returnvalue">gint</span>
570
+ atk_table_get_n_columns (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>);</pre>
571
+ <p>Gets the number of columns in the table.</p>
572
+ <div class="refsect3">
573
+ <a name="id-1.5.11.9.6.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><tr>
581
+ <td class="parameter_name"><p>table</p></td>
582
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
583
+ <td class="parameter_annotations"> </td>
584
+ </tr></tbody>
585
+ </table></div>
586
+ </div>
587
+ <div class="refsect3">
588
+ <a name="id-1.5.11.9.6.6"></a><h4>Returns</h4>
589
+ <p> a gint representing the number of columns, or 0
590
+ if value does not implement this interface.</p>
591
+ <p></p>
592
+ </div>
593
+ </div>
594
+ <hr>
595
+ <div class="refsect2">
596
+ <a name="atk-table-get-n-rows"></a><h3>atk_table_get_n_rows ()</h3>
597
+ <pre class="programlisting"><span class="returnvalue">gint</span>
598
+ atk_table_get_n_rows (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>);</pre>
599
+ <p>Gets the number of rows in the table.</p>
600
+ <div class="refsect3">
601
+ <a name="id-1.5.11.9.7.5"></a><h4>Parameters</h4>
602
+ <div class="informaltable"><table width="100%" border="0">
603
+ <colgroup>
604
+ <col width="150px" class="parameters_name">
605
+ <col class="parameters_description">
606
+ <col width="200px" class="parameters_annotations">
607
+ </colgroup>
608
+ <tbody><tr>
609
+ <td class="parameter_name"><p>table</p></td>
610
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
611
+ <td class="parameter_annotations"> </td>
612
+ </tr></tbody>
613
+ </table></div>
614
+ </div>
615
+ <div class="refsect3">
616
+ <a name="id-1.5.11.9.7.6"></a><h4>Returns</h4>
617
+ <p> a gint representing the number of rows, or 0
618
+ if value does not implement this interface.</p>
619
+ <p></p>
620
+ </div>
621
+ </div>
622
+ <hr>
623
+ <div class="refsect2">
624
+ <a name="atk-table-get-column-extent-at"></a><h3>atk_table_get_column_extent_at ()</h3>
625
+ <pre class="programlisting"><span class="returnvalue">gint</span>
626
+ atk_table_get_column_extent_at (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
627
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>,
628
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
629
+ <p>Gets the number of columns occupied by the accessible object
630
+ at the specified <em class="parameter"><code>row</code></em>
631
+ and <em class="parameter"><code>column</code></em>
632
+ in the <em class="parameter"><code>table</code></em>
633
+ .</p>
634
+ <div class="refsect3">
635
+ <a name="id-1.5.11.9.8.5"></a><h4>Parameters</h4>
636
+ <div class="informaltable"><table width="100%" border="0">
637
+ <colgroup>
638
+ <col width="150px" class="parameters_name">
639
+ <col class="parameters_description">
640
+ <col width="200px" class="parameters_annotations">
641
+ </colgroup>
642
+ <tbody>
643
+ <tr>
644
+ <td class="parameter_name"><p>table</p></td>
645
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
646
+ <td class="parameter_annotations"> </td>
647
+ </tr>
648
+ <tr>
649
+ <td class="parameter_name"><p>row</p></td>
650
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
651
+ </p></td>
652
+ <td class="parameter_annotations"> </td>
653
+ </tr>
654
+ <tr>
655
+ <td class="parameter_name"><p>column</p></td>
656
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
657
+ </p></td>
658
+ <td class="parameter_annotations"> </td>
659
+ </tr>
660
+ </tbody>
661
+ </table></div>
662
+ </div>
663
+ <div class="refsect3">
664
+ <a name="id-1.5.11.9.8.6"></a><h4>Returns</h4>
665
+ <p> a gint representing the column extent at specified position, or 0
666
+ if value does not implement this interface.</p>
667
+ <p></p>
668
+ </div>
669
+ </div>
670
+ <hr>
671
+ <div class="refsect2">
672
+ <a name="atk-table-get-row-extent-at"></a><h3>atk_table_get_row_extent_at ()</h3>
673
+ <pre class="programlisting"><span class="returnvalue">gint</span>
674
+ atk_table_get_row_extent_at (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
675
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>,
676
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
677
+ <p>Gets the number of rows occupied by the accessible object
678
+ at a specified <em class="parameter"><code>row</code></em>
679
+ and <em class="parameter"><code>column</code></em>
680
+ in the <em class="parameter"><code>table</code></em>
681
+ .</p>
682
+ <div class="refsect3">
683
+ <a name="id-1.5.11.9.9.5"></a><h4>Parameters</h4>
684
+ <div class="informaltable"><table width="100%" border="0">
685
+ <colgroup>
686
+ <col width="150px" class="parameters_name">
687
+ <col class="parameters_description">
688
+ <col width="200px" class="parameters_annotations">
689
+ </colgroup>
690
+ <tbody>
691
+ <tr>
692
+ <td class="parameter_name"><p>table</p></td>
693
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
694
+ <td class="parameter_annotations"> </td>
695
+ </tr>
696
+ <tr>
697
+ <td class="parameter_name"><p>row</p></td>
698
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
699
+ </p></td>
700
+ <td class="parameter_annotations"> </td>
701
+ </tr>
702
+ <tr>
703
+ <td class="parameter_name"><p>column</p></td>
704
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
705
+ </p></td>
706
+ <td class="parameter_annotations"> </td>
707
+ </tr>
708
+ </tbody>
709
+ </table></div>
710
+ </div>
711
+ <div class="refsect3">
712
+ <a name="id-1.5.11.9.9.6"></a><h4>Returns</h4>
713
+ <p> a gint representing the row extent at specified position, or 0
714
+ if value does not implement this interface.</p>
715
+ <p></p>
716
+ </div>
717
+ </div>
718
+ <hr>
719
+ <div class="refsect2">
720
+ <a name="atk-table-get-caption"></a><h3>atk_table_get_caption ()</h3>
721
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
722
+ atk_table_get_caption (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>);</pre>
723
+ <p>Gets the caption for the <em class="parameter"><code>table</code></em>
724
+ .</p>
725
+ <div class="refsect3">
726
+ <a name="id-1.5.11.9.10.5"></a><h4>Parameters</h4>
727
+ <div class="informaltable"><table width="100%" border="0">
728
+ <colgroup>
729
+ <col width="150px" class="parameters_name">
730
+ <col class="parameters_description">
731
+ <col width="200px" class="parameters_annotations">
732
+ </colgroup>
733
+ <tbody><tr>
734
+ <td class="parameter_name"><p>table</p></td>
735
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableInterface</p></td>
736
+ <td class="parameter_annotations"> </td>
737
+ </tr></tbody>
738
+ </table></div>
739
+ </div>
740
+ <div class="refsect3">
741
+ <a name="id-1.5.11.9.10.6"></a><h4>Returns</h4>
742
+ <p> a AtkObject* representing the
743
+ table caption, or <code class="literal">NULL</code> if value does not implement this interface. </p>
744
+ <p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>][<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
745
+ </div>
746
+ </div>
747
+ <hr>
748
+ <div class="refsect2">
749
+ <a name="atk-table-get-column-description"></a><h3>atk_table_get_column_description ()</h3>
750
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
751
+ atk_table_get_column_description (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
752
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
753
+ <p>Gets the description text of the specified <em class="parameter"><code>column</code></em>
754
+ in the table</p>
755
+ <div class="refsect3">
756
+ <a name="id-1.5.11.9.11.5"></a><h4>Parameters</h4>
757
+ <div class="informaltable"><table width="100%" border="0">
758
+ <colgroup>
759
+ <col width="150px" class="parameters_name">
760
+ <col class="parameters_description">
761
+ <col width="200px" class="parameters_annotations">
762
+ </colgroup>
763
+ <tbody>
764
+ <tr>
765
+ <td class="parameter_name"><p>table</p></td>
766
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
767
+ <td class="parameter_annotations"> </td>
768
+ </tr>
769
+ <tr>
770
+ <td class="parameter_name"><p>column</p></td>
771
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
772
+ </p></td>
773
+ <td class="parameter_annotations"> </td>
774
+ </tr>
775
+ </tbody>
776
+ </table></div>
777
+ </div>
778
+ <div class="refsect3">
779
+ <a name="id-1.5.11.9.11.6"></a><h4>Returns</h4>
780
+ <p> a gchar* representing the column description, or <code class="literal">NULL</code>
781
+ if value does not implement this interface.</p>
782
+ <p></p>
783
+ </div>
784
+ </div>
785
+ <hr>
786
+ <div class="refsect2">
787
+ <a name="atk-table-get-row-description"></a><h3>atk_table_get_row_description ()</h3>
788
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> *
789
+ atk_table_get_row_description (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
790
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>);</pre>
791
+ <p>Gets the description text of the specified row in the table</p>
792
+ <div class="refsect3">
793
+ <a name="id-1.5.11.9.12.5"></a><h4>Parameters</h4>
794
+ <div class="informaltable"><table width="100%" border="0">
795
+ <colgroup>
796
+ <col width="150px" class="parameters_name">
797
+ <col class="parameters_description">
798
+ <col width="200px" class="parameters_annotations">
799
+ </colgroup>
800
+ <tbody>
801
+ <tr>
802
+ <td class="parameter_name"><p>table</p></td>
803
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
804
+ <td class="parameter_annotations"> </td>
805
+ </tr>
806
+ <tr>
807
+ <td class="parameter_name"><p>row</p></td>
808
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
809
+ </p></td>
810
+ <td class="parameter_annotations"> </td>
811
+ </tr>
812
+ </tbody>
813
+ </table></div>
814
+ </div>
815
+ <div class="refsect3">
816
+ <a name="id-1.5.11.9.12.6"></a><h4>Returns</h4>
817
+ <p> (nullable) a gchar* representing the row description, or
818
+ <code class="literal">NULL</code> if value does not implement this interface.</p>
819
+ <p></p>
820
+ </div>
821
+ </div>
822
+ <hr>
823
+ <div class="refsect2">
824
+ <a name="atk-table-get-column-header"></a><h3>atk_table_get_column_header ()</h3>
825
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
826
+ atk_table_get_column_header (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
827
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
828
+ <p>Gets the column header of a specified column in an accessible table.</p>
829
+ <div class="refsect3">
830
+ <a name="id-1.5.11.9.13.5"></a><h4>Parameters</h4>
831
+ <div class="informaltable"><table width="100%" border="0">
832
+ <colgroup>
833
+ <col width="150px" class="parameters_name">
834
+ <col class="parameters_description">
835
+ <col width="200px" class="parameters_annotations">
836
+ </colgroup>
837
+ <tbody>
838
+ <tr>
839
+ <td class="parameter_name"><p>table</p></td>
840
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
841
+ <td class="parameter_annotations"> </td>
842
+ </tr>
843
+ <tr>
844
+ <td class="parameter_name"><p>column</p></td>
845
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in the table</p></td>
846
+ <td class="parameter_annotations"> </td>
847
+ </tr>
848
+ </tbody>
849
+ </table></div>
850
+ </div>
851
+ <div class="refsect3">
852
+ <a name="id-1.5.11.9.13.6"></a><h4>Returns</h4>
853
+ <p> a AtkObject* representing the
854
+ specified column header, or <code class="literal">NULL</code> if value does not implement this
855
+ interface. </p>
856
+ <p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>][<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
857
+ </div>
858
+ </div>
859
+ <hr>
860
+ <div class="refsect2">
861
+ <a name="atk-table-get-row-header"></a><h3>atk_table_get_row_header ()</h3>
862
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
863
+ atk_table_get_row_header (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
864
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>);</pre>
865
+ <p>Gets the row header of a specified row in an accessible table.</p>
866
+ <div class="refsect3">
867
+ <a name="id-1.5.11.9.14.5"></a><h4>Parameters</h4>
868
+ <div class="informaltable"><table width="100%" border="0">
869
+ <colgroup>
870
+ <col width="150px" class="parameters_name">
871
+ <col class="parameters_description">
872
+ <col width="200px" class="parameters_annotations">
873
+ </colgroup>
874
+ <tbody>
875
+ <tr>
876
+ <td class="parameter_name"><p>table</p></td>
877
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
878
+ <td class="parameter_annotations"> </td>
879
+ </tr>
880
+ <tr>
881
+ <td class="parameter_name"><p>row</p></td>
882
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in the table</p></td>
883
+ <td class="parameter_annotations"> </td>
884
+ </tr>
885
+ </tbody>
886
+ </table></div>
887
+ </div>
888
+ <div class="refsect3">
889
+ <a name="id-1.5.11.9.14.6"></a><h4>Returns</h4>
890
+ <p> a AtkObject* representing the
891
+ specified row header, or <code class="literal">NULL</code> if value does not implement this
892
+ interface. </p>
893
+ <p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>][<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
894
+ </div>
895
+ </div>
896
+ <hr>
897
+ <div class="refsect2">
898
+ <a name="atk-table-get-summary"></a><h3>atk_table_get_summary ()</h3>
899
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
900
+ atk_table_get_summary (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>);</pre>
901
+ <p>Gets the summary description of the table.</p>
902
+ <div class="refsect3">
903
+ <a name="id-1.5.11.9.15.5"></a><h4>Parameters</h4>
904
+ <div class="informaltable"><table width="100%" border="0">
905
+ <colgroup>
906
+ <col width="150px" class="parameters_name">
907
+ <col class="parameters_description">
908
+ <col width="200px" class="parameters_annotations">
909
+ </colgroup>
910
+ <tbody><tr>
911
+ <td class="parameter_name"><p>table</p></td>
912
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
913
+ <td class="parameter_annotations"> </td>
914
+ </tr></tbody>
915
+ </table></div>
916
+ </div>
917
+ <div class="refsect3">
918
+ <a name="id-1.5.11.9.15.6"></a><h4>Returns</h4>
919
+ <p> a AtkObject* representing a summary description
920
+ of the table, or zero if value does not implement this interface. </p>
921
+ <p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
922
+ </div>
923
+ </div>
924
+ <hr>
925
+ <div class="refsect2">
926
+ <a name="atk-table-set-caption"></a><h3>atk_table_set_caption ()</h3>
927
+ <pre class="programlisting"><span class="returnvalue">void</span>
928
+ atk_table_set_caption (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
929
+ <em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> *caption</code></em>);</pre>
930
+ <p>Sets the caption for the table.</p>
931
+ <div class="refsect3">
932
+ <a name="id-1.5.11.9.16.5"></a><h4>Parameters</h4>
933
+ <div class="informaltable"><table width="100%" border="0">
934
+ <colgroup>
935
+ <col width="150px" class="parameters_name">
936
+ <col class="parameters_description">
937
+ <col width="200px" class="parameters_annotations">
938
+ </colgroup>
939
+ <tbody>
940
+ <tr>
941
+ <td class="parameter_name"><p>table</p></td>
942
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
943
+ <td class="parameter_annotations"> </td>
944
+ </tr>
945
+ <tr>
946
+ <td class="parameter_name"><p>caption</p></td>
947
+ <td class="parameter_description"><p>a <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> representing the caption to set for <em class="parameter"><code>table</code></em>
948
+ </p></td>
949
+ <td class="parameter_annotations"> </td>
950
+ </tr>
951
+ </tbody>
952
+ </table></div>
953
+ </div>
954
+ </div>
955
+ <hr>
956
+ <div class="refsect2">
957
+ <a name="atk-table-set-row-description"></a><h3>atk_table_set_row_description ()</h3>
958
+ <pre class="programlisting"><span class="returnvalue">void</span>
959
+ atk_table_set_row_description (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
960
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>,
961
+ <em class="parameter"><code>const <span class="type">gchar</span> *description</code></em>);</pre>
962
+ <p>Sets the description text for the specified <em class="parameter"><code>row</code></em>
963
+ of <em class="parameter"><code>table</code></em>
964
+ .</p>
965
+ <div class="refsect3">
966
+ <a name="id-1.5.11.9.17.5"></a><h4>Parameters</h4>
967
+ <div class="informaltable"><table width="100%" border="0">
968
+ <colgroup>
969
+ <col width="150px" class="parameters_name">
970
+ <col class="parameters_description">
971
+ <col width="200px" class="parameters_annotations">
972
+ </colgroup>
973
+ <tbody>
974
+ <tr>
975
+ <td class="parameter_name"><p>table</p></td>
976
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
977
+ <td class="parameter_annotations"> </td>
978
+ </tr>
979
+ <tr>
980
+ <td class="parameter_name"><p>row</p></td>
981
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
982
+ </p></td>
983
+ <td class="parameter_annotations"> </td>
984
+ </tr>
985
+ <tr>
986
+ <td class="parameter_name"><p>description</p></td>
987
+ <td class="parameter_description"><p>a <span class="type">gchar</span> representing the description text
988
+ to set for the specified <em class="parameter"><code>row</code></em>
989
+ of <em class="parameter"><code>table</code></em>
990
+ </p></td>
991
+ <td class="parameter_annotations"> </td>
992
+ </tr>
993
+ </tbody>
994
+ </table></div>
995
+ </div>
996
+ </div>
997
+ <hr>
998
+ <div class="refsect2">
999
+ <a name="atk-table-set-column-description"></a><h3>atk_table_set_column_description ()</h3>
1000
+ <pre class="programlisting"><span class="returnvalue">void</span>
1001
+ atk_table_set_column_description (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1002
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>,
1003
+ <em class="parameter"><code>const <span class="type">gchar</span> *description</code></em>);</pre>
1004
+ <p>Sets the description text for the specified <em class="parameter"><code>column</code></em>
1005
+ of the <em class="parameter"><code>table</code></em>
1006
+ .</p>
1007
+ <div class="refsect3">
1008
+ <a name="id-1.5.11.9.18.5"></a><h4>Parameters</h4>
1009
+ <div class="informaltable"><table width="100%" border="0">
1010
+ <colgroup>
1011
+ <col width="150px" class="parameters_name">
1012
+ <col class="parameters_description">
1013
+ <col width="200px" class="parameters_annotations">
1014
+ </colgroup>
1015
+ <tbody>
1016
+ <tr>
1017
+ <td class="parameter_name"><p>table</p></td>
1018
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1019
+ <td class="parameter_annotations"> </td>
1020
+ </tr>
1021
+ <tr>
1022
+ <td class="parameter_name"><p>column</p></td>
1023
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
1024
+ </p></td>
1025
+ <td class="parameter_annotations"> </td>
1026
+ </tr>
1027
+ <tr>
1028
+ <td class="parameter_name"><p>description</p></td>
1029
+ <td class="parameter_description"><p>a <span class="type">gchar</span> representing the description text
1030
+ to set for the specified <em class="parameter"><code>column</code></em>
1031
+ of the <em class="parameter"><code>table</code></em>
1032
+ </p></td>
1033
+ <td class="parameter_annotations"> </td>
1034
+ </tr>
1035
+ </tbody>
1036
+ </table></div>
1037
+ </div>
1038
+ </div>
1039
+ <hr>
1040
+ <div class="refsect2">
1041
+ <a name="atk-table-set-row-header"></a><h3>atk_table_set_row_header ()</h3>
1042
+ <pre class="programlisting"><span class="returnvalue">void</span>
1043
+ atk_table_set_row_header (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1044
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>,
1045
+ <em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> *header</code></em>);</pre>
1046
+ <p>Sets the specified row header to <em class="parameter"><code>header</code></em>
1047
+ .</p>
1048
+ <div class="refsect3">
1049
+ <a name="id-1.5.11.9.19.5"></a><h4>Parameters</h4>
1050
+ <div class="informaltable"><table width="100%" border="0">
1051
+ <colgroup>
1052
+ <col width="150px" class="parameters_name">
1053
+ <col class="parameters_description">
1054
+ <col width="200px" class="parameters_annotations">
1055
+ </colgroup>
1056
+ <tbody>
1057
+ <tr>
1058
+ <td class="parameter_name"><p>table</p></td>
1059
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1060
+ <td class="parameter_annotations"> </td>
1061
+ </tr>
1062
+ <tr>
1063
+ <td class="parameter_name"><p>row</p></td>
1064
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
1065
+ </p></td>
1066
+ <td class="parameter_annotations"> </td>
1067
+ </tr>
1068
+ <tr>
1069
+ <td class="parameter_name"><p>header</p></td>
1070
+ <td class="parameter_description"><p>an <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> </p></td>
1071
+ <td class="parameter_annotations"> </td>
1072
+ </tr>
1073
+ </tbody>
1074
+ </table></div>
1075
+ </div>
1076
+ </div>
1077
+ <hr>
1078
+ <div class="refsect2">
1079
+ <a name="atk-table-set-column-header"></a><h3>atk_table_set_column_header ()</h3>
1080
+ <pre class="programlisting"><span class="returnvalue">void</span>
1081
+ atk_table_set_column_header (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1082
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>,
1083
+ <em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> *header</code></em>);</pre>
1084
+ <p>Sets the specified column header to <em class="parameter"><code>header</code></em>
1085
+ .</p>
1086
+ <div class="refsect3">
1087
+ <a name="id-1.5.11.9.20.5"></a><h4>Parameters</h4>
1088
+ <div class="informaltable"><table width="100%" border="0">
1089
+ <colgroup>
1090
+ <col width="150px" class="parameters_name">
1091
+ <col class="parameters_description">
1092
+ <col width="200px" class="parameters_annotations">
1093
+ </colgroup>
1094
+ <tbody>
1095
+ <tr>
1096
+ <td class="parameter_name"><p>table</p></td>
1097
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1098
+ <td class="parameter_annotations"> </td>
1099
+ </tr>
1100
+ <tr>
1101
+ <td class="parameter_name"><p>column</p></td>
1102
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
1103
+ </p></td>
1104
+ <td class="parameter_annotations"> </td>
1105
+ </tr>
1106
+ <tr>
1107
+ <td class="parameter_name"><p>header</p></td>
1108
+ <td class="parameter_description"><p>an <a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a></p></td>
1109
+ <td class="parameter_annotations"> </td>
1110
+ </tr>
1111
+ </tbody>
1112
+ </table></div>
1113
+ </div>
1114
+ </div>
1115
+ <hr>
1116
+ <div class="refsect2">
1117
+ <a name="atk-table-set-summary"></a><h3>atk_table_set_summary ()</h3>
1118
+ <pre class="programlisting"><span class="returnvalue">void</span>
1119
+ atk_table_set_summary (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1120
+ <em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> *accessible</code></em>);</pre>
1121
+ <p>Sets the summary description of the table.</p>
1122
+ <div class="refsect3">
1123
+ <a name="id-1.5.11.9.21.5"></a><h4>Parameters</h4>
1124
+ <div class="informaltable"><table width="100%" border="0">
1125
+ <colgroup>
1126
+ <col width="150px" class="parameters_name">
1127
+ <col class="parameters_description">
1128
+ <col width="200px" class="parameters_annotations">
1129
+ </colgroup>
1130
+ <tbody>
1131
+ <tr>
1132
+ <td class="parameter_name"><p>table</p></td>
1133
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1134
+ <td class="parameter_annotations"> </td>
1135
+ </tr>
1136
+ <tr>
1137
+ <td class="parameter_name"><p>accessible</p></td>
1138
+ <td class="parameter_description"><p>an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> representing the summary description
1139
+ to set for <em class="parameter"><code>table</code></em>
1140
+ </p></td>
1141
+ <td class="parameter_annotations"> </td>
1142
+ </tr>
1143
+ </tbody>
1144
+ </table></div>
1145
+ </div>
1146
+ </div>
1147
+ <hr>
1148
+ <div class="refsect2">
1149
+ <a name="atk-table-get-selected-columns"></a><h3>atk_table_get_selected_columns ()</h3>
1150
+ <pre class="programlisting"><span class="returnvalue">gint</span>
1151
+ atk_table_get_selected_columns (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1152
+ <em class="parameter"><code><span class="type">gint</span> **selected</code></em>);</pre>
1153
+ <p>Gets the selected columns of the table by initializing **selected with
1154
+ the selected column numbers. This array should be freed by the caller.</p>
1155
+ <div class="refsect3">
1156
+ <a name="id-1.5.11.9.22.5"></a><h4>Parameters</h4>
1157
+ <div class="informaltable"><table width="100%" border="0">
1158
+ <colgroup>
1159
+ <col width="150px" class="parameters_name">
1160
+ <col class="parameters_description">
1161
+ <col width="200px" class="parameters_annotations">
1162
+ </colgroup>
1163
+ <tbody>
1164
+ <tr>
1165
+ <td class="parameter_name"><p>table</p></td>
1166
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1167
+ <td class="parameter_annotations"> </td>
1168
+ </tr>
1169
+ <tr>
1170
+ <td class="parameter_name"><p>selected</p></td>
1171
+ <td class="parameter_description"><p>a <span class="type">gint</span>** that is to contain the selected columns numbers</p></td>
1172
+ <td class="parameter_annotations"> </td>
1173
+ </tr>
1174
+ </tbody>
1175
+ </table></div>
1176
+ </div>
1177
+ <div class="refsect3">
1178
+ <a name="id-1.5.11.9.22.6"></a><h4>Returns</h4>
1179
+ <p> a gint representing the number of selected columns,
1180
+ or <code class="literal">0</code> if value does not implement this interface.</p>
1181
+ <p></p>
1182
+ </div>
1183
+ </div>
1184
+ <hr>
1185
+ <div class="refsect2">
1186
+ <a name="atk-table-get-selected-rows"></a><h3>atk_table_get_selected_rows ()</h3>
1187
+ <pre class="programlisting"><span class="returnvalue">gint</span>
1188
+ atk_table_get_selected_rows (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1189
+ <em class="parameter"><code><span class="type">gint</span> **selected</code></em>);</pre>
1190
+ <p>Gets the selected rows of the table by initializing **selected with
1191
+ the selected row numbers. This array should be freed by the caller.</p>
1192
+ <div class="refsect3">
1193
+ <a name="id-1.5.11.9.23.5"></a><h4>Parameters</h4>
1194
+ <div class="informaltable"><table width="100%" border="0">
1195
+ <colgroup>
1196
+ <col width="150px" class="parameters_name">
1197
+ <col class="parameters_description">
1198
+ <col width="200px" class="parameters_annotations">
1199
+ </colgroup>
1200
+ <tbody>
1201
+ <tr>
1202
+ <td class="parameter_name"><p>table</p></td>
1203
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1204
+ <td class="parameter_annotations"> </td>
1205
+ </tr>
1206
+ <tr>
1207
+ <td class="parameter_name"><p>selected</p></td>
1208
+ <td class="parameter_description"><p>a <span class="type">gint</span>** that is to contain the selected row numbers</p></td>
1209
+ <td class="parameter_annotations"> </td>
1210
+ </tr>
1211
+ </tbody>
1212
+ </table></div>
1213
+ </div>
1214
+ <div class="refsect3">
1215
+ <a name="id-1.5.11.9.23.6"></a><h4>Returns</h4>
1216
+ <p> a gint representing the number of selected rows,
1217
+ or zero if value does not implement this interface.</p>
1218
+ <p></p>
1219
+ </div>
1220
+ </div>
1221
+ <hr>
1222
+ <div class="refsect2">
1223
+ <a name="atk-table-is-column-selected"></a><h3>atk_table_is_column_selected ()</h3>
1224
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1225
+ atk_table_is_column_selected (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1226
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
1227
+ <p>Gets a boolean value indicating whether the specified <em class="parameter"><code>column</code></em>
1228
+
1229
+ is selected</p>
1230
+ <div class="refsect3">
1231
+ <a name="id-1.5.11.9.24.5"></a><h4>Parameters</h4>
1232
+ <div class="informaltable"><table width="100%" border="0">
1233
+ <colgroup>
1234
+ <col width="150px" class="parameters_name">
1235
+ <col class="parameters_description">
1236
+ <col width="200px" class="parameters_annotations">
1237
+ </colgroup>
1238
+ <tbody>
1239
+ <tr>
1240
+ <td class="parameter_name"><p>table</p></td>
1241
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1242
+ <td class="parameter_annotations"> </td>
1243
+ </tr>
1244
+ <tr>
1245
+ <td class="parameter_name"><p>column</p></td>
1246
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
1247
+ </p></td>
1248
+ <td class="parameter_annotations"> </td>
1249
+ </tr>
1250
+ </tbody>
1251
+ </table></div>
1252
+ </div>
1253
+ <div class="refsect3">
1254
+ <a name="id-1.5.11.9.24.6"></a><h4>Returns</h4>
1255
+ <p> a gboolean representing if the column is selected, or 0
1256
+ if value does not implement this interface.</p>
1257
+ <p></p>
1258
+ </div>
1259
+ </div>
1260
+ <hr>
1261
+ <div class="refsect2">
1262
+ <a name="atk-table-is-row-selected"></a><h3>atk_table_is_row_selected ()</h3>
1263
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1264
+ atk_table_is_row_selected (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1265
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>);</pre>
1266
+ <p>Gets a boolean value indicating whether the specified <em class="parameter"><code>row</code></em>
1267
+
1268
+ is selected</p>
1269
+ <div class="refsect3">
1270
+ <a name="id-1.5.11.9.25.5"></a><h4>Parameters</h4>
1271
+ <div class="informaltable"><table width="100%" border="0">
1272
+ <colgroup>
1273
+ <col width="150px" class="parameters_name">
1274
+ <col class="parameters_description">
1275
+ <col width="200px" class="parameters_annotations">
1276
+ </colgroup>
1277
+ <tbody>
1278
+ <tr>
1279
+ <td class="parameter_name"><p>table</p></td>
1280
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1281
+ <td class="parameter_annotations"> </td>
1282
+ </tr>
1283
+ <tr>
1284
+ <td class="parameter_name"><p>row</p></td>
1285
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
1286
+ </p></td>
1287
+ <td class="parameter_annotations"> </td>
1288
+ </tr>
1289
+ </tbody>
1290
+ </table></div>
1291
+ </div>
1292
+ <div class="refsect3">
1293
+ <a name="id-1.5.11.9.25.6"></a><h4>Returns</h4>
1294
+ <p> a gboolean representing if the row is selected, or 0
1295
+ if value does not implement this interface.</p>
1296
+ <p></p>
1297
+ </div>
1298
+ </div>
1299
+ <hr>
1300
+ <div class="refsect2">
1301
+ <a name="atk-table-is-selected"></a><h3>atk_table_is_selected ()</h3>
1302
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1303
+ atk_table_is_selected (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1304
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>,
1305
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
1306
+ <p>Gets a boolean value indicating whether the accessible object
1307
+ at the specified <em class="parameter"><code>row</code></em>
1308
+ and <em class="parameter"><code>column</code></em>
1309
+ is selected</p>
1310
+ <div class="refsect3">
1311
+ <a name="id-1.5.11.9.26.5"></a><h4>Parameters</h4>
1312
+ <div class="informaltable"><table width="100%" border="0">
1313
+ <colgroup>
1314
+ <col width="150px" class="parameters_name">
1315
+ <col class="parameters_description">
1316
+ <col width="200px" class="parameters_annotations">
1317
+ </colgroup>
1318
+ <tbody>
1319
+ <tr>
1320
+ <td class="parameter_name"><p>table</p></td>
1321
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1322
+ <td class="parameter_annotations"> </td>
1323
+ </tr>
1324
+ <tr>
1325
+ <td class="parameter_name"><p>row</p></td>
1326
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
1327
+ </p></td>
1328
+ <td class="parameter_annotations"> </td>
1329
+ </tr>
1330
+ <tr>
1331
+ <td class="parameter_name"><p>column</p></td>
1332
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
1333
+ </p></td>
1334
+ <td class="parameter_annotations"> </td>
1335
+ </tr>
1336
+ </tbody>
1337
+ </table></div>
1338
+ </div>
1339
+ <div class="refsect3">
1340
+ <a name="id-1.5.11.9.26.6"></a><h4>Returns</h4>
1341
+ <p> a gboolean representing if the cell is selected, or 0
1342
+ if value does not implement this interface.</p>
1343
+ <p></p>
1344
+ </div>
1345
+ </div>
1346
+ <hr>
1347
+ <div class="refsect2">
1348
+ <a name="atk-table-add-column-selection"></a><h3>atk_table_add_column_selection ()</h3>
1349
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1350
+ atk_table_add_column_selection (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1351
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
1352
+ <p>Adds the specified <em class="parameter"><code>column</code></em>
1353
+ to the selection.</p>
1354
+ <div class="refsect3">
1355
+ <a name="id-1.5.11.9.27.5"></a><h4>Parameters</h4>
1356
+ <div class="informaltable"><table width="100%" border="0">
1357
+ <colgroup>
1358
+ <col width="150px" class="parameters_name">
1359
+ <col class="parameters_description">
1360
+ <col width="200px" class="parameters_annotations">
1361
+ </colgroup>
1362
+ <tbody>
1363
+ <tr>
1364
+ <td class="parameter_name"><p>table</p></td>
1365
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1366
+ <td class="parameter_annotations"> </td>
1367
+ </tr>
1368
+ <tr>
1369
+ <td class="parameter_name"><p>column</p></td>
1370
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
1371
+ </p></td>
1372
+ <td class="parameter_annotations"> </td>
1373
+ </tr>
1374
+ </tbody>
1375
+ </table></div>
1376
+ </div>
1377
+ <div class="refsect3">
1378
+ <a name="id-1.5.11.9.27.6"></a><h4>Returns</h4>
1379
+ <p> a gboolean representing if the column was successfully added to
1380
+ the selection, or 0 if value does not implement this interface.</p>
1381
+ <p></p>
1382
+ </div>
1383
+ </div>
1384
+ <hr>
1385
+ <div class="refsect2">
1386
+ <a name="atk-table-add-row-selection"></a><h3>atk_table_add_row_selection ()</h3>
1387
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1388
+ atk_table_add_row_selection (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1389
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>);</pre>
1390
+ <p>Adds the specified <em class="parameter"><code>row</code></em>
1391
+ to the selection.</p>
1392
+ <div class="refsect3">
1393
+ <a name="id-1.5.11.9.28.5"></a><h4>Parameters</h4>
1394
+ <div class="informaltable"><table width="100%" border="0">
1395
+ <colgroup>
1396
+ <col width="150px" class="parameters_name">
1397
+ <col class="parameters_description">
1398
+ <col width="200px" class="parameters_annotations">
1399
+ </colgroup>
1400
+ <tbody>
1401
+ <tr>
1402
+ <td class="parameter_name"><p>table</p></td>
1403
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1404
+ <td class="parameter_annotations"> </td>
1405
+ </tr>
1406
+ <tr>
1407
+ <td class="parameter_name"><p>row</p></td>
1408
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
1409
+ </p></td>
1410
+ <td class="parameter_annotations"> </td>
1411
+ </tr>
1412
+ </tbody>
1413
+ </table></div>
1414
+ </div>
1415
+ <div class="refsect3">
1416
+ <a name="id-1.5.11.9.28.6"></a><h4>Returns</h4>
1417
+ <p> a gboolean representing if row was successfully added to selection,
1418
+ or 0 if value does not implement this interface.</p>
1419
+ <p></p>
1420
+ </div>
1421
+ </div>
1422
+ <hr>
1423
+ <div class="refsect2">
1424
+ <a name="atk-table-remove-column-selection"></a><h3>atk_table_remove_column_selection ()</h3>
1425
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1426
+ atk_table_remove_column_selection (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1427
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>);</pre>
1428
+ <p>Adds the specified <em class="parameter"><code>column</code></em>
1429
+ to the selection.</p>
1430
+ <div class="refsect3">
1431
+ <a name="id-1.5.11.9.29.5"></a><h4>Parameters</h4>
1432
+ <div class="informaltable"><table width="100%" border="0">
1433
+ <colgroup>
1434
+ <col width="150px" class="parameters_name">
1435
+ <col class="parameters_description">
1436
+ <col width="200px" class="parameters_annotations">
1437
+ </colgroup>
1438
+ <tbody>
1439
+ <tr>
1440
+ <td class="parameter_name"><p>table</p></td>
1441
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1442
+ <td class="parameter_annotations"> </td>
1443
+ </tr>
1444
+ <tr>
1445
+ <td class="parameter_name"><p>column</p></td>
1446
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a column in <em class="parameter"><code>table</code></em>
1447
+ </p></td>
1448
+ <td class="parameter_annotations"> </td>
1449
+ </tr>
1450
+ </tbody>
1451
+ </table></div>
1452
+ </div>
1453
+ <div class="refsect3">
1454
+ <a name="id-1.5.11.9.29.6"></a><h4>Returns</h4>
1455
+ <p> a gboolean representing if the column was successfully removed from
1456
+ the selection, or 0 if value does not implement this interface.</p>
1457
+ <p></p>
1458
+ </div>
1459
+ </div>
1460
+ <hr>
1461
+ <div class="refsect2">
1462
+ <a name="atk-table-remove-row-selection"></a><h3>atk_table_remove_row_selection ()</h3>
1463
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
1464
+ atk_table_remove_row_selection (<em class="parameter"><code><a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *table</code></em>,
1465
+ <em class="parameter"><code><span class="type">gint</span> row</code></em>);</pre>
1466
+ <p>Removes the specified <em class="parameter"><code>row</code></em>
1467
+ from the selection.</p>
1468
+ <div class="refsect3">
1469
+ <a name="id-1.5.11.9.30.5"></a><h4>Parameters</h4>
1470
+ <div class="informaltable"><table width="100%" border="0">
1471
+ <colgroup>
1472
+ <col width="150px" class="parameters_name">
1473
+ <col class="parameters_description">
1474
+ <col width="200px" class="parameters_annotations">
1475
+ </colgroup>
1476
+ <tbody>
1477
+ <tr>
1478
+ <td class="parameter_name"><p>table</p></td>
1479
+ <td class="parameter_description"><p>a GObject instance that implements AtkTableIface</p></td>
1480
+ <td class="parameter_annotations"> </td>
1481
+ </tr>
1482
+ <tr>
1483
+ <td class="parameter_name"><p>row</p></td>
1484
+ <td class="parameter_description"><p>a <span class="type">gint</span> representing a row in <em class="parameter"><code>table</code></em>
1485
+ </p></td>
1486
+ <td class="parameter_annotations"> </td>
1487
+ </tr>
1488
+ </tbody>
1489
+ </table></div>
1490
+ </div>
1491
+ <div class="refsect3">
1492
+ <a name="id-1.5.11.9.30.6"></a><h4>Returns</h4>
1493
+ <p> a gboolean representing if the row was successfully removed from
1494
+ the selection, or 0 if value does not implement this interface.</p>
1495
+ <p></p>
1496
+ </div>
1497
+ </div>
1498
+ </div>
1499
+ <div class="refsect1">
1500
+ <a name="AtkTable.other_details"></a><h2>Types and Values</h2>
1501
+ <div class="refsect2">
1502
+ <a name="AtkTable-struct"></a><h3>AtkTable</h3>
1503
+ <pre class="programlisting">typedef struct _AtkTable AtkTable;</pre>
1504
+ <p>
1505
+ </p>
1506
+ </div>
1507
+ </div>
1508
+ <div class="refsect1">
1509
+ <a name="AtkTable.signal-details"></a><h2>Signal Details</h2>
1510
+ <div class="refsect2">
1511
+ <a name="AtkTable-column-deleted"></a><h3>The <code class="literal">“column-deleted”</code> signal</h3>
1512
+ <pre class="programlisting"><span class="returnvalue">void</span>
1513
+ user_function (<a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *atktable,
1514
+ <span class="type">gint</span> arg1,
1515
+ <span class="type">gint</span> arg2,
1516
+ <span class="type">gpointer</span> user_data)</pre>
1517
+ <p>The "column-deleted" signal is emitted by an object which
1518
+ implements the AtkTable interface when a column is deleted.</p>
1519
+ <div class="refsect3">
1520
+ <a name="id-1.5.11.11.2.5"></a><h4>Parameters</h4>
1521
+ <div class="informaltable"><table width="100%" border="0">
1522
+ <colgroup>
1523
+ <col width="150px" class="parameters_name">
1524
+ <col class="parameters_description">
1525
+ <col width="200px" class="parameters_annotations">
1526
+ </colgroup>
1527
+ <tbody>
1528
+ <tr>
1529
+ <td class="parameter_name"><p>atktable</p></td>
1530
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
1531
+ <td class="parameter_annotations"> </td>
1532
+ </tr>
1533
+ <tr>
1534
+ <td class="parameter_name"><p>arg1</p></td>
1535
+ <td class="parameter_description"><p>The index of the first column deleted.</p></td>
1536
+ <td class="parameter_annotations"> </td>
1537
+ </tr>
1538
+ <tr>
1539
+ <td class="parameter_name"><p>arg2</p></td>
1540
+ <td class="parameter_description"><p>The number of columns deleted.</p></td>
1541
+ <td class="parameter_annotations"> </td>
1542
+ </tr>
1543
+ <tr>
1544
+ <td class="parameter_name"><p>user_data</p></td>
1545
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
1546
+ <td class="parameter_annotations"> </td>
1547
+ </tr>
1548
+ </tbody>
1549
+ </table></div>
1550
+ </div>
1551
+ <p>Flags: Run Last</p>
1552
+ </div>
1553
+ <hr>
1554
+ <div class="refsect2">
1555
+ <a name="AtkTable-column-inserted"></a><h3>The <code class="literal">“column-inserted”</code> signal</h3>
1556
+ <pre class="programlisting"><span class="returnvalue">void</span>
1557
+ user_function (<a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *atktable,
1558
+ <span class="type">gint</span> arg1,
1559
+ <span class="type">gint</span> arg2,
1560
+ <span class="type">gpointer</span> user_data)</pre>
1561
+ <p>The "column-inserted" signal is emitted by an object which
1562
+ implements the AtkTable interface when a column is inserted.</p>
1563
+ <div class="refsect3">
1564
+ <a name="id-1.5.11.11.3.5"></a><h4>Parameters</h4>
1565
+ <div class="informaltable"><table width="100%" border="0">
1566
+ <colgroup>
1567
+ <col width="150px" class="parameters_name">
1568
+ <col class="parameters_description">
1569
+ <col width="200px" class="parameters_annotations">
1570
+ </colgroup>
1571
+ <tbody>
1572
+ <tr>
1573
+ <td class="parameter_name"><p>atktable</p></td>
1574
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
1575
+ <td class="parameter_annotations"> </td>
1576
+ </tr>
1577
+ <tr>
1578
+ <td class="parameter_name"><p>arg1</p></td>
1579
+ <td class="parameter_description"><p>The index of the column inserted.</p></td>
1580
+ <td class="parameter_annotations"> </td>
1581
+ </tr>
1582
+ <tr>
1583
+ <td class="parameter_name"><p>arg2</p></td>
1584
+ <td class="parameter_description"><p>The number of colums inserted.</p></td>
1585
+ <td class="parameter_annotations"> </td>
1586
+ </tr>
1587
+ <tr>
1588
+ <td class="parameter_name"><p>user_data</p></td>
1589
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
1590
+ <td class="parameter_annotations"> </td>
1591
+ </tr>
1592
+ </tbody>
1593
+ </table></div>
1594
+ </div>
1595
+ <p>Flags: Run Last</p>
1596
+ </div>
1597
+ <hr>
1598
+ <div class="refsect2">
1599
+ <a name="AtkTable-column-reordered"></a><h3>The <code class="literal">“column-reordered”</code> signal</h3>
1600
+ <pre class="programlisting"><span class="returnvalue">void</span>
1601
+ user_function (<a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *atktable,
1602
+ <span class="type">gpointer</span> user_data)</pre>
1603
+ <p>The "column-reordered" signal is emitted by an object which
1604
+ implements the AtkTable interface when the columns are
1605
+ reordered.</p>
1606
+ <div class="refsect3">
1607
+ <a name="id-1.5.11.11.4.5"></a><h4>Parameters</h4>
1608
+ <div class="informaltable"><table width="100%" border="0">
1609
+ <colgroup>
1610
+ <col width="150px" class="parameters_name">
1611
+ <col class="parameters_description">
1612
+ <col width="200px" class="parameters_annotations">
1613
+ </colgroup>
1614
+ <tbody>
1615
+ <tr>
1616
+ <td class="parameter_name"><p>atktable</p></td>
1617
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
1618
+ <td class="parameter_annotations"> </td>
1619
+ </tr>
1620
+ <tr>
1621
+ <td class="parameter_name"><p>user_data</p></td>
1622
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
1623
+ <td class="parameter_annotations"> </td>
1624
+ </tr>
1625
+ </tbody>
1626
+ </table></div>
1627
+ </div>
1628
+ <p>Flags: Run Last</p>
1629
+ </div>
1630
+ <hr>
1631
+ <div class="refsect2">
1632
+ <a name="AtkTable-model-changed"></a><h3>The <code class="literal">“model-changed”</code> signal</h3>
1633
+ <pre class="programlisting"><span class="returnvalue">void</span>
1634
+ user_function (<a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *atktable,
1635
+ <span class="type">gpointer</span> user_data)</pre>
1636
+ <p>The "model-changed" signal is emitted by an object which
1637
+ implements the AtkTable interface when the model displayed by
1638
+ the table changes.</p>
1639
+ <div class="refsect3">
1640
+ <a name="id-1.5.11.11.5.5"></a><h4>Parameters</h4>
1641
+ <div class="informaltable"><table width="100%" border="0">
1642
+ <colgroup>
1643
+ <col width="150px" class="parameters_name">
1644
+ <col class="parameters_description">
1645
+ <col width="200px" class="parameters_annotations">
1646
+ </colgroup>
1647
+ <tbody>
1648
+ <tr>
1649
+ <td class="parameter_name"><p>atktable</p></td>
1650
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
1651
+ <td class="parameter_annotations"> </td>
1652
+ </tr>
1653
+ <tr>
1654
+ <td class="parameter_name"><p>user_data</p></td>
1655
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
1656
+ <td class="parameter_annotations"> </td>
1657
+ </tr>
1658
+ </tbody>
1659
+ </table></div>
1660
+ </div>
1661
+ <p>Flags: Run Last</p>
1662
+ </div>
1663
+ <hr>
1664
+ <div class="refsect2">
1665
+ <a name="AtkTable-row-deleted"></a><h3>The <code class="literal">“row-deleted”</code> signal</h3>
1666
+ <pre class="programlisting"><span class="returnvalue">void</span>
1667
+ user_function (<a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *atktable,
1668
+ <span class="type">gint</span> arg1,
1669
+ <span class="type">gint</span> arg2,
1670
+ <span class="type">gpointer</span> user_data)</pre>
1671
+ <p>The "row-deleted" signal is emitted by an object which
1672
+ implements the AtkTable interface when a row is deleted.</p>
1673
+ <div class="refsect3">
1674
+ <a name="id-1.5.11.11.6.5"></a><h4>Parameters</h4>
1675
+ <div class="informaltable"><table width="100%" border="0">
1676
+ <colgroup>
1677
+ <col width="150px" class="parameters_name">
1678
+ <col class="parameters_description">
1679
+ <col width="200px" class="parameters_annotations">
1680
+ </colgroup>
1681
+ <tbody>
1682
+ <tr>
1683
+ <td class="parameter_name"><p>atktable</p></td>
1684
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
1685
+ <td class="parameter_annotations"> </td>
1686
+ </tr>
1687
+ <tr>
1688
+ <td class="parameter_name"><p>arg1</p></td>
1689
+ <td class="parameter_description"><p>The index of the first row deleted.</p></td>
1690
+ <td class="parameter_annotations"> </td>
1691
+ </tr>
1692
+ <tr>
1693
+ <td class="parameter_name"><p>arg2</p></td>
1694
+ <td class="parameter_description"><p>The number of rows deleted.</p></td>
1695
+ <td class="parameter_annotations"> </td>
1696
+ </tr>
1697
+ <tr>
1698
+ <td class="parameter_name"><p>user_data</p></td>
1699
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
1700
+ <td class="parameter_annotations"> </td>
1701
+ </tr>
1702
+ </tbody>
1703
+ </table></div>
1704
+ </div>
1705
+ <p>Flags: Run Last</p>
1706
+ </div>
1707
+ <hr>
1708
+ <div class="refsect2">
1709
+ <a name="AtkTable-row-inserted"></a><h3>The <code class="literal">“row-inserted”</code> signal</h3>
1710
+ <pre class="programlisting"><span class="returnvalue">void</span>
1711
+ user_function (<a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *atktable,
1712
+ <span class="type">gint</span> arg1,
1713
+ <span class="type">gint</span> arg2,
1714
+ <span class="type">gpointer</span> user_data)</pre>
1715
+ <p>The "row-inserted" signal is emitted by an object which
1716
+ implements the AtkTable interface when a row is inserted.</p>
1717
+ <div class="refsect3">
1718
+ <a name="id-1.5.11.11.7.5"></a><h4>Parameters</h4>
1719
+ <div class="informaltable"><table width="100%" border="0">
1720
+ <colgroup>
1721
+ <col width="150px" class="parameters_name">
1722
+ <col class="parameters_description">
1723
+ <col width="200px" class="parameters_annotations">
1724
+ </colgroup>
1725
+ <tbody>
1726
+ <tr>
1727
+ <td class="parameter_name"><p>atktable</p></td>
1728
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
1729
+ <td class="parameter_annotations"> </td>
1730
+ </tr>
1731
+ <tr>
1732
+ <td class="parameter_name"><p>arg1</p></td>
1733
+ <td class="parameter_description"><p>The index of the first row inserted.</p></td>
1734
+ <td class="parameter_annotations"> </td>
1735
+ </tr>
1736
+ <tr>
1737
+ <td class="parameter_name"><p>arg2</p></td>
1738
+ <td class="parameter_description"><p>The number of rows inserted.</p></td>
1739
+ <td class="parameter_annotations"> </td>
1740
+ </tr>
1741
+ <tr>
1742
+ <td class="parameter_name"><p>user_data</p></td>
1743
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
1744
+ <td class="parameter_annotations"> </td>
1745
+ </tr>
1746
+ </tbody>
1747
+ </table></div>
1748
+ </div>
1749
+ <p>Flags: Run Last</p>
1750
+ </div>
1751
+ <hr>
1752
+ <div class="refsect2">
1753
+ <a name="AtkTable-row-reordered"></a><h3>The <code class="literal">“row-reordered”</code> signal</h3>
1754
+ <pre class="programlisting"><span class="returnvalue">void</span>
1755
+ user_function (<a class="link" href="AtkTable.html" title="AtkTable"><span class="type">AtkTable</span></a> *atktable,
1756
+ <span class="type">gpointer</span> user_data)</pre>
1757
+ <p>The "row-reordered" signal is emitted by an object which
1758
+ implements the AtkTable interface when the rows are
1759
+ reordered.</p>
1760
+ <div class="refsect3">
1761
+ <a name="id-1.5.11.11.8.5"></a><h4>Parameters</h4>
1762
+ <div class="informaltable"><table width="100%" border="0">
1763
+ <colgroup>
1764
+ <col width="150px" class="parameters_name">
1765
+ <col class="parameters_description">
1766
+ <col width="200px" class="parameters_annotations">
1767
+ </colgroup>
1768
+ <tbody>
1769
+ <tr>
1770
+ <td class="parameter_name"><p>atktable</p></td>
1771
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
1772
+ <td class="parameter_annotations"> </td>
1773
+ </tr>
1774
+ <tr>
1775
+ <td class="parameter_name"><p>user_data</p></td>
1776
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
1777
+ <td class="parameter_annotations"> </td>
1778
+ </tr>
1779
+ </tbody>
1780
+ </table></div>
1781
+ </div>
1782
+ <p>Flags: Run Last</p>
1783
+ </div>
1784
+ </div>
1785
+ </div>
1786
+ <div class="footer">
1787
+ <hr>
1788
+ Generated by GTK-Doc V1.21.1</div>
1789
+ </body>
1790
+ </html>