AtkObjectFactory

Name

AtkObjectFactory -- factory for creating AtkObjects

Synopsis



AtkObject*  atk_object_factory_create_accessible
                                            (AtkObjectFactory *factory,
                                             GObject *obj);
void        atk_object_factory_invalidate   (AtkObjectFactory *factory);

Description

A factory for creating AtkObjects.

Details

atk_object_factory_create_accessible ()

AtkObject*  atk_object_factory_create_accessible
                                            (AtkObjectFactory *factory,
                                             GObject *obj);

Provides an AtkObject that implements an accessibility interface on behalf of obj

factory : The AtkObjectFactory associated with obj's object type
obj : a GObject
Returns : an AtkObject that implements an accessibility interface on behalf of obj


atk_object_factory_invalidate ()

void        atk_object_factory_invalidate   (AtkObjectFactory *factory);

Inform factory that it is no longer being used to create accessibles. When called, factory may need to inform AtkObjects which it has created that they need to be re-instantiated. Note: primarily used for runtime replacement of AtkObjectFactorys in object registries.

factory : an AtkObjectFactory to invalidate