mirror of
https://github.com/brl/mutter.git
synced 2024-11-27 18:40:40 -05:00
e02fef8e2f
Make meson link libmutter using -fvisibility=hidden, and introduce META_EXPORT and META_EXPORT_TEST defines to mark a symbols as visible. The TEST version is meant to be used to flag symbols that are only used internally by mutter tests, but that should not be considered public API. This allows us to be more precise in selecting what is exported and what is not, without the need of a version-script file that would be more complicated to maintain. https://gitlab.gnome.org/GNOME/mutter/merge_requests/395
97 lines
4.5 KiB
C
97 lines
4.5 KiB
C
/*
|
|
* 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
|
|
|
|
#include "clutter/clutter.h"
|
|
#include "core/util-private.h"
|
|
#include "meta/types.h"
|
|
#include "wayland/meta-wayland-types.h"
|
|
|
|
META_EXPORT_TEST
|
|
void meta_wayland_override_display_name (const char *display_name);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_wayland_pre_clutter_init (void);
|
|
META_EXPORT_TEST
|
|
void meta_wayland_init (void);
|
|
META_EXPORT_TEST
|
|
void meta_wayland_finalize (void);
|
|
|
|
/* We maintain a singleton MetaWaylandCompositor which can be got at via this
|
|
* API after meta_wayland_init() has been called. */
|
|
META_EXPORT_TEST
|
|
MetaWaylandCompositor *meta_wayland_compositor_get_default (void);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_update (MetaWaylandCompositor *compositor,
|
|
const ClutterEvent *event);
|
|
META_EXPORT_TEST
|
|
gboolean meta_wayland_compositor_handle_event (MetaWaylandCompositor *compositor,
|
|
const ClutterEvent *event);
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_update_key_state (MetaWaylandCompositor *compositor,
|
|
char *key_vector,
|
|
int key_vector_len,
|
|
int offset);
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_repick (MetaWaylandCompositor *compositor);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_set_input_focus (MetaWaylandCompositor *compositor,
|
|
MetaWindow *window);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_paint_finished (MetaWaylandCompositor *compositor);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_destroy_frame_callbacks (MetaWaylandCompositor *compositor,
|
|
MetaWaylandSurface *surface);
|
|
|
|
META_EXPORT_TEST
|
|
const char *meta_wayland_get_wayland_display_name (MetaWaylandCompositor *compositor);
|
|
META_EXPORT_TEST
|
|
const char *meta_wayland_get_xwayland_display_name (MetaWaylandCompositor *compositor);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_restore_shortcuts (MetaWaylandCompositor *compositor,
|
|
ClutterInputDevice *source);
|
|
META_EXPORT_TEST
|
|
gboolean meta_wayland_compositor_is_shortcuts_inhibited (MetaWaylandCompositor *compositor,
|
|
ClutterInputDevice *source);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_flush_clients (MetaWaylandCompositor *compositor);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_schedule_surface_association (MetaWaylandCompositor *compositor,
|
|
int id,
|
|
MetaWindow *window);
|
|
META_EXPORT_TEST
|
|
void meta_wayland_compositor_notify_surface_id (MetaWaylandCompositor *compositor,
|
|
int id,
|
|
MetaWaylandSurface *surface);
|
|
|
|
#endif
|
|
|