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 <wayland-server.h>
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "window-private.h"
|
2013-08-13 06:57:41 -04:00
|
|
|
#include <meta/meta-cursor-tracker.h>
|
2012-01-07 17:21:32 -05:00
|
|
|
|
2014-02-28 10:24:06 -05:00
|
|
|
#include "meta-wayland.h"
|
2013-09-10 07:45:27 -04:00
|
|
|
#include "meta-wayland-versions.h"
|
2013-08-30 12:03:30 -04:00
|
|
|
#include "meta-wayland-surface.h"
|
|
|
|
#include "meta-wayland-seat.h"
|
2015-07-22 10:50:20 -04:00
|
|
|
#include "meta-wayland-pointer-gestures.h"
|
2015-01-09 11:23:17 -05:00
|
|
|
#include "meta-wayland-tablet-manager.h"
|
2012-01-07 17:21:32 -05:00
|
|
|
|
2014-10-10 12:55:00 -04:00
|
|
|
typedef struct _MetaXWaylandSelection MetaXWaylandSelection;
|
|
|
|
|
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;
|
|
|
|
struct wl_client *client;
|
|
|
|
struct wl_resource *xserver_resource;
|
2014-02-07 19:26:35 -05:00
|
|
|
char *display_name;
|
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
|
|
|
|
|
|
|
MetaXWaylandSelection *selection_data;
|
2014-02-03 19:37:23 -05:00
|
|
|
} MetaXWaylandManager;
|
|
|
|
|
2012-01-07 17:21:32 -05:00
|
|
|
struct _MetaWaylandCompositor
|
|
|
|
{
|
|
|
|
struct wl_display *wayland_display;
|
2014-08-05 16:10:17 -04:00
|
|
|
const 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
|
|
|
};
|
|
|
|
|
2012-01-07 17:21:32 -05:00
|
|
|
#endif /* META_WAYLAND_PRIVATE_H */
|