]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkinput.c
Change FSF Address
[~andy/gtk] / gdk / win32 / 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, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
23  */
24
25 /* This file should really be one level up, in the backend-independent
26  * GDK, and the x11/gdkinput.c could also be removed.
27  * 
28  * That stuff in x11/gdkinput.c which really *is* X11-dependent should
29  * be in x11/gdkinput-x11.c.
30  */
31
32 #include "config.h"
33
34 #include "gdkdisplay.h"
35 #include "gdkdevice.h"
36 #include "gdkdisplayprivate.h"
37
38 #include "gdkprivate-win32.h"
39 #include "gdkdevicemanager-win32.h"
40
41 gint              _gdk_input_ignore_core;
42
43 GList            *_gdk_input_devices;
44 GList            *_gdk_input_windows;
45
46 GList *
47 gdk_devices_list (void)
48 {
49   return _gdk_win32_display_list_devices (_gdk_display);
50 }
51
52 GList *
53 _gdk_win32_display_list_devices (GdkDisplay *dpy)
54 {
55   g_return_val_if_fail (dpy == _gdk_display, NULL);
56
57   return _gdk_input_devices;
58 }
59
60 /* FIXME: this routine currently needs to be called between creation
61    and the corresponding configure event (because it doesn't get the
62    root_relative_geometry).  This should work with
63    gtk_window_set_extension_events, but will likely fail in other
64    cases */
65
66 void
67 gdk_input_set_extension_events (GdkWindow *window, gint mask,
68                                 GdkExtensionMode mode)
69 {
70   GdkDeviceManager *device_manager;
71   GList *devices, *d;
72
73   g_return_if_fail (GDK_IS_WINDOW (window));
74
75   if (GDK_WINDOW_DESTROYED (window))
76     return;
77
78   if (mode == GDK_EXTENSION_EVENTS_NONE)
79     mask = 0;
80
81   window->extension_events = mask;
82
83   device_manager = gdk_display_get_device_manager (_gdk_display);
84   devices = gdk_device_manager_list_devices (device_manager,
85                                              GDK_DEVICE_TYPE_FLOATING);
86
87   for (d = devices; d; d = d->next)
88     {
89       GdkDevice *dev;
90       gint dev_mask;
91
92       dev = d->data;
93       dev_mask = mask;
94
95       if (gdk_device_get_mode (dev) == GDK_MODE_DISABLED ||
96           (!gdk_device_get_has_cursor (dev) && mode == GDK_EXTENSION_EVENTS_CURSOR))
97         dev_mask = 0;
98
99       gdk_window_set_device_events (window, dev, mask);
100     }
101
102   g_list_free (devices);
103 }
104
105 void
106 _gdk_input_init (GdkDisplay *display)
107 {
108   GdkDeviceManagerWin32 *device_manager;
109
110   _gdk_input_ignore_core = FALSE;
111
112   device_manager = g_object_new (GDK_TYPE_DEVICE_MANAGER_WIN32,
113                                  "display", display,
114                                  NULL);
115   display->device_manager = GDK_DEVICE_MANAGER (device_manager);
116
117   display->core_pointer = device_manager->core_pointer;
118
119   _gdk_input_devices = g_list_append (NULL, display->core_pointer);
120   _gdk_input_devices = g_list_concat (_gdk_input_devices,
121                                       g_list_copy (device_manager->wintab_devices));
122
123   _gdk_input_wintab_init_check (device_manager);
124
125 }