2014-04-24 12:50:47 +00:00
|
|
|
/*
|
|
|
|
* Wayland Support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Red Hat
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* Author: Carlos Garnacho <carlosg@gnome.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_WAYLAND_TOUCH_H
|
|
|
|
#define META_WAYLAND_TOUCH_H
|
|
|
|
|
|
|
|
#include <wayland-server.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "meta-wayland-types.h"
|
|
|
|
|
2016-04-01 08:39:30 +00:00
|
|
|
#define META_TYPE_WAYLAND_TOUCH (meta_wayland_touch_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (MetaWaylandTouch, meta_wayland_touch,
|
|
|
|
META, WAYLAND_TOUCH,
|
2016-09-12 15:17:28 +00:00
|
|
|
MetaWaylandInputDevice)
|
2016-04-01 08:39:30 +00:00
|
|
|
|
2014-04-24 12:50:47 +00:00
|
|
|
typedef struct _MetaWaylandTouchSurface MetaWaylandTouchSurface;
|
|
|
|
typedef struct _MetaWaylandTouchInfo MetaWaylandTouchInfo;
|
|
|
|
|
|
|
|
struct _MetaWaylandTouch
|
|
|
|
{
|
2016-09-12 15:17:28 +00:00
|
|
|
MetaWaylandInputDevice parent;
|
2016-04-01 08:39:30 +00:00
|
|
|
|
2014-04-24 12:50:47 +00:00
|
|
|
struct wl_list resource_list;
|
|
|
|
|
|
|
|
GHashTable *touch_surfaces; /* HT of MetaWaylandSurface->MetaWaylandTouchSurface */
|
|
|
|
GHashTable *touches; /* HT of sequence->MetaWaylandTouchInfo */
|
|
|
|
|
|
|
|
ClutterInputDevice *device;
|
|
|
|
guint64 frame_slots;
|
|
|
|
};
|
|
|
|
|
2016-09-12 15:20:36 +00:00
|
|
|
void meta_wayland_touch_enable (MetaWaylandTouch *touch);
|
2014-04-24 12:50:47 +00:00
|
|
|
|
2016-04-01 08:39:30 +00:00
|
|
|
void meta_wayland_touch_disable (MetaWaylandTouch *touch);
|
2014-04-24 12:50:47 +00:00
|
|
|
|
|
|
|
void meta_wayland_touch_update (MetaWaylandTouch *touch,
|
|
|
|
const ClutterEvent *event);
|
|
|
|
|
|
|
|
gboolean meta_wayland_touch_handle_event (MetaWaylandTouch *touch,
|
|
|
|
const ClutterEvent *event);
|
|
|
|
|
2014-06-11 19:57:45 +00:00
|
|
|
void meta_wayland_touch_create_new_resource (MetaWaylandTouch *touch,
|
|
|
|
struct wl_client *client,
|
|
|
|
struct wl_resource *seat_resource,
|
|
|
|
uint32_t id);
|
2014-06-19 20:15:32 +00:00
|
|
|
void meta_wayland_touch_cancel (MetaWaylandTouch *touch);
|
|
|
|
|
2014-06-11 19:57:45 +00:00
|
|
|
|
2014-07-21 23:28:39 +00:00
|
|
|
ClutterEventSequence * meta_wayland_touch_find_grab_sequence (MetaWaylandTouch *touch,
|
|
|
|
MetaWaylandSurface *surface,
|
|
|
|
uint32_t serial);
|
|
|
|
|
|
|
|
gboolean meta_wayland_touch_get_press_coords (MetaWaylandTouch *touch,
|
|
|
|
ClutterEventSequence *sequence,
|
|
|
|
gfloat *x,
|
|
|
|
gfloat *y);
|
|
|
|
|
2015-10-09 14:42:06 +00:00
|
|
|
gboolean meta_wayland_touch_can_popup (MetaWaylandTouch *touch,
|
|
|
|
uint32_t serial);
|
|
|
|
|
2014-04-24 12:50:47 +00:00
|
|
|
#endif /* META_WAYLAND_TOUCH_H */
|