2012-01-07 17:21:32 -05: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 04:36:24 -04:00
|
|
|
#include <wayland-server.h>
|
2012-01-07 17:21:32 -05:00
|
|
|
|
2018-07-10 04:36:24 -04: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 17:21:32 -05:00
|
|
|
|
2018-11-21 19:33:13 -05:00
|
|
|
typedef struct _MetaXWaylandDnd MetaXWaylandDnd;
|
2014-10-10 12:55:00 -04:00
|
|
|
|
2012-01-07 17:21:32 -05:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
struct wl_list link;
|
|
|
|
struct wl_resource *resource;
|
2015-02-25 10:26:01 -05:00
|
|
|
MetaWaylandSurface *surface;
|
2012-01-07 17:21:32 -05: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;
|
2014-02-03 19:37:23 -05:00
|
|
|
int abstract_fd;
|
|
|
|
int unix_fd;
|
2019-05-24 15:36:50 -04:00
|
|
|
guint xserver_grace_period_id;
|
2018-12-10 08:24:43 -05:00
|
|
|
struct wl_display *wayland_display;
|
2014-02-03 19:37:23 -05:00
|
|
|
struct wl_client *client;
|
|
|
|
struct wl_resource *xserver_resource;
|
2014-02-07 19:26:35 -05:00
|
|
|
char *display_name;
|
2019-06-18 10:12:46 -04:00
|
|
|
char *auth_file;
|
2014-02-03 19:37:23 -05:00
|
|
|
|
2017-10-25 03:42:49 -04:00
|
|
|
GCancellable *xserver_died_cancellable;
|
|
|
|
GSubprocess *proc;
|
2014-02-03 19:37:23 -05:00
|
|
|
GMainLoop *init_loop;
|
2014-10-10 12:55:00 -04:00
|
|
|
|
2019-05-24 15:09:32 -04:00
|
|
|
GList *x11_windows;
|
|
|
|
|
2018-11-21 19:33:13 -05:00
|
|
|
MetaXWaylandDnd *dnd;
|
2014-02-03 19:37:23 -05:00
|
|
|
} MetaXWaylandManager;
|
|
|
|
|
2012-01-07 17:21:32 -05:00
|
|
|
struct _MetaWaylandCompositor
|
|
|
|
{
|
2018-08-23 09:49:17 -04:00
|
|
|
GObject parent;
|
|
|
|
|
2012-01-07 17:21:32 -05:00
|
|
|
struct wl_display *wayland_display;
|
2018-07-23 13:43:53 -04:00
|
|
|
char *display_name;
|
2013-08-19 05:12:42 -04:00
|
|
|
GHashTable *outputs;
|
2012-01-07 17:21:32 -05:00
|
|
|
struct wl_list frame_callbacks;
|
|
|
|
|
2014-02-03 19:37:23 -05:00
|
|
|
MetaXWaylandManager xwayland_manager;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
|
|
|
MetaWaylandSeat *seat;
|
2015-01-09 11:23:17 -05:00
|
|
|
MetaWaylandTabletManager *tablet_manager;
|
2018-04-06 09:47:50 -04:00
|
|
|
|
|
|
|
GHashTable *scheduled_surface_associations;
|
2013-05-03 13:51:22 -04:00
|
|
|
};
|
|
|
|
|
2018-08-23 09:49:17 -04: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 17:21:32 -05:00
|
|
|
#endif /* META_WAYLAND_PRIVATE_H */
|