mutter/clutter/clutter/clutter-seat-private.h
Jonas Ådahl 060c4c2dfc clutter/seat: Add API to initialize pointer position
This is different from "warping" as it doesn't necessarily result in a
pointer motion event. This can be helpful during initializing so we can
avoid faked pointer events that would otherwise need to be special cased
to not appear as actual pointer movements.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3070>
2023-06-12 18:16:01 +00:00

42 lines
1.3 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);
CLUTTER_EXPORT
void clutter_seat_init_pointer_position (ClutterSeat *seat,
float x,
float y);
#endif /* CLUTTER_SEAT_PRIVATE_H */