1 /* GAIL - The GNOME Accessibility Implementation Library
2  * Copyright 2001 Sun Microsystems Inc.
3  *
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.
7  *
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.
12  *
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/>.
15  */
16 
17 #ifndef __GAIL_CANVAS_TEXT_H__
18 #define __GAIL_CANVAS_TEXT_H__
19 
20 #include <libgnomecanvas/libgnomecanvas.h>
21 #include <atk/atk.h>
22 #include "gailcanvasitem.h"
23 #include <libgail-util/gailtextutil.h>
24 
25 G_BEGIN_DECLS
26 
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))
33 
34 typedef struct _GailCanvasText                 GailCanvasText;
35 typedef struct _GailCanvasTextClass            GailCanvasTextClass;
36 
37 GType
38 gail_canvas_text_get_type (void);
39 
40 struct _GailCanvasTextClass
41 {
42   GailCanvasItemClass parent_class;
43 };
44 
45 AtkObject * gail_canvas_text_new (GObject *obj);
46 
47 G_END_DECLS
48 
49 #endif /* __GAIL_CANVAS_TEXT_H__ */
50