55692b4019
The global wl_pointer_gestures object is now created, effectively bridging pinch/swipe gestures with clients, so they're now accessible to clients implementing the protocol.
32 lines
1 KiB
C
32 lines
1 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_POINTER_GESTURES_H
|
|
#define META_WAYLAND_POINTER_GESTURES_H
|
|
|
|
#include <wayland-server.h>
|
|
#include <glib.h>
|
|
|
|
#include "meta-wayland-types.h"
|
|
|
|
void meta_wayland_pointer_gestures_init (MetaWaylandCompositor *compositor);
|
|
|
|
#endif /* META_WAYLAND_POINTER_GESTURES_H */
|