]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkdevice-virtual.h
Fix up for newer draft of wm-spec
[~andy/gtk] / gdk / win32 / gdkdevice-virtual.h
1 /* GDK - The GIMP Drawing Kit\r
2  * Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>\r
3  *\r
4  * This library is free software; you can redistribute it and/or\r
5  * modify it under the terms of the GNU Lesser General Public\r
6  * License as published by the Free Software Foundation; either\r
7  * version 2 of the License, or (at your option) any later version.\r
8  *\r
9  * This library is distributed in the hope that it will be useful,\r
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
12  * Lesser General Public License for more details.\r
13  *\r
14  * You should have received a copy of the GNU Lesser General Public\r
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.\r
16  */\r
17 \r
18 #ifndef __GDK_DEVICE_VIRTUAL_H__\r
19 #define __GDK_DEVICE_VIRTUAL_H__\r
20 \r
21 #include <gdk/gdkdeviceprivate.h>\r
22 \r
23 G_BEGIN_DECLS\r
24 \r
25 #define GDK_TYPE_DEVICE_VIRTUAL         (gdk_device_virtual_get_type ())\r
26 #define GDK_DEVICE_VIRTUAL(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GDK_TYPE_DEVICE_VIRTUAL, GdkDeviceVirtual))\r
27 #define GDK_DEVICE_VIRTUAL_CLASS(c)     (G_TYPE_CHECK_CLASS_CAST ((c), GDK_TYPE_DEVICE_VIRTUAL, GdkDeviceVirtualClass))\r
28 #define GDK_IS_DEVICE_VIRTUAL(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GDK_TYPE_DEVICE_VIRTUAL))\r
29 #define GDK_IS_DEVICE_VIRTUAL_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE ((c), GDK_TYPE_DEVICE_VIRTUAL))\r
30 #define GDK_DEVICE_VIRTUAL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GDK_TYPE_DEVICE_VIRTUAL, GdkDeviceVirtualClass))\r
31 \r
32 typedef struct _GdkDeviceVirtual GdkDeviceVirtual;\r
33 typedef struct _GdkDeviceVirtualClass GdkDeviceVirtualClass;\r
34 \r
35 struct _GdkDeviceVirtual\r
36 {\r
37   GdkDevice parent_instance;\r
38   GdkDevice *active_device;\r
39 };\r
40 \r
41 struct _GdkDeviceVirtualClass\r
42 {\r
43   GdkDeviceClass parent_class;\r
44 };\r
45 \r
46 GType gdk_device_virtual_get_type (void) G_GNUC_CONST;\r
47 \r
48 void _gdk_device_virtual_set_active (GdkDevice *device,\r
49                                      GdkDevice *new_active);\r
50 \r
51 \r
52 G_END_DECLS\r
53 \r
54 #endif /* __GDK_DEVICE_VIRTUAL_H__ */\r