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