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>
|
2013-05-03 13:51:22 -04:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2012-01-07 17:21:32 -05:00
|
|
|
#include <clutter/clutter.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
|
|
|
|
#include "window-private.h"
|
2013-08-19 08:57:16 -04:00
|
|
|
#include "meta-weston-launch.h"
|
2013-08-13 06:57:41 -04:00
|
|
|
#include <meta/meta-cursor-tracker.h>
|
2012-01-07 17:21:32 -05:00
|
|
|
|
2013-08-30 12:03:30 -04:00
|
|
|
#include "meta-wayland-types.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"
|
2012-01-07 17:21:32 -05:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
struct wl_resource *resource;
|
|
|
|
cairo_region_t *region;
|
|
|
|
} MetaWaylandRegion;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GSource source;
|
|
|
|
GPollFD pfd;
|
|
|
|
struct wl_display *display;
|
|
|
|
} WaylandEventSource;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
struct wl_list link;
|
|
|
|
|
|
|
|
/* Pointer back to the compositor */
|
|
|
|
MetaWaylandCompositor *compositor;
|
|
|
|
|
|
|
|
struct wl_resource *resource;
|
|
|
|
} MetaWaylandFrameCallback;
|
|
|
|
|
|
|
|
struct _MetaWaylandCompositor
|
|
|
|
{
|
|
|
|
struct wl_display *wayland_display;
|
2013-08-20 12:03:26 -04:00
|
|
|
char *display_name;
|
2012-01-07 17:21:32 -05:00
|
|
|
struct wl_event_loop *wayland_loop;
|
|
|
|
GMainLoop *init_loop;
|
|
|
|
ClutterActor *stage;
|
2013-08-19 05:12:42 -04:00
|
|
|
GHashTable *outputs;
|
2012-01-07 17:21:32 -05:00
|
|
|
GSource *wayland_event_source;
|
|
|
|
GList *surfaces;
|
|
|
|
struct wl_list frame_callbacks;
|
|
|
|
|
|
|
|
int xwayland_display_index;
|
|
|
|
char *xwayland_lockfile;
|
|
|
|
int xwayland_abstract_fd;
|
|
|
|
int xwayland_unix_fd;
|
|
|
|
pid_t xwayland_pid;
|
|
|
|
struct wl_client *xwayland_client;
|
|
|
|
struct wl_resource *xserver_resource;
|
2013-05-03 13:51:22 -04:00
|
|
|
|
2013-08-19 08:57:16 -04:00
|
|
|
MetaLauncher *launcher;
|
|
|
|
int drm_fd;
|
|
|
|
|
2013-05-03 13:51:22 -04:00
|
|
|
MetaWaylandSeat *seat;
|
|
|
|
};
|
|
|
|
|
|
|
|
void meta_wayland_init (void);
|
|
|
|
void meta_wayland_finalize (void);
|
2012-01-07 17:21:32 -05:00
|
|
|
|
|
|
|
/* We maintain a singleton MetaWaylandCompositor which can be got at via this
|
|
|
|
* API after meta_wayland_init() has been called. */
|
2013-05-03 13:51:22 -04:00
|
|
|
MetaWaylandCompositor *meta_wayland_compositor_get_default (void);
|
|
|
|
|
|
|
|
void meta_wayland_compositor_repick (MetaWaylandCompositor *compositor);
|
2012-01-07 17:21:32 -05:00
|
|
|
|
2013-05-03 13:51:22 -04:00
|
|
|
void meta_wayland_compositor_set_input_focus (MetaWaylandCompositor *compositor,
|
|
|
|
MetaWindow *window);
|
2013-10-04 02:29:43 -04:00
|
|
|
gboolean meta_wayland_compositor_handle_event (MetaWaylandCompositor *compositor,
|
|
|
|
const ClutterEvent *event);
|
2012-01-07 17:21:32 -05:00
|
|
|
|
2013-08-19 08:57:16 -04:00
|
|
|
MetaLauncher *meta_wayland_compositor_get_launcher (MetaWaylandCompositor *compositor);
|
2013-07-30 05:36:18 -04:00
|
|
|
gboolean meta_wayland_compositor_is_native (MetaWaylandCompositor *compositor);
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-08-30 12:26:18 -04:00
|
|
|
MetaWaylandBuffer * meta_wayland_buffer_from_resource (struct wl_resource *resource);
|
|
|
|
|
|
|
|
void meta_wayland_buffer_reference (MetaWaylandBufferReference *ref,
|
|
|
|
MetaWaylandBuffer *buffer);
|
|
|
|
|
2013-08-12 12:04:34 -04:00
|
|
|
|
2012-01-07 17:21:32 -05:00
|
|
|
#endif /* META_WAYLAND_PRIVATE_H */
|