The AtkObject class is the base class for obtaining accessibility information on a widget. You should NOT instantiate this class directly, instead you should obtain it by calling the GtkWidget access method.
This class subclasses the Object REXX Object class so all of its methods are also available to this class.
The class heirarchy
Object +---AtkObject |
The methods for the AtkObject class are documented below.
This method retrieves the accessible description.
This is a example of retrieve the accessible description.
mydesc = mtatkobj~description() |
None.
This method sets the accessible description.
This is a example of setting the accessible description.
mydesc = 'New description' mtatkobj~description = mydesc |
None.
This method retrieves the accessible layer description.
This is a example of retrieve the accessible layer description.
mylayer = mtatkobj~layer() |
None.
This method retrieves the accessible localized role description.
This is a example of retrieve the accessible localized role description.
mylocalroledesc = mtatkobj~localizedroledescription() |
None.
This method retrieves the accessible name.
This is a example of retrieve the accessible name.
myname = mtatkobj~name() |
None.
This method sets the accessible name.
This is a example of setting the accessible name.
myname = 'MyNewName' mtatkobj~name = myname |
None.
Returns the pointer to the internal object data structure. You probably will never use this method but it is here for debugging.
This is a example of how to retrieve the internal pointer.
ptr = myatkobj~pointer() |
None.
This method retrieves the accessible role.
This is a example of retrieve the accessible role.
myrole = mtatkobj~role() |
None.
This method retrieves the accessible role description.
This is a example of retrieve the accessible role description.
myroledesc = mtatkobj~roledescription() |
None.