2013-08-30 12:26:18 -04:00
|
|
|
/*
|
|
|
|
* Wayland Support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012,2013 Intel Corporation
|
|
|
|
* 2013 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-10-07 22:59:01 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "meta-wayland-surface.h"
|
2013-08-30 12:26:18 -04:00
|
|
|
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
#include <clutter/wayland/clutter-wayland-compositor.h>
|
|
|
|
#include <clutter/wayland/clutter-wayland-surface.h>
|
2013-09-03 06:00:29 -04:00
|
|
|
#include <cogl/cogl-wayland-server.h>
|
2013-08-30 12:26:18 -04:00
|
|
|
|
2016-01-28 04:14:06 -05:00
|
|
|
#include <gobject/gvaluecollector.h>
|
2013-08-30 12:26:18 -04:00
|
|
|
#include <wayland-server.h>
|
|
|
|
|
|
|
|
#include "meta-wayland-private.h"
|
|
|
|
#include "meta-xwayland-private.h"
|
2014-10-07 22:39:00 -04:00
|
|
|
#include "meta-wayland-buffer.h"
|
2014-10-07 23:12:36 -04:00
|
|
|
#include "meta-wayland-region.h"
|
2013-08-30 12:26:18 -04:00
|
|
|
#include "meta-wayland-seat.h"
|
|
|
|
#include "meta-wayland-keyboard.h"
|
|
|
|
#include "meta-wayland-pointer.h"
|
|
|
|
#include "meta-wayland-data-device.h"
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
#include "meta-wayland-outputs.h"
|
2015-12-14 23:51:24 -05:00
|
|
|
#include "meta-wayland-xdg-shell.h"
|
|
|
|
#include "meta-wayland-wl-shell.h"
|
2016-06-27 22:05:55 -04:00
|
|
|
#include "meta-wayland-gtk-shell.h"
|
window-actor: Split into two subclasses of MetaSurfaceActor
The rendering logic before was somewhat complex. We had three independent
cases to take into account when doing rendering:
* X11 compositor. In this case, we're a traditional X11 compositor,
not a Wayland compositor. We use XCompositeNameWindowPixmap to get
the backing pixmap for the window, and deal with the COMPOSITE
extension messiness.
In this case, meta_is_wayland_compositor() is FALSE.
* Wayland clients. In this case, we're a Wayland compositor managing
Wayland surfaces. The rendering for this is fairly straightforward,
as Cogl handles most of the complexity with EGL and SHM buffers...
Wayland clients give us the input and opaque regions through
wl_surface.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND.
* XWayland clients. In this case, we're a Wayland compositor, like
above, and XWayland hands us Wayland surfaces. XWayland handles
the COMPOSITE extension messiness for us, and hands us a buffer
like any other Wayland client. We have to fetch the input and
opaque regions from the X11 window ourselves.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_X11.
We now split the rendering logic into two subclasses, which are:
* MetaSurfaceActorX11, which handles the X11 compositor case, in that
it uses XCompositeNameWindowPixmap to get the backing pixmap, and
deal with all the COMPOSITE extension messiness.
* MetaSurfaceActorWayland, which handles the Wayland compositor case
for both native Wayland clients and XWayland clients. XWayland handles
COMPOSITE for us, and handles pushing a surface over through the
xf86-video-wayland DDX.
Frame sync is still in MetaWindowActor, as it needs to work for both the
X11 compositor and XWayland client cases. When Wayland's video display
protocol lands, this will need to be significantly overhauled, as it would
have to work for any wl_surface, including subsurfaces, so we would need
surface-level discretion.
https://bugzilla.gnome.org/show_bug.cgi?id=720631
2014-02-01 17:21:11 -05:00
|
|
|
|
2013-08-30 12:26:18 -04:00
|
|
|
#include "meta-cursor-tracker-private.h"
|
|
|
|
#include "display-private.h"
|
|
|
|
#include "window-private.h"
|
2015-04-27 21:09:16 -04:00
|
|
|
#include "meta-window-wayland.h"
|
2013-08-30 12:26:18 -04:00
|
|
|
|
2015-03-02 22:07:36 -05:00
|
|
|
#include "compositor/region-utils.h"
|
|
|
|
|
window-actor: Split into two subclasses of MetaSurfaceActor
The rendering logic before was somewhat complex. We had three independent
cases to take into account when doing rendering:
* X11 compositor. In this case, we're a traditional X11 compositor,
not a Wayland compositor. We use XCompositeNameWindowPixmap to get
the backing pixmap for the window, and deal with the COMPOSITE
extension messiness.
In this case, meta_is_wayland_compositor() is FALSE.
* Wayland clients. In this case, we're a Wayland compositor managing
Wayland surfaces. The rendering for this is fairly straightforward,
as Cogl handles most of the complexity with EGL and SHM buffers...
Wayland clients give us the input and opaque regions through
wl_surface.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND.
* XWayland clients. In this case, we're a Wayland compositor, like
above, and XWayland hands us Wayland surfaces. XWayland handles
the COMPOSITE extension messiness for us, and hands us a buffer
like any other Wayland client. We have to fetch the input and
opaque regions from the X11 window ourselves.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_X11.
We now split the rendering logic into two subclasses, which are:
* MetaSurfaceActorX11, which handles the X11 compositor case, in that
it uses XCompositeNameWindowPixmap to get the backing pixmap, and
deal with all the COMPOSITE extension messiness.
* MetaSurfaceActorWayland, which handles the Wayland compositor case
for both native Wayland clients and XWayland clients. XWayland handles
COMPOSITE for us, and handles pushing a surface over through the
xf86-video-wayland DDX.
Frame sync is still in MetaWindowActor, as it needs to work for both the
X11 compositor and XWayland client cases. When Wayland's video display
protocol lands, this will need to be significantly overhauled, as it would
have to work for any wl_surface, including subsurfaces, so we would need
surface-level discretion.
https://bugzilla.gnome.org/show_bug.cgi?id=720631
2014-02-01 17:21:11 -05:00
|
|
|
#include "meta-surface-actor.h"
|
|
|
|
#include "meta-surface-actor-wayland.h"
|
2015-04-29 11:44:05 -04:00
|
|
|
#include "meta-xwayland-private.h"
|
window-actor: Split into two subclasses of MetaSurfaceActor
The rendering logic before was somewhat complex. We had three independent
cases to take into account when doing rendering:
* X11 compositor. In this case, we're a traditional X11 compositor,
not a Wayland compositor. We use XCompositeNameWindowPixmap to get
the backing pixmap for the window, and deal with the COMPOSITE
extension messiness.
In this case, meta_is_wayland_compositor() is FALSE.
* Wayland clients. In this case, we're a Wayland compositor managing
Wayland surfaces. The rendering for this is fairly straightforward,
as Cogl handles most of the complexity with EGL and SHM buffers...
Wayland clients give us the input and opaque regions through
wl_surface.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND.
* XWayland clients. In this case, we're a Wayland compositor, like
above, and XWayland hands us Wayland surfaces. XWayland handles
the COMPOSITE extension messiness for us, and hands us a buffer
like any other Wayland client. We have to fetch the input and
opaque regions from the X11 window ourselves.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_X11.
We now split the rendering logic into two subclasses, which are:
* MetaSurfaceActorX11, which handles the X11 compositor case, in that
it uses XCompositeNameWindowPixmap to get the backing pixmap, and
deal with all the COMPOSITE extension messiness.
* MetaSurfaceActorWayland, which handles the Wayland compositor case
for both native Wayland clients and XWayland clients. XWayland handles
COMPOSITE for us, and handles pushing a surface over through the
xf86-video-wayland DDX.
Frame sync is still in MetaWindowActor, as it needs to work for both the
X11 compositor and XWayland client cases. When Wayland's video display
protocol lands, this will need to be significantly overhauled, as it would
have to work for any wl_surface, including subsurfaces, so we would need
surface-level discretion.
https://bugzilla.gnome.org/show_bug.cgi?id=720631
2014-02-01 17:21:11 -05:00
|
|
|
|
2015-06-17 00:10:52 -04:00
|
|
|
enum {
|
|
|
|
PENDING_STATE_SIGNAL_APPLIED,
|
|
|
|
|
|
|
|
PENDING_STATE_SIGNAL_LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2016-01-28 03:55:42 -05:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
SURFACE_ROLE_PROP_0,
|
|
|
|
|
|
|
|
SURFACE_ROLE_PROP_SURFACE,
|
|
|
|
};
|
|
|
|
|
2015-06-17 00:10:52 -04:00
|
|
|
static guint pending_state_signals[PENDING_STATE_SIGNAL_LAST_SIGNAL];
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
typedef struct _MetaWaylandSurfaceRolePrivate
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface;
|
|
|
|
} MetaWaylandSurfaceRolePrivate;
|
|
|
|
|
2014-01-12 17:24:00 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_WAYLAND_SUBSURFACE_PLACEMENT_ABOVE,
|
|
|
|
META_WAYLAND_SUBSURFACE_PLACEMENT_BELOW
|
|
|
|
} MetaWaylandSubsurfacePlacement;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
MetaWaylandSubsurfacePlacement placement;
|
|
|
|
MetaWaylandSurface *sibling;
|
|
|
|
struct wl_listener sibling_destroy_listener;
|
|
|
|
} MetaWaylandSubsurfacePlacementOp;
|
|
|
|
|
2015-07-07 23:21:23 -04:00
|
|
|
G_DEFINE_TYPE (MetaWaylandSurface, meta_wayland_surface, G_TYPE_OBJECT);
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (MetaWaylandSurfaceRole,
|
|
|
|
meta_wayland_surface_role,
|
|
|
|
G_TYPE_OBJECT);
|
|
|
|
|
2015-12-14 23:51:24 -05:00
|
|
|
G_DEFINE_TYPE (MetaWaylandSurfaceRoleActorSurface,
|
|
|
|
meta_wayland_surface_role_actor_surface,
|
|
|
|
META_TYPE_WAYLAND_SURFACE_ROLE);
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (MetaWaylandSurfaceRoleShellSurface,
|
|
|
|
meta_wayland_surface_role_shell_surface,
|
|
|
|
META_TYPE_WAYLAND_SURFACE_ROLE_ACTOR_SURFACE);
|
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
G_DEFINE_TYPE (MetaWaylandPendingState,
|
|
|
|
meta_wayland_pending_state,
|
|
|
|
G_TYPE_OBJECT);
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
struct _MetaWaylandSurfaceRoleSubsurface
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRole parent;
|
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (MetaWaylandSurfaceRoleSubsurface,
|
|
|
|
meta_wayland_surface_role_subsurface,
|
2015-12-14 23:51:24 -05:00
|
|
|
META_TYPE_WAYLAND_SURFACE_ROLE_ACTOR_SURFACE);
|
2015-08-18 23:06:46 -04:00
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
struct _MetaWaylandSurfaceRoleDND
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRole parent;
|
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (MetaWaylandSurfaceRoleDND,
|
|
|
|
meta_wayland_surface_role_dnd,
|
|
|
|
META_TYPE_WAYLAND_SURFACE_ROLE);
|
|
|
|
|
2015-10-22 08:07:52 -04:00
|
|
|
enum {
|
|
|
|
SURFACE_DESTROY,
|
2016-08-18 00:57:17 -04:00
|
|
|
SURFACE_UNMAPPED,
|
2016-06-28 02:56:20 -04:00
|
|
|
SURFACE_CONFIGURE,
|
2015-10-22 08:07:52 -04:00
|
|
|
N_SURFACE_SIGNALS
|
|
|
|
};
|
|
|
|
|
|
|
|
guint surface_signals[N_SURFACE_SIGNALS] = { 0 };
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_assigned (MetaWaylandSurfaceRole *surface_role);
|
|
|
|
|
2016-03-16 02:55:51 -04:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_pre_commit (MetaWaylandSurfaceRole *surface_role,
|
|
|
|
MetaWaylandPendingState *pending);
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_commit (MetaWaylandSurfaceRole *surface_role,
|
|
|
|
MetaWaylandPendingState *pending);
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
meta_wayland_surface_role_is_on_output (MetaWaylandSurfaceRole *surface_role,
|
|
|
|
MetaMonitorInfo *info);
|
|
|
|
|
2016-01-14 04:43:47 -05:00
|
|
|
static MetaWaylandSurface *
|
|
|
|
meta_wayland_surface_role_get_toplevel (MetaWaylandSurfaceRole *surface_role);
|
|
|
|
|
2015-12-14 23:51:24 -05:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_shell_surface_configure (MetaWaylandSurfaceRoleShellSurface *shell_surface_role,
|
2016-07-01 03:14:12 -04:00
|
|
|
int new_x,
|
|
|
|
int new_y,
|
2015-12-14 23:51:24 -05:00
|
|
|
int new_width,
|
|
|
|
int new_height,
|
|
|
|
MetaWaylandSerial *sent_serial);
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_shell_surface_ping (MetaWaylandSurfaceRoleShellSurface *shell_surface_role,
|
|
|
|
uint32_t serial);
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_shell_surface_close (MetaWaylandSurfaceRoleShellSurface *shell_surface_role);
|
|
|
|
|
2015-12-15 09:09:20 -05:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_shell_surface_managed (MetaWaylandSurfaceRoleShellSurface *shell_surface_role,
|
|
|
|
MetaWindow *window);
|
|
|
|
|
2016-01-28 04:14:06 -05:00
|
|
|
static void
|
|
|
|
unset_param_value (GParameter *param)
|
|
|
|
{
|
|
|
|
g_value_unset (¶m->value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GArray *
|
|
|
|
role_assignment_valist_to_params (GType role_type,
|
|
|
|
const char *first_property_name,
|
|
|
|
va_list var_args)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class;
|
|
|
|
const char *property_name = first_property_name;
|
|
|
|
GArray *params;
|
|
|
|
|
|
|
|
object_class = g_type_class_ref (role_type);
|
|
|
|
|
|
|
|
params = g_array_new (FALSE, FALSE, sizeof (GParameter));
|
|
|
|
g_array_set_clear_func (params, (GDestroyNotify) unset_param_value);
|
|
|
|
|
|
|
|
while (property_name)
|
|
|
|
{
|
|
|
|
GParameter param = {
|
|
|
|
.name = property_name,
|
|
|
|
.value = G_VALUE_INIT
|
|
|
|
};
|
|
|
|
GParamSpec *pspec;
|
|
|
|
GType ptype;
|
|
|
|
gchar *error = NULL;
|
|
|
|
|
|
|
|
pspec = g_object_class_find_property (object_class,
|
|
|
|
property_name);
|
|
|
|
g_assert (pspec);
|
|
|
|
|
|
|
|
ptype = G_PARAM_SPEC_VALUE_TYPE (pspec);
|
|
|
|
G_VALUE_COLLECT_INIT (¶m.value, ptype, var_args, 0, &error);
|
|
|
|
g_assert (!error);
|
|
|
|
|
|
|
|
g_array_append_val (params, param);
|
|
|
|
|
|
|
|
property_name = va_arg (var_args, const char *);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_type_class_unref (object_class);
|
|
|
|
|
|
|
|
return params;
|
|
|
|
}
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
gboolean
|
|
|
|
meta_wayland_surface_assign_role (MetaWaylandSurface *surface,
|
2016-01-28 04:14:06 -05:00
|
|
|
GType role_type,
|
|
|
|
const char *first_property_name,
|
|
|
|
...)
|
2015-07-08 04:14:00 -04:00
|
|
|
{
|
2016-01-28 04:14:06 -05:00
|
|
|
va_list var_args;
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
if (!surface->role)
|
2015-02-06 03:12:21 -05:00
|
|
|
{
|
2016-01-28 04:14:06 -05:00
|
|
|
if (first_property_name)
|
|
|
|
{
|
|
|
|
GArray *params;
|
|
|
|
GParameter param;
|
|
|
|
|
|
|
|
va_start (var_args, first_property_name);
|
|
|
|
params = role_assignment_valist_to_params (role_type,
|
|
|
|
first_property_name,
|
|
|
|
var_args);
|
|
|
|
va_end (var_args);
|
|
|
|
|
|
|
|
param = (GParameter) {
|
|
|
|
.name = "surface",
|
|
|
|
.value = G_VALUE_INIT
|
|
|
|
};
|
|
|
|
g_value_init (¶m.value, META_TYPE_WAYLAND_SURFACE);
|
|
|
|
g_value_set_object (¶m.value, surface);
|
|
|
|
g_array_append_val (params, param);
|
|
|
|
|
|
|
|
surface->role = g_object_newv (role_type, params->len,
|
|
|
|
(GParameter *) params->data);
|
|
|
|
|
|
|
|
g_array_unref (params);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
surface->role = g_object_new (role_type, "surface", surface, NULL);
|
|
|
|
}
|
2015-07-08 04:14:00 -04:00
|
|
|
|
|
|
|
meta_wayland_surface_role_assigned (surface->role);
|
2015-08-18 23:06:46 -04:00
|
|
|
|
2016-03-16 02:55:51 -04:00
|
|
|
/* Release the use count held on behalf of the just assigned role. */
|
|
|
|
if (surface->unassigned.buffer)
|
|
|
|
{
|
|
|
|
meta_wayland_surface_unref_buffer_use_count (surface);
|
|
|
|
g_clear_object (&surface->unassigned.buffer);
|
|
|
|
}
|
|
|
|
|
2015-08-28 00:15:21 -04:00
|
|
|
return TRUE;
|
2015-02-06 03:12:21 -05:00
|
|
|
}
|
2015-07-08 04:14:00 -04:00
|
|
|
else if (G_OBJECT_TYPE (surface->role) != role_type)
|
2015-02-06 03:12:21 -05:00
|
|
|
{
|
2015-08-28 00:15:21 -04:00
|
|
|
return FALSE;
|
2015-02-06 03:12:21 -05:00
|
|
|
}
|
2015-07-08 04:14:00 -04:00
|
|
|
else
|
|
|
|
{
|
2016-01-28 04:14:06 -05:00
|
|
|
va_start (var_args, first_property_name);
|
|
|
|
g_object_set_valist (G_OBJECT (surface->role),
|
|
|
|
first_property_name, var_args);
|
|
|
|
va_end (var_args);
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
2015-02-06 03:12:21 -05:00
|
|
|
}
|
|
|
|
|
2013-08-30 12:26:18 -04:00
|
|
|
static void
|
|
|
|
surface_process_damage (MetaWaylandSurface *surface,
|
|
|
|
cairo_region_t *region)
|
|
|
|
{
|
2016-03-16 02:47:53 -04:00
|
|
|
MetaWaylandBuffer *buffer = surface->buffer_ref.buffer;
|
2015-03-20 03:09:37 -04:00
|
|
|
unsigned int buffer_width;
|
|
|
|
unsigned int buffer_height;
|
|
|
|
cairo_rectangle_int_t surface_rect;
|
2015-03-02 22:07:36 -05:00
|
|
|
cairo_region_t *scaled_region;
|
2014-10-07 22:48:49 -04:00
|
|
|
int i, n_rectangles;
|
2014-04-23 16:14:31 -04:00
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
/* If the client destroyed the buffer it attached before committing, but
|
|
|
|
* still posted damage, or posted damage without any buffer, don't try to
|
|
|
|
* process it on the non-existing buffer.
|
|
|
|
*/
|
|
|
|
if (!buffer)
|
2014-04-27 10:18:09 -04:00
|
|
|
return;
|
|
|
|
|
2015-03-20 03:09:37 -04:00
|
|
|
/* Intersect the damage region with the surface region before scaling in
|
|
|
|
* order to avoid integer overflow when scaling a damage region is too large
|
|
|
|
* (for example INT32_MAX which mesa passes). */
|
2016-03-16 02:47:53 -04:00
|
|
|
buffer_width = cogl_texture_get_width (buffer->texture);
|
|
|
|
buffer_height = cogl_texture_get_height (buffer->texture);
|
2015-03-20 03:09:37 -04:00
|
|
|
surface_rect = (cairo_rectangle_int_t) {
|
|
|
|
.width = buffer_width / surface->scale,
|
|
|
|
.height = buffer_height / surface->scale,
|
|
|
|
};
|
|
|
|
cairo_region_intersect_rectangle (region, &surface_rect);
|
2014-04-23 16:14:31 -04:00
|
|
|
|
2015-03-02 22:07:36 -05:00
|
|
|
/* The damage region must be in the same coordinate space as the buffer,
|
|
|
|
* i.e. scaled with surface->scale. */
|
|
|
|
scaled_region = meta_region_scale (region, surface->scale);
|
|
|
|
|
2014-10-07 22:48:49 -04:00
|
|
|
/* First update the buffer. */
|
2016-03-16 02:47:53 -04:00
|
|
|
meta_wayland_buffer_process_damage (buffer, scaled_region);
|
2014-08-21 16:19:23 -04:00
|
|
|
|
2015-03-02 22:07:36 -05:00
|
|
|
/* Now damage the actor. The actor expects damage in the unscaled texture
|
|
|
|
* coordinate space, i.e. same as the buffer. */
|
2014-10-07 22:48:49 -04:00
|
|
|
/* XXX: Should this be a signal / callback on MetaWaylandBuffer instead? */
|
2015-03-02 22:07:36 -05:00
|
|
|
n_rectangles = cairo_region_num_rectangles (scaled_region);
|
2013-11-25 17:40:21 -05:00
|
|
|
for (i = 0; i < n_rectangles; i++)
|
2013-08-30 12:26:18 -04:00
|
|
|
{
|
2013-11-25 17:40:21 -05:00
|
|
|
cairo_rectangle_int_t rect;
|
2015-03-02 22:07:36 -05:00
|
|
|
cairo_region_get_rectangle (scaled_region, i, &rect);
|
2014-08-21 16:19:23 -04:00
|
|
|
|
window-actor: Split into two subclasses of MetaSurfaceActor
The rendering logic before was somewhat complex. We had three independent
cases to take into account when doing rendering:
* X11 compositor. In this case, we're a traditional X11 compositor,
not a Wayland compositor. We use XCompositeNameWindowPixmap to get
the backing pixmap for the window, and deal with the COMPOSITE
extension messiness.
In this case, meta_is_wayland_compositor() is FALSE.
* Wayland clients. In this case, we're a Wayland compositor managing
Wayland surfaces. The rendering for this is fairly straightforward,
as Cogl handles most of the complexity with EGL and SHM buffers...
Wayland clients give us the input and opaque regions through
wl_surface.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND.
* XWayland clients. In this case, we're a Wayland compositor, like
above, and XWayland hands us Wayland surfaces. XWayland handles
the COMPOSITE extension messiness for us, and hands us a buffer
like any other Wayland client. We have to fetch the input and
opaque regions from the X11 window ourselves.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_X11.
We now split the rendering logic into two subclasses, which are:
* MetaSurfaceActorX11, which handles the X11 compositor case, in that
it uses XCompositeNameWindowPixmap to get the backing pixmap, and
deal with all the COMPOSITE extension messiness.
* MetaSurfaceActorWayland, which handles the Wayland compositor case
for both native Wayland clients and XWayland clients. XWayland handles
COMPOSITE for us, and handles pushing a surface over through the
xf86-video-wayland DDX.
Frame sync is still in MetaWindowActor, as it needs to work for both the
X11 compositor and XWayland client cases. When Wayland's video display
protocol lands, this will need to be significantly overhauled, as it would
have to work for any wl_surface, including subsurfaces, so we would need
surface-level discretion.
https://bugzilla.gnome.org/show_bug.cgi?id=720631
2014-02-01 17:21:11 -05:00
|
|
|
meta_surface_actor_process_damage (surface->surface_actor,
|
2015-03-02 22:07:36 -05:00
|
|
|
rect.x, rect.y,
|
|
|
|
rect.width, rect.height);
|
2013-08-30 12:26:18 -04:00
|
|
|
}
|
2015-03-02 22:07:36 -05:00
|
|
|
|
|
|
|
cairo_region_destroy (scaled_region);
|
2013-08-30 12:26:18 -04:00
|
|
|
}
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
void
|
|
|
|
meta_wayland_surface_queue_pending_state_frame_callbacks (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandPendingState *pending)
|
|
|
|
{
|
|
|
|
wl_list_insert_list (&surface->compositor->frame_callbacks,
|
|
|
|
&pending->frame_callback_list);
|
|
|
|
wl_list_init (&pending->frame_callback_list);
|
|
|
|
}
|
|
|
|
|
2014-10-06 11:07:43 -04:00
|
|
|
static void
|
2015-07-08 04:14:00 -04:00
|
|
|
dnd_surface_commit (MetaWaylandSurfaceRole *surface_role,
|
2014-10-06 11:07:43 -04:00
|
|
|
MetaWaylandPendingState *pending)
|
|
|
|
{
|
2015-07-08 04:14:00 -04:00
|
|
|
MetaWaylandSurface *surface =
|
|
|
|
meta_wayland_surface_role_get_surface (surface_role);
|
|
|
|
|
|
|
|
meta_wayland_surface_queue_pending_state_frame_callbacks (surface, pending);
|
2014-10-06 11:07:43 -04:00
|
|
|
}
|
|
|
|
|
2016-01-14 04:49:57 -05:00
|
|
|
void
|
|
|
|
meta_wayland_surface_calculate_window_geometry (MetaWaylandSurface *surface,
|
|
|
|
MetaRectangle *total_geometry,
|
|
|
|
float parent_x,
|
|
|
|
float parent_y)
|
2014-07-17 15:24:06 -04:00
|
|
|
{
|
2015-03-25 05:18:35 -04:00
|
|
|
MetaSurfaceActorWayland *surface_actor =
|
|
|
|
META_SURFACE_ACTOR_WAYLAND (surface->surface_actor);
|
|
|
|
MetaRectangle subsurface_rect;
|
2014-07-17 15:24:06 -04:00
|
|
|
MetaRectangle geom;
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
/* Unmapped surfaces don't count. */
|
2015-03-25 05:18:35 -04:00
|
|
|
if (!CLUTTER_ACTOR_IS_VISIBLE (CLUTTER_ACTOR (surface_actor)))
|
2014-07-17 15:24:06 -04:00
|
|
|
return;
|
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
if (!surface->buffer_ref.buffer)
|
2014-08-26 10:12:38 -04:00
|
|
|
return;
|
|
|
|
|
2015-03-25 05:18:35 -04:00
|
|
|
meta_surface_actor_wayland_get_subsurface_rect (surface_actor,
|
|
|
|
&subsurface_rect);
|
2014-07-17 15:24:06 -04:00
|
|
|
|
2015-03-25 05:18:35 -04:00
|
|
|
geom.x = parent_x + subsurface_rect.x;
|
|
|
|
geom.y = parent_x + subsurface_rect.y;
|
|
|
|
geom.width = subsurface_rect.width;
|
|
|
|
geom.height = subsurface_rect.height;
|
2014-07-17 15:24:06 -04:00
|
|
|
|
|
|
|
meta_rectangle_union (total_geometry, &geom, total_geometry);
|
|
|
|
|
|
|
|
for (l = surface->subsurfaces; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *subsurface = l->data;
|
2016-01-14 04:49:57 -05:00
|
|
|
meta_wayland_surface_calculate_window_geometry (subsurface,
|
|
|
|
total_geometry,
|
|
|
|
subsurface_rect.x,
|
|
|
|
subsurface_rect.y);
|
2014-07-17 15:24:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-14 23:51:24 -05:00
|
|
|
void
|
|
|
|
meta_wayland_surface_destroy_window (MetaWaylandSurface *surface)
|
2015-04-24 21:13:44 -04:00
|
|
|
{
|
|
|
|
if (surface->window)
|
|
|
|
{
|
|
|
|
MetaDisplay *display = meta_get_display ();
|
|
|
|
guint32 timestamp = meta_display_get_current_time_roundtrip (display);
|
|
|
|
|
|
|
|
meta_window_unmanage (surface->window, timestamp);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert (surface->window == NULL);
|
|
|
|
}
|
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
MetaWaylandBuffer *
|
|
|
|
meta_wayland_surface_get_buffer (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
return surface->buffer_ref.buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_surface_ref_buffer_use_count (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
g_return_if_fail (surface->buffer_ref.buffer);
|
|
|
|
g_warn_if_fail (surface->buffer_ref.buffer->resource);
|
|
|
|
|
|
|
|
surface->buffer_ref.use_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_surface_unref_buffer_use_count (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
MetaWaylandBuffer *buffer = surface->buffer_ref.buffer;
|
|
|
|
|
|
|
|
g_return_if_fail (surface->buffer_ref.use_count != 0);
|
|
|
|
|
|
|
|
surface->buffer_ref.use_count--;
|
|
|
|
|
|
|
|
g_return_if_fail (buffer);
|
|
|
|
|
|
|
|
if (surface->buffer_ref.use_count == 0 && buffer->resource)
|
|
|
|
wl_resource_queue_event (buffer->resource, WL_BUFFER_RELEASE);
|
|
|
|
}
|
|
|
|
|
2013-11-25 16:26:02 -05:00
|
|
|
static void
|
2015-07-08 04:14:00 -04:00
|
|
|
queue_surface_actor_frame_callbacks (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandPendingState *pending)
|
|
|
|
{
|
|
|
|
MetaSurfaceActorWayland *surface_actor =
|
|
|
|
META_SURFACE_ACTOR_WAYLAND (surface->surface_actor);
|
|
|
|
|
|
|
|
meta_surface_actor_wayland_add_frame_callbacks (surface_actor,
|
|
|
|
&pending->frame_callback_list);
|
|
|
|
wl_list_init (&pending->frame_callback_list);
|
|
|
|
}
|
|
|
|
|
2015-12-14 23:51:24 -05:00
|
|
|
void
|
|
|
|
meta_wayland_surface_apply_window_state (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandPendingState *pending)
|
2013-11-25 16:26:02 -05:00
|
|
|
{
|
2016-03-04 03:14:33 -05:00
|
|
|
MetaSurfaceActorWayland *actor =
|
|
|
|
META_SURFACE_ACTOR_WAYLAND (surface->surface_actor);
|
2014-07-17 14:15:05 -04:00
|
|
|
MetaWindow *window = surface->window;
|
2015-12-14 23:51:24 -05:00
|
|
|
MetaWaylandBuffer *buffer = surface->buffer_ref.buffer;
|
2016-01-14 04:49:57 -05:00
|
|
|
CoglTexture *texture = buffer->texture;
|
2016-03-04 03:14:33 -05:00
|
|
|
double scale;
|
2013-11-25 15:50:05 -05:00
|
|
|
|
2016-03-04 03:14:33 -05:00
|
|
|
scale = meta_surface_actor_wayland_get_scale (actor);
|
|
|
|
window->buffer_rect.width = cogl_texture_get_width (texture) * scale;
|
|
|
|
window->buffer_rect.height = cogl_texture_get_height (texture) * scale;
|
2013-11-25 16:26:02 -05:00
|
|
|
}
|
2013-11-25 15:50:05 -05:00
|
|
|
|
2014-01-13 17:31:25 -05:00
|
|
|
static void
|
2016-03-15 00:46:06 -04:00
|
|
|
pending_buffer_resource_destroyed (MetaWaylandBuffer *buffer,
|
|
|
|
MetaWaylandPendingState *pending)
|
2014-01-13 17:31:25 -05:00
|
|
|
{
|
2016-03-15 00:46:06 -04:00
|
|
|
g_signal_handler_disconnect (buffer, pending->buffer_destroy_handler_id);
|
|
|
|
pending->buffer = NULL;
|
2014-01-13 17:31:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-18 18:07:05 -04:00
|
|
|
pending_state_init (MetaWaylandPendingState *state)
|
2014-01-13 17:31:25 -05:00
|
|
|
{
|
|
|
|
state->newly_attached = FALSE;
|
|
|
|
state->buffer = NULL;
|
|
|
|
state->dx = 0;
|
|
|
|
state->dy = 0;
|
2014-04-26 04:27:34 -04:00
|
|
|
state->scale = 0;
|
2014-01-13 17:31:25 -05:00
|
|
|
|
2014-04-18 18:19:02 -04:00
|
|
|
state->input_region = NULL;
|
2015-08-04 02:58:26 -04:00
|
|
|
state->input_region_set = FALSE;
|
2014-04-18 18:19:02 -04:00
|
|
|
state->opaque_region = NULL;
|
2015-08-04 02:58:26 -04:00
|
|
|
state->opaque_region_set = FALSE;
|
2014-04-18 18:19:02 -04:00
|
|
|
|
2014-01-13 17:31:25 -05:00
|
|
|
state->damage = cairo_region_create ();
|
|
|
|
wl_list_init (&state->frame_callback_list);
|
2014-02-09 18:23:07 -05:00
|
|
|
|
2014-07-17 14:07:38 -04:00
|
|
|
state->has_new_geometry = FALSE;
|
2014-01-13 17:31:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-18 18:07:05 -04:00
|
|
|
pending_state_destroy (MetaWaylandPendingState *state)
|
2014-01-13 17:31:25 -05:00
|
|
|
{
|
|
|
|
MetaWaylandFrameCallback *cb, *next;
|
|
|
|
|
|
|
|
g_clear_pointer (&state->damage, cairo_region_destroy);
|
|
|
|
g_clear_pointer (&state->input_region, cairo_region_destroy);
|
|
|
|
g_clear_pointer (&state->opaque_region, cairo_region_destroy);
|
|
|
|
|
|
|
|
if (state->buffer)
|
2016-03-15 00:46:06 -04:00
|
|
|
g_signal_handler_disconnect (state->buffer,
|
|
|
|
state->buffer_destroy_handler_id);
|
2014-01-13 17:31:25 -05:00
|
|
|
wl_list_for_each_safe (cb, next, &state->frame_callback_list, link)
|
|
|
|
wl_resource_destroy (cb->resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-18 18:07:05 -04:00
|
|
|
pending_state_reset (MetaWaylandPendingState *state)
|
2014-01-13 17:31:25 -05:00
|
|
|
{
|
2014-04-18 18:07:05 -04:00
|
|
|
pending_state_destroy (state);
|
|
|
|
pending_state_init (state);
|
2014-01-13 17:31:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-18 18:07:05 -04:00
|
|
|
move_pending_state (MetaWaylandPendingState *from,
|
|
|
|
MetaWaylandPendingState *to)
|
2014-01-13 17:31:25 -05:00
|
|
|
{
|
|
|
|
if (from->buffer)
|
2016-03-15 00:46:06 -04:00
|
|
|
g_signal_handler_disconnect (from->buffer, from->buffer_destroy_handler_id);
|
2014-01-13 17:31:25 -05:00
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
to->newly_attached = from->newly_attached;
|
|
|
|
to->buffer = from->buffer;
|
|
|
|
to->dx = from->dx;
|
|
|
|
to->dy = from->dy;
|
|
|
|
to->scale = from->scale;
|
|
|
|
to->damage = from->damage;
|
|
|
|
to->input_region = from->input_region;
|
|
|
|
to->input_region_set = from->input_region_set;
|
|
|
|
to->opaque_region = from->opaque_region;
|
|
|
|
to->opaque_region_set = from->opaque_region_set;
|
|
|
|
to->new_geometry = from->new_geometry;
|
|
|
|
to->has_new_geometry = from->has_new_geometry;
|
2014-01-13 17:31:25 -05:00
|
|
|
|
2015-01-29 02:43:01 -05:00
|
|
|
wl_list_init (&to->frame_callback_list);
|
|
|
|
wl_list_insert_list (&to->frame_callback_list, &from->frame_callback_list);
|
|
|
|
|
2014-01-13 17:31:25 -05:00
|
|
|
if (to->buffer)
|
2016-03-15 00:46:06 -04:00
|
|
|
{
|
|
|
|
to->buffer_destroy_handler_id =
|
|
|
|
g_signal_connect (to->buffer, "resource-destroyed",
|
|
|
|
G_CALLBACK (pending_buffer_resource_destroyed),
|
|
|
|
to);
|
|
|
|
}
|
2014-01-13 17:31:25 -05:00
|
|
|
|
2014-04-18 18:19:02 -04:00
|
|
|
pending_state_init (from);
|
2014-01-13 17:31:25 -05:00
|
|
|
}
|
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
static void
|
|
|
|
meta_wayland_pending_state_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
MetaWaylandPendingState *state = META_WAYLAND_PENDING_STATE (object);
|
|
|
|
|
|
|
|
pending_state_destroy (state);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (meta_wayland_pending_state_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_pending_state_init (MetaWaylandPendingState *state)
|
|
|
|
{
|
|
|
|
pending_state_init (state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_pending_state_class_init (MetaWaylandPendingStateClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = meta_wayland_pending_state_finalize;
|
2015-06-17 00:10:52 -04:00
|
|
|
|
|
|
|
pending_state_signals[PENDING_STATE_SIGNAL_APPLIED] =
|
|
|
|
g_signal_new ("applied",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
G_TYPE_NONE, 0);
|
2015-12-14 04:13:35 -05:00
|
|
|
}
|
|
|
|
|
2013-11-25 16:26:02 -05:00
|
|
|
static void
|
2016-03-03 23:13:18 -05:00
|
|
|
subsurface_role_commit (MetaWaylandSurfaceRole *surface_role,
|
|
|
|
MetaWaylandPendingState *pending)
|
2013-11-25 16:26:02 -05:00
|
|
|
{
|
2015-07-08 04:14:00 -04:00
|
|
|
MetaWaylandSurface *surface =
|
|
|
|
meta_wayland_surface_role_get_surface (surface_role);
|
2015-03-04 22:11:09 -05:00
|
|
|
MetaSurfaceActorWayland *surface_actor =
|
|
|
|
META_SURFACE_ACTOR_WAYLAND (surface->surface_actor);
|
2014-07-17 14:15:05 -04:00
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
queue_surface_actor_frame_callbacks (surface, pending);
|
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
if (surface->buffer_ref.buffer != NULL)
|
2014-07-17 14:15:05 -04:00
|
|
|
clutter_actor_show (CLUTTER_ACTOR (surface_actor));
|
|
|
|
else
|
|
|
|
clutter_actor_hide (CLUTTER_ACTOR (surface_actor));
|
2013-11-25 15:50:05 -05:00
|
|
|
}
|
|
|
|
|
2016-01-14 04:43:47 -05:00
|
|
|
static MetaWaylandSurface *
|
|
|
|
subsurface_role_get_toplevel (MetaWaylandSurfaceRole *surface_role)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface =
|
|
|
|
meta_wayland_surface_role_get_surface (surface_role);
|
|
|
|
MetaWaylandSurface *parent = surface->sub.parent;
|
|
|
|
|
|
|
|
return meta_wayland_surface_role_get_toplevel (parent->role);
|
|
|
|
}
|
|
|
|
|
2015-01-26 03:46:20 -05:00
|
|
|
/* A non-subsurface is always desynchronized.
|
|
|
|
*
|
|
|
|
* A subsurface is effectively synchronized if either its parent is
|
|
|
|
* synchronized or itself is in synchronized mode. */
|
|
|
|
static gboolean
|
|
|
|
is_surface_effectively_synchronized (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
if (surface->wl_subsurface == NULL)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (surface->sub.synchronous)
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return is_surface_effectively_synchronized (surface->sub.parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-12 17:17:29 -05:00
|
|
|
static void
|
2015-01-26 03:46:20 -05:00
|
|
|
apply_pending_state (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandPendingState *pending);
|
2014-01-13 17:31:25 -05:00
|
|
|
|
|
|
|
static void
|
2015-01-26 03:46:20 -05:00
|
|
|
parent_surface_state_applied (gpointer data, gpointer user_data)
|
2014-01-13 17:31:25 -05:00
|
|
|
{
|
2015-01-26 03:46:20 -05:00
|
|
|
MetaWaylandSurface *surface = data;
|
|
|
|
|
|
|
|
if (surface->sub.pending_pos)
|
|
|
|
{
|
2015-03-04 22:11:09 -05:00
|
|
|
surface->sub.x = surface->sub.pending_x;
|
|
|
|
surface->sub.y = surface->sub.pending_y;
|
2015-01-26 03:46:20 -05:00
|
|
|
surface->sub.pending_pos = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (surface->sub.pending_placement_ops)
|
|
|
|
{
|
|
|
|
GSList *it;
|
2015-03-04 23:15:51 -05:00
|
|
|
MetaWaylandSurface *parent = surface->sub.parent;
|
|
|
|
ClutterActor *parent_actor =
|
|
|
|
clutter_actor_get_parent (CLUTTER_ACTOR (parent->surface_actor));
|
2016-07-21 15:23:06 -04:00
|
|
|
ClutterActor *surface_actor = CLUTTER_ACTOR (surface->surface_actor);
|
2015-03-04 23:15:51 -05:00
|
|
|
|
2015-01-26 03:46:20 -05:00
|
|
|
for (it = surface->sub.pending_placement_ops; it; it = it->next)
|
|
|
|
{
|
|
|
|
MetaWaylandSubsurfacePlacementOp *op = it->data;
|
|
|
|
ClutterActor *sibling_actor;
|
|
|
|
|
|
|
|
if (!op->sibling)
|
|
|
|
{
|
|
|
|
g_slice_free (MetaWaylandSubsurfacePlacementOp, op);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
sibling_actor = CLUTTER_ACTOR (op->sibling->surface_actor);
|
|
|
|
|
|
|
|
switch (op->placement)
|
|
|
|
{
|
|
|
|
case META_WAYLAND_SUBSURFACE_PLACEMENT_ABOVE:
|
|
|
|
clutter_actor_set_child_above_sibling (parent_actor,
|
|
|
|
surface_actor,
|
|
|
|
sibling_actor);
|
|
|
|
break;
|
|
|
|
case META_WAYLAND_SUBSURFACE_PLACEMENT_BELOW:
|
|
|
|
clutter_actor_set_child_below_sibling (parent_actor,
|
|
|
|
surface_actor,
|
|
|
|
sibling_actor);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_list_remove (&op->sibling_destroy_listener.link);
|
|
|
|
g_slice_free (MetaWaylandSubsurfacePlacementOp, op);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free (surface->sub.pending_placement_ops);
|
|
|
|
surface->sub.pending_placement_ops = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_surface_effectively_synchronized (surface))
|
2015-12-14 04:13:35 -05:00
|
|
|
apply_pending_state (surface, surface->sub.pending);
|
2015-03-04 22:11:09 -05:00
|
|
|
|
|
|
|
meta_surface_actor_wayland_sync_subsurface_state (
|
|
|
|
META_SURFACE_ACTOR_WAYLAND (surface->surface_actor));
|
2014-01-13 17:31:25 -05:00
|
|
|
}
|
2014-01-12 17:17:29 -05:00
|
|
|
|
2013-08-30 12:26:18 -04:00
|
|
|
static void
|
2015-01-26 03:46:20 -05:00
|
|
|
apply_pending_state (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandPendingState *pending)
|
2013-08-30 12:26:18 -04:00
|
|
|
{
|
2016-03-16 02:47:53 -04:00
|
|
|
MetaSurfaceActorWayland *surface_actor_wayland =
|
|
|
|
META_SURFACE_ACTOR_WAYLAND (surface->surface_actor);
|
2016-02-08 16:07:34 -05:00
|
|
|
|
2016-03-16 02:55:51 -04:00
|
|
|
if (surface->role)
|
|
|
|
{
|
|
|
|
meta_wayland_surface_role_pre_commit (surface->role, pending);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (pending->newly_attached && surface->unassigned.buffer)
|
|
|
|
{
|
|
|
|
meta_wayland_surface_unref_buffer_use_count (surface);
|
|
|
|
g_clear_object (&surface->unassigned.buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-12 02:29:05 -04:00
|
|
|
if (pending->newly_attached)
|
2014-04-18 15:41:48 -04:00
|
|
|
{
|
2016-03-16 02:47:53 -04:00
|
|
|
gboolean switched_buffer;
|
|
|
|
|
|
|
|
if (!surface->buffer_ref.buffer && surface->window)
|
2015-06-08 05:59:42 -04:00
|
|
|
meta_window_queue (surface->window, META_QUEUE_CALC_SHOWING);
|
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
/* Always release any previously held buffer. If the buffer held is same
|
|
|
|
* as the newly attached buffer, we still need to release it here, because
|
|
|
|
* wl_surface.attach+commit and wl_buffer.release on the attached buffer
|
|
|
|
* is symmetric.
|
|
|
|
*/
|
|
|
|
if (surface->buffer_held)
|
|
|
|
meta_wayland_surface_unref_buffer_use_count (surface);
|
|
|
|
|
|
|
|
switched_buffer = g_set_object (&surface->buffer_ref.buffer,
|
|
|
|
pending->buffer);
|
2014-04-18 15:41:48 -04:00
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
if (pending->buffer)
|
|
|
|
meta_wayland_surface_ref_buffer_use_count (surface);
|
2016-02-08 16:07:34 -05:00
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
if (switched_buffer && pending->buffer)
|
|
|
|
{
|
|
|
|
CoglTexture *texture;
|
2016-02-08 16:07:34 -05:00
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
texture = meta_wayland_buffer_ensure_texture (pending->buffer);
|
|
|
|
meta_surface_actor_wayland_set_texture (surface_actor_wayland,
|
|
|
|
texture);
|
2014-04-18 15:41:48 -04:00
|
|
|
}
|
2016-03-16 02:47:53 -04:00
|
|
|
|
|
|
|
/* If the newly attached buffer is going to be accessed directly without
|
|
|
|
* making a copy, such as an EGL buffer, mark it as in-use don't release
|
|
|
|
* it until is replaced by a subsequent wl_surface.commit or when the
|
|
|
|
* wl_surface is destroyed.
|
|
|
|
*/
|
|
|
|
surface->buffer_held = (pending->buffer &&
|
|
|
|
!wl_shm_buffer_get (pending->buffer->resource));
|
2014-04-18 15:41:48 -04:00
|
|
|
}
|
|
|
|
|
2014-04-26 04:27:34 -04:00
|
|
|
if (pending->scale > 0)
|
2014-10-25 06:26:19 -04:00
|
|
|
surface->scale = pending->scale;
|
2014-04-26 04:27:34 -04:00
|
|
|
|
2014-04-27 10:12:02 -04:00
|
|
|
if (!cairo_region_is_empty (pending->damage))
|
|
|
|
surface_process_damage (surface, pending->damage);
|
2014-04-12 02:29:05 -04:00
|
|
|
|
2014-08-21 17:46:36 -04:00
|
|
|
surface->offset_x += pending->dx;
|
|
|
|
surface->offset_y += pending->dy;
|
|
|
|
|
2015-08-04 02:58:26 -04:00
|
|
|
if (pending->opaque_region_set)
|
2014-04-26 04:27:34 -04:00
|
|
|
{
|
2015-03-02 09:56:35 -05:00
|
|
|
if (surface->opaque_region)
|
|
|
|
cairo_region_destroy (surface->opaque_region);
|
2015-08-04 02:58:26 -04:00
|
|
|
if (pending->opaque_region)
|
|
|
|
surface->opaque_region = cairo_region_reference (pending->opaque_region);
|
|
|
|
else
|
|
|
|
surface->opaque_region = NULL;
|
2014-04-26 04:27:34 -04:00
|
|
|
}
|
2015-03-02 09:56:35 -05:00
|
|
|
|
2015-08-04 02:58:26 -04:00
|
|
|
if (pending->input_region_set)
|
2014-04-26 04:27:34 -04:00
|
|
|
{
|
2015-03-02 09:56:35 -05:00
|
|
|
if (surface->input_region)
|
|
|
|
cairo_region_destroy (surface->input_region);
|
2015-08-04 02:58:26 -04:00
|
|
|
if (pending->input_region)
|
|
|
|
surface->input_region = cairo_region_reference (pending->input_region);
|
|
|
|
else
|
|
|
|
surface->input_region = NULL;
|
2014-04-26 04:27:34 -04:00
|
|
|
}
|
2014-04-12 02:42:40 -04:00
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
if (surface->role)
|
|
|
|
{
|
|
|
|
meta_wayland_surface_role_commit (surface->role, pending);
|
|
|
|
g_assert (wl_list_empty (&pending->frame_callback_list));
|
|
|
|
}
|
|
|
|
else
|
2015-08-09 06:54:00 -04:00
|
|
|
{
|
2015-08-18 23:06:46 -04:00
|
|
|
/* Since there is no role assigned to the surface yet, keep frame
|
|
|
|
* callbacks queued until a role is assigned and we know how
|
|
|
|
* the surface will be drawn.
|
|
|
|
*/
|
|
|
|
wl_list_insert_list (&surface->pending_frame_callback_list,
|
|
|
|
&pending->frame_callback_list);
|
2015-07-08 04:14:00 -04:00
|
|
|
wl_list_init (&pending->frame_callback_list);
|
2016-03-16 02:55:51 -04:00
|
|
|
|
|
|
|
if (pending->newly_attached)
|
|
|
|
{
|
|
|
|
/* The need to keep the wl_buffer from being released depends on what
|
|
|
|
* role the surface is given. That means we need to also keep a use
|
|
|
|
* count for wl_buffer's that are used by unassigned wl_surface's.
|
|
|
|
*/
|
|
|
|
g_set_object (&surface->unassigned.buffer, surface->buffer_ref.buffer);
|
|
|
|
if (surface->unassigned.buffer)
|
|
|
|
meta_wayland_surface_ref_buffer_use_count (surface);
|
|
|
|
}
|
2015-02-05 05:50:27 -05:00
|
|
|
}
|
2013-08-30 12:26:18 -04:00
|
|
|
|
2016-03-16 02:55:51 -04:00
|
|
|
/* If we have a buffer that we are not using, decrease the use count so it may
|
|
|
|
* be released if no-one else has a use-reference to it.
|
|
|
|
*/
|
|
|
|
if (pending->newly_attached &&
|
|
|
|
!surface->buffer_held && surface->buffer_ref.buffer)
|
|
|
|
meta_wayland_surface_unref_buffer_use_count (surface);
|
|
|
|
|
2015-06-17 00:10:52 -04:00
|
|
|
g_signal_emit (pending,
|
|
|
|
pending_state_signals[PENDING_STATE_SIGNAL_APPLIED],
|
|
|
|
0);
|
|
|
|
|
2014-04-18 18:07:05 -04:00
|
|
|
pending_state_reset (pending);
|
2015-01-26 03:46:20 -05:00
|
|
|
|
|
|
|
g_list_foreach (surface->subsurfaces, parent_surface_state_applied, NULL);
|
2014-02-01 16:24:43 -05:00
|
|
|
}
|
2014-01-13 17:31:25 -05:00
|
|
|
|
2014-04-12 02:45:38 -04:00
|
|
|
static void
|
2014-04-02 11:12:58 -04:00
|
|
|
meta_wayland_surface_commit (MetaWaylandSurface *surface)
|
|
|
|
{
|
2015-01-26 03:46:20 -05:00
|
|
|
/*
|
|
|
|
* If this is a sub-surface and it is in effective synchronous mode, only
|
|
|
|
* cache the pending surface state until either one of the following two
|
|
|
|
* scenarios happens:
|
|
|
|
* 1) Its parent surface gets its state applied.
|
|
|
|
* 2) Its mode changes from synchronized to desynchronized and its parent
|
|
|
|
* surface is in effective desynchronized mode.
|
|
|
|
*/
|
|
|
|
if (is_surface_effectively_synchronized (surface))
|
2015-12-14 04:13:35 -05:00
|
|
|
move_pending_state (surface->pending, surface->sub.pending);
|
2015-01-26 03:46:20 -05:00
|
|
|
else
|
2015-12-14 04:13:35 -05:00
|
|
|
apply_pending_state (surface, surface->pending);
|
2014-04-02 11:12:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_surface_destroy (struct wl_client *client,
|
|
|
|
struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
wl_resource_destroy (resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_surface_attach (struct wl_client *client,
|
|
|
|
struct wl_resource *surface_resource,
|
|
|
|
struct wl_resource *buffer_resource,
|
|
|
|
gint32 dx, gint32 dy)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface =
|
|
|
|
wl_resource_get_user_data (surface_resource);
|
|
|
|
MetaWaylandBuffer *buffer;
|
|
|
|
|
|
|
|
/* X11 unmanaged window */
|
|
|
|
if (!surface)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (buffer_resource)
|
|
|
|
buffer = meta_wayland_buffer_from_resource (buffer_resource);
|
|
|
|
else
|
|
|
|
buffer = NULL;
|
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
if (surface->pending->buffer)
|
2016-03-15 00:46:06 -04:00
|
|
|
{
|
|
|
|
g_signal_handler_disconnect (surface->pending->buffer,
|
|
|
|
surface->pending->buffer_destroy_handler_id);
|
|
|
|
}
|
2014-04-02 11:12:58 -04:00
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
surface->pending->newly_attached = TRUE;
|
|
|
|
surface->pending->buffer = buffer;
|
|
|
|
surface->pending->dx = dx;
|
|
|
|
surface->pending->dy = dy;
|
2014-04-02 11:12:58 -04:00
|
|
|
|
|
|
|
if (buffer)
|
2016-03-15 00:46:06 -04:00
|
|
|
{
|
|
|
|
surface->pending->buffer_destroy_handler_id =
|
|
|
|
g_signal_connect (buffer, "resource-destroyed",
|
|
|
|
G_CALLBACK (pending_buffer_resource_destroyed),
|
|
|
|
surface->pending);
|
|
|
|
}
|
2014-04-02 11:12:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_surface_damage (struct wl_client *client,
|
|
|
|
struct wl_resource *surface_resource,
|
|
|
|
gint32 x,
|
|
|
|
gint32 y,
|
|
|
|
gint32 width,
|
|
|
|
gint32 height)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (surface_resource);
|
|
|
|
cairo_rectangle_int_t rectangle = { x, y, width, height };
|
|
|
|
|
|
|
|
/* X11 unmanaged window */
|
|
|
|
if (!surface)
|
|
|
|
return;
|
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
cairo_region_union_rectangle (surface->pending->damage, &rectangle);
|
2014-04-02 11:12:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
destroy_frame_callback (struct wl_resource *callback_resource)
|
|
|
|
{
|
|
|
|
MetaWaylandFrameCallback *callback =
|
|
|
|
wl_resource_get_user_data (callback_resource);
|
|
|
|
|
|
|
|
wl_list_remove (&callback->link);
|
|
|
|
g_slice_free (MetaWaylandFrameCallback, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_surface_frame (struct wl_client *client,
|
|
|
|
struct wl_resource *surface_resource,
|
|
|
|
guint32 callback_id)
|
|
|
|
{
|
|
|
|
MetaWaylandFrameCallback *callback;
|
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (surface_resource);
|
|
|
|
|
|
|
|
/* X11 unmanaged window */
|
|
|
|
if (!surface)
|
|
|
|
return;
|
|
|
|
|
|
|
|
callback = g_slice_new0 (MetaWaylandFrameCallback);
|
2015-02-25 10:26:01 -05:00
|
|
|
callback->surface = surface;
|
2014-04-02 11:12:58 -04:00
|
|
|
callback->resource = wl_resource_create (client, &wl_callback_interface, META_WL_CALLBACK_VERSION, callback_id);
|
|
|
|
wl_resource_set_implementation (callback->resource, NULL, callback, destroy_frame_callback);
|
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
wl_list_insert (surface->pending->frame_callback_list.prev, &callback->link);
|
2014-04-02 11:12:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_surface_set_opaque_region (struct wl_client *client,
|
|
|
|
struct wl_resource *surface_resource,
|
|
|
|
struct wl_resource *region_resource)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (surface_resource);
|
|
|
|
|
|
|
|
/* X11 unmanaged window */
|
|
|
|
if (!surface)
|
|
|
|
return;
|
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
g_clear_pointer (&surface->pending->opaque_region, cairo_region_destroy);
|
2014-04-02 11:12:58 -04:00
|
|
|
if (region_resource)
|
|
|
|
{
|
|
|
|
MetaWaylandRegion *region = wl_resource_get_user_data (region_resource);
|
2014-10-07 23:23:55 -04:00
|
|
|
cairo_region_t *cr_region = meta_wayland_region_peek_cairo_region (region);
|
2015-12-14 04:13:35 -05:00
|
|
|
surface->pending->opaque_region = cairo_region_copy (cr_region);
|
2014-04-02 11:12:58 -04:00
|
|
|
}
|
2015-12-14 04:13:35 -05:00
|
|
|
surface->pending->opaque_region_set = TRUE;
|
2014-04-02 11:12:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_surface_set_input_region (struct wl_client *client,
|
|
|
|
struct wl_resource *surface_resource,
|
|
|
|
struct wl_resource *region_resource)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (surface_resource);
|
|
|
|
|
|
|
|
/* X11 unmanaged window */
|
|
|
|
if (!surface)
|
|
|
|
return;
|
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
g_clear_pointer (&surface->pending->input_region, cairo_region_destroy);
|
2014-04-02 11:12:58 -04:00
|
|
|
if (region_resource)
|
|
|
|
{
|
|
|
|
MetaWaylandRegion *region = wl_resource_get_user_data (region_resource);
|
2014-10-07 23:23:55 -04:00
|
|
|
cairo_region_t *cr_region = meta_wayland_region_peek_cairo_region (region);
|
2015-12-14 04:13:35 -05:00
|
|
|
surface->pending->input_region = cairo_region_copy (cr_region);
|
2014-04-02 11:12:58 -04:00
|
|
|
}
|
2015-12-14 04:13:35 -05:00
|
|
|
surface->pending->input_region_set = TRUE;
|
2014-04-02 11:12:58 -04:00
|
|
|
}
|
|
|
|
|
2014-02-01 16:24:43 -05:00
|
|
|
static void
|
2014-04-02 11:10:20 -04:00
|
|
|
wl_surface_commit (struct wl_client *client,
|
|
|
|
struct wl_resource *resource)
|
2014-02-01 16:24:43 -05:00
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (resource);
|
|
|
|
|
|
|
|
/* X11 unmanaged window */
|
|
|
|
if (!surface)
|
|
|
|
return;
|
|
|
|
|
2014-04-02 11:12:58 -04:00
|
|
|
meta_wayland_surface_commit (surface);
|
2013-08-30 12:26:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-02 11:10:20 -04:00
|
|
|
wl_surface_set_buffer_transform (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
int32_t transform)
|
2013-08-30 12:26:18 -04:00
|
|
|
{
|
|
|
|
g_warning ("TODO: support set_buffer_transform request");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-02 11:10:20 -04:00
|
|
|
wl_surface_set_buffer_scale (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
int scale)
|
2013-08-30 12:26:18 -04:00
|
|
|
{
|
2014-04-26 04:27:34 -04:00
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (resource);
|
|
|
|
if (scale > 0)
|
2015-12-14 04:13:35 -05:00
|
|
|
surface->pending->scale = scale;
|
2014-04-26 04:27:34 -04:00
|
|
|
else
|
|
|
|
g_warning ("Trying to set invalid buffer_scale of %d\n", scale);
|
2013-08-30 12:26:18 -04:00
|
|
|
}
|
|
|
|
|
2014-08-04 10:28:44 -04:00
|
|
|
static const struct wl_surface_interface meta_wayland_wl_surface_interface = {
|
2014-04-02 11:10:20 -04:00
|
|
|
wl_surface_destroy,
|
|
|
|
wl_surface_attach,
|
|
|
|
wl_surface_damage,
|
|
|
|
wl_surface_frame,
|
|
|
|
wl_surface_set_opaque_region,
|
|
|
|
wl_surface_set_input_region,
|
|
|
|
wl_surface_commit,
|
|
|
|
wl_surface_set_buffer_transform,
|
|
|
|
wl_surface_set_buffer_scale
|
2013-08-30 12:26:18 -04:00
|
|
|
};
|
|
|
|
|
2014-04-16 15:41:50 -04:00
|
|
|
static gboolean
|
|
|
|
surface_should_be_reactive (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
/* If we have a toplevel window, we should be reactive */
|
|
|
|
if (surface->window)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* If we're a subsurface, we should be reactive */
|
2014-10-07 13:44:16 -04:00
|
|
|
if (surface->wl_subsurface)
|
2014-04-16 15:41:50 -04:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sync_reactive (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
clutter_actor_set_reactive (CLUTTER_ACTOR (surface->surface_actor),
|
|
|
|
surface_should_be_reactive (surface));
|
|
|
|
}
|
|
|
|
|
2015-05-18 07:24:27 -04:00
|
|
|
static void
|
|
|
|
sync_drag_dest_funcs (MetaWaylandSurface *surface)
|
|
|
|
{
|
2015-04-29 11:44:05 -04:00
|
|
|
if (surface->window &&
|
|
|
|
surface->window->client_type == META_WINDOW_CLIENT_TYPE_X11)
|
|
|
|
surface->dnd.funcs = meta_xwayland_selection_get_drag_dest_funcs ();
|
|
|
|
else
|
|
|
|
surface->dnd.funcs = meta_wayland_data_device_get_drag_dest_funcs ();
|
2015-05-18 07:24:27 -04:00
|
|
|
}
|
|
|
|
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
static void
|
|
|
|
surface_entered_output (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandOutput *wayland_output)
|
|
|
|
{
|
|
|
|
GList *iter;
|
|
|
|
struct wl_resource *resource;
|
|
|
|
|
|
|
|
for (iter = wayland_output->resources; iter != NULL; iter = iter->next)
|
|
|
|
{
|
|
|
|
resource = iter->data;
|
|
|
|
|
|
|
|
if (wl_resource_get_client (resource) !=
|
|
|
|
wl_resource_get_client (surface->resource))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
wl_surface_send_enter (surface->resource, resource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
surface_left_output (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandOutput *wayland_output)
|
|
|
|
{
|
|
|
|
GList *iter;
|
|
|
|
struct wl_resource *resource;
|
|
|
|
|
|
|
|
for (iter = wayland_output->resources; iter != NULL; iter = iter->next)
|
|
|
|
{
|
|
|
|
resource = iter->data;
|
|
|
|
|
|
|
|
if (wl_resource_get_client (resource) !=
|
|
|
|
wl_resource_get_client (surface->resource))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
wl_surface_send_leave (surface->resource, resource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_surface_is_on_output (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandOutput *wayland_output,
|
|
|
|
gboolean is_on_output);
|
|
|
|
|
|
|
|
static void
|
|
|
|
surface_handle_output_destroy (MetaWaylandOutput *wayland_output,
|
|
|
|
MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
set_surface_is_on_output (surface, wayland_output, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_surface_is_on_output (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandOutput *wayland_output,
|
|
|
|
gboolean is_on_output)
|
|
|
|
{
|
2015-10-14 00:33:15 -04:00
|
|
|
gpointer orig_id;
|
|
|
|
gboolean was_on_output = g_hash_table_lookup_extended (surface->outputs_to_destroy_notify_id,
|
|
|
|
wayland_output,
|
|
|
|
NULL, &orig_id);
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
|
|
|
|
if (!was_on_output && is_on_output)
|
|
|
|
{
|
2015-10-14 00:33:15 -04:00
|
|
|
gulong id;
|
|
|
|
|
|
|
|
id = g_signal_connect (wayland_output, "output-destroyed",
|
|
|
|
G_CALLBACK (surface_handle_output_destroy),
|
|
|
|
surface);
|
|
|
|
g_hash_table_insert (surface->outputs_to_destroy_notify_id, wayland_output,
|
|
|
|
GSIZE_TO_POINTER ((gsize)id));
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
surface_entered_output (surface, wayland_output);
|
|
|
|
}
|
|
|
|
else if (was_on_output && !is_on_output)
|
|
|
|
{
|
2015-10-14 00:33:15 -04:00
|
|
|
g_hash_table_remove (surface->outputs_to_destroy_notify_id, wayland_output);
|
|
|
|
g_signal_handler_disconnect (wayland_output, (gulong) GPOINTER_TO_SIZE (orig_id));
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
surface_left_output (surface, wayland_output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
static gboolean
|
|
|
|
actor_surface_is_on_output (MetaWaylandSurfaceRole *surface_role,
|
|
|
|
MetaMonitorInfo *monitor)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface =
|
|
|
|
meta_wayland_surface_role_get_surface (surface_role);
|
|
|
|
MetaSurfaceActorWayland *actor =
|
|
|
|
META_SURFACE_ACTOR_WAYLAND (surface->surface_actor);
|
|
|
|
|
|
|
|
return meta_surface_actor_wayland_is_on_monitor (actor, monitor);
|
|
|
|
}
|
|
|
|
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
static void
|
|
|
|
update_surface_output_state (gpointer key, gpointer value, gpointer user_data)
|
|
|
|
{
|
|
|
|
MetaWaylandOutput *wayland_output = value;
|
|
|
|
MetaWaylandSurface *surface = user_data;
|
|
|
|
MetaMonitorInfo *monitor;
|
|
|
|
gboolean is_on_output;
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
g_assert (surface->role);
|
|
|
|
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
monitor = wayland_output->monitor_info;
|
|
|
|
if (!monitor)
|
|
|
|
{
|
|
|
|
set_surface_is_on_output (surface, wayland_output, FALSE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
is_on_output = meta_wayland_surface_role_is_on_output (surface->role, monitor);
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
set_surface_is_on_output (surface, wayland_output, is_on_output);
|
|
|
|
}
|
|
|
|
|
2015-10-14 00:33:15 -04:00
|
|
|
static void
|
|
|
|
surface_output_disconnect_signal (gpointer key, gpointer value, gpointer user_data)
|
|
|
|
{
|
|
|
|
g_signal_handler_disconnect (key, (gulong) GPOINTER_TO_SIZE (value));
|
|
|
|
}
|
|
|
|
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
void
|
|
|
|
meta_wayland_surface_update_outputs (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
if (!surface->compositor)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_hash_table_foreach (surface->compositor->outputs,
|
|
|
|
update_surface_output_state,
|
|
|
|
surface);
|
|
|
|
}
|
|
|
|
|
2014-02-24 13:32:17 -05:00
|
|
|
void
|
2014-04-02 10:37:08 -04:00
|
|
|
meta_wayland_surface_set_window (MetaWaylandSurface *surface,
|
|
|
|
MetaWindow *window)
|
2013-11-26 13:04:37 -05:00
|
|
|
{
|
2016-08-18 00:57:17 -04:00
|
|
|
gboolean was_unmapped = surface->window && !window;
|
|
|
|
|
2014-04-02 10:37:08 -04:00
|
|
|
surface->window = window;
|
2014-04-16 15:41:50 -04:00
|
|
|
sync_reactive (surface);
|
2015-05-18 07:24:27 -04:00
|
|
|
sync_drag_dest_funcs (surface);
|
2016-08-18 00:57:17 -04:00
|
|
|
|
|
|
|
if (was_unmapped)
|
|
|
|
g_signal_emit (surface, surface_signals[SURFACE_UNMAPPED], 0);
|
2014-02-18 16:39:23 -05:00
|
|
|
}
|
|
|
|
|
2013-08-30 12:26:18 -04:00
|
|
|
static void
|
2014-02-17 19:10:25 -05:00
|
|
|
wl_surface_destructor (struct wl_resource *resource)
|
2013-08-30 12:26:18 -04:00
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (resource);
|
2014-02-18 16:39:23 -05:00
|
|
|
MetaWaylandCompositor *compositor = surface->compositor;
|
2015-08-18 23:06:46 -04:00
|
|
|
MetaWaylandFrameCallback *cb, *next;
|
2013-08-30 12:26:18 -04:00
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
g_clear_object (&surface->role);
|
|
|
|
|
2014-02-18 22:21:33 -05:00
|
|
|
/* If we still have a window at the time of destruction, that means that
|
|
|
|
* the client is disconnecting, as the resources are destroyed in a random
|
|
|
|
* order. Simply destroy the window in this case. */
|
|
|
|
if (surface->window)
|
2015-12-14 23:51:24 -05:00
|
|
|
meta_wayland_surface_destroy_window (surface);
|
2013-08-30 12:26:18 -04:00
|
|
|
|
2016-03-16 02:55:51 -04:00
|
|
|
if (surface->unassigned.buffer)
|
|
|
|
{
|
|
|
|
meta_wayland_surface_unref_buffer_use_count (surface);
|
|
|
|
g_clear_object (&surface->unassigned.buffer);
|
|
|
|
}
|
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
if (surface->buffer_held)
|
|
|
|
meta_wayland_surface_unref_buffer_use_count (surface);
|
|
|
|
g_clear_object (&surface->buffer_ref.buffer);
|
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
g_clear_object (&surface->pending);
|
2014-02-18 17:07:36 -05:00
|
|
|
|
2015-03-02 09:56:35 -05:00
|
|
|
if (surface->opaque_region)
|
|
|
|
cairo_region_destroy (surface->opaque_region);
|
|
|
|
if (surface->input_region)
|
|
|
|
cairo_region_destroy (surface->input_region);
|
|
|
|
|
2014-02-18 16:39:23 -05:00
|
|
|
g_object_unref (surface->surface_actor);
|
2014-02-18 17:07:36 -05:00
|
|
|
|
2015-02-25 10:26:01 -05:00
|
|
|
meta_wayland_compositor_destroy_frame_callbacks (compositor, surface);
|
|
|
|
|
2015-10-14 00:33:15 -04:00
|
|
|
g_hash_table_foreach (surface->outputs_to_destroy_notify_id, surface_output_disconnect_signal, surface);
|
|
|
|
g_hash_table_unref (surface->outputs_to_destroy_notify_id);
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
|
2015-08-18 23:06:46 -04:00
|
|
|
wl_list_for_each_safe (cb, next, &surface->pending_frame_callback_list, link)
|
|
|
|
wl_resource_destroy (cb->resource);
|
|
|
|
|
2014-02-18 16:39:23 -05:00
|
|
|
if (surface->resource)
|
|
|
|
wl_resource_set_user_data (surface->resource, NULL);
|
2015-03-10 08:42:01 -04:00
|
|
|
|
|
|
|
if (surface->wl_subsurface)
|
|
|
|
wl_resource_destroy (surface->wl_subsurface);
|
|
|
|
|
2015-07-07 23:21:23 -04:00
|
|
|
g_object_unref (surface);
|
2013-11-26 13:04:37 -05:00
|
|
|
|
2014-02-18 16:39:23 -05:00
|
|
|
meta_wayland_compositor_repick (compositor);
|
2013-08-30 12:26:18 -04:00
|
|
|
}
|
|
|
|
|
2015-07-10 04:14:51 -04:00
|
|
|
static void
|
|
|
|
surface_actor_painting (MetaSurfaceActorWayland *surface_actor,
|
|
|
|
MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
meta_wayland_surface_update_outputs (surface);
|
|
|
|
}
|
|
|
|
|
2013-08-30 12:26:18 -04:00
|
|
|
MetaWaylandSurface *
|
|
|
|
meta_wayland_surface_create (MetaWaylandCompositor *compositor,
|
2014-04-22 18:22:13 -04:00
|
|
|
struct wl_client *client,
|
|
|
|
struct wl_resource *compositor_resource,
|
|
|
|
guint32 id)
|
2013-08-30 12:26:18 -04:00
|
|
|
{
|
2015-07-07 23:21:23 -04:00
|
|
|
MetaWaylandSurface *surface = g_object_new (META_TYPE_WAYLAND_SURFACE, NULL);
|
2013-08-30 12:26:18 -04:00
|
|
|
|
|
|
|
surface->compositor = compositor;
|
2014-04-26 04:27:34 -04:00
|
|
|
surface->scale = 1;
|
2013-08-30 12:26:18 -04:00
|
|
|
|
2014-08-04 10:22:23 -04:00
|
|
|
surface->resource = wl_resource_create (client, &wl_surface_interface, wl_resource_get_version (compositor_resource), id);
|
2014-04-02 11:10:20 -04:00
|
|
|
wl_resource_set_implementation (surface->resource, &meta_wayland_wl_surface_interface, surface, wl_surface_destructor);
|
2013-08-30 12:26:18 -04:00
|
|
|
|
window-actor: Split into two subclasses of MetaSurfaceActor
The rendering logic before was somewhat complex. We had three independent
cases to take into account when doing rendering:
* X11 compositor. In this case, we're a traditional X11 compositor,
not a Wayland compositor. We use XCompositeNameWindowPixmap to get
the backing pixmap for the window, and deal with the COMPOSITE
extension messiness.
In this case, meta_is_wayland_compositor() is FALSE.
* Wayland clients. In this case, we're a Wayland compositor managing
Wayland surfaces. The rendering for this is fairly straightforward,
as Cogl handles most of the complexity with EGL and SHM buffers...
Wayland clients give us the input and opaque regions through
wl_surface.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND.
* XWayland clients. In this case, we're a Wayland compositor, like
above, and XWayland hands us Wayland surfaces. XWayland handles
the COMPOSITE extension messiness for us, and hands us a buffer
like any other Wayland client. We have to fetch the input and
opaque regions from the X11 window ourselves.
In this case, meta_is_wayland_compositor() is TRUE and
priv->window->client_type == META_WINDOW_CLIENT_TYPE_X11.
We now split the rendering logic into two subclasses, which are:
* MetaSurfaceActorX11, which handles the X11 compositor case, in that
it uses XCompositeNameWindowPixmap to get the backing pixmap, and
deal with all the COMPOSITE extension messiness.
* MetaSurfaceActorWayland, which handles the Wayland compositor case
for both native Wayland clients and XWayland clients. XWayland handles
COMPOSITE for us, and handles pushing a surface over through the
xf86-video-wayland DDX.
Frame sync is still in MetaWindowActor, as it needs to work for both the
X11 compositor and XWayland client cases. When Wayland's video display
protocol lands, this will need to be significantly overhauled, as it would
have to work for any wl_surface, including subsurfaces, so we would need
surface-level discretion.
https://bugzilla.gnome.org/show_bug.cgi?id=720631
2014-02-01 17:21:11 -05:00
|
|
|
surface->surface_actor = g_object_ref_sink (meta_surface_actor_wayland_new (surface));
|
2014-02-17 19:10:25 -05:00
|
|
|
|
2015-08-18 23:06:46 -04:00
|
|
|
wl_list_init (&surface->pending_frame_callback_list);
|
|
|
|
|
2015-07-10 04:14:51 -04:00
|
|
|
g_signal_connect_object (surface->surface_actor,
|
|
|
|
"painting",
|
|
|
|
G_CALLBACK (surface_actor_painting),
|
|
|
|
surface,
|
|
|
|
0);
|
|
|
|
|
2015-05-18 07:24:27 -04:00
|
|
|
sync_drag_dest_funcs (surface);
|
|
|
|
|
2015-10-14 00:33:15 -04:00
|
|
|
surface->outputs_to_destroy_notify_id = g_hash_table_new (NULL, NULL);
|
wayland: Send wl_surface.enter and wl_surface.leave
Whenever a MetaSurfaceActor is painted, update the list of what outputs
the surface is being drawed upon. Since we do this on paint, we
effectively avoids this whenever the surface is not drawn, for example
being minimized, on a non-active workspace, or simply outside of the
damage region of a frame.
DND icons and cursors are not affected by this patch, since they are not
drawn as MetaSurfaceActors. If a MetaSurfaceActor or a parent is cloned,
then we'll check the position of the original actor again when the clone is
drawn, which is slightly expensive, but harmless. If the MetaShapedTexture
instead is cloned, as GNOME Shell does in many cases, then these clones
will not cause duplicate position checks.
https://bugzilla.gnome.org/show_bug.cgi?id=744453
2015-02-03 02:49:52 -05:00
|
|
|
|
2013-08-30 12:26:18 -04:00
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
2015-12-14 23:51:24 -05:00
|
|
|
gboolean
|
|
|
|
meta_wayland_surface_begin_grab_op (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandSeat *seat,
|
|
|
|
MetaGrabOp grab_op,
|
|
|
|
gfloat x,
|
|
|
|
gfloat y)
|
2013-11-14 21:45:34 -05:00
|
|
|
{
|
|
|
|
MetaWindow *window = surface->window;
|
|
|
|
|
|
|
|
if (grab_op == META_GRAB_OP_NONE)
|
|
|
|
return FALSE;
|
|
|
|
|
2016-03-23 13:45:45 -04:00
|
|
|
/* This is an input driven operation so we set frame_action to
|
|
|
|
constrain it in the same way as it would be if the window was
|
|
|
|
being moved/resized via a SSD event. */
|
2013-11-14 21:45:34 -05:00
|
|
|
return meta_display_begin_grab_op (window->display,
|
|
|
|
window->screen,
|
|
|
|
window,
|
|
|
|
grab_op,
|
|
|
|
TRUE, /* pointer_already_grabbed */
|
2016-03-23 13:45:45 -04:00
|
|
|
TRUE, /* frame_action */
|
2013-11-14 21:45:34 -05:00
|
|
|
1, /* button. XXX? */
|
|
|
|
0, /* modmask */
|
|
|
|
meta_display_get_current_time_roundtrip (window->display),
|
2014-07-21 19:28:39 -04:00
|
|
|
x, y);
|
2013-11-14 21:45:34 -05:00
|
|
|
}
|
|
|
|
|
2014-02-24 13:32:17 -05:00
|
|
|
static void
|
|
|
|
unparent_actor (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
ClutterActor *parent_actor;
|
|
|
|
parent_actor = clutter_actor_get_parent (CLUTTER_ACTOR (surface->surface_actor));
|
|
|
|
clutter_actor_remove_child (parent_actor, CLUTTER_ACTOR (surface->surface_actor));
|
|
|
|
}
|
|
|
|
|
2013-11-26 13:04:37 -05:00
|
|
|
static void
|
|
|
|
wl_subsurface_destructor (struct wl_resource *resource)
|
|
|
|
{
|
2014-02-28 08:45:07 -05:00
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (resource);
|
2013-11-26 13:04:37 -05:00
|
|
|
|
2015-02-25 10:26:01 -05:00
|
|
|
meta_wayland_compositor_destroy_frame_callbacks (surface->compositor,
|
|
|
|
surface);
|
2014-01-12 16:02:09 -05:00
|
|
|
if (surface->sub.parent)
|
|
|
|
{
|
|
|
|
wl_list_remove (&surface->sub.parent_destroy_listener.link);
|
|
|
|
surface->sub.parent->subsurfaces =
|
|
|
|
g_list_remove (surface->sub.parent->subsurfaces, surface);
|
|
|
|
unparent_actor (surface);
|
|
|
|
surface->sub.parent = NULL;
|
|
|
|
}
|
2014-01-13 17:31:25 -05:00
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
g_clear_object (&surface->sub.pending);
|
2014-10-07 13:44:16 -04:00
|
|
|
surface->wl_subsurface = NULL;
|
2013-11-26 13:04:37 -05:00
|
|
|
}
|
|
|
|
|
2013-11-25 16:26:02 -05:00
|
|
|
static void
|
|
|
|
wl_subsurface_destroy (struct wl_client *client,
|
|
|
|
struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
wl_resource_destroy (resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_subsurface_set_position (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
int32_t x,
|
|
|
|
int32_t y)
|
|
|
|
{
|
2014-02-28 08:45:07 -05:00
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (resource);
|
2013-11-25 16:26:02 -05:00
|
|
|
|
2014-01-12 17:17:29 -05:00
|
|
|
surface->sub.pending_x = x;
|
|
|
|
surface->sub.pending_y = y;
|
|
|
|
surface->sub.pending_pos = TRUE;
|
2013-11-25 16:26:02 -05:00
|
|
|
}
|
|
|
|
|
2014-01-12 16:02:09 -05:00
|
|
|
static gboolean
|
|
|
|
is_valid_sibling (MetaWaylandSurface *surface, MetaWaylandSurface *sibling)
|
|
|
|
{
|
|
|
|
if (surface->sub.parent == sibling)
|
|
|
|
return TRUE;
|
|
|
|
if (surface->sub.parent == sibling->sub.parent)
|
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-01-12 17:24:00 -05:00
|
|
|
static void
|
|
|
|
subsurface_handle_pending_sibling_destroyed (struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
MetaWaylandSubsurfacePlacementOp *op =
|
|
|
|
wl_container_of (listener, op, sibling_destroy_listener);
|
|
|
|
|
|
|
|
op->sibling = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
queue_subsurface_placement (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandSurface *sibling,
|
|
|
|
MetaWaylandSubsurfacePlacement placement)
|
|
|
|
{
|
|
|
|
MetaWaylandSubsurfacePlacementOp *op =
|
|
|
|
g_slice_new (MetaWaylandSubsurfacePlacementOp);
|
|
|
|
|
|
|
|
op->placement = placement;
|
|
|
|
op->sibling = sibling;
|
|
|
|
op->sibling_destroy_listener.notify =
|
|
|
|
subsurface_handle_pending_sibling_destroyed;
|
|
|
|
wl_resource_add_destroy_listener (sibling->resource,
|
|
|
|
&op->sibling_destroy_listener);
|
|
|
|
|
|
|
|
surface->sub.pending_placement_ops =
|
|
|
|
g_slist_append (surface->sub.pending_placement_ops, op);
|
|
|
|
}
|
|
|
|
|
2013-11-25 16:26:02 -05:00
|
|
|
static void
|
|
|
|
wl_subsurface_place_above (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
struct wl_resource *sibling_resource)
|
|
|
|
{
|
2014-02-28 08:45:07 -05:00
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (resource);
|
2013-11-25 16:26:02 -05:00
|
|
|
MetaWaylandSurface *sibling = wl_resource_get_user_data (sibling_resource);
|
|
|
|
|
2014-01-12 16:02:09 -05:00
|
|
|
if (!is_valid_sibling (surface, sibling))
|
|
|
|
{
|
|
|
|
wl_resource_post_error (resource, WL_SUBSURFACE_ERROR_BAD_SURFACE,
|
|
|
|
"wl_subsurface::place_above: wl_surface@%d is "
|
|
|
|
"not a valid parent or sibling",
|
|
|
|
wl_resource_get_id (sibling->resource));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-12 17:24:00 -05:00
|
|
|
queue_subsurface_placement (surface,
|
|
|
|
sibling,
|
|
|
|
META_WAYLAND_SUBSURFACE_PLACEMENT_ABOVE);
|
2013-11-25 16:26:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_subsurface_place_below (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
struct wl_resource *sibling_resource)
|
|
|
|
{
|
2014-02-28 08:45:07 -05:00
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (resource);
|
2013-11-25 16:26:02 -05:00
|
|
|
MetaWaylandSurface *sibling = wl_resource_get_user_data (sibling_resource);
|
|
|
|
|
2014-01-12 16:02:09 -05:00
|
|
|
if (!is_valid_sibling (surface, sibling))
|
|
|
|
{
|
|
|
|
wl_resource_post_error (resource, WL_SUBSURFACE_ERROR_BAD_SURFACE,
|
|
|
|
"wl_subsurface::place_below: wl_surface@%d is "
|
|
|
|
"not a valid parent or sibling",
|
|
|
|
wl_resource_get_id (sibling->resource));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-12 17:24:00 -05:00
|
|
|
queue_subsurface_placement (surface,
|
|
|
|
sibling,
|
|
|
|
META_WAYLAND_SUBSURFACE_PLACEMENT_BELOW);
|
2013-11-25 16:26:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_subsurface_set_sync (struct wl_client *client,
|
|
|
|
struct wl_resource *resource)
|
|
|
|
{
|
2014-02-28 08:45:07 -05:00
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (resource);
|
2014-01-13 17:31:25 -05:00
|
|
|
|
|
|
|
surface->sub.synchronous = TRUE;
|
2013-11-25 16:26:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_subsurface_set_desync (struct wl_client *client,
|
|
|
|
struct wl_resource *resource)
|
|
|
|
{
|
2014-02-28 08:45:07 -05:00
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (resource);
|
2015-01-26 03:46:20 -05:00
|
|
|
gboolean was_effectively_synchronized;
|
2014-01-13 17:31:25 -05:00
|
|
|
|
2015-01-26 03:46:20 -05:00
|
|
|
was_effectively_synchronized = is_surface_effectively_synchronized (surface);
|
2014-01-13 17:31:25 -05:00
|
|
|
surface->sub.synchronous = FALSE;
|
2015-01-26 03:46:20 -05:00
|
|
|
if (was_effectively_synchronized &&
|
|
|
|
!is_surface_effectively_synchronized (surface))
|
2015-12-14 04:13:35 -05:00
|
|
|
apply_pending_state (surface, surface->sub.pending);
|
2013-11-25 16:26:02 -05:00
|
|
|
}
|
|
|
|
|
2014-10-06 23:19:45 -04:00
|
|
|
static const struct wl_subsurface_interface meta_wayland_wl_subsurface_interface = {
|
2013-11-25 16:26:02 -05:00
|
|
|
wl_subsurface_destroy,
|
|
|
|
wl_subsurface_set_position,
|
|
|
|
wl_subsurface_place_above,
|
|
|
|
wl_subsurface_place_below,
|
|
|
|
wl_subsurface_set_sync,
|
|
|
|
wl_subsurface_set_desync,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_subcompositor_destroy (struct wl_client *client,
|
|
|
|
struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
wl_resource_destroy (resource);
|
|
|
|
}
|
|
|
|
|
2014-01-12 16:02:09 -05:00
|
|
|
static void
|
|
|
|
surface_handle_parent_surface_destroyed (struct wl_listener *listener,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface = wl_container_of (listener,
|
|
|
|
surface,
|
|
|
|
sub.parent_destroy_listener);
|
|
|
|
|
|
|
|
surface->sub.parent = NULL;
|
|
|
|
unparent_actor (surface);
|
|
|
|
}
|
|
|
|
|
2013-11-25 16:26:02 -05:00
|
|
|
static void
|
|
|
|
wl_subcompositor_get_subsurface (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
guint32 id,
|
|
|
|
struct wl_resource *surface_resource,
|
|
|
|
struct wl_resource *parent_resource)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (surface_resource);
|
|
|
|
MetaWaylandSurface *parent = wl_resource_get_user_data (parent_resource);
|
|
|
|
|
2014-10-07 13:44:16 -04:00
|
|
|
if (surface->wl_subsurface != NULL)
|
2013-11-25 16:26:02 -05:00
|
|
|
{
|
|
|
|
wl_resource_post_error (surface_resource,
|
|
|
|
WL_DISPLAY_ERROR_INVALID_OBJECT,
|
|
|
|
"wl_subcompositor::get_subsurface already requested");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-28 00:15:21 -04:00
|
|
|
if (!meta_wayland_surface_assign_role (surface,
|
2016-01-28 04:14:06 -05:00
|
|
|
META_TYPE_WAYLAND_SURFACE_ROLE_SUBSURFACE,
|
|
|
|
NULL))
|
2015-08-28 00:15:21 -04:00
|
|
|
{
|
|
|
|
/* FIXME: There is no subcompositor "role" error yet, so lets just use something
|
|
|
|
* similar until there is.
|
|
|
|
*/
|
|
|
|
wl_resource_post_error (resource, WL_SHELL_ERROR_ROLE,
|
|
|
|
"wl_surface@%d already has a different role",
|
|
|
|
wl_resource_get_id (surface->resource));
|
|
|
|
return;
|
|
|
|
}
|
2015-02-06 03:12:21 -05:00
|
|
|
|
2014-10-07 13:44:16 -04:00
|
|
|
surface->wl_subsurface = wl_resource_create (client, &wl_subsurface_interface, wl_resource_get_version (resource), id);
|
2014-10-07 15:09:52 -04:00
|
|
|
wl_resource_set_implementation (surface->wl_subsurface, &meta_wayland_wl_subsurface_interface, surface, wl_subsurface_destructor);
|
2014-10-07 14:21:31 -04:00
|
|
|
|
2015-12-14 04:13:35 -05:00
|
|
|
surface->sub.pending = g_object_new (META_TYPE_WAYLAND_PENDING_STATE, NULL);
|
2014-06-11 12:34:44 -04:00
|
|
|
surface->sub.synchronous = TRUE;
|
2014-01-12 16:02:09 -05:00
|
|
|
surface->sub.parent = parent;
|
2014-06-11 12:34:17 -04:00
|
|
|
surface->sub.parent_destroy_listener.notify = surface_handle_parent_surface_destroyed;
|
|
|
|
wl_resource_add_destroy_listener (parent->resource, &surface->sub.parent_destroy_listener);
|
2014-01-12 16:02:09 -05:00
|
|
|
parent->subsurfaces = g_list_append (parent->subsurfaces, surface);
|
|
|
|
|
2013-11-25 16:26:02 -05:00
|
|
|
clutter_actor_add_child (CLUTTER_ACTOR (parent->surface_actor),
|
|
|
|
CLUTTER_ACTOR (surface->surface_actor));
|
2014-04-16 15:41:50 -04:00
|
|
|
|
|
|
|
sync_reactive (surface);
|
2013-11-25 16:26:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_subcompositor_interface meta_wayland_subcompositor_interface = {
|
|
|
|
wl_subcompositor_destroy,
|
|
|
|
wl_subcompositor_get_subsurface,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
bind_subcompositor (struct wl_client *client,
|
|
|
|
void *data,
|
|
|
|
guint32 version,
|
|
|
|
guint32 id)
|
|
|
|
{
|
|
|
|
struct wl_resource *resource;
|
|
|
|
|
2014-08-04 10:24:59 -04:00
|
|
|
resource = wl_resource_create (client, &wl_subcompositor_interface, version, id);
|
2013-11-25 16:26:02 -05:00
|
|
|
wl_resource_set_implementation (resource, &meta_wayland_subcompositor_interface, data, NULL);
|
|
|
|
}
|
|
|
|
|
2013-08-30 12:26:18 -04:00
|
|
|
void
|
2014-04-22 18:05:44 -04:00
|
|
|
meta_wayland_shell_init (MetaWaylandCompositor *compositor)
|
2013-08-30 12:26:18 -04:00
|
|
|
{
|
2015-12-14 23:51:24 -05:00
|
|
|
meta_wayland_xdg_shell_init (compositor);
|
|
|
|
meta_wayland_wl_shell_init (compositor);
|
2016-06-27 22:05:55 -04:00
|
|
|
meta_wayland_gtk_shell_init (compositor);
|
2013-11-25 16:26:02 -05:00
|
|
|
|
|
|
|
if (wl_global_create (compositor->wayland_display,
|
|
|
|
&wl_subcompositor_interface,
|
|
|
|
META_WL_SUBCOMPOSITOR_VERSION,
|
|
|
|
compositor, bind_subcompositor) == NULL)
|
|
|
|
g_error ("Failed to register a global wl-subcompositor object");
|
2013-08-30 12:26:18 -04:00
|
|
|
}
|
|
|
|
|
2014-02-09 11:45:09 -05:00
|
|
|
void
|
2014-05-05 19:09:22 -04:00
|
|
|
meta_wayland_surface_configure_notify (MetaWaylandSurface *surface,
|
2016-07-01 03:14:12 -04:00
|
|
|
int new_x,
|
|
|
|
int new_y,
|
2014-07-17 17:39:43 -04:00
|
|
|
int new_width,
|
wayland-surface: Don't do pending move/resizes on all commits
We assume in meta_window_wayland_move_resize that the next commit that
changes the geometry will always be for our next pending operation, so
if we have a move pending on a resize, the next commit will trigger the
move. This is, of course, fundamentally wrong.
We broke this assumption even more now that we don't fizzle out calls to
meta_window_move_resize_internal and now call it on every commit, which
means that a simple damage and then commit would complete a pending
move.
This was even broken by apps like weston-terminal, which, when clicking
on the maximize button, first redraws the terminal with the maximize
button state back on hover on press, and would only redraw when it got
the configure event with the coordinates.
To track the correct commit to apply the move for, we implement the
ack_configure request and ignore all move/resizes that happen before
that.
Right now, we actually fizzle out the entire move/resize if there's a
future pending configure we're waiting on.
2014-07-27 11:23:17 -04:00
|
|
|
int new_height,
|
|
|
|
MetaWaylandSerial *sent_serial)
|
2014-05-05 19:09:07 -04:00
|
|
|
{
|
2015-12-14 23:51:24 -05:00
|
|
|
MetaWaylandSurfaceRoleShellSurface *shell_surface_role =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_SHELL_SURFACE (surface->role);
|
2014-05-05 19:09:07 -04:00
|
|
|
|
2016-06-28 02:56:20 -04:00
|
|
|
g_signal_emit (surface, surface_signals[SURFACE_CONFIGURE], 0);
|
|
|
|
|
2015-12-14 23:51:24 -05:00
|
|
|
meta_wayland_surface_role_shell_surface_configure (shell_surface_role,
|
2016-07-01 03:14:12 -04:00
|
|
|
new_x, new_y,
|
2015-12-14 23:51:24 -05:00
|
|
|
new_width, new_height,
|
|
|
|
sent_serial);
|
2013-11-12 15:52:03 -05:00
|
|
|
}
|
2013-11-21 14:20:52 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_surface_ping (MetaWaylandSurface *surface,
|
2014-02-15 10:26:43 -05:00
|
|
|
guint32 serial)
|
2013-11-21 14:20:52 -05:00
|
|
|
{
|
2015-12-14 23:51:24 -05:00
|
|
|
MetaWaylandSurfaceRoleShellSurface *shell_surface_role =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_SHELL_SURFACE (surface->role);
|
|
|
|
|
|
|
|
meta_wayland_surface_role_shell_surface_ping (shell_surface_role, serial);
|
2013-11-21 14:20:52 -05:00
|
|
|
}
|
2014-02-07 17:28:33 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_surface_delete (MetaWaylandSurface *surface)
|
|
|
|
{
|
2015-12-14 23:51:24 -05:00
|
|
|
MetaWaylandSurfaceRoleShellSurface *shell_surface_role =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_SHELL_SURFACE (surface->role);
|
|
|
|
|
|
|
|
meta_wayland_surface_role_shell_surface_close (shell_surface_role);
|
2014-02-07 17:28:33 -05:00
|
|
|
}
|
2014-02-28 00:18:42 -05:00
|
|
|
|
2015-12-15 09:09:20 -05:00
|
|
|
void
|
|
|
|
meta_wayland_surface_window_managed (MetaWaylandSurface *surface,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleShellSurface *shell_surface_role =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_SHELL_SURFACE (surface->role);
|
|
|
|
|
|
|
|
meta_wayland_surface_role_shell_surface_managed (shell_surface_role, window);
|
|
|
|
}
|
|
|
|
|
2015-05-18 07:24:27 -04:00
|
|
|
void
|
|
|
|
meta_wayland_surface_drag_dest_focus_in (MetaWaylandSurface *surface,
|
|
|
|
MetaWaylandDataOffer *offer)
|
|
|
|
{
|
|
|
|
MetaWaylandCompositor *compositor = meta_wayland_compositor_get_default ();
|
|
|
|
MetaWaylandDataDevice *data_device = &compositor->seat->data_device;
|
|
|
|
|
|
|
|
surface->dnd.funcs->focus_in (data_device, surface, offer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_surface_drag_dest_motion (MetaWaylandSurface *surface,
|
|
|
|
const ClutterEvent *event)
|
|
|
|
{
|
|
|
|
MetaWaylandCompositor *compositor = meta_wayland_compositor_get_default ();
|
|
|
|
MetaWaylandDataDevice *data_device = &compositor->seat->data_device;
|
|
|
|
|
|
|
|
surface->dnd.funcs->motion (data_device, surface, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_surface_drag_dest_focus_out (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
MetaWaylandCompositor *compositor = meta_wayland_compositor_get_default ();
|
|
|
|
MetaWaylandDataDevice *data_device = &compositor->seat->data_device;
|
|
|
|
|
|
|
|
surface->dnd.funcs->focus_out (data_device, surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_surface_drag_dest_drop (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
MetaWaylandCompositor *compositor = meta_wayland_compositor_get_default ();
|
|
|
|
MetaWaylandDataDevice *data_device = &compositor->seat->data_device;
|
|
|
|
|
|
|
|
surface->dnd.funcs->drop (data_device, surface);
|
2015-09-28 08:16:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_surface_drag_dest_update (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
MetaWaylandCompositor *compositor = meta_wayland_compositor_get_default ();
|
|
|
|
MetaWaylandDataDevice *data_device = &compositor->seat->data_device;
|
|
|
|
|
|
|
|
surface->dnd.funcs->update (data_device, surface);
|
2015-05-18 07:24:27 -04:00
|
|
|
}
|
2015-03-23 09:10:20 -04:00
|
|
|
|
2016-01-14 04:43:47 -05:00
|
|
|
MetaWaylandSurface *
|
|
|
|
meta_wayland_surface_get_toplevel (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
if (surface->role)
|
|
|
|
return meta_wayland_surface_role_get_toplevel (surface->role);
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-23 09:10:20 -04:00
|
|
|
MetaWindow *
|
|
|
|
meta_wayland_surface_get_toplevel_window (MetaWaylandSurface *surface)
|
|
|
|
{
|
2016-01-14 04:43:47 -05:00
|
|
|
MetaWaylandSurface *toplevel;
|
2015-03-23 09:10:20 -04:00
|
|
|
|
2016-01-14 04:43:47 -05:00
|
|
|
toplevel = meta_wayland_surface_get_toplevel (surface);
|
|
|
|
if (toplevel)
|
|
|
|
return toplevel->window;
|
|
|
|
else
|
|
|
|
return NULL;
|
2015-03-23 09:10:20 -04:00
|
|
|
}
|
2015-07-07 23:21:23 -04:00
|
|
|
|
2015-06-16 22:16:02 -04:00
|
|
|
void
|
|
|
|
meta_wayland_surface_get_relative_coordinates (MetaWaylandSurface *surface,
|
|
|
|
float abs_x,
|
|
|
|
float abs_y,
|
|
|
|
float *sx,
|
|
|
|
float *sy)
|
|
|
|
{
|
2016-07-14 08:39:26 -04:00
|
|
|
/* Using clutter API to transform coordinates is only accurate right
|
|
|
|
* after a clutter layout pass but this function is used e.g. to
|
|
|
|
* deliver pointer motion events which can happen at any time. This
|
|
|
|
* isn't a problem for wayland clients since they don't control
|
|
|
|
* their position, but X clients do and we'd be sending outdated
|
|
|
|
* coordinates if a client is moving a window in response to motion
|
|
|
|
* events.
|
|
|
|
*/
|
|
|
|
if (surface->window &&
|
|
|
|
surface->window->client_type == META_WINDOW_CLIENT_TYPE_X11)
|
|
|
|
{
|
|
|
|
MetaRectangle window_rect;
|
2015-06-16 22:16:02 -04:00
|
|
|
|
2016-07-14 08:39:26 -04:00
|
|
|
meta_window_get_buffer_rect (surface->window, &window_rect);
|
|
|
|
*sx = abs_x - window_rect.x;
|
|
|
|
*sy = abs_y - window_rect.y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ClutterActor *actor =
|
|
|
|
CLUTTER_ACTOR (meta_surface_actor_get_texture (surface->surface_actor));
|
|
|
|
|
|
|
|
clutter_actor_transform_stage_point (actor, abs_x, abs_y, sx, sy);
|
|
|
|
*sx /= surface->scale;
|
|
|
|
*sy /= surface->scale;
|
|
|
|
}
|
2015-06-16 22:16:02 -04:00
|
|
|
}
|
|
|
|
|
2015-06-17 00:10:52 -04:00
|
|
|
void
|
|
|
|
meta_wayland_surface_get_absolute_coordinates (MetaWaylandSurface *surface,
|
|
|
|
float sx,
|
|
|
|
float sy,
|
|
|
|
float *x,
|
|
|
|
float *y)
|
|
|
|
{
|
|
|
|
ClutterActor *actor =
|
|
|
|
CLUTTER_ACTOR (meta_surface_actor_get_texture (surface->surface_actor));
|
|
|
|
ClutterVertex sv = {
|
|
|
|
.x = sx * surface->scale,
|
|
|
|
.y = sy * surface->scale,
|
|
|
|
};
|
|
|
|
ClutterVertex v = { 0 };
|
|
|
|
|
|
|
|
clutter_actor_apply_relative_transform_to_point (actor, NULL, &sv, &v);
|
|
|
|
|
|
|
|
*x = v.x;
|
|
|
|
*y = v.y;
|
|
|
|
}
|
|
|
|
|
2015-10-22 08:07:52 -04:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface = META_WAYLAND_SURFACE (object);
|
|
|
|
|
|
|
|
if (!surface->destroying)
|
|
|
|
{
|
|
|
|
g_signal_emit (object, surface_signals[SURFACE_DESTROY], 0);
|
|
|
|
surface->destroying = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (meta_wayland_surface_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
2015-07-07 23:21:23 -04:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_init (MetaWaylandSurface *surface)
|
|
|
|
{
|
2015-12-14 04:13:35 -05:00
|
|
|
surface->pending = g_object_new (META_TYPE_WAYLAND_PENDING_STATE, NULL);
|
2015-07-07 23:21:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_class_init (MetaWaylandSurfaceClass *klass)
|
|
|
|
{
|
2015-10-22 08:07:52 -04:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->dispose = meta_wayland_surface_dispose;
|
|
|
|
|
|
|
|
surface_signals[SURFACE_DESTROY] =
|
|
|
|
g_signal_new ("destroy",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0, NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2016-08-18 00:57:17 -04:00
|
|
|
|
|
|
|
surface_signals[SURFACE_UNMAPPED] =
|
|
|
|
g_signal_new ("unmapped",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0, NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2016-06-28 02:56:20 -04:00
|
|
|
|
|
|
|
surface_signals[SURFACE_CONFIGURE] =
|
|
|
|
g_signal_new ("configure",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0, NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2015-07-07 23:21:23 -04:00
|
|
|
}
|
2015-07-08 04:14:00 -04:00
|
|
|
|
2016-01-28 03:55:42 -05:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRole *surface_role = META_WAYLAND_SURFACE_ROLE (object);
|
|
|
|
MetaWaylandSurfaceRolePrivate *priv =
|
|
|
|
meta_wayland_surface_role_get_instance_private (surface_role);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case SURFACE_ROLE_PROP_SURFACE:
|
|
|
|
priv->surface = g_value_get_object (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRole *surface_role = META_WAYLAND_SURFACE_ROLE (object);
|
|
|
|
MetaWaylandSurfaceRolePrivate *priv =
|
|
|
|
meta_wayland_surface_role_get_instance_private (surface_role);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case SURFACE_ROLE_PROP_SURFACE:
|
|
|
|
g_value_set_object (value, priv->surface);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_init (MetaWaylandSurfaceRole *role)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_class_init (MetaWaylandSurfaceRoleClass *klass)
|
|
|
|
{
|
2016-01-28 03:55:42 -05:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->set_property = meta_wayland_surface_role_set_property;
|
|
|
|
object_class->get_property = meta_wayland_surface_role_get_property;
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
SURFACE_ROLE_PROP_SURFACE,
|
|
|
|
g_param_spec_object ("surface",
|
|
|
|
"MetaWaylandSurface",
|
|
|
|
"The MetaWaylandSurface instance",
|
|
|
|
META_TYPE_WAYLAND_SURFACE,
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2015-07-08 04:14:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_assigned (MetaWaylandSurfaceRole *surface_role)
|
|
|
|
{
|
|
|
|
META_WAYLAND_SURFACE_ROLE_GET_CLASS (surface_role)->assigned (surface_role);
|
|
|
|
}
|
|
|
|
|
2016-03-16 02:55:51 -04:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_pre_commit (MetaWaylandSurfaceRole *surface_role,
|
|
|
|
MetaWaylandPendingState *pending)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleClass *klass;
|
|
|
|
|
|
|
|
klass = META_WAYLAND_SURFACE_ROLE_GET_CLASS (surface_role);
|
|
|
|
if (klass->pre_commit)
|
|
|
|
klass->pre_commit (surface_role, pending);
|
|
|
|
}
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_commit (MetaWaylandSurfaceRole *surface_role,
|
|
|
|
MetaWaylandPendingState *pending)
|
|
|
|
{
|
|
|
|
META_WAYLAND_SURFACE_ROLE_GET_CLASS (surface_role)->commit (surface_role,
|
|
|
|
pending);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
meta_wayland_surface_role_is_on_output (MetaWaylandSurfaceRole *surface_role,
|
|
|
|
MetaMonitorInfo *monitor)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleClass *klass;
|
|
|
|
|
|
|
|
klass = META_WAYLAND_SURFACE_ROLE_GET_CLASS (surface_role);
|
|
|
|
if (klass->is_on_output)
|
|
|
|
return klass->is_on_output (surface_role, monitor);
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-01-14 04:43:47 -05:00
|
|
|
static MetaWaylandSurface *
|
|
|
|
meta_wayland_surface_role_get_toplevel (MetaWaylandSurfaceRole *surface_role)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleClass *klass;
|
|
|
|
|
|
|
|
klass = META_WAYLAND_SURFACE_ROLE_GET_CLASS (surface_role);
|
|
|
|
if (klass->get_toplevel)
|
|
|
|
return klass->get_toplevel (surface_role);
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
MetaWaylandSurface *
|
|
|
|
meta_wayland_surface_role_get_surface (MetaWaylandSurfaceRole *role)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRolePrivate *priv =
|
|
|
|
meta_wayland_surface_role_get_instance_private (role);
|
|
|
|
|
|
|
|
return priv->surface;
|
|
|
|
}
|
|
|
|
|
2015-12-14 23:51:24 -05:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_shell_surface_configure (MetaWaylandSurfaceRoleShellSurface *shell_surface_role,
|
2016-07-01 03:14:12 -04:00
|
|
|
int new_x,
|
|
|
|
int new_y,
|
2015-12-14 23:51:24 -05:00
|
|
|
int new_width,
|
|
|
|
int new_height,
|
|
|
|
MetaWaylandSerial *sent_serial)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleShellSurfaceClass *shell_surface_role_class =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_SHELL_SURFACE_GET_CLASS (shell_surface_role);
|
|
|
|
|
|
|
|
shell_surface_role_class->configure (shell_surface_role,
|
2016-07-01 03:14:12 -04:00
|
|
|
new_x,
|
|
|
|
new_y,
|
2015-12-14 23:51:24 -05:00
|
|
|
new_width,
|
|
|
|
new_height,
|
|
|
|
sent_serial);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_shell_surface_ping (MetaWaylandSurfaceRoleShellSurface *shell_surface_role,
|
|
|
|
uint32_t serial)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleShellSurfaceClass *shell_surface_role_class =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_SHELL_SURFACE_GET_CLASS (shell_surface_role);
|
|
|
|
|
|
|
|
shell_surface_role_class->ping (shell_surface_role, serial);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_shell_surface_close (MetaWaylandSurfaceRoleShellSurface *shell_surface_role)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleShellSurfaceClass *shell_surface_role_class =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_SHELL_SURFACE_GET_CLASS (shell_surface_role);
|
|
|
|
|
|
|
|
shell_surface_role_class->close (shell_surface_role);
|
|
|
|
}
|
|
|
|
|
2015-12-15 09:09:20 -05:00
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_shell_surface_managed (MetaWaylandSurfaceRoleShellSurface *shell_surface_role,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleShellSurfaceClass *shell_surface_role_class =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_SHELL_SURFACE_GET_CLASS (shell_surface_role);
|
|
|
|
|
|
|
|
shell_surface_role_class->managed (shell_surface_role, window);
|
|
|
|
}
|
|
|
|
|
2015-07-17 10:02:15 -04:00
|
|
|
void
|
|
|
|
meta_wayland_surface_queue_pending_frame_callbacks (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
wl_list_insert_list (&surface->compositor->frame_callbacks,
|
|
|
|
&surface->pending_frame_callback_list);
|
|
|
|
wl_list_init (&surface->pending_frame_callback_list);
|
|
|
|
}
|
|
|
|
|
2015-07-08 04:14:00 -04:00
|
|
|
static void
|
|
|
|
default_role_assigned (MetaWaylandSurfaceRole *surface_role)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface =
|
|
|
|
meta_wayland_surface_role_get_surface (surface_role);
|
|
|
|
|
2015-07-17 10:02:15 -04:00
|
|
|
meta_wayland_surface_queue_pending_frame_callbacks (surface);
|
2015-07-08 04:14:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
actor_surface_assigned (MetaWaylandSurfaceRole *surface_role)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface =
|
|
|
|
meta_wayland_surface_role_get_surface (surface_role);
|
|
|
|
MetaSurfaceActorWayland *surface_actor =
|
|
|
|
META_SURFACE_ACTOR_WAYLAND (surface->surface_actor);
|
|
|
|
|
|
|
|
meta_surface_actor_wayland_add_frame_callbacks (surface_actor,
|
|
|
|
&surface->pending_frame_callback_list);
|
|
|
|
wl_list_init (&surface->pending_frame_callback_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-12-14 23:51:24 -05:00
|
|
|
actor_surface_commit (MetaWaylandSurfaceRole *surface_role,
|
|
|
|
MetaWaylandPendingState *pending)
|
2015-07-08 04:14:00 -04:00
|
|
|
{
|
2015-12-14 23:51:24 -05:00
|
|
|
MetaWaylandSurface *surface =
|
|
|
|
meta_wayland_surface_role_get_surface (surface_role);
|
2015-07-08 04:14:00 -04:00
|
|
|
|
2016-03-04 03:13:04 -05:00
|
|
|
meta_surface_actor_wayland_sync_state (
|
|
|
|
META_SURFACE_ACTOR_WAYLAND (surface->surface_actor));
|
|
|
|
|
2015-12-14 23:51:24 -05:00
|
|
|
queue_surface_actor_frame_callbacks (surface, pending);
|
2015-07-08 04:14:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-12-14 23:51:24 -05:00
|
|
|
meta_wayland_surface_role_actor_surface_init (MetaWaylandSurfaceRoleActorSurface *role)
|
2015-07-08 04:14:00 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-12-14 23:51:24 -05:00
|
|
|
meta_wayland_surface_role_actor_surface_class_init (MetaWaylandSurfaceRoleActorSurfaceClass *klass)
|
2015-07-08 04:14:00 -04:00
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleClass *surface_role_class =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_CLASS (klass);
|
|
|
|
|
|
|
|
surface_role_class->assigned = actor_surface_assigned;
|
2015-12-14 23:51:24 -05:00
|
|
|
surface_role_class->commit = actor_surface_commit;
|
2015-07-08 04:14:00 -04:00
|
|
|
surface_role_class->is_on_output = actor_surface_is_on_output;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-12-14 23:51:24 -05:00
|
|
|
meta_wayland_surface_role_shell_surface_init (MetaWaylandSurfaceRoleShellSurface *role)
|
2015-07-08 04:14:00 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-12-14 23:51:24 -05:00
|
|
|
meta_wayland_surface_role_shell_surface_class_init (MetaWaylandSurfaceRoleShellSurfaceClass *klass)
|
2015-07-08 04:14:00 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-12-14 23:51:24 -05:00
|
|
|
meta_wayland_surface_role_dnd_init (MetaWaylandSurfaceRoleDND *role)
|
2015-07-08 04:14:00 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-12-14 23:51:24 -05:00
|
|
|
meta_wayland_surface_role_dnd_class_init (MetaWaylandSurfaceRoleDNDClass *klass)
|
2015-07-08 04:14:00 -04:00
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleClass *surface_role_class =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_CLASS (klass);
|
|
|
|
|
2015-12-14 23:51:24 -05:00
|
|
|
surface_role_class->assigned = default_role_assigned;
|
|
|
|
surface_role_class->commit = dnd_surface_commit;
|
2015-07-08 04:14:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_subsurface_init (MetaWaylandSurfaceRoleSubsurface *role)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_surface_role_subsurface_class_init (MetaWaylandSurfaceRoleSubsurfaceClass *klass)
|
|
|
|
{
|
|
|
|
MetaWaylandSurfaceRoleClass *surface_role_class =
|
|
|
|
META_WAYLAND_SURFACE_ROLE_CLASS (klass);
|
|
|
|
|
2016-03-03 23:13:18 -05:00
|
|
|
surface_role_class->commit = subsurface_role_commit;
|
2016-01-14 04:43:47 -05:00
|
|
|
surface_role_class->get_toplevel = subsurface_role_get_toplevel;
|
2015-07-08 04:14:00 -04:00
|
|
|
}
|
2016-02-23 08:26:52 -05:00
|
|
|
|
|
|
|
cairo_region_t *
|
|
|
|
meta_wayland_surface_calculate_input_region (MetaWaylandSurface *surface)
|
|
|
|
{
|
|
|
|
cairo_region_t *region;
|
|
|
|
cairo_rectangle_int_t buffer_rect;
|
|
|
|
CoglTexture *texture;
|
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
if (!surface->buffer_ref.buffer)
|
2016-02-23 08:26:52 -05:00
|
|
|
return NULL;
|
|
|
|
|
2016-03-16 02:47:53 -04:00
|
|
|
texture = surface->buffer_ref.buffer->texture;
|
2016-02-23 08:26:52 -05:00
|
|
|
buffer_rect = (cairo_rectangle_int_t) {
|
|
|
|
.width = cogl_texture_get_width (texture) / surface->scale,
|
|
|
|
.height = cogl_texture_get_height (texture) / surface->scale,
|
|
|
|
};
|
|
|
|
region = cairo_region_create_rectangle (&buffer_rect);
|
|
|
|
|
|
|
|
if (surface->input_region)
|
|
|
|
cairo_region_intersect (region, surface->input_region);
|
|
|
|
|
|
|
|
return region;
|
|
|
|
}
|