Added API for client-side interception and handling of exceptions.
[platform/upstream/at-spi2-core.git] / test / window-listener-test.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, 2003 Sun Microsystems Inc.,
6  * Copyright 2001, 2002, 2003 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 #include <stdlib.h>
25 #include <unistd.h>
26 #include "../cspi/spi-private.h" /* A hack for now */
27
28 static void report_window_event  (const AccessibleEvent *event, void *user_data);
29 static AccessibleEventListener *window_listener;
30
31 int
32 main (int argc, char **argv)
33 {
34   SPI_init ();
35
36   window_listener = SPI_createAccessibleEventListener (
37           report_window_event, NULL);
38
39   SPI_registerGlobalEventListener (window_listener,
40                                    "window:minimize");
41   SPI_registerGlobalEventListener (window_listener,
42                                    "window:maximize");
43   SPI_registerGlobalEventListener (window_listener,
44                                    "window:restore");
45   SPI_registerGlobalEventListener (window_listener,
46                                    "window:activate");
47   SPI_registerGlobalEventListener (window_listener,
48                                    "window:deactivate");
49   SPI_registerGlobalEventListener (window_listener,
50                                    "window:create");
51   SPI_registerGlobalEventListener (window_listener,
52                                    "window:destroy");
53   SPI_registerGlobalEventListener (window_listener,
54                                    "window:lower");
55   SPI_registerGlobalEventListener (window_listener,
56                                    "window:raise");
57   SPI_registerGlobalEventListener (window_listener,
58                                    "window:resize");
59   SPI_registerGlobalEventListener (window_listener,
60                                    "window:shade");
61   SPI_registerGlobalEventListener (window_listener,
62                                    "window:unshade");
63   SPI_event_main ();
64
65   putenv ("AT_BRIDGE_SHUTDOWN=1");
66
67   /*
68    * TODO: Add a key event listener that calls test_exit, to
69    * deregister and cleanup appropriately.
70    */
71
72   return SPI_exit ();
73 }
74
75 void
76 report_window_event (const AccessibleEvent *event, void *user_data)
77 {
78   char *t, *s = Accessible_getName (event->source);
79   t = AccessibleWindowEvent_getTitleString (event);
80   if (t == NULL) t = "";
81   fprintf (stderr, "%s %s\n", event->type, s, t);
82   SPI_freeString (s);
83   SPI_freeString (t);
84 }
85