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 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"
|
|
|
|
#include "wayland/meta-wayland-pointer-gestures.h"
|
|
|
|
#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 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;
|
2014-02-04 00:37:23 +00:00
|
|
|
int abstract_fd;
|
|
|
|
int unix_fd;
|
2019-05-24 19:36:50 +00:00
|
|
|
guint xserver_grace_period_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;
|
2014-02-08 00:26:35 +00:00
|
|
|
char *display_name;
|
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-02-04 00:37:23 +00:00
|
|
|
GMainLoop *init_loop;
|
2014-10-10 16:55:00 +00:00
|
|
|
|
2019-05-24 19:09:32 +00:00
|
|
|
GList *x11_windows;
|
|
|
|
|
2018-11-22 00:33:13 +00:00
|
|
|
MetaXWaylandDnd *dnd;
|
2014-02-04 00:37:23 +00:00
|
|
|
} MetaXWaylandManager;
|
|
|
|
|
2012-01-07 22:21:32 +00:00
|
|
|
struct _MetaWaylandCompositor
|
|
|
|
{
|
2018-08-23 13:49:17 +00:00
|
|
|
GObject parent;
|
|
|
|
|
2012-01-07 22:21:32 +00:00
|
|
|
struct wl_display *wayland_display;
|
2018-07-23 17:43:53 +00:00
|
|
|
char *display_name;
|
2013-08-19 09:12:42 +00:00
|
|
|
GHashTable *outputs;
|
2012-01-07 22:21:32 +00:00
|
|
|
struct wl_list frame_callbacks;
|
|
|
|
|
2014-02-04 00:37:23 +00:00
|
|
|
MetaXWaylandManager xwayland_manager;
|
2013-05-03 17:51:22 +00:00
|
|
|
|
|
|
|
MetaWaylandSeat *seat;
|
2015-01-09 16:23:17 +00:00
|
|
|
MetaWaylandTabletManager *tablet_manager;
|
2018-04-06 13:47:50 +00:00
|
|
|
|
|
|
|
GHashTable *scheduled_surface_associations;
|
2013-05-03 17:51:22 +00:00
|
|
|
};
|
|
|
|
|
2018-08-23 13:49:17 +00:00
|
|
|
#define META_TYPE_WAYLAND_COMPOSITOR (meta_wayland_compositor_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (MetaWaylandCompositor, meta_wayland_compositor,
|
|
|
|
META, WAYLAND_COMPOSITOR, GObject)
|
|
|
|
|
2012-01-07 22:21:32 +00:00
|
|
|
#endif /* META_WAYLAND_PRIVATE_H */
|