]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkinput-none.c
get directfb building with csw
[~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 "gdkinputprivate.h"
22 #include "gdkdisplay-x11.h"
23 #include "gdkalias.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->ignore_core_events = 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 void
76 _gdk_input_select_events (GdkWindow        *impl_window,
77                           GdkDevicePrivate *gdkdev)
78 {
79 }
80
81 gboolean
82 _gdk_input_other_event (GdkEvent *event, 
83                         XEvent *xevent, 
84                         GdkWindow *window)
85 {
86   return FALSE;
87 }
88
89 void
90 _gdk_input_configure_event (XConfigureEvent *xevent,
91                             GdkWindow       *window)
92 {
93 }
94
95 void 
96 _gdk_input_crossing_event (GdkWindow *window,
97                            gboolean enter)
98 {
99 }
100
101 gint 
102 _gdk_input_grab_pointer (GdkWindow *     window,
103                          GdkWindow      *native_window,
104                          gint            owner_events,
105                          GdkEventMask    event_mask,
106                          GdkWindow *     confine_to,
107                          guint32         time)
108 {
109   return Success;
110 }
111
112 void
113 _gdk_input_ungrab_pointer (GdkDisplay *display,
114                            guint32     time)
115 {
116 }
117
118 gboolean
119 gdk_device_set_mode (GdkDevice   *device,
120                      GdkInputMode mode)
121 {
122   return FALSE;
123 }
124
125 #define __GDK_INPUT_NONE_C__
126 #include "gdkaliasdef.c"