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.
- checksums.yaml +7 -0
- data/README +30 -0
- data/Rakefile +31 -0
- data/ext/atk/atk.def +2 -0
- data/ext/atk/depend +11 -0
- data/ext/atk/extconf.rb +81 -0
- data/ext/atk/rbatk.c +66 -0
- data/ext/atk/rbatk.h +47 -0
- data/ext/atk/rbatkaction.c +85 -0
- data/ext/atk/rbatkcomponent.c +175 -0
- data/ext/atk/rbatkconversions.h +70 -0
- data/ext/atk/rbatkdocument.c +96 -0
- data/ext/atk/rbatkeditabletext.c +177 -0
- data/ext/atk/rbatkgobjectaccessible.c +46 -0
- data/ext/atk/rbatkhyperlink.c +71 -0
- data/ext/atk/rbatkhypertext.c +53 -0
- data/ext/atk/rbatkimage.c +68 -0
- data/ext/atk/rbatkimplementor.c +38 -0
- data/ext/atk/rbatknoopobject.c +40 -0
- data/ext/atk/rbatknoopobjectfactory.c +40 -0
- data/ext/atk/rbatkobject.c +153 -0
- data/ext/atk/rbatkobjectfactory.c +53 -0
- data/ext/atk/rbatkobjectrole.c +50 -0
- data/ext/atk/rbatkprivate.h +48 -0
- data/ext/atk/rbatkregistry.c +63 -0
- data/ext/atk/rbatkrelation.c +98 -0
- data/ext/atk/rbatkrelationset.c +95 -0
- data/ext/atk/rbatkrelationtype.c +38 -0
- data/ext/atk/rbatkselection.c +87 -0
- data/ext/atk/rbatkstate.c +51 -0
- data/ext/atk/rbatkstateset.c +180 -0
- data/ext/atk/rbatkstreamablecontent.c +57 -0
- data/ext/atk/rbatktable.c +271 -0
- data/ext/atk/rbatktext.c +318 -0
- data/ext/atk/rbatktextattribute.c +54 -0
- data/ext/atk/rbatktextrange.c +92 -0
- data/ext/atk/rbatktextrectangle.c +149 -0
- data/ext/atk/rbatkutil.c +122 -0
- data/ext/atk/rbatkvalue.c +78 -0
- data/extconf.rb +49 -0
- data/lib/2.0/atk.so +0 -0
- data/lib/2.1/atk.so +0 -0
- data/lib/2.2/atk.so +0 -0
- data/lib/atk.rb +21 -0
- data/test/atk-test-utils.rb +21 -0
- data/test/run-test.rb +45 -0
- data/test/test-text-rectangle.rb +26 -0
- data/vendor/local/bin/libatk-1.0-0.dll +0 -0
- data/vendor/local/include/atk-1.0/atk/atk-enum-types.h +63 -0
- data/vendor/local/include/atk-1.0/atk/atk.h +61 -0
- data/vendor/local/include/atk-1.0/atk/atkaction.h +117 -0
- data/vendor/local/include/atk-1.0/atk/atkcomponent.h +225 -0
- data/vendor/local/include/atk-1.0/atk/atkdocument.h +113 -0
- data/vendor/local/include/atk-1.0/atk/atkeditabletext.h +109 -0
- data/vendor/local/include/atk-1.0/atk/atkgobjectaccessible.h +68 -0
- data/vendor/local/include/atk-1.0/atk/atkhyperlink.h +114 -0
- data/vendor/local/include/atk-1.0/atk/atkhyperlinkimpl.h +68 -0
- data/vendor/local/include/atk-1.0/atk/atkhypertext.h +78 -0
- data/vendor/local/include/atk-1.0/atk/atkimage.h +90 -0
- data/vendor/local/include/atk-1.0/atk/atkmisc.h +112 -0
- data/vendor/local/include/atk-1.0/atk/atknoopobject.h +59 -0
- data/vendor/local/include/atk-1.0/atk/atknoopobjectfactory.h +59 -0
- data/vendor/local/include/atk-1.0/atk/atkobject.h +751 -0
- data/vendor/local/include/atk-1.0/atk/atkobjectfactory.h +72 -0
- data/vendor/local/include/atk-1.0/atk/atkplug.h +66 -0
- data/vendor/local/include/atk-1.0/atk/atkrange.h +59 -0
- data/vendor/local/include/atk-1.0/atk/atkregistry.h +74 -0
- data/vendor/local/include/atk-1.0/atk/atkrelation.h +99 -0
- data/vendor/local/include/atk-1.0/atk/atkrelationset.h +91 -0
- data/vendor/local/include/atk-1.0/atk/atkrelationtype.h +83 -0
- data/vendor/local/include/atk-1.0/atk/atkselection.h +100 -0
- data/vendor/local/include/atk-1.0/atk/atksocket.h +71 -0
- data/vendor/local/include/atk-1.0/atk/atkstate.h +190 -0
- data/vendor/local/include/atk-1.0/atk/atkstateset.h +92 -0
- data/vendor/local/include/atk-1.0/atk/atkstreamablecontent.h +110 -0
- data/vendor/local/include/atk-1.0/atk/atktable.h +233 -0
- data/vendor/local/include/atk-1.0/atk/atktablecell.h +104 -0
- data/vendor/local/include/atk-1.0/atk/atktext.h +453 -0
- data/vendor/local/include/atk-1.0/atk/atkutil.h +357 -0
- data/vendor/local/include/atk-1.0/atk/atkvalue.h +163 -0
- data/vendor/local/include/atk-1.0/atk/atkversion.h +394 -0
- data/vendor/local/include/atk-1.0/atk/atkwindow.h +53 -0
- data/vendor/local/lib/girepository-1.0/Atk-1.0.typelib +0 -0
- data/vendor/local/lib/libatk-1.0.dll.a +0 -0
- data/vendor/local/lib/libatk-1.0.la +41 -0
- data/vendor/local/lib/pkgconfig/atk.pc +11 -0
- data/vendor/local/share/gir-1.0/Atk-1.0.gir +15525 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkAction.html +477 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkComponent.html +1146 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkDocument.html +714 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkEditableText.html +429 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkGObjectAccessible.html +166 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkHyperlink.html +570 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkHypertext.html +286 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkImage.html +319 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkMisc.html +191 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkNoOpObject.html +130 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkNoOpObjectFactory.html +107 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkObject.html +3056 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkObjectFactory.html +214 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkRegistry.html +265 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkRelation.html +659 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkRelationSet.html +413 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkSelection.html +453 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkStateSet.html +539 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkStreamableContent.html +274 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkTable.html +1790 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkTableCell.html +497 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkText.html +2547 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkUtil.html +1111 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkValue.html +743 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkWindow.html +452 -0
- data/vendor/local/share/gtk-doc/html/atk/accessibles.html +49 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-12.html +51 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-13.html +41 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-20.html +35 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-22.html +45 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-3.html +41 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-30.html +41 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-4.html +35 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-6.html +35 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-9.html +39 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-2-10.html +35 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-2-12.html +78 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-2-2.html +53 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-2-8.html +47 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-deprecated.html +119 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-full.html +775 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkHyperlinkImpl.html +142 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkPlug.html +147 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkRange.html +328 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkSocket.html +207 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkState.html +556 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-Versioning-Utilities.html +293 -0
- data/vendor/local/share/gtk-doc/html/atk/atk.devhelp2 +441 -0
- data/vendor/local/share/gtk-doc/html/atk/atkobject.html +33 -0
- data/vendor/local/share/gtk-doc/html/atk/data.html +49 -0
- data/vendor/local/share/gtk-doc/html/atk/deprecated.html +33 -0
- data/vendor/local/share/gtk-doc/html/atk/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/index.html +175 -0
- data/vendor/local/share/gtk-doc/html/atk/index.sgml +632 -0
- data/vendor/local/share/gtk-doc/html/atk/interfaces.html +89 -0
- data/vendor/local/share/gtk-doc/html/atk/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/overview.html +47 -0
- data/vendor/local/share/gtk-doc/html/atk/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/atk/toolkit.html +33 -0
- data/vendor/local/share/gtk-doc/html/atk/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/utilities.html +47 -0
- data/vendor/local/share/license/atk/AUTHORS +18 -0
- data/vendor/local/share/license/atk/COPYING +482 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/zu/LC_MESSAGES/atk10.mo +0 -0
- metadata +307 -0
@@ -0,0 +1,477 @@
|
|
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: AtkAction</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="interfaces.html" title="ATK Interfaces">
|
10
|
+
<link rel="next" href="AtkComponent.html" title="AtkComponent">
|
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="#AtkAction.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#AtkAction.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_implementations"> <span class="dim">|</span>
|
20
|
+
<a href="#AtkAction.implementations" class="shortcut">Known Implementations</a></span>
|
21
|
+
</td>
|
22
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
23
|
+
<td><a accesskey="u" href="interfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
24
|
+
<td><a accesskey="p" href="interfaces.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
25
|
+
<td><a accesskey="n" href="AtkComponent.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
26
|
+
</tr></table>
|
27
|
+
<div class="refentry">
|
28
|
+
<a name="AtkAction"></a><div class="titlepage"></div>
|
29
|
+
<div class="refnamediv"><table width="100%"><tr>
|
30
|
+
<td valign="top">
|
31
|
+
<h2><span class="refentrytitle"><a name="AtkAction.top_of_page"></a>AtkAction</span></h2>
|
32
|
+
<p>AtkAction — The ATK interface provided by UI components
|
33
|
+
which the user can activate/interact with.</p>
|
34
|
+
</td>
|
35
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
36
|
+
</tr></table></div>
|
37
|
+
<div class="refsect1">
|
38
|
+
<a name="AtkAction.functions"></a><h2>Functions</h2>
|
39
|
+
<div class="informaltable"><table width="100%" border="0">
|
40
|
+
<colgroup>
|
41
|
+
<col width="150px" class="functions_return">
|
42
|
+
<col class="functions_name">
|
43
|
+
</colgroup>
|
44
|
+
<tbody>
|
45
|
+
<tr>
|
46
|
+
<td class="function_type">
|
47
|
+
<span class="returnvalue">gboolean</span>
|
48
|
+
</td>
|
49
|
+
<td class="function_name">
|
50
|
+
<a class="link" href="AtkAction.html#atk-action-do-action" title="atk_action_do_action ()">atk_action_do_action</a> <span class="c_punctuation">()</span>
|
51
|
+
</td>
|
52
|
+
</tr>
|
53
|
+
<tr>
|
54
|
+
<td class="function_type">
|
55
|
+
<span class="returnvalue">gint</span>
|
56
|
+
</td>
|
57
|
+
<td class="function_name">
|
58
|
+
<a class="link" href="AtkAction.html#atk-action-get-n-actions" title="atk_action_get_n_actions ()">atk_action_get_n_actions</a> <span class="c_punctuation">()</span>
|
59
|
+
</td>
|
60
|
+
</tr>
|
61
|
+
<tr>
|
62
|
+
<td class="function_type">const <span class="returnvalue">gchar</span> *
|
63
|
+
</td>
|
64
|
+
<td class="function_name">
|
65
|
+
<a class="link" href="AtkAction.html#atk-action-get-description" title="atk_action_get_description ()">atk_action_get_description</a> <span class="c_punctuation">()</span>
|
66
|
+
</td>
|
67
|
+
</tr>
|
68
|
+
<tr>
|
69
|
+
<td class="function_type">const <span class="returnvalue">gchar</span> *
|
70
|
+
</td>
|
71
|
+
<td class="function_name">
|
72
|
+
<a class="link" href="AtkAction.html#atk-action-get-name" title="atk_action_get_name ()">atk_action_get_name</a> <span class="c_punctuation">()</span>
|
73
|
+
</td>
|
74
|
+
</tr>
|
75
|
+
<tr>
|
76
|
+
<td class="function_type">const <span class="returnvalue">gchar</span> *
|
77
|
+
</td>
|
78
|
+
<td class="function_name">
|
79
|
+
<a class="link" href="AtkAction.html#atk-action-get-localized-name" title="atk_action_get_localized_name ()">atk_action_get_localized_name</a> <span class="c_punctuation">()</span>
|
80
|
+
</td>
|
81
|
+
</tr>
|
82
|
+
<tr>
|
83
|
+
<td class="function_type">const <span class="returnvalue">gchar</span> *
|
84
|
+
</td>
|
85
|
+
<td class="function_name">
|
86
|
+
<a class="link" href="AtkAction.html#atk-action-get-keybinding" title="atk_action_get_keybinding ()">atk_action_get_keybinding</a> <span class="c_punctuation">()</span>
|
87
|
+
</td>
|
88
|
+
</tr>
|
89
|
+
<tr>
|
90
|
+
<td class="function_type">
|
91
|
+
<span class="returnvalue">gboolean</span>
|
92
|
+
</td>
|
93
|
+
<td class="function_name">
|
94
|
+
<a class="link" href="AtkAction.html#atk-action-set-description" title="atk_action_set_description ()">atk_action_set_description</a> <span class="c_punctuation">()</span>
|
95
|
+
</td>
|
96
|
+
</tr>
|
97
|
+
</tbody>
|
98
|
+
</table></div>
|
99
|
+
</div>
|
100
|
+
<div class="refsect1">
|
101
|
+
<a name="AtkAction.other"></a><h2>Types and Values</h2>
|
102
|
+
<div class="informaltable"><table width="100%" border="0">
|
103
|
+
<colgroup>
|
104
|
+
<col width="150px" class="name">
|
105
|
+
<col class="description">
|
106
|
+
</colgroup>
|
107
|
+
<tbody>
|
108
|
+
<tr>
|
109
|
+
<td class="datatype_keyword"> </td>
|
110
|
+
<td class="function_name"><a class="link" href="AtkAction.html#AtkAction-struct" title="AtkAction">AtkAction</a></td>
|
111
|
+
</tr>
|
112
|
+
<tr>
|
113
|
+
<td class="datatype_keyword">struct</td>
|
114
|
+
<td class="function_name"><a class="link" href="AtkAction.html#AtkActionIface" title="struct AtkActionIface">AtkActionIface</a></td>
|
115
|
+
</tr>
|
116
|
+
</tbody>
|
117
|
+
</table></div>
|
118
|
+
</div>
|
119
|
+
<div class="refsect1">
|
120
|
+
<a name="AtkAction.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
121
|
+
<pre class="screen"> GInterface
|
122
|
+
<span class="lineart">╰──</span> AtkAction
|
123
|
+
</pre>
|
124
|
+
</div>
|
125
|
+
<div class="refsect1">
|
126
|
+
<a name="AtkAction.implementations"></a><h2>Known Implementations</h2>
|
127
|
+
<p>
|
128
|
+
AtkAction is implemented by
|
129
|
+
<a class="link" href="AtkHyperlink.html" title="AtkHyperlink">AtkHyperlink</a> and <a class="link" href="AtkNoOpObject.html" title="AtkNoOpObject">AtkNoOpObject</a>.</p>
|
130
|
+
</div>
|
131
|
+
<div class="refsect1">
|
132
|
+
<a name="AtkAction.description"></a><h2>Description</h2>
|
133
|
+
<p><a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> should be implemented by instances of <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> classes
|
134
|
+
with which the user can interact directly, i.e. buttons,
|
135
|
+
checkboxes, scrollbars, e.g. components which are not "passive"
|
136
|
+
providers of UI information.</p>
|
137
|
+
<p>Exceptions: when the user interaction is already covered by another
|
138
|
+
appropriate interface such as <a class="link" href="AtkEditableText.html" title="AtkEditableText"><span class="type">AtkEditableText</span></a> (insert/delete text,
|
139
|
+
etc.) or <a class="link" href="AtkValue.html" title="AtkValue"><span class="type">AtkValue</span></a> (set value) then these actions should not be
|
140
|
+
exposed by <a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> as well.</p>
|
141
|
+
<p>Though most UI interactions on components should be invocable via
|
142
|
+
keyboard as well as mouse, there will generally be a close mapping
|
143
|
+
between "mouse actions" that are possible on a component and the
|
144
|
+
AtkActions. Where mouse and keyboard actions are redundant in
|
145
|
+
effect, <a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> should expose only one action rather than
|
146
|
+
exposing redundant actions if possible. By convention we have been
|
147
|
+
using "mouse centric" terminology for <a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> names.</p>
|
148
|
+
</div>
|
149
|
+
<div class="refsect1">
|
150
|
+
<a name="AtkAction.functions_details"></a><h2>Functions</h2>
|
151
|
+
<div class="refsect2">
|
152
|
+
<a name="atk-action-do-action"></a><h3>atk_action_do_action ()</h3>
|
153
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span>
|
154
|
+
atk_action_do_action (<em class="parameter"><code><a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> *action</code></em>,
|
155
|
+
<em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
|
156
|
+
<p>Perform the specified action on the object.</p>
|
157
|
+
<div class="refsect3">
|
158
|
+
<a name="id-1.5.2.8.2.5"></a><h4>Parameters</h4>
|
159
|
+
<div class="informaltable"><table width="100%" border="0">
|
160
|
+
<colgroup>
|
161
|
+
<col width="150px" class="parameters_name">
|
162
|
+
<col class="parameters_description">
|
163
|
+
<col width="200px" class="parameters_annotations">
|
164
|
+
</colgroup>
|
165
|
+
<tbody>
|
166
|
+
<tr>
|
167
|
+
<td class="parameter_name"><p>action</p></td>
|
168
|
+
<td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkActionIface</p></td>
|
169
|
+
<td class="parameter_annotations"> </td>
|
170
|
+
</tr>
|
171
|
+
<tr>
|
172
|
+
<td class="parameter_name"><p>i</p></td>
|
173
|
+
<td class="parameter_description"><p>the action index corresponding to the action to be performed </p></td>
|
174
|
+
<td class="parameter_annotations"> </td>
|
175
|
+
</tr>
|
176
|
+
</tbody>
|
177
|
+
</table></div>
|
178
|
+
</div>
|
179
|
+
<div class="refsect3">
|
180
|
+
<a name="id-1.5.2.8.2.6"></a><h4>Returns</h4>
|
181
|
+
<p> <code class="literal">TRUE</code> if success, <code class="literal">FALSE</code> otherwise</p>
|
182
|
+
<p></p>
|
183
|
+
</div>
|
184
|
+
</div>
|
185
|
+
<hr>
|
186
|
+
<div class="refsect2">
|
187
|
+
<a name="atk-action-get-n-actions"></a><h3>atk_action_get_n_actions ()</h3>
|
188
|
+
<pre class="programlisting"><span class="returnvalue">gint</span>
|
189
|
+
atk_action_get_n_actions (<em class="parameter"><code><a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> *action</code></em>);</pre>
|
190
|
+
<p>Gets the number of accessible actions available on the object.
|
191
|
+
If there are more than one, the first one is considered the
|
192
|
+
"default" action of the object.</p>
|
193
|
+
<div class="refsect3">
|
194
|
+
<a name="id-1.5.2.8.3.5"></a><h4>Parameters</h4>
|
195
|
+
<div class="informaltable"><table width="100%" border="0">
|
196
|
+
<colgroup>
|
197
|
+
<col width="150px" class="parameters_name">
|
198
|
+
<col class="parameters_description">
|
199
|
+
<col width="200px" class="parameters_annotations">
|
200
|
+
</colgroup>
|
201
|
+
<tbody><tr>
|
202
|
+
<td class="parameter_name"><p>action</p></td>
|
203
|
+
<td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkActionIface</p></td>
|
204
|
+
<td class="parameter_annotations"> </td>
|
205
|
+
</tr></tbody>
|
206
|
+
</table></div>
|
207
|
+
</div>
|
208
|
+
<div class="refsect3">
|
209
|
+
<a name="id-1.5.2.8.3.6"></a><h4>Returns</h4>
|
210
|
+
<p> a the number of actions, or 0 if <em class="parameter"><code>action</code></em>
|
211
|
+
does not
|
212
|
+
implement this interface.</p>
|
213
|
+
<p></p>
|
214
|
+
</div>
|
215
|
+
</div>
|
216
|
+
<hr>
|
217
|
+
<div class="refsect2">
|
218
|
+
<a name="atk-action-get-description"></a><h3>atk_action_get_description ()</h3>
|
219
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> *
|
220
|
+
atk_action_get_description (<em class="parameter"><code><a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> *action</code></em>,
|
221
|
+
<em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
|
222
|
+
<p>Returns a description of the specified action of the object.</p>
|
223
|
+
<div class="refsect3">
|
224
|
+
<a name="id-1.5.2.8.4.5"></a><h4>Parameters</h4>
|
225
|
+
<div class="informaltable"><table width="100%" border="0">
|
226
|
+
<colgroup>
|
227
|
+
<col width="150px" class="parameters_name">
|
228
|
+
<col class="parameters_description">
|
229
|
+
<col width="200px" class="parameters_annotations">
|
230
|
+
</colgroup>
|
231
|
+
<tbody>
|
232
|
+
<tr>
|
233
|
+
<td class="parameter_name"><p>action</p></td>
|
234
|
+
<td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkActionIface</p></td>
|
235
|
+
<td class="parameter_annotations"> </td>
|
236
|
+
</tr>
|
237
|
+
<tr>
|
238
|
+
<td class="parameter_name"><p>i</p></td>
|
239
|
+
<td class="parameter_description"><p>the action index corresponding to the action to be performed </p></td>
|
240
|
+
<td class="parameter_annotations"> </td>
|
241
|
+
</tr>
|
242
|
+
</tbody>
|
243
|
+
</table></div>
|
244
|
+
</div>
|
245
|
+
<div class="refsect3">
|
246
|
+
<a name="id-1.5.2.8.4.6"></a><h4>Returns</h4>
|
247
|
+
<p> a description string, or <code class="literal">NULL</code> if <em class="parameter"><code>action</code></em>
|
248
|
+
does
|
249
|
+
not implement this interface. </p>
|
250
|
+
<p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>]</span></p>
|
251
|
+
</div>
|
252
|
+
</div>
|
253
|
+
<hr>
|
254
|
+
<div class="refsect2">
|
255
|
+
<a name="atk-action-get-name"></a><h3>atk_action_get_name ()</h3>
|
256
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> *
|
257
|
+
atk_action_get_name (<em class="parameter"><code><a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> *action</code></em>,
|
258
|
+
<em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
|
259
|
+
<p>Returns a non-localized string naming the specified action of the
|
260
|
+
object. This name is generally not descriptive of the end result
|
261
|
+
of the action, but instead names the 'interaction type' which the
|
262
|
+
object supports. By convention, the above strings should be used to
|
263
|
+
represent the actions which correspond to the common point-and-click
|
264
|
+
interaction techniques of the same name: i.e.
|
265
|
+
"click", "press", "release", "drag", "drop", "popup", etc.
|
266
|
+
The "popup" action should be used to pop up a context menu for the
|
267
|
+
object, if one exists.</p>
|
268
|
+
<p>For technical reasons, some toolkits cannot guarantee that the
|
269
|
+
reported action is actually 'bound' to a nontrivial user event;
|
270
|
+
i.e. the result of some actions via <a class="link" href="AtkAction.html#atk-action-do-action" title="atk_action_do_action ()"><code class="function">atk_action_do_action()</code></a> may be
|
271
|
+
NIL.</p>
|
272
|
+
<div class="refsect3">
|
273
|
+
<a name="id-1.5.2.8.5.6"></a><h4>Parameters</h4>
|
274
|
+
<div class="informaltable"><table width="100%" border="0">
|
275
|
+
<colgroup>
|
276
|
+
<col width="150px" class="parameters_name">
|
277
|
+
<col class="parameters_description">
|
278
|
+
<col width="200px" class="parameters_annotations">
|
279
|
+
</colgroup>
|
280
|
+
<tbody>
|
281
|
+
<tr>
|
282
|
+
<td class="parameter_name"><p>action</p></td>
|
283
|
+
<td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkActionIface</p></td>
|
284
|
+
<td class="parameter_annotations"> </td>
|
285
|
+
</tr>
|
286
|
+
<tr>
|
287
|
+
<td class="parameter_name"><p>i</p></td>
|
288
|
+
<td class="parameter_description"><p>the action index corresponding to the action to be performed </p></td>
|
289
|
+
<td class="parameter_annotations"> </td>
|
290
|
+
</tr>
|
291
|
+
</tbody>
|
292
|
+
</table></div>
|
293
|
+
</div>
|
294
|
+
<div class="refsect3">
|
295
|
+
<a name="id-1.5.2.8.5.7"></a><h4>Returns</h4>
|
296
|
+
<p> a name string, or <code class="literal">NULL</code> if <em class="parameter"><code>action</code></em>
|
297
|
+
does not
|
298
|
+
implement this interface. </p>
|
299
|
+
<p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>]</span></p>
|
300
|
+
</div>
|
301
|
+
</div>
|
302
|
+
<hr>
|
303
|
+
<div class="refsect2">
|
304
|
+
<a name="atk-action-get-localized-name"></a><h3>atk_action_get_localized_name ()</h3>
|
305
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> *
|
306
|
+
atk_action_get_localized_name (<em class="parameter"><code><a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> *action</code></em>,
|
307
|
+
<em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
|
308
|
+
<p>Returns the localized name of the specified action of the object.</p>
|
309
|
+
<div class="refsect3">
|
310
|
+
<a name="id-1.5.2.8.6.5"></a><h4>Parameters</h4>
|
311
|
+
<div class="informaltable"><table width="100%" border="0">
|
312
|
+
<colgroup>
|
313
|
+
<col width="150px" class="parameters_name">
|
314
|
+
<col class="parameters_description">
|
315
|
+
<col width="200px" class="parameters_annotations">
|
316
|
+
</colgroup>
|
317
|
+
<tbody>
|
318
|
+
<tr>
|
319
|
+
<td class="parameter_name"><p>action</p></td>
|
320
|
+
<td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkActionIface</p></td>
|
321
|
+
<td class="parameter_annotations"> </td>
|
322
|
+
</tr>
|
323
|
+
<tr>
|
324
|
+
<td class="parameter_name"><p>i</p></td>
|
325
|
+
<td class="parameter_description"><p>the action index corresponding to the action to be performed </p></td>
|
326
|
+
<td class="parameter_annotations"> </td>
|
327
|
+
</tr>
|
328
|
+
</tbody>
|
329
|
+
</table></div>
|
330
|
+
</div>
|
331
|
+
<div class="refsect3">
|
332
|
+
<a name="id-1.5.2.8.6.6"></a><h4>Returns</h4>
|
333
|
+
<p> a name string, or <code class="literal">NULL</code> if <em class="parameter"><code>action</code></em>
|
334
|
+
does not
|
335
|
+
implement this interface. </p>
|
336
|
+
<p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>]</span></p>
|
337
|
+
</div>
|
338
|
+
</div>
|
339
|
+
<hr>
|
340
|
+
<div class="refsect2">
|
341
|
+
<a name="atk-action-get-keybinding"></a><h3>atk_action_get_keybinding ()</h3>
|
342
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> *
|
343
|
+
atk_action_get_keybinding (<em class="parameter"><code><a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> *action</code></em>,
|
344
|
+
<em class="parameter"><code><span class="type">gint</span> i</code></em>);</pre>
|
345
|
+
<p>Gets the keybinding which can be used to activate this action, if one
|
346
|
+
exists. The string returned should contain localized, human-readable,
|
347
|
+
key sequences as they would appear when displayed on screen. It must
|
348
|
+
be in the format "mnemonic;sequence;shortcut".</p>
|
349
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
350
|
+
<li class="listitem"><p>The mnemonic key activates the object if it is presently enabled onscreen.
|
351
|
+
This typically corresponds to the underlined letter within the widget.
|
352
|
+
Example: "n" in a traditional "New..." menu item or the "a" in "Apply" for
|
353
|
+
a button.</p></li>
|
354
|
+
<li class="listitem"><p>The sequence is the full list of keys which invoke the action even if the
|
355
|
+
relevant element is not currently shown on screen. For instance, for a menu
|
356
|
+
item the sequence is the keybindings used to open the parent menus before
|
357
|
+
invoking. The sequence string is colon-delimited. Example: "Alt+F:N" in a
|
358
|
+
traditional "New..." menu item.</p></li>
|
359
|
+
<li class="listitem"><p>The shortcut, if it exists, will invoke the same action without showing
|
360
|
+
the component or its enclosing menus or dialogs. Example: "Ctrl+N" in a
|
361
|
+
traditional "New..." menu item.</p></li>
|
362
|
+
</ul></div>
|
363
|
+
<p>Example: For a traditional "New..." menu item, the expected return value
|
364
|
+
would be: "N;Alt+F:N;Ctrl+N" for the English locale and "N;Alt+D:N;Strg+N"
|
365
|
+
for the German locale. If, hypothetically, this menu item lacked a mnemonic,
|
366
|
+
it would be represented by ";;Ctrl+N" and ";;Strg+N" respectively.</p>
|
367
|
+
<div class="refsect3">
|
368
|
+
<a name="id-1.5.2.8.7.7"></a><h4>Parameters</h4>
|
369
|
+
<div class="informaltable"><table width="100%" border="0">
|
370
|
+
<colgroup>
|
371
|
+
<col width="150px" class="parameters_name">
|
372
|
+
<col class="parameters_description">
|
373
|
+
<col width="200px" class="parameters_annotations">
|
374
|
+
</colgroup>
|
375
|
+
<tbody>
|
376
|
+
<tr>
|
377
|
+
<td class="parameter_name"><p>action</p></td>
|
378
|
+
<td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkActionIface</p></td>
|
379
|
+
<td class="parameter_annotations"> </td>
|
380
|
+
</tr>
|
381
|
+
<tr>
|
382
|
+
<td class="parameter_name"><p>i</p></td>
|
383
|
+
<td class="parameter_description"><p>the action index corresponding to the action to be performed</p></td>
|
384
|
+
<td class="parameter_annotations"> </td>
|
385
|
+
</tr>
|
386
|
+
</tbody>
|
387
|
+
</table></div>
|
388
|
+
</div>
|
389
|
+
<div class="refsect3">
|
390
|
+
<a name="id-1.5.2.8.7.8"></a><h4>Returns</h4>
|
391
|
+
<p> the keybinding which can be used to activate
|
392
|
+
this action, or <code class="literal">NULL</code> if there is no keybinding for this action. </p>
|
393
|
+
<p><span class="annotation">[<a href="http://foldoc.org/nullable"><span class="acronym">nullable</span></a>]</span></p>
|
394
|
+
</div>
|
395
|
+
</div>
|
396
|
+
<hr>
|
397
|
+
<div class="refsect2">
|
398
|
+
<a name="atk-action-set-description"></a><h3>atk_action_set_description ()</h3>
|
399
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span>
|
400
|
+
atk_action_set_description (<em class="parameter"><code><a class="link" href="AtkAction.html" title="AtkAction"><span class="type">AtkAction</span></a> *action</code></em>,
|
401
|
+
<em class="parameter"><code><span class="type">gint</span> i</code></em>,
|
402
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *desc</code></em>);</pre>
|
403
|
+
<p>Sets a description of the specified action of the object.</p>
|
404
|
+
<div class="refsect3">
|
405
|
+
<a name="id-1.5.2.8.8.5"></a><h4>Parameters</h4>
|
406
|
+
<div class="informaltable"><table width="100%" border="0">
|
407
|
+
<colgroup>
|
408
|
+
<col width="150px" class="parameters_name">
|
409
|
+
<col class="parameters_description">
|
410
|
+
<col width="200px" class="parameters_annotations">
|
411
|
+
</colgroup>
|
412
|
+
<tbody>
|
413
|
+
<tr>
|
414
|
+
<td class="parameter_name"><p>action</p></td>
|
415
|
+
<td class="parameter_description"><p>a <span class="type">GObject</span> instance that implements AtkActionIface</p></td>
|
416
|
+
<td class="parameter_annotations"> </td>
|
417
|
+
</tr>
|
418
|
+
<tr>
|
419
|
+
<td class="parameter_name"><p>i</p></td>
|
420
|
+
<td class="parameter_description"><p>the action index corresponding to the action to be performed </p></td>
|
421
|
+
<td class="parameter_annotations"> </td>
|
422
|
+
</tr>
|
423
|
+
<tr>
|
424
|
+
<td class="parameter_name"><p>desc</p></td>
|
425
|
+
<td class="parameter_description"><p>the description to be assigned to this action</p></td>
|
426
|
+
<td class="parameter_annotations"> </td>
|
427
|
+
</tr>
|
428
|
+
</tbody>
|
429
|
+
</table></div>
|
430
|
+
</div>
|
431
|
+
<div class="refsect3">
|
432
|
+
<a name="id-1.5.2.8.8.6"></a><h4>Returns</h4>
|
433
|
+
<p> a gboolean representing if the description was successfully set;</p>
|
434
|
+
<p></p>
|
435
|
+
</div>
|
436
|
+
</div>
|
437
|
+
</div>
|
438
|
+
<div class="refsect1">
|
439
|
+
<a name="AtkAction.other_details"></a><h2>Types and Values</h2>
|
440
|
+
<div class="refsect2">
|
441
|
+
<a name="AtkAction-struct"></a><h3>AtkAction</h3>
|
442
|
+
<pre class="programlisting">typedef struct _AtkAction AtkAction;</pre>
|
443
|
+
<p>
|
444
|
+
</p>
|
445
|
+
</div>
|
446
|
+
<hr>
|
447
|
+
<div class="refsect2">
|
448
|
+
<a name="AtkActionIface"></a><h3>struct AtkActionIface</h3>
|
449
|
+
<pre class="programlisting">struct AtkActionIface {
|
450
|
+
GTypeInterface parent;
|
451
|
+
|
452
|
+
gboolean (*do_action) (AtkAction *action,
|
453
|
+
gint i);
|
454
|
+
gint (*get_n_actions) (AtkAction *action);
|
455
|
+
const gchar* (*get_description) (AtkAction *action,
|
456
|
+
gint i);
|
457
|
+
const gchar* (*get_name) (AtkAction *action,
|
458
|
+
gint i);
|
459
|
+
const gchar* (*get_keybinding) (AtkAction *action,
|
460
|
+
gint i);
|
461
|
+
gboolean (*set_description) (AtkAction *action,
|
462
|
+
gint i,
|
463
|
+
const gchar *desc);
|
464
|
+
const gchar* (*get_localized_name)(AtkAction *action,
|
465
|
+
gint i);
|
466
|
+
};
|
467
|
+
</pre>
|
468
|
+
<p>
|
469
|
+
</p>
|
470
|
+
</div>
|
471
|
+
</div>
|
472
|
+
</div>
|
473
|
+
<div class="footer">
|
474
|
+
<hr>
|
475
|
+
Generated by GTK-Doc V1.21.1</div>
|
476
|
+
</body>
|
477
|
+
</html>
|