Removed po directory from Makefile.am for now.
[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   if (e->source != CORBA_OBJECT_NIL)
80     {
81       Accessibility_Accessible_unref (e->source, ev);
82     }
83 }
84
85 static void
86 spi_listener_class_init (SpiListenerClass *klass)
87 {
88         GObjectClass * object_class = (GObjectClass *) klass;
89         POA_Accessibility_EventListener__epv *epv = &klass->epv;
90         spi_listener_parent_class = g_type_class_peek_parent (klass);
91
92         object_class->finalize = spi_listener_object_finalize;
93
94         epv->notifyEvent = impl_notify_event;
95 }
96
97 static void
98 spi_listener_init (SpiListener *listener)
99 {
100 }
101
102 BONOBO_TYPE_FUNC_FULL (SpiListener,
103                        Accessibility_EventListener,
104                        PARENT_TYPE,
105                        spi_listener);
106
107 SpiListener *
108 spi_listener_new (void)
109 {
110     SpiListener *retval = g_object_new (SPI_LISTENER_TYPE, NULL);
111     return retval;
112 }