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