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