mirror of
https://github.com/brl/mutter.git
synced 2024-11-24 17:10:40 -05:00
39 lines
1.3 KiB
C
39 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/>.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#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);
|