2001-11-20 Michael Meeks <michael@ximian.com>
[platform/core/uifw/at-spi2-atk.git] / libspi / relation.h
1 /* AT-SPI -  Assistive Technology Service Provider Interface
2  *
3  * Copyright 2001 Sun Microsystems Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef SPI_RELATION_H_
22 #define SPI_RELATION_H_
23
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif /* __cplusplus */
28
29 #include <bonobo/bonobo-object.h>
30 #include <atk/atk.h>
31 #include <libspi/Accessibility.h>
32
33 #define SPI_RELATION_TYPE        (spi_relation_get_type ())
34 #define SPI_RELATION(obj)          (G_TYPE_CHECK_INSTANCE_CAST ((obj), SPI_RELATION_TYPE, SpiRelation))
35 #define SPI_RELATION_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass), SPI_RELATION_TYPE, SpiRelationClass))
36 #define IS_SPI_RELATION(obj)       (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SPI_RELATION_TYPE))
37 #define IS_SPI_RELATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SPI_RELATION_TYPE))
38
39 typedef struct _SpiRelation SpiRelation;
40 typedef struct _SpiRelationClass SpiRelationClass;
41
42 struct _SpiRelation {
43   BonoboObject parent;
44   AtkRelation *relation;
45 };
46
47 struct _SpiRelationClass {
48   BonoboObjectClass parent_class;
49   POA_Accessibility_Relation__epv epv;
50 };
51
52 GType
53 spi_relation_get_type   (void);
54
55 SpiRelation *
56 spi_relation_new       (AtkRelation *relation);
57
58 #ifdef __cplusplus
59 }
60 #endif /* __cplusplus */
61
62 #endif /* SPI_RELATION_H_ */