Updated Esperanto translation
[gtkhtml.git] / a11y / text.h
blob2f78eda777433f12093ec79bb18a57dd04802322
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_TEXT_H__
25 #define __HTML_A11Y_TEXT_H__
27 #include <libgail-util/gail-util.h>
28 #include "html.h"
30 #define G_TYPE_HTML_A11Y_TEXT (html_a11y_text_get_type ())
31 #define HTML_A11Y_TEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
32 G_TYPE_HTML_A11Y_TEXT, \
33 HTMLA11YText))
34 #define HTML_A11Y_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), \
35 G_TYPE_HTML_A11Y_TEXT, \
36 HTMLA11YTextClass))
37 #define G_IS_HTML_A11Y_TEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_HTML_A11Y_TEXT))
38 #define G_IS_HTML_A11Y_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_HTML_A11Y_TEXT))
39 #define HTML_A11Y_TEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_HTML_A11Y_TEXT, \
40 HTMLA11YTextClass))
42 typedef struct _HTMLA11YText HTMLA11YText;
43 typedef struct _HTMLA11YTextClass HTMLA11YTextClass;
45 struct _HTMLA11YText {
46 HTMLA11Y html_a11y_object;
48 GailTextUtil *util;
51 GType html_a11y_text_get_type (void);
53 struct _HTMLA11YTextClass {
54 HTMLA11YClass parent_class;
57 AtkObject * html_a11y_text_new (HTMLObject *o);
59 #endif