Changes to introspection generation to remove DOCTYPE and XML
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / 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, 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 /* listener.c: implements the Listener interface */
25
26 #ifdef SPI_DEBUG
27 #include <stdio.h>
28 #endif
29
30 #include <config.h>
31 #include <libspi/listener.h>
32
33 /* Our parent Gtk object type */
34 #define PARENT_TYPE BONOBO_TYPE_OBJECT
35
36 /* A pointer to our parent object class */
37 static GObjectClass *spi_listener_parent_class;
38
39 /*
40  * Implemented GObject::finalize
41  */
42 static void
43 spi_listener_object_finalize (GObject *object)
44 {
45 /*        SpiListener *listener = SPI_LISTENER (object); */
46
47 #ifdef SPI_DEBUG
48         fprintf(stderr, "spi_listener_object_finalize called\n");
49 #endif
50         spi_listener_parent_class->finalize (object);
51 }
52
53 /*
54  * CORBA Accessibility::Listener::notifyEvent method implementation
55  */
56
57 static void
58 impl_notify_event (PortableServer_Servant     servant,
59                    const Accessibility_Event *e,
60                    CORBA_Environment         *ev)
61 {
62 #ifdef SPI_DEBUG
63   fprintf (stderr, "notify %s...\n", e->type);
64   fprintf (stderr, "source name: '%s'\n",
65            Accessibility_Accessible__get_name(e->source, ev));
66   if (ev->_major != CORBA_NO_EXCEPTION) {
67            DBG (2, g_warning ("Accessibility app error: exception during event notification: %s\n"),
68                 CORBA_exception_id(ev)));
69   }
70   /*
71   fprintf (stderr, "source is component ? : %s\n",
72            Accessibility_Accessible_queryInterface (e->source,
73                                                     "IDL:Accessibility/Component:1.0",
74                                                     ev)
75            ? "yes" : "no");
76   */
77 #endif
78   if (e->source != CORBA_OBJECT_NIL)
79     {
80       Accessibility_Accessible_unref (e->source, ev);
81     }
82 }
83
84 static void
85 spi_listener_class_init (SpiListenerClass *klass)
86 {
87         GObjectClass * object_class = (GObjectClass *) klass;
88         POA_Accessibility_EventListener__epv *epv = &klass->epv;
89         spi_listener_parent_class = g_type_class_peek_parent (klass);
90
91         object_class->finalize = spi_listener_object_finalize;
92
93         epv->notifyEvent = impl_notify_event;
94 }
95
96 static void
97 spi_listener_init (SpiListener *listener)
98 {
99 }
100
101 BONOBO_TYPE_FUNC_FULL (SpiListener,
102                        Accessibility_EventListener,
103                        PARENT_TYPE,
104                        spi_listener)
105
106 SpiListener *
107 spi_listener_new (void)
108 {
109     SpiListener *retval = g_object_new (SPI_LISTENER_TYPE, NULL);
110     return retval;
111 }