summaryrefslogtreecommitdiff
path: root/xml
diff options
context:
space:
mode:
authorMike Gorse <mgorse@boston.site>2008-06-23 17:52:13 -0400
committerMike Gorse <mgorse@boston.site>2008-06-23 17:52:13 -0400
commitc2973a17703ce93347e496e4c99f651d5c8c3751 (patch)
tree41bd66bdf3876b474d18f367296859e1bb7383af /xml
parent6de1480a4c6bbf9ddc5e008b68a30ae8484525a7 (diff)
downloadat-spi2-core-c2973a17703ce93347e496e4c99f651d5c8c3751.tar.gz
Add simple nActions property, getDescription, getName, getKeyBinding
Diffstat (limited to 'xml')
-rw-r--r--xml/org.freedesktop.atspi.Action.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/xml/org.freedesktop.atspi.Action.xml b/xml/org.freedesktop.atspi.Action.xml
index 569943a0..4d9d1a9f 100644
--- a/xml/org.freedesktop.atspi.Action.xml
+++ b/xml/org.freedesktop.atspi.Action.xml
@@ -47,6 +47,46 @@
</tp:member>
</tp:struct>
+ <tp:property name="nActions" type="i" access="read">
+ <tp:docstring>the number of actions this object supports</tp:docstring>
+ </tp:property>
+
+ <method name="getDescription">
+ <tp:docstring>
+ <p>Get the description for the specified action. The description of an action may provide information about the result of action invocation, unlike the action name.</p>
+ </tp:docstring>
+ <arg type="i" name="index" direction="in">
+ <tp:docstring>the index of the action</tp:docstring>
+ </arg>
+ <arg type="s" direction="out">
+ <tp:docstring>A string containing the description of the specified action</tp:docstring>
+ </arg>
+ </method>
+
+ <method name="getName">
+ <tp:docstring>
+ <p>Get the name of the specified action. Action names generally describe the user action, i.e. &quot;click&quot; or &quot;press&quot;, rather than the result of invoking the action.</p>
+ </tp:docstring>
+ <arg type="i" name="index" direction="in">
+ <tp:docstring>the index of the action</tp:docstring>
+ </arg>
+ <arg type="s" direction="out">
+ <tp:docstring>A string containing the name of the specified action</tp:docstring>
+ </arg>
+ </method>
+
+ <method name="getKeyBinding">
+ <tp:docstring>
+ <p>Get the key binding associated with a specific action.</p>
+ </tp:docstring>
+ <arg type="i" name="index" direction="in">
+ <tp:docstring>the index of the action</tp:docstring>
+ </arg>
+ <arg type="s" direction="out">
+ <tp:docstring>A string containing the key binding for the specified action, or an empty string (&quot;&quot;) if none exists.</tp:docstring>
+ </arg>
+ </method>
+
<method name="getActions">
<tp:docstring>
Retrieves the actions associated with the object.