/* This file is part of the GtkHTML library.
*
* Copyright 2002 Ximian, Inc.
*
* Author: Radek Doulik
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include
#include "htmltablecell.h"
#include "html.h"
#include "cell.h"
static void html_a11y_cell_class_init (HTMLA11YCellClass *klass);
static void html_a11y_cell_init (HTMLA11YCell *a11y_cell);
static AtkObjectClass *parent_class = NULL;
GType
html_a11y_cell_get_type (void)
{
static GType type = 0;
if (!type) {
static const GTypeInfo tinfo = {
sizeof (HTMLA11YCellClass),
NULL, /* base init */
NULL, /* base finalize */
(GClassInitFunc) html_a11y_cell_class_init, /* class init */
NULL, /* class finalize */
NULL, /* class data */
sizeof (HTMLA11YCell), /* instance size */
0, /* nb preallocs */
(GInstanceInitFunc) html_a11y_cell_init, /* instance init */
NULL /* value cell */
};
type = g_type_register_static (G_TYPE_HTML_A11Y, "HTMLA11YCell", &tinfo, 0);
}
return type;
}
static void
html_a11y_cell_finalize (GObject *obj)
{
G_OBJECT_CLASS (parent_class)->finalize (obj);
}
static void
html_a11y_cell_initialize (AtkObject *obj, gpointer data)
{
/* printf ("html_a11y_cell_initialize\n"); */
if (ATK_OBJECT_CLASS (parent_class)->initialize)
ATK_OBJECT_CLASS (parent_class)->initialize (obj, data);
}
static void
html_a11y_cell_class_init (HTMLA11YCellClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
AtkObjectClass *atk_class = ATK_OBJECT_CLASS (klass);
parent_class = g_type_class_peek_parent (klass);
atk_class->initialize = html_a11y_cell_initialize;
gobject_class->finalize = html_a11y_cell_finalize;
}
static void
html_a11y_cell_init (HTMLA11YCell *a11y_cell)
{
}
AtkObject*
html_a11y_cell_new (HTMLObject *html_obj)
{
GObject *object;
AtkObject *accessible;
g_return_val_if_fail (HTML_IS_TABLE_CELL (html_obj), NULL);
object = g_object_new (G_TYPE_HTML_A11Y_CELL, NULL);
accessible = ATK_OBJECT (object);
atk_object_initialize (accessible, html_obj);
accessible->role = ATK_ROLE_TABLE_CELL;
/* printf ("created new html accessible table cell object\n"); */
return accessible;
}