Added Document interface for gnome 2.16 release. Bug/RFE #326520, with
[platform/core/uifw/at-spi2-atk.git] / cspi / spi-impl.h
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001, 2002 Sun Microsystems Inc.,
6  * Copyright 2001, 2002 Ximian, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 /*
25  * A load of opaque handles that people can't poke at.
26  */
27 #ifndef _SPI_IMPL_H_
28 #define _SPI_IMPL_H_
29
30 #ifdef  __cplusplus
31 extern "C" {
32 #endif
33
34 typedef struct _Accessible AccessibleUnknown;
35 typedef AccessibleUnknown  Accessible;
36
37 typedef Accessible AccessibleAction;
38 typedef Accessible AccessibleApplication;
39 typedef Accessible AccessibleComponent;
40 typedef Accessible AccessibleDocument;
41 typedef Accessible AccessibleEditableText;
42 typedef Accessible AccessibleHyperlink;
43 typedef Accessible AccessibleHypertext;
44 typedef Accessible AccessibleImage;
45 typedef Accessible AccessibleRelation;
46 typedef Accessible AccessibleSelection;
47 typedef Accessible AccessibleStreamableContent;
48 typedef Accessible AccessibleTable;
49 typedef Accessible AccessibleText;
50 typedef Accessible AccessibleValue;
51 typedef Accessible AccessibilityRegistry;
52
53 /** 
54  * AccessibleStateSet:
55  * @ref_count: private
56  * @states: private
57  *
58  * An opaque structure representing an accessible object's state,
59  * which can then be queried via AccessibleStateSet APIs.
60  **/
61 typedef void AccessibleStateSet;
62 typedef void AccessibleEventListener;
63 typedef void AccessibleKeystrokeListener;
64 typedef void AccessibleDeviceListener;
65
66 typedef unsigned int SPIBoolean;
67 #define SPI_FALSE (0)
68 #define SPI_TRUE (!SPI_FALSE)
69
70 #ifdef  __cplusplus
71 }
72 #endif
73
74 #endif