2003-02-12 01:57:20 +00:00
<Type Name= "Action" FullName= "Atk.Action" >
2003-02-15 03:08:25 +00:00
<TypeSignature Language= "C#" Value= "public abstract interface Action;" Maintainer= "auto" />
2003-02-12 01:57:20 +00:00
<AssemblyInfo >
<AssemblyName > atk-sharp</AssemblyName>
2003-12-24 01:35:30 +00:00
<AssemblyPublicKey >
</AssemblyPublicKey>
2003-02-12 01:57:20 +00:00
<AssemblyVersion > 0.0.0.0</AssemblyVersion>
2003-10-28 00:48:23 +00:00
<AssemblyCulture > neutral</AssemblyCulture>
2003-02-12 01:57:20 +00:00
<Attributes />
</AssemblyInfo>
2003-02-23 07:26:30 +00:00
<ThreadSafetyStatement > Gtk# is thread aware, but not thread safe; See the <link location= "node:gtk-sharp/programming/threads" > Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-22 19:02:46 +00:00
<summary >
The ATK interface provided by UI components which the user can
activate/interact with, this should be implemented by instances
of <see cref= "T:Atk.Object" /> classes with which the user can interact
directly, i.e. buttons, checkboxes, scrollbars, e.g. components
which are not "passive" providers of UI information.
</summary>
<remarks >
<para >
The ATK interface provided by UI components which the user can
activate/interact with, This should be implemented by
instances of <see cref= "T:Atk.Object" /> classes with which the
user can interact directly, i.e. buttons, checkboxes,
scrollbars, e.g. components which are not "passive" providers
of UI information.
</para>
<para >
Exceptions: when the user interaction is already covered by
2004-06-24 16:16:19 +00:00
another appropriate interface such as <see cref= "T:Atk.EditableText" /> (insert/delete test, etc.) or <see cref= "T:Atk.Value" /> (set value) then these actions should not
2004-06-22 19:02:46 +00:00
be exposed by <see cref= "T:Atk.Action" /> as well.
</para>
<para >
Also note that the <see cref= "T:Atk.Action" /> API is limited in that
parameters may not be passed to the object being activated;
thus the action must be self-contained and specifiable via
only a single "verb". Concrete examples include "press",
"release", "click" for buttons, "drag" (meaning initiate drag)
and "drop" for drag sources and drop targets, etc.
</para>
<para >
Though most UI interactions on components should be invocable
via keyboard as well as mouse, there will generally be a close
mapping between "mouse actions" that are possible on a
component and the <see cref= "T:Atk.Actions" /> . Where mouse and keyboard
actions are redundant in effect, <see cref= "T:Atk.Action" /> should expose
only one action rather than exposing redundant actions if
possible. By convention we have been using "mouse centric"
terminology for <see cref= "T:Atk.Action" /> names.
</para>
</remarks>
2003-02-12 01:57:20 +00:00
</Docs>
<Base />
<Interfaces >
<Interface >
<InterfaceName > GLib.IWrapper</InterfaceName>
</Interface>
</Interfaces>
<Attributes />
<Members >
<Member MemberName= "GetDescription" >
<MemberSignature Language= "C#" Value= "public virtual string GetDescription (int i);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "i" Type= "System.Int32" />
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-22 19:02:46 +00:00
<summary > Returns a description of the specified action of the object.</summary>
<param name= "i" > The action index corresponding to the action to be performed.</param>
<returns > A description string, or 0 if action does not implement this interface.</returns>
<remarks />
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
<Member MemberName= "SetDescription" >
<MemberSignature Language= "C#" Value= "public virtual bool SetDescription (int i, string desc);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "i" Type= "System.Int32" />
<Parameter Name= "desc" Type= "System.String" />
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-22 19:02:46 +00:00
<summary > Sets a description of the specified action of the object.</summary>
<param name= "i" > The action index corresponding to the action to be performed.</param>
<param name= "desc" > The description to be assigned to this action.</param>
2004-06-24 16:16:19 +00:00
<returns > A <see cref= "T:System.Boolean" /> representing if the description was successfully set.</returns>
2004-06-22 19:02:46 +00:00
<remarks />
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
<Member MemberName= "GetKeybinding" >
<MemberSignature Language= "C#" Value= "public virtual string GetKeybinding (int i);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "i" Type= "System.Int32" />
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-22 19:02:46 +00:00
<summary > Returns a keybinding associated with this action, if one exists.</summary>
<param name= "i" > The action index corresponding to the action to be performed.</param>
<returns > A string representing the keybinding, or an empty string if there is no keybinding for this action.</returns>
<remarks />
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
<Member MemberName= "GetName" >
<MemberSignature Language= "C#" Value= "public virtual string GetName (int i);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "i" Type= "System.Int32" />
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-22 19:02:46 +00:00
<summary > Returns the name of the specified action of the object.</summary>
<param name= "i" > The action index corresponding to the action to be performed.</param>
<returns > A name string, or an empty string if action does not implement this interface.</returns>
<remarks />
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
<Member MemberName= "DoAction" >
<MemberSignature Language= "C#" Value= "public virtual bool DoAction (int i);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "i" Type= "System.Int32" />
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-22 19:02:46 +00:00
<summary > Perform the specified action on the object.</summary>
<param name= "i" > The action index corresponding to the action to be performed.</param>
2004-06-24 16:16:19 +00:00
<returns >
<see langword= "true" /> if success, <see langword= "false" /> otherwise.</returns>
2004-06-22 19:02:46 +00:00
<remarks />
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
<Member MemberName= "NActions" >
<MemberSignature Language= "C#" Value= "public virtual int NActions { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Int32</ReturnType>
</ReturnValue>
<Docs >
2004-06-22 19:02:46 +00:00
<summary > Gets the number of accessible actions available on the object.</summary>
<returns > A the number of actions, or 0 if action does not implement this interface.</returns>
<remarks >
Gets the number of accessible actions available on the
object. If there are more than one, the first one is
considered the "default" action of the object.
</remarks>
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
2003-07-17 06:38:40 +00:00
<Member MemberName= "GetLocalizedName" >
<MemberSignature Language= "C#" Value= "public virtual string GetLocalizedName (int i);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "i" Type= "System.Int32" />
</Parameters>
2003-07-17 06:38:40 +00:00
<Docs >
2004-06-22 19:02:46 +00:00
<summary > Returns the localized name of the specified action of the object.</summary>
<param name= "i" > The action index corresponding to the action to be performed.</param>
<returns > A name string, or an empty string if action does not implement this interface.</returns>
<remarks />
2003-07-17 06:38:40 +00:00
</Docs>
</Member>
2003-02-12 01:57:20 +00:00
</Members>
2003-09-17 21:56:59 +00:00
</Type>