e9addb0ad7
This will be necessary to string along ClutterGrab with backend behavior, and mostly for the X11 backend so implement this pair of vfuncs there. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2068>
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/*
|
|
* Clutter.
|
|
*
|
|
* An OpenGL based 'interactive canvas' library.
|
|
*
|
|
* Copyright (C) 2021 Red Hat Inc.
|
|
*
|
|
* 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/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef CLUTTER_SEAT_PRIVATE_H
|
|
#define CLUTTER_SEAT_PRIVATE_H
|
|
|
|
#include "clutter/clutter-types.h"
|
|
|
|
CLUTTER_EXPORT
|
|
void clutter_seat_destroy (ClutterSeat *seat);
|
|
|
|
ClutterGrabState clutter_seat_grab (ClutterSeat *seat,
|
|
uint32_t time);
|
|
void clutter_seat_ungrab (ClutterSeat *seat,
|
|
uint32_t time);
|
|
|
|
#endif /* CLUTTER_SEAT_PRIVATE_H */
|