mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 16:40:41 -05:00
00cbcb7ba1
These use now more of a "pull" model, where they receive update notifications and the relevant input position is queried, instead of the coordinates being passed along. This allows to treat cursor renderers all the same independently of the device they track. This notifying of position changes should ideally be more backend-y than core-y, a better location will be figured out in future commits. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1403>
54 lines
2.0 KiB
C
54 lines
2.0 KiB
C
/*
|
|
* Wayland Support
|
|
*
|
|
* Copyright (C) 2015 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_TABLET_MANAGER_H
|
|
#define META_WAYLAND_TABLET_MANAGER_H
|
|
|
|
#include <glib.h>
|
|
#include <wayland-server.h>
|
|
|
|
#include "wayland/meta-wayland-types.h"
|
|
|
|
struct _MetaWaylandTabletManager
|
|
{
|
|
MetaWaylandCompositor *compositor;
|
|
struct wl_display *wl_display;
|
|
struct wl_list resource_list;
|
|
|
|
GHashTable *seats;
|
|
};
|
|
|
|
void meta_wayland_tablet_manager_init (MetaWaylandCompositor *compositor);
|
|
void meta_wayland_tablet_manager_free (MetaWaylandTabletManager *tablet_manager);
|
|
|
|
gboolean meta_wayland_tablet_manager_consumes_event (MetaWaylandTabletManager *manager,
|
|
const ClutterEvent *event);
|
|
void meta_wayland_tablet_manager_update (MetaWaylandTabletManager *manager,
|
|
const ClutterEvent *event);
|
|
gboolean meta_wayland_tablet_manager_handle_event (MetaWaylandTabletManager *manager,
|
|
const ClutterEvent *event);
|
|
|
|
MetaWaylandTabletSeat *
|
|
meta_wayland_tablet_manager_ensure_seat (MetaWaylandTabletManager *manager,
|
|
MetaWaylandSeat *seat);
|
|
|
|
#endif /* META_WAYLAND_TABLET_MANAGER_H */
|