]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkinput-none.c
Convert GdkVisual to a GObject.
[~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_init_input_core ();
33   gdk_input_devices = g_list_append (NULL, gdk_core_pointer);
34
35   gdk_input_ignore_core = FALSE;
36 }
37
38 void 
39 gdk_device_get_state (GdkDevice       *device,
40                       GdkWindow       *window,
41                       gdouble         *axes,
42                       GdkModifierType *mask)
43 {
44   gint x_int, y_int;
45
46   g_return_if_fail (device != NULL);
47   g_return_if_fail (GDK_IS_WINDOW (window));
48
49   gdk_window_get_pointer (window, &x_int, &y_int, mask);
50
51   if (axes)
52     {
53       axes[0] = x_int;
54       axes[1] = y_int;
55     }
56 }
57
58 gboolean
59 _gdk_device_get_history (GdkDevice         *device,
60                          GdkWindow         *window,
61                          guint32            start,
62                          guint32            stop,
63                          GdkTimeCoord    ***events,
64                          gint              *n_events)
65 {
66   g_warning ("gdk_device_get_history() called for invalid device");
67   return FALSE;
68 }
69
70 gboolean
71 _gdk_input_enable_window(GdkWindow *window, GdkDevicePrivate *gdkdev)
72 {
73   return TRUE;
74 }
75
76 gboolean
77 _gdk_input_disable_window(GdkWindow *window, GdkDevicePrivate *gdkdev)
78 {
79   return TRUE;
80 }
81
82 gint 
83 _gdk_input_window_none_event (GdkEvent         *event,
84                              XEvent           *xevent)
85 {
86   return -1;
87 }
88
89 gint 
90 _gdk_input_other_event (GdkEvent *event, 
91                         XEvent *xevent, 
92                         GdkWindow *window)
93 {
94   return -1;
95 }
96
97 void
98 _gdk_input_configure_event (XConfigureEvent *xevent,
99                             GdkWindow       *window)
100 {
101 }
102
103 void 
104 _gdk_input_enter_event (XCrossingEvent *xevent, 
105                         GdkWindow      *window)
106 {
107 }
108
109 gint 
110 _gdk_input_grab_pointer (GdkWindow *     window,
111                          gint            owner_events,
112                          GdkEventMask    event_mask,
113                          GdkWindow *     confine_to,
114                          guint32         time)
115 {
116   return Success;
117 }
118
119 void
120 _gdk_input_ungrab_pointer (guint32         time)
121 {
122 }
123
124 gboolean
125 gdk_device_set_mode (GdkDevice   *device,
126                      GdkInputMode mode)
127 {
128   return FALSE;
129 }
130