2001-11-20 Michael Meeks <michael@ximian.com>
[platform/core/uifw/at-spi2-atk.git] / libspi / listener.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001 Sun Microsystems Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /* listener.c: implements the Listener interface */
24
25 #ifdef SPI_DEBUG
26 #include <stdio.h>
27 #endif
28
29 #include <config.h>
30 #include <libspi/listener.h>
31
32 /* Our parent Gtk object type */
33 #define PARENT_TYPE BONOBO_TYPE_OBJECT
34
35 /* A pointer to our parent object class */
36 static GObjectClass *spi_listener_parent_class;
37
38 /*
39  * Implemented GObject::finalize
40  */
41 static void
42 spi_listener_object_finalize (GObject *object)
43 {
44 /*        SpiListener *listener = SPI_LISTENER (object); */
45
46 #ifdef SPI_DEBUG
47         fprintf(stderr, "spi_listener_object_finalize called\n");
48 #endif
49         spi_listener_parent_class->finalize (object);
50 }
51
52 /*
53  * CORBA Accessibility::Listener::notifyEvent method implementation
54  */
55
56 static void
57 impl_notify_event (PortableServer_Servant     servant,
58                    const Accessibility_Event *e,
59                    CORBA_Environment         *ev)
60 {
61 #ifdef SPI_DEBUG
62   fprintf (stderr, "notify %s...\n", e->type);
63   fprintf (stderr, "source name: '%s'\n",
64            Accessibility_Accessible__get_name(e->source, ev));
65   if (ev->_major != CORBA_NO_EXCEPTION) {
66     fprintf(stderr,
67             ("Accessibility app error: exception during event notification: %s\n"),
68             CORBA_exception_id(ev));
69     exit(-1);
70   }
71   /*
72   fprintf (stderr, "source is component ? : %s\n",
73            Accessibility_Accessible_queryInterface (e->source,
74                                                     "IDL:Accessibility/Component:1.0",
75                                                     ev)
76            ? "yes" : "no");
77   */
78 #endif
79   Accessibility_Accessible_unref (e->source, ev);
80 }
81
82 static void
83 spi_listener_class_init (SpiListenerClass *klass)
84 {
85         GObjectClass * object_class = (GObjectClass *) klass;
86         POA_Accessibility_EventListener__epv *epv = &klass->epv;
87         spi_listener_parent_class = g_type_class_peek_parent (klass);
88
89         object_class->finalize = spi_listener_object_finalize;
90
91         epv->notifyEvent = impl_notify_event;
92 }
93
94 static void
95 spi_listener_init (SpiListener *listener)
96 {
97 }
98
99 GType
100 spi_listener_get_type (void)
101 {
102         static GType type = 0;
103
104         if (!type) {
105                 static const GTypeInfo tinfo = {
106                         sizeof (SpiListenerClass),
107                         (GBaseInitFunc) NULL,
108                         (GBaseFinalizeFunc) NULL,
109                         (GClassInitFunc) spi_listener_class_init,
110                         (GClassFinalizeFunc) NULL,
111                         NULL, /* class data */
112                         sizeof (SpiListener),
113                         0, /* n preallocs */
114                         (GInstanceInitFunc) spi_listener_init,
115                         NULL /* value table */
116                 };
117                 /*
118                  *   Here we use bonobo_type_unique instead of
119                  * gtk_type_unique, this auto-generates a load of
120                  * CORBA structures for us. All derived types must
121                  * use bonobo_type_unique.
122                  */
123                 type = bonobo_type_unique (
124                         PARENT_TYPE,
125                         POA_Accessibility_EventListener__init,
126                         NULL,
127                         G_STRUCT_OFFSET (SpiListenerClass, epv),
128                         &tinfo,
129                         "SpiListener");
130         }
131
132         return type;
133 }
134
135 SpiListener *
136 spi_listener_new (void)
137 {
138     SpiListener *retval =
139                SPI_LISTENER (g_object_new (spi_listener_get_type (), NULL));
140     return retval;
141 }