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