Gconf-less
[gtkhtml/pkgcrosswire.git] / a11y / cell.h
blobf43df4fb5164ac497db40d1ab359c573e4500e89
1 /* This file is part of the GtkHTML library.
3 * Copyright 2002 Ximian, Inc.
5 * Author: Radek Doulik
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public License
19 * along with this library; see the file COPYING.LIB. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA.
24 #ifndef __HTML_A11Y_CELL_H__
25 #define __HTML_A11Y_CELL_H__
27 #include "html.h"
29 #define G_TYPE_HTML_A11Y_CELL (html_a11y_cell_get_type ())
30 #define HTML_A11Y_CELL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
31 G_TYPE_HTML_A11Y_CELL, \
32 HTMLA11YCell))
33 #define HTML_A11Y_CELL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), \
34 G_TYPE_HTML_A11Y_CELL, \
35 HTMLA11YCellClass))
36 #define G_IS_HTML_A11Y_CELL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_HTML_A11Y_CELL))
37 #define G_IS_HTML_A11Y_CELL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_HTML_A11Y_CELL))
38 #define HTML_A11Y_CELL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_HTML_A11Y_CELL, \
39 HTMLA11YCellClass))
41 typedef struct _HTMLA11YCell HTMLA11YCell;
42 typedef struct _HTMLA11YCellClass HTMLA11YCellClass;
44 struct _HTMLA11YCell {
45 HTMLA11Y html_a11y_object;
48 GType html_a11y_cell_get_type (void);
50 struct _HTMLA11YCellClass {
51 HTMLA11YClass parent_class;
54 AtkObject* html_a11y_cell_new (HTMLObject *o);
56 #endif