57 lines
2.0 KiB
C
57 lines
2.0 KiB
C
|
/*
|
||
|
* Clutter.
|
||
|
*
|
||
|
* An OpenGL based 'interactive canvas' library.
|
||
|
*
|
||
|
* Copyright (C) 2011 Intel Corporation.
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library. If not, see
|
||
|
* <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
* Authors:
|
||
|
* Robert Bragg <robert@linux.intel.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef __CLUTTER_INPUT_DEVICE_WAYLAND_H__
|
||
|
#define __CLUTTER_INPUT_DEVICE_WAYLAND_H__
|
||
|
|
||
|
#include <glib-object.h>
|
||
|
#include <clutter/clutter-event.h>
|
||
|
|
||
|
#include "clutter-device-manager-private.h"
|
||
|
#include "cogl/clutter-stage-cogl.h"
|
||
|
|
||
|
#define CLUTTER_TYPE_INPUT_DEVICE_WAYLAND (clutter_input_device_wayland_get_type ())
|
||
|
#define CLUTTER_INPUT_DEVICE_WAYLAND(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_INPUT_DEVICE_WAYLAND, ClutterInputDeviceWayland))
|
||
|
#define CLUTTER_IS_INPUT_DEVICE_WAYLAND(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_INPUT_DEVICE_WAYLAND))
|
||
|
|
||
|
typedef struct _ClutterInputDeviceWayland ClutterInputDeviceWayland;
|
||
|
|
||
|
struct _ClutterInputDeviceWayland
|
||
|
{
|
||
|
ClutterInputDevice device;
|
||
|
struct wl_input_device *input_device;
|
||
|
ClutterStageCogl *pointer_focus;
|
||
|
ClutterStageCogl *keyboard_focus;
|
||
|
uint32_t modifier_state;
|
||
|
int32_t x, y, surface_x, surface_y;
|
||
|
struct xkb_desc *xkb;
|
||
|
};
|
||
|
|
||
|
GType clutter_input_device_wayland_get_type (void) G_GNUC_CONST;
|
||
|
|
||
|
extern const struct wl_input_device_listener _clutter_input_device_wayland_listener;
|
||
|
|
||
|
#endif /* __CLUTTER_INPUT_DEVICE_WAYLAND_H__ */
|