summaryrefslogtreecommitdiff
path: root/clutter/wayland/clutter-input-device-wayland.h
blob: d242ac41c1c5e6de865740d6c643153d72301fa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * 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 <xkbcommon/xkbcommon.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_seat         *input_device;
  ClutterStageCogl       *pointer_focus;
  ClutterStageCogl       *keyboard_focus;
  gdouble                 x, y;
  struct xkb_state       *xkb;
  gint                    has_pointer;
  gint                    has_keyboard;
  xkb_keycode_t           repeat_key;
  guint                   repeat_time;
  guint                   repeat_source;
  gboolean                is_initial_repeat;
  ClutterModifierType     button_modifier_state;
};

GType _clutter_input_device_wayland_get_type (void) G_GNUC_CONST;

extern const struct wl_seat_listener _clutter_seat_wayland_listener;

#endif /* __CLUTTER_INPUT_DEVICE_WAYLAND_H__ */