2014-02-28 10:24:06 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Red Hat
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Jasper St. Pierre <jstpierre@mecheye.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_WAYLAND_H
|
|
|
|
#define META_WAYLAND_H
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "clutter/clutter.h"
|
2019-01-22 21:25:35 -05:00
|
|
|
#include "core/util-private.h"
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "meta/types.h"
|
|
|
|
#include "wayland/meta-wayland-types.h"
|
2014-02-28 10:24:06 -05:00
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT_TEST
|
2019-01-20 05:46:46 -05:00
|
|
|
void meta_wayland_override_display_name (const char *display_name);
|
2016-12-05 08:23:46 -05:00
|
|
|
|
2014-08-18 16:54:15 -04:00
|
|
|
void meta_wayland_pre_clutter_init (void);
|
2019-06-19 07:15:04 -04:00
|
|
|
|
2014-02-28 10:24:06 -05:00
|
|
|
void meta_wayland_init (void);
|
2019-06-19 07:15:04 -04:00
|
|
|
|
2014-02-28 10:24:06 -05:00
|
|
|
void meta_wayland_finalize (void);
|
|
|
|
|
2020-04-27 07:37:16 -04:00
|
|
|
MetaWaylandCompositor * meta_wayland_compositor_new (MetaBackend *backend);
|
2020-04-27 07:30:26 -04:00
|
|
|
|
|
|
|
void meta_wayland_compositor_setup (MetaWaylandCompositor *compositor);
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT_TEST
|
2014-02-28 10:24:06 -05:00
|
|
|
MetaWaylandCompositor *meta_wayland_compositor_get_default (void);
|
|
|
|
|
2014-04-22 18:09:38 -04:00
|
|
|
void meta_wayland_compositor_update (MetaWaylandCompositor *compositor,
|
|
|
|
const ClutterEvent *event);
|
2019-06-19 07:15:04 -04:00
|
|
|
|
2014-04-22 18:09:38 -04:00
|
|
|
gboolean meta_wayland_compositor_handle_event (MetaWaylandCompositor *compositor,
|
|
|
|
const ClutterEvent *event);
|
2019-06-19 07:15:04 -04:00
|
|
|
|
2015-08-21 16:25:53 -04:00
|
|
|
void meta_wayland_compositor_update_key_state (MetaWaylandCompositor *compositor,
|
|
|
|
char *key_vector,
|
|
|
|
int key_vector_len,
|
|
|
|
int offset);
|
2019-06-19 07:15:04 -04:00
|
|
|
|
2014-02-28 10:24:06 -05:00
|
|
|
void meta_wayland_compositor_set_input_focus (MetaWaylandCompositor *compositor,
|
|
|
|
MetaWindow *window);
|
|
|
|
|
|
|
|
void meta_wayland_compositor_paint_finished (MetaWaylandCompositor *compositor);
|
|
|
|
|
2020-04-27 09:43:19 -04:00
|
|
|
void meta_wayland_compositor_add_frame_callback_surface (MetaWaylandCompositor *compositor,
|
|
|
|
MetaWaylandSurface *surface);
|
|
|
|
|
|
|
|
void meta_wayland_compositor_remove_frame_callback_surface (MetaWaylandCompositor *compositor,
|
|
|
|
MetaWaylandSurface *surface);
|
2015-02-25 10:26:01 -05:00
|
|
|
|
2020-10-08 08:41:31 -04:00
|
|
|
void meta_wayland_compositor_add_presentation_feedback_surface (MetaWaylandCompositor *compositor,
|
|
|
|
MetaWaylandSurface *surface);
|
|
|
|
|
|
|
|
void meta_wayland_compositor_remove_presentation_feedback_surface (MetaWaylandCompositor *compositor,
|
|
|
|
MetaWaylandSurface *surface);
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT_TEST
|
2014-09-11 10:07:34 -04:00
|
|
|
const char *meta_wayland_get_wayland_display_name (MetaWaylandCompositor *compositor);
|
2019-06-19 07:15:04 -04:00
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT_TEST
|
2021-01-21 12:56:18 -05:00
|
|
|
const char *meta_wayland_get_public_xwayland_display_name (MetaWaylandCompositor *compositor);
|
|
|
|
|
|
|
|
const char *meta_wayland_get_private_xwayland_display_name (MetaWaylandCompositor *compositor);
|
2014-09-11 10:07:34 -04:00
|
|
|
|
2017-03-17 08:34:52 -04:00
|
|
|
void meta_wayland_compositor_restore_shortcuts (MetaWaylandCompositor *compositor,
|
|
|
|
ClutterInputDevice *source);
|
2019-06-19 07:15:04 -04:00
|
|
|
|
2017-03-17 08:34:52 -04:00
|
|
|
gboolean meta_wayland_compositor_is_shortcuts_inhibited (MetaWaylandCompositor *compositor,
|
|
|
|
ClutterInputDevice *source);
|
|
|
|
|
2017-08-18 02:16:22 -04:00
|
|
|
void meta_wayland_compositor_flush_clients (MetaWaylandCompositor *compositor);
|
|
|
|
|
2018-04-06 09:47:50 -04:00
|
|
|
void meta_wayland_compositor_schedule_surface_association (MetaWaylandCompositor *compositor,
|
|
|
|
int id,
|
|
|
|
MetaWindow *window);
|
2019-06-19 07:15:04 -04:00
|
|
|
|
2018-04-06 09:47:50 -04:00
|
|
|
void meta_wayland_compositor_notify_surface_id (MetaWaylandCompositor *compositor,
|
|
|
|
int id,
|
|
|
|
MetaWaylandSurface *surface);
|
|
|
|
|
2014-02-28 10:24:06 -05:00
|
|
|
#endif
|
|
|
|
|