]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkinput-none.c
f719b1bdf1eb9a1d977f142a116c1e0ed16f9b36
[~andy/gtk] / gdk / x11 / gdkinput-none.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 #include <config.h>
21 #include "gdkalias.h"
22 #include "gdkinputprivate.h"
23 #include "gdkdisplay-x11.h"
24
25 /*
26  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
27  * file for a list of people on the GTK+ Team.  See the ChangeLog
28  * files for a list of changes.  These files are distributed with
29  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
30  */
31
32 void
33 _gdk_input_init (GdkDisplay *display)
34 {
35   GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);
36   
37   _gdk_init_input_core (display);
38   
39   display_x11->input_devices = g_list_append (NULL, display->core_pointer);
40   display_x11->input_ignore_core = FALSE;
41 }
42
43 void 
44 gdk_device_get_state (GdkDevice       *device,
45                       GdkWindow       *window,
46                       gdouble         *axes,
47                       GdkModifierType *mask)
48 {
49   gint x_int, y_int;
50
51   g_return_if_fail (device != NULL);
52   g_return_if_fail (GDK_IS_WINDOW (window));
53
54   gdk_window_get_pointer (window, &x_int, &y_int, mask);
55
56   if (axes)
57     {
58       axes[0] = x_int;
59       axes[1] = y_int;
60     }
61 }
62
63 gboolean
64 _gdk_device_get_history (GdkDevice         *device,
65                          GdkWindow         *window,
66                          guint32            start,
67                          guint32            stop,
68                          GdkTimeCoord    ***events,
69                          gint              *n_events)
70 {
71   g_warning ("gdk_device_get_history() called for invalid device");
72   return FALSE;
73 }
74
75 gboolean
76 _gdk_input_enable_window(GdkWindow *window, GdkDevicePrivate *gdkdev)
77 {
78   return TRUE;
79 }
80
81 gboolean
82 _gdk_input_disable_window(GdkWindow *window, GdkDevicePrivate *gdkdev)
83 {
84   return TRUE;
85 }
86
87 gboolean
88 _gdk_input_other_event (GdkEvent *event, 
89                         XEvent *xevent, 
90                         GdkWindow *window)
91 {
92   return FALSE;
93 }
94
95 void
96 _gdk_input_configure_event (XConfigureEvent *xevent,
97                             GdkWindow       *window)
98 {
99 }
100
101 void 
102 _gdk_input_enter_event (XCrossingEvent *xevent, 
103                         GdkWindow      *window)
104 {
105 }
106
107 gint 
108 _gdk_input_grab_pointer (GdkWindow *     window,
109                          gint            owner_events,
110                          GdkEventMask    event_mask,
111                          GdkWindow *     confine_to,
112                          guint32         time)
113 {
114   return Success;
115 }
116
117 void
118 _gdk_input_ungrab_pointer (GdkDisplay *display,
119                            guint32     time)
120 {
121 }
122
123 gboolean
124 gdk_device_set_mode (GdkDevice   *device,
125                      GdkInputMode mode)
126 {
127   return FALSE;
128 }
129