]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkinput.c
Set the display.
[~andy/gtk] / gdk / x11 / gdkinput.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include <stdlib.h>
28 #include <X11/Xlib.h>
29 #include <X11/Xutil.h>
30 #include "config.h"
31
32 #include "gdkx.h"
33 #include "gdkinput.h"
34 #include "gdkprivate.h"
35 #include "gdkinputprivate.h"
36 #include "gdkscreen-x11.h"
37 #include "gdkdisplay-x11.h"
38
39 static GdkDeviceAxis gdk_input_core_axes[] = {
40   { GDK_AXIS_X, 0, 0 },
41   { GDK_AXIS_Y, 0, 0 }
42 };
43
44 void
45 _gdk_init_input_core (GdkDisplay *display)
46 {
47   GdkDevicePrivate *private;
48   
49   display->core_pointer = g_object_new (GDK_TYPE_DEVICE, NULL);
50   private = (GdkDevicePrivate *)display->core_pointer;
51   
52   display->core_pointer->name = "Core Pointer";
53   display->core_pointer->source = GDK_SOURCE_MOUSE;
54   display->core_pointer->mode = GDK_MODE_SCREEN;
55   display->core_pointer->has_cursor = TRUE;
56   display->core_pointer->num_axes = 2;
57   display->core_pointer->axes = gdk_input_core_axes;
58   display->core_pointer->num_keys = 0;
59   display->core_pointer->keys = NULL;
60
61   private->display = display;
62 }
63
64 GType
65 gdk_device_get_type (void)
66 {
67   static GType object_type = 0;
68
69   if (!object_type)
70     {
71       static const GTypeInfo object_info =
72       {
73         sizeof (GdkDeviceClass),
74         (GBaseInitFunc) NULL,
75         (GBaseFinalizeFunc) NULL,
76         (GClassInitFunc) NULL,
77         NULL,           /* class_finalize */
78         NULL,           /* class_data */
79         sizeof (GdkDevicePrivate),
80         0,              /* n_preallocs */
81         (GInstanceInitFunc) NULL,
82       };
83       
84       object_type = g_type_register_static (G_TYPE_OBJECT,
85                                             "GdkDevice",
86                                             &object_info, 0);
87     }
88   
89   return object_type;
90 }
91
92 /**
93  * gdk_devices_list:
94  *
95  * Returns the list of available input devices for the default display.
96  * The list is statically allocated and should not be freed.
97  * 
98  * Return value: a list of #GdkDevice
99  **/
100 GList *
101 gdk_devices_list (void)
102 {
103   return gdk_display_list_devices (gdk_get_default_display ());
104 }
105
106 /**
107  * gdk_display_list_devices:
108  * @display : a #GdkDisplay
109  *
110  * Returns the list of available input devices attached to @display.
111  * The list is statically allocated and should not be freed.
112  * 
113  * Return value: a list of #GdkDevice
114  **/
115 GList * 
116 gdk_display_list_devices (GdkDisplay *display)
117 {
118   g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
119   
120   return GDK_DISPLAY_X11 (display)->input_devices;
121 }
122
123 void
124 gdk_device_set_source (GdkDevice      *device,
125                        GdkInputSource  source)
126 {
127   g_return_if_fail (device != NULL);
128
129   device->source = source;
130 }
131
132 void
133 gdk_device_set_key (GdkDevice      *device,
134                     guint           index,
135                     guint           keyval,
136                     GdkModifierType modifiers)
137 {
138   g_return_if_fail (device != NULL);
139   g_return_if_fail (index < device->num_keys);
140
141   device->keys[index].keyval = keyval;
142   device->keys[index].modifiers = modifiers;
143 }
144
145 void
146 gdk_device_set_axis_use (GdkDevice   *device,
147                          guint        index,
148                          GdkAxisUse   use)
149 {
150   g_return_if_fail (device != NULL);
151   g_return_if_fail (index < device->num_axes);
152
153   device->axes[index].use = use;
154
155   switch (use)
156     {
157     case GDK_AXIS_X:
158     case GDK_AXIS_Y:
159       device->axes[index].min = 0.;
160       device->axes[index].max = 0.;
161       break;
162     case GDK_AXIS_XTILT:
163     case GDK_AXIS_YTILT:
164       device->axes[index].min = -1.;
165       device->axes[index].max = 1;
166       break;
167     default:
168       device->axes[index].min = 0.;
169       device->axes[index].max = 1;
170       break;
171     }
172 }
173
174 gboolean
175 gdk_device_get_history  (GdkDevice         *device,
176                          GdkWindow         *window,
177                          guint32            start,
178                          guint32            stop,
179                          GdkTimeCoord    ***events,
180                          gint              *n_events)
181 {
182   GdkTimeCoord **coords;
183   int i;
184
185   g_return_val_if_fail (window != NULL, FALSE);
186   g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
187   g_return_val_if_fail (events != NULL, FALSE);
188   g_return_val_if_fail (n_events != NULL, FALSE);
189
190   *n_events = 0;
191   *events = NULL;
192
193   if (GDK_WINDOW_DESTROYED (window))
194     return FALSE;
195     
196   if (GDK_IS_CORE (device))
197     {
198       XTimeCoord *xcoords;
199       
200       xcoords = XGetMotionEvents (GDK_DRAWABLE_XDISPLAY (window),
201                                   GDK_DRAWABLE_XID (window),
202                                   start, stop, n_events);
203       if (xcoords)
204         {
205           coords = _gdk_device_allocate_history (device, *n_events);
206           for (i=0; i<*n_events; i++)
207             {
208               coords[i]->time = xcoords[i].time;
209               coords[i]->axes[0] = xcoords[i].x;
210               coords[i]->axes[1] = xcoords[i].y;
211             }
212
213           XFree (xcoords);
214
215           *events = coords;
216           return TRUE;
217         }
218       else
219         return FALSE;
220     }
221   else
222     return _gdk_device_get_history (device, window, start, stop, events, n_events);
223 }
224
225 GdkTimeCoord ** 
226 _gdk_device_allocate_history (GdkDevice *device,
227                               gint       n_events)
228 {
229   GdkTimeCoord **result = g_new (GdkTimeCoord *, n_events);
230   gint i;
231
232   for (i=0; i<n_events; i++)
233     result[i] = g_malloc (sizeof (GdkTimeCoord) -
234                           sizeof (double) * (GDK_MAX_TIMECOORD_AXES - device->num_axes));
235
236   return result;
237 }
238
239 void 
240 gdk_device_free_history (GdkTimeCoord **events,
241                          gint           n_events)
242 {
243   gint i;
244   
245   for (i=0; i<n_events; i++)
246     g_free (events[i]);
247
248   g_free (events);
249 }
250
251 GdkInputWindow *
252 gdk_input_window_find(GdkWindow *window)
253 {
254   GList *tmp_list;
255   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (GDK_WINDOW_DISPLAY (window));
256
257   for (tmp_list=display_x11->input_windows; tmp_list; tmp_list=tmp_list->next)
258     if (((GdkInputWindow *)(tmp_list->data))->window == window)
259       return (GdkInputWindow *)(tmp_list->data);
260
261   return NULL;      /* Not found */
262 }
263
264 /* FIXME: this routine currently needs to be called between creation
265    and the corresponding configure event (because it doesn't get the
266    root_relative_geometry).  This should work with
267    gtk_window_set_extension_events, but will likely fail in other
268    cases */
269
270 void
271 gdk_input_set_extension_events (GdkWindow *window, gint mask,
272                                 GdkExtensionMode mode)
273 {
274   GdkWindowObject *window_private;
275   GList *tmp_list;
276   GdkInputWindow *iw;
277   GdkDisplayX11 *display_x11;
278
279   g_return_if_fail (window != NULL);
280   g_return_if_fail (GDK_IS_WINDOW (window));
281
282   window_private = (GdkWindowObject*) window;
283   display_x11 = GDK_DISPLAY_X11 (GDK_WINDOW_DISPLAY (window));
284   if (GDK_WINDOW_DESTROYED (window))
285     return;
286
287   if (mode == GDK_EXTENSION_EVENTS_NONE)
288     mask = 0;
289
290   if (mask != 0)
291     {
292       iw = g_new(GdkInputWindow,1);
293
294       iw->window = window;
295       iw->mode = mode;
296
297       iw->obscuring = NULL;
298       iw->num_obscuring = 0;
299       iw->grabbed = FALSE;
300
301       display_x11->input_windows = g_list_append(display_x11->input_windows,iw);
302       window_private->extension_events = mask;
303
304       /* Add enter window events to the event mask */
305       /* FIXME, this is not needed for XINPUT_NONE */
306       gdk_window_set_events (window,
307                              gdk_window_get_events (window) | 
308                              GDK_ENTER_NOTIFY_MASK);
309     }
310   else
311     {
312       iw = gdk_input_window_find (window);
313       if (iw)
314         {
315           display_x11->input_windows = g_list_remove(display_x11->input_windows,iw);
316           g_free(iw);
317         }
318
319       window_private->extension_events = 0;
320     }
321
322   for (tmp_list = display_x11->input_devices; tmp_list; tmp_list = tmp_list->next)
323     {
324       GdkDevicePrivate *gdkdev = tmp_list->data;
325
326       if (!GDK_IS_CORE (gdkdev))
327         {
328           if (mask != 0 && gdkdev->info.mode != GDK_MODE_DISABLED
329               && (gdkdev->info.has_cursor || mode == GDK_EXTENSION_EVENTS_ALL))
330             _gdk_input_enable_window (window,gdkdev);
331           else
332             _gdk_input_disable_window (window,gdkdev);
333         }
334     }
335 }
336
337 void
338 gdk_input_window_destroy (GdkWindow *window)
339 {
340   GdkInputWindow *input_window;
341   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (GDK_WINDOW_DISPLAY (window));
342
343   input_window = gdk_input_window_find (window);
344   g_return_if_fail (input_window != NULL);
345
346   display_x11->input_windows = g_list_remove (display_x11->input_windows, input_window);
347   g_free(input_window);
348 }
349
350 void
351 _gdk_input_exit (void)
352 {
353   GList *tmp_list;
354   GSList *display_list;
355   GdkDevicePrivate *gdkdev;
356
357   for (display_list = _gdk_displays ; display_list ; display_list = display_list->next)
358     {
359       GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display_list->data);
360       
361       for (tmp_list = display_x11->input_devices; tmp_list; tmp_list = tmp_list->next)
362         {
363           gdkdev = (GdkDevicePrivate *)(tmp_list->data);
364           if (!GDK_IS_CORE (gdkdev))
365             {
366               gdk_device_set_mode (&gdkdev->info, GDK_MODE_DISABLED);
367               
368               g_free(gdkdev->info.name);
369 #ifndef XINPUT_NONE       
370               g_free(gdkdev->axes);
371 #endif    
372               g_free(gdkdev->info.axes);
373               g_free(gdkdev->info.keys);
374               g_free(gdkdev);
375             }
376         }
377       
378       g_list_free(display_x11->input_devices);
379       
380       for (tmp_list = display_x11->input_windows; tmp_list; tmp_list = tmp_list->next)
381         g_free(tmp_list->data);
382       
383       g_list_free(display_x11->input_windows);
384     }
385 }
386
387 /**
388  * gdk_device_get_axis:
389  * @device: a #GdkDevice
390  * @axes: pointer to an array of axes
391  * @use: the use to look for
392  * @value: location to store the found value.
393  * 
394  * Interprets an array of double as axis values for a given device,
395  * and locates the value in the array for a given axis use.
396  * 
397  * Return value: %TRUE if the given axis use was found, otherwise %FALSE
398  **/
399 gboolean
400 gdk_device_get_axis (GdkDevice  *device,
401                      gdouble    *axes,
402                      GdkAxisUse  use,
403                      gdouble    *value)
404 {
405   gint i;
406   
407   g_return_val_if_fail (device != NULL, FALSE);
408
409   if (axes == NULL)
410     return FALSE;
411   
412   for (i=0; i<device->num_axes; i++)
413     if (device->axes[i].use == use)
414       {
415         if (value)
416           *value = axes[i];
417         return TRUE;
418       }
419   
420   return FALSE;
421 }