Hooked up StreamableContent. Fix for #78890.
[platform/core/uifw/at-spi2-atk.git] / cspi / spi-private.h
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2002 Ximian, Inc.
6  *           2002 Sun Microsystems Inc.
7  *           
8  *
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.
13  *
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.
18  *
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.
23  */
24
25 #ifndef _SPI_PRIVATE_H_
26 #define _SPI_PRIVATE_H_
27
28 /* Private internal implementation details of at-spi. */
29
30 #include <libspi/Accessibility.h>
31 #include <cspi/spi.h>
32 #include "cspi/cspi-lowlevel.h"
33 #include "cspi/spi-listener.h"
34
35 struct _Accessible {
36         CORBA_Object objref;
37         /* And some other bits */
38         guint        on_loan : 1;
39         guint        ref_count : 30;
40 };
41
42 struct _AccessibleStateSet {
43         guint   ref_count;
44         GArray *states;
45 };
46
47 #define SPI_INTERNAL_EVENT_MAGIC 0xc3
48 /* 
49  * For internal use by CSPI implementation only
50  */
51 typedef struct {
52   AccessibleEvent event;
53   guint           id;
54   guchar          magic;
55   guchar          type;
56   guint16         ref_count;
57   void           *data; 
58 } InternalEvent;
59
60 struct _SPIException {
61   SPIExceptionType type;
62   CORBA_Object source;
63   CORBA_Environment *ev;
64   SPIExceptionCode code;
65   char * desc;
66 };
67
68 #define CSPI_OBJREF(a) (((Accessible *)(a))->objref)
69
70 CORBA_Environment     *cspi_ev                (void);
71 SPIBoolean             cspi_exception         (void);
72 Accessibility_Registry cspi_registry          (void);
73 Accessible            *cspi_object_add        (CORBA_Object corba_object);
74 void                   cspi_object_ref        (Accessible  *accessible);
75 void                   cspi_object_unref      (Accessible  *accessible);
76 Accessible            *cspi_object_borrow     (CORBA_Object corba_object);
77 Accessible            *cspi_object_take       (CORBA_Object corba_object);
78 void                   cspi_object_return     (Accessible  *accessible);
79 SPIBoolean             cspi_accessible_is_a   (Accessible  *accessible,
80                                                const char  *interface_name);
81 void                   cspi_streams_close_all (void);
82
83 #define cspi_return_if_fail(val)                \
84         if (!(val))                             \
85                 return
86 #define cspi_return_val_if_fail(val, ret)       \
87         if (!(val))                             \
88                 return (ret)
89
90 #define cspi_return_if_ev(err)                  \
91         if (!cspi_check_ev (err))               \
92                 return;
93 #define cspi_return_val_if_ev(err, ret) \
94         if (!cspi_check_ev (err))               \
95                 return (ret);
96
97 #endif /* _SPI_PRIVATE_H_ */