2 * AT-SPI - Assistive Technology Service Provider Interface
3 * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
5 * Copyright 2002 Ximian, Inc.
6 * 2002 Sun Microsystems Inc.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details.
19 * You should have received a copy of the GNU Library General Public
20 * License along with this library; if not, write to the
21 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 * Boston, MA 02111-1307, USA.
25 #ifndef _SPI_PRIVATE_H_
26 #define _SPI_PRIVATE_H_
28 /* Private internal implementation details of at-spi. */
30 #include <libspi/Accessibility.h>
32 #include "cspi/cspi-lowlevel.h"
33 #include "cspi/spi-listener.h"
37 /* And some other bits */
42 struct _AccessibleStateSet {
47 #define SPI_INTERNAL_EVENT_MAGIC 0xc3
49 * For internal use by CSPI implementation only
52 AccessibleEvent event;
60 struct _SPIException {
61 SPIExceptionType type;
63 CORBA_Environment *ev;
64 SPIExceptionCode code;
68 #define CSPI_OBJREF(a) (((Accessible *)(a))->objref)
70 CORBA_Environment *cspi_ev (void);
71 CORBA_Environment *cspi_peek_ev (void);
72 SPIBoolean cspi_exception (void);
73 Accessibility_Registry cspi_registry (void);
74 Accessible *cspi_object_add (CORBA_Object corba_object);
75 void cspi_object_ref (Accessible *accessible);
76 void cspi_object_unref (Accessible *accessible);
77 Accessible *cspi_object_borrow (CORBA_Object corba_object);
78 Accessible *cspi_object_take (CORBA_Object corba_object);
79 void cspi_object_return (Accessible *accessible);
80 SPIBoolean cspi_accessible_is_a (Accessible *accessible,
81 const char *interface_name);
82 AccessibleRole cspi_role_from_spi_role (Accessibility_Role role);
83 void cspi_streams_close_all (void);
84 gboolean _cspi_exception_throw (CORBA_Environment *ev, char *desc_prefix);
87 #define cspi_return_if_fail(val) \
90 #define cspi_return_val_if_fail(val, ret) \
94 #define cspi_return_if_ev(err) \
95 if (!cspi_check_ev (err)) \
97 #define cspi_return_val_if_ev(err, ret) \
98 if (!cspi_check_ev (err)) \
101 #endif /* _SPI_PRIVATE_H_ */