~oem-solutions-group/unity-2d/clutter-1.0

« back to all changes in this revision

Viewing changes to clutter/x11/clutter-input-device-x11.h

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2010-03-21 13:27:56 UTC
  • mto: (2.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20100321132756-nf8yd30yxo3zzwcm
Tags: upstream-1.2.2
ImportĀ upstreamĀ versionĀ 1.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __CLUTTER_INPUT_DEVICE_X11_H__
 
2
#define __CLUTTER_INPUT_DEVICE_X11_H__
 
3
 
 
4
#include <clutter/clutter-input-device.h>
 
5
#include "clutter-backend-x11.h"
 
6
 
 
7
G_BEGIN_DECLS
 
8
 
 
9
#define CLUTTER_TYPE_INPUT_DEVICE_X11           (clutter_input_device_x11_get_type ())
 
10
#define CLUTTER_INPUT_DEVICE_X11(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_INPUT_DEVICE_X11, ClutterInputDeviceX11))
 
11
#define CLUTTER_IS_INPUT_DEVICE_X11(obj)        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_INPUT_DEVICE_X11))
 
12
 
 
13
typedef struct _ClutterInputDeviceX11           ClutterInputDeviceX11;
 
14
 
 
15
GType clutter_input_device_x11_get_type (void) G_GNUC_CONST;
 
16
 
 
17
gint _clutter_input_device_x11_construct (ClutterInputDevice *device,
 
18
                                          ClutterBackendX11  *backend);
 
19
void _clutter_input_device_x11_select_events (ClutterInputDevice *device,
 
20
                                              ClutterBackendX11  *backend,
 
21
                                              Window              xwin);
 
22
 
 
23
G_END_DECLS
 
24
 
 
25
#endif /* __CLUTTER_INPUT_DEVICE_X11_H__ */