atk 2.2.4-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
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,1146 @@
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: AtkComponent</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="AtkAction.html" title="AtkAction">
10
+ <link rel="next" href="AtkDocument.html" title="AtkDocument">
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="#AtkComponent.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#AtkComponent.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_implementations">  <span class="dim">|</span> 
20
+ <a href="#AtkComponent.implementations" class="shortcut">Known Implementations</a></span><span id="nav_signals">  <span class="dim">|</span> 
21
+ <a href="#AtkComponent.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="AtkAction.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
26
+ <td><a accesskey="n" href="AtkDocument.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="AtkComponent"></a><div class="titlepage"></div>
30
+ <div class="refnamediv"><table width="100%"><tr>
31
+ <td valign="top">
32
+ <h2><span class="refentrytitle"><a name="AtkComponent.top_of_page"></a>AtkComponent</span></h2>
33
+ <p>AtkComponent — The ATK interface provided by UI components
34
+ which occupy a physical area on the screen.
35
+ which the user can activate/interact with.</p>
36
+ </td>
37
+ <td class="gallery_image" valign="top" align="right"></td>
38
+ </tr></table></div>
39
+ <div class="refsect1">
40
+ <a name="AtkComponent.functions"></a><h2>Functions</h2>
41
+ <div class="informaltable"><table width="100%" border="0">
42
+ <colgroup>
43
+ <col width="150px" class="functions_return">
44
+ <col class="functions_name">
45
+ </colgroup>
46
+ <tbody>
47
+ <tr>
48
+ <td class="function_type">
49
+ <span class="returnvalue">void</span>
50
+ </td>
51
+ <td class="function_name">
52
+ <span class="c_punctuation">(</span><a class="link" href="AtkComponent.html#AtkFocusHandler" title="AtkFocusHandler ()">*AtkFocusHandler</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
53
+ </td>
54
+ </tr>
55
+ <tr>
56
+ <td class="function_type">
57
+ <span class="returnvalue">guint</span>
58
+ </td>
59
+ <td class="function_name">
60
+ <a class="link" href="AtkComponent.html#atk-component-add-focus-handler" title="atk_component_add_focus_handler ()">atk_component_add_focus_handler</a> <span class="c_punctuation">()</span>
61
+ </td>
62
+ </tr>
63
+ <tr>
64
+ <td class="function_type">
65
+ <span class="returnvalue">gboolean</span>
66
+ </td>
67
+ <td class="function_name">
68
+ <a class="link" href="AtkComponent.html#atk-component-contains" title="atk_component_contains ()">atk_component_contains</a> <span class="c_punctuation">()</span>
69
+ </td>
70
+ </tr>
71
+ <tr>
72
+ <td class="function_type">
73
+ <span class="returnvalue">void</span>
74
+ </td>
75
+ <td class="function_name">
76
+ <a class="link" href="AtkComponent.html#atk-component-get-extents" title="atk_component_get_extents ()">atk_component_get_extents</a> <span class="c_punctuation">()</span>
77
+ </td>
78
+ </tr>
79
+ <tr>
80
+ <td class="function_type">
81
+ <a class="link" href="AtkObject.html#AtkLayer" title="enum AtkLayer"><span class="returnvalue">AtkLayer</span></a>
82
+ </td>
83
+ <td class="function_name">
84
+ <a class="link" href="AtkComponent.html#atk-component-get-layer" title="atk_component_get_layer ()">atk_component_get_layer</a> <span class="c_punctuation">()</span>
85
+ </td>
86
+ </tr>
87
+ <tr>
88
+ <td class="function_type">
89
+ <span class="returnvalue">gint</span>
90
+ </td>
91
+ <td class="function_name">
92
+ <a class="link" href="AtkComponent.html#atk-component-get-mdi-zorder" title="atk_component_get_mdi_zorder ()">atk_component_get_mdi_zorder</a> <span class="c_punctuation">()</span>
93
+ </td>
94
+ </tr>
95
+ <tr>
96
+ <td class="function_type">
97
+ <span class="returnvalue">void</span>
98
+ </td>
99
+ <td class="function_name">
100
+ <a class="link" href="AtkComponent.html#atk-component-get-position" title="atk_component_get_position ()">atk_component_get_position</a> <span class="c_punctuation">()</span>
101
+ </td>
102
+ </tr>
103
+ <tr>
104
+ <td class="function_type">
105
+ <span class="returnvalue">void</span>
106
+ </td>
107
+ <td class="function_name">
108
+ <a class="link" href="AtkComponent.html#atk-component-get-size" title="atk_component_get_size ()">atk_component_get_size</a> <span class="c_punctuation">()</span>
109
+ </td>
110
+ </tr>
111
+ <tr>
112
+ <td class="function_type">
113
+ <span class="returnvalue">gboolean</span>
114
+ </td>
115
+ <td class="function_name">
116
+ <a class="link" href="AtkComponent.html#atk-component-grab-focus" title="atk_component_grab_focus ()">atk_component_grab_focus</a> <span class="c_punctuation">()</span>
117
+ </td>
118
+ </tr>
119
+ <tr>
120
+ <td class="function_type">
121
+ <a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
122
+ </td>
123
+ <td class="function_name">
124
+ <a class="link" href="AtkComponent.html#atk-component-ref-accessible-at-point" title="atk_component_ref_accessible_at_point ()">atk_component_ref_accessible_at_point</a> <span class="c_punctuation">()</span>
125
+ </td>
126
+ </tr>
127
+ <tr>
128
+ <td class="function_type">
129
+ <span class="returnvalue">void</span>
130
+ </td>
131
+ <td class="function_name">
132
+ <a class="link" href="AtkComponent.html#atk-component-remove-focus-handler" title="atk_component_remove_focus_handler ()">atk_component_remove_focus_handler</a> <span class="c_punctuation">()</span>
133
+ </td>
134
+ </tr>
135
+ <tr>
136
+ <td class="function_type">
137
+ <span class="returnvalue">gboolean</span>
138
+ </td>
139
+ <td class="function_name">
140
+ <a class="link" href="AtkComponent.html#atk-component-set-extents" title="atk_component_set_extents ()">atk_component_set_extents</a> <span class="c_punctuation">()</span>
141
+ </td>
142
+ </tr>
143
+ <tr>
144
+ <td class="function_type">
145
+ <span class="returnvalue">gboolean</span>
146
+ </td>
147
+ <td class="function_name">
148
+ <a class="link" href="AtkComponent.html#atk-component-set-position" title="atk_component_set_position ()">atk_component_set_position</a> <span class="c_punctuation">()</span>
149
+ </td>
150
+ </tr>
151
+ <tr>
152
+ <td class="function_type">
153
+ <span class="returnvalue">gboolean</span>
154
+ </td>
155
+ <td class="function_name">
156
+ <a class="link" href="AtkComponent.html#atk-component-set-size" title="atk_component_set_size ()">atk_component_set_size</a> <span class="c_punctuation">()</span>
157
+ </td>
158
+ </tr>
159
+ <tr>
160
+ <td class="function_type">
161
+ <span class="returnvalue">gdouble</span>
162
+ </td>
163
+ <td class="function_name">
164
+ <a class="link" href="AtkComponent.html#atk-component-get-alpha" title="atk_component_get_alpha ()">atk_component_get_alpha</a> <span class="c_punctuation">()</span>
165
+ </td>
166
+ </tr>
167
+ </tbody>
168
+ </table></div>
169
+ </div>
170
+ <div class="refsect1">
171
+ <a name="AtkComponent.signals"></a><h2>Signals</h2>
172
+ <div class="informaltable"><table border="0">
173
+ <colgroup>
174
+ <col width="150px" class="signals_return">
175
+ <col width="300px" class="signals_name">
176
+ <col width="200px" class="signals_flags">
177
+ </colgroup>
178
+ <tbody><tr>
179
+ <td class="signal_type"><span class="returnvalue">void</span></td>
180
+ <td class="signal_name"><a class="link" href="AtkComponent.html#AtkComponent-bounds-changed" title="The “bounds-changed” signal">bounds-changed</a></td>
181
+ <td class="signal_flags">Run Last</td>
182
+ </tr></tbody>
183
+ </table></div>
184
+ </div>
185
+ <div class="refsect1">
186
+ <a name="AtkComponent.other"></a><h2>Types and Values</h2>
187
+ <div class="informaltable"><table width="100%" border="0">
188
+ <colgroup>
189
+ <col width="150px" class="name">
190
+ <col class="description">
191
+ </colgroup>
192
+ <tbody>
193
+ <tr>
194
+ <td class="datatype_keyword"> </td>
195
+ <td class="function_name"><a class="link" href="AtkComponent.html#AtkComponent-struct" title="AtkComponent">AtkComponent</a></td>
196
+ </tr>
197
+ <tr>
198
+ <td class="datatype_keyword">struct</td>
199
+ <td class="function_name"><a class="link" href="AtkComponent.html#AtkComponentIface" title="struct AtkComponentIface">AtkComponentIface</a></td>
200
+ </tr>
201
+ <tr>
202
+ <td class="datatype_keyword">struct</td>
203
+ <td class="function_name"><a class="link" href="AtkComponent.html#AtkRectangle" title="struct AtkRectangle">AtkRectangle</a></td>
204
+ </tr>
205
+ </tbody>
206
+ </table></div>
207
+ </div>
208
+ <div class="refsect1">
209
+ <a name="AtkComponent.object-hierarchy"></a><h2>Object Hierarchy</h2>
210
+ <pre class="screen"> GInterface
211
+ <span class="lineart">╰──</span> AtkComponent
212
+ </pre>
213
+ </div>
214
+ <div class="refsect1">
215
+ <a name="AtkComponent.implementations"></a><h2>Known Implementations</h2>
216
+ <p>
217
+ AtkComponent is implemented by
218
+ <a class="link" href="AtkNoOpObject.html" title="AtkNoOpObject">AtkNoOpObject</a>.</p>
219
+ </div>
220
+ <div class="refsect1">
221
+ <a name="AtkComponent.description"></a><h2>Description</h2>
222
+ <p><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> should be implemented by most if not all UI elements
223
+ with an actual on-screen presence, i.e. components which can be
224
+ said to have a screen-coordinate bounding box. Virtually all
225
+ widgets will need to have <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> implementations provided
226
+ for their corresponding <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> class. In short, only UI
227
+ elements which are *not* GUI elements will omit this ATK interface.</p>
228
+ <p>A possible exception might be textual information with a
229
+ transparent background, in which case text glyph bounding box
230
+ information is provided by <a class="link" href="AtkText.html" title="AtkText"><span class="type">AtkText</span></a>.</p>
231
+ </div>
232
+ <div class="refsect1">
233
+ <a name="AtkComponent.functions_details"></a><h2>Functions</h2>
234
+ <div class="refsect2">
235
+ <a name="AtkFocusHandler"></a><h3>AtkFocusHandler ()</h3>
236
+ <pre class="programlisting"><span class="returnvalue">void</span>
237
+ <span class="c_punctuation">(</span>*AtkFocusHandler<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> *object</code></em>,
238
+ <em class="parameter"><code><span class="type">gboolean</span> focus_in</code></em>);</pre>
239
+ <div class="warning">
240
+ <p><code class="literal">AtkFocusHandler</code> is deprecated and should not be used in newly-written code.</p>
241
+ <p>This type is deprecated since ATK version 2.9.4. as
242
+ <a class="link" href="AtkComponent.html#atk-component-add-focus-handler" title="atk_component_add_focus_handler ()"><code class="function">atk_component_add_focus_handler()</code></a> and
243
+ <a class="link" href="AtkComponent.html#atk-component-remove-focus-handler" title="atk_component_remove_focus_handler ()"><code class="function">atk_component_remove_focus_handler()</code></a> are deprecated. See those
244
+ methods for more information.</p>
245
+ </div>
246
+ <p>The type of callback function used for
247
+ <a class="link" href="AtkComponent.html#atk-component-add-focus-handler" title="atk_component_add_focus_handler ()"><code class="function">atk_component_add_focus_handler()</code></a> and
248
+ <a class="link" href="AtkComponent.html#atk-component-remove-focus-handler" title="atk_component_remove_focus_handler ()"><code class="function">atk_component_remove_focus_handler()</code></a></p>
249
+ <div class="refsect3">
250
+ <a name="id-1.5.3.9.2.6"></a><h4>Parameters</h4>
251
+ <div class="informaltable"><table width="100%" border="0">
252
+ <colgroup>
253
+ <col width="150px" class="parameters_name">
254
+ <col class="parameters_description">
255
+ <col width="200px" class="parameters_annotations">
256
+ </colgroup>
257
+ <tbody>
258
+ <tr>
259
+ <td class="parameter_name"><p>object</p></td>
260
+ <td class="parameter_description"><p>the <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> that receives/lose the focus</p></td>
261
+ <td class="parameter_annotations"> </td>
262
+ </tr>
263
+ <tr>
264
+ <td class="parameter_name"><p>focus_in</p></td>
265
+ <td class="parameter_description"><p>TRUE if the object receives the focus</p></td>
266
+ <td class="parameter_annotations"> </td>
267
+ </tr>
268
+ </tbody>
269
+ </table></div>
270
+ </div>
271
+ </div>
272
+ <hr>
273
+ <div class="refsect2">
274
+ <a name="atk-component-add-focus-handler"></a><h3>atk_component_add_focus_handler ()</h3>
275
+ <pre class="programlisting"><span class="returnvalue">guint</span>
276
+ atk_component_add_focus_handler (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
277
+ <em class="parameter"><code><a class="link" href="AtkComponent.html#AtkFocusHandler" title="AtkFocusHandler ()"><span class="type">AtkFocusHandler</span></a> handler</code></em>);</pre>
278
+ <div class="warning">
279
+ <p><code class="literal">atk_component_add_focus_handler</code> is deprecated and should not be used in newly-written code.</p>
280
+ <p>This method is deprecated since ATK version 2.9.4. If
281
+ you need to track when an object gains or lose the focus, use
282
+ state-changed:focused notification instead.</p>
283
+ </div>
284
+ <p>Add the specified handler to the set of functions to be called
285
+ when this object receives focus events (in or out). If the handler is
286
+ already added it is not added again</p>
287
+ <div class="refsect3">
288
+ <a name="id-1.5.3.9.3.6"></a><h4>Parameters</h4>
289
+ <div class="informaltable"><table width="100%" border="0">
290
+ <colgroup>
291
+ <col width="150px" class="parameters_name">
292
+ <col class="parameters_description">
293
+ <col width="200px" class="parameters_annotations">
294
+ </colgroup>
295
+ <tbody>
296
+ <tr>
297
+ <td class="parameter_name"><p>component</p></td>
298
+ <td class="parameter_description"><p>The <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> to attach the <em class="parameter"><code>handler</code></em>
299
+ to</p></td>
300
+ <td class="parameter_annotations"> </td>
301
+ </tr>
302
+ <tr>
303
+ <td class="parameter_name"><p>handler</p></td>
304
+ <td class="parameter_description"><p>The <a class="link" href="AtkComponent.html#AtkFocusHandler" title="AtkFocusHandler ()"><span class="type">AtkFocusHandler</span></a> to be attached to <em class="parameter"><code>component</code></em>
305
+ </p></td>
306
+ <td class="parameter_annotations"> </td>
307
+ </tr>
308
+ </tbody>
309
+ </table></div>
310
+ </div>
311
+ <div class="refsect3">
312
+ <a name="id-1.5.3.9.3.7"></a><h4>Returns</h4>
313
+ <p> a handler id which can be used in <a class="link" href="AtkComponent.html#atk-component-remove-focus-handler" title="atk_component_remove_focus_handler ()"><code class="function">atk_component_remove_focus_handler()</code></a>
314
+ or zero if the handler was already added.</p>
315
+ <p></p>
316
+ </div>
317
+ </div>
318
+ <hr>
319
+ <div class="refsect2">
320
+ <a name="atk-component-contains"></a><h3>atk_component_contains ()</h3>
321
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
322
+ atk_component_contains (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
323
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
324
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
325
+ <em class="parameter"><code><a class="link" href="AtkUtil.html#AtkCoordType" title="enum AtkCoordType"><span class="type">AtkCoordType</span></a> coord_type</code></em>);</pre>
326
+ <p>Checks whether the specified point is within the extent of the <em class="parameter"><code>component</code></em>
327
+ .</p>
328
+ <p>Toolkit implementor note: ATK provides a default implementation for
329
+ this virtual method. In general there are little reason to
330
+ re-implement it.</p>
331
+ <div class="refsect3">
332
+ <a name="id-1.5.3.9.4.6"></a><h4>Parameters</h4>
333
+ <div class="informaltable"><table width="100%" border="0">
334
+ <colgroup>
335
+ <col width="150px" class="parameters_name">
336
+ <col class="parameters_description">
337
+ <col width="200px" class="parameters_annotations">
338
+ </colgroup>
339
+ <tbody>
340
+ <tr>
341
+ <td class="parameter_name"><p>component</p></td>
342
+ <td class="parameter_description"><p>the <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
343
+ <td class="parameter_annotations"> </td>
344
+ </tr>
345
+ <tr>
346
+ <td class="parameter_name"><p>x</p></td>
347
+ <td class="parameter_description"><p>x coordinate</p></td>
348
+ <td class="parameter_annotations"> </td>
349
+ </tr>
350
+ <tr>
351
+ <td class="parameter_name"><p>y</p></td>
352
+ <td class="parameter_description"><p>y coordinate</p></td>
353
+ <td class="parameter_annotations"> </td>
354
+ </tr>
355
+ <tr>
356
+ <td class="parameter_name"><p>coord_type</p></td>
357
+ <td class="parameter_description"><p>specifies whether the coordinates are relative to the screen
358
+ or to the components top level window</p></td>
359
+ <td class="parameter_annotations"> </td>
360
+ </tr>
361
+ </tbody>
362
+ </table></div>
363
+ </div>
364
+ <div class="refsect3">
365
+ <a name="id-1.5.3.9.4.7"></a><h4>Returns</h4>
366
+ <p> <code class="literal">TRUE</code> or <code class="literal">FALSE</code> indicating whether the specified point is within
367
+ the extent of the <em class="parameter"><code>component</code></em>
368
+ or not</p>
369
+ <p></p>
370
+ </div>
371
+ </div>
372
+ <hr>
373
+ <div class="refsect2">
374
+ <a name="atk-component-get-extents"></a><h3>atk_component_get_extents ()</h3>
375
+ <pre class="programlisting"><span class="returnvalue">void</span>
376
+ atk_component_get_extents (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
377
+ <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
378
+ <em class="parameter"><code><span class="type">gint</span> *y</code></em>,
379
+ <em class="parameter"><code><span class="type">gint</span> *width</code></em>,
380
+ <em class="parameter"><code><span class="type">gint</span> *height</code></em>,
381
+ <em class="parameter"><code><a class="link" href="AtkUtil.html#AtkCoordType" title="enum AtkCoordType"><span class="type">AtkCoordType</span></a> coord_type</code></em>);</pre>
382
+ <p>Gets the rectangle which gives the extent of the <em class="parameter"><code>component</code></em>
383
+ .</p>
384
+ <div class="refsect3">
385
+ <a name="id-1.5.3.9.5.5"></a><h4>Parameters</h4>
386
+ <div class="informaltable"><table width="100%" border="0">
387
+ <colgroup>
388
+ <col width="150px" class="parameters_name">
389
+ <col class="parameters_description">
390
+ <col width="200px" class="parameters_annotations">
391
+ </colgroup>
392
+ <tbody>
393
+ <tr>
394
+ <td class="parameter_name"><p>component</p></td>
395
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
396
+ <td class="parameter_annotations"> </td>
397
+ </tr>
398
+ <tr>
399
+ <td class="parameter_name"><p>x</p></td>
400
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put x coordinate</p></td>
401
+ <td class="parameter_annotations"> </td>
402
+ </tr>
403
+ <tr>
404
+ <td class="parameter_name"><p>y</p></td>
405
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put y coordinate</p></td>
406
+ <td class="parameter_annotations"> </td>
407
+ </tr>
408
+ <tr>
409
+ <td class="parameter_name"><p>width</p></td>
410
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put width</p></td>
411
+ <td class="parameter_annotations"> </td>
412
+ </tr>
413
+ <tr>
414
+ <td class="parameter_name"><p>height</p></td>
415
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put height</p></td>
416
+ <td class="parameter_annotations"> </td>
417
+ </tr>
418
+ <tr>
419
+ <td class="parameter_name"><p>coord_type</p></td>
420
+ <td class="parameter_description"><p>specifies whether the coordinates are relative to the screen
421
+ or to the components top level window</p></td>
422
+ <td class="parameter_annotations"> </td>
423
+ </tr>
424
+ </tbody>
425
+ </table></div>
426
+ </div>
427
+ </div>
428
+ <hr>
429
+ <div class="refsect2">
430
+ <a name="atk-component-get-layer"></a><h3>atk_component_get_layer ()</h3>
431
+ <pre class="programlisting"><a class="link" href="AtkObject.html#AtkLayer" title="enum AtkLayer"><span class="returnvalue">AtkLayer</span></a>
432
+ atk_component_get_layer (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>);</pre>
433
+ <p>Gets the layer of the component.</p>
434
+ <div class="refsect3">
435
+ <a name="id-1.5.3.9.6.5"></a><h4>Parameters</h4>
436
+ <div class="informaltable"><table width="100%" border="0">
437
+ <colgroup>
438
+ <col width="150px" class="parameters_name">
439
+ <col class="parameters_description">
440
+ <col width="200px" class="parameters_annotations">
441
+ </colgroup>
442
+ <tbody><tr>
443
+ <td class="parameter_name"><p>component</p></td>
444
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
445
+ <td class="parameter_annotations"> </td>
446
+ </tr></tbody>
447
+ </table></div>
448
+ </div>
449
+ <div class="refsect3">
450
+ <a name="id-1.5.3.9.6.6"></a><h4>Returns</h4>
451
+ <p> an <a class="link" href="AtkObject.html#AtkLayer" title="enum AtkLayer"><span class="type">AtkLayer</span></a> which is the layer of the component</p>
452
+ <p></p>
453
+ </div>
454
+ </div>
455
+ <hr>
456
+ <div class="refsect2">
457
+ <a name="atk-component-get-mdi-zorder"></a><h3>atk_component_get_mdi_zorder ()</h3>
458
+ <pre class="programlisting"><span class="returnvalue">gint</span>
459
+ atk_component_get_mdi_zorder (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>);</pre>
460
+ <p>Gets the zorder of the component. The value G_MININT will be returned
461
+ if the layer of the component is not ATK_LAYER_MDI or ATK_LAYER_WINDOW.</p>
462
+ <div class="refsect3">
463
+ <a name="id-1.5.3.9.7.5"></a><h4>Parameters</h4>
464
+ <div class="informaltable"><table width="100%" border="0">
465
+ <colgroup>
466
+ <col width="150px" class="parameters_name">
467
+ <col class="parameters_description">
468
+ <col width="200px" class="parameters_annotations">
469
+ </colgroup>
470
+ <tbody><tr>
471
+ <td class="parameter_name"><p>component</p></td>
472
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
473
+ <td class="parameter_annotations"> </td>
474
+ </tr></tbody>
475
+ </table></div>
476
+ </div>
477
+ <div class="refsect3">
478
+ <a name="id-1.5.3.9.7.6"></a><h4>Returns</h4>
479
+ <p> a gint which is the zorder of the component, i.e. the depth at
480
+ which the component is shown in relation to other components in the same
481
+ container.</p>
482
+ <p></p>
483
+ </div>
484
+ </div>
485
+ <hr>
486
+ <div class="refsect2">
487
+ <a name="atk-component-get-position"></a><h3>atk_component_get_position ()</h3>
488
+ <pre class="programlisting"><span class="returnvalue">void</span>
489
+ atk_component_get_position (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
490
+ <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
491
+ <em class="parameter"><code><span class="type">gint</span> *y</code></em>,
492
+ <em class="parameter"><code><a class="link" href="AtkUtil.html#AtkCoordType" title="enum AtkCoordType"><span class="type">AtkCoordType</span></a> coord_type</code></em>);</pre>
493
+ <div class="warning">
494
+ <p><code class="literal">atk_component_get_position</code> is deprecated and should not be used in newly-written code.</p>
495
+ <p>Since 2.12. Use <a class="link" href="AtkComponent.html#atk-component-get-extents" title="atk_component_get_extents ()"><code class="function">atk_component_get_extents()</code></a> instead.</p>
496
+ </div>
497
+ <p>Gets the position of <em class="parameter"><code>component</code></em>
498
+ in the form of
499
+ a point specifying <em class="parameter"><code>component</code></em>
500
+ 's top-left corner.</p>
501
+ <div class="refsect3">
502
+ <a name="id-1.5.3.9.8.6"></a><h4>Parameters</h4>
503
+ <div class="informaltable"><table width="100%" border="0">
504
+ <colgroup>
505
+ <col width="150px" class="parameters_name">
506
+ <col class="parameters_description">
507
+ <col width="200px" class="parameters_annotations">
508
+ </colgroup>
509
+ <tbody>
510
+ <tr>
511
+ <td class="parameter_name"><p>component</p></td>
512
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
513
+ <td class="parameter_annotations"> </td>
514
+ </tr>
515
+ <tr>
516
+ <td class="parameter_name"><p>x</p></td>
517
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put x coordinate position</p></td>
518
+ <td class="parameter_annotations"> </td>
519
+ </tr>
520
+ <tr>
521
+ <td class="parameter_name"><p>y</p></td>
522
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put y coordinate position</p></td>
523
+ <td class="parameter_annotations"> </td>
524
+ </tr>
525
+ <tr>
526
+ <td class="parameter_name"><p>coord_type</p></td>
527
+ <td class="parameter_description"><p>specifies whether the coordinates are relative to the screen
528
+ or to the components top level window</p></td>
529
+ <td class="parameter_annotations"> </td>
530
+ </tr>
531
+ </tbody>
532
+ </table></div>
533
+ </div>
534
+ </div>
535
+ <hr>
536
+ <div class="refsect2">
537
+ <a name="atk-component-get-size"></a><h3>atk_component_get_size ()</h3>
538
+ <pre class="programlisting"><span class="returnvalue">void</span>
539
+ atk_component_get_size (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
540
+ <em class="parameter"><code><span class="type">gint</span> *width</code></em>,
541
+ <em class="parameter"><code><span class="type">gint</span> *height</code></em>);</pre>
542
+ <div class="warning">
543
+ <p><code class="literal">atk_component_get_size</code> is deprecated and should not be used in newly-written code.</p>
544
+ <p>Since 2.12. Use <a class="link" href="AtkComponent.html#atk-component-get-extents" title="atk_component_get_extents ()"><code class="function">atk_component_get_extents()</code></a> instead.</p>
545
+ </div>
546
+ <p>Gets the size of the <em class="parameter"><code>component</code></em>
547
+ in terms of width and height.</p>
548
+ <div class="refsect3">
549
+ <a name="id-1.5.3.9.9.6"></a><h4>Parameters</h4>
550
+ <div class="informaltable"><table width="100%" border="0">
551
+ <colgroup>
552
+ <col width="150px" class="parameters_name">
553
+ <col class="parameters_description">
554
+ <col width="200px" class="parameters_annotations">
555
+ </colgroup>
556
+ <tbody>
557
+ <tr>
558
+ <td class="parameter_name"><p>component</p></td>
559
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
560
+ <td class="parameter_annotations"> </td>
561
+ </tr>
562
+ <tr>
563
+ <td class="parameter_name"><p>width</p></td>
564
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put width of <em class="parameter"><code>component</code></em>
565
+ </p></td>
566
+ <td class="parameter_annotations"> </td>
567
+ </tr>
568
+ <tr>
569
+ <td class="parameter_name"><p>height</p></td>
570
+ <td class="parameter_description"><p>address of <span class="type">gint</span> to put height of <em class="parameter"><code>component</code></em>
571
+ </p></td>
572
+ <td class="parameter_annotations"> </td>
573
+ </tr>
574
+ </tbody>
575
+ </table></div>
576
+ </div>
577
+ </div>
578
+ <hr>
579
+ <div class="refsect2">
580
+ <a name="atk-component-grab-focus"></a><h3>atk_component_grab_focus ()</h3>
581
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
582
+ atk_component_grab_focus (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>);</pre>
583
+ <p>Grabs focus for this <em class="parameter"><code>component</code></em>
584
+ .</p>
585
+ <div class="refsect3">
586
+ <a name="id-1.5.3.9.10.5"></a><h4>Parameters</h4>
587
+ <div class="informaltable"><table width="100%" border="0">
588
+ <colgroup>
589
+ <col width="150px" class="parameters_name">
590
+ <col class="parameters_description">
591
+ <col width="200px" class="parameters_annotations">
592
+ </colgroup>
593
+ <tbody><tr>
594
+ <td class="parameter_name"><p>component</p></td>
595
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
596
+ <td class="parameter_annotations"> </td>
597
+ </tr></tbody>
598
+ </table></div>
599
+ </div>
600
+ <div class="refsect3">
601
+ <a name="id-1.5.3.9.10.6"></a><h4>Returns</h4>
602
+ <p> <code class="literal">TRUE</code> if successful, <code class="literal">FALSE</code> otherwise.</p>
603
+ <p></p>
604
+ </div>
605
+ </div>
606
+ <hr>
607
+ <div class="refsect2">
608
+ <a name="atk-component-ref-accessible-at-point"></a><h3>atk_component_ref_accessible_at_point ()</h3>
609
+ <pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
610
+ atk_component_ref_accessible_at_point (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
611
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
612
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
613
+ <em class="parameter"><code><a class="link" href="AtkUtil.html#AtkCoordType" title="enum AtkCoordType"><span class="type">AtkCoordType</span></a> coord_type</code></em>);</pre>
614
+ <p>Gets a reference to the accessible child, if one exists, at the
615
+ coordinate point specified by <em class="parameter"><code>x</code></em>
616
+ and <em class="parameter"><code>y</code></em>
617
+ .</p>
618
+ <div class="refsect3">
619
+ <a name="id-1.5.3.9.11.5"></a><h4>Parameters</h4>
620
+ <div class="informaltable"><table width="100%" border="0">
621
+ <colgroup>
622
+ <col width="150px" class="parameters_name">
623
+ <col class="parameters_description">
624
+ <col width="200px" class="parameters_annotations">
625
+ </colgroup>
626
+ <tbody>
627
+ <tr>
628
+ <td class="parameter_name"><p>component</p></td>
629
+ <td class="parameter_description"><p>the <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
630
+ <td class="parameter_annotations"> </td>
631
+ </tr>
632
+ <tr>
633
+ <td class="parameter_name"><p>x</p></td>
634
+ <td class="parameter_description"><p>x coordinate</p></td>
635
+ <td class="parameter_annotations"> </td>
636
+ </tr>
637
+ <tr>
638
+ <td class="parameter_name"><p>y</p></td>
639
+ <td class="parameter_description"><p>y coordinate</p></td>
640
+ <td class="parameter_annotations"> </td>
641
+ </tr>
642
+ <tr>
643
+ <td class="parameter_name"><p>coord_type</p></td>
644
+ <td class="parameter_description"><p>specifies whether the coordinates are relative to the screen
645
+ or to the components top level window</p></td>
646
+ <td class="parameter_annotations"> </td>
647
+ </tr>
648
+ </tbody>
649
+ </table></div>
650
+ </div>
651
+ <div class="refsect3">
652
+ <a name="id-1.5.3.9.11.6"></a><h4>Returns</h4>
653
+ <p> a reference to the accessible
654
+ child, if one exists. </p>
655
+ <p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>][<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
656
+ </div>
657
+ </div>
658
+ <hr>
659
+ <div class="refsect2">
660
+ <a name="atk-component-remove-focus-handler"></a><h3>atk_component_remove_focus_handler ()</h3>
661
+ <pre class="programlisting"><span class="returnvalue">void</span>
662
+ atk_component_remove_focus_handler (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
663
+ <em class="parameter"><code><span class="type">guint</span> handler_id</code></em>);</pre>
664
+ <div class="warning">
665
+ <p><code class="literal">atk_component_remove_focus_handler</code> is deprecated and should not be used in newly-written code.</p>
666
+ <p>This method is deprecated since ATK version 2.9.4. If
667
+ you need to track when an object gains or lose the focus, use
668
+ state-changed:focused notification instead.</p>
669
+ </div>
670
+ <p>Remove the handler specified by <em class="parameter"><code>handler_id</code></em>
671
+ from the list of
672
+ functions to be executed when this object receives focus events
673
+ (in or out).</p>
674
+ <div class="refsect3">
675
+ <a name="id-1.5.3.9.12.6"></a><h4>Parameters</h4>
676
+ <div class="informaltable"><table width="100%" border="0">
677
+ <colgroup>
678
+ <col width="150px" class="parameters_name">
679
+ <col class="parameters_description">
680
+ <col width="200px" class="parameters_annotations">
681
+ </colgroup>
682
+ <tbody>
683
+ <tr>
684
+ <td class="parameter_name"><p>component</p></td>
685
+ <td class="parameter_description"><p>the <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> to remove the focus handler from</p></td>
686
+ <td class="parameter_annotations"> </td>
687
+ </tr>
688
+ <tr>
689
+ <td class="parameter_name"><p>handler_id</p></td>
690
+ <td class="parameter_description"><p>the handler id of the focus handler to be removed
691
+ from <em class="parameter"><code>component</code></em>
692
+ </p></td>
693
+ <td class="parameter_annotations"> </td>
694
+ </tr>
695
+ </tbody>
696
+ </table></div>
697
+ </div>
698
+ </div>
699
+ <hr>
700
+ <div class="refsect2">
701
+ <a name="atk-component-set-extents"></a><h3>atk_component_set_extents ()</h3>
702
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
703
+ atk_component_set_extents (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
704
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
705
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
706
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
707
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>,
708
+ <em class="parameter"><code><a class="link" href="AtkUtil.html#AtkCoordType" title="enum AtkCoordType"><span class="type">AtkCoordType</span></a> coord_type</code></em>);</pre>
709
+ <p>Sets the extents of <em class="parameter"><code>component</code></em>
710
+ .</p>
711
+ <div class="refsect3">
712
+ <a name="id-1.5.3.9.13.5"></a><h4>Parameters</h4>
713
+ <div class="informaltable"><table width="100%" border="0">
714
+ <colgroup>
715
+ <col width="150px" class="parameters_name">
716
+ <col class="parameters_description">
717
+ <col width="200px" class="parameters_annotations">
718
+ </colgroup>
719
+ <tbody>
720
+ <tr>
721
+ <td class="parameter_name"><p>component</p></td>
722
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
723
+ <td class="parameter_annotations"> </td>
724
+ </tr>
725
+ <tr>
726
+ <td class="parameter_name"><p>x</p></td>
727
+ <td class="parameter_description"><p>x coordinate</p></td>
728
+ <td class="parameter_annotations"> </td>
729
+ </tr>
730
+ <tr>
731
+ <td class="parameter_name"><p>y</p></td>
732
+ <td class="parameter_description"><p>y coordinate</p></td>
733
+ <td class="parameter_annotations"> </td>
734
+ </tr>
735
+ <tr>
736
+ <td class="parameter_name"><p>width</p></td>
737
+ <td class="parameter_description"><p>width to set for <em class="parameter"><code>component</code></em>
738
+ </p></td>
739
+ <td class="parameter_annotations"> </td>
740
+ </tr>
741
+ <tr>
742
+ <td class="parameter_name"><p>height</p></td>
743
+ <td class="parameter_description"><p>height to set for <em class="parameter"><code>component</code></em>
744
+ </p></td>
745
+ <td class="parameter_annotations"> </td>
746
+ </tr>
747
+ <tr>
748
+ <td class="parameter_name"><p>coord_type</p></td>
749
+ <td class="parameter_description"><p>specifies whether the coordinates are relative to the screen
750
+ or to the components top level window</p></td>
751
+ <td class="parameter_annotations"> </td>
752
+ </tr>
753
+ </tbody>
754
+ </table></div>
755
+ </div>
756
+ <div class="refsect3">
757
+ <a name="id-1.5.3.9.13.6"></a><h4>Returns</h4>
758
+ <p> <code class="literal">TRUE</code> or <code class="literal">FALSE</code> whether the extents were set or not</p>
759
+ <p></p>
760
+ </div>
761
+ </div>
762
+ <hr>
763
+ <div class="refsect2">
764
+ <a name="atk-component-set-position"></a><h3>atk_component_set_position ()</h3>
765
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
766
+ atk_component_set_position (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
767
+ <em class="parameter"><code><span class="type">gint</span> x</code></em>,
768
+ <em class="parameter"><code><span class="type">gint</span> y</code></em>,
769
+ <em class="parameter"><code><a class="link" href="AtkUtil.html#AtkCoordType" title="enum AtkCoordType"><span class="type">AtkCoordType</span></a> coord_type</code></em>);</pre>
770
+ <p>Sets the postition of <em class="parameter"><code>component</code></em>
771
+ .</p>
772
+ <div class="refsect3">
773
+ <a name="id-1.5.3.9.14.5"></a><h4>Parameters</h4>
774
+ <div class="informaltable"><table width="100%" border="0">
775
+ <colgroup>
776
+ <col width="150px" class="parameters_name">
777
+ <col class="parameters_description">
778
+ <col width="200px" class="parameters_annotations">
779
+ </colgroup>
780
+ <tbody>
781
+ <tr>
782
+ <td class="parameter_name"><p>component</p></td>
783
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
784
+ <td class="parameter_annotations"> </td>
785
+ </tr>
786
+ <tr>
787
+ <td class="parameter_name"><p>x</p></td>
788
+ <td class="parameter_description"><p>x coordinate</p></td>
789
+ <td class="parameter_annotations"> </td>
790
+ </tr>
791
+ <tr>
792
+ <td class="parameter_name"><p>y</p></td>
793
+ <td class="parameter_description"><p>y coordinate</p></td>
794
+ <td class="parameter_annotations"> </td>
795
+ </tr>
796
+ <tr>
797
+ <td class="parameter_name"><p>coord_type</p></td>
798
+ <td class="parameter_description"><p>specifies whether the coordinates are relative to the screen
799
+ or to the components top level window</p></td>
800
+ <td class="parameter_annotations"> </td>
801
+ </tr>
802
+ </tbody>
803
+ </table></div>
804
+ </div>
805
+ <div class="refsect3">
806
+ <a name="id-1.5.3.9.14.6"></a><h4>Returns</h4>
807
+ <p> <code class="literal">TRUE</code> or <code class="literal">FALSE</code> whether or not the position was set or not</p>
808
+ <p></p>
809
+ </div>
810
+ </div>
811
+ <hr>
812
+ <div class="refsect2">
813
+ <a name="atk-component-set-size"></a><h3>atk_component_set_size ()</h3>
814
+ <pre class="programlisting"><span class="returnvalue">gboolean</span>
815
+ atk_component_set_size (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>,
816
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>,
817
+ <em class="parameter"><code><span class="type">gint</span> height</code></em>);</pre>
818
+ <p>Set the size of the <em class="parameter"><code>component</code></em>
819
+ in terms of width and height.</p>
820
+ <div class="refsect3">
821
+ <a name="id-1.5.3.9.15.5"></a><h4>Parameters</h4>
822
+ <div class="informaltable"><table width="100%" border="0">
823
+ <colgroup>
824
+ <col width="150px" class="parameters_name">
825
+ <col class="parameters_description">
826
+ <col width="200px" class="parameters_annotations">
827
+ </colgroup>
828
+ <tbody>
829
+ <tr>
830
+ <td class="parameter_name"><p>component</p></td>
831
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
832
+ <td class="parameter_annotations"> </td>
833
+ </tr>
834
+ <tr>
835
+ <td class="parameter_name"><p>width</p></td>
836
+ <td class="parameter_description"><p>width to set for <em class="parameter"><code>component</code></em>
837
+ </p></td>
838
+ <td class="parameter_annotations"> </td>
839
+ </tr>
840
+ <tr>
841
+ <td class="parameter_name"><p>height</p></td>
842
+ <td class="parameter_description"><p>height to set for <em class="parameter"><code>component</code></em>
843
+ </p></td>
844
+ <td class="parameter_annotations"> </td>
845
+ </tr>
846
+ </tbody>
847
+ </table></div>
848
+ </div>
849
+ <div class="refsect3">
850
+ <a name="id-1.5.3.9.15.6"></a><h4>Returns</h4>
851
+ <p> <code class="literal">TRUE</code> or <code class="literal">FALSE</code> whether the size was set or not</p>
852
+ <p></p>
853
+ </div>
854
+ </div>
855
+ <hr>
856
+ <div class="refsect2">
857
+ <a name="atk-component-get-alpha"></a><h3>atk_component_get_alpha ()</h3>
858
+ <pre class="programlisting"><span class="returnvalue">gdouble</span>
859
+ atk_component_get_alpha (<em class="parameter"><code><a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *component</code></em>);</pre>
860
+ <p>Returns the alpha value (i.e. the opacity) for this
861
+ <em class="parameter"><code>component</code></em>
862
+ , on a scale from 0 (fully transparent) to 1.0
863
+ (fully opaque).</p>
864
+ <div class="refsect3">
865
+ <a name="id-1.5.3.9.16.5"></a><h4>Parameters</h4>
866
+ <div class="informaltable"><table width="100%" border="0">
867
+ <colgroup>
868
+ <col width="150px" class="parameters_name">
869
+ <col class="parameters_description">
870
+ <col width="200px" class="parameters_annotations">
871
+ </colgroup>
872
+ <tbody><tr>
873
+ <td class="parameter_name"><p>component</p></td>
874
+ <td class="parameter_description"><p>an <a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a></p></td>
875
+ <td class="parameter_annotations"> </td>
876
+ </tr></tbody>
877
+ </table></div>
878
+ </div>
879
+ <div class="refsect3">
880
+ <a name="id-1.5.3.9.16.6"></a><h4>Returns</h4>
881
+ <p> An alpha value from 0 to 1.0, inclusive.</p>
882
+ <p></p>
883
+ </div>
884
+ <p class="since">Since 1.12</p>
885
+ </div>
886
+ </div>
887
+ <div class="refsect1">
888
+ <a name="AtkComponent.other_details"></a><h2>Types and Values</h2>
889
+ <div class="refsect2">
890
+ <a name="AtkComponent-struct"></a><h3>AtkComponent</h3>
891
+ <pre class="programlisting">typedef struct _AtkComponent AtkComponent;</pre>
892
+ <p>
893
+ </p>
894
+ </div>
895
+ <hr>
896
+ <div class="refsect2">
897
+ <a name="AtkComponentIface"></a><h3>struct AtkComponentIface</h3>
898
+ <pre class="programlisting">struct AtkComponentIface {
899
+ GTypeInterface parent;
900
+
901
+ guint (* add_focus_handler) (AtkComponent *component,
902
+ AtkFocusHandler handler);
903
+
904
+ gboolean (* contains) (AtkComponent *component,
905
+ gint x,
906
+ gint y,
907
+ AtkCoordType coord_type);
908
+
909
+ AtkObject* (* ref_accessible_at_point) (AtkComponent *component,
910
+ gint x,
911
+ gint y,
912
+ AtkCoordType coord_type);
913
+ void (* get_extents) (AtkComponent *component,
914
+ gint *x,
915
+ gint *y,
916
+ gint *width,
917
+ gint *height,
918
+ AtkCoordType coord_type);
919
+ void (* get_position) (AtkComponent *component,
920
+ gint *x,
921
+ gint *y,
922
+ AtkCoordType coord_type);
923
+ void (* get_size) (AtkComponent *component,
924
+ gint *width,
925
+ gint *height);
926
+ gboolean (* grab_focus) (AtkComponent *component);
927
+ void (* remove_focus_handler) (AtkComponent *component,
928
+ guint handler_id);
929
+ gboolean (* set_extents) (AtkComponent *component,
930
+ gint x,
931
+ gint y,
932
+ gint width,
933
+ gint height,
934
+ AtkCoordType coord_type);
935
+ gboolean (* set_position) (AtkComponent *component,
936
+ gint x,
937
+ gint y,
938
+ AtkCoordType coord_type);
939
+ gboolean (* set_size) (AtkComponent *component,
940
+ gint width,
941
+ gint height);
942
+
943
+ AtkLayer (* get_layer) (AtkComponent *component);
944
+ gint (* get_mdi_zorder) (AtkComponent *component);
945
+
946
+ /*
947
+ * signal handlers
948
+ */
949
+ void (* bounds_changed) (AtkComponent *component,
950
+ AtkRectangle *bounds);
951
+ gdouble (* get_alpha) (AtkComponent *component);
952
+ };
953
+ </pre>
954
+ <div class="refsect3">
955
+ <a name="id-1.5.3.10.3.4"></a><h4>Members</h4>
956
+ <div class="informaltable"><table width="100%" border="0">
957
+ <colgroup>
958
+ <col width="300px" class="struct_members_name">
959
+ <col class="struct_members_description">
960
+ <col width="200px" class="struct_members_annotations">
961
+ </colgroup>
962
+ <tbody>
963
+ <tr>
964
+ <td class="struct_member_name"><p><span class="type">GTypeInterface</span> <em class="structfield"><code><a name="AtkComponentIface.parent"></a>parent</code></em>;</p></td>
965
+ <td class="struct_member_description"> </td>
966
+ <td class="struct_member_annotations"> </td>
967
+ </tr>
968
+ <tr>
969
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.add-focus-handler"></a>add_focus_handler</code></em> ()</p></td>
970
+ <td class="struct_member_description"><p>This virtual function is deprecated since 2.9.4
971
+ and it should not be overriden. See
972
+ <a class="link" href="AtkComponent.html#atk-component-add-focus-handler" title="atk_component_add_focus_handler ()"><code class="function">atk_component_add_focus_handler()</code></a> for more information.</p></td>
973
+ <td class="struct_member_annotations"> </td>
974
+ </tr>
975
+ <tr>
976
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.contains"></a>contains</code></em> ()</p></td>
977
+ <td class="struct_member_description"> </td>
978
+ <td class="struct_member_annotations"> </td>
979
+ </tr>
980
+ <tr>
981
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.ref-accessible-at-point"></a>ref_accessible_at_point</code></em> ()</p></td>
982
+ <td class="struct_member_description"> </td>
983
+ <td class="struct_member_annotations"> </td>
984
+ </tr>
985
+ <tr>
986
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.get-extents"></a>get_extents</code></em> ()</p></td>
987
+ <td class="struct_member_description"> </td>
988
+ <td class="struct_member_annotations"> </td>
989
+ </tr>
990
+ <tr>
991
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.get-position"></a>get_position</code></em> ()</p></td>
992
+ <td class="struct_member_description"><p>This virtual function is deprecated since 2.12 and
993
+ it should not be overriden. Use <em class="parameter"><code>get_extents</code></em>
994
+ instead.</p></td>
995
+ <td class="struct_member_annotations"> </td>
996
+ </tr>
997
+ <tr>
998
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.get-size"></a>get_size</code></em> ()</p></td>
999
+ <td class="struct_member_description"><p>This virtual function is deprecated since 2.12 and it
1000
+ should not be overriden. Use <em class="parameter"><code>get_extents</code></em>
1001
+ instead.</p></td>
1002
+ <td class="struct_member_annotations"> </td>
1003
+ </tr>
1004
+ <tr>
1005
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.grab-focus"></a>grab_focus</code></em> ()</p></td>
1006
+ <td class="struct_member_description"> </td>
1007
+ <td class="struct_member_annotations"> </td>
1008
+ </tr>
1009
+ <tr>
1010
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.remove-focus-handler"></a>remove_focus_handler</code></em> ()</p></td>
1011
+ <td class="struct_member_description"><p>This virtual function is deprecated since
1012
+ 2.9.4 and it should not be overriden. See
1013
+ <a class="link" href="AtkComponent.html#atk-component-remove-focus-handler" title="atk_component_remove_focus_handler ()"><code class="function">atk_component_remove_focus_handler()</code></a> for more information.</p></td>
1014
+ <td class="struct_member_annotations"> </td>
1015
+ </tr>
1016
+ <tr>
1017
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.set-extents"></a>set_extents</code></em> ()</p></td>
1018
+ <td class="struct_member_description"> </td>
1019
+ <td class="struct_member_annotations"> </td>
1020
+ </tr>
1021
+ <tr>
1022
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.set-position"></a>set_position</code></em> ()</p></td>
1023
+ <td class="struct_member_description"> </td>
1024
+ <td class="struct_member_annotations"> </td>
1025
+ </tr>
1026
+ <tr>
1027
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.set-size"></a>set_size</code></em> ()</p></td>
1028
+ <td class="struct_member_description"> </td>
1029
+ <td class="struct_member_annotations"> </td>
1030
+ </tr>
1031
+ <tr>
1032
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.get-layer"></a>get_layer</code></em> ()</p></td>
1033
+ <td class="struct_member_description"> </td>
1034
+ <td class="struct_member_annotations"> </td>
1035
+ </tr>
1036
+ <tr>
1037
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.get-mdi-zorder"></a>get_mdi_zorder</code></em> ()</p></td>
1038
+ <td class="struct_member_description"> </td>
1039
+ <td class="struct_member_annotations"> </td>
1040
+ </tr>
1041
+ <tr>
1042
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.bounds-changed"></a>bounds_changed</code></em> ()</p></td>
1043
+ <td class="struct_member_description"> </td>
1044
+ <td class="struct_member_annotations"> </td>
1045
+ </tr>
1046
+ <tr>
1047
+ <td class="struct_member_name"><p><em class="structfield"><code><a name="AtkComponentIface.get-alpha"></a>get_alpha</code></em> ()</p></td>
1048
+ <td class="struct_member_description"> </td>
1049
+ <td class="struct_member_annotations"> </td>
1050
+ </tr>
1051
+ </tbody>
1052
+ </table></div>
1053
+ </div>
1054
+ </div>
1055
+ <hr>
1056
+ <div class="refsect2">
1057
+ <a name="AtkRectangle"></a><h3>struct AtkRectangle</h3>
1058
+ <pre class="programlisting">struct AtkRectangle {
1059
+ gint x;
1060
+ gint y;
1061
+ gint width;
1062
+ gint height;
1063
+ };
1064
+ </pre>
1065
+ <p>A data structure for holding a rectangle. Those coordinates are
1066
+ relative to the component top-level parent.</p>
1067
+ <div class="refsect3">
1068
+ <a name="id-1.5.3.10.4.5"></a><h4>Members</h4>
1069
+ <div class="informaltable"><table width="100%" border="0">
1070
+ <colgroup>
1071
+ <col width="300px" class="struct_members_name">
1072
+ <col class="struct_members_description">
1073
+ <col width="200px" class="struct_members_annotations">
1074
+ </colgroup>
1075
+ <tbody>
1076
+ <tr>
1077
+ <td class="struct_member_name"><p><span class="type">gint</span> <em class="structfield"><code><a name="AtkRectangle.x"></a>x</code></em>;</p></td>
1078
+ <td class="struct_member_description"><p>X coordinate of the left side of the rectangle.</p></td>
1079
+ <td class="struct_member_annotations"> </td>
1080
+ </tr>
1081
+ <tr>
1082
+ <td class="struct_member_name"><p><span class="type">gint</span> <em class="structfield"><code><a name="AtkRectangle.y"></a>y</code></em>;</p></td>
1083
+ <td class="struct_member_description"><p>Y coordinate of the top side of the rectangle.</p></td>
1084
+ <td class="struct_member_annotations"> </td>
1085
+ </tr>
1086
+ <tr>
1087
+ <td class="struct_member_name"><p><span class="type">gint</span> <em class="structfield"><code><a name="AtkRectangle.width"></a>width</code></em>;</p></td>
1088
+ <td class="struct_member_description"><p>width of the rectangle.</p></td>
1089
+ <td class="struct_member_annotations"> </td>
1090
+ </tr>
1091
+ <tr>
1092
+ <td class="struct_member_name"><p><span class="type">gint</span> <em class="structfield"><code><a name="AtkRectangle.height"></a>height</code></em>;</p></td>
1093
+ <td class="struct_member_description"><p>height of the rectangle.</p></td>
1094
+ <td class="struct_member_annotations"> </td>
1095
+ </tr>
1096
+ </tbody>
1097
+ </table></div>
1098
+ </div>
1099
+ </div>
1100
+ </div>
1101
+ <div class="refsect1">
1102
+ <a name="AtkComponent.signal-details"></a><h2>Signal Details</h2>
1103
+ <div class="refsect2">
1104
+ <a name="AtkComponent-bounds-changed"></a><h3>The <code class="literal">“bounds-changed”</code> signal</h3>
1105
+ <pre class="programlisting"><span class="returnvalue">void</span>
1106
+ user_function (<a class="link" href="AtkComponent.html" title="AtkComponent"><span class="type">AtkComponent</span></a> *atkcomponent,
1107
+ <a class="link" href="AtkComponent.html#AtkRectangle" title="struct AtkRectangle"><span class="type">AtkRectangle</span></a> *arg1,
1108
+ <span class="type">gpointer</span> user_data)</pre>
1109
+ <p>The 'bounds-changed" signal is emitted when the bposition or
1110
+ size of the component changes.</p>
1111
+ <div class="refsect3">
1112
+ <a name="id-1.5.3.11.2.5"></a><h4>Parameters</h4>
1113
+ <div class="informaltable"><table width="100%" border="0">
1114
+ <colgroup>
1115
+ <col width="150px" class="parameters_name">
1116
+ <col class="parameters_description">
1117
+ <col width="200px" class="parameters_annotations">
1118
+ </colgroup>
1119
+ <tbody>
1120
+ <tr>
1121
+ <td class="parameter_name"><p>atkcomponent</p></td>
1122
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
1123
+ <td class="parameter_annotations"> </td>
1124
+ </tr>
1125
+ <tr>
1126
+ <td class="parameter_name"><p>arg1</p></td>
1127
+ <td class="parameter_description"><p>The AtkRectangle giving the new position and size.</p></td>
1128
+ <td class="parameter_annotations"> </td>
1129
+ </tr>
1130
+ <tr>
1131
+ <td class="parameter_name"><p>user_data</p></td>
1132
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
1133
+ <td class="parameter_annotations"> </td>
1134
+ </tr>
1135
+ </tbody>
1136
+ </table></div>
1137
+ </div>
1138
+ <p>Flags: Run Last</p>
1139
+ </div>
1140
+ </div>
1141
+ </div>
1142
+ <div class="footer">
1143
+ <hr>
1144
+ Generated by GTK-Doc V1.21.1</div>
1145
+ </body>
1146
+ </html>