2012-01-07 22:21:32 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Intel Corporation
|
|
|
|
*
|
|
|
|
* 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
|
2023-08-07 09:50:23 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2012-01-07 22:21:32 +00:00
|
|
|
*/
|
|
|
|
|
2023-07-21 13:37:20 +00:00
|
|
|
#pragma once
|
2012-01-07 22:21:32 +00:00
|
|
|
|
|
|
|
#include <glib.h>
|
2018-07-10 08:36:24 +00:00
|
|
|
#include <wayland-server.h>
|
2012-01-07 22:21:32 +00:00
|
|
|
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#include "core/window-private.h"
|
|
|
|
#include "meta/meta-cursor-tracker.h"
|
2023-06-26 14:08:08 +00:00
|
|
|
#include "meta/meta-wayland-compositor.h"
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "wayland/meta-wayland-pointer-gestures.h"
|
2020-10-08 12:41:31 +00:00
|
|
|
#include "wayland/meta-wayland-presentation-time-private.h"
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "wayland/meta-wayland-seat.h"
|
2023-10-23 21:59:19 +00:00
|
|
|
#include "wayland/meta-wayland-surface-private.h"
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "wayland/meta-wayland-tablet-manager.h"
|
|
|
|
#include "wayland/meta-wayland-versions.h"
|
|
|
|
#include "wayland/meta-wayland.h"
|
2012-01-07 22:21:32 +00:00
|
|
|
|
2018-11-22 00:33:13 +00:00
|
|
|
typedef struct _MetaXWaylandDnd MetaXWaylandDnd;
|
2014-10-10 16:55:00 +00:00
|
|
|
|
2012-01-07 22:21:32 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
struct wl_list link;
|
|
|
|
struct wl_resource *resource;
|
2015-02-25 15:26:01 +00:00
|
|
|
MetaWaylandSurface *surface;
|
2012-01-07 22:21:32 +00:00
|
|
|
} MetaWaylandFrameCallback;
|
|
|
|
|
2014-02-04 00:37:23 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int display_index;
|
2015-04-23 14:41:34 +00:00
|
|
|
char *lock_file;
|
2020-10-17 03:50:31 +00:00
|
|
|
int abstract_fd;
|
2014-02-04 00:37:23 +00:00
|
|
|
int unix_fd;
|
2019-07-19 20:50:31 +00:00
|
|
|
char *name;
|
|
|
|
} MetaXWaylandConnection;
|
|
|
|
|
2022-04-05 21:43:38 +00:00
|
|
|
struct _MetaXWaylandManager
|
2019-07-19 20:50:31 +00:00
|
|
|
{
|
2022-04-05 21:45:51 +00:00
|
|
|
MetaWaylandCompositor *compositor;
|
|
|
|
|
2019-07-19 20:50:31 +00:00
|
|
|
MetaXWaylandConnection private_connection;
|
|
|
|
MetaXWaylandConnection public_connection;
|
|
|
|
|
2020-10-17 04:01:44 +00:00
|
|
|
guint abstract_fd_watch_id;
|
|
|
|
guint unix_fd_watch_id;
|
|
|
|
|
2022-06-15 11:12:35 +00:00
|
|
|
gulong prepare_shutdown_id;
|
|
|
|
|
2018-12-10 13:24:43 +00:00
|
|
|
struct wl_display *wayland_display;
|
2014-02-04 00:37:23 +00:00
|
|
|
struct wl_client *client;
|
|
|
|
struct wl_resource *xserver_resource;
|
2019-06-18 14:12:46 +00:00
|
|
|
char *auth_file;
|
2014-02-04 00:37:23 +00:00
|
|
|
|
2017-10-25 07:42:49 +00:00
|
|
|
GCancellable *xserver_died_cancellable;
|
|
|
|
GSubprocess *proc;
|
2014-10-10 16:55:00 +00:00
|
|
|
|
2018-11-22 00:33:13 +00:00
|
|
|
MetaXWaylandDnd *dnd;
|
2020-11-11 12:17:14 +00:00
|
|
|
|
|
|
|
gboolean has_xrandr;
|
|
|
|
int rr_event_base;
|
|
|
|
int rr_error_base;
|
2023-09-29 14:26:41 +00:00
|
|
|
|
|
|
|
gboolean should_enable_ei_portal;
|
2022-04-05 21:43:38 +00:00
|
|
|
};
|
2014-02-04 00:37:23 +00:00
|
|
|
|
2012-01-07 22:21:32 +00:00
|
|
|
struct _MetaWaylandCompositor
|
|
|
|
{
|
2018-08-23 13:49:17 +00:00
|
|
|
GObject parent;
|
|
|
|
|
2021-03-03 21:00:05 +00:00
|
|
|
MetaContext *context;
|
2020-04-27 11:37:16 +00:00
|
|
|
|
2012-01-07 22:21:32 +00:00
|
|
|
struct wl_display *wayland_display;
|
2018-07-23 17:43:53 +00:00
|
|
|
char *display_name;
|
2021-10-28 13:30:41 +00:00
|
|
|
GSource *source;
|
|
|
|
|
2013-08-19 09:12:42 +00:00
|
|
|
GHashTable *outputs;
|
2020-04-27 13:43:19 +00:00
|
|
|
GList *frame_callback_surfaces;
|
2012-01-07 22:21:32 +00:00
|
|
|
|
2022-06-01 08:35:29 +00:00
|
|
|
#ifdef HAVE_XWAYLAND
|
2014-02-04 00:37:23 +00:00
|
|
|
MetaXWaylandManager xwayland_manager;
|
2022-06-01 08:35:29 +00:00
|
|
|
#endif
|
2013-05-03 17:51:22 +00:00
|
|
|
|
|
|
|
MetaWaylandSeat *seat;
|
2015-01-09 16:23:17 +00:00
|
|
|
MetaWaylandTabletManager *tablet_manager;
|
2020-10-09 14:23:32 +00:00
|
|
|
MetaWaylandActivation *activation;
|
2020-02-06 07:00:56 +00:00
|
|
|
MetaWaylandXdgForeign *foreign;
|
2018-04-06 13:47:50 +00:00
|
|
|
|
|
|
|
GHashTable *scheduled_surface_associations;
|
2020-10-08 12:41:31 +00:00
|
|
|
|
|
|
|
MetaWaylandPresentationTime presentation_time;
|
2021-08-04 08:12:33 +00:00
|
|
|
MetaWaylandDmaBufManager *dma_buf_manager;
|
2021-05-30 13:00:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Queue of transactions which have been committed but not applied yet, in the
|
|
|
|
* order they were committed.
|
|
|
|
*/
|
|
|
|
GQueue committed_transactions;
|
2013-05-03 17:51:22 +00:00
|
|
|
};
|
|
|
|
|
2022-05-13 19:51:53 +00:00
|
|
|
gboolean meta_wayland_compositor_is_egl_display_bound (MetaWaylandCompositor *compositor);
|