libspi/stateset.c libspi/stateset.h libspi/Makefile.am:
[platform/core/uifw/at-spi2-atk.git] / libspi / stateset.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_STATE_SET_H_
22 #define SPI_STATE_SET_H_
23
24 #include <libspi/base.h>
25 #include <atk/atkstateset.h>
26
27 G_BEGIN_DECLS
28
29 #define SPI_STATE_SET_TYPE            (spi_state_set_get_type ())
30 #define SPI_STATE_SET(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), SPI_STATE_SET_TYPE, SpiStateSet))
31 #define SPI_STATE_SET_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass), SPI_STATE_SET_TYPE, SpiStateSetClass))
32 #define SPI_IS_STATE_SET(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SPI_STATE_SET_TYPE))
33 #define SPI_IS_STATE_SET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SPI_STATE_SET_TYPE))
34
35 typedef struct _SpiStateSet SpiStateSet;
36 typedef struct _SpiStateSetClass SpiStateSetClass;
37
38 struct _SpiStateSet {
39   SpiBase parent;
40 };
41
42 struct _SpiStateSetClass {
43   SpiBaseClass parent_class;
44   POA_Accessibility_StateSet__epv epv;
45 };
46
47 GType        spi_state_set_get_type (void);
48 SpiStateSet *spi_state_set_new      (AtkStateSet *set);
49
50 G_END_DECLS
51
52 #endif /* SPI_STATE_SET_H_ */