atk.Registry — an object used to store the GType of the factories used to create an accessible object for an object of a particular GType.
| class atk.Registry( | 
Functions
    def atk.get_default_registry()The atk.Registry is
normally used to create appropriate ATK "peers" for user interface
components. Application developers usually need only interact with the atk.Registry by
associating appropriate ATK implementation classes with gobject.GObjectset_factory_type()
method, passing the appropriate GType for application custom widget
classes.
    def set_factory_type(type, factory_type)| 
 | an atk.Objecttype | 
| 
 | an atk.ObjectFactorytype to associate withtype.  Must
          implement theatk.Objectappropriate fortype. | 
Associate an atk.ObjectFactory
      subclass with a atk.Object
      type. Note: The associated factory_type will
      thereafter be responsible for the creation of new atk.Object
      implementations for instances appropriate for
      type.
    def get_factory_type(type)| 
 | a atk.Objecttype with which to look up the associatedatk.ObjectFactorysubclass | 
| Returns : | a atk.ObjectFactorytype associated withatk.Objecttype | 
Returns a atk.ObjectFactory
      subclass associated with type.
    def get_factory(type)| 
 | a atk.Objectwith which to look up the associatedatk.ObjectFactory | 
| Returns : | an atk.ObjectFactoryappropriate for creatingtypeatk.Objects. | 
Gets an atk.ObjectFactory
      appropriate for creating type atk.Objects.
    def atk.get_default_registry()| Returns : | a default implementation of the atk.ObjectFactorytype registry | 
Gets a default implementation of the atk.ObjectFactory
      type registry. Note: For most toolkit maintainers, this will be the
      correct registry for registering new atk.Object
      factories. Following a call to this function, maintainers may call the
      set_factory_type()
      method to associate an atk.ObjectFactory
      subclass with the type of objects for whom accessibility information
      will be provided.