Gconf-less
[gtkhtml/pkgcrosswire.git] / a11y / table.h
blob097c942f068652cf4b14d8f551db0c5174978e23
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_TABLE_H__
25 #define __HTML_A11Y_TABLE_H__
27 #include "html.h"
29 #define G_TYPE_HTML_A11Y_TABLE (html_a11y_table_get_type ())
30 #define HTML_A11Y_TABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
31 G_TYPE_HTML_A11Y_TABLE, \
32 HTMLA11YTable))
33 #define HTML_A11Y_TABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), \
34 G_TYPE_HTML_A11Y_TABLE, \
35 HTMLA11YTableClass))
36 #define G_IS_HTML_A11Y_TABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_HTML_A11Y_TABLE))
37 #define G_IS_HTML_A11Y_TABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_HTML_A11Y_TABLE))
38 #define HTML_A11Y_TABLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_HTML_A11Y_TABLE, \
39 HTMLA11YTableClass))
41 typedef struct _HTMLA11YTable HTMLA11YTable;
42 typedef struct _HTMLA11YTableClass HTMLA11YTableClass;
44 struct _HTMLA11YTable {
45 HTMLA11Y html_a11y_object;
48 GType html_a11y_table_get_type (void);
50 struct _HTMLA11YTableClass {
51 HTMLA11YClass parent_class;
54 AtkObject* html_a11y_table_new (HTMLObject *o);
56 #endif