Bug 792688 - Failed mail print operation causes crash
[evolution.git] / src / libgnomecanvas / gailcanvasitemfactory.h
blob180ad94e744d3ffd42aa2eea1baba043e1b11a1d
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_ITEM_FACTORY_H__
18 #define __GAIL_CANVAS_ITEM_FACTORY_H__
20 #include <atk/atkobjectfactory.h>
22 G_BEGIN_DECLS
24 #define GAIL_TYPE_CANVAS_ITEM_FACTORY (gail_canvas_item_factory_get_type ())
25 #define GAIL_CANVAS_ITEM_FACTORY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIL_TYPE_CANVAS_ITEM_FACTORY, GailCanvasItemFactory))
26 #define GAIL_CANVAS_ITEM_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GAIL_TYPE_CANVAS_ITEM_FACTORY, GailCanvasItemFactoryClass))
27 #define GAIL_IS_CANVAS_ITEM_FACTORY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIL_TYPE_CANVAS_ITEM_FACTORY))
28 #define GAIL_IS_CANVAS_ITEM_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIL_TYPE_CANVAS_ITEM_FACTORY))
29 #define GAIL_CANVAS_ITEM_FACTORY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GAIL_TYPE_CANVAS_ITEM_FACTORY, GailCanvasItemFactoryClass))
31 typedef struct _GailCanvasItemFactory GailCanvasItemFactory;
32 typedef struct _GailCanvasItemFactoryClass GailCanvasItemFactoryClass;
34 struct _GailCanvasItemFactory
36 AtkObjectFactory parent;
39 struct _GailCanvasItemFactoryClass
41 AtkObjectFactoryClass parent_class;
44 GType gail_canvas_item_factory_get_type (void);
46 G_END_DECLS
48 #endif /* __GAIL_CANVAS_ITEM_FACTORY_H__ */