update to 1.10.4
[profile/ivi/clutter.git] / clutter / x11 / clutter-device-manager-xi2.h
1 /*
2  * Clutter.
3  *
4  * An OpenGL based 'interactive canvas' library.
5  *
6  * Copyright © 2011  Intel Corp.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
20  *
21  * Author: Emmanuele Bassi <ebassi@linux.intel.com>
22  */
23
24 #ifndef __CLUTTER_DEVICE_MANAGER_XI2_H__
25 #define __CLUTTER_DEVICE_MANAGER_XI2_H__
26
27 #include <clutter/clutter-device-manager.h>
28
29 G_BEGIN_DECLS
30
31 #define CLUTTER_TYPE_DEVICE_MANAGER_XI2            (_clutter_device_manager_xi2_get_type ())
32 #define CLUTTER_DEVICE_MANAGER_XI2(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_DEVICE_MANAGER_XI2, ClutterDeviceManagerXI2))
33 #define CLUTTER_IS_DEVICE_MANAGER_XI2(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_DEVICE_MANAGER_XI2))
34 #define CLUTTER_DEVICE_MANAGER_XI2_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CLUTTER_TYPE_DEVICE_MANAGER_XI2, ClutterDeviceManagerXI2Class))
35 #define CLUTTER_IS_DEVICE_MANAGER_XI2_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CLUTTER_TYPE_DEVICE_MANAGER_XI2))
36 #define CLUTTER_DEVICE_MANAGER_XI2_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), CLUTTER_TYPE_DEVICE_MANAGER_XI2, ClutterDeviceManagerXI2Class))
37
38 typedef struct _ClutterDeviceManagerXI2         ClutterDeviceManagerXI2;
39 typedef struct _ClutterDeviceManagerXI2Class    ClutterDeviceManagerXI2Class;
40
41 struct _ClutterDeviceManagerXI2
42 {
43   ClutterDeviceManager parent_instance;
44
45   GHashTable *devices_by_id;
46
47   GSList *all_devices;
48
49   GList *master_devices;
50   GList *slave_devices;
51
52   ClutterInputDevice *client_pointer;
53
54   int opcode;
55 };
56
57 struct _ClutterDeviceManagerXI2Class
58 {
59   ClutterDeviceManagerClass parent_class;
60 };
61
62 GType _clutter_device_manager_xi2_get_type (void) G_GNUC_CONST;
63
64 G_END_DECLS
65
66 #endif /* __CLUTTER_DEVICE_MANAGER_XI2_H__ */