e0288e8f8c97d6766e0d6897f58fd8a449d5789c
[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, 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     fprintf(stderr,
68             ("Accessibility app error: exception during event notification: %s\n"),
69             CORBA_exception_id(ev));
70     exit(-1);
71   }
72   /*
73   fprintf (stderr, "source is component ? : %s\n",
74            Accessibility_Accessible_queryInterface (e->source,
75                                                     "IDL:Accessibility/Component:1.0",
76                                                     ev)
77            ? "yes" : "no");
78   */
79 #endif
80   if (e->source != CORBA_OBJECT_NIL)
81     {
82       Accessibility_Accessible_unref (e->source, ev);
83     }
84 }
85
86 static void
87 spi_listener_class_init (SpiListenerClass *klass)
88 {
89         GObjectClass * object_class = (GObjectClass *) klass;
90         POA_Accessibility_EventListener__epv *epv = &klass->epv;
91         spi_listener_parent_class = g_type_class_peek_parent (klass);
92
93         object_class->finalize = spi_listener_object_finalize;
94
95         epv->notifyEvent = impl_notify_event;
96 }
97
98 static void
99 spi_listener_init (SpiListener *listener)
100 {
101 }
102
103 BONOBO_TYPE_FUNC_FULL (SpiListener,
104                        Accessibility_EventListener,
105                        PARENT_TYPE,
106                        spi_listener);
107
108 SpiListener *
109 spi_listener_new (void)
110 {
111     SpiListener *retval = g_object_new (SPI_LISTENER_TYPE, NULL);
112     return retval;
113 }