Help on module Accessibility: NAME Accessibility FILE (built-in) CLASSES Bonobo.Unknown(CORBA.Object) Accessible Application Desktop Action Collection Component ContentStream DeviceEventController DeviceEventListener Document EventListener Registry Hyperlink Hypertext Image LoginHelper Relation Selection Selector StateSet StreamableContent Table Text EditableText Value CORBA.Enum(__builtin__.int) ComponentLayer EventType KeyEventType KeySynthType LOCALE_TYPE ModifierType RelationType Role StateType TEXT_BOUNDARY_TYPE TEXT_CLIP_TYPE CORBA.Object(__builtin__.object) CommandListener MatchRule CORBA.Struct(__builtin__.object) BoundingBox Command DeviceEvent Event EventDetails EventListenerMode KeyDefinition class Accessible(Bonobo.Unknown) | Method resolution order: | Accessible | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | __del__(self) | Decrements the reference count on the accessible object when there are no | Python references to this object. This provides automatic reference | counting for AT-SPI objects. Also removes this object from the cache if | we're caching properties. | | __getitem__(self, index) | Thin wrapper around getChildAtIndex. | | @param index: Index of desired child | @type index: integer | @return: Accessible child | @rtype: Accessibility.Accessible | | __iter__(self) | Iterator that yields one accessible child per iteration. If an exception is | encountered, None is yielded instead. | | @return: A child accessible | @rtype: Accessibility.Accessible | | __len__(self) | Thin wrapper around childCount. | | @return: Number of child accessibles | @rtype: integer | | __nonzero__(self) | @return: True, always | @rtype: boolean | | __str__(self) | Gets a human readable representation of the accessible. | | @return: Role and name information for the accessible | @rtype: string | | getApplication(self) | Gets the most-parent accessible (the application) of this | accessible. Tries using the getApplication method introduced in | AT-SPI 1.7.0 first before resorting to traversing parent links. | | @warning: Cycles involving more than the previously traversed accessible | are not detected by this code. | @return: Application object | @rtype: Accessibility.Application | | getAttributes = _inner(self, *args, **kwargs) | | getChildAtIndex = _inner(self, *args, **kwargs) | | getIndexInParent(self) | Gets the index of this accessible in its parent. Uses the implementation of | this method provided by the Accessibility.Accessible object, but checks the | bound of the value to ensure it is not outside the range of childCount | reported by this accessible's parent. | | @return: Index of this accessible in its parent | @rtype: integer | | getLocalizedRoleName = _inner(self, *args, **kwargs) | | getRelationSet = _inner(self, *args, **kwargs) | | getRole(self) | Gets the role of the accessible from the cache if it is | available, otherwise, fetches it remotely. | | @return: Role of the accessible | @rtype: Accessibility.Role | | getRoleName(self) | Gets the unlocalized role name of the accessible from the cache if it is | available, otherwise, fetches it remotely. | | @return: Role name of the accessible | @rtype: string | | getState = _inner(self, *args, **kwargs) | | isEqual = _inner(self, *args, **kwargs) | | queryAccessible(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryAction(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryApplication(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryCollection(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryComponent(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryDesktop(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryDocument(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryEditableText(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryHyperlink(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryHypertext(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryImage(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryMatchRule(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryRegistry(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | querySelection(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryStreamableContent(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryTable(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryText(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryValue(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | unimplemented = _inner(self, *args, **kwargs) | | ---------------------------------------------------------------------- | Static methods defined here: | | __new__(cls) | Creates a new class mimicking the one requested, but with extra named | defined in __slots__. The _cache attribute is used internally for interface | caching. The user_data field may be populated with whatever data structure | a client wishes to use. Neither is set to a default value by default. | | Note that we can't simply mix __slots__ into this class because __slots__ | has an effect only at class creation time. | | We also do not completely obliterate __slots__ to allow __dict__ to be | instantiated as normal as reducing the initialization and memory overhead | of the millions of accessible objects that are created is a good thing for | many clients. | | @param cls: Accessibility object class | @type cls: class | @return: Instance of the new class | @rtype: object | | ---------------------------------------------------------------------- | Data descriptors defined here: | | childCount | | description | Gets the description of the accessible from the cache if it is available, | otherwise, fetches it remotely. | | @return: Description of the accessible | @rtype: string | | name | Gets the name of the accessible from the cache if it is available, | otherwise, fetches it remotely. | | @return: Name of the accessible | @rtype: string | | parent | Gets the parent of the accessible from the cache if it is available, | otherwise, fetches it remotely. | | @return: Parent of the accessible | @rtype: Accessibility.Accessible | | user_data | Get user_data from global dictionay fo this accessible. | | @return: Any data the user assigned, or None. | @rtype: object | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) class Action(Bonobo.Unknown) | Method resolution order: | Action | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | doAction(...) | doAction(index) -> 'IDL:omg.org/CORBA/boolean:1.0' | | getDescription(...) | getDescription(index) -> 'IDL:omg.org/CORBA/string:1.0' | | getKeyBinding(...) | getKeyBinding(index) -> 'IDL:omg.org/CORBA/string:1.0' | | getName(...) | getName(index) -> 'IDL:omg.org/CORBA/string:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data descriptors defined here: | | nActions | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Application(Accessible) | Method resolution order: | Application | Accessible | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | getLocale = _inner(self, *args, **kwargs) | | pause = _inner(self, *args, **kwargs) | | registerObjectEventListener = _inner(self, *args, **kwargs) | | registerToolkitEventListener = _inner(self, *args, **kwargs) | | resume = _inner(self, *args, **kwargs) | | unImplemented2_ = _inner(self, *args, **kwargs) | | unImplemented3_ = _inner(self, *args, **kwargs) | | unImplemented_ = _inner(self, *args, **kwargs) | | ---------------------------------------------------------------------- | Data descriptors defined here: | | id | | toolkitName | | version | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Accessible: | | __del__(self) | Decrements the reference count on the accessible object when there are no | Python references to this object. This provides automatic reference | counting for AT-SPI objects. Also removes this object from the cache if | we're caching properties. | | __getitem__(self, index) | Thin wrapper around getChildAtIndex. | | @param index: Index of desired child | @type index: integer | @return: Accessible child | @rtype: Accessibility.Accessible | | __iter__(self) | Iterator that yields one accessible child per iteration. If an exception is | encountered, None is yielded instead. | | @return: A child accessible | @rtype: Accessibility.Accessible | | __len__(self) | Thin wrapper around childCount. | | @return: Number of child accessibles | @rtype: integer | | __nonzero__(self) | @return: True, always | @rtype: boolean | | __str__(self) | Gets a human readable representation of the accessible. | | @return: Role and name information for the accessible | @rtype: string | | getApplication(self) | Gets the most-parent accessible (the application) of this | accessible. Tries using the getApplication method introduced in | AT-SPI 1.7.0 first before resorting to traversing parent links. | | @warning: Cycles involving more than the previously traversed accessible | are not detected by this code. | @return: Application object | @rtype: Accessibility.Application | | getAttributes = _inner(self, *args, **kwargs) | | getChildAtIndex = _inner(self, *args, **kwargs) | | getIndexInParent(self) | Gets the index of this accessible in its parent. Uses the implementation of | this method provided by the Accessibility.Accessible object, but checks the | bound of the value to ensure it is not outside the range of childCount | reported by this accessible's parent. | | @return: Index of this accessible in its parent | @rtype: integer | | getLocalizedRoleName = _inner(self, *args, **kwargs) | | getRelationSet = _inner(self, *args, **kwargs) | | getRole(self) | Gets the role of the accessible from the cache if it is | available, otherwise, fetches it remotely. | | @return: Role of the accessible | @rtype: Accessibility.Role | | getRoleName(self) | Gets the unlocalized role name of the accessible from the cache if it is | available, otherwise, fetches it remotely. | | @return: Role name of the accessible | @rtype: string | | getState = _inner(self, *args, **kwargs) | | isEqual = _inner(self, *args, **kwargs) | | queryAccessible(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryAction(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryApplication(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryCollection(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryComponent(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryDesktop(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryDocument(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryEditableText(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryHyperlink(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryHypertext(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryImage(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryMatchRule(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryRegistry(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | querySelection(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryStreamableContent(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryTable(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryText(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryValue(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | unimplemented = _inner(self, *args, **kwargs) | | ---------------------------------------------------------------------- | Static methods inherited from Accessible: | | __new__(cls) | Creates a new class mimicking the one requested, but with extra named | defined in __slots__. The _cache attribute is used internally for interface | caching. The user_data field may be populated with whatever data structure | a client wishes to use. Neither is set to a default value by default. | | Note that we can't simply mix __slots__ into this class because __slots__ | has an effect only at class creation time. | | We also do not completely obliterate __slots__ to allow __dict__ to be | instantiated as normal as reducing the initialization and memory overhead | of the millions of accessible objects that are created is a good thing for | many clients. | | @param cls: Accessibility object class | @type cls: class | @return: Instance of the new class | @rtype: object | | ---------------------------------------------------------------------- | Data descriptors inherited from Accessible: | | childCount | | description | Gets the description of the accessible from the cache if it is available, | otherwise, fetches it remotely. | | @return: Description of the accessible | @rtype: string | | name | Gets the name of the accessible from the cache if it is available, | otherwise, fetches it remotely. | | @return: Name of the accessible | @rtype: string | | parent | Gets the parent of the accessible from the cache if it is available, | otherwise, fetches it remotely. | | @return: Parent of the accessible | @rtype: Accessibility.Accessible | | user_data | Get user_data from global dictionay fo this accessible. | | @return: Any data the user assigned, or None. | @rtype: object | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) class BoundingBox(CORBA.Struct) | Method resolution order: | BoundingBox | CORBA.Struct | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Struct: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Struct: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Collection(Bonobo.Unknown) | Method resolution order: | Collection | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | createMatchRule(...) | createMatchRule(states, statematchtype, attributes, attributematchtype, roles, rolematchtype, interfaces, interfacematchtype, invert) -> 'IDL:Accessibility/MatchRule:1.0' | | freeMatchRule(...) | freeMatchRule(rule) -> 'IDL:omg.org/CORBA/void:1.0' | | getActiveDescendant(...) | getActiveDescendant() -> 'IDL:Accessibility/Accessible:1.0' | | getMatches(...) | getMatches(rule, sortby, count, traverse) -> 'IDL:Accessibility/AccessibleSet:1.0' | | getMatchesFrom(...) | getMatchesFrom(current_object, rule, sortby, tree, count, traverse) -> 'IDL:Accessibility/AccessibleSet:1.0' | | getMatchesTo(...) | getMatchesTo(current_object, rule, sortby, tree, recurse, count, traverse) -> 'IDL:Accessibility/AccessibleSet:1.0' | | isAncestorOf(...) | isAncestorOf(object) -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | MATCH_ALL = MATCH_ALL | | MATCH_ANY = MATCH_ANY | | MATCH_EMPTY = MATCH_EMPTY | | MATCH_INVALID = MATCH_INVALID | | MATCH_LAST_DEFINED = MATCH_LAST_DEFINED | | MATCH_NONE = MATCH_NONE | | MatchType = | | | SORT_ORDER_CANONICAL = SORT_ORDER_CANONICAL | | SORT_ORDER_FLOW = SORT_ORDER_FLOW | | SORT_ORDER_INVALID = SORT_ORDER_INVALID | | SORT_ORDER_LAST_DEFINED = SORT_ORDER_LAST_DEFINED | | SORT_ORDER_REVERSE_CANONICAL = SORT_ORDER_REVERSE_CANONICAL | | SORT_ORDER_REVERSE_FLOW = SORT_ORDER_REVERSE_FLOW | | SORT_ORDER_REVERSE_TAB = SORT_ORDER_REVERSE_TAB | | SORT_ORDER_TAB = SORT_ORDER_TAB | | SortOrder = | | | TREE_INORDER = TREE_INORDER | | TREE_LAST_DEFINED = TREE_LAST_DEFINED | | TREE_RESTRICT_CHILDREN = TREE_RESTRICT_CHILDREN | | TREE_RESTRICT_SIBLING = TREE_RESTRICT_SIBLING | | TreeTraversalType = | | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Command(CORBA.Struct) | Method resolution order: | Command | CORBA.Struct | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Struct: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Struct: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class CommandListener(CORBA.Object) | Method resolution order: | CommandListener | CORBA.Object | __builtin__.object | | Methods defined here: | | notifyCommands(...) | notifyCommands(commands) -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Component(Bonobo.Unknown) | Method resolution order: | Component | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | contains(...) | contains(x, y, coord_type) -> 'IDL:omg.org/CORBA/boolean:1.0' | | deregisterFocusHandler(...) | deregisterFocusHandler(handler) -> 'IDL:omg.org/CORBA/void:1.0' | | getAccessibleAtPoint(...) | getAccessibleAtPoint(x, y, coord_type) -> 'IDL:Accessibility/Accessible:1.0' | | getAlpha(...) | getAlpha() -> 'IDL:omg.org/CORBA/double:1.0' | | getExtents(...) | getExtents(coord_type) -> 'IDL:Accessibility/BoundingBox:1.0' | | getLayer(...) | getLayer() -> 'IDL:Accessibility/ComponentLayer:1.0' | | getMDIZOrder(...) | getMDIZOrder() -> 'IDL:omg.org/CORBA/short:1.0' | | getPosition(...) | getPosition(coord_type) -> 'IDL:omg.org/CORBA/void:1.0', x, y | | getSize(...) | getSize() -> 'IDL:omg.org/CORBA/void:1.0', width, height | | grabFocus(...) | grabFocus() -> 'IDL:omg.org/CORBA/boolean:1.0' | | registerFocusHandler(...) | registerFocusHandler(handler) -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class ComponentLayer(CORBA.Enum) | Method resolution order: | ComponentLayer | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (LAYER_INVALID, LAYER_BACKGROUND, LAYER_CANVAS, LAYE... | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class ContentStream(Bonobo.Unknown) | Method resolution order: | ContentStream | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | close(...) | close() -> 'IDL:omg.org/CORBA/void:1.0' | | read(...) | read(count) -> 'IDL:omg.org/CORBA/long:1.0', buffer | | seek(...) | seek(offset, whence) -> 'IDL:omg.org/CORBA/long:1.0' | | unimplemented(...) | unimplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unimplemented2(...) | unimplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | IOError = | | | NoPermission = | | | NotSupported = | | | SEEK_CURRENT = SEEK_CURRENT | | SEEK_END = SEEK_END | | SEEK_SET = SEEK_SET | | SeekType = | | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Desktop(Accessible) | Method resolution order: | Desktop | Accessible | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | unImplemented2_ = _inner(self, *args, **kwargs) | | unImplemented3_ = _inner(self, *args, **kwargs) | | unImplemented4_ = _inner(self, *args, **kwargs) | | unImplemented_ = _inner(self, *args, **kwargs) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Accessible: | | __del__(self) | Decrements the reference count on the accessible object when there are no | Python references to this object. This provides automatic reference | counting for AT-SPI objects. Also removes this object from the cache if | we're caching properties. | | __getitem__(self, index) | Thin wrapper around getChildAtIndex. | | @param index: Index of desired child | @type index: integer | @return: Accessible child | @rtype: Accessibility.Accessible | | __iter__(self) | Iterator that yields one accessible child per iteration. If an exception is | encountered, None is yielded instead. | | @return: A child accessible | @rtype: Accessibility.Accessible | | __len__(self) | Thin wrapper around childCount. | | @return: Number of child accessibles | @rtype: integer | | __nonzero__(self) | @return: True, always | @rtype: boolean | | __str__(self) | Gets a human readable representation of the accessible. | | @return: Role and name information for the accessible | @rtype: string | | getApplication(self) | Gets the most-parent accessible (the application) of this | accessible. Tries using the getApplication method introduced in | AT-SPI 1.7.0 first before resorting to traversing parent links. | | @warning: Cycles involving more than the previously traversed accessible | are not detected by this code. | @return: Application object | @rtype: Accessibility.Application | | getAttributes = _inner(self, *args, **kwargs) | | getChildAtIndex = _inner(self, *args, **kwargs) | | getIndexInParent(self) | Gets the index of this accessible in its parent. Uses the implementation of | this method provided by the Accessibility.Accessible object, but checks the | bound of the value to ensure it is not outside the range of childCount | reported by this accessible's parent. | | @return: Index of this accessible in its parent | @rtype: integer | | getLocalizedRoleName = _inner(self, *args, **kwargs) | | getRelationSet = _inner(self, *args, **kwargs) | | getRole(self) | Gets the role of the accessible from the cache if it is | available, otherwise, fetches it remotely. | | @return: Role of the accessible | @rtype: Accessibility.Role | | getRoleName(self) | Gets the unlocalized role name of the accessible from the cache if it is | available, otherwise, fetches it remotely. | | @return: Role name of the accessible | @rtype: string | | getState = _inner(self, *args, **kwargs) | | isEqual = _inner(self, *args, **kwargs) | | queryAccessible(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryAction(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryApplication(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryCollection(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryComponent(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryDesktop(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryDocument(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryEditableText(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryHyperlink(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryHypertext(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryImage(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryMatchRule(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryRegistry(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | querySelection(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryStreamableContent(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryTable(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryText(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | queryValue(self) | Queries an object for another interface. | | @return: An object with the desired interface | @rtype: object | @raise NotImplementedError: When the desired interface is not supported | | unimplemented = _inner(self, *args, **kwargs) | | ---------------------------------------------------------------------- | Static methods inherited from Accessible: | | __new__(cls) | Creates a new class mimicking the one requested, but with extra named | defined in __slots__. The _cache attribute is used internally for interface | caching. The user_data field may be populated with whatever data structure | a client wishes to use. Neither is set to a default value by default. | | Note that we can't simply mix __slots__ into this class because __slots__ | has an effect only at class creation time. | | We also do not completely obliterate __slots__ to allow __dict__ to be | instantiated as normal as reducing the initialization and memory overhead | of the millions of accessible objects that are created is a good thing for | many clients. | | @param cls: Accessibility object class | @type cls: class | @return: Instance of the new class | @rtype: object | | ---------------------------------------------------------------------- | Data descriptors inherited from Accessible: | | childCount | | description | Gets the description of the accessible from the cache if it is available, | otherwise, fetches it remotely. | | @return: Description of the accessible | @rtype: string | | name | Gets the name of the accessible from the cache if it is available, | otherwise, fetches it remotely. | | @return: Name of the accessible | @rtype: string | | parent | Gets the parent of the accessible from the cache if it is available, | otherwise, fetches it remotely. | | @return: Parent of the accessible | @rtype: Accessibility.Accessible | | user_data | Get user_data from global dictionay fo this accessible. | | @return: Any data the user assigned, or None. | @rtype: object | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) class DeviceEvent(CORBA.Struct) | Method resolution order: | DeviceEvent | CORBA.Struct | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Struct: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Struct: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class DeviceEventController(Bonobo.Unknown) | Method resolution order: | DeviceEventController | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | deregisterDeviceEventListener(...) | deregisterDeviceEventListener(listener, typeseq) -> 'IDL:omg.org/CORBA/void:1.0' | | deregisterKeystrokeListener(...) | deregisterKeystrokeListener(listener, keys, mask, type) -> 'IDL:omg.org/CORBA/void:1.0' | | generateKeyboardEvent(...) | generateKeyboardEvent(keycode, keystring, type) -> 'IDL:omg.org/CORBA/void:1.0' | | generateMouseEvent(...) | generateMouseEvent(x, y, eventName) -> 'IDL:omg.org/CORBA/void:1.0' | | notifyListenersAsync(...) | notifyListenersAsync(event) -> 'IDL:omg.org/CORBA/void:1.0' | | notifyListenersSync(...) | notifyListenersSync(event) -> 'IDL:omg.org/CORBA/boolean:1.0' | | registerDeviceEventListener(...) | registerDeviceEventListener(listener, typeseq) -> 'IDL:omg.org/CORBA/boolean:1.0' | | registerKeystrokeListener(...) | registerKeystrokeListener(listener, keys, mask, type, mode) -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class DeviceEventListener(Bonobo.Unknown) | Method resolution order: | DeviceEventListener | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | notifyEvent(...) | notifyEvent(event) -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented_2_(...) | unImplemented_2_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented_3_(...) | unImplemented_3_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented_4_(...) | unImplemented_4_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented_5_(...) | unImplemented_5_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented_6_(...) | unImplemented_6_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented__(...) | unImplemented__() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Document(Bonobo.Unknown) | Method resolution order: | Document | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | getAttributeValue = _inner(self, *args, **kwargs) | | getAttributes = _inner(self, *args, **kwargs) | | getLocale = _inner(self, *args, **kwargs) | | unImplemented2_ = _inner(self, *args, **kwargs) | | unImplemented3_ = _inner(self, *args, **kwargs) | | unImplemented4_ = _inner(self, *args, **kwargs) | | unImplemented_ = _inner(self, *args, **kwargs) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class EditableText(Text) | Method resolution order: | EditableText | Text | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | copyText = _inner(self, *args, **kwargs) | | cutText = _inner(self, *args, **kwargs) | | deleteText = _inner(self, *args, **kwargs) | | insertText = _inner(self, *args, **kwargs) | | pasteText = _inner(self, *args, **kwargs) | | setAttributes = _inner(self, *args, **kwargs) | | setTextContents = _inner(self, *args, **kwargs) | | unImplemented10 = _inner(self, *args, **kwargs) | | unImplemented11 = _inner(self, *args, **kwargs) | | unImplemented12 = _inner(self, *args, **kwargs) | | unImplemented5 = _inner(self, *args, **kwargs) | | unImplemented6 = _inner(self, *args, **kwargs) | | unImplemented9 = _inner(self, *args, **kwargs) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Text: | | addSelection(...) | addSelection(startOffset, endOffset) -> 'IDL:omg.org/CORBA/boolean:1.0' | | getAttributeRun(...) | getAttributeRun(offset, includeDefaults) -> 'IDL:Accessibility/AttributeSet:1.0', startOffset, endOffset | | getAttributeValue(...) | getAttributeValue(offset, attributeName) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset, defined | | getAttributes(...) | getAttributes(offset) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset | | getBoundedRanges(...) | getBoundedRanges(x, y, width, height, coordType, xClipType, yClipType) -> 'IDL:Accessibility/Text/RangeList:1.0' | | getCharacterAtOffset(...) | getCharacterAtOffset(offset) -> 'IDL:omg.org/CORBA/unsigned_long:1.0' | | getCharacterExtents(...) | getCharacterExtents(offset, coordType) -> 'IDL:omg.org/CORBA/void:1.0', x, y, width, height | | getDefaultAttributeSet(...) | getDefaultAttributeSet() -> 'IDL:Accessibility/AttributeSet:1.0' | | getDefaultAttributes(...) | getDefaultAttributes() -> 'IDL:omg.org/CORBA/string:1.0' | | getNSelections(...) | getNSelections() -> 'IDL:omg.org/CORBA/long:1.0' | | getOffsetAtPoint(...) | getOffsetAtPoint(x, y, coordType) -> 'IDL:omg.org/CORBA/long:1.0' | | getRangeExtents(...) | getRangeExtents(startOffset, endOffset, coordType) -> 'IDL:omg.org/CORBA/void:1.0', x, y, width, height | | getSelection(...) | getSelection(selectionNum) -> 'IDL:omg.org/CORBA/void:1.0', startOffset, endOffset | | getText(...) | getText(startOffset, endOffset) -> 'IDL:omg.org/CORBA/string:1.0' | | getTextAfterOffset(...) | getTextAfterOffset(offset, type) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset | | getTextAtOffset(...) | getTextAtOffset(offset, type) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset | | getTextBeforeOffset(...) | getTextBeforeOffset(offset, type) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset | | removeSelection(...) | removeSelection(selectionNum) -> 'IDL:omg.org/CORBA/boolean:1.0' | | setCaretOffset(...) | setCaretOffset(offset) -> 'IDL:omg.org/CORBA/boolean:1.0' | | setSelection(...) | setSelection(selectionNum, startOffset, endOffset) -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data descriptors inherited from Text: | | caretOffset | | characterCount | | ---------------------------------------------------------------------- | Data and other attributes inherited from Text: | | Range = | | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Event(CORBA.Struct) | Method resolution order: | Event | CORBA.Struct | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Struct: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Struct: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class EventDetails(CORBA.Struct) | Method resolution order: | EventDetails | CORBA.Struct | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Struct: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Struct: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class EventListener(Bonobo.Unknown) | Method resolution order: | EventListener | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | notifyEvent(...) | notifyEvent(e) -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2_(...) | unImplemented2_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3_(...) | unImplemented3_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4_(...) | unImplemented4_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented_(...) | unImplemented_() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class EventListenerMode(CORBA.Struct) | Method resolution order: | EventListenerMode | CORBA.Struct | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class EventType(CORBA.Enum) | Method resolution order: | EventType | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (KEY_PRESSED_EVENT, KEY_RELEASED_EVENT, BUTTON_PRESS... | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class Hyperlink(Bonobo.Unknown) | Method resolution order: | Hyperlink | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | getObject(...) | getObject(i) -> 'IDL:Accessibility/Accessible:1.0' | | getURI(...) | getURI(i) -> 'IDL:omg.org/CORBA/string:1.0' | | isValid(...) | isValid() -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data descriptors defined here: | | endIndex | | nAnchors | | startIndex | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Hypertext(Bonobo.Unknown) | Method resolution order: | Hypertext | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | getLink(...) | getLink(linkIndex) -> 'IDL:Accessibility/Hyperlink:1.0' | | getLinkIndex(...) | getLinkIndex(characterIndex) -> 'IDL:omg.org/CORBA/long:1.0' | | getNLinks(...) | getNLinks() -> 'IDL:omg.org/CORBA/long:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Image(Bonobo.Unknown) | Method resolution order: | Image | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | getImageExtents(...) | getImageExtents(coordType) -> 'IDL:Accessibility/BoundingBox:1.0' | | getImagePosition(...) | getImagePosition(coordType) -> 'IDL:omg.org/CORBA/void:1.0', x, y | | getImageSize(...) | getImageSize() -> 'IDL:omg.org/CORBA/void:1.0', width, height | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data descriptors defined here: | | imageDescription | | imageLocale | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class KeyDefinition(CORBA.Struct) | Method resolution order: | KeyDefinition | CORBA.Struct | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Struct: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Struct: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class KeyEventType(CORBA.Enum) | Method resolution order: | KeyEventType | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (KEY_PRESSED, KEY_RELEASED) | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class KeySynthType(CORBA.Enum) | Method resolution order: | KeySynthType | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (KEY_PRESS, KEY_RELEASE, KEY_PRESSRELEASE, KEY_SYM, ... | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class LOCALE_TYPE(CORBA.Enum) | Method resolution order: | LOCALE_TYPE | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (LOCALE_TYPE_MESSAGES, LOCALE_TYPE_COLLATE, LOCALE_T... | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class LoginHelper(Bonobo.Unknown) | Method resolution order: | LoginHelper | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | getDeviceReqs(...) | getDeviceReqs() -> 'IDL:Accessibility/LoginHelper/DeviceReqList:1.0' | | getRaiseWindows(...) | getRaiseWindows() -> 'IDL:Accessibility/LoginHelper/WindowList:1.0' | | setSafe(...) | setSafe(safe_mode) -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | AUDIO_IN = AUDIO_IN | | AUDIO_OUT = AUDIO_OUT | | CORE_KEYBOARD = CORE_KEYBOARD | | CORE_POINTER = CORE_POINTER | | DeviceReq = | | | EXT_INPUT = EXT_INPUT | | GUI_EVENTS = GUI_EVENTS | | LOCALHOST = LOCALHOST | | NETWORK = NETWORK | | POST_WINDOWS = POST_WINDOWS | | SERIAL_IN = SERIAL_IN | | SERIAL_OUT = SERIAL_OUT | | WindowInfo = | | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class MatchRule(CORBA.Object) | Method resolution order: | MatchRule | CORBA.Object | __builtin__.object | | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class ModifierType(CORBA.Enum) | Method resolution order: | ModifierType | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (MODIFIER_SHIFT, MODIFIER_SHIFTLOCK, MODIFIER_CONTRO... | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class Registry(EventListener) | Method resolution order: | Registry | EventListener | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | deregisterApplication = _inner(self, *args, **kwargs) | | deregisterGlobalEventListener = _inner(self, *args, **kwargs) | | deregisterGlobalEventListenerAll = _inner(self, *args, **kwargs) | | getDesktop = _inner(self, *args, **kwargs) | | getDesktopCount = _inner(self, *args, **kwargs) | | getDesktopList = _inner(self, *args, **kwargs) | | getDeviceEventController = _inner(self, *args, **kwargs) | | registerApplication = _inner(self, *args, **kwargs) | | registerGlobalEventListener = _inner(self, *args, **kwargs) | | unImplemented = _inner(self, *args, **kwargs) | | unImplemented2 = _inner(self, *args, **kwargs) | | unImplemented3 = _inner(self, *args, **kwargs) | | unImplemented4 = _inner(self, *args, **kwargs) | | unImplemented5 = _inner(self, *args, **kwargs) | | unImplemented6 = _inner(self, *args, **kwargs) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from EventListener: | | notifyEvent(...) | notifyEvent(e) -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2_(...) | unImplemented2_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3_(...) | unImplemented3_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4_(...) | unImplemented4_() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented_(...) | unImplemented_() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Relation(Bonobo.Unknown) | Method resolution order: | Relation | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | __del__(self) | Unrefence the instance when Python GCs it. Why do we need this twice? | | getNTargets(...) | getNTargets() -> 'IDL:omg.org/CORBA/short:1.0' | | getRelationType(...) | getRelationType() -> 'IDL:Accessibility/RelationType:1.0' | | getRelationTypeName(...) | getRelationTypeName() -> 'IDL:omg.org/CORBA/string:1.0' | | getTarget(self, index) | Overrides the regular getTarget to return Accessibility.Accessible | objects. | | @return: The 'nth' target of this Relation. | @rtype: Accessibility.Accessible | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class RelationType(CORBA.Enum) | Method resolution order: | RelationType | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (RELATION_NULL, RELATION_LABEL_FOR, RELATION_LABELLE... | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class Role(CORBA.Enum) | Method resolution order: | Role | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (ROLE_INVALID, ROLE_ACCELERATOR_LABEL, ROLE_ALERT, R... | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class Selection(Bonobo.Unknown) | Method resolution order: | Selection | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | clearSelection(...) | clearSelection() -> 'IDL:omg.org/CORBA/boolean:1.0' | | deselectChild(...) | deselectChild(childIndex) -> 'IDL:omg.org/CORBA/boolean:1.0' | | deselectSelectedChild(...) | deselectSelectedChild(selectedChildIndex) -> 'IDL:omg.org/CORBA/boolean:1.0' | | getSelectedChild(...) | getSelectedChild(selectedChildIndex) -> 'IDL:Accessibility/Accessible:1.0' | | isChildSelected(...) | isChildSelected(childIndex) -> 'IDL:omg.org/CORBA/boolean:1.0' | | selectAll(...) | selectAll() -> 'IDL:omg.org/CORBA/boolean:1.0' | | selectChild(...) | selectChild(childIndex) -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data descriptors defined here: | | nSelectedChildren | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Selector(Bonobo.Unknown) | Method resolution order: | Selector | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | activateCommand(...) | activateCommand(cmd) -> 'IDL:Accessibility/Selector/CommandResult:1.0' | | deregisterChangeListener(...) | deregisterChangeListener(listener) -> 'IDL:omg.org/CORBA/void:1.0' | | getCommands(...) | getCommands() -> 'IDL:Accessibility/CommandList:1.0' | | refreshCommands(...) | refreshCommands() -> 'IDL:omg.org/CORBA/boolean:1.0' | | registerChangeListener(...) | registerChangeListener(listener) -> 'IDL:omg.org/CORBA/void:1.0' | | replaceCommands(...) | replaceCommands(commands) -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data descriptors defined here: | | supportsReplace | supportsReplace: IDL:omg.org/CORBA/boolean:1.0 (readonly) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | COMMAND_RESULT_FAILED = COMMAND_RESULT_FAILED | | COMMAND_RESULT_INVALID = COMMAND_RESULT_INVALID | | COMMAND_RESULT_LAST_DEFINED = COMMAND_RESULT_LAST_DEFINED | | COMMAND_RESULT_OBSOLETE = COMMAND_RESULT_OBSOLETE | | COMMAND_RESULT_SUCCESS = COMMAND_RESULT_SUCCESS | | CommandResult = | | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class StateSet(Bonobo.Unknown) | Method resolution order: | StateSet | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | __del__(self) | Unrefence the instance when Python GCs it. Why do we need this twice? | | add(...) | add(state) -> 'IDL:omg.org/CORBA/void:1.0' | | compare(...) | compare(compareState) -> 'IDL:Accessibility/StateSet:1.0' | | contains(...) | contains(state) -> 'IDL:omg.org/CORBA/boolean:1.0' | | equals(...) | equals(tarStateSet) -> 'IDL:omg.org/CORBA/boolean:1.0' | | getStates(...) | getStates() -> 'IDL:Accessibility/StateSeq:1.0' | | isEmpty(...) | isEmpty() -> 'IDL:omg.org/CORBA/boolean:1.0' | | remove(...) | remove(state) -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class StateType(CORBA.Enum) | Method resolution order: | StateType | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (STATE_INVALID, STATE_ACTIVE, STATE_ARMED, STATE_BUS... | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class StreamableContent(Bonobo.Unknown) | Method resolution order: | StreamableContent | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | getContent = _inner(self, *args, **kwargs) | | getContentTypes = _inner(self, *args, **kwargs) | | getStream = _inner(self, *args, **kwargs) | | getURI = _inner(self, *args, **kwargs) | | unImplemented = _inner(self, *args, **kwargs) | | unImplemented2 = _inner(self, *args, **kwargs) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class TEXT_BOUNDARY_TYPE(CORBA.Enum) | Method resolution order: | TEXT_BOUNDARY_TYPE | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (TEXT_BOUNDARY_CHAR, TEXT_BOUNDARY_WORD_START, TEXT_... | | __typecode__ = repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class TEXT_CLIP_TYPE(CORBA.Enum) | Method resolution order: | TEXT_CLIP_TYPE | CORBA.Enum | __builtin__.int | __builtin__.object | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __enum_values__ = (TEXT_CLIP_NONE, TEXT_CLIP_MIN, TEXT_CLIP_MAX, TEXT_... | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Enum: | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Enum: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T | | ---------------------------------------------------------------------- | Methods inherited from __builtin__.int: | | __abs__(...) | x.__abs__() <==> abs(x) | | __add__(...) | x.__add__(y) <==> x+y | | __and__(...) | x.__and__(y) <==> x&y | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __coerce__(...) | x.__coerce__(y) <==> coerce(x, y) | | __div__(...) | x.__div__(y) <==> x/y | | __divmod__(...) | x.__divmod__(y) <==> divmod(x, y) | | __float__(...) | x.__float__() <==> float(x) | | __floordiv__(...) | x.__floordiv__(y) <==> x//y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getnewargs__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __hex__(...) | x.__hex__() <==> hex(x) | | __index__(...) | x[y:z] <==> x[y.__index__():z.__index__()] | | __int__(...) | x.__int__() <==> int(x) | | __invert__(...) | x.__invert__() <==> ~x | | __long__(...) | x.__long__() <==> long(x) | | __lshift__(...) | x.__lshift__(y) <==> x< x%y | | __mul__(...) | x.__mul__(y) <==> x*y | | __neg__(...) | x.__neg__() <==> -x | | __nonzero__(...) | x.__nonzero__() <==> x != 0 | | __oct__(...) | x.__oct__() <==> oct(x) | | __or__(...) | x.__or__(y) <==> x|y | | __pos__(...) | x.__pos__() <==> +x | | __pow__(...) | x.__pow__(y[, z]) <==> pow(x, y[, z]) | | __radd__(...) | x.__radd__(y) <==> y+x | | __rand__(...) | x.__rand__(y) <==> y&x | | __rdiv__(...) | x.__rdiv__(y) <==> y/x | | __rdivmod__(...) | x.__rdivmod__(y) <==> divmod(y, x) | | __rfloordiv__(...) | x.__rfloordiv__(y) <==> y//x | | __rlshift__(...) | x.__rlshift__(y) <==> y< y%x | | __rmul__(...) | x.__rmul__(y) <==> y*x | | __ror__(...) | x.__ror__(y) <==> y|x | | __rpow__(...) | y.__rpow__(x[, z]) <==> pow(x, y[, z]) | | __rrshift__(...) | x.__rrshift__(y) <==> y>>x | | __rshift__(...) | x.__rshift__(y) <==> x>>y | | __rsub__(...) | x.__rsub__(y) <==> y-x | | __rtruediv__(...) | x.__rtruediv__(y) <==> y/x | | __rxor__(...) | x.__rxor__(y) <==> y^x | | __str__(...) | x.__str__() <==> str(x) | | __sub__(...) | x.__sub__(y) <==> x-y | | __truediv__(...) | x.__truediv__(y) <==> x/y | | __xor__(...) | x.__xor__(y) <==> x^y class Table(Bonobo.Unknown) | Method resolution order: | Table | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | addColumnSelection(...) | addColumnSelection(column) -> 'IDL:omg.org/CORBA/boolean:1.0' | | addRowSelection(...) | addRowSelection(row) -> 'IDL:omg.org/CORBA/boolean:1.0' | | getAccessibleAt(...) | getAccessibleAt(row, column) -> 'IDL:Accessibility/Accessible:1.0' | | getColumnAtIndex(...) | getColumnAtIndex(index) -> 'IDL:omg.org/CORBA/long:1.0' | | getColumnDescription(...) | getColumnDescription(column) -> 'IDL:omg.org/CORBA/string:1.0' | | getColumnExtentAt(...) | getColumnExtentAt(row, column) -> 'IDL:omg.org/CORBA/long:1.0' | | getColumnHeader(...) | getColumnHeader(column) -> 'IDL:Accessibility/Accessible:1.0' | | getIndexAt(...) | getIndexAt(row, column) -> 'IDL:omg.org/CORBA/long:1.0' | | getRowAtIndex(...) | getRowAtIndex(index) -> 'IDL:omg.org/CORBA/long:1.0' | | getRowColumnExtentsAtIndex(...) | getRowColumnExtentsAtIndex(index) -> 'IDL:omg.org/CORBA/boolean:1.0', row, col, row_extents, col_extents, is_selected | | getRowDescription(...) | getRowDescription(row) -> 'IDL:omg.org/CORBA/string:1.0' | | getRowExtentAt(...) | getRowExtentAt(row, column) -> 'IDL:omg.org/CORBA/long:1.0' | | getRowHeader(...) | getRowHeader(row) -> 'IDL:Accessibility/Accessible:1.0' | | getSelectedColumns(...) | getSelectedColumns() -> 'IDL:Accessibility/LongSeq:1.0' | | getSelectedRows(...) | getSelectedRows() -> 'IDL:Accessibility/LongSeq:1.0' | | isColumnSelected(...) | isColumnSelected(column) -> 'IDL:omg.org/CORBA/boolean:1.0' | | isRowSelected(...) | isRowSelected(row) -> 'IDL:omg.org/CORBA/boolean:1.0' | | isSelected(...) | isSelected(row, column) -> 'IDL:omg.org/CORBA/boolean:1.0' | | removeColumnSelection(...) | removeColumnSelection(column) -> 'IDL:omg.org/CORBA/boolean:1.0' | | removeRowSelection(...) | removeRowSelection(row) -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented5(...) | unImplemented5() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented6(...) | unImplemented6() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented7(...) | unImplemented7() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data descriptors defined here: | | caption | | nColumns | | nRows | | nSelectedColumns | | nSelectedRows | | summary | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Text(Bonobo.Unknown) | Method resolution order: | Text | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | addSelection(...) | addSelection(startOffset, endOffset) -> 'IDL:omg.org/CORBA/boolean:1.0' | | getAttributeRun(...) | getAttributeRun(offset, includeDefaults) -> 'IDL:Accessibility/AttributeSet:1.0', startOffset, endOffset | | getAttributeValue(...) | getAttributeValue(offset, attributeName) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset, defined | | getAttributes(...) | getAttributes(offset) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset | | getBoundedRanges(...) | getBoundedRanges(x, y, width, height, coordType, xClipType, yClipType) -> 'IDL:Accessibility/Text/RangeList:1.0' | | getCharacterAtOffset(...) | getCharacterAtOffset(offset) -> 'IDL:omg.org/CORBA/unsigned_long:1.0' | | getCharacterExtents(...) | getCharacterExtents(offset, coordType) -> 'IDL:omg.org/CORBA/void:1.0', x, y, width, height | | getDefaultAttributeSet(...) | getDefaultAttributeSet() -> 'IDL:Accessibility/AttributeSet:1.0' | | getDefaultAttributes(...) | getDefaultAttributes() -> 'IDL:omg.org/CORBA/string:1.0' | | getNSelections(...) | getNSelections() -> 'IDL:omg.org/CORBA/long:1.0' | | getOffsetAtPoint(...) | getOffsetAtPoint(x, y, coordType) -> 'IDL:omg.org/CORBA/long:1.0' | | getRangeExtents(...) | getRangeExtents(startOffset, endOffset, coordType) -> 'IDL:omg.org/CORBA/void:1.0', x, y, width, height | | getSelection(...) | getSelection(selectionNum) -> 'IDL:omg.org/CORBA/void:1.0', startOffset, endOffset | | getText(...) | getText(startOffset, endOffset) -> 'IDL:omg.org/CORBA/string:1.0' | | getTextAfterOffset(...) | getTextAfterOffset(offset, type) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset | | getTextAtOffset(...) | getTextAtOffset(offset, type) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset | | getTextBeforeOffset(...) | getTextBeforeOffset(offset, type) -> 'IDL:omg.org/CORBA/string:1.0', startOffset, endOffset | | removeSelection(...) | removeSelection(selectionNum) -> 'IDL:omg.org/CORBA/boolean:1.0' | | setCaretOffset(...) | setCaretOffset(offset) -> 'IDL:omg.org/CORBA/boolean:1.0' | | setSelection(...) | setSelection(selectionNum, startOffset, endOffset) -> 'IDL:omg.org/CORBA/boolean:1.0' | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data descriptors defined here: | | caretOffset | | characterCount | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | Range = | | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T class Value(Bonobo.Unknown) | Method resolution order: | Value | Bonobo.Unknown | CORBA.Object | __builtin__.object | | Methods defined here: | | unImplemented(...) | unImplemented() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented2(...) | unImplemented2() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented3(...) | unImplemented3() -> 'IDL:omg.org/CORBA/void:1.0' | | unImplemented4(...) | unImplemented4() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Data descriptors defined here: | | currentValue | | maximumValue | | minimumIncrement | | minimumValue | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __typecode__ = | | ---------------------------------------------------------------------- | Methods inherited from Bonobo.Unknown: | | queryInterface(...) | queryInterface(repoid) -> 'IDL:Bonobo/Unknown:1.0' | | ref(...) | ref() -> 'IDL:omg.org/CORBA/void:1.0' | | unref(...) | unref() -> 'IDL:omg.org/CORBA/void:1.0' | | ---------------------------------------------------------------------- | Methods inherited from CORBA.Object: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | ---------------------------------------------------------------------- | Data and other attributes inherited from CORBA.Object: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T DATA BUTTON_PRESSED_EVENT = BUTTON_PRESSED_EVENT BUTTON_RELEASED_EVENT = BUTTON_RELEASED_EVENT KEY_PRESS = KEY_PRESS KEY_PRESSED = KEY_PRESSED KEY_PRESSED_EVENT = KEY_PRESSED_EVENT KEY_PRESSRELEASE = KEY_PRESSRELEASE KEY_RELEASE = KEY_RELEASE KEY_RELEASED = KEY_RELEASED KEY_RELEASED_EVENT = KEY_RELEASED_EVENT KEY_STRING = KEY_STRING KEY_SYM = KEY_SYM LAYER_BACKGROUND = LAYER_BACKGROUND LAYER_CANVAS = LAYER_CANVAS LAYER_INVALID = LAYER_INVALID LAYER_LAST_DEFINED = LAYER_LAST_DEFINED LAYER_MDI = LAYER_MDI LAYER_OVERLAY = LAYER_OVERLAY LAYER_POPUP = LAYER_POPUP LAYER_WIDGET = LAYER_WIDGET LAYER_WINDOW = LAYER_WINDOW LOCALE_TYPE_COLLATE = LOCALE_TYPE_COLLATE LOCALE_TYPE_CTYPE = LOCALE_TYPE_CTYPE LOCALE_TYPE_MESSAGES = LOCALE_TYPE_MESSAGES LOCALE_TYPE_MONETARY = LOCALE_TYPE_MONETARY LOCALE_TYPE_NUMERIC = LOCALE_TYPE_NUMERIC LOCALE_TYPE_TIME = LOCALE_TYPE_TIME MODIFIER_ALT = MODIFIER_ALT MODIFIER_CONTROL = MODIFIER_CONTROL MODIFIER_META = MODIFIER_META MODIFIER_META2 = MODIFIER_META2 MODIFIER_META3 = MODIFIER_META3 MODIFIER_NUMLOCK = MODIFIER_NUMLOCK MODIFIER_SHIFT = MODIFIER_SHIFT MODIFIER_SHIFTLOCK = MODIFIER_SHIFTLOCK RELATION_CONTROLLED_BY = RELATION_CONTROLLED_BY RELATION_CONTROLLER_FOR = RELATION_CONTROLLER_FOR RELATION_DESCRIBED_BY = RELATION_DESCRIBED_BY RELATION_DESCRIPTION_FOR = RELATION_DESCRIPTION_FOR RELATION_EMBEDDED_BY = RELATION_EMBEDDED_BY RELATION_EMBEDS = RELATION_EMBEDS RELATION_EXTENDED = RELATION_EXTENDED RELATION_FLOWS_FROM = RELATION_FLOWS_FROM RELATION_FLOWS_TO = RELATION_FLOWS_TO RELATION_LABELLED_BY = RELATION_LABELLED_BY RELATION_LABEL_FOR = RELATION_LABEL_FOR RELATION_LAST_DEFINED = RELATION_LAST_DEFINED RELATION_MEMBER_OF = RELATION_MEMBER_OF RELATION_NODE_CHILD_OF = RELATION_NODE_CHILD_OF RELATION_NULL = RELATION_NULL RELATION_PARENT_WINDOW_OF = RELATION_PARENT_WINDOW_OF RELATION_POPUP_FOR = RELATION_POPUP_FOR RELATION_SUBWINDOW_OF = RELATION_SUBWINDOW_OF RELATION_TOOLTIP_FOR = RELATION_TOOLTIP_FOR ROLE_ACCELERATOR_LABEL = ROLE_ACCELERATOR_LABEL ROLE_ALERT = ROLE_ALERT ROLE_ANIMATION = ROLE_ANIMATION ROLE_APPLICATION = ROLE_APPLICATION ROLE_ARROW = ROLE_ARROW ROLE_AUTOCOMPLETE = ROLE_AUTOCOMPLETE ROLE_CALENDAR = ROLE_CALENDAR ROLE_CANVAS = ROLE_CANVAS ROLE_CAPTION = ROLE_CAPTION ROLE_CHART = ROLE_CHART ROLE_CHECK_BOX = ROLE_CHECK_BOX ROLE_CHECK_MENU_ITEM = ROLE_CHECK_MENU_ITEM ROLE_COLOR_CHOOSER = ROLE_COLOR_CHOOSER ROLE_COLUMN_HEADER = ROLE_COLUMN_HEADER ROLE_COMBO_BOX = ROLE_COMBO_BOX ROLE_DATE_EDITOR = ROLE_DATE_EDITOR ROLE_DESKTOP_FRAME = ROLE_DESKTOP_FRAME ROLE_DESKTOP_ICON = ROLE_DESKTOP_ICON ROLE_DIAL = ROLE_DIAL ROLE_DIALOG = ROLE_DIALOG ROLE_DIRECTORY_PANE = ROLE_DIRECTORY_PANE ROLE_DOCUMENT_FRAME = ROLE_DOCUMENT_FRAME ROLE_DRAWING_AREA = ROLE_DRAWING_AREA ROLE_EDITBAR = ROLE_EDITBAR ROLE_EMBEDDED = ROLE_EMBEDDED ROLE_ENTRY = ROLE_ENTRY ROLE_EXTENDED = ROLE_EXTENDED ROLE_FILE_CHOOSER = ROLE_FILE_CHOOSER ROLE_FILLER = ROLE_FILLER ROLE_FOCUS_TRAVERSABLE = ROLE_FOCUS_TRAVERSABLE ROLE_FONT_CHOOSER = ROLE_FONT_CHOOSER ROLE_FOOTER = ROLE_FOOTER ROLE_FORM = ROLE_FORM ROLE_FRAME = ROLE_FRAME ROLE_GLASS_PANE = ROLE_GLASS_PANE ROLE_HEADER = ROLE_HEADER ROLE_HEADING = ROLE_HEADING ROLE_HTML_CONTAINER = ROLE_HTML_CONTAINER ROLE_ICON = ROLE_ICON ROLE_IMAGE = ROLE_IMAGE ROLE_INPUT_METHOD_WINDOW = ROLE_INPUT_METHOD_WINDOW ROLE_INTERNAL_FRAME = ROLE_INTERNAL_FRAME ROLE_INVALID = ROLE_INVALID ROLE_LABEL = ROLE_LABEL ROLE_LAST_DEFINED = ROLE_LAST_DEFINED ROLE_LAYERED_PANE = ROLE_LAYERED_PANE ROLE_LINK = ROLE_LINK ROLE_LIST = ROLE_LIST ROLE_LIST_ITEM = ROLE_LIST_ITEM ROLE_MENU = ROLE_MENU ROLE_MENU_BAR = ROLE_MENU_BAR ROLE_MENU_ITEM = ROLE_MENU_ITEM ROLE_OPTION_PANE = ROLE_OPTION_PANE ROLE_PAGE = ROLE_PAGE ROLE_PAGE_TAB = ROLE_PAGE_TAB ROLE_PAGE_TAB_LIST = ROLE_PAGE_TAB_LIST ROLE_PANEL = ROLE_PANEL ROLE_PARAGRAPH = ROLE_PARAGRAPH ROLE_PASSWORD_TEXT = ROLE_PASSWORD_TEXT ROLE_POPUP_MENU = ROLE_POPUP_MENU ROLE_PROGRESS_BAR = ROLE_PROGRESS_BAR ROLE_PUSH_BUTTON = ROLE_PUSH_BUTTON ROLE_RADIO_BUTTON = ROLE_RADIO_BUTTON ROLE_RADIO_MENU_ITEM = ROLE_RADIO_MENU_ITEM ROLE_REDUNDANT_OBJECT = ROLE_REDUNDANT_OBJECT ROLE_ROOT_PANE = ROLE_ROOT_PANE ROLE_ROW_HEADER = ROLE_ROW_HEADER ROLE_RULER = ROLE_RULER ROLE_SCROLL_BAR = ROLE_SCROLL_BAR ROLE_SCROLL_PANE = ROLE_SCROLL_PANE ROLE_SECTION = ROLE_SECTION ROLE_SEPARATOR = ROLE_SEPARATOR ROLE_SLIDER = ROLE_SLIDER ROLE_SPIN_BUTTON = ROLE_SPIN_BUTTON ROLE_SPLIT_PANE = ROLE_SPLIT_PANE ROLE_STATUS_BAR = ROLE_STATUS_BAR ROLE_TABLE = ROLE_TABLE ROLE_TABLE_CELL = ROLE_TABLE_CELL ROLE_TABLE_COLUMN_HEADER = ROLE_TABLE_COLUMN_HEADER ROLE_TABLE_ROW_HEADER = ROLE_TABLE_ROW_HEADER ROLE_TEAROFF_MENU_ITEM = ROLE_TEAROFF_MENU_ITEM ROLE_TERMINAL = ROLE_TERMINAL ROLE_TEXT = ROLE_TEXT ROLE_TOGGLE_BUTTON = ROLE_TOGGLE_BUTTON ROLE_TOOL_BAR = ROLE_TOOL_BAR ROLE_TOOL_TIP = ROLE_TOOL_TIP ROLE_TREE = ROLE_TREE ROLE_TREE_TABLE = ROLE_TREE_TABLE ROLE_UNKNOWN = ROLE_UNKNOWN ROLE_VIEWPORT = ROLE_VIEWPORT ROLE_WINDOW = ROLE_WINDOW STATE_ACTIVE = STATE_ACTIVE STATE_ANIMATED = STATE_ANIMATED STATE_ARMED = STATE_ARMED STATE_BUSY = STATE_BUSY STATE_CHECKED = STATE_CHECKED STATE_COLLAPSED = STATE_COLLAPSED STATE_DEFUNCT = STATE_DEFUNCT STATE_EDITABLE = STATE_EDITABLE STATE_ENABLED = STATE_ENABLED STATE_EXPANDABLE = STATE_EXPANDABLE STATE_EXPANDED = STATE_EXPANDED STATE_FOCUSABLE = STATE_FOCUSABLE STATE_FOCUSED = STATE_FOCUSED STATE_HAS_TOOLTIP = STATE_HAS_TOOLTIP STATE_HORIZONTAL = STATE_HORIZONTAL STATE_ICONIFIED = STATE_ICONIFIED STATE_INDETERMINATE = STATE_INDETERMINATE STATE_INVALID = STATE_INVALID STATE_INVALID_ENTRY = STATE_INVALID_ENTRY STATE_IS_DEFAULT = STATE_IS_DEFAULT STATE_LAST_DEFINED = STATE_LAST_DEFINED STATE_MANAGES_DESCENDANTS = STATE_MANAGES_DESCENDANTS STATE_MODAL = STATE_MODAL STATE_MULTISELECTABLE = STATE_MULTISELECTABLE STATE_MULTI_LINE = STATE_MULTI_LINE STATE_OPAQUE = STATE_OPAQUE STATE_PRESSED = STATE_PRESSED STATE_REQUIRED = STATE_REQUIRED STATE_RESIZABLE = STATE_RESIZABLE STATE_SELECTABLE = STATE_SELECTABLE STATE_SELECTABLE_TEXT = STATE_SELECTABLE_TEXT STATE_SELECTED = STATE_SELECTED STATE_SENSITIVE = STATE_SENSITIVE STATE_SHOWING = STATE_SHOWING STATE_SINGLE_LINE = STATE_SINGLE_LINE STATE_STALE = STATE_STALE STATE_SUPPORTS_AUTOCOMPLETION = STATE_SUPPORTS_AUTOCOMPLETION STATE_TRANSIENT = STATE_TRANSIENT STATE_TRUNCATED = STATE_TRUNCATED STATE_VERTICAL = STATE_VERTICAL STATE_VISIBLE = STATE_VISIBLE STATE_VISITED = STATE_VISITED TEXT_BOUNDARY_CHAR = TEXT_BOUNDARY_CHAR TEXT_BOUNDARY_LINE_END = TEXT_BOUNDARY_LINE_END TEXT_BOUNDARY_LINE_START = TEXT_BOUNDARY_LINE_START TEXT_BOUNDARY_SENTENCE_END = TEXT_BOUNDARY_SENTENCE_END TEXT_BOUNDARY_SENTENCE_START = TEXT_BOUNDARY_SENTENCE_START TEXT_BOUNDARY_WORD_END = TEXT_BOUNDARY_WORD_END TEXT_BOUNDARY_WORD_START = TEXT_BOUNDARY_WORD_START TEXT_CLIP_BOTH = TEXT_CLIP_BOTH TEXT_CLIP_MAX = TEXT_CLIP_MAX TEXT_CLIP_MIN = TEXT_CLIP_MIN TEXT_CLIP_NONE = TEXT_CLIP_NONE Help on module Accessibility__POA: NAME Accessibility__POA FILE (built-in) no Python documentation found for 'CACHE_EVENTS' no Python documentation found for 'CACHE_INTERFACES' no Python documentation found for 'CACHE_PROPERTIES' no Python documentation found for 'DESKTOP_COORDS' no Python documentation found for 'EVENT_TREE' no Python documentation found for 'KEY_PRESS' no Python documentation found for 'KEY_PRESSED' no Python documentation found for 'KEY_PRESSED_EVENT' no Python documentation found for 'KEY_PRESSRELEASE' no Python documentation found for 'KEY_RELEASE' no Python documentation found for 'KEY_RELEASED' no Python documentation found for 'KEY_RELEASED_EVENT' no Python documentation found for 'KEY_STRING' no Python documentation found for 'KEY_SYM' no Python documentation found for 'LAYER_BACKGROUND' no Python documentation found for 'LAYER_CANVAS' no Python documentation found for 'LAYER_INVALID' no Python documentation found for 'LAYER_LAST_DEFINED' no Python documentation found for 'LAYER_MDI' no Python documentation found for 'LAYER_OVERLAY' no Python documentation found for 'LAYER_POPUP' no Python documentation found for 'LAYER_WIDGET' no Python documentation found for 'LAYER_WINDOW' no Python documentation found for 'LOCALE_TYPE' no Python documentation found for 'LOCALE_TYPE_COLLATE' no Python documentation found for 'LOCALE_TYPE_CTYPE' no Python documentation found for 'LOCALE_TYPE_MESSAGES' no Python documentation found for 'LOCALE_TYPE_MONETARY' no Python documentation found for 'LOCALE_TYPE_NUMERIC' no Python documentation found for 'LOCALE_TYPE_TIME' no Python documentation found for 'MODIFIER_ALT' no Python documentation found for 'MODIFIER_CONTROL' no Python documentation found for 'MODIFIER_META' no Python documentation found for 'MODIFIER_META2' no Python documentation found for 'MODIFIER_META3' no Python documentation found for 'MODIFIER_NUMLOCK' no Python documentation found for 'MODIFIER_SHIFT' no Python documentation found for 'MODIFIER_SHIFTLOCK' no Python documentation found for 'MOUSE_ABS' no Python documentation found for 'MOUSE_B1C' no Python documentation found for 'MOUSE_B1D' no Python documentation found for 'MOUSE_B1P' no Python documentation found for 'MOUSE_B1R' no Python documentation found for 'MOUSE_B2C' no Python documentation found for 'MOUSE_B2D' no Python documentation found for 'MOUSE_B2P' no Python documentation found for 'MOUSE_B2R' no Python documentation found for 'MOUSE_B3C' no Python documentation found for 'MOUSE_B3D' no Python documentation found for 'MOUSE_B3P' no Python documentation found for 'MOUSE_B3R' no Python documentation found for 'MOUSE_REL' Help on module ORBit: NAME ORBit FILE /var/lib/python-support/python2.5/ORBit.so FUNCTIONS load_file(...) load_typelib(...) DATA THREAD_HINT_ALL_AT_IDLE = 6 THREAD_HINT_NONE = 0 THREAD_HINT_ONEWAY_AT_IDLE = 5 THREAD_HINT_ON_CONTEXT = 7 THREAD_HINT_PER_CONNECTION = 4 THREAD_HINT_PER_OBJECT = 1 THREAD_HINT_PER_POA = 3 THREAD_HINT_PER_REQUEST = 2 __version__ = (2, 14, 3) orbit_version = (2, 14, 12) VERSION (2, 14, 3) no Python documentation found for 'REGISTRY_IID' no Python documentation found for 'RELATION_CONTROLLED_BY' no Python documentation found for 'RELATION_CONTROLLER_FOR' no Python documentation found for 'RELATION_DESCRIBED_BY' no Python documentation found for 'RELATION_DESCRIPTION_FOR' no Python documentation found for 'RELATION_EMBEDDED_BY' no Python documentation found for 'RELATION_EMBEDS' no Python documentation found for 'RELATION_EXTENDED' no Python documentation found for 'RELATION_FLOWS_FROM' no Python documentation found for 'RELATION_FLOWS_TO' no Python documentation found for 'RELATION_LABELLED_BY' no Python documentation found for 'RELATION_LABEL_FOR' no Python documentation found for 'RELATION_LAST_DEFINED' no Python documentation found for 'RELATION_MEMBER_OF' no Python documentation found for 'RELATION_NODE_CHILD_OF' no Python documentation found for 'RELATION_NULL' no Python documentation found for 'RELATION_PARENT_WINDOW_OF' no Python documentation found for 'RELATION_POPUP_FOR' no Python documentation found for 'RELATION_SUBWINDOW_OF' no Python documentation found for 'RELATION_TOOLTIP_FOR' no Python documentation found for 'RELATION_VALUE_TO_NAME' no Python documentation found for 'ROLE_ACCELERATOR_LABEL' no Python documentation found for 'ROLE_ALERT' no Python documentation found for 'ROLE_ANIMATION' no Python documentation found for 'ROLE_APPLICATION' no Python documentation found for 'ROLE_ARROW' no Python documentation found for 'ROLE_AUTOCOMPLETE' no Python documentation found for 'ROLE_CALENDAR' no Python documentation found for 'ROLE_CANVAS' no Python documentation found for 'ROLE_CAPTION' no Python documentation found for 'ROLE_CHART' no Python documentation found for 'ROLE_CHECK_BOX' no Python documentation found for 'ROLE_CHECK_MENU_ITEM' no Python documentation found for 'ROLE_COLOR_CHOOSER' no Python documentation found for 'ROLE_COLUMN_HEADER' no Python documentation found for 'ROLE_COMBO_BOX' no Python documentation found for 'ROLE_DATE_EDITOR' no Python documentation found for 'ROLE_DESKTOP_FRAME' no Python documentation found for 'ROLE_DESKTOP_ICON' no Python documentation found for 'ROLE_DIAL' no Python documentation found for 'ROLE_DIALOG' no Python documentation found for 'ROLE_DIRECTORY_PANE' no Python documentation found for 'ROLE_DOCUMENT_FRAME' no Python documentation found for 'ROLE_DRAWING_AREA' no Python documentation found for 'ROLE_EDITBAR' no Python documentation found for 'ROLE_EMBEDDED' no Python documentation found for 'ROLE_ENTRY' no Python documentation found for 'ROLE_EXTENDED' no Python documentation found for 'ROLE_FILE_CHOOSER' no Python documentation found for 'ROLE_FILLER' no Python documentation found for 'ROLE_FOCUS_TRAVERSABLE' no Python documentation found for 'ROLE_FONT_CHOOSER' no Python documentation found for 'ROLE_FOOTER' no Python documentation found for 'ROLE_FORM' no Python documentation found for 'ROLE_FRAME' no Python documentation found for 'ROLE_GLASS_PANE' no Python documentation found for 'ROLE_HEADER' no Python documentation found for 'ROLE_HEADING' no Python documentation found for 'ROLE_HTML_CONTAINER' no Python documentation found for 'ROLE_ICON' no Python documentation found for 'ROLE_IMAGE' no Python documentation found for 'ROLE_INPUT_METHOD_WINDOW' no Python documentation found for 'ROLE_INTERNAL_FRAME' no Python documentation found for 'ROLE_INVALID' no Python documentation found for 'ROLE_LABEL' no Python documentation found for 'ROLE_LAST_DEFINED' no Python documentation found for 'ROLE_LAYERED_PANE' no Python documentation found for 'ROLE_LINK' no Python documentation found for 'ROLE_LIST' no Python documentation found for 'ROLE_LIST_ITEM' no Python documentation found for 'ROLE_MENU' no Python documentation found for 'ROLE_MENU_BAR' no Python documentation found for 'ROLE_MENU_ITEM' no Python documentation found for 'ROLE_OPTION_PANE' no Python documentation found for 'ROLE_PAGE' no Python documentation found for 'ROLE_PAGE_TAB' no Python documentation found for 'ROLE_PAGE_TAB_LIST' no Python documentation found for 'ROLE_PANEL' no Python documentation found for 'ROLE_PARAGRAPH' no Python documentation found for 'ROLE_PASSWORD_TEXT' no Python documentation found for 'ROLE_POPUP_MENU' no Python documentation found for 'ROLE_PROGRESS_BAR' no Python documentation found for 'ROLE_PUSH_BUTTON' no Python documentation found for 'ROLE_RADIO_BUTTON' no Python documentation found for 'ROLE_RADIO_MENU_ITEM' no Python documentation found for 'ROLE_REDUNDANT_OBJECT' no Python documentation found for 'ROLE_ROOT_PANE' no Python documentation found for 'ROLE_ROW_HEADER' no Python documentation found for 'ROLE_RULER' no Python documentation found for 'ROLE_SCROLL_BAR' no Python documentation found for 'ROLE_SCROLL_PANE' no Python documentation found for 'ROLE_SECTION' no Python documentation found for 'ROLE_SEPARATOR' no Python documentation found for 'ROLE_SLIDER' no Python documentation found for 'ROLE_SPIN_BUTTON' no Python documentation found for 'ROLE_SPLIT_PANE' no Python documentation found for 'ROLE_STATUS_BAR' no Python documentation found for 'ROLE_TABLE' no Python documentation found for 'ROLE_TABLE_CELL' no Python documentation found for 'ROLE_TABLE_COLUMN_HEADER' no Python documentation found for 'ROLE_TABLE_ROW_HEADER' no Python documentation found for 'ROLE_TEAROFF_MENU_ITEM' no Python documentation found for 'ROLE_TERMINAL' no Python documentation found for 'ROLE_TEXT' no Python documentation found for 'ROLE_TOGGLE_BUTTON' no Python documentation found for 'ROLE_TOOL_BAR' no Python documentation found for 'ROLE_TOOL_TIP' no Python documentation found for 'ROLE_TREE' no Python documentation found for 'ROLE_TREE_TABLE' no Python documentation found for 'ROLE_UNKNOWN' no Python documentation found for 'ROLE_VIEWPORT' no Python documentation found for 'ROLE_WINDOW' no Python documentation found for 'Registry' no Python documentation found for 'STATE_ACTIVE' no Python documentation found for 'STATE_ANIMATED' no Python documentation found for 'STATE_ARMED' no Python documentation found for 'STATE_BUSY' no Python documentation found for 'STATE_CHECKED' no Python documentation found for 'STATE_COLLAPSED' no Python documentation found for 'STATE_DEFUNCT' no Python documentation found for 'STATE_EDITABLE' no Python documentation found for 'STATE_ENABLED' no Python documentation found for 'STATE_EXPANDABLE' no Python documentation found for 'STATE_EXPANDED' no Python documentation found for 'STATE_FOCUSABLE' no Python documentation found for 'STATE_FOCUSED' no Python documentation found for 'STATE_HAS_TOOLTIP' no Python documentation found for 'STATE_HORIZONTAL' no Python documentation found for 'STATE_ICONIFIED' no Python documentation found for 'STATE_INDETERMINATE' no Python documentation found for 'STATE_INVALID' no Python documentation found for 'STATE_INVALID_ENTRY' no Python documentation found for 'STATE_IS_DEFAULT' no Python documentation found for 'STATE_LAST_DEFINED' no Python documentation found for 'STATE_MANAGES_DESCENDANTS' no Python documentation found for 'STATE_MODAL' no Python documentation found for 'STATE_MULTISELECTABLE' no Python documentation found for 'STATE_MULTI_LINE' no Python documentation found for 'STATE_OPAQUE' no Python documentation found for 'STATE_PRESSED' no Python documentation found for 'STATE_REQUIRED' no Python documentation found for 'STATE_RESIZABLE' no Python documentation found for 'STATE_SELECTABLE' no Python documentation found for 'STATE_SELECTABLE_TEXT' no Python documentation found for 'STATE_SELECTED' no Python documentation found for 'STATE_SENSITIVE' no Python documentation found for 'STATE_SHOWING' no Python documentation found for 'STATE_SINGLE_LINE' no Python documentation found for 'STATE_STALE' no Python documentation found for 'STATE_SUPPORTS_AUTOCOMPLETION' no Python documentation found for 'STATE_TRANSIENT' no Python documentation found for 'STATE_TRUNCATED' no Python documentation found for 'STATE_VALUE_TO_NAME' no Python documentation found for 'STATE_VERTICAL' no Python documentation found for 'STATE_VISIBLE' no Python documentation found for 'STATE_VISITED' no Python documentation found for 'StateSet' no Python documentation found for 'TEXT_BOUNDARY_CHAR' no Python documentation found for 'TEXT_BOUNDARY_LINE_END' no Python documentation found for 'TEXT_BOUNDARY_LINE_START' no Python documentation found for 'TEXT_BOUNDARY_SENTENCE_END' no Python documentation found for 'TEXT_BOUNDARY_SENTENCE_START' no Python documentation found for 'TEXT_BOUNDARY_TYPE' no Python documentation found for 'TEXT_BOUNDARY_WORD_END' no Python documentation found for 'TEXT_BOUNDARY_WORD_START' no Python documentation found for 'TEXT_CLIP_BOTH' no Python documentation found for 'TEXT_CLIP_MAX' no Python documentation found for 'TEXT_CLIP_MIN' no Python documentation found for 'TEXT_CLIP_NONE' no Python documentation found for 'TEXT_CLIP_TYPE' no Python documentation found for 'TYPELIB_NAME' no Python documentation found for 'WINDOW_COORDS' no Python documentation found for '__builtins__' Help on str object: __doc__ = class str(basestring) | str(object) -> string | | Return a nice string representation of the object. | If the argument is a string, the return value is the same object. | | Method resolution order: | str | basestring | object | | Methods defined here: | | __add__(...) | x.__add__(y) <==> x+y | | __contains__(...) | x.__contains__(y) <==> y in x | | __eq__(...) | x.__eq__(y) <==> x==y | | __ge__(...) | x.__ge__(y) <==> x>=y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getitem__(...) | x.__getitem__(y) <==> x[y] | | __getnewargs__(...) | | __getslice__(...) | x.__getslice__(i, j) <==> x[i:j] | | Use of negative indices is not supported. | | __gt__(...) | x.__gt__(y) <==> x>y | | __hash__(...) | x.__hash__() <==> hash(x) | | __le__(...) | x.__le__(y) <==> x<=y | | __len__(...) | x.__len__() <==> len(x) | | __lt__(...) | x.__lt__(y) <==> x x%y | | __mul__(...) | x.__mul__(n) <==> x*n | | __ne__(...) | x.__ne__(y) <==> x!=y | | __repr__(...) | x.__repr__() <==> repr(x) | | __rmod__(...) | x.__rmod__(y) <==> y%x | | __rmul__(...) | x.__rmul__(n) <==> n*x | | __str__(...) | x.__str__() <==> str(x) | | capitalize(...) | S.capitalize() -> string | | Return a copy of the string S with only its first character | capitalized. | | center(...) | S.center(width[, fillchar]) -> string | | Return S centered in a string of length width. Padding is | done using the specified fill character (default is a space) | | count(...) | S.count(sub[, start[, end]]) -> int | | Return the number of non-overlapping occurrences of substring sub in | string S[start:end]. Optional arguments start and end are interpreted | as in slice notation. | | decode(...) | S.decode([encoding[,errors]]) -> object | | Decodes S using the codec registered for encoding. encoding defaults | to the default encoding. errors may be given to set a different error | handling scheme. Default is 'strict' meaning that encoding errors raise | a UnicodeDecodeError. Other possible values are 'ignore' and 'replace' | as well as any other name registerd with codecs.register_error that is | able to handle UnicodeDecodeErrors. | | encode(...) | S.encode([encoding[,errors]]) -> object | | Encodes S using the codec registered for encoding. encoding defaults | to the default encoding. errors may be given to set a different error | handling scheme. Default is 'strict' meaning that encoding errors raise | a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and | 'xmlcharrefreplace' as well as any other name registered with | codecs.register_error that is able to handle UnicodeEncodeErrors. | | endswith(...) | S.endswith(suffix[, start[, end]]) -> bool | | Return True if S ends with the specified suffix, False otherwise. | With optional start, test S beginning at that position. | With optional end, stop comparing S at that position. | suffix can also be a tuple of strings to try. | | expandtabs(...) | S.expandtabs([tabsize]) -> string | | Return a copy of S where all tab characters are expanded using spaces. | If tabsize is not given, a tab size of 8 characters is assumed. | | find(...) | S.find(sub [,start [,end]]) -> int | | Return the lowest index in S where substring sub is found, | such that sub is contained within s[start:end]. Optional | arguments start and end are interpreted as in slice notation. | | Return -1 on failure. | | index(...) | S.index(sub [,start [,end]]) -> int | | Like S.find() but raise ValueError when the substring is not found. | | isalnum(...) | S.isalnum() -> bool | | Return True if all characters in S are alphanumeric | and there is at least one character in S, False otherwise. | | isalpha(...) | S.isalpha() -> bool | | Return True if all characters in S are alphabetic | and there is at least one character in S, False otherwise. | | isdigit(...) | S.isdigit() -> bool | | Return True if all characters in S are digits | and there is at least one character in S, False otherwise. | | islower(...) | S.islower() -> bool | | Return True if all cased characters in S are lowercase and there is | at least one cased character in S, False otherwise. | | isspace(...) | S.isspace() -> bool | | Return True if all characters in S are whitespace | and there is at least one character in S, False otherwise. | | istitle(...) | S.istitle() -> bool | | Return True if S is a titlecased string and there is at least one | character in S, i.e. uppercase characters may only follow uncased | characters and lowercase characters only cased ones. Return False | otherwise. | | isupper(...) | S.isupper() -> bool | | Return True if all cased characters in S are uppercase and there is | at least one cased character in S, False otherwise. | | join(...) | S.join(sequence) -> string | | Return a string which is the concatenation of the strings in the | sequence. The separator between elements is S. | | ljust(...) | S.ljust(width[, fillchar]) -> string | | Return S left justified in a string of length width. Padding is | done using the specified fill character (default is a space). | | lower(...) | S.lower() -> string | | Return a copy of the string S converted to lowercase. | | lstrip(...) | S.lstrip([chars]) -> string or unicode | | Return a copy of the string S with leading whitespace removed. | If chars is given and not None, remove characters in chars instead. | If chars is unicode, S will be converted to unicode before stripping | | partition(...) | S.partition(sep) -> (head, sep, tail) | | Searches for the separator sep in S, and returns the part before it, | the separator itself, and the part after it. If the separator is not | found, returns S and two empty strings. | | replace(...) | S.replace (old, new[, count]) -> string | | Return a copy of string S with all occurrences of substring | old replaced by new. If the optional argument count is | given, only the first count occurrences are replaced. | | rfind(...) | S.rfind(sub [,start [,end]]) -> int | | Return the highest index in S where substring sub is found, | such that sub is contained within s[start:end]. Optional | arguments start and end are interpreted as in slice notation. | | Return -1 on failure. | | rindex(...) | S.rindex(sub [,start [,end]]) -> int | | Like S.rfind() but raise ValueError when the substring is not found. | | rjust(...) | S.rjust(width[, fillchar]) -> string | | Return S right justified in a string of length width. Padding is | done using the specified fill character (default is a space) | | rpartition(...) | S.rpartition(sep) -> (tail, sep, head) | | Searches for the separator sep in S, starting at the end of S, and returns | the part before it, the separator itself, and the part after it. If the | separator is not found, returns two empty strings and S. | | rsplit(...) | S.rsplit([sep [,maxsplit]]) -> list of strings | | Return a list of the words in the string S, using sep as the | delimiter string, starting at the end of the string and working | to the front. If maxsplit is given, at most maxsplit splits are | done. If sep is not specified or is None, any whitespace string | is a separator. | | rstrip(...) | S.rstrip([chars]) -> string or unicode | | Return a copy of the string S with trailing whitespace removed. | If chars is given and not None, remove characters in chars instead. | If chars is unicode, S will be converted to unicode before stripping | | split(...) | S.split([sep [,maxsplit]]) -> list of strings | | Return a list of the words in the string S, using sep as the | delimiter string. If maxsplit is given, at most maxsplit | splits are done. If sep is not specified or is None, any | whitespace string is a separator. | | splitlines(...) | S.splitlines([keepends]) -> list of strings | | Return a list of the lines in S, breaking at line boundaries. | Line breaks are not included in the resulting list unless keepends | is given and true. | | startswith(...) | S.startswith(prefix[, start[, end]]) -> bool | | Return True if S starts with the specified prefix, False otherwise. | With optional start, test S beginning at that position. | With optional end, stop comparing S at that position. | prefix can also be a tuple of strings to try. | | strip(...) | S.strip([chars]) -> string or unicode | | Return a copy of the string S with leading and trailing | whitespace removed. | If chars is given and not None, remove characters in chars instead. | If chars is unicode, S will be converted to unicode before stripping | | swapcase(...) | S.swapcase() -> string | | Return a copy of the string S with uppercase characters | converted to lowercase and vice versa. | | title(...) | S.title() -> string | | Return a titlecased version of S, i.e. words start with uppercase | characters, all remaining cased characters have lowercase. | | translate(...) | S.translate(table [,deletechars]) -> string | | Return a copy of the string S, where all characters occurring | in the optional argument deletechars are removed, and the | remaining characters have been mapped through the given | translation table, which must be a string of length 256. | | upper(...) | S.upper() -> string | | Return a copy of the string S converted to uppercase. | | zfill(...) | S.zfill(width) -> string | | Pad a numeric string S with zeros on the left, to fill a field | of the specified width. The string S is never truncated. | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T no Python documentation found for '__file__' Help on str object: __name__ = class str(basestring) | str(object) -> string | | Return a nice string representation of the object. | If the argument is a string, the return value is the same object. | | Method resolution order: | str | basestring | object | | Methods defined here: | | __add__(...) | x.__add__(y) <==> x+y | | __contains__(...) | x.__contains__(y) <==> y in x | | __eq__(...) | x.__eq__(y) <==> x==y | | __ge__(...) | x.__ge__(y) <==> x>=y | | __getattribute__(...) | x.__getattribute__('name') <==> x.name | | __getitem__(...) | x.__getitem__(y) <==> x[y] | | __getnewargs__(...) | | __getslice__(...) | x.__getslice__(i, j) <==> x[i:j] | | Use of negative indices is not supported. | | __gt__(...) | x.__gt__(y) <==> x>y | | __hash__(...) | x.__hash__() <==> hash(x) | | __le__(...) | x.__le__(y) <==> x<=y | | __len__(...) | x.__len__() <==> len(x) | | __lt__(...) | x.__lt__(y) <==> x x%y | | __mul__(...) | x.__mul__(n) <==> x*n | | __ne__(...) | x.__ne__(y) <==> x!=y | | __repr__(...) | x.__repr__() <==> repr(x) | | __rmod__(...) | x.__rmod__(y) <==> y%x | | __rmul__(...) | x.__rmul__(n) <==> n*x | | __str__(...) | x.__str__() <==> str(x) | | capitalize(...) | S.capitalize() -> string | | Return a copy of the string S with only its first character | capitalized. | | center(...) | S.center(width[, fillchar]) -> string | | Return S centered in a string of length width. Padding is | done using the specified fill character (default is a space) | | count(...) | S.count(sub[, start[, end]]) -> int | | Return the number of non-overlapping occurrences of substring sub in | string S[start:end]. Optional arguments start and end are interpreted | as in slice notation. | | decode(...) | S.decode([encoding[,errors]]) -> object | | Decodes S using the codec registered for encoding. encoding defaults | to the default encoding. errors may be given to set a different error | handling scheme. Default is 'strict' meaning that encoding errors raise | a UnicodeDecodeError. Other possible values are 'ignore' and 'replace' | as well as any other name registerd with codecs.register_error that is | able to handle UnicodeDecodeErrors. | | encode(...) | S.encode([encoding[,errors]]) -> object | | Encodes S using the codec registered for encoding. encoding defaults | to the default encoding. errors may be given to set a different error | handling scheme. Default is 'strict' meaning that encoding errors raise | a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and | 'xmlcharrefreplace' as well as any other name registered with | codecs.register_error that is able to handle UnicodeEncodeErrors. | | endswith(...) | S.endswith(suffix[, start[, end]]) -> bool | | Return True if S ends with the specified suffix, False otherwise. | With optional start, test S beginning at that position. | With optional end, stop comparing S at that position. | suffix can also be a tuple of strings to try. | | expandtabs(...) | S.expandtabs([tabsize]) -> string | | Return a copy of S where all tab characters are expanded using spaces. | If tabsize is not given, a tab size of 8 characters is assumed. | | find(...) | S.find(sub [,start [,end]]) -> int | | Return the lowest index in S where substring sub is found, | such that sub is contained within s[start:end]. Optional | arguments start and end are interpreted as in slice notation. | | Return -1 on failure. | | index(...) | S.index(sub [,start [,end]]) -> int | | Like S.find() but raise ValueError when the substring is not found. | | isalnum(...) | S.isalnum() -> bool | | Return True if all characters in S are alphanumeric | and there is at least one character in S, False otherwise. | | isalpha(...) | S.isalpha() -> bool | | Return True if all characters in S are alphabetic | and there is at least one character in S, False otherwise. | | isdigit(...) | S.isdigit() -> bool | | Return True if all characters in S are digits | and there is at least one character in S, False otherwise. | | islower(...) | S.islower() -> bool | | Return True if all cased characters in S are lowercase and there is | at least one cased character in S, False otherwise. | | isspace(...) | S.isspace() -> bool | | Return True if all characters in S are whitespace | and there is at least one character in S, False otherwise. | | istitle(...) | S.istitle() -> bool | | Return True if S is a titlecased string and there is at least one | character in S, i.e. uppercase characters may only follow uncased | characters and lowercase characters only cased ones. Return False | otherwise. | | isupper(...) | S.isupper() -> bool | | Return True if all cased characters in S are uppercase and there is | at least one cased character in S, False otherwise. | | join(...) | S.join(sequence) -> string | | Return a string which is the concatenation of the strings in the | sequence. The separator between elements is S. | | ljust(...) | S.ljust(width[, fillchar]) -> string | | Return S left justified in a string of length width. Padding is | done using the specified fill character (default is a space). | | lower(...) | S.lower() -> string | | Return a copy of the string S converted to lowercase. | | lstrip(...) | S.lstrip([chars]) -> string or unicode | | Return a copy of the string S with leading whitespace removed. | If chars is given and not None, remove characters in chars instead. | If chars is unicode, S will be converted to unicode before stripping | | partition(...) | S.partition(sep) -> (head, sep, tail) | | Searches for the separator sep in S, and returns the part before it, | the separator itself, and the part after it. If the separator is not | found, returns S and two empty strings. | | replace(...) | S.replace (old, new[, count]) -> string | | Return a copy of string S with all occurrences of substring | old replaced by new. If the optional argument count is | given, only the first count occurrences are replaced. | | rfind(...) | S.rfind(sub [,start [,end]]) -> int | | Return the highest index in S where substring sub is found, | such that sub is contained within s[start:end]. Optional | arguments start and end are interpreted as in slice notation. | | Return -1 on failure. | | rindex(...) | S.rindex(sub [,start [,end]]) -> int | | Like S.rfind() but raise ValueError when the substring is not found. | | rjust(...) | S.rjust(width[, fillchar]) -> string | | Return S right justified in a string of length width. Padding is | done using the specified fill character (default is a space) | | rpartition(...) | S.rpartition(sep) -> (tail, sep, head) | | Searches for the separator sep in S, starting at the end of S, and returns | the part before it, the separator itself, and the part after it. If the | separator is not found, returns two empty strings and S. | | rsplit(...) | S.rsplit([sep [,maxsplit]]) -> list of strings | | Return a list of the words in the string S, using sep as the | delimiter string, starting at the end of the string and working | to the front. If maxsplit is given, at most maxsplit splits are | done. If sep is not specified or is None, any whitespace string | is a separator. | | rstrip(...) | S.rstrip([chars]) -> string or unicode | | Return a copy of the string S with trailing whitespace removed. | If chars is given and not None, remove characters in chars instead. | If chars is unicode, S will be converted to unicode before stripping | | split(...) | S.split([sep [,maxsplit]]) -> list of strings | | Return a list of the words in the string S, using sep as the | delimiter string. If maxsplit is given, at most maxsplit | splits are done. If sep is not specified or is None, any | whitespace string is a separator. | | splitlines(...) | S.splitlines([keepends]) -> list of strings | | Return a list of the lines in S, breaking at line boundaries. | Line breaks are not included in the resulting list unless keepends | is given and true. | | startswith(...) | S.startswith(prefix[, start[, end]]) -> bool | | Return True if S starts with the specified prefix, False otherwise. | With optional start, test S beginning at that position. | With optional end, stop comparing S at that position. | prefix can also be a tuple of strings to try. | | strip(...) | S.strip([chars]) -> string or unicode | | Return a copy of the string S with leading and trailing | whitespace removed. | If chars is given and not None, remove characters in chars instead. | If chars is unicode, S will be converted to unicode before stripping | | swapcase(...) | S.swapcase() -> string | | Return a copy of the string S with uppercase characters | converted to lowercase and vice versa. | | title(...) | S.title() -> string | | Return a titlecased version of S, i.e. words start with uppercase | characters, all remaining cased characters have lowercase. | | translate(...) | S.translate(table [,deletechars]) -> string | | Return a copy of the string S, where all characters occurring | in the optional argument deletechars are removed, and the | remaining characters have been mapped through the given | translation table, which must be a string of length 256. | | upper(...) | S.upper() -> string | | Return a copy of the string S converted to uppercase. | | zfill(...) | S.zfill(width) -> string | | Pad a numeric string S with zeros on the left, to fill a field | of the specified width. The string S is never truncated. | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __new__ = | T.__new__(S, ...) -> a new object with type S, a subtype of T no Python documentation found for '__path__' no Python documentation found for 'accessible' no Python documentation found for 'allModifiers' Help on package bonobo: NAME bonobo - # -*- Mode: Python; py-indent-offset: 4 -*- FILE /var/lib/python-support/python2.5/gtk-2.0/bonobo/__init__.py PACKAGE CONTENTS _bonobo activation ui CLASSES __builtin__.object UnknownBaseImpl gobject.GObject(__builtin__.object) AppClient Object Application EventSource ForeignObject GenericFactory ItemHandler Listener Moniker MonikerSimple Persist PersistFile PersistStream PropertyBag StreamMem class AppClient(gobject.GObject) | Object BonoboAppClient | | Signals from GObject: | notify (GParam) | | Method resolution order: | AppClient | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | msg_list(...) | | msg_send(...) | | new_instance(...) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboAppClient\n\nSignals from GObject:\n notify ... | | __new__ = a new object with type S, a subtype of T | | props = class Application(Object) | Object BonoboApplication | | Signals from BonoboApplication: | message (gchararray, GValueArray) -> GValue | new-instance (gint, GStrv) -> gint | | Properties from BonoboApplication: | name -> gchararray: Name | Application unique name | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | Application | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | create_serverinfo(...) | | new_instance(...) | | register_message(...) | | register_unique(...) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboApplication\n\nSignals from BonoboApp...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class EventSource(Object) | Object BonoboEventSource | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | EventSource | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ignore_listeners(...) | | notify_listeners(...) | | notify_listeners_full(...) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboEventSource\n\nSignals from BonoboObj...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class ForeignObject(Object) | Object BonoboForeignObject | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | ForeignObject | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboForeignObject\n\nSignals from BonoboO...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class GenericFactory(Object) | Object BonoboGenericFactory | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | GenericFactory | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboGenericFactory\n\nSignals from Bonobo...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class ItemHandler(Object) | Object BonoboItemHandler | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | ItemHandler | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboItemHandler\n\nSignals from BonoboObj...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class Listener(Object) | Object BonoboListener | | Signals from BonoboListener: | event-notify (gchararray, BonoboCorbaAny, BonoboCorbaException) | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | Listener | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboListener\n\nSignals from BonoboListen...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class Moniker(Object) | Object BonoboMoniker | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | Moniker | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | get_case_sensitive(...) | | get_name(...) | | get_name_escaped(...) | | get_name_full(...) | | get_parent(...) | | get_prefix(...) | | set_case_sensitive(...) | | set_name(...) | | set_parent(...) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboMoniker\n\nSignals from BonoboObject:...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class MonikerSimple(Moniker) | Object BonoboMonikerSimple | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | MonikerSimple | Moniker | Object | gobject.GObject | __builtin__.object | | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Moniker: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | get_case_sensitive(...) | | get_name(...) | | get_name_escaped(...) | | get_name_full(...) | | get_parent(...) | | get_prefix(...) | | set_case_sensitive(...) | | set_name(...) | | set_parent(...) | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboMonikerSimple\n\nSignals from BonoboO...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class Object(gobject.GObject) | Object BonoboObject | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboObject\n\nSignals from BonoboObject:\n...BA P... | | __new__ = a new object with type S, a subtype of T | | props = class Persist(Object) | Object BonoboPersist | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | Persist | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | set_dirty(...) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboPersist\n\nSignals from BonoboObject:...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class PersistFile(Persist) | Object BonoboPersistFile | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | PersistFile | Persist | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Persist: | | set_dirty(...) | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboPersistFile\n\nSignals from BonoboObj...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class PersistStream(Persist) | Object BonoboPersistStream | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | PersistStream | Persist | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Persist: | | set_dirty(...) | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboPersistStream\n\nSignals from BonoboO...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class PropertyBag(Object) | Object BonoboPropertyBag | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | PropertyBag | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | add(...) | | remove(...) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboPropertyBag\n\nSignals from BonoboObj...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class StreamMem(Object) | Object BonoboStreamMem | | Signals from BonoboObject: | destroy () | system-exception (CorbaObject, BonoboCorbaException) | | Properties from BonoboObject: | poa -> gpointer: POA | Custom CORBA POA | | Signals from GObject: | notify (GParam) | | Method resolution order: | StreamMem | Object | gobject.GObject | __builtin__.object | | Methods defined here: | | __init__(...) | x.__init__(...) initializes x; see x.__class__.__doc__ for signature | | get_buffer(...) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | __gtype__ = | | ---------------------------------------------------------------------- | Methods inherited from Object: | | add_interface(...) | | check_env(...) | | corba_objref(...) | | dump_interfaces(...) | | idle_unref(...) | | query_interface(...) | | query_local_interface(...) | | ref(...) | | set_immortal(...) | | unref(...) | | ---------------------------------------------------------------------- | Methods inherited from gobject.GObject: | | __cmp__(...) | x.__cmp__(y) <==> cmp(x,y) | | __delattr__(...) | x.__delattr__('name') <==> del x.name | | __gobject_init__(...) | | __hash__(...) | x.__hash__() <==> hash(x) | | __repr__(...) | x.__repr__() <==> repr(x) | | __setattr__(...) | x.__setattr__('name', value) <==> x.name = value | | chain(...) | | connect(...) | | connect_after(...) | | connect_object(...) | | connect_object_after(...) | | disconnect(...) | | disconnect_by_func(...) | | emit(...) | | emit_stop_by_name(...) | | freeze_notify(...) | | get_data(...) | | get_properties(...) | | get_property(...) | | handler_block(...) | | handler_block_by_func(...) | | handler_disconnect(...) | | handler_is_connected(...) | | handler_unblock(...) | | handler_unblock_by_func(...) | | notify(...) | | set_data(...) | | set_properties(...) | | set_property(...) | | stop_emission(...) | | thaw_notify(...) | | weak_ref(...) | | ---------------------------------------------------------------------- | Data descriptors inherited from gobject.GObject: | | __dict__ | | __grefcount__ | | ---------------------------------------------------------------------- | Data and other attributes inherited from gobject.GObject: | | __gdoc__ = 'Object BonoboStreamMem\n\nSignals from BonoboObjec...BA PO... | | __new__ = a new object with type S, a subtype of T | | props = class UnknownBaseImpl(__builtin__.object) | Methods defined here: | | __init__(self) | | get_bonobo_object(self) | | queryInterface(self, repoid) | | ref(self) | | unref(self) | | ---------------------------------------------------------------------- | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) FUNCTIONS activate(...) arg_type_from_gtype(...) context_add(...) context_running_get(...) debug_shutdown(...) event_idl_path(...) event_kind(...) event_make_name(...) event_source_client_add_listener(...) event_source_client_remove_listener(...) event_subtype(...) event_type(...) exception_add_handler_str(...) exception_general_error_get(...) exception_repoid_to_text(...) generic_factory_main(...) get_object(...) get_object_async(...) main(...) main_quit(...) moniker_client_equal(...) moniker_client_get_name(...) moniker_client_new_from_name(...) moniker_client_resolve_default(...) moniker_util_escape(...) moniker_util_get_parent_name(...) moniker_util_qi_return(...) moniker_util_seek_std_separator(...) moniker_util_unescape(...) object_dup_ref(...) object_from_stream(...) object_release_unref(...) orb(...) pbclient_get_boolean(...) pbclient_get_char(...) pbclient_get_default_boolean(...) pbclient_get_default_char(...) pbclient_get_default_double(...) pbclient_get_default_float(...) pbclient_get_default_long(...) pbclient_get_default_short(...) pbclient_get_default_string(...) pbclient_get_default_ulong(...) pbclient_get_default_ushort(...) pbclient_get_default_value(...) pbclient_get_doc(...) pbclient_get_doc_title(...) pbclient_get_double(...) pbclient_get_flags(...) pbclient_get_float(...) pbclient_get_long(...) pbclient_get_short(...) pbclient_get_string(...) pbclient_get_ulong(...) pbclient_get_ushort(...) pbclient_get_value(...) pbclient_set_boolean(...) pbclient_set_char(...) pbclient_set_double(...) pbclient_set_float(...) pbclient_set_long(...) pbclient_set_short(...) pbclient_set_string(...) pbclient_set_ulong(...) pbclient_set_ushort(...) pbclient_set_value(...) poa(...) poa_manager(...) running_context_auto_exit_unref(...) storage_mem_create(...) stream_client_get_length(...) stream_client_read(...) url_lookup(...) url_register(...) url_unregister(...) DATA PROPERTY_NO_AUTONOTIFY = 8 PROPERTY_NO_LISTENING = 4 PROPERTY_READABLE = 1 PROPERTY_WRITEABLE = 2 no Python documentation found for 'clearCache' no Python documentation found for 'constants' no Python documentation found for 'event' no Python documentation found for 'findAllDescendants' no Python documentation found for 'findAncestor' no Python documentation found for 'findDescendant' no Python documentation found for 'getCacheLevel' no Python documentation found for 'getInterfaceIID' no Python documentation found for 'getInterfaceName' no Python documentation found for 'getPath' no Python documentation found for 'listInterfaces' no Python documentation found for 'printCache' no Python documentation found for 'relationToString' no Python documentation found for 'setCacheLevel' no Python documentation found for 'stateToString' no Python documentation found for 'stringToConst' no Python documentation found for 'utils' >>>