Updated Spanish translation
[evolution.git] / libgnomecanvas / gailcanvastext.h
blobb3ef38ae9d27e49be940365b8a3f7f7f364db9ad
1 /* GAIL - The GNOME Accessibility Implementation Library
2 * Copyright 2001 Sun Microsystems Inc.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 * for more details.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 #ifndef __GAIL_CANVAS_TEXT_H__
18 #define __GAIL_CANVAS_TEXT_H__
20 #include <libgnomecanvas/libgnomecanvas.h>
21 #include <atk/atk.h>
22 #include "gailcanvasitem.h"
23 #include <libgail-util/gailtextutil.h>
25 G_BEGIN_DECLS
27 #define GAIL_TYPE_CANVAS_TEXT (gail_canvas_text_get_type ())
28 #define GAIL_CANVAS_TEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIL_TYPE_CANVAS_TEXT, GailCanvasText))
29 #define GAIL_CANVAS_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GAIL_TYPE_CANVAS_TEXT, GailCanvasTextClass))
30 #define GAIL_IS_CANVAS_TEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIL_TYPE_CANVAS_TEXT))
31 #define GAIL_IS_CANVAS_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIL_TYPE_CANVAS_TEXT))
32 #define GAIL_CANVAS_TEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GAIL_TYPE_CANVAS_TEXT, GailCanvasTextClass))
34 typedef struct _GailCanvasText GailCanvasText;
35 typedef struct _GailCanvasTextClass GailCanvasTextClass;
37 GType
38 gail_canvas_text_get_type (void);
40 struct _GailCanvasTextClass
42 GailCanvasItemClass parent_class;
45 AtkObject * gail_canvas_text_new (GObject *obj);
47 G_END_DECLS
49 #endif /* __GAIL_CANVAS_TEXT_H__ */