[evolution-patches] gal , etree a11y support, HEAD



Sorry, send to wrong patch list address, correct and resend.

Hi Mike and All,

The patch add a11y object and factory for etree, e-table-item. Attached
gal-a11y-etree.diff includes modifications in a11y/e-table/ and gal-etree.diff includes
modifications in gal/e-table/.  After the patch, at-poke can poke etree like folder list in
evolution, and gnopernicus can read "TreeTable" when focus to it.

Please review, thanks.

1. Modification in gal/e-table
3 pairs of files added in a11y/e-table/
gal-a11y-e-tree.[ch]
gal-a11y-e-tree-factory.[ch]
gal-a11y-e-table-item-factory.[ch]

gal-a11y-e-tree.[ch] implement a11y object corresponding to etree; And gal-a11y-e-tree-factory.[ch]
factory of the a11y object. They are actually copied and modified from GalA11yETable. With these
modification, at-poke can poke the folder list in evolution. However more work need on the cells.

gal-a11y-e-table-item-factory.[ch] add factory for table item. It is needed because when a etable/etree
grab focus, it actually focus to the table item.This is because focus will grab to
canvas (refer to et_grab_focus() in e-tree.c ). And when focus is on canvas, gail will find it is a
gnomecanvas and try to found the focused item and atk_focus_tracker_notify() it. So after we add
this factory that gnopernicus can speak  'TreeTable' when focus switch to folder list.

In the create_accessible method of TableItemFactory, I try to locate the corresponding etable/etree
and  call ref_child method of its a11y object. Not creating new one here, I was mean to avoid
possible duplicate. See code snippet below (in gal-a11y-e-table-item-factory.c):

static AtkObject*
gal_a11y_e_table_item_factory_create_accessible (GObject *obj)
{
    ... ...
        eti = E_TABLE_ITEM(obj);
        gc = GNOME_CANVAS_ITEM(eti)->canvas;
                                                                               
        table = gtk_widget_get_parent(GTK_WIDGET(gc));
                                                                               
        accessible = gtk_widget_get_accessible (table);
        accessible = atk_object_ref_accessible_child (accessible, 0);
                                                                               
        return accessible;
    ... ...
}

There are also small change that just set role of cell and etable.


2. The modification in gal/e-table
First, register the a11y factory of ETree/TableItem in class init. Then  a
access function e_tree_get_item() is added.  It return tableitem of etable. It is needed when a11y object
of etree to ref_child().



Thanks
York
Index: e-table-item.c
===================================================================
RCS file: /cvs/gnome/gal/gal/e-table/e-table-item.c,v
retrieving revision 1.225
diff -u -r1.225 e-table-item.c
--- e-table-item.c	15 Aug 2003 20:23:12 -0000	1.225
+++ e-table-item.c	9 Oct 2003 02:17:36 -0000
@@ -46,6 +46,7 @@
 #include "gal/util/e-i18n.h"
 #include <string.h>
 #include <stdlib.h>
+#include <atk/atk.h>
 
 #define PARENT_OBJECT_TYPE gnome_canvas_item_get_type ()
 
@@ -3068,6 +3069,11 @@
 			      NULL, NULL,
 			      e_marshal_NONE__OBJECT,
 			      G_TYPE_NONE, 1, GTK_TYPE_STYLE);
+
+        atk_registry_set_factory_type (atk_get_default_registry (),
+				       E_TABLE_ITEM_TYPE,
+				       gal_a11y_e_table_item_factory_get_type ());
+
 }
 
 E_MAKE_TYPE (e_table_item,
Index: e-tree.c
===================================================================
RCS file: /cvs/gnome/gal/gal/e-table/e-tree.c,v
retrieving revision 1.106
diff -u -r1.106 e-tree.c
--- e-tree.c	15 Aug 2003 20:23:12 -0000	1.106
+++ e-tree.c	9 Oct 2003 02:17:36 -0000
@@ -53,6 +53,7 @@
 
 #include "e-tree.h"
 #include "gal/util/e-marshal.h"
+#include "gal/a11y/e-table/gal-a11y-e-tree-factory.h"
 
 #define COLUMN_HEADER_HEIGHT 16
 
@@ -2154,6 +2155,15 @@
 	return et->priv->etta;
 }
 
+ETableItem *
+e_tree_get_item(ETree * et)
+{
+	g_return_val_if_fail (et != NULL, NULL);
+	g_return_val_if_fail (E_IS_TREE (et), NULL);
+
+	return et->priv->item;
+}
+
 
 struct _ETreeDragSourceSite
 {
@@ -3308,6 +3318,10 @@
 					     G_MAXINT,
 					     10,
 					     G_PARAM_READABLE));
+
+	atk_registry_set_factory_type (atk_get_default_registry (),
+					E_TREE_TYPE,
+					gal_a11y_e_tree_factory_get_type ());
 
 }
 
Index: e-tree.h
===================================================================
RCS file: /cvs/gnome/gal/gal/e-table/e-tree.h,v
retrieving revision 1.27
diff -u -r1.27 e-tree.h
--- e-tree.h	17 Nov 2002 00:02:53 -0000	1.27
+++ e-tree.h	9 Oct 2003 02:17:37 -0000
@@ -35,6 +35,7 @@
 #include <gal/e-table/e-table-state.h>
 #include <gal/e-table/e-tree-model.h>
 #include <gal/e-table/e-tree-table-adapter.h>
+#include <gal/e-table/e-table-item.h>
 
 #define E_TREE_USE_TREE_SELECTION
 
@@ -303,6 +304,7 @@
 /* This function is only needed in single_selection_mode. */
 void            e_tree_right_click_up             (ETree                *et);
 
+ETableItem *	e_tree_get_item(ETree * et);
 
 G_END_DECLS
 



Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/gal/ChangeLog,v
retrieving revision 1.808
diff -u -r1.808 ChangeLog
--- ChangeLog	24 Sep 2003 11:25:59 -0000	1.808
+++ ChangeLog	9 Oct 2003 02:42:35 -0000
@@ -1,3 +1,38 @@
+2003-10-09  Yuedong Du  <yuedong du sun com>
+
+	* gal/a11y/e-table/Makefile.am: add new files.
+	* gal/a11y/e-table/gal-a11y-e-cell.c: (gal_a11y_e_cell_construct):
+	set the right role.
+	* gal/a11y/e-table/gal-a11y-e-table-item-factory.c: new file.
+	(gal_a11y_e_table_item_factory_get_accessible_type),
+	(gal_a11y_e_table_item_factory_create_accessible),
+	(gal_a11y_e_table_item_factory_class_init),
+	(gal_a11y_e_table_item_factory_init),
+	(gal_a11y_e_table_item_factory_get_type): factory for the table item
+	a11y object. in create_accessible, we judge the type of widget
+	then set correct role.
+	* gal/a11y/e-table/gal-a11y-e-table-item-factory.h: ditto.
+	* gal/a11y/e-table/gal-a11y-e-tree-factory.c: new file.
+	(gal_a11y_e_tree_factory_get_accessible_type),
+	(gal_a11y_e_tree_factory_create_accessible),
+	(gal_a11y_e_tree_factory_class_init),
+	(gal_a11y_e_tree_factory_init), (gal_a11y_e_tree_factory_get_type):
+	factory for a11y object of etree. Mostly copyed from 
+	gal-a11y-e-table-factory.c.
+	* gal/a11y/e-table/gal-a11y-e-tree-factory.h: ditto
+	* gal/a11y/e-table/gal-a11y-e-tree.c: (init_child_item),
+	(et_ref_accessible_at_point), (et_get_n_children), (et_ref_child),
+	(et_class_init), (et_atk_component_iface_init), (et_init),
+	(gal_a11y_e_tree_get_type), (gal_a11y_e_tree_new):a11y object for
+	etree object, mostly copied from gal-a11y-e-table.c. init_child_item
+	set correct role for the table item.
+	* gal/a11y/e-table/gal-a11y-e-tree.h: ditto.
+	* gal/e-table/e-table-item.c: (eti_class_init): register factory
+	for table item a11y object.
+	* gal/e-table/e-tree.c: (e_tree_get_item), (e_tree_class_init):
+	add new access fuction to get the table item of etree.
+	* gal/e-table/e-tree.h: ditto
+
 2003-09-22  Tim Wo <tim wo sun com>
 
 	* gal/a11y/e-text/gal-a11y-e-text.c (et_get_text): some checking


Index: Makefile.am
===================================================================
RCS file: /cvs/gnome/gal/gal/a11y/e-table/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Makefile.am	8 Jan 2003 19:16:14 -0000	1.2
+++ Makefile.am	9 Oct 2003 06:14:34 -0000
@@ -11,19 +11,25 @@
 noinst_LTLIBRARIES = libgal-a11y-etable.la
 
 libgal_a11y_etable_la_SOURCES =			\
+	gal-a11y-e-tree.c			\
+	gal-a11y-e-tree-factory.c		\
 	gal-a11y-e-cell.c			\
 	gal-a11y-e-cell-text.c			\
 	gal-a11y-e-cell-registry.c		\
 	gal-a11y-e-table.c			\
 	gal-a11y-e-table-item.c			\
+	gal-a11y-e-table-item-factory.c		\
 	gal-a11y-e-table-factory.c
 
 libgal_a11y_etableincludedir = $(includedir)/gal-$(GAL_API_VERSION)/gal/a11y/e-table
 
 libgal_a11y_etableinclude_HEADERS =		\
+	gal-a11y-e-tree.h			\
+	gal-a11y-e-tree-factory.h		\
 	gal-a11y-e-cell.h			\
 	gal-a11y-e-cell-text.h			\
 	gal-a11y-e-cell-registry.h		\
 	gal-a11y-e-table.h			\
 	gal-a11y-e-table-item.h			\
+	gal-a11y-e-table-item-factory.h		\
 	gal-a11y-e-table-factory.h
Index: gal-a11y-e-cell.c
===================================================================
RCS file: /cvs/gnome/gal/gal/a11y/e-table/gal-a11y-e-cell.c,v
retrieving revision 1.1
diff -u -r1.1 gal-a11y-e-cell.c
--- gal-a11y-e-cell.c	30 Nov 2002 07:54:15 -0000	1.1
+++ gal-a11y-e-cell.c	9 Oct 2003 06:14:34 -0000
@@ -222,6 +222,7 @@
 	a11y->model_col = model_col;
 	a11y->view_col  = view_col;
 	a11y->row       = row;
+	ATK_OBJECT (a11y) ->role	= ATK_ROLE_TABLE_CELL;
 
 #if 0
 	if (parent)
Index: gal-a11y-e-table-item-factory.c
===================================================================
RCS file: gal-a11y-e-table-item-factory.c
diff -N gal-a11y-e-table-item-factory.c
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gal-a11y-e-table-item-factory.c	9 Oct 2003 06:14:34 -0000
@@ -0,0 +1,96 @@
+/*
+ * Authors: Yuedong Du <yuedong du sun com>
+ *
+ * Copyright (C) 2003 Ximian, Inc.
+ */
+
+#include <config.h>
+#include "gal-a11y-e-table-item-factory.h"
+#include "gal-a11y-e-table-item.h"
+#include "gal-a11y-e-table.h"
+#include <gal/e-table/e-table.h>
+#include <gal/e-table/e-tree.h>
+#include <atk/atk.h>
+
+
+#define CS_CLASS(factory) (G_TYPE_INSTANCE_GET_CLASS ((factory), C_TYPE_STREAM, GalA11yETableItemFactoryClass))
+static AtkObjectFactoryClass *parent_class;
+#define PARENT_TYPE (ATK_TYPE_OBJECT_FACTORY)
+
+/* Static functions */
+
+static GType
+gal_a11y_e_table_item_factory_get_accessible_type (void)
+{
+        return GAL_A11Y_TYPE_E_TABLE_ITEM;
+}
+
+static AtkObject*
+gal_a11y_e_table_item_factory_create_accessible (GObject *obj)
+{
+	AtkObject * accessible;
+	ETableItem * eti;
+	GnomeCanvas * gc;
+	GtkWidget * table;
+
+	g_return_if_fail (E_IS_TABLE_ITEM(obj));
+	eti = E_TABLE_ITEM(obj);
+	gc = GNOME_CANVAS_ITEM(eti)->canvas;
+
+	table = gtk_widget_get_parent(GTK_WIDGET(gc));
+
+	accessible = gtk_widget_get_accessible (table);
+	accessible = atk_object_ref_accessible_child (accessible, 0);
+
+	return accessible;
+}
+
+static void
+gal_a11y_e_table_item_factory_class_init (GalA11yETableItemFactoryClass *klass)
+{
+	AtkObjectFactoryClass *factory_class = ATK_OBJECT_FACTORY_CLASS (klass);
+
+	parent_class = g_type_class_ref (PARENT_TYPE);
+
+	factory_class->create_accessible   = gal_a11y_e_table_item_factory_create_accessible;
+	factory_class->get_accessible_type = gal_a11y_e_table_item_factory_get_accessible_type;
+}
+
+static void
+gal_a11y_e_table_item_factory_init (GalA11yETableItemFactory *factory)
+{
+}
+
+/**
+ * gal_a11y_e_table_factory_get_type:
+ * @void: 
+ * 
+ * Registers the &GalA11yETableFactory class if necessary, and returns the type ID
+ * associated to it.
+ * 
+ * Return value: The type ID of the &GalA11yETableFactory class.
+ **/
+GType
+gal_a11y_e_table_item_factory_get_type (void)
+{
+	static GType type = 0;
+
+	if (!type) {
+		GTypeInfo info = {
+			sizeof (GalA11yETableItemFactoryClass),
+			(GBaseInitFunc) NULL,
+			(GBaseFinalizeFunc) NULL,
+			(GClassInitFunc) gal_a11y_e_table_item_factory_class_init,
+			(GClassFinalizeFunc) NULL,
+			NULL, /* class_data */
+			sizeof (GalA11yETableItemFactory),
+			0,
+			(GInstanceInitFunc) gal_a11y_e_table_item_factory_init,
+			NULL /* value_table */
+		};
+
+		type = g_type_register_static (PARENT_TYPE, "GalA11yETableItemFactory", &info, 0);
+	}
+
+	return type;
+}
Index: gal-a11y-e-table-item-factory.h
===================================================================
RCS file: gal-a11y-e-table-item-factory.h
diff -N gal-a11y-e-table-item-factory.h
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gal-a11y-e-table-item-factory.h	9 Oct 2003 06:14:34 -0000
@@ -0,0 +1,34 @@
+/*
+ * Authors: *   Yuedong Du <yuedong du sun com>
+ *
+ * Copyright (C) 2003 Ximian, Inc.
+ */
+
+#ifndef __GAL_A11Y_E_TABLE_ITEM_FACTORY_H__
+#define __GAL_A11Y_E_TABLE_ITEM_FACTORY_H__
+
+#include <glib-object.h>
+#include <atk/atkobjectfactory.h>
+
+#define GAL_A11Y_TYPE_E_TABLE_ITEM_FACTORY            (gal_a11y_e_table_item_factory_get_type ())
+#define GAL_A11Y_E_TABLE_ITEM_FACTORY(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAL_A11Y_TYPE_E_TABLE_ITEM_FACTORY, GalA11yETableItemFactory))
+#define GAL_A11Y_E_TABLE_ITEM_FACTORY_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GAL_A11Y_TYPE_E_TABLE_ITEM_FACTORY, GalA11yETableItemFactoryClass))
+#define GAL_A11Y_IS_E_TABLE_ITEM_FACTORY(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAL_A11Y_TYPE_E_TABLE_ITEM_FACTORY))
+#define GAL_A11Y_IS_E_TABLE_ITEM_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAL_A11Y_TYPE_E_TABLE_ITEM_FACTORY))
+
+typedef struct _GalA11yETableItemFactory GalA11yETableItemFactory;
+typedef struct _GalA11yETableItemFactoryClass GalA11yETableItemFactoryClass;
+
+struct _GalA11yETableItemFactory {
+	AtkObject object;
+};
+
+struct _GalA11yETableItemFactoryClass {
+	AtkObjectClass parent_class;
+};
+
+
+/* Standard Glib function */
+GType              gal_a11y_e_table_item_factory_get_type         (void);
+
+#endif /* ! __GAL_A11Y_E_TABLE_FACTORY_H__ */
Index: gal-a11y-e-table.c
===================================================================
RCS file: /cvs/gnome/gal/gal/a11y/e-table/gal-a11y-e-table.c,v
retrieving revision 1.1
diff -u -r1.1 gal-a11y-e-table.c
--- gal-a11y-e-table.c	30 Nov 2002 07:54:15 -0000	1.1
+++ gal-a11y-e-table.c	9 Oct 2003 06:14:34 -0000
@@ -34,6 +34,7 @@
 	ETable *table = E_TABLE (GTK_ACCESSIBLE (a11y)->widget);
 	if (priv->child_item == NULL) {
 		priv->child_item = gal_a11y_e_table_item_new (ATK_OBJECT (a11y), E_TABLE_GROUP_LEAF (table->group)->item, 0);
+		priv->child_item->role = ATK_ROLE_TABLE;
 	}
 }
 
Index: gal-a11y-e-tree-factory.c
===================================================================
RCS file: gal-a11y-e-tree-factory.c
diff -N gal-a11y-e-tree-factory.c
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gal-a11y-e-tree-factory.c	9 Oct 2003 06:14:34 -0000
@@ -0,0 +1,81 @@
+/*
+ * Authors: Yuedong Du <yuedong du sun com>
+ *
+ * Copyright (C) 2003 Ximian, Inc.
+ */
+
+#include <config.h>
+#include "gal-a11y-e-tree-factory.h"
+#include "gal-a11y-e-tree.h"
+
+#define CS_CLASS(factory) (G_TYPE_INSTANCE_GET_CLASS ((factory), C_TYPE_STREAM, GalA11yETreeFactoryClass))
+static AtkObjectFactoryClass *parent_class;
+#define PARENT_TYPE (ATK_TYPE_OBJECT_FACTORY)
+
+/* Static functions */
+
+static GType
+gal_a11y_e_tree_factory_get_accessible_type (void)
+{
+        return GAL_A11Y_TYPE_E_TREE;
+}
+
+static AtkObject*
+gal_a11y_e_tree_factory_create_accessible (GObject *obj)
+{
+	AtkObject *accessible;
+
+	accessible = gal_a11y_e_tree_new (obj);
+
+	return accessible;
+}
+
+static void
+gal_a11y_e_tree_factory_class_init (GalA11yETreeFactoryClass *klass)
+{
+	AtkObjectFactoryClass *factory_class = ATK_OBJECT_FACTORY_CLASS (klass);
+
+	parent_class = g_type_class_ref (PARENT_TYPE);
+
+	factory_class->create_accessible   = gal_a11y_e_tree_factory_create_accessible;
+	factory_class->get_accessible_type = gal_a11y_e_tree_factory_get_accessible_type;
+}
+
+static void
+gal_a11y_e_tree_factory_init (GalA11yETreeFactory *factory)
+{
+}
+
+/**
+ * gal_a11y_e_tree_factory_get_type:
+ * @void: 
+ * 
+ * Registers the &GalA11yETreeFactory class if necessary, and returns the type ID
+ * associated to it.
+ * 
+ * Return value: The type ID of the &GalA11yETreeFactory class.
+ **/
+GType
+gal_a11y_e_tree_factory_get_type (void)
+{
+	static GType type = 0;
+
+	if (!type) {
+		GTypeInfo info = {
+			sizeof (GalA11yETreeFactoryClass),
+			(GBaseInitFunc) NULL,
+			(GBaseFinalizeFunc) NULL,
+			(GClassInitFunc) gal_a11y_e_tree_factory_class_init,
+			(GClassFinalizeFunc) NULL,
+			NULL, /* class_data */
+			sizeof (GalA11yETreeFactory),
+			0,
+			(GInstanceInitFunc) gal_a11y_e_tree_factory_init,
+			NULL /* value_tree */
+		};
+
+		type = g_type_register_static (PARENT_TYPE, "GalA11yETreeFactory", &info, 0);
+	}
+
+	return type;
+}
Index: gal-a11y-e-tree-factory.h
===================================================================
RCS file: gal-a11y-e-tree-factory.h
diff -N gal-a11y-e-tree-factory.h
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gal-a11y-e-tree-factory.h	9 Oct 2003 06:14:34 -0000
@@ -0,0 +1,34 @@
+/*
+ * Authors: Yuedong Du <yuedong du ximian com>
+ *
+ * Copyright (C) 2003 Ximian, Inc.
+ */
+
+#ifndef __GAL_A11Y_E_TREE_FACTORY_H__
+#define __GAL_A11Y_E_TREE_FACTORY_H__
+
+#include <glib-object.h>
+#include <atk/atkobjectfactory.h>
+
+#define GAL_A11Y_TYPE_E_TREE_FACTORY            (gal_a11y_e_table_factory_get_type ())
+#define GAL_A11Y_E_TREE_FACTORY(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAL_A11Y_TYPE_E_TREE_FACTORY, GalA11yETreeFactory))
+#define GAL_A11Y_E_TREE_FACTORY_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GAL_A11Y_TYPE_E_TREE_FACTORY, GalA11yETreeFactoryClass))
+#define GAL_A11Y_IS_E_TREE_FACTORY(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAL_A11Y_TYPE_E_TREE_FACTORY))
+#define GAL_A11Y_IS_E_TREE_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAL_A11Y_TYPE_E_TREE_FACTORY))
+
+typedef struct _GalA11yETreeFactory GalA11yETreeFactory;
+typedef struct _GalA11yETreeFactoryClass GalA11yETreeFactoryClass;
+
+struct _GalA11yETreeFactory {
+	AtkObject object;
+};
+
+struct _GalA11yETreeFactoryClass {
+	AtkObjectClass parent_class;
+};
+
+
+/* Standard Glib function */
+GType              gal_a11y_e_tree_factory_get_type         (void);
+
+#endif /* ! __GAL_A11Y_E_TREE_FACTORY_H__ */
Index: gal-a11y-e-tree.c
===================================================================
RCS file: gal-a11y-e-tree.c
diff -N gal-a11y-e-tree.c
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gal-a11y-e-tree.c	9 Oct 2003 06:14:34 -0000
@@ -0,0 +1,158 @@
+/*
+ * Authors: Yuedong Du <yuedong du sun com>
+ *
+ * Copyright (C) 2003 Ximian, Inc.
+ */
+
+#include <config.h>
+#include "gal-a11y-e-tree.h"
+#include "gal-a11y-util.h"
+#include <gal/e-table/e-tree.h>
+#include <gal/e-table/e-table-item.h>
+
+#define CS_CLASS(a11y) (G_TYPE_INSTANCE_GET_CLASS ((a11y), C_TYPE_STREAM, GalA11yETreeClass))
+static AtkObjectClass *parent_class;
+static GType parent_type;
+static gint priv_offset;
+#define GET_PRIVATE(object) ((GalA11yETreePrivate *) (((char *) object) + priv_offset))
+#define PARENT_TYPE (parent_type)
+
+struct _GalA11yETreePrivate {
+	AtkObject *child_item;
+};
+
+/* Static functions */
+
+static void
+init_child_item (GalA11yETree *a11y)
+{
+	GalA11yETreePrivate *priv = GET_PRIVATE (a11y);
+	ETree *tree = E_TREE (GTK_ACCESSIBLE (a11y)->widget);
+	ETableItem * eti;
+
+	g_return_if_fail (tree);
+	eti = e_tree_get_item (tree);
+	if (priv->child_item == NULL) {
+		priv->child_item = gal_a11y_e_table_item_new (ATK_OBJECT (a11y),eti, 0);
+		priv->child_item->role = ATK_ROLE_TREE_TABLE;
+	}
+}
+
+static AtkObject*
+et_ref_accessible_at_point  (AtkComponent *component,
+			     gint x,
+			     gint y,
+			     AtkCoordType coord_type)
+{
+	GalA11yETree *a11y = GAL_A11Y_E_TREE (component);
+	init_child_item (a11y);
+	return GET_PRIVATE (a11y)->child_item;
+}
+
+static gint
+et_get_n_children (AtkObject *accessible)
+{
+	return 1;
+}
+
+static AtkObject*
+et_ref_child (AtkObject *accessible,
+	      gint i)
+{
+	GalA11yETree *a11y = GAL_A11Y_E_TREE (accessible);
+	if (i != 0)
+		return NULL;
+	init_child_item (a11y);
+	g_object_ref (GET_PRIVATE (a11y)->child_item);
+	return GET_PRIVATE (a11y)->child_item;
+}
+
+static void
+et_class_init (GalA11yETreeClass *klass)
+{
+	AtkObjectClass *atk_object_class = ATK_OBJECT_CLASS (klass);
+
+	parent_class                              = g_type_class_ref (PARENT_TYPE);
+
+	atk_object_class->get_n_children          = et_get_n_children;
+	atk_object_class->ref_child               = et_ref_child;
+}
+
+static void
+et_atk_component_iface_init (AtkComponentIface *iface)
+{
+	iface->ref_accessible_at_point = et_ref_accessible_at_point;
+}
+
+static void
+et_init (GalA11yETree *a11y)
+{
+	GalA11yETreePrivate *priv;
+
+	priv = GET_PRIVATE (a11y);
+
+	priv->child_item = NULL;
+}
+
+/**
+ * gal_a11y_e_tree_get_type:
+ * @void: 
+ * 
+ * Registers the &GalA11yETree class if necessary, and returns the type ID
+ * associated to it.
+ * 
+ * Return value: The type ID of the &GalA11yETree class.
+ **/
+GType
+gal_a11y_e_tree_get_type (void)
+{
+	static GType type = 0;
+
+	if (!type) {
+		AtkObjectFactory *factory;
+
+		GTypeInfo info = {
+			sizeof (GalA11yETreeClass),
+			(GBaseInitFunc) NULL,
+			(GBaseFinalizeFunc) NULL,
+			(GClassInitFunc) et_class_init,
+			(GClassFinalizeFunc) NULL,
+			NULL, /* class_data */
+			sizeof (GalA11yETree),
+			0,
+			(GInstanceInitFunc) et_init,
+			NULL /* value_tree */
+		};
+
+		static const GInterfaceInfo atk_component_info = {
+			(GInterfaceInitFunc) et_atk_component_iface_init,
+			(GInterfaceFinalizeFunc) NULL,
+			NULL
+		};
+
+		factory = atk_registry_get_factory (atk_get_default_registry (), GTK_TYPE_WIDGET);
+		parent_type = atk_object_factory_get_accessible_type (factory);
+
+		type = gal_a11y_type_register_static_with_private (PARENT_TYPE, "GalA11yETree", &info, 0,
+								   sizeof (GalA11yETreePrivate), &priv_offset);
+		g_type_add_interface_static (type, ATK_TYPE_COMPONENT, &atk_component_info);
+	}
+
+	return type;
+}
+
+AtkObject *
+gal_a11y_e_tree_new (GObject *widget)
+{
+	GalA11yETree *a11y;
+	ETree *tree;
+	AtkObject * item;
+
+	tree = E_TREE (widget);
+
+	a11y = g_object_new (gal_a11y_e_tree_get_type (), NULL);
+
+	GTK_ACCESSIBLE (a11y)->widget = GTK_WIDGET (widget);
+
+	return ATK_OBJECT (a11y);
+}
Index: gal-a11y-e-tree.h
===================================================================
RCS file: gal-a11y-e-tree.h
diff -N gal-a11y-e-tree.h
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gal-a11y-e-tree.h	9 Oct 2003 06:14:34 -0000
@@ -0,0 +1,41 @@
+/*
+ * Authors: Yuedong Du <yuedong du sun com>
+ *
+ * Copyright (C) 2003 Ximian, Inc.
+ */
+
+#ifndef __GAL_A11Y_E_TREE_H__
+#define __GAL_A11Y_E_TREE_H__
+
+#include <glib-object.h>
+#include <atk/atkobject.h>
+#include <atk/atkcomponent.h>
+#include <gtk/gtkaccessible.h>
+
+#define GAL_A11Y_TYPE_E_TREE            (gal_a11y_e_tree_get_type ())
+#define GAL_A11Y_E_TREE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAL_A11Y_TYPE_E_TREE, GalA11yETree))
+#define GAL_A11Y_E_TREE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GAL_A11Y_TYPE_E_TREE, GalA11yETreeClass))
+#define GAL_A11Y_IS_E_TREE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAL_A11Y_TYPE_E_TREE))
+#define GAL_A11Y_IS_E_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAL_A11Y_TYPE_E_TREE))
+
+typedef struct _GalA11yETree GalA11yETree;
+typedef struct _GalA11yETreeClass GalA11yETreeClass;
+typedef struct _GalA11yETreePrivate GalA11yETreePrivate;
+
+/* This struct should actually be larger as this isn't what we derive from.
+ * The GalA11yETablePrivate comes right after the parent class structure.
+ **/
+struct _GalA11yETree {
+	GtkAccessible object;
+};
+
+struct _GalA11yETreeClass {
+	GtkAccessibleClass parent_class;
+};
+
+
+/* Standard Glib function */
+GType      gal_a11y_e_tree_get_type  (void);
+AtkObject *gal_a11y_e_tree_new       (GObject *tree);
+
+#endif /* ! __GAL_A11Y_E_TREE_H__ */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]