]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkdevice-xi.h
Make set_cairo_surface_size a vfunc on GdkWindowImpl
[~andy/gtk] / gdk / x11 / gdkdevice-xi.h
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
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 #ifndef __GDK_DEVICE_XI_H__
21 #define __GDK_DEVICE_XI_H__
22
23 #include <gdk/gdkdeviceprivate.h>
24 #include <X11/extensions/XInput.h>
25
26 G_BEGIN_DECLS
27
28 #define GDK_TYPE_DEVICE_XI         (gdk_device_xi_get_type ())
29 #define GDK_DEVICE_XI(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GDK_TYPE_DEVICE_XI, GdkDeviceXI))
30 #define GDK_DEVICE_XI_CLASS(c)     (G_TYPE_CHECK_CLASS_CAST ((c), GDK_TYPE_DEVICE_XI, GdkDeviceXIClass))
31 #define GDK_IS_DEVICE_XI(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GDK_TYPE_DEVICE_XI))
32 #define GDK_IS_DEVICE_XI_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE ((c), GDK_TYPE_DEVICE_XI))
33 #define GDK_DEVICE_XI_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GDK_TYPE_DEVICE_XI, GdkDeviceXIClass))
34
35 typedef struct _GdkDeviceXI GdkDeviceXI;
36 typedef struct _GdkDeviceXIClass GdkDeviceXIClass;
37
38 struct _GdkDeviceXI
39 {
40   GdkDevice parent_instance;
41
42   guint32 device_id;
43   XDevice *xdevice;
44
45   gint button_press_type;
46   gint button_release_type;
47   gint key_press_type;
48   gint key_release_type;
49   gint motion_notify_type;
50   gint proximity_in_type;
51   gint proximity_out_type;
52   gint state_notify_type;
53
54   /* minimum key code for device */
55   gint min_keycode;
56
57   gint *axis_data;
58
59   guint in_proximity : 1;
60 };
61
62 struct _GdkDeviceXIClass
63 {
64   GdkDeviceClass parent_class;
65 };
66
67 G_GNUC_INTERNAL
68 GType gdk_device_xi_get_type (void) G_GNUC_CONST;
69
70 G_GNUC_INTERNAL
71 void     gdk_device_xi_update_window_info (GdkWindow *window);
72
73 G_GNUC_INTERNAL
74 void     gdk_device_xi_update_axes (GdkDevice *device,
75                                     gint       axes_count,
76                                     gint       first_axis,
77                                     gint      *axis_data);
78 G_GNUC_INTERNAL
79 void     gdk_device_xi_translate_axes     (GdkDevice *device,
80                                            GdkWindow *window,
81                                            gint      *axis_data,
82                                            gdouble   *axes,
83                                            gdouble   *x,
84                                            gdouble   *y);
85
86 G_END_DECLS
87
88 #endif /* __GDK_DEVICE_XI_H__ */