| Home | Trees | Index | Help |
|---|
| Package ocempgui :: Package access :: Module IAccessible :: Class IAccessible |
|
object --+
|
IAccessible
IAccessible () -> IAccessible
An abstract interface class for accessibility implementations.
The IAccessible class provides a single get_accessible() method definition, which can can be used by accessibility toolkit bindings to get necessary acessibility information from an python object. Those can contain information such as the object its current state, presentation information and interaction possibilities, for example.
Accessibility information are especially needed by, but not limited to, people with disabilities, so they can gather needed information from objects to clearly recognize them.| Method Summary | |
|---|---|
I.get_accessible () -> Accessible | |
| Inherited from object | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) | |
| Method Details |
|---|
get_accessible(self)I.get_accessible () -> Accessible Gets the Accessible from the object. Gets the Accessible from the object, which contains further infomormation about its state, presentation, interaction possibilities and more. This method has to be implemented by inheriting classes. |
| Home | Trees | Index | Help |
|---|
| Generated by Epydoc 2.1 on Thu Jan 10 10:18:44 2008 | http://epydoc.sf.net |