summaryrefslogtreecommitdiff
path: root/atk/atkobjectfactory.h
diff options
context:
space:
mode:
authorPadraig O'Briain <padraigo@src.gnome.org>2001-12-19 12:34:25 +0000
committerPadraig O'Briain <padraigo@src.gnome.org>2001-12-19 12:34:25 +0000
commit273d1a64b904bc019c3c8c5cd4e7ad44210f795d (patch)
tree3fd8c9dc0d9a8e797ef90307079e392407725c65 /atk/atkobjectfactory.h
parentfc73f6f4ccdd5cbf4c304cb105c711664d918f70 (diff)
downloadat-spi2-core-273d1a64b904bc019c3c8c5cd4e7ad44210f795d.tar.gz
Add new files atk/atkgobjectaccessible.c atk/atkgobjectaccessible.h
docs/tmpl/atkgobjectaccessible.sgml * atk/Makefile.am atk/atk.h: Add references to new files * atk/atkobject.c atk/atkobject.h docs/tmpl/atkobject.sgml: Add new function atk_object_initialize * atk/atkobjectfactory.c atk/atkobjectfactory.h docs/tmpl/atkobjectfactory.sgml: Add new function atk_object_factory_get_accessible_type * docs/atk-sections.txt: Add new functions. Add functions in atk-unused.txt
Diffstat (limited to 'atk/atkobjectfactory.h')
-rwxr-xr-xatk/atkobjectfactory.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/atk/atkobjectfactory.h b/atk/atkobjectfactory.h
index a1147f96..98c72b13 100755
--- a/atk/atkobjectfactory.h
+++ b/atk/atkobjectfactory.h
@@ -48,12 +48,14 @@ struct _AtkObjectFactoryClass
AtkObject* (* create_accessible) (GObject *obj);
void (* invalidate) (AtkObjectFactory *factory);
+ GType (* get_accessible_type) (void);
};
GType atk_object_factory_get_type();
-AtkObject* atk_object_factory_create_accessible(AtkObjectFactory *factory, GObject *obj);
-void atk_object_factory_invalidate (AtkObjectFactory *factory);
+AtkObject* atk_object_factory_create_accessible (AtkObjectFactory *factory, GObject *obj);
+void atk_object_factory_invalidate (AtkObjectFactory *factory);
+GType atk_object_factory_get_accessible_type (AtkObjectFactory *factory);
#ifdef __cplusplus
}
#endif /* __cplusplus */