Bug 792688 - Failed mail print operation causes crash
[evolution.git] / src / libgnomecanvas / gailcanvaswidget.h
blob2351ec5feb45fb2a3ea478cd243e947a1bc61306
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_WIDGET_H__
18 #define __GAIL_CANVAS_WIDGET_H__
20 #include <libgnomecanvas/gnome-canvas.h>
21 #include <atk/atk.h>
22 #include "gailcanvasitem.h"
24 G_BEGIN_DECLS
26 #define GAIL_TYPE_CANVAS_WIDGET (gail_canvas_widget_get_type ())
27 #define GAIL_CANVAS_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIL_TYPE_CANVAS_WIDGET, GailCanvasWidget))
28 #define GAIL_CANVAS_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GAIL_TYPE_CANVAS_WIDGET, GailCanvasWidgetClass))
29 #define GAIL_IS_CANVAS_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIL_TYPE_CANVAS_WIDGET))
30 #define GAIL_IS_CANVAS_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIL_TYPE_CANVAS_WIDGET))
31 #define GAIL_CANVAS_WIDGET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GAIL_TYPE_CANVAS_WIDGET, GailCanvasWidgetClass))
33 typedef struct _GailCanvasWidget GailCanvasWidget;
34 typedef struct _GailCanvasWidgetClass GailCanvasWidgetClass;
36 struct _GailCanvasWidget
38 GailCanvasItem parent;
41 GType gail_canvas_widget_get_type (void);
43 struct _GailCanvasWidgetClass
45 GailCanvasItemClass parent_class;
48 AtkObject * gail_canvas_widget_new (GObject *obj);
50 G_END_DECLS
52 #endif /* __GAIL_CANVAS_WIDGET_H__ */