source: trunk/third/gail/gail/gailcanvasgroup.h @ 18341

Revision 18341, 2.1 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18340, which included commits to RCS files with non-trunk default branches.
Line 
1/* GAIL - The GNOME Accessibility Implementation Library
2 * Copyright 2001 Sun Microsystems Inc.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 */
19
20#ifndef __GAIL_CANVAS_GROUP_H__
21#define __GAIL_CANVAS_GROUP_H__
22
23#include <libgnomecanvas/gnome-canvas.h>
24#include <atk/atk.h>
25#include <gail/gailcanvasitem.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif /* __cplusplus */
30
31#define GAIL_TYPE_CANVAS_GROUP                  (gail_canvas_group_get_type ())
32#define GAIL_CANVAS_GROUP(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIL_TYPE_CANVAS_GROUP, GailCanvasGroup))
33#define GAIL_CANVAS_GROUP_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GAIL_TYPE_CANVAS_GROUP, GailCanvasGroupClass))
34#define GAIL_IS_CANVAS_GROUP(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIL_TYPE_CANVAS_GROUP))
35#define GAIL_IS_CANVAS_GROUP_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIL_TYPE_CANVAS_GROUP))
36#define GAIL_CANVAS_GROUP_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GAIL_TYPE_CANVAS_GROUP, GailCanvasGroupClass))
37
38typedef struct _GailCanvasGroup                 GailCanvasGroup;
39typedef struct _GailCanvasGroupClass            GailCanvasGroupClass;
40
41struct _GailCanvasGroup
42{
43  GailCanvasItem parent;
44};
45
46GType gail_canvas_group_get_type (void);
47
48struct _GailCanvasGroupClass
49{
50  GailCanvasItemClass parent_class;
51};
52
53AtkObject* gail_canvas_group_new (GObject *obj);
54
55#ifdef __cplusplus
56}
57#endif /* __cplusplus */
58
59
60#endif /* __GAIL_CANVAS_GROUP_H__ */
Note: See TracBrowser for help on using the repository browser.