2010-12-18 20:38:49 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Intel Corporation
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2010-12-18 20:38:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "gdk.h"
|
|
|
|
#include "gdkwayland.h"
|
|
|
|
|
2018-03-20 10:46:11 +00:00
|
|
|
#include "gdksurface.h"
|
|
|
|
#include "gdksurfaceimpl.h"
|
2010-12-18 20:38:49 +00:00
|
|
|
#include "gdkdisplay-wayland.h"
|
2014-10-09 09:06:48 +00:00
|
|
|
#include "gdkglcontext-wayland.h"
|
2013-04-24 22:14:22 +00:00
|
|
|
#include "gdkframeclockprivate.h"
|
2010-12-18 20:38:49 +00:00
|
|
|
#include "gdkprivate-wayland.h"
|
|
|
|
#include "gdkinternals.h"
|
|
|
|
#include "gdkdeviceprivate.h"
|
2016-07-01 09:03:36 +00:00
|
|
|
#include "gdkprivate-wayland.h"
|
2017-11-01 15:52:56 +00:00
|
|
|
#include "gdkmonitor-wayland.h"
|
2016-09-10 18:39:07 +00:00
|
|
|
#include <wayland/xdg-shell-unstable-v6-client-protocol.h>
|
2010-12-18 20:38:49 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2012-04-19 16:18:46 +00:00
|
|
|
#include <errno.h>
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2015-09-10 09:42:21 +00:00
|
|
|
enum {
|
|
|
|
COMMITTED,
|
|
|
|
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint signals[LAST_SIGNAL];
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
#define SURFACE_IS_TOPLEVEL(surface) \
|
|
|
|
(GDK_SURFACE_TYPE (surface) != GDK_SURFACE_CHILD)
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2016-06-08 05:31:45 +00:00
|
|
|
#define MAX_WL_BUFFER_SIZE (4083) /* 4096 minus header, string argument length and NUL byte */
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
typedef struct _GdkWaylandSurface GdkWaylandSurface;
|
|
|
|
typedef struct _GdkWaylandSurfaceClass GdkWaylandSurfaceClass;
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
struct _GdkWaylandSurface
|
2015-02-28 03:28:28 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface parent;
|
2010-12-18 20:38:49 +00:00
|
|
|
};
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
struct _GdkWaylandSurfaceClass
|
2015-02-28 03:28:28 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceClass parent_class;
|
2010-12-18 20:38:49 +00:00
|
|
|
};
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
G_DEFINE_TYPE (GdkWaylandSurface, gdk_wayland_surface, GDK_TYPE_SURFACE)
|
2010-12-18 20:38:49 +00:00
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_wayland_surface_class_init (GdkWaylandSurfaceClass *wayland_surface_class)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_wayland_surface_init (GdkWaylandSurface *wayland_surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
#define GDK_TYPE_SURFACE_IMPL_WAYLAND (_gdk_surface_impl_wayland_get_type ())
|
|
|
|
#define GDK_SURFACE_IMPL_WAYLAND(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_SURFACE_IMPL_WAYLAND, GdkSurfaceImplWayland))
|
|
|
|
#define GDK_SURFACE_IMPL_WAYLAND_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_SURFACE_IMPL_WAYLAND, GdkSurfaceImplWaylandClass))
|
|
|
|
#define GDK_IS_SURFACE_IMPL_WAYLAND(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_SURFACE_IMPL_WAYLAND))
|
|
|
|
#define GDK_IS_SURFACE_IMPL_WAYLAND_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_SURFACE_IMPL_WAYLAND))
|
|
|
|
#define GDK_SURFACE_IMPL_WAYLAND_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_SURFACE_IMPL_WAYLAND, GdkSurfaceImplWaylandClass))
|
2011-01-06 21:51:12 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
typedef struct _GdkSurfaceImplWayland GdkSurfaceImplWayland;
|
|
|
|
typedef struct _GdkSurfaceImplWaylandClass GdkSurfaceImplWaylandClass;
|
2011-01-06 21:51:12 +00:00
|
|
|
|
2016-07-08 08:54:36 +00:00
|
|
|
typedef enum _PositionMethod
|
|
|
|
{
|
|
|
|
POSITION_METHOD_NONE,
|
|
|
|
POSITION_METHOD_MOVE_RESIZE,
|
|
|
|
POSITION_METHOD_MOVE_TO_RECT
|
|
|
|
} PositionMethod;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
struct _GdkSurfaceImplWayland
|
2011-01-06 21:51:12 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImpl parent_instance;
|
2011-01-06 21:51:12 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *wrapper;
|
2011-01-06 21:51:12 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
struct {
|
2018-03-20 14:14:10 +00:00
|
|
|
/* The wl_outputs that this surface currently touches */
|
2016-02-02 16:42:52 +00:00
|
|
|
GSList *outputs;
|
|
|
|
|
|
|
|
struct wl_surface *wl_surface;
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
struct xdg_surface *xdg_surface;
|
|
|
|
struct xdg_toplevel *xdg_toplevel;
|
|
|
|
struct xdg_popup *xdg_popup;
|
|
|
|
|
|
|
|
/* Legacy xdg-shell unstable v6 fallback support */
|
|
|
|
struct zxdg_surface_v6 *zxdg_surface_v6;
|
|
|
|
struct zxdg_toplevel_v6 *zxdg_toplevel_v6;
|
|
|
|
struct zxdg_popup_v6 *zxdg_popup_v6;
|
|
|
|
|
2016-03-07 03:49:35 +00:00
|
|
|
struct gtk_surface1 *gtk_surface;
|
2016-02-02 16:42:52 +00:00
|
|
|
struct wl_egl_window *egl_window;
|
|
|
|
struct wl_egl_window *dummy_egl_window;
|
2016-07-12 03:49:39 +00:00
|
|
|
struct zxdg_exported_v1 *xdg_exported;
|
2017-04-29 00:35:51 +00:00
|
|
|
struct org_kde_kwin_server_decoration *server_decoration;
|
2016-02-02 16:42:52 +00:00
|
|
|
} display_server;
|
2014-08-21 15:31:50 +00:00
|
|
|
|
2014-10-09 09:06:48 +00:00
|
|
|
EGLSurface egl_surface;
|
2014-10-09 14:09:05 +00:00
|
|
|
EGLSurface dummy_egl_surface;
|
|
|
|
|
2016-07-01 09:03:36 +00:00
|
|
|
unsigned int initial_configure_received : 1;
|
2011-01-07 15:16:17 +00:00
|
|
|
unsigned int mapped : 1;
|
2013-09-22 03:35:02 +00:00
|
|
|
unsigned int pending_commit : 1;
|
2015-02-25 13:46:54 +00:00
|
|
|
unsigned int awaiting_frame : 1;
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceTypeHint hint;
|
|
|
|
GdkSurface *transient_for;
|
|
|
|
GdkSurface *popup_parent;
|
2016-07-08 08:54:36 +00:00
|
|
|
PositionMethod position_method;
|
2011-01-06 21:51:12 +00:00
|
|
|
|
2015-12-08 10:19:33 +00:00
|
|
|
int pending_buffer_offset_x;
|
|
|
|
int pending_buffer_offset_y;
|
2012-03-06 21:24:20 +00:00
|
|
|
|
2013-03-16 23:57:17 +00:00
|
|
|
gchar *title;
|
|
|
|
|
2015-03-23 05:08:09 +00:00
|
|
|
struct {
|
|
|
|
gboolean was_set;
|
|
|
|
|
|
|
|
gchar *application_id;
|
|
|
|
gchar *app_menu_path;
|
|
|
|
gchar *menubar_path;
|
|
|
|
gchar *window_object_path;
|
|
|
|
gchar *application_object_path;
|
|
|
|
gchar *unique_bus_name;
|
|
|
|
} application;
|
|
|
|
|
2012-01-09 17:11:22 +00:00
|
|
|
GdkGeometry geometry_hints;
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceHints geometry_mask;
|
2012-02-27 14:06:22 +00:00
|
|
|
|
2015-12-09 11:56:26 +00:00
|
|
|
GdkSeat *grab_input_seat;
|
2013-01-29 18:40:02 +00:00
|
|
|
|
2013-04-24 22:14:22 +00:00
|
|
|
gint64 pending_frame_counter;
|
2013-09-22 03:35:02 +00:00
|
|
|
guint32 scale;
|
2014-02-27 21:54:20 +00:00
|
|
|
|
|
|
|
int margin_left;
|
|
|
|
int margin_right;
|
|
|
|
int margin_top;
|
|
|
|
int margin_bottom;
|
2016-07-01 08:48:16 +00:00
|
|
|
gboolean margin_dirty;
|
2016-02-26 12:35:35 +00:00
|
|
|
|
2017-11-01 15:52:56 +00:00
|
|
|
struct wl_output *initial_fullscreen_output;
|
2014-03-17 20:08:35 +00:00
|
|
|
|
|
|
|
cairo_region_t *opaque_region;
|
2016-07-01 08:48:16 +00:00
|
|
|
gboolean opaque_region_dirty;
|
|
|
|
|
2014-03-17 20:02:47 +00:00
|
|
|
cairo_region_t *input_region;
|
2016-07-01 08:48:16 +00:00
|
|
|
gboolean input_region_dirty;
|
|
|
|
|
2016-02-26 12:35:35 +00:00
|
|
|
int saved_width;
|
|
|
|
int saved_height;
|
2016-05-06 08:31:41 +00:00
|
|
|
|
|
|
|
gulong parent_surface_committed_handler;
|
2016-08-08 07:00:42 +00:00
|
|
|
|
|
|
|
struct {
|
|
|
|
GdkRectangle rect;
|
|
|
|
GdkGravity rect_anchor;
|
2018-03-20 11:05:26 +00:00
|
|
|
GdkGravity surface_anchor;
|
2016-08-08 07:00:42 +00:00
|
|
|
GdkAnchorHints anchor_hints;
|
|
|
|
gint rect_anchor_dx;
|
|
|
|
gint rect_anchor_dy;
|
|
|
|
} pending_move_to_rect;
|
2016-06-28 07:01:22 +00:00
|
|
|
|
|
|
|
struct {
|
2016-07-01 09:03:36 +00:00
|
|
|
int width;
|
|
|
|
int height;
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceState state;
|
2016-06-28 07:01:22 +00:00
|
|
|
} pending;
|
2016-07-12 03:49:39 +00:00
|
|
|
|
|
|
|
struct {
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkWaylandSurfaceExported callback;
|
2016-07-12 03:49:39 +00:00
|
|
|
gpointer user_data;
|
|
|
|
GDestroyNotify destroy_func;
|
|
|
|
} exported;
|
2016-07-13 07:24:19 +00:00
|
|
|
|
|
|
|
struct zxdg_imported_v1 *imported_transient_for;
|
2017-03-22 09:21:02 +00:00
|
|
|
GHashTable *shortcuts_inhibitors;
|
2011-01-06 21:51:12 +00:00
|
|
|
};
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
struct _GdkSurfaceImplWaylandClass
|
2011-01-06 21:51:12 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplClass parent_class;
|
2011-01-06 21:51:12 +00:00
|
|
|
};
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
static void gdk_wayland_surface_maybe_configure (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int scale);
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
static void maybe_set_gtk_surface_dbus_properties (GdkSurface *surface);
|
|
|
|
static void maybe_set_gtk_surface_modal (GdkSurface *surface);
|
2015-03-23 05:08:09 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
static void gdk_wayland_surface_sync_margin (GdkSurface *surface);
|
|
|
|
static void gdk_wayland_surface_sync_input_region (GdkSurface *surface);
|
|
|
|
static void gdk_wayland_surface_sync_opaque_region (GdkSurface *surface);
|
2016-07-01 08:48:16 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
static void unset_transient_for_exported (GdkSurface *surface);
|
2016-07-13 07:24:19 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
static void calculate_moved_to_rect_result (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
GdkRectangle *flipped_rect,
|
|
|
|
GdkRectangle *final_rect,
|
|
|
|
gboolean *flipped_x,
|
|
|
|
gboolean *flipped_y);
|
2016-09-12 06:53:51 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
static gboolean gdk_wayland_surface_is_exported (GdkSurface *surface);
|
2017-05-08 04:09:00 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
GType _gdk_surface_impl_wayland_get_type (void);
|
2014-09-06 00:41:06 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
G_DEFINE_TYPE (GdkSurfaceImplWayland, _gdk_surface_impl_wayland, GDK_TYPE_SURFACE_IMPL)
|
2010-12-18 20:38:49 +00:00
|
|
|
|
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_surface_impl_wayland_init (GdkSurfaceImplWayland *impl)
|
2011-01-06 21:51:12 +00:00
|
|
|
{
|
2013-06-04 09:39:36 +00:00
|
|
|
impl->scale = 1;
|
2017-11-01 15:52:56 +00:00
|
|
|
impl->initial_fullscreen_output = NULL;
|
2016-02-26 12:35:35 +00:00
|
|
|
impl->saved_width = -1;
|
|
|
|
impl->saved_height = -1;
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
2015-12-08 15:33:45 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_screen_add_orphan_dialog (GdkSurface *surface)
|
2015-12-08 15:33:45 +00:00
|
|
|
{
|
2016-04-26 03:46:25 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2016-04-26 03:46:25 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (!g_list_find (display_wayland->orphan_dialogs, surface))
|
2016-04-26 03:46:25 +00:00
|
|
|
display_wayland->orphan_dialogs =
|
2018-03-20 14:14:10 +00:00
|
|
|
g_list_prepend (display_wayland->orphan_dialogs, surface);
|
2015-12-08 15:33:45 +00:00
|
|
|
}
|
|
|
|
|
2016-02-26 12:35:35 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_surface_save_size (GdkSurface *surface)
|
2016-02-26 12:35:35 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-02-26 12:35:35 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (surface->state & (GDK_SURFACE_STATE_FULLSCREEN | GDK_SURFACE_STATE_MAXIMIZED))
|
2016-02-26 12:35:35 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl->saved_width = surface->width - impl->margin_left - impl->margin_right;
|
|
|
|
impl->saved_height = surface->height - impl->margin_top - impl->margin_bottom;
|
2016-02-26 12:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_surface_clear_saved_size (GdkSurface *surface)
|
2016-02-26 12:35:35 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-02-26 12:35:35 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (surface->state & (GDK_SURFACE_STATE_FULLSCREEN | GDK_SURFACE_STATE_MAXIMIZED))
|
2016-02-26 12:35:35 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
impl->saved_width = -1;
|
|
|
|
impl->saved_height = -1;
|
|
|
|
}
|
|
|
|
|
2014-08-18 12:17:49 +00:00
|
|
|
/*
|
2018-03-20 10:40:08 +00:00
|
|
|
* gdk_wayland_surface_update_size:
|
2010-12-18 20:38:49 +00:00
|
|
|
* @drawable: a #GdkDrawableImplWayland.
|
2013-09-16 21:23:29 +00:00
|
|
|
*
|
2010-12-18 20:38:49 +00:00
|
|
|
* Updates the state of the drawable (in particular the drawable's
|
|
|
|
* cairo surface) when its size has changed.
|
2013-09-16 21:23:29 +00:00
|
|
|
*/
|
2012-01-29 12:15:12 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_update_size (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
int32_t width,
|
|
|
|
int32_t height,
|
|
|
|
int scale)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if ((surface->width == width) &&
|
|
|
|
(surface->height == height) &&
|
2016-03-17 06:35:20 +00:00
|
|
|
(impl->scale == scale))
|
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
surface->width = width;
|
|
|
|
surface->height = height;
|
2015-02-24 08:11:48 +00:00
|
|
|
impl->scale = scale;
|
2011-02-11 03:37:51 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.egl_window)
|
2017-08-23 14:27:43 +00:00
|
|
|
wl_egl_window_resize (impl->display_server.egl_window, width * scale, height * scale, 0, 0);
|
|
|
|
if (impl->display_server.wl_surface)
|
|
|
|
wl_surface_set_buffer_scale (impl->display_server.wl_surface, scale);
|
2014-10-09 09:06:48 +00:00
|
|
|
|
2018-03-21 03:07:37 +00:00
|
|
|
gdk_surface_invalidate_rect (surface, NULL);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const gchar *
|
|
|
|
get_default_title (void)
|
|
|
|
{
|
|
|
|
const char *title;
|
|
|
|
|
|
|
|
title = g_get_application_name ();
|
|
|
|
if (!title)
|
|
|
|
title = g_get_prgname ();
|
|
|
|
if (!title)
|
|
|
|
title = "";
|
|
|
|
|
|
|
|
return title;
|
|
|
|
}
|
|
|
|
|
2013-04-25 15:46:31 +00:00
|
|
|
static void
|
|
|
|
fill_presentation_time_from_frame_time (GdkFrameTimings *timings,
|
|
|
|
guint32 frame_time)
|
|
|
|
{
|
|
|
|
/* The timestamp in a wayland frame is a msec time value that in some
|
|
|
|
* way reflects the time at which the server started drawing the frame.
|
|
|
|
* This is not useful from our perspective.
|
|
|
|
*
|
|
|
|
* However, for the DRM backend of Weston, on reasonably recent
|
|
|
|
* Linux, we know that the time is the
|
2013-09-16 21:23:29 +00:00
|
|
|
* clock_gettime (CLOCK_MONOTONIC) value at the vblank, and that
|
2013-04-25 15:46:31 +00:00
|
|
|
* backend starts drawing immediately after receiving the vblank
|
|
|
|
* notification. If we detect this, and make the assumption that the
|
|
|
|
* compositor will finish drawing before the next vblank, we can
|
|
|
|
* then determine the presentation time as the frame time we
|
2013-09-16 21:23:29 +00:00
|
|
|
* received plus one refresh interval.
|
2013-04-25 15:46:31 +00:00
|
|
|
*
|
|
|
|
* If a backend is using clock_gettime(CLOCK_MONOTONIC), but not
|
|
|
|
* picking values right at the vblank, then the presentation times
|
|
|
|
* we compute won't be accurate, but not really worse than then
|
|
|
|
* the alternative of not providing presentation times at all.
|
|
|
|
*
|
|
|
|
* The complexity here is dealing with the fact that we receive
|
|
|
|
* only the low 32 bits of the CLOCK_MONOTONIC value in milliseconds.
|
|
|
|
*/
|
|
|
|
gint64 now_monotonic = g_get_monotonic_time ();
|
|
|
|
gint64 now_monotonic_msec = now_monotonic / 1000;
|
|
|
|
uint32_t now_monotonic_low = (uint32_t)now_monotonic_msec;
|
|
|
|
|
|
|
|
if (frame_time - now_monotonic_low < 1000 ||
|
|
|
|
frame_time - now_monotonic_low > (uint32_t)-1000)
|
|
|
|
{
|
|
|
|
/* Timestamp we received is within one second of the current time.
|
|
|
|
*/
|
|
|
|
gint64 last_frame_time = now_monotonic + (gint64)1000 * (gint32)(frame_time - now_monotonic_low);
|
|
|
|
if ((gint32)now_monotonic_low < 0 && (gint32)frame_time > 0)
|
|
|
|
last_frame_time += (gint64)1000 * G_GINT64_CONSTANT(0x100000000);
|
|
|
|
else if ((gint32)now_monotonic_low > 0 && (gint32)frame_time < 0)
|
|
|
|
last_frame_time -= (gint64)1000 * G_GINT64_CONSTANT(0x100000000);
|
|
|
|
|
|
|
|
timings->presentation_time = last_frame_time + timings->refresh_interval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-24 22:14:22 +00:00
|
|
|
static void
|
|
|
|
frame_callback (void *data,
|
|
|
|
struct wl_callback *callback,
|
|
|
|
uint32_t time)
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = data;
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-04-26 03:16:56 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
GdkFrameClock *clock = gdk_surface_get_frame_clock (surface);
|
2013-04-24 22:14:22 +00:00
|
|
|
GdkFrameTimings *timings;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_DISPLAY_NOTE (GDK_DISPLAY (display_wayland), EVENTS, g_message ("frame %p", surface));
|
2015-02-28 05:15:13 +00:00
|
|
|
|
2013-04-24 22:14:22 +00:00
|
|
|
wl_callback_destroy (callback);
|
2014-01-31 21:39:33 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2014-01-31 21:39:33 +00:00
|
|
|
return;
|
|
|
|
|
2015-02-25 13:46:54 +00:00
|
|
|
if (!impl->awaiting_frame)
|
|
|
|
return;
|
|
|
|
|
|
|
|
impl->awaiting_frame = FALSE;
|
2013-04-24 22:14:22 +00:00
|
|
|
_gdk_frame_clock_thaw (clock);
|
|
|
|
|
|
|
|
timings = gdk_frame_clock_get_timings (clock, impl->pending_frame_counter);
|
|
|
|
impl->pending_frame_counter = 0;
|
|
|
|
|
|
|
|
if (timings == NULL)
|
|
|
|
return;
|
|
|
|
|
2013-04-25 15:19:31 +00:00
|
|
|
timings->refresh_interval = 16667; /* default to 1/60th of a second */
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.outputs)
|
2013-04-25 15:19:31 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
/* We pick a random output out of the outputs that the surface touches
|
2013-04-25 15:19:31 +00:00
|
|
|
* The rate here is in milli-hertz */
|
2016-04-26 03:16:56 +00:00
|
|
|
int refresh_rate =
|
2017-11-01 23:25:45 +00:00
|
|
|
gdk_wayland_display_get_output_refresh_rate (display_wayland,
|
2016-04-26 03:16:56 +00:00
|
|
|
impl->display_server.outputs->data);
|
2013-04-25 15:19:31 +00:00
|
|
|
if (refresh_rate != 0)
|
|
|
|
timings->refresh_interval = G_GINT64_CONSTANT(1000000000) / refresh_rate;
|
|
|
|
}
|
|
|
|
|
2013-04-25 15:46:31 +00:00
|
|
|
fill_presentation_time_from_frame_time (timings, time);
|
|
|
|
|
2013-04-24 22:14:22 +00:00
|
|
|
timings->complete = TRUE;
|
|
|
|
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
|
|
if ((_gdk_debug_flags & GDK_DEBUG_FRAMES) != 0)
|
|
|
|
_gdk_frame_clock_debug_print_timings (clock, timings);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-06-21 21:33:09 +00:00
|
|
|
static const struct wl_callback_listener frame_listener = {
|
2013-04-24 22:14:22 +00:00
|
|
|
frame_callback
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_frame_clock_before_paint (GdkFrameClock *clock,
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface)
|
2013-04-24 22:14:22 +00:00
|
|
|
{
|
2013-04-25 15:46:31 +00:00
|
|
|
GdkFrameTimings *timings = gdk_frame_clock_get_current_timings (clock);
|
|
|
|
gint64 presentation_time;
|
|
|
|
gint64 refresh_interval;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (surface->update_freeze_count > 0)
|
2016-07-01 09:03:36 +00:00
|
|
|
return;
|
|
|
|
|
2013-04-25 15:46:31 +00:00
|
|
|
gdk_frame_clock_get_refresh_info (clock,
|
|
|
|
timings->frame_time,
|
|
|
|
&refresh_interval, &presentation_time);
|
|
|
|
|
|
|
|
if (presentation_time != 0)
|
|
|
|
{
|
|
|
|
/* Assume the algorithm used by the DRM backend of Weston - it
|
|
|
|
* starts drawing at the next vblank after receiving the commit
|
|
|
|
* for this frame, and presentation occurs at the vblank
|
|
|
|
* after that.
|
|
|
|
*/
|
|
|
|
timings->predicted_presentation_time = presentation_time + refresh_interval;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* As above, but we don't actually know the phase of the vblank,
|
|
|
|
* so just assume that we're half way through a refresh cycle.
|
|
|
|
*/
|
|
|
|
timings->predicted_presentation_time = timings->frame_time + refresh_interval / 2 + refresh_interval;
|
|
|
|
}
|
2013-04-24 22:14:22 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 13:10:56 +00:00
|
|
|
void
|
|
|
|
gdk_wayland_surface_request_frame (GdkSurface *surface)
|
|
|
|
{
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
|
|
|
struct wl_callback *callback;
|
|
|
|
GdkFrameClock *clock;
|
|
|
|
|
|
|
|
if (impl->awaiting_frame)
|
|
|
|
return;
|
|
|
|
|
|
|
|
clock = gdk_surface_get_frame_clock (surface);
|
|
|
|
|
|
|
|
callback = wl_surface_frame (impl->display_server.wl_surface);
|
|
|
|
wl_callback_add_listener (callback, &frame_listener, surface);
|
|
|
|
impl->pending_frame_counter = gdk_frame_clock_get_frame_counter (clock);
|
|
|
|
impl->awaiting_frame = TRUE;
|
|
|
|
}
|
|
|
|
|
2013-04-24 22:14:22 +00:00
|
|
|
static void
|
|
|
|
on_frame_clock_after_paint (GdkFrameClock *clock,
|
2018-04-13 00:13:27 +00:00
|
|
|
GdkSurface *surface)
|
2013-04-24 22:14:22 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-04-24 22:14:22 +00:00
|
|
|
|
2018-04-13 00:13:27 +00:00
|
|
|
if (impl->pending_commit)
|
|
|
|
{
|
|
|
|
if (surface->update_freeze_count > 0)
|
|
|
|
return;
|
2016-07-01 09:03:36 +00:00
|
|
|
|
2018-04-13 00:13:27 +00:00
|
|
|
gdk_wayland_surface_request_frame (surface);
|
2013-04-24 22:14:22 +00:00
|
|
|
|
2018-04-13 00:13:27 +00:00
|
|
|
/* From this commit forward, we can't write to the buffer,
|
|
|
|
* it's "live". In the future, if we need to stage more changes
|
|
|
|
* we have to allocate a new staging buffer and draw to it instead.
|
|
|
|
*
|
|
|
|
* Our one saving grace is if the compositor releases the buffer
|
|
|
|
* before we need to stage any changes, then we can take it back and
|
|
|
|
* use it again.
|
|
|
|
*/
|
|
|
|
wl_surface_commit (impl->display_server.wl_surface);
|
wayland: stage uncommitted changes to dedicated buffer
Right now we use one buffer for both staged changes (freshly painted
changes waiting for the frame clock to send to the compositor) and
committed changes (changes actively being read by the compositor
process). This creates a problem in the event we need to stage updates
at the same time the compositor is processing committed updates: we
can't change what the compositor is actively processing.
The current solution for handling this contention is to allocate a
temporary buffer on the spot at the time the updates are staged, and to
copy that buffer back to the shared buffer later. The problem, though,
is that the copy to the shared buffer currently happens as soon as
the updates are finished being staged, not when the shared buffer is
done being processed by the compositor.
In order to address that problem, this commit changes the code to always
stage changes to a dedicated staging buffer. The staging buffer is
used exclusively by the client until the client is done with it, and then
once that staging buffer is committed, the client never writes to that
buffer again. If the client needs to stage new updates, it allocates a
brand new staging buffer, draws to it, and back fills the undrawn parts
of the buffer from a copy of the contents of the committed buffer.
As an optimization, the compositor has the option of releasing the
committed buffer back to the client. If it does so before the client
needs to stage new updates, then the client will reuse the buffer
for staging future updates. This optimization prevents having to allocate
a new staging buffer and the associated cost of back filling
that new buffer with a readback of the committed buffer.
https://bugzilla.gnome.org/show_bug.cgi?id=761312
2016-01-29 16:19:03 +00:00
|
|
|
|
2018-04-13 00:13:27 +00:00
|
|
|
impl->pending_commit = FALSE;
|
2016-02-16 04:41:57 +00:00
|
|
|
|
2018-04-13 00:13:27 +00:00
|
|
|
g_signal_emit (impl, signals[COMMITTED], 0);
|
|
|
|
}
|
2015-09-10 09:42:21 +00:00
|
|
|
|
2018-04-13 00:13:27 +00:00
|
|
|
if (impl->awaiting_frame)
|
|
|
|
_gdk_frame_clock_freeze (clock);
|
2013-04-24 22:14:22 +00:00
|
|
|
}
|
|
|
|
|
2017-11-01 01:48:58 +00:00
|
|
|
void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_update_scale (GdkSurface *surface)
|
2013-06-04 09:39:36 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
|
|
|
GdkWaylandDisplay *display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2013-06-04 09:39:36 +00:00
|
|
|
guint32 scale;
|
|
|
|
GSList *l;
|
2017-11-01 01:48:58 +00:00
|
|
|
GList *children, *c;
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2016-04-26 03:16:56 +00:00
|
|
|
if (display_wayland->compositor_version < WL_SURFACE_HAS_BUFFER_SCALE)
|
2013-07-12 14:49:52 +00:00
|
|
|
{
|
|
|
|
/* We can't set the scale on this surface */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-04 09:39:36 +00:00
|
|
|
scale = 1;
|
2016-02-02 16:42:52 +00:00
|
|
|
for (l = impl->display_server.outputs; l != NULL; l = l->next)
|
2013-06-04 09:39:36 +00:00
|
|
|
{
|
2017-11-01 23:25:45 +00:00
|
|
|
guint32 output_scale = gdk_wayland_display_get_output_scale (display_wayland, l->data);
|
2013-06-04 09:39:36 +00:00
|
|
|
scale = MAX (scale, output_scale);
|
|
|
|
}
|
|
|
|
|
2015-02-24 08:11:48 +00:00
|
|
|
/* Notify app that scale changed */
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_maybe_configure (surface, surface->width, surface->height, scale);
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
children = gdk_surface_get_children (surface);
|
2017-11-01 01:48:58 +00:00
|
|
|
for (c = children; c; c = c->next)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *child = c->data;
|
|
|
|
gdk_wayland_surface_update_scale (child);
|
2017-11-01 01:48:58 +00:00
|
|
|
}
|
|
|
|
g_list_free (children);
|
2013-06-04 09:39:36 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
static void gdk_wayland_surface_create_surface (GdkSurface *surface);
|
2013-07-03 15:19:39 +00:00
|
|
|
|
2010-12-18 20:38:49 +00:00
|
|
|
void
|
2017-12-18 12:10:47 +00:00
|
|
|
_gdk_wayland_display_create_surface_impl (GdkDisplay *display,
|
|
|
|
GdkSurface *surface,
|
|
|
|
GdkSurface *real_parent,
|
|
|
|
GdkSurfaceAttr *attributes)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2016-04-26 03:16:56 +00:00
|
|
|
GdkWaylandDisplay *display_wayland = GDK_WAYLAND_DISPLAY (display);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2013-04-24 22:14:22 +00:00
|
|
|
GdkFrameClock *frame_clock;
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
impl = g_object_new (GDK_TYPE_SURFACE_IMPL_WAYLAND, NULL);
|
2018-03-20 14:14:10 +00:00
|
|
|
surface->impl = GDK_SURFACE_IMPL (impl);
|
|
|
|
impl->wrapper = GDK_SURFACE (surface);
|
2017-03-22 09:21:02 +00:00
|
|
|
impl->shortcuts_inhibitors = g_hash_table_new (NULL, NULL);
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (surface->width > 65535)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
g_warning ("Native Surfaces wider than 65535 pixels are not supported");
|
|
|
|
surface->width = 65535;
|
2015-02-28 03:28:28 +00:00
|
|
|
}
|
2018-03-20 14:14:10 +00:00
|
|
|
if (surface->height > 65535)
|
2015-02-28 03:28:28 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
g_warning ("Native Surfaces taller than 65535 pixels are not supported");
|
|
|
|
surface->height = 65535;
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
2011-01-06 20:23:52 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_object_ref (surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2013-06-04 09:39:36 +00:00
|
|
|
/* More likely to be right than just assuming 1 */
|
2016-04-26 03:16:56 +00:00
|
|
|
if (display_wayland->compositor_version >= WL_SURFACE_HAS_BUFFER_SCALE &&
|
2016-09-04 19:52:55 +00:00
|
|
|
gdk_display_get_n_monitors (display) > 0)
|
|
|
|
impl->scale = gdk_monitor_get_scale_factor (gdk_display_get_monitor (display, 0));
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2013-03-16 23:57:17 +00:00
|
|
|
impl->title = NULL;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
switch (GDK_SURFACE_TYPE (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TOPLEVEL:
|
|
|
|
case GDK_SURFACE_TEMP:
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_set_title (surface, get_default_title ());
|
2010-12-18 20:38:49 +00:00
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_CHILD:
|
2010-12-18 20:38:49 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-11-06 23:30:27 +00:00
|
|
|
if (real_parent == NULL)
|
2018-03-20 14:14:10 +00:00
|
|
|
display_wayland->toplevels = g_list_prepend (display_wayland->toplevels, surface);
|
2017-11-06 23:30:27 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_create_surface (surface);
|
2013-07-03 15:19:39 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
frame_clock = gdk_surface_get_frame_clock (surface);
|
|
|
|
g_signal_connect (frame_clock, "before-paint", G_CALLBACK (on_frame_clock_before_paint), surface);
|
|
|
|
g_signal_connect (frame_clock, "after-paint", G_CALLBACK (on_frame_clock_after_paint), surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
2018-04-17 21:05:41 +00:00
|
|
|
void
|
|
|
|
gdk_wayland_surface_attach_image (GdkSurface *surface,
|
|
|
|
cairo_surface_t *cairo_surface,
|
|
|
|
const cairo_region_t *damage)
|
2011-01-08 01:49:40 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2018-04-17 21:05:41 +00:00
|
|
|
GdkWaylandDisplay *display;
|
|
|
|
cairo_rectangle_int_t rect;
|
|
|
|
int i, n;
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2011-01-08 01:49:40 +00:00
|
|
|
return;
|
|
|
|
|
2018-04-17 21:05:41 +00:00
|
|
|
g_assert (_gdk_wayland_is_shm_surface (cairo_surface));
|
2015-02-24 10:10:07 +00:00
|
|
|
|
2012-03-06 21:24:20 +00:00
|
|
|
/* Attach this new buffer to the surface */
|
2016-02-02 16:42:52 +00:00
|
|
|
wl_surface_attach (impl->display_server.wl_surface,
|
2018-04-17 21:05:41 +00:00
|
|
|
_gdk_wayland_shm_surface_get_wl_buffer (cairo_surface),
|
2015-12-08 10:19:33 +00:00
|
|
|
impl->pending_buffer_offset_x,
|
|
|
|
impl->pending_buffer_offset_y);
|
|
|
|
impl->pending_buffer_offset_x = 0;
|
|
|
|
impl->pending_buffer_offset_y = 0;
|
2013-07-12 14:49:52 +00:00
|
|
|
|
|
|
|
/* Only set the buffer scale if supported by the compositor */
|
2018-03-20 14:14:10 +00:00
|
|
|
display = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2013-07-12 14:49:52 +00:00
|
|
|
if (display->compositor_version >= WL_SURFACE_HAS_BUFFER_SCALE)
|
2016-02-02 16:42:52 +00:00
|
|
|
wl_surface_set_buffer_scale (impl->display_server.wl_surface, impl->scale);
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2018-04-17 21:05:41 +00:00
|
|
|
n = cairo_region_num_rectangles (damage);
|
|
|
|
for (i = 0; i < n; i++)
|
wayland: stage uncommitted changes to dedicated buffer
Right now we use one buffer for both staged changes (freshly painted
changes waiting for the frame clock to send to the compositor) and
committed changes (changes actively being read by the compositor
process). This creates a problem in the event we need to stage updates
at the same time the compositor is processing committed updates: we
can't change what the compositor is actively processing.
The current solution for handling this contention is to allocate a
temporary buffer on the spot at the time the updates are staged, and to
copy that buffer back to the shared buffer later. The problem, though,
is that the copy to the shared buffer currently happens as soon as
the updates are finished being staged, not when the shared buffer is
done being processed by the compositor.
In order to address that problem, this commit changes the code to always
stage changes to a dedicated staging buffer. The staging buffer is
used exclusively by the client until the client is done with it, and then
once that staging buffer is committed, the client never writes to that
buffer again. If the client needs to stage new updates, it allocates a
brand new staging buffer, draws to it, and back fills the undrawn parts
of the buffer from a copy of the contents of the committed buffer.
As an optimization, the compositor has the option of releasing the
committed buffer back to the client. If it does so before the client
needs to stage new updates, then the client will reuse the buffer
for staging future updates. This optimization prevents having to allocate
a new staging buffer and the associated cost of back filling
that new buffer with a readback of the committed buffer.
https://bugzilla.gnome.org/show_bug.cgi?id=761312
2016-01-29 16:19:03 +00:00
|
|
|
{
|
2018-04-17 21:05:41 +00:00
|
|
|
cairo_region_get_rectangle (damage, i, &rect);
|
|
|
|
wl_surface_damage (impl->display_server.wl_surface, rect.x, rect.y, rect.width, rect.height);
|
wayland: stage uncommitted changes to dedicated buffer
Right now we use one buffer for both staged changes (freshly painted
changes waiting for the frame clock to send to the compositor) and
committed changes (changes actively being read by the compositor
process). This creates a problem in the event we need to stage updates
at the same time the compositor is processing committed updates: we
can't change what the compositor is actively processing.
The current solution for handling this contention is to allocate a
temporary buffer on the spot at the time the updates are staged, and to
copy that buffer back to the shared buffer later. The problem, though,
is that the copy to the shared buffer currently happens as soon as
the updates are finished being staged, not when the shared buffer is
done being processed by the compositor.
In order to address that problem, this commit changes the code to always
stage changes to a dedicated staging buffer. The staging buffer is
used exclusively by the client until the client is done with it, and then
once that staging buffer is committed, the client never writes to that
buffer again. If the client needs to stage new updates, it allocates a
brand new staging buffer, draws to it, and back fills the undrawn parts
of the buffer from a copy of the contents of the committed buffer.
As an optimization, the compositor has the option of releasing the
committed buffer back to the client. If it does so before the client
needs to stage new updates, then the client will reuse the buffer
for staging future updates. This optimization prevents having to allocate
a new staging buffer and the associated cost of back filling
that new buffer with a readback of the committed buffer.
https://bugzilla.gnome.org/show_bug.cgi?id=761312
2016-01-29 16:19:03 +00:00
|
|
|
}
|
2018-04-17 21:05:41 +00:00
|
|
|
impl->pending_commit = TRUE;
|
2016-12-06 17:01:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync (GdkSurface *surface)
|
2016-12-06 17:01:34 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_margin (surface);
|
|
|
|
gdk_wayland_surface_sync_opaque_region (surface);
|
|
|
|
gdk_wayland_surface_sync_input_region (surface);
|
2014-06-21 21:29:08 +00:00
|
|
|
}
|
|
|
|
|
2016-03-07 04:41:31 +00:00
|
|
|
static gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_impl_wayland_beep (GdkSurface *surface)
|
2016-03-07 04:41:31 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_display_system_bell (gdk_surface_get_display (surface),
|
|
|
|
surface);
|
2016-03-07 04:41:31 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-04-04 13:05:27 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_impl_wayland_finalize (GObject *object)
|
2012-04-04 13:05:27 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = GDK_SURFACE (object);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2012-04-04 13:05:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE_IMPL_WAYLAND (object));
|
2012-04-04 13:05:27 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (object);
|
2012-04-04 13:05:27 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (gdk_wayland_surface_is_exported (surface))
|
|
|
|
gdk_wayland_surface_unexport_handle (surface);
|
2017-05-08 04:09:00 +00:00
|
|
|
|
2013-08-21 11:09:29 +00:00
|
|
|
g_free (impl->title);
|
|
|
|
|
2015-03-23 05:08:09 +00:00
|
|
|
g_free (impl->application.application_id);
|
|
|
|
g_free (impl->application.app_menu_path);
|
|
|
|
g_free (impl->application.menubar_path);
|
|
|
|
g_free (impl->application.window_object_path);
|
|
|
|
g_free (impl->application.application_object_path);
|
|
|
|
g_free (impl->application.unique_bus_name);
|
|
|
|
|
2014-03-17 20:08:35 +00:00
|
|
|
g_clear_pointer (&impl->opaque_region, cairo_region_destroy);
|
2014-03-17 20:02:47 +00:00
|
|
|
g_clear_pointer (&impl->input_region, cairo_region_destroy);
|
2018-04-23 09:57:07 +00:00
|
|
|
g_clear_pointer (&impl->shortcuts_inhibitors, g_hash_table_unref);
|
2017-03-22 09:21:02 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
G_OBJECT_CLASS (_gdk_surface_impl_wayland_parent_class)->finalize (object);
|
2012-04-04 13:05:27 +00:00
|
|
|
}
|
|
|
|
|
2012-01-30 14:04:45 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_configure (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int scale)
|
2012-01-29 12:15:12 +00:00
|
|
|
{
|
2018-07-15 23:52:28 +00:00
|
|
|
GdkDisplay *display;
|
|
|
|
GdkEvent *event;
|
|
|
|
|
|
|
|
event = gdk_event_new (GDK_CONFIGURE);
|
|
|
|
event->any.surface = g_object_ref (surface);
|
|
|
|
event->any.send_event = FALSE;
|
|
|
|
event->configure.width = width;
|
|
|
|
event->configure.height = height;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_update_size (surface, width, height, scale);
|
|
|
|
_gdk_surface_update_size (surface);
|
2018-07-15 23:52:28 +00:00
|
|
|
|
|
|
|
display = gdk_surface_get_display (surface);
|
|
|
|
_gdk_wayland_display_deliver_event (display, event);
|
2012-01-29 12:15:12 +00:00
|
|
|
}
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
static gboolean
|
|
|
|
is_realized_shell_surface (GdkSurface *surface)
|
|
|
|
{
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
|
|
|
|
|
|
|
return (impl->display_server.xdg_surface ||
|
|
|
|
impl->display_server.zxdg_surface_v6);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
is_realized_toplevel (GdkSurface *surface)
|
|
|
|
{
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
|
|
|
|
|
|
|
return (impl->display_server.xdg_toplevel ||
|
|
|
|
impl->display_server.zxdg_toplevel_v6);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
is_realized_popup (GdkSurface *surface)
|
|
|
|
{
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
|
|
|
|
|
|
|
return (impl->display_server.xdg_popup ||
|
|
|
|
impl->display_server.zxdg_popup_v6);
|
|
|
|
}
|
|
|
|
|
2016-04-04 12:55:38 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_maybe_configure (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int scale)
|
2016-04-04 12:55:38 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-11-25 13:24:52 +00:00
|
|
|
gboolean is_xdg_popup;
|
|
|
|
gboolean is_visible;
|
2016-04-04 12:55:38 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (surface->width == width &&
|
|
|
|
surface->height == height &&
|
2016-04-04 12:55:38 +00:00
|
|
|
impl->scale == scale)
|
|
|
|
return;
|
|
|
|
|
2016-11-25 13:24:52 +00:00
|
|
|
/* For xdg_popup using an xdg_positioner, there is a race condition if
|
|
|
|
* the application tries to change the size after it's mapped, but before
|
|
|
|
* the initial configure is received, so hide and show the surface again
|
|
|
|
* force the new size onto the compositor. See bug #772505.
|
|
|
|
*/
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
is_xdg_popup = is_realized_popup (surface);
|
2018-03-20 14:14:10 +00:00
|
|
|
is_visible = gdk_surface_is_visible (surface);
|
2016-11-25 13:24:52 +00:00
|
|
|
|
|
|
|
if (is_xdg_popup && is_visible && !impl->initial_configure_received)
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_hide (surface);
|
2016-11-25 13:24:52 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_configure (surface, width, height, scale);
|
2016-11-25 13:24:52 +00:00
|
|
|
|
|
|
|
if (is_xdg_popup && is_visible && !impl->initial_configure_received)
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_show (surface);
|
2016-04-04 12:55:38 +00:00
|
|
|
}
|
|
|
|
|
2011-02-11 22:20:14 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_parent (GdkSurface *surface,
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkSurface *parent)
|
2011-02-11 22:20:14 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl_parent = NULL;
|
2012-07-11 18:18:37 +00:00
|
|
|
|
2016-04-26 03:46:25 +00:00
|
|
|
g_assert (parent == NULL ||
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_get_display (surface) == gdk_surface_get_display (parent));
|
2016-04-26 03:46:25 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_toplevel (surface))
|
2013-11-11 23:02:19 +00:00
|
|
|
return;
|
2013-02-07 11:27:25 +00:00
|
|
|
|
2013-11-19 17:36:12 +00:00
|
|
|
if (impl->transient_for)
|
2018-03-20 10:40:08 +00:00
|
|
|
impl_parent = GDK_SURFACE_IMPL_WAYLAND (impl->transient_for->impl);
|
2015-12-08 15:33:45 +00:00
|
|
|
else if (parent)
|
2018-03-20 10:40:08 +00:00
|
|
|
impl_parent = GDK_SURFACE_IMPL_WAYLAND (parent->impl);
|
2013-11-19 17:36:12 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
/* XXX: Is this correct? */
|
|
|
|
if (impl_parent && !impl_parent->display_server.wl_surface)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (display_wayland->shell_variant)
|
2015-12-08 15:33:45 +00:00
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
{
|
|
|
|
struct xdg_toplevel *parent_toplevel;
|
2013-11-19 17:36:12 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (impl_parent)
|
|
|
|
parent_toplevel = impl_parent->display_server.xdg_toplevel;
|
|
|
|
else
|
|
|
|
parent_toplevel = NULL;
|
2013-02-07 11:27:25 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
xdg_toplevel_set_parent (impl->display_server.xdg_toplevel,
|
|
|
|
parent_toplevel);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
{
|
|
|
|
struct zxdg_toplevel_v6 *parent_toplevel;
|
|
|
|
|
|
|
|
if (impl_parent)
|
|
|
|
parent_toplevel = impl_parent->display_server.zxdg_toplevel_v6;
|
|
|
|
else
|
|
|
|
parent_toplevel = NULL;
|
|
|
|
|
|
|
|
zxdg_toplevel_v6_set_parent (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
parent_toplevel);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2011-02-11 22:20:14 +00:00
|
|
|
}
|
|
|
|
|
2017-12-01 04:18:30 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_parent_of_imported (GdkSurface *surface)
|
2017-12-01 04:18:30 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-01 04:18:30 +00:00
|
|
|
|
|
|
|
if (!impl->display_server.wl_surface)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!impl->imported_transient_for)
|
|
|
|
return;
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_toplevel (surface))
|
2017-12-01 04:18:30 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
zxdg_imported_v1_set_parent_of (impl->imported_transient_for,
|
|
|
|
impl->display_server.wl_surface);
|
|
|
|
}
|
|
|
|
|
2015-12-08 15:33:45 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_update_dialogs (GdkSurface *surface)
|
2015-12-08 15:33:45 +00:00
|
|
|
{
|
2016-04-26 03:46:25 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2015-12-08 15:33:45 +00:00
|
|
|
GList *l;
|
|
|
|
|
2016-04-26 03:46:25 +00:00
|
|
|
if (!display_wayland->orphan_dialogs)
|
2015-12-08 15:33:45 +00:00
|
|
|
return;
|
|
|
|
|
2016-04-26 03:46:25 +00:00
|
|
|
for (l = display_wayland->orphan_dialogs; l; l = l->next)
|
2015-12-08 15:33:45 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *w = l->data;
|
|
|
|
GdkSurfaceImplWayland *impl;
|
2016-02-29 09:14:56 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!GDK_IS_SURFACE_IMPL_WAYLAND(w->impl))
|
2016-02-29 09:14:56 +00:00
|
|
|
continue;
|
2015-12-08 15:33:45 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (w->impl);
|
2018-03-20 14:14:10 +00:00
|
|
|
if (w == surface)
|
2015-12-08 15:33:45 +00:00
|
|
|
continue;
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->hint != GDK_SURFACE_TYPE_HINT_DIALOG)
|
2015-12-08 15:33:45 +00:00
|
|
|
continue;
|
|
|
|
if (impl->transient_for)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Update the parent relationship only for dialogs without transients */
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_parent (w, surface);
|
2015-12-08 15:33:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-21 17:03:18 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_title (GdkSurface *surface)
|
2013-11-21 17:03:18 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2013-11-21 17:03:18 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_toplevel (surface))
|
2013-11-21 17:03:18 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!impl->title)
|
|
|
|
return;
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_set_title (impl->display_server.xdg_toplevel,
|
|
|
|
impl->title);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_set_title (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
impl->title);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2013-11-21 17:03:18 +00:00
|
|
|
}
|
|
|
|
|
2016-07-01 09:02:11 +00:00
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_get_window_geometry (GdkSurface *surface,
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkRectangle *geometry)
|
2016-07-01 09:02:11 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-07-01 09:02:11 +00:00
|
|
|
|
|
|
|
*geometry = (GdkRectangle) {
|
|
|
|
.x = impl->margin_left,
|
|
|
|
.y = impl->margin_top,
|
2018-03-20 14:14:10 +00:00
|
|
|
.width = surface->width - (impl->margin_left + impl->margin_right),
|
|
|
|
.height = surface->height - (impl->margin_top + impl->margin_bottom)
|
2016-07-01 09:02:11 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-02-27 21:54:20 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_margin (GdkSurface *surface)
|
2014-02-27 21:54:20 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2016-07-01 09:02:11 +00:00
|
|
|
GdkRectangle geometry;
|
2014-02-27 21:54:20 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_shell_surface (surface))
|
2014-02-27 21:54:20 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_window_geometry (surface, &geometry);
|
|
|
|
gdk_surface_set_geometry_hints (surface,
|
2016-04-05 16:17:40 +00:00
|
|
|
&impl->geometry_hints,
|
|
|
|
impl->geometry_mask);
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_surface_set_window_geometry (impl->display_server.xdg_surface,
|
2016-07-01 09:03:36 +00:00
|
|
|
geometry.x,
|
|
|
|
geometry.y,
|
|
|
|
geometry.width,
|
|
|
|
geometry.height);
|
2017-12-18 12:00:36 +00:00
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_surface_v6_set_window_geometry (impl->display_server.zxdg_surface_v6,
|
|
|
|
geometry.x,
|
|
|
|
geometry.y,
|
|
|
|
geometry.width,
|
|
|
|
geometry.height);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2014-02-27 21:54:20 +00:00
|
|
|
}
|
|
|
|
|
2014-03-17 20:08:35 +00:00
|
|
|
static struct wl_region *
|
|
|
|
wl_region_from_cairo_region (GdkWaylandDisplay *display,
|
|
|
|
cairo_region_t *region)
|
|
|
|
{
|
|
|
|
struct wl_region *wl_region;
|
|
|
|
int i, n_rects;
|
|
|
|
|
|
|
|
wl_region = wl_compositor_create_region (display->compositor);
|
|
|
|
if (wl_region == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
n_rects = cairo_region_num_rectangles (region);
|
|
|
|
for (i = 0; i < n_rects; i++)
|
|
|
|
{
|
|
|
|
cairo_rectangle_int_t rect;
|
|
|
|
cairo_region_get_rectangle (region, i, &rect);
|
|
|
|
wl_region_add (wl_region, rect.x, rect.y, rect.width, rect.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
return wl_region;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_opaque_region (GdkSurface *surface)
|
2014-03-17 20:08:35 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2014-03-17 20:08:35 +00:00
|
|
|
struct wl_region *wl_region = NULL;
|
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (!impl->display_server.wl_surface)
|
2014-03-17 20:08:35 +00:00
|
|
|
return;
|
|
|
|
|
2016-07-01 08:48:16 +00:00
|
|
|
if (!impl->opaque_region_dirty)
|
|
|
|
return;
|
|
|
|
|
2014-03-17 20:08:35 +00:00
|
|
|
if (impl->opaque_region != NULL)
|
2018-03-20 14:14:10 +00:00
|
|
|
wl_region = wl_region_from_cairo_region (GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface)),
|
2014-03-17 20:08:35 +00:00
|
|
|
impl->opaque_region);
|
|
|
|
|
2017-08-23 14:40:12 +00:00
|
|
|
wl_surface_set_opaque_region (impl->display_server.wl_surface, wl_region);
|
2014-03-17 20:08:35 +00:00
|
|
|
|
|
|
|
if (wl_region != NULL)
|
|
|
|
wl_region_destroy (wl_region);
|
2016-07-01 08:48:16 +00:00
|
|
|
|
|
|
|
impl->opaque_region_dirty = FALSE;
|
2014-03-17 20:08:35 +00:00
|
|
|
}
|
|
|
|
|
2014-03-17 20:02:47 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_input_region (GdkSurface *surface)
|
2014-03-17 20:02:47 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2014-03-17 20:02:47 +00:00
|
|
|
struct wl_region *wl_region = NULL;
|
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (!impl->display_server.wl_surface)
|
2014-03-17 20:02:47 +00:00
|
|
|
return;
|
|
|
|
|
2016-07-01 08:48:16 +00:00
|
|
|
if (!impl->input_region_dirty)
|
|
|
|
return;
|
|
|
|
|
2014-03-17 20:02:47 +00:00
|
|
|
if (impl->input_region != NULL)
|
2018-03-20 14:14:10 +00:00
|
|
|
wl_region = wl_region_from_cairo_region (GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface)),
|
2014-03-17 20:02:47 +00:00
|
|
|
impl->input_region);
|
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
wl_surface_set_input_region (impl->display_server.wl_surface, wl_region);
|
2014-03-17 20:02:47 +00:00
|
|
|
|
|
|
|
if (wl_region != NULL)
|
|
|
|
wl_region_destroy (wl_region);
|
2016-07-01 08:48:16 +00:00
|
|
|
|
|
|
|
impl->input_region_dirty = FALSE;
|
2014-03-17 20:02:47 +00:00
|
|
|
}
|
|
|
|
|
2013-04-25 15:19:31 +00:00
|
|
|
static void
|
2013-09-16 21:23:29 +00:00
|
|
|
surface_enter (void *data,
|
2013-04-25 15:19:31 +00:00
|
|
|
struct wl_surface *wl_surface,
|
2013-09-16 21:23:29 +00:00
|
|
|
struct wl_output *output)
|
2013-04-25 15:19:31 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-04-25 15:19:31 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_DISPLAY_NOTE (gdk_surface_get_display (surface), EVENTS,
|
|
|
|
g_message ("surface enter, surface %p output %p", surface, output));
|
2015-02-28 05:15:13 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
impl->display_server.outputs = g_slist_prepend (impl->display_server.outputs, output);
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_update_scale (surface);
|
2013-04-25 15:19:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-09-16 21:23:29 +00:00
|
|
|
surface_leave (void *data,
|
2013-04-25 15:19:31 +00:00
|
|
|
struct wl_surface *wl_surface,
|
2013-09-16 21:23:29 +00:00
|
|
|
struct wl_output *output)
|
2013-04-25 15:19:31 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-04-25 15:19:31 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_DISPLAY_NOTE (gdk_surface_get_display (surface), EVENTS,
|
|
|
|
g_message ("surface leave, surface %p output %p", surface, output));
|
2015-02-28 05:15:13 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
impl->display_server.outputs = g_slist_remove (impl->display_server.outputs, output);
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2016-11-15 14:07:39 +00:00
|
|
|
if (impl->display_server.outputs)
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_update_scale (surface);
|
2013-04-25 15:19:31 +00:00
|
|
|
}
|
|
|
|
|
2013-11-11 23:02:19 +00:00
|
|
|
static const struct wl_surface_listener surface_listener = {
|
|
|
|
surface_enter,
|
|
|
|
surface_leave
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_create_surface (GdkSurface *surface)
|
2013-11-11 23:02:19 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
|
|
|
GdkWaylandDisplay *display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2013-11-11 23:02:19 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
impl->display_server.wl_surface = wl_compositor_create_surface (display_wayland->compositor);
|
2018-03-20 14:14:10 +00:00
|
|
|
wl_surface_add_listener (impl->display_server.wl_surface, &surface_listener, surface);
|
2013-11-11 23:02:19 +00:00
|
|
|
}
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2013-11-11 23:02:19 +00:00
|
|
|
static void
|
2017-12-18 12:00:36 +00:00
|
|
|
gdk_wayland_surface_handle_configure (GdkSurface *surface,
|
|
|
|
uint32_t serial)
|
2011-12-05 15:55:37 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceState new_state;
|
2016-07-01 09:03:36 +00:00
|
|
|
int width = impl->pending.width;
|
|
|
|
int height = impl->pending.height;
|
2016-06-06 08:48:36 +00:00
|
|
|
gboolean fixed_size;
|
2017-06-21 13:02:05 +00:00
|
|
|
gboolean saved_size;
|
2011-12-05 15:55:37 +00:00
|
|
|
|
2016-07-01 09:03:36 +00:00
|
|
|
if (!impl->initial_configure_received)
|
2014-04-12 00:31:27 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_thaw_updates (surface);
|
2016-07-01 09:03:36 +00:00
|
|
|
impl->initial_configure_received = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (impl->display_server.xdg_popup)
|
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
xdg_surface_ack_configure (impl->display_server.xdg_surface, serial);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (impl->display_server.zxdg_popup_v6)
|
|
|
|
{
|
|
|
|
zxdg_surface_v6_ack_configure (impl->display_server.zxdg_surface_v6,
|
|
|
|
serial);
|
2016-07-01 09:03:36 +00:00
|
|
|
return;
|
2014-04-12 00:31:27 +00:00
|
|
|
}
|
2014-02-06 19:28:51 +00:00
|
|
|
|
2016-07-01 09:03:36 +00:00
|
|
|
new_state = impl->pending.state;
|
2016-06-28 07:01:22 +00:00
|
|
|
impl->pending.state = 0;
|
|
|
|
|
2016-06-28 07:01:04 +00:00
|
|
|
fixed_size =
|
2017-12-18 12:10:47 +00:00
|
|
|
new_state & (GDK_SURFACE_STATE_MAXIMIZED |
|
|
|
|
GDK_SURFACE_STATE_FULLSCREEN |
|
|
|
|
GDK_SURFACE_STATE_TILED);
|
2016-06-28 07:01:04 +00:00
|
|
|
|
2017-06-21 13:02:05 +00:00
|
|
|
saved_size = (width == 0 && height == 0);
|
2016-06-28 07:01:04 +00:00
|
|
|
/* According to xdg_shell, an xdg_surface.configure with size 0x0
|
|
|
|
* should be interpreted as that it is up to the client to set a
|
|
|
|
* size.
|
|
|
|
*
|
|
|
|
* When transitioning from maximize or fullscreen state, this means
|
|
|
|
* the client should configure its size back to what it was before
|
|
|
|
* being maximize or fullscreen.
|
|
|
|
*/
|
2017-06-21 13:02:05 +00:00
|
|
|
if (saved_size && !fixed_size)
|
2016-02-26 12:35:35 +00:00
|
|
|
{
|
|
|
|
width = impl->saved_width;
|
|
|
|
height = impl->saved_height;
|
|
|
|
}
|
|
|
|
|
2016-06-28 07:01:04 +00:00
|
|
|
if (width > 0 && height > 0)
|
2015-06-23 09:54:48 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceHints geometry_mask = impl->geometry_mask;
|
2015-06-23 09:54:48 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
/* Ignore size increments for maximized/fullscreen surfaces */
|
2016-06-06 08:48:36 +00:00
|
|
|
if (fixed_size)
|
2015-06-23 09:54:48 +00:00
|
|
|
geometry_mask &= ~GDK_HINT_RESIZE_INC;
|
2017-06-21 13:02:05 +00:00
|
|
|
if (!saved_size)
|
|
|
|
{
|
|
|
|
/* Do not reapply contrains if we are restoring original size */
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_constrain_size (&impl->geometry_hints,
|
2017-06-21 13:02:05 +00:00
|
|
|
geometry_mask,
|
|
|
|
width + impl->margin_left + impl->margin_right,
|
|
|
|
height + impl->margin_top + impl->margin_bottom,
|
|
|
|
&width,
|
|
|
|
&height);
|
|
|
|
|
|
|
|
/* Save size for next time we get 0x0 */
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_surface_save_size (surface);
|
2017-06-21 13:02:05 +00:00
|
|
|
}
|
2016-02-26 12:35:35 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_configure (surface, width, height, impl->scale);
|
2015-06-23 09:54:48 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_DISPLAY_NOTE (gdk_surface_get_display (surface), EVENTS,
|
|
|
|
g_message ("configure, surface %p %dx%d,%s%s%s%s",
|
|
|
|
surface, width, height,
|
2018-03-20 10:40:08 +00:00
|
|
|
(new_state & GDK_SURFACE_STATE_FULLSCREEN) ? " fullscreen" : "",
|
|
|
|
(new_state & GDK_SURFACE_STATE_MAXIMIZED) ? " maximized" : "",
|
|
|
|
(new_state & GDK_SURFACE_STATE_FOCUSED) ? " focused" : "",
|
|
|
|
(new_state & GDK_SURFACE_STATE_TILED) ? " tiled" : ""));
|
2015-02-28 05:15:13 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_set_state (surface, new_state);
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_surface_ack_configure (impl->display_server.xdg_surface, serial);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_surface_v6_ack_configure (impl->display_server.zxdg_surface_v6,
|
|
|
|
serial);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->hint != GDK_SURFACE_TYPE_HINT_DIALOG &&
|
|
|
|
new_state & GDK_SURFACE_STATE_FOCUSED)
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_update_dialogs (surface);
|
2014-02-06 19:28:51 +00:00
|
|
|
}
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
static void
|
|
|
|
gdk_wayland_surface_handle_configure_toplevel (GdkSurface *surface,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height,
|
|
|
|
GdkSurfaceState state)
|
|
|
|
{
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
|
|
|
|
|
|
|
impl->pending.state |= state;
|
|
|
|
impl->pending.width = width;
|
|
|
|
impl->pending.height = height;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_wayland_surface_handle_close (GdkSurface *surface)
|
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
GdkEvent *event;
|
|
|
|
|
|
|
|
display = gdk_surface_get_display (surface);
|
|
|
|
|
|
|
|
GDK_DISPLAY_NOTE (display, EVENTS, g_message ("close %p", surface));
|
|
|
|
|
|
|
|
event = gdk_event_new (GDK_DELETE);
|
|
|
|
event->any.surface = g_object_ref (surface);
|
|
|
|
event->any.send_event = TRUE;
|
|
|
|
|
|
|
|
_gdk_wayland_display_deliver_event (display, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
xdg_surface_configure (void *data,
|
|
|
|
struct xdg_surface *xdg_surface,
|
|
|
|
uint32_t serial)
|
|
|
|
{
|
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
|
|
|
|
gdk_wayland_surface_handle_configure (surface, serial);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct xdg_surface_listener xdg_surface_listener = {
|
2016-07-01 09:03:36 +00:00
|
|
|
xdg_surface_configure,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:00:36 +00:00
|
|
|
xdg_toplevel_configure (void *data,
|
|
|
|
struct xdg_toplevel *xdg_toplevel,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height,
|
|
|
|
struct wl_array *states)
|
|
|
|
{
|
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
uint32_t *p;
|
|
|
|
GdkSurfaceState pending_state = 0;
|
|
|
|
|
|
|
|
wl_array_for_each (p, states)
|
|
|
|
{
|
|
|
|
uint32_t state = *p;
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case XDG_TOPLEVEL_STATE_FULLSCREEN:
|
|
|
|
pending_state |= GDK_SURFACE_STATE_FULLSCREEN;
|
|
|
|
break;
|
|
|
|
case XDG_TOPLEVEL_STATE_MAXIMIZED:
|
|
|
|
pending_state |= GDK_SURFACE_STATE_MAXIMIZED;
|
|
|
|
break;
|
|
|
|
case XDG_TOPLEVEL_STATE_ACTIVATED:
|
|
|
|
pending_state |= GDK_SURFACE_STATE_FOCUSED;
|
|
|
|
break;
|
|
|
|
case XDG_TOPLEVEL_STATE_RESIZING:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Unknown state */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_wayland_surface_handle_configure_toplevel (surface, width, height,
|
|
|
|
pending_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
xdg_toplevel_close (void *data,
|
|
|
|
struct xdg_toplevel *xdg_toplevel)
|
2016-07-01 09:03:36 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
gdk_wayland_surface_handle_close (surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct xdg_toplevel_listener xdg_toplevel_listener = {
|
|
|
|
xdg_toplevel_configure,
|
|
|
|
xdg_toplevel_close,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
create_xdg_toplevel_resources (GdkSurface *surface)
|
|
|
|
{
|
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
impl->display_server.xdg_surface =
|
|
|
|
xdg_wm_base_get_xdg_surface (display_wayland->xdg_wm_base,
|
|
|
|
impl->display_server.wl_surface);
|
|
|
|
xdg_surface_add_listener (impl->display_server.xdg_surface,
|
|
|
|
&xdg_surface_listener,
|
|
|
|
surface);
|
|
|
|
|
|
|
|
impl->display_server.xdg_toplevel =
|
|
|
|
xdg_surface_get_toplevel (impl->display_server.xdg_surface);
|
|
|
|
xdg_toplevel_add_listener (impl->display_server.xdg_toplevel,
|
|
|
|
&xdg_toplevel_listener,
|
|
|
|
surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
zxdg_surface_v6_configure (void *data,
|
|
|
|
struct zxdg_surface_v6 *xdg_surface,
|
|
|
|
uint32_t serial)
|
|
|
|
{
|
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
|
|
|
|
gdk_wayland_surface_handle_configure (surface, serial);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct zxdg_surface_v6_listener zxdg_surface_v6_listener = {
|
|
|
|
zxdg_surface_v6_configure,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
zxdg_toplevel_v6_configure (void *data,
|
|
|
|
struct zxdg_toplevel_v6 *xdg_toplevel,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height,
|
|
|
|
struct wl_array *states)
|
|
|
|
{
|
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
2016-07-01 09:03:36 +00:00
|
|
|
uint32_t *p;
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkSurfaceState pending_state = 0;
|
2016-07-01 09:03:36 +00:00
|
|
|
|
|
|
|
wl_array_for_each (p, states)
|
|
|
|
{
|
|
|
|
uint32_t state = *p;
|
2017-12-18 12:00:36 +00:00
|
|
|
|
2016-07-01 09:03:36 +00:00
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case ZXDG_TOPLEVEL_V6_STATE_FULLSCREEN:
|
2017-12-18 12:00:36 +00:00
|
|
|
pending_state |= GDK_SURFACE_STATE_FULLSCREEN;
|
2016-07-01 09:03:36 +00:00
|
|
|
break;
|
|
|
|
case ZXDG_TOPLEVEL_V6_STATE_MAXIMIZED:
|
2017-12-18 12:00:36 +00:00
|
|
|
pending_state |= GDK_SURFACE_STATE_MAXIMIZED;
|
2016-07-01 09:03:36 +00:00
|
|
|
break;
|
|
|
|
case ZXDG_TOPLEVEL_V6_STATE_ACTIVATED:
|
2017-12-18 12:00:36 +00:00
|
|
|
pending_state |= GDK_SURFACE_STATE_FOCUSED;
|
2016-07-01 09:03:36 +00:00
|
|
|
break;
|
|
|
|
case ZXDG_TOPLEVEL_V6_STATE_RESIZING:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Unknown state */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
gdk_wayland_surface_handle_configure_toplevel (surface, width, height,
|
|
|
|
pending_state);
|
2016-07-01 09:03:36 +00:00
|
|
|
}
|
|
|
|
|
2014-02-07 22:16:40 +00:00
|
|
|
static void
|
2017-12-18 12:00:36 +00:00
|
|
|
zxdg_toplevel_v6_close (void *data,
|
|
|
|
struct zxdg_toplevel_v6 *xdg_toplevel)
|
2014-02-07 22:16:40 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
2014-02-07 22:16:40 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
gdk_wayland_surface_handle_close (surface);
|
|
|
|
}
|
2018-01-12 00:48:27 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
static const struct zxdg_toplevel_v6_listener zxdg_toplevel_v6_listener = {
|
|
|
|
zxdg_toplevel_v6_configure,
|
|
|
|
zxdg_toplevel_v6_close,
|
|
|
|
};
|
2015-02-28 05:15:13 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
static void
|
|
|
|
create_zxdg_toplevel_v6_resources (GdkSurface *surface)
|
|
|
|
{
|
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2014-02-07 22:16:40 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
impl->display_server.zxdg_surface_v6 =
|
|
|
|
zxdg_shell_v6_get_xdg_surface (display_wayland->zxdg_shell_v6,
|
|
|
|
impl->display_server.wl_surface);
|
|
|
|
zxdg_surface_v6_add_listener (impl->display_server.zxdg_surface_v6,
|
|
|
|
&zxdg_surface_v6_listener,
|
|
|
|
surface);
|
2014-02-07 22:16:40 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
impl->display_server.zxdg_toplevel_v6 =
|
|
|
|
zxdg_surface_v6_get_toplevel (impl->display_server.zxdg_surface_v6);
|
|
|
|
zxdg_toplevel_v6_add_listener (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
&zxdg_toplevel_v6_listener,
|
|
|
|
surface);
|
|
|
|
}
|
2013-11-11 23:02:19 +00:00
|
|
|
|
2012-07-11 13:15:04 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_create_xdg_toplevel (GdkSurface *surface)
|
2012-07-11 13:15:04 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkWaylandDisplay *display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2015-03-23 05:08:09 +00:00
|
|
|
const gchar *app_id;
|
2013-11-11 23:02:19 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_freeze_updates (surface);
|
2016-07-01 09:03:36 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
create_xdg_toplevel_resources (surface);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
create_zxdg_toplevel_v6_resources (surface);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2013-11-21 17:03:18 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_parent (surface, NULL);
|
|
|
|
gdk_wayland_surface_sync_parent_of_imported (surface);
|
|
|
|
gdk_wayland_surface_sync_title (surface);
|
2015-02-27 23:18:00 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
if (surface->state & GDK_SURFACE_STATE_MAXIMIZED)
|
|
|
|
xdg_toplevel_set_maximized (impl->display_server.xdg_toplevel);
|
|
|
|
if (surface->state & GDK_SURFACE_STATE_FULLSCREEN)
|
|
|
|
xdg_toplevel_set_fullscreen (impl->display_server.xdg_toplevel,
|
2017-11-01 15:52:56 +00:00
|
|
|
impl->initial_fullscreen_output);
|
2017-12-18 12:00:36 +00:00
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
if (surface->state & GDK_SURFACE_STATE_MAXIMIZED)
|
|
|
|
zxdg_toplevel_v6_set_maximized (impl->display_server.zxdg_toplevel_v6);
|
|
|
|
if (surface->state & GDK_SURFACE_STATE_FULLSCREEN)
|
|
|
|
zxdg_toplevel_v6_set_fullscreen (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
impl->initial_fullscreen_output);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2017-11-01 15:52:56 +00:00
|
|
|
|
|
|
|
impl->initial_fullscreen_output = NULL;
|
2015-02-27 23:18:00 +00:00
|
|
|
|
2018-08-02 09:03:41 +00:00
|
|
|
app_id = impl->application.application_id;
|
|
|
|
if (app_id == NULL)
|
|
|
|
app_id = g_get_prgname ();
|
2015-03-23 05:08:09 +00:00
|
|
|
|
2017-11-17 19:07:18 +00:00
|
|
|
if (app_id == NULL)
|
|
|
|
app_id = "GTK+ Application";
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_set_app_id (impl->display_server.xdg_toplevel,
|
|
|
|
app_id);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_set_app_id (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
app_id);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2015-03-23 05:08:09 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
maybe_set_gtk_surface_dbus_properties (surface);
|
|
|
|
maybe_set_gtk_surface_modal (surface);
|
2015-12-08 15:33:45 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->hint == GDK_SURFACE_TYPE_HINT_DIALOG)
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_screen_add_orphan_dialog (surface);
|
2016-07-01 09:03:36 +00:00
|
|
|
|
|
|
|
wl_surface_commit (impl->display_server.wl_surface);
|
2013-11-11 23:02:19 +00:00
|
|
|
}
|
2012-07-11 16:09:23 +00:00
|
|
|
|
2016-09-12 06:53:51 +00:00
|
|
|
static void
|
2017-12-18 12:00:36 +00:00
|
|
|
gdk_wayland_surface_handle_configure_popup (GdkSurface *surface,
|
|
|
|
int32_t x,
|
|
|
|
int32_t y,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height)
|
2016-09-12 06:53:51 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-09-12 06:53:51 +00:00
|
|
|
GdkRectangle flipped_rect;
|
|
|
|
GdkRectangle final_rect;
|
|
|
|
gboolean flipped_x;
|
|
|
|
gboolean flipped_y;
|
|
|
|
|
|
|
|
g_return_if_fail (impl->transient_for);
|
|
|
|
|
2016-09-16 07:42:37 +00:00
|
|
|
if (impl->position_method != POSITION_METHOD_MOVE_TO_RECT)
|
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
calculate_moved_to_rect_result (surface, x, y, width, height,
|
2016-09-12 06:53:51 +00:00
|
|
|
&flipped_rect,
|
|
|
|
&final_rect,
|
|
|
|
&flipped_x,
|
|
|
|
&flipped_y);
|
|
|
|
|
2018-08-19 01:16:51 +00:00
|
|
|
impl->position_method = POSITION_METHOD_MOVE_TO_RECT;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_signal_emit_by_name (surface,
|
2016-09-12 06:53:51 +00:00
|
|
|
"moved-to-rect",
|
|
|
|
&flipped_rect,
|
|
|
|
&final_rect,
|
|
|
|
flipped_x,
|
|
|
|
flipped_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:00:36 +00:00
|
|
|
xdg_popup_configure (void *data,
|
|
|
|
struct xdg_popup *xdg_popup,
|
|
|
|
int32_t x,
|
|
|
|
int32_t y,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height)
|
|
|
|
{
|
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
|
|
|
|
gdk_wayland_surface_handle_configure_popup (surface, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
xdg_popup_done (void *data,
|
|
|
|
struct xdg_popup *xdg_popup)
|
2016-09-12 06:53:51 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
2016-09-12 06:53:51 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_DISPLAY_NOTE (gdk_surface_get_display (surface), EVENTS, g_message ("done %p", surface));
|
2016-09-12 06:53:51 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_hide (surface);
|
2016-09-12 06:53:51 +00:00
|
|
|
}
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
static const struct xdg_popup_listener xdg_popup_listener = {
|
2016-09-12 06:53:51 +00:00
|
|
|
xdg_popup_configure,
|
|
|
|
xdg_popup_done,
|
|
|
|
};
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
static void
|
|
|
|
zxdg_popup_v6_configure (void *data,
|
|
|
|
struct zxdg_popup_v6 *xdg_popup,
|
|
|
|
int32_t x,
|
|
|
|
int32_t y,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height)
|
|
|
|
{
|
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
|
|
|
|
gdk_wayland_surface_handle_configure_popup (surface, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
zxdg_popup_v6_done (void *data,
|
|
|
|
struct zxdg_popup_v6 *xdg_popup)
|
|
|
|
{
|
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
|
|
|
|
GDK_NOTE (EVENTS,
|
|
|
|
g_message ("done %p", surface));
|
|
|
|
|
|
|
|
gdk_surface_hide (surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct zxdg_popup_v6_listener zxdg_popup_v6_listener = {
|
|
|
|
zxdg_popup_v6_configure,
|
|
|
|
zxdg_popup_v6_done,
|
|
|
|
};
|
|
|
|
|
|
|
|
static enum xdg_positioner_anchor
|
2016-09-12 06:53:51 +00:00
|
|
|
rect_anchor_to_anchor (GdkGravity rect_anchor)
|
2017-12-18 12:00:36 +00:00
|
|
|
{
|
|
|
|
switch (rect_anchor)
|
|
|
|
{
|
|
|
|
case GDK_GRAVITY_NORTH_WEST:
|
|
|
|
case GDK_GRAVITY_STATIC:
|
|
|
|
return XDG_POSITIONER_ANCHOR_TOP_LEFT;
|
|
|
|
case GDK_GRAVITY_NORTH:
|
|
|
|
return XDG_POSITIONER_ANCHOR_TOP;
|
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
|
|
|
return XDG_POSITIONER_ANCHOR_TOP_RIGHT;
|
|
|
|
case GDK_GRAVITY_WEST:
|
|
|
|
return XDG_POSITIONER_ANCHOR_LEFT;
|
|
|
|
case GDK_GRAVITY_CENTER:
|
|
|
|
return XDG_POSITIONER_ANCHOR_NONE;
|
|
|
|
case GDK_GRAVITY_EAST:
|
|
|
|
return XDG_POSITIONER_ANCHOR_RIGHT;
|
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
|
|
|
return XDG_POSITIONER_ANCHOR_BOTTOM_LEFT;
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
|
|
|
return XDG_POSITIONER_ANCHOR_BOTTOM;
|
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
|
|
|
return XDG_POSITIONER_ANCHOR_BOTTOM_RIGHT;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static enum xdg_positioner_gravity
|
|
|
|
surface_anchor_to_gravity (GdkGravity rect_anchor)
|
|
|
|
{
|
|
|
|
switch (rect_anchor)
|
|
|
|
{
|
|
|
|
case GDK_GRAVITY_NORTH_WEST:
|
|
|
|
case GDK_GRAVITY_STATIC:
|
|
|
|
return XDG_POSITIONER_GRAVITY_BOTTOM_RIGHT;
|
|
|
|
case GDK_GRAVITY_NORTH:
|
|
|
|
return XDG_POSITIONER_GRAVITY_BOTTOM;
|
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
|
|
|
return XDG_POSITIONER_GRAVITY_BOTTOM_LEFT;
|
|
|
|
case GDK_GRAVITY_WEST:
|
|
|
|
return XDG_POSITIONER_GRAVITY_RIGHT;
|
|
|
|
case GDK_GRAVITY_CENTER:
|
|
|
|
return XDG_POSITIONER_GRAVITY_NONE;
|
|
|
|
case GDK_GRAVITY_EAST:
|
|
|
|
return XDG_POSITIONER_GRAVITY_LEFT;
|
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
|
|
|
return XDG_POSITIONER_GRAVITY_TOP_RIGHT;
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
|
|
|
return XDG_POSITIONER_GRAVITY_TOP;
|
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
|
|
|
return XDG_POSITIONER_GRAVITY_TOP_LEFT;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static enum zxdg_positioner_v6_anchor
|
|
|
|
rect_anchor_to_anchor_legacy (GdkGravity rect_anchor)
|
2016-09-12 06:53:51 +00:00
|
|
|
{
|
|
|
|
switch (rect_anchor)
|
|
|
|
{
|
|
|
|
case GDK_GRAVITY_NORTH_WEST:
|
|
|
|
case GDK_GRAVITY_STATIC:
|
|
|
|
return (ZXDG_POSITIONER_V6_ANCHOR_TOP |
|
|
|
|
ZXDG_POSITIONER_V6_ANCHOR_LEFT);
|
|
|
|
case GDK_GRAVITY_NORTH:
|
|
|
|
return ZXDG_POSITIONER_V6_ANCHOR_TOP;
|
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
|
|
|
return (ZXDG_POSITIONER_V6_ANCHOR_TOP |
|
|
|
|
ZXDG_POSITIONER_V6_ANCHOR_RIGHT);
|
|
|
|
case GDK_GRAVITY_WEST:
|
|
|
|
return ZXDG_POSITIONER_V6_ANCHOR_LEFT;
|
|
|
|
case GDK_GRAVITY_CENTER:
|
|
|
|
return ZXDG_POSITIONER_V6_ANCHOR_NONE;
|
|
|
|
case GDK_GRAVITY_EAST:
|
|
|
|
return ZXDG_POSITIONER_V6_ANCHOR_RIGHT;
|
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
|
|
|
return (ZXDG_POSITIONER_V6_ANCHOR_BOTTOM |
|
|
|
|
ZXDG_POSITIONER_V6_ANCHOR_LEFT);
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
|
|
|
return ZXDG_POSITIONER_V6_ANCHOR_BOTTOM;
|
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
|
|
|
return (ZXDG_POSITIONER_V6_ANCHOR_BOTTOM |
|
|
|
|
ZXDG_POSITIONER_V6_ANCHOR_RIGHT);
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2017-10-24 15:58:06 +00:00
|
|
|
|
|
|
|
return (ZXDG_POSITIONER_V6_ANCHOR_TOP |
|
|
|
|
ZXDG_POSITIONER_V6_ANCHOR_LEFT);
|
2016-09-12 06:53:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static enum zxdg_positioner_v6_gravity
|
2017-12-18 12:00:36 +00:00
|
|
|
surface_anchor_to_gravity_legacy (GdkGravity rect_anchor)
|
2016-09-12 06:53:51 +00:00
|
|
|
{
|
|
|
|
switch (rect_anchor)
|
|
|
|
{
|
|
|
|
case GDK_GRAVITY_NORTH_WEST:
|
|
|
|
case GDK_GRAVITY_STATIC:
|
2017-03-20 13:36:29 +00:00
|
|
|
return (ZXDG_POSITIONER_V6_GRAVITY_BOTTOM |
|
|
|
|
ZXDG_POSITIONER_V6_GRAVITY_RIGHT);
|
2016-09-12 06:53:51 +00:00
|
|
|
case GDK_GRAVITY_NORTH:
|
2017-03-20 13:36:29 +00:00
|
|
|
return ZXDG_POSITIONER_V6_GRAVITY_BOTTOM;
|
2016-09-12 06:53:51 +00:00
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
2017-03-20 13:36:29 +00:00
|
|
|
return (ZXDG_POSITIONER_V6_GRAVITY_BOTTOM |
|
|
|
|
ZXDG_POSITIONER_V6_GRAVITY_LEFT);
|
2016-09-12 06:53:51 +00:00
|
|
|
case GDK_GRAVITY_WEST:
|
2017-03-20 13:36:29 +00:00
|
|
|
return ZXDG_POSITIONER_V6_GRAVITY_RIGHT;
|
2016-09-12 06:53:51 +00:00
|
|
|
case GDK_GRAVITY_CENTER:
|
2017-03-20 13:36:29 +00:00
|
|
|
return ZXDG_POSITIONER_V6_GRAVITY_NONE;
|
2016-09-12 06:53:51 +00:00
|
|
|
case GDK_GRAVITY_EAST:
|
2017-03-20 13:36:29 +00:00
|
|
|
return ZXDG_POSITIONER_V6_GRAVITY_LEFT;
|
2016-09-12 06:53:51 +00:00
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
2017-03-20 13:36:29 +00:00
|
|
|
return (ZXDG_POSITIONER_V6_GRAVITY_TOP |
|
|
|
|
ZXDG_POSITIONER_V6_GRAVITY_RIGHT);
|
2016-09-12 06:53:51 +00:00
|
|
|
case GDK_GRAVITY_SOUTH:
|
2017-03-20 13:36:29 +00:00
|
|
|
return ZXDG_POSITIONER_V6_GRAVITY_TOP;
|
2016-09-12 06:53:51 +00:00
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
2017-03-20 13:36:29 +00:00
|
|
|
return (ZXDG_POSITIONER_V6_GRAVITY_TOP |
|
|
|
|
ZXDG_POSITIONER_V6_GRAVITY_LEFT);
|
2016-09-12 06:53:51 +00:00
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2017-10-24 15:58:06 +00:00
|
|
|
|
|
|
|
return (ZXDG_POSITIONER_V6_GRAVITY_BOTTOM |
|
|
|
|
ZXDG_POSITIONER_V6_GRAVITY_RIGHT);
|
2016-09-12 06:53:51 +00:00
|
|
|
}
|
|
|
|
|
2017-04-29 00:35:51 +00:00
|
|
|
void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_announce_csd (GdkSurface *surface)
|
2017-04-29 00:35:51 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkWaylandDisplay *display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-04-29 00:35:51 +00:00
|
|
|
if (!display_wayland->server_decoration_manager)
|
|
|
|
return;
|
|
|
|
impl->display_server.server_decoration =
|
|
|
|
org_kde_kwin_server_decoration_manager_create (display_wayland->server_decoration_manager,
|
|
|
|
impl->display_server.wl_surface);
|
|
|
|
if (impl->display_server.server_decoration)
|
|
|
|
org_kde_kwin_server_decoration_request_mode (impl->display_server.server_decoration,
|
|
|
|
ORG_KDE_KWIN_SERVER_DECORATION_MANAGER_MODE_CLIENT);
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
static GdkSurface *
|
2018-03-20 14:14:10 +00:00
|
|
|
get_real_parent_and_translate (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gint *x,
|
|
|
|
gint *y)
|
2016-09-12 06:53:51 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *parent = impl->transient_for;
|
2016-09-12 10:24:14 +00:00
|
|
|
|
2017-01-05 08:01:49 +00:00
|
|
|
while (parent)
|
2016-09-12 06:53:51 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *effective_parent = gdk_surface_get_parent (parent);
|
2017-01-05 08:01:49 +00:00
|
|
|
|
2018-08-19 03:21:41 +00:00
|
|
|
if (gdk_surface_has_native (parent) && !effective_parent)
|
2017-01-05 08:01:49 +00:00
|
|
|
break;
|
|
|
|
|
2016-09-12 06:53:51 +00:00
|
|
|
*x += parent->x;
|
|
|
|
*y += parent->y;
|
2017-01-05 08:01:49 +00:00
|
|
|
|
2018-08-19 03:21:41 +00:00
|
|
|
parent = effective_parent;
|
2016-09-12 06:53:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
2016-09-12 10:39:06 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
translate_to_real_parent_surface_geometry (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gint *x,
|
|
|
|
gint *y)
|
2016-09-12 10:39:06 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *parent;
|
2016-09-12 10:39:06 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
parent = get_real_parent_and_translate (surface, x, y);
|
2016-09-12 10:39:06 +00:00
|
|
|
|
|
|
|
*x -= parent->shadow_left;
|
|
|
|
*y -= parent->shadow_top;
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
static GdkSurface *
|
2018-03-20 14:14:10 +00:00
|
|
|
translate_from_real_parent_surface_geometry (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gint *x,
|
|
|
|
gint *y)
|
2016-09-12 10:41:36 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *parent;
|
2016-09-12 10:41:36 +00:00
|
|
|
gint dx = 0;
|
|
|
|
gint dy = 0;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
parent = get_real_parent_and_translate (surface, &dx, &dy);
|
2016-09-12 10:41:36 +00:00
|
|
|
|
|
|
|
*x -= dx - parent->shadow_left;
|
|
|
|
*y -= dy - parent->shadow_top;
|
2016-09-12 10:46:44 +00:00
|
|
|
|
|
|
|
return parent;
|
2016-09-12 10:41:36 +00:00
|
|
|
}
|
|
|
|
|
2016-07-08 08:54:36 +00:00
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
calculate_popup_rect (GdkSurface *surface,
|
2016-07-08 08:54:36 +00:00
|
|
|
GdkGravity rect_anchor,
|
2018-03-20 11:05:26 +00:00
|
|
|
GdkGravity surface_anchor,
|
2016-07-08 08:54:36 +00:00
|
|
|
GdkRectangle *out_rect)
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-07-08 08:54:36 +00:00
|
|
|
GdkRectangle geometry;
|
2016-09-12 07:00:21 +00:00
|
|
|
GdkRectangle anchor_rect;
|
2016-07-08 08:54:36 +00:00
|
|
|
int x = 0, y = 0;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_window_geometry (surface, &geometry);
|
2016-07-08 08:54:36 +00:00
|
|
|
|
2016-09-12 07:00:21 +00:00
|
|
|
anchor_rect = (GdkRectangle) {
|
|
|
|
.x = (impl->pending_move_to_rect.rect.x +
|
|
|
|
impl->pending_move_to_rect.rect_anchor_dx),
|
|
|
|
.y = (impl->pending_move_to_rect.rect.y +
|
|
|
|
impl->pending_move_to_rect.rect_anchor_dy),
|
|
|
|
.width = impl->pending_move_to_rect.rect.width,
|
|
|
|
.height = impl->pending_move_to_rect.rect.height
|
|
|
|
};
|
2016-07-08 08:54:36 +00:00
|
|
|
|
|
|
|
switch (rect_anchor)
|
|
|
|
{
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
2016-07-08 08:54:36 +00:00
|
|
|
case GDK_GRAVITY_STATIC:
|
|
|
|
case GDK_GRAVITY_NORTH_WEST:
|
|
|
|
x = anchor_rect.x;
|
|
|
|
y = anchor_rect.y;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_NORTH:
|
|
|
|
x = anchor_rect.x + (anchor_rect.width / 2);
|
|
|
|
y = anchor_rect.y;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
|
|
|
x = anchor_rect.x + anchor_rect.width;
|
|
|
|
y = anchor_rect.y;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_WEST:
|
|
|
|
x = anchor_rect.x;
|
|
|
|
y = anchor_rect.y + (anchor_rect.height / 2);
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_CENTER:
|
|
|
|
x = anchor_rect.x + (anchor_rect.width / 2);
|
|
|
|
y = anchor_rect.y + (anchor_rect.height / 2);
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_EAST:
|
|
|
|
x = anchor_rect.x + anchor_rect.width;
|
|
|
|
y = anchor_rect.y + (anchor_rect.height / 2);
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
|
|
|
x = anchor_rect.x;
|
2016-09-12 07:01:24 +00:00
|
|
|
y = anchor_rect.y + anchor_rect.height;
|
2016-07-08 08:54:36 +00:00
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
|
|
|
x = anchor_rect.x + (anchor_rect.width / 2);
|
|
|
|
y = anchor_rect.y + anchor_rect.height;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
|
|
|
x = anchor_rect.x + anchor_rect.width;
|
|
|
|
y = anchor_rect.y + anchor_rect.height;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
switch (surface_anchor)
|
2016-07-08 08:54:36 +00:00
|
|
|
{
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
2016-07-08 08:54:36 +00:00
|
|
|
case GDK_GRAVITY_STATIC:
|
|
|
|
case GDK_GRAVITY_NORTH_WEST:
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_NORTH:
|
|
|
|
x -= geometry.width / 2;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
|
|
|
x -= geometry.width;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_WEST:
|
|
|
|
y -= geometry.height / 2;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_CENTER:
|
|
|
|
x -= geometry.width / 2;
|
|
|
|
y -= geometry.height / 2;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_EAST:
|
|
|
|
x -= geometry.width;
|
|
|
|
y -= geometry.height / 2;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
|
|
|
y -= geometry.height;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
|
|
|
x -= geometry.width / 2;
|
|
|
|
y -= geometry.height;
|
|
|
|
break;
|
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
|
|
|
x -= geometry.width;
|
|
|
|
y -= geometry.height;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out_rect = (GdkRectangle) {
|
|
|
|
.x = x,
|
|
|
|
.y = y,
|
|
|
|
.width = geometry.width,
|
|
|
|
.height = geometry.height
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkGravity
|
|
|
|
flip_anchor_horizontally (GdkGravity anchor)
|
|
|
|
{
|
|
|
|
switch (anchor)
|
|
|
|
{
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
2016-07-08 08:54:36 +00:00
|
|
|
case GDK_GRAVITY_STATIC:
|
|
|
|
case GDK_GRAVITY_NORTH_WEST:
|
|
|
|
return GDK_GRAVITY_NORTH_EAST;
|
|
|
|
case GDK_GRAVITY_NORTH:
|
|
|
|
return GDK_GRAVITY_NORTH;
|
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
|
|
|
return GDK_GRAVITY_NORTH_WEST;
|
|
|
|
case GDK_GRAVITY_WEST:
|
|
|
|
return GDK_GRAVITY_EAST;
|
|
|
|
case GDK_GRAVITY_CENTER:
|
|
|
|
return GDK_GRAVITY_CENTER;
|
|
|
|
case GDK_GRAVITY_EAST:
|
|
|
|
return GDK_GRAVITY_WEST;
|
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
|
|
|
return GDK_GRAVITY_SOUTH_EAST;
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
|
|
|
return GDK_GRAVITY_SOUTH;
|
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
|
|
|
return GDK_GRAVITY_SOUTH_WEST;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkGravity
|
|
|
|
flip_anchor_vertically (GdkGravity anchor)
|
|
|
|
{
|
|
|
|
switch (anchor)
|
|
|
|
{
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
2016-07-08 08:54:36 +00:00
|
|
|
case GDK_GRAVITY_STATIC:
|
|
|
|
case GDK_GRAVITY_NORTH_WEST:
|
|
|
|
return GDK_GRAVITY_SOUTH_WEST;
|
|
|
|
case GDK_GRAVITY_NORTH:
|
|
|
|
return GDK_GRAVITY_SOUTH;
|
|
|
|
case GDK_GRAVITY_NORTH_EAST:
|
|
|
|
return GDK_GRAVITY_SOUTH_EAST;
|
|
|
|
case GDK_GRAVITY_WEST:
|
|
|
|
return GDK_GRAVITY_WEST;
|
|
|
|
case GDK_GRAVITY_CENTER:
|
|
|
|
return GDK_GRAVITY_CENTER;
|
|
|
|
case GDK_GRAVITY_EAST:
|
|
|
|
return GDK_GRAVITY_EAST;
|
|
|
|
case GDK_GRAVITY_SOUTH_WEST:
|
|
|
|
return GDK_GRAVITY_NORTH_WEST;
|
|
|
|
case GDK_GRAVITY_SOUTH:
|
|
|
|
return GDK_GRAVITY_NORTH;
|
|
|
|
case GDK_GRAVITY_SOUTH_EAST:
|
|
|
|
return GDK_GRAVITY_NORTH_EAST;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
2013-11-11 23:02:19 +00:00
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
calculate_moved_to_rect_result (GdkSurface *surface,
|
2016-09-12 06:53:51 +00:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
GdkRectangle *flipped_rect,
|
|
|
|
GdkRectangle *final_rect,
|
|
|
|
gboolean *flipped_x,
|
|
|
|
gboolean *flipped_y)
|
2016-07-01 09:03:36 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *parent;
|
2018-03-20 14:14:10 +00:00
|
|
|
gint surface_x, surface_y;
|
|
|
|
gint surface_width, surface_height;
|
2016-07-08 08:54:36 +00:00
|
|
|
GdkRectangle best_rect;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
parent = translate_from_real_parent_surface_geometry (surface, &x, &y);
|
2016-09-12 10:41:36 +00:00
|
|
|
*final_rect = (GdkRectangle) {
|
|
|
|
.x = x,
|
|
|
|
.y = y,
|
|
|
|
.width = width,
|
|
|
|
.height = height,
|
|
|
|
};
|
2016-07-08 08:54:36 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
surface_x = parent->x + x;
|
|
|
|
surface_y = parent->y + y;
|
|
|
|
surface_width = width + surface->shadow_left + surface->shadow_right;
|
|
|
|
surface_height = height + surface->shadow_top + surface->shadow_bottom;
|
2016-09-12 10:46:44 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_move_resize (surface,
|
|
|
|
surface_x, surface_y,
|
|
|
|
surface_width, surface_height);
|
2016-09-12 10:46:44 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
calculate_popup_rect (surface,
|
2016-07-08 08:54:36 +00:00
|
|
|
impl->pending_move_to_rect.rect_anchor,
|
2018-03-20 11:05:26 +00:00
|
|
|
impl->pending_move_to_rect.surface_anchor,
|
2016-07-08 08:54:36 +00:00
|
|
|
&best_rect);
|
|
|
|
|
2016-09-12 06:53:51 +00:00
|
|
|
*flipped_rect = best_rect;
|
2016-07-08 08:54:36 +00:00
|
|
|
|
|
|
|
if (x != best_rect.x &&
|
|
|
|
impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_FLIP_X)
|
|
|
|
{
|
|
|
|
GdkRectangle flipped_x_rect;
|
|
|
|
GdkGravity flipped_rect_anchor;
|
2018-03-20 11:05:26 +00:00
|
|
|
GdkGravity flipped_surface_anchor;
|
2016-07-08 08:54:36 +00:00
|
|
|
|
|
|
|
flipped_rect_anchor =
|
|
|
|
flip_anchor_horizontally (impl->pending_move_to_rect.rect_anchor);
|
2018-03-20 11:05:26 +00:00
|
|
|
flipped_surface_anchor =
|
|
|
|
flip_anchor_horizontally (impl->pending_move_to_rect.surface_anchor),
|
2018-03-20 14:14:10 +00:00
|
|
|
calculate_popup_rect (surface,
|
2016-07-08 08:54:36 +00:00
|
|
|
flipped_rect_anchor,
|
2018-03-20 11:05:26 +00:00
|
|
|
flipped_surface_anchor,
|
2016-07-08 08:54:36 +00:00
|
|
|
&flipped_x_rect);
|
|
|
|
|
|
|
|
if (flipped_x_rect.x == x)
|
2016-09-12 06:53:51 +00:00
|
|
|
flipped_rect->x = x;
|
2016-07-08 08:54:36 +00:00
|
|
|
}
|
|
|
|
if (y != best_rect.y &&
|
|
|
|
impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_FLIP_Y)
|
|
|
|
{
|
|
|
|
GdkRectangle flipped_y_rect;
|
|
|
|
GdkGravity flipped_rect_anchor;
|
2018-03-20 11:05:26 +00:00
|
|
|
GdkGravity flipped_surface_anchor;
|
2016-07-08 08:54:36 +00:00
|
|
|
|
|
|
|
flipped_rect_anchor =
|
|
|
|
flip_anchor_vertically (impl->pending_move_to_rect.rect_anchor);
|
2018-03-20 11:05:26 +00:00
|
|
|
flipped_surface_anchor =
|
|
|
|
flip_anchor_vertically (impl->pending_move_to_rect.surface_anchor),
|
2018-03-20 14:14:10 +00:00
|
|
|
calculate_popup_rect (surface,
|
2016-07-08 08:54:36 +00:00
|
|
|
flipped_rect_anchor,
|
2018-03-20 11:05:26 +00:00
|
|
|
flipped_surface_anchor,
|
2016-07-08 08:54:36 +00:00
|
|
|
&flipped_y_rect);
|
|
|
|
|
|
|
|
if (flipped_y_rect.y == y)
|
2016-09-12 06:53:51 +00:00
|
|
|
flipped_rect->y = y;
|
2016-07-08 08:54:36 +00:00
|
|
|
}
|
|
|
|
|
2016-09-12 06:53:51 +00:00
|
|
|
*flipped_x = flipped_rect->x != best_rect.x;
|
|
|
|
*flipped_y = flipped_rect->y != best_rect.y;
|
2016-07-08 08:54:36 +00:00
|
|
|
}
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
static gpointer
|
2018-03-20 14:14:10 +00:00
|
|
|
create_dynamic_positioner (GdkSurface *surface)
|
2013-04-25 15:11:02 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-07-08 08:54:36 +00:00
|
|
|
GdkWaylandDisplay *display =
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2016-07-01 09:03:36 +00:00
|
|
|
GdkRectangle geometry;
|
2016-07-08 08:54:36 +00:00
|
|
|
uint32_t constraint_adjustment = ZXDG_POSITIONER_V6_CONSTRAINT_ADJUSTMENT_NONE;
|
|
|
|
gint real_anchor_rect_x, real_anchor_rect_y;
|
|
|
|
gint anchor_rect_width, anchor_rect_height;
|
2013-04-25 15:11:02 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_window_geometry (surface, &geometry);
|
2013-08-30 11:55:37 +00:00
|
|
|
|
2016-07-08 08:54:36 +00:00
|
|
|
real_anchor_rect_x = impl->pending_move_to_rect.rect.x;
|
|
|
|
real_anchor_rect_y = impl->pending_move_to_rect.rect.y;
|
2018-03-20 14:14:10 +00:00
|
|
|
translate_to_real_parent_surface_geometry (surface,
|
|
|
|
&real_anchor_rect_x,
|
|
|
|
&real_anchor_rect_y);
|
2016-07-08 08:54:36 +00:00
|
|
|
|
|
|
|
anchor_rect_width = impl->pending_move_to_rect.rect.width;
|
|
|
|
anchor_rect_height = impl->pending_move_to_rect.rect.height;
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
switch (display->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
{
|
|
|
|
struct xdg_positioner *positioner;
|
|
|
|
enum xdg_positioner_anchor anchor;
|
|
|
|
enum xdg_positioner_gravity gravity;
|
|
|
|
|
|
|
|
positioner = xdg_wm_base_create_positioner (display->xdg_wm_base);
|
|
|
|
|
|
|
|
xdg_positioner_set_size (positioner, geometry.width, geometry.height);
|
|
|
|
xdg_positioner_set_anchor_rect (positioner,
|
|
|
|
real_anchor_rect_x,
|
|
|
|
real_anchor_rect_y,
|
|
|
|
anchor_rect_width,
|
|
|
|
anchor_rect_height);
|
|
|
|
xdg_positioner_set_offset (positioner,
|
|
|
|
impl->pending_move_to_rect.rect_anchor_dx,
|
|
|
|
impl->pending_move_to_rect.rect_anchor_dy);
|
|
|
|
|
|
|
|
anchor = rect_anchor_to_anchor (impl->pending_move_to_rect.rect_anchor);
|
|
|
|
xdg_positioner_set_anchor (positioner, anchor);
|
|
|
|
|
|
|
|
gravity = surface_anchor_to_gravity (impl->pending_move_to_rect.surface_anchor);
|
|
|
|
xdg_positioner_set_gravity (positioner, gravity);
|
|
|
|
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_FLIP_X)
|
|
|
|
constraint_adjustment |= XDG_POSITIONER_CONSTRAINT_ADJUSTMENT_FLIP_X;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_FLIP_Y)
|
|
|
|
constraint_adjustment |= XDG_POSITIONER_CONSTRAINT_ADJUSTMENT_FLIP_Y;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_SLIDE_X)
|
|
|
|
constraint_adjustment |= XDG_POSITIONER_CONSTRAINT_ADJUSTMENT_SLIDE_X;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_SLIDE_Y)
|
|
|
|
constraint_adjustment |= XDG_POSITIONER_CONSTRAINT_ADJUSTMENT_SLIDE_Y;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_RESIZE_X)
|
|
|
|
constraint_adjustment |= XDG_POSITIONER_CONSTRAINT_ADJUSTMENT_RESIZE_X;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_RESIZE_Y)
|
|
|
|
constraint_adjustment |= XDG_POSITIONER_CONSTRAINT_ADJUSTMENT_RESIZE_Y;
|
|
|
|
xdg_positioner_set_constraint_adjustment (positioner,
|
|
|
|
constraint_adjustment);
|
|
|
|
|
|
|
|
return positioner;
|
|
|
|
}
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
{
|
|
|
|
struct zxdg_positioner_v6 *positioner;
|
|
|
|
enum zxdg_positioner_v6_anchor anchor;
|
|
|
|
enum zxdg_positioner_v6_gravity gravity;
|
|
|
|
|
|
|
|
positioner = zxdg_shell_v6_create_positioner (display->zxdg_shell_v6);
|
|
|
|
|
|
|
|
zxdg_positioner_v6_set_size (positioner, geometry.width, geometry.height);
|
|
|
|
zxdg_positioner_v6_set_anchor_rect (positioner,
|
|
|
|
real_anchor_rect_x,
|
|
|
|
real_anchor_rect_y,
|
|
|
|
anchor_rect_width,
|
|
|
|
anchor_rect_height);
|
|
|
|
zxdg_positioner_v6_set_offset (positioner,
|
|
|
|
impl->pending_move_to_rect.rect_anchor_dx,
|
|
|
|
impl->pending_move_to_rect.rect_anchor_dy);
|
|
|
|
|
|
|
|
anchor = rect_anchor_to_anchor_legacy (impl->pending_move_to_rect.rect_anchor);
|
|
|
|
zxdg_positioner_v6_set_anchor (positioner, anchor);
|
|
|
|
|
|
|
|
gravity = surface_anchor_to_gravity_legacy (impl->pending_move_to_rect.surface_anchor);
|
|
|
|
zxdg_positioner_v6_set_gravity (positioner, gravity);
|
|
|
|
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_FLIP_X)
|
|
|
|
constraint_adjustment |= ZXDG_POSITIONER_V6_CONSTRAINT_ADJUSTMENT_FLIP_X;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_FLIP_Y)
|
|
|
|
constraint_adjustment |= ZXDG_POSITIONER_V6_CONSTRAINT_ADJUSTMENT_FLIP_Y;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_SLIDE_X)
|
|
|
|
constraint_adjustment |= ZXDG_POSITIONER_V6_CONSTRAINT_ADJUSTMENT_SLIDE_X;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_SLIDE_Y)
|
|
|
|
constraint_adjustment |= ZXDG_POSITIONER_V6_CONSTRAINT_ADJUSTMENT_SLIDE_Y;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_RESIZE_X)
|
|
|
|
constraint_adjustment |= ZXDG_POSITIONER_V6_CONSTRAINT_ADJUSTMENT_RESIZE_X;
|
|
|
|
if (impl->pending_move_to_rect.anchor_hints & GDK_ANCHOR_RESIZE_Y)
|
|
|
|
constraint_adjustment |= ZXDG_POSITIONER_V6_CONSTRAINT_ADJUSTMENT_RESIZE_Y;
|
|
|
|
zxdg_positioner_v6_set_constraint_adjustment (positioner,
|
|
|
|
constraint_adjustment);
|
|
|
|
|
|
|
|
return positioner;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer
|
2018-03-20 14:14:10 +00:00
|
|
|
create_simple_positioner (GdkSurface *surface,
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *parent)
|
2016-07-08 08:54:36 +00:00
|
|
|
{
|
|
|
|
GdkWaylandDisplay *display =
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2016-07-08 08:54:36 +00:00
|
|
|
GdkRectangle geometry;
|
|
|
|
GdkRectangle parent_geometry;
|
|
|
|
int parent_x, parent_y;
|
2014-03-10 17:30:21 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_window_geometry (surface, &geometry);
|
2016-07-01 09:03:36 +00:00
|
|
|
|
|
|
|
parent_x = parent->x;
|
|
|
|
parent_y = parent->y;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_wayland_surface_get_window_geometry (parent, &parent_geometry);
|
2016-07-01 09:03:36 +00:00
|
|
|
parent_x += parent_geometry.x;
|
|
|
|
parent_y += parent_geometry.y;
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
switch (display->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
{
|
|
|
|
struct xdg_positioner *positioner;
|
|
|
|
|
|
|
|
positioner = xdg_wm_base_create_positioner (display->xdg_wm_base);
|
|
|
|
xdg_positioner_set_size (positioner, geometry.width, geometry.height);
|
|
|
|
xdg_positioner_set_anchor_rect (positioner,
|
|
|
|
(surface->x + geometry.x) - parent_x,
|
|
|
|
(surface->y + geometry.y) - parent_y,
|
|
|
|
1, 1);
|
|
|
|
xdg_positioner_set_anchor (positioner,
|
|
|
|
XDG_POSITIONER_ANCHOR_TOP_LEFT);
|
|
|
|
xdg_positioner_set_gravity (positioner,
|
|
|
|
XDG_POSITIONER_GRAVITY_BOTTOM_RIGHT);
|
|
|
|
|
|
|
|
return positioner;
|
|
|
|
}
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
{
|
|
|
|
struct zxdg_positioner_v6 *positioner;
|
|
|
|
|
|
|
|
positioner = zxdg_shell_v6_create_positioner (display->zxdg_shell_v6);
|
|
|
|
zxdg_positioner_v6_set_size (positioner, geometry.width, geometry.height);
|
|
|
|
zxdg_positioner_v6_set_anchor_rect (positioner,
|
|
|
|
(surface->x + geometry.x) - parent_x,
|
|
|
|
(surface->y + geometry.y) - parent_y,
|
|
|
|
1, 1);
|
|
|
|
zxdg_positioner_v6_set_anchor (positioner,
|
|
|
|
(ZXDG_POSITIONER_V6_ANCHOR_TOP |
|
|
|
|
ZXDG_POSITIONER_V6_ANCHOR_LEFT));
|
|
|
|
zxdg_positioner_v6_set_gravity (positioner,
|
|
|
|
(ZXDG_POSITIONER_V6_GRAVITY_BOTTOM |
|
|
|
|
ZXDG_POSITIONER_V6_GRAVITY_RIGHT));
|
|
|
|
|
|
|
|
return positioner;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2016-07-01 09:03:36 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
g_assert_not_reached ();
|
2016-07-08 08:54:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_create_xdg_popup (GdkSurface *surface,
|
|
|
|
GdkSurface *parent,
|
|
|
|
struct wl_seat *seat)
|
2016-07-08 08:54:36 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkWaylandDisplay *display = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *parent_impl = GDK_SURFACE_IMPL_WAYLAND (parent->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
gpointer positioner;
|
2016-07-08 08:54:36 +00:00
|
|
|
GdkSeat *gdk_seat;
|
|
|
|
guint32 serial;
|
|
|
|
|
|
|
|
if (!impl->display_server.wl_surface)
|
|
|
|
return;
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_shell_surface (parent))
|
2016-07-08 08:54:36 +00:00
|
|
|
return;
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (is_realized_toplevel (surface))
|
2016-07-08 08:54:36 +00:00
|
|
|
{
|
|
|
|
g_warning ("Can't map popup, already mapped as toplevel");
|
|
|
|
return;
|
|
|
|
}
|
2017-12-18 12:00:36 +00:00
|
|
|
if (is_realized_popup (surface))
|
2016-07-08 08:54:36 +00:00
|
|
|
{
|
|
|
|
g_warning ("Can't map popup, already mapped");
|
|
|
|
return;
|
|
|
|
}
|
2016-09-02 10:51:34 +00:00
|
|
|
if ((display->current_popups &&
|
|
|
|
g_list_last (display->current_popups)->data != parent) ||
|
|
|
|
(!display->current_popups &&
|
2017-12-18 12:00:36 +00:00
|
|
|
!is_realized_toplevel (parent)))
|
2016-09-02 10:51:34 +00:00
|
|
|
{
|
|
|
|
g_warning ("Tried to map a popup with a non-top most parent");
|
|
|
|
return;
|
|
|
|
}
|
2016-07-08 08:54:36 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_freeze_updates (surface);
|
2016-07-08 08:54:36 +00:00
|
|
|
|
|
|
|
if (impl->position_method == POSITION_METHOD_MOVE_TO_RECT)
|
2018-03-20 14:14:10 +00:00
|
|
|
positioner = create_dynamic_positioner (surface);
|
2016-07-08 08:54:36 +00:00
|
|
|
else
|
2018-03-20 14:14:10 +00:00
|
|
|
positioner = create_simple_positioner (surface, parent);
|
2016-07-08 08:54:36 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
switch (display->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
impl->display_server.xdg_surface =
|
|
|
|
xdg_wm_base_get_xdg_surface (display->xdg_wm_base,
|
|
|
|
impl->display_server.wl_surface);
|
|
|
|
xdg_surface_add_listener (impl->display_server.xdg_surface,
|
|
|
|
&xdg_surface_listener,
|
|
|
|
surface);
|
|
|
|
impl->display_server.xdg_popup =
|
|
|
|
xdg_surface_get_popup (impl->display_server.xdg_surface,
|
2016-07-01 09:03:36 +00:00
|
|
|
parent_impl->display_server.xdg_surface,
|
|
|
|
positioner);
|
2017-12-18 12:00:36 +00:00
|
|
|
xdg_popup_add_listener (impl->display_server.xdg_popup,
|
2016-07-01 09:03:36 +00:00
|
|
|
&xdg_popup_listener,
|
2018-03-20 14:14:10 +00:00
|
|
|
surface);
|
2017-12-18 12:00:36 +00:00
|
|
|
xdg_positioner_destroy (positioner);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
impl->display_server.zxdg_surface_v6 =
|
|
|
|
zxdg_shell_v6_get_xdg_surface (display->zxdg_shell_v6,
|
|
|
|
impl->display_server.wl_surface);
|
|
|
|
zxdg_surface_v6_add_listener (impl->display_server.zxdg_surface_v6,
|
|
|
|
&zxdg_surface_v6_listener,
|
|
|
|
surface);
|
|
|
|
impl->display_server.zxdg_popup_v6 =
|
|
|
|
zxdg_surface_v6_get_popup (impl->display_server.zxdg_surface_v6,
|
|
|
|
parent_impl->display_server.zxdg_surface_v6,
|
|
|
|
positioner);
|
|
|
|
zxdg_popup_v6_add_listener (impl->display_server.zxdg_popup_v6,
|
|
|
|
&zxdg_popup_v6_listener,
|
|
|
|
surface);
|
|
|
|
zxdg_positioner_v6_destroy (positioner);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2014-03-10 17:30:21 +00:00
|
|
|
|
2016-10-18 17:18:14 +00:00
|
|
|
if (seat)
|
|
|
|
{
|
|
|
|
gdk_seat = gdk_display_get_default_seat (GDK_DISPLAY (display));
|
|
|
|
serial = _gdk_wayland_seat_get_last_implicit_grab_serial (gdk_seat, NULL);
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
switch (display->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_popup_grab (impl->display_server.xdg_popup, seat, serial);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_popup_v6_grab (impl->display_server.zxdg_popup_v6, seat, serial);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2016-10-18 17:18:14 +00:00
|
|
|
}
|
2013-11-11 23:02:19 +00:00
|
|
|
|
2016-07-01 09:03:36 +00:00
|
|
|
wl_surface_commit (impl->display_server.wl_surface);
|
2016-09-02 10:51:34 +00:00
|
|
|
|
2016-09-05 15:53:38 +00:00
|
|
|
impl->popup_parent = parent;
|
2018-03-20 14:14:10 +00:00
|
|
|
display->current_popups = g_list_append (display->current_popups, surface);
|
2013-11-11 23:02:19 +00:00
|
|
|
}
|
|
|
|
|
2014-05-15 21:12:09 +00:00
|
|
|
static struct wl_seat *
|
2017-12-18 12:10:47 +00:00
|
|
|
find_grab_input_seat (GdkSurface *surface,
|
|
|
|
GdkSurface *transient_for)
|
2014-05-15 21:12:09 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *attached_grab_surface;
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *tmp_impl;
|
2014-05-15 21:12:09 +00:00
|
|
|
|
|
|
|
/* Use the device that was used for the grab as the device for
|
2018-03-20 14:14:10 +00:00
|
|
|
* the popup surface setup - so this relies on GTK+ taking the
|
|
|
|
* grab before showing the popup surface.
|
2014-05-15 21:12:09 +00:00
|
|
|
*/
|
2014-05-15 21:14:26 +00:00
|
|
|
if (impl->grab_input_seat)
|
2015-12-09 11:56:26 +00:00
|
|
|
return gdk_wayland_seat_get_wl_seat (impl->grab_input_seat);
|
2014-05-15 21:12:09 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
/* HACK: GtkMenu grabs a special surface known as the "grab transfer surface"
|
|
|
|
* and then transfers the grab over to the correct surface later. Look for
|
|
|
|
* this surface when taking the grab to know it's correct.
|
wayland: Fix GtkMenuButton popups in a terrible, hacky way
Since you can't take grabs on unmapped windows, GtkMenu takes a grab on
the menu in a convoluted way: it first grabs another window, shows the
menu window, and then transfers the grab over to the GtkMenu widget.
For normal menubars, this is perfectly fine, as the first window it grabs
is our toplevel, and that gets picked up in our transient path. For
GtkMenuButton or other spurious uses of gtk_menu_popup, it creates a new
temporary input-only window which it takes the grab on, known as the "grab
transfer window". Since this window isn't a transient-for of our new menu
widget window, the grab isn't noticed when we go to show it, and thus the
menu ends up as a new toplevel.
Add a special hack to GtkMenu and the Wayland backend which lets us notice
this "grab transfer window", and include it in our grab finding path.
It's sort of terrible to have to hack up the widgets instead of just the
backend, but the alternative would be an entirely new window type which is
managed correctly by GDK. I don't want to write that.
2014-05-15 21:20:00 +00:00
|
|
|
*
|
2018-03-20 14:14:10 +00:00
|
|
|
* See: associate_menu_grab_transfer_surface in gtkmenu.c
|
wayland: Fix GtkMenuButton popups in a terrible, hacky way
Since you can't take grabs on unmapped windows, GtkMenu takes a grab on
the menu in a convoluted way: it first grabs another window, shows the
menu window, and then transfers the grab over to the GtkMenu widget.
For normal menubars, this is perfectly fine, as the first window it grabs
is our toplevel, and that gets picked up in our transient path. For
GtkMenuButton or other spurious uses of gtk_menu_popup, it creates a new
temporary input-only window which it takes the grab on, known as the "grab
transfer window". Since this window isn't a transient-for of our new menu
widget window, the grab isn't noticed when we go to show it, and thus the
menu ends up as a new toplevel.
Add a special hack to GtkMenu and the Wayland backend which lets us notice
this "grab transfer window", and include it in our grab finding path.
It's sort of terrible to have to hack up the widgets instead of just the
backend, but the alternative would be an entirely new window type which is
managed correctly by GDK. I don't want to write that.
2014-05-15 21:20:00 +00:00
|
|
|
*/
|
2018-03-20 14:14:10 +00:00
|
|
|
attached_grab_surface = g_object_get_data (G_OBJECT (surface), "gdk-attached-grab-surface");
|
|
|
|
if (attached_grab_surface)
|
wayland: Fix GtkMenuButton popups in a terrible, hacky way
Since you can't take grabs on unmapped windows, GtkMenu takes a grab on
the menu in a convoluted way: it first grabs another window, shows the
menu window, and then transfers the grab over to the GtkMenu widget.
For normal menubars, this is perfectly fine, as the first window it grabs
is our toplevel, and that gets picked up in our transient path. For
GtkMenuButton or other spurious uses of gtk_menu_popup, it creates a new
temporary input-only window which it takes the grab on, known as the "grab
transfer window". Since this window isn't a transient-for of our new menu
widget window, the grab isn't noticed when we go to show it, and thus the
menu ends up as a new toplevel.
Add a special hack to GtkMenu and the Wayland backend which lets us notice
this "grab transfer window", and include it in our grab finding path.
It's sort of terrible to have to hack up the widgets instead of just the
backend, but the alternative would be an entirely new window type which is
managed correctly by GDK. I don't want to write that.
2014-05-15 21:20:00 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
tmp_impl = GDK_SURFACE_IMPL_WAYLAND (attached_grab_surface->impl);
|
wayland: Fix GtkMenuButton popups in a terrible, hacky way
Since you can't take grabs on unmapped windows, GtkMenu takes a grab on
the menu in a convoluted way: it first grabs another window, shows the
menu window, and then transfers the grab over to the GtkMenu widget.
For normal menubars, this is perfectly fine, as the first window it grabs
is our toplevel, and that gets picked up in our transient path. For
GtkMenuButton or other spurious uses of gtk_menu_popup, it creates a new
temporary input-only window which it takes the grab on, known as the "grab
transfer window". Since this window isn't a transient-for of our new menu
widget window, the grab isn't noticed when we go to show it, and thus the
menu ends up as a new toplevel.
Add a special hack to GtkMenu and the Wayland backend which lets us notice
this "grab transfer window", and include it in our grab finding path.
It's sort of terrible to have to hack up the widgets instead of just the
backend, but the alternative would be an entirely new window type which is
managed correctly by GDK. I don't want to write that.
2014-05-15 21:20:00 +00:00
|
|
|
if (tmp_impl->grab_input_seat)
|
2015-12-09 11:56:26 +00:00
|
|
|
return gdk_wayland_seat_get_wl_seat (tmp_impl->grab_input_seat);
|
wayland: Fix GtkMenuButton popups in a terrible, hacky way
Since you can't take grabs on unmapped windows, GtkMenu takes a grab on
the menu in a convoluted way: it first grabs another window, shows the
menu window, and then transfers the grab over to the GtkMenu widget.
For normal menubars, this is perfectly fine, as the first window it grabs
is our toplevel, and that gets picked up in our transient path. For
GtkMenuButton or other spurious uses of gtk_menu_popup, it creates a new
temporary input-only window which it takes the grab on, known as the "grab
transfer window". Since this window isn't a transient-for of our new menu
widget window, the grab isn't noticed when we go to show it, and thus the
menu ends up as a new toplevel.
Add a special hack to GtkMenu and the Wayland backend which lets us notice
this "grab transfer window", and include it in our grab finding path.
It's sort of terrible to have to hack up the widgets instead of just the
backend, but the alternative would be an entirely new window type which is
managed correctly by GDK. I don't want to write that.
2014-05-15 21:20:00 +00:00
|
|
|
}
|
|
|
|
|
2014-05-15 21:14:26 +00:00
|
|
|
while (transient_for)
|
2014-05-15 21:12:09 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
tmp_impl = GDK_SURFACE_IMPL_WAYLAND (transient_for->impl);
|
2014-05-15 21:12:09 +00:00
|
|
|
|
2014-05-15 21:14:26 +00:00
|
|
|
if (tmp_impl->grab_input_seat)
|
2015-12-09 11:56:26 +00:00
|
|
|
return gdk_wayland_seat_get_wl_seat (tmp_impl->grab_input_seat);
|
2014-05-15 21:14:26 +00:00
|
|
|
|
|
|
|
transient_for = tmp_impl->transient_for;
|
2014-05-15 21:12:09 +00:00
|
|
|
}
|
|
|
|
|
2014-05-15 21:14:26 +00:00
|
|
|
return NULL;
|
2014-05-15 21:12:09 +00:00
|
|
|
}
|
|
|
|
|
2014-08-13 23:01:52 +00:00
|
|
|
static gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
should_be_mapped (GdkSurface *surface)
|
2014-08-13 23:01:52 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2015-10-13 12:39:02 +00:00
|
|
|
|
2014-08-13 23:01:52 +00:00
|
|
|
/* Don't map crazy temp that GTK+ uses for internal X11 shenanigans. */
|
2018-03-20 14:14:10 +00:00
|
|
|
if (surface->surface_type == GDK_SURFACE_TEMP && surface->x < 0 && surface->y < 0)
|
2014-08-13 23:01:52 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->hint == GDK_SURFACE_TYPE_HINT_DND)
|
2015-10-13 12:39:02 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2014-08-13 23:01:52 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2015-10-13 12:39:02 +00:00
|
|
|
static gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
should_map_as_popup (GdkSurface *surface)
|
2015-10-13 12:39:02 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2015-10-13 12:48:51 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
/* Ideally, popup would be temp surfaces with a parent and grab */
|
|
|
|
if (GDK_SURFACE_TYPE (surface) == GDK_SURFACE_TEMP)
|
2015-12-21 13:35:53 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
/* If a temp surface has a parent and a grab, we can use a popup */
|
2015-12-21 13:35:53 +00:00
|
|
|
if (impl->transient_for)
|
|
|
|
{
|
|
|
|
if (impl->grab_input_seat)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
2018-03-20 14:14:10 +00:00
|
|
|
g_message ("Surface %p is a temporary surface without parent, "
|
2015-12-21 13:35:53 +00:00
|
|
|
"application will not be able to position it on screen.",
|
2018-03-20 14:14:10 +00:00
|
|
|
surface);
|
2015-12-21 13:35:53 +00:00
|
|
|
}
|
2015-10-13 12:39:02 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
/* Yet we need to keep the surface type hint tests for compatibility */
|
2017-10-06 19:19:42 +00:00
|
|
|
switch ((guint) impl->hint)
|
2015-10-18 12:23:07 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_TYPE_HINT_POPUP_MENU:
|
|
|
|
case GDK_SURFACE_TYPE_HINT_DROPDOWN_MENU:
|
|
|
|
case GDK_SURFACE_TYPE_HINT_COMBO:
|
2015-10-18 12:23:07 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-10-13 12:48:51 +00:00
|
|
|
|
2018-08-19 01:16:51 +00:00
|
|
|
if (impl->position_method == POSITION_METHOD_MOVE_TO_RECT)
|
|
|
|
return TRUE;
|
|
|
|
|
2015-10-13 12:39:02 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
/* Get the surface that can be used as a parent for a popup, i.e. a xdg_toplevel
|
|
|
|
* or xdg_popup. If the surface is not, traverse up the transiency parents until
|
2015-10-18 13:03:52 +00:00
|
|
|
* we find one.
|
|
|
|
*/
|
2018-03-20 10:40:08 +00:00
|
|
|
static GdkSurface *
|
2018-03-20 14:14:10 +00:00
|
|
|
get_popup_parent (GdkSurface *surface)
|
2015-10-18 13:03:52 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
while (surface)
|
2015-10-18 13:03:52 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2015-10-18 13:03:52 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (is_realized_popup (surface) || is_realized_toplevel (surface))
|
2018-03-20 14:14:10 +00:00
|
|
|
return surface;
|
2015-10-18 13:03:52 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
surface = impl->transient_for;
|
2015-10-18 13:03:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-11-11 23:02:19 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_map (GdkSurface *surface)
|
2013-11-11 23:02:19 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *transient_for = NULL;
|
2013-11-11 23:02:19 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (!should_be_mapped (surface))
|
2014-08-13 23:01:52 +00:00
|
|
|
return;
|
|
|
|
|
2019-04-03 23:22:36 +00:00
|
|
|
if (impl->mapped)
|
2015-10-13 12:39:02 +00:00
|
|
|
return;
|
|
|
|
|
2018-08-19 03:21:41 +00:00
|
|
|
if (should_map_as_popup (surface))
|
2015-10-13 12:39:02 +00:00
|
|
|
{
|
|
|
|
gboolean create_fallback = FALSE;
|
|
|
|
struct wl_seat *grab_input_seat;
|
|
|
|
|
2013-11-11 23:02:19 +00:00
|
|
|
/* Popup menus can appear without a transient parent, which means they
|
|
|
|
* cannot be positioned properly on Wayland. This attempts to guess the
|
|
|
|
* surface they should be positioned with by finding the surface beneath
|
2018-03-20 14:14:10 +00:00
|
|
|
* the device that created the grab for the popup surface.
|
2013-11-11 23:02:19 +00:00
|
|
|
*/
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!impl->transient_for && impl->hint == GDK_SURFACE_TYPE_HINT_POPUP_MENU)
|
2013-11-11 23:02:19 +00:00
|
|
|
{
|
2015-12-09 11:56:26 +00:00
|
|
|
GdkDevice *grab_device = NULL;
|
2015-06-05 05:29:22 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
/* The popup menu surface is not the grabbed surface. This may mean
|
|
|
|
* that a "transfer surface" (see gtkmenu.c) is used, and we need
|
|
|
|
* to find that surface to get the grab device. If so is the case
|
|
|
|
* the "transfer surface" can be retrieved via the
|
|
|
|
* "gdk-attached-grab-surface" associated data field.
|
2015-06-05 05:29:22 +00:00
|
|
|
*/
|
2015-12-09 11:56:26 +00:00
|
|
|
if (!impl->grab_input_seat)
|
2015-06-05 05:29:22 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *attached_grab_surface =
|
|
|
|
g_object_get_data (G_OBJECT (surface),
|
|
|
|
"gdk-attached-grab-surface");
|
|
|
|
if (attached_grab_surface)
|
2015-06-05 05:29:22 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *attached_impl =
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_SURFACE_IMPL_WAYLAND (attached_grab_surface->impl);
|
2015-12-09 11:56:26 +00:00
|
|
|
grab_device = gdk_seat_get_pointer (attached_impl->grab_input_seat);
|
2015-06-05 05:29:22 +00:00
|
|
|
transient_for =
|
2019-03-26 00:44:37 +00:00
|
|
|
gdk_device_get_surface_at_position (grab_device, NULL, NULL);
|
2015-06-05 05:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-12-09 11:56:26 +00:00
|
|
|
grab_device = gdk_seat_get_pointer (impl->grab_input_seat);
|
2015-06-05 05:29:22 +00:00
|
|
|
transient_for =
|
2019-03-26 00:44:37 +00:00
|
|
|
gdk_device_get_surface_at_position (grab_device, NULL, NULL);
|
2015-06-05 05:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (transient_for)
|
2018-03-20 10:40:08 +00:00
|
|
|
transient_for = get_popup_parent (gdk_surface_get_toplevel (transient_for));
|
2013-11-11 23:02:19 +00:00
|
|
|
|
2015-06-05 05:35:21 +00:00
|
|
|
/* If the position was not explicitly set, start the popup at the
|
|
|
|
* position of the device that holds the grab.
|
|
|
|
*/
|
2016-07-08 08:54:36 +00:00
|
|
|
if (impl->position_method == POSITION_METHOD_NONE && grab_device)
|
2019-03-25 12:32:10 +00:00
|
|
|
{
|
|
|
|
double px, py;
|
2019-03-25 14:12:01 +00:00
|
|
|
gdk_surface_get_device_position (transient_for, grab_device,
|
|
|
|
&px, &py, NULL);
|
2019-03-25 12:32:10 +00:00
|
|
|
surface->x = round (px);
|
|
|
|
surface->y = round (py);
|
|
|
|
}
|
2013-11-11 23:02:19 +00:00
|
|
|
}
|
|
|
|
else
|
2016-08-04 06:05:06 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
transient_for = gdk_surface_get_toplevel (impl->transient_for);
|
2016-08-04 06:05:06 +00:00
|
|
|
transient_for = get_popup_parent (transient_for);
|
|
|
|
}
|
2013-11-11 23:02:19 +00:00
|
|
|
|
2015-10-13 12:39:02 +00:00
|
|
|
if (!transient_for)
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
g_warning ("Couldn't map as surface %p as popup because it doesn't have a parent",
|
|
|
|
surface);
|
2015-10-13 12:39:02 +00:00
|
|
|
|
|
|
|
create_fallback = TRUE;
|
|
|
|
}
|
|
|
|
else
|
2013-11-11 23:02:19 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
grab_input_seat = find_grab_input_seat (surface, transient_for);
|
2013-11-11 23:02:19 +00:00
|
|
|
}
|
|
|
|
|
2015-10-13 12:39:02 +00:00
|
|
|
if (!create_fallback)
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_create_xdg_popup (surface,
|
2015-10-13 12:39:02 +00:00
|
|
|
transient_for,
|
|
|
|
grab_input_seat);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_create_xdg_toplevel (surface);
|
2015-10-13 12:39:02 +00:00
|
|
|
}
|
2013-11-11 23:02:19 +00:00
|
|
|
}
|
2015-10-13 12:39:02 +00:00
|
|
|
else
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_create_xdg_toplevel (surface);
|
2015-10-13 12:39:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl->mapped = TRUE;
|
2013-04-25 15:11:02 +00:00
|
|
|
}
|
|
|
|
|
2010-12-18 20:38:49 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_show (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gboolean already_mapped)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (!impl->display_server.wl_surface)
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_create_surface (surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_map (surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
2016-09-05 15:53:38 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
unmap_popups_for_surface (GdkSurface *surface)
|
2016-09-05 15:53:38 +00:00
|
|
|
{
|
|
|
|
GdkWaylandDisplay *display_wayland;
|
|
|
|
GList *l;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2016-09-05 15:53:38 +00:00
|
|
|
for (l = display_wayland->current_popups; l; l = l->next)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *popup = l->data;
|
|
|
|
GdkSurfaceImplWayland *popup_impl = GDK_SURFACE_IMPL_WAYLAND (popup->impl);
|
2016-09-05 15:53:38 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (popup_impl->popup_parent == surface)
|
2016-09-05 15:53:38 +00:00
|
|
|
{
|
|
|
|
g_warning ("Tried to unmap the parent of a popup");
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_surface_hide (popup);
|
2016-09-05 15:53:38 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-18 20:38:49 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_hide_surface (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkWaylandDisplay *display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
unmap_popups_for_surface (surface);
|
2016-09-05 15:53:38 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.wl_surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2014-10-09 14:09:05 +00:00
|
|
|
if (impl->dummy_egl_surface)
|
|
|
|
{
|
2015-08-28 17:51:11 +00:00
|
|
|
eglDestroySurface (display_wayland->egl_display, impl->dummy_egl_surface);
|
2014-10-09 14:09:05 +00:00
|
|
|
impl->dummy_egl_surface = NULL;
|
|
|
|
}
|
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.dummy_egl_window)
|
2014-10-09 14:09:05 +00:00
|
|
|
{
|
2016-02-02 16:42:52 +00:00
|
|
|
wl_egl_window_destroy (impl->display_server.dummy_egl_window);
|
|
|
|
impl->display_server.dummy_egl_window = NULL;
|
2014-10-09 14:09:05 +00:00
|
|
|
}
|
|
|
|
|
2014-10-09 09:06:48 +00:00
|
|
|
if (impl->egl_surface)
|
|
|
|
{
|
2015-08-28 17:51:11 +00:00
|
|
|
eglDestroySurface (display_wayland->egl_display, impl->egl_surface);
|
2014-10-09 09:06:48 +00:00
|
|
|
impl->egl_surface = NULL;
|
|
|
|
}
|
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.egl_window)
|
2014-10-09 09:06:48 +00:00
|
|
|
{
|
2016-02-02 16:42:52 +00:00
|
|
|
wl_egl_window_destroy (impl->display_server.egl_window);
|
|
|
|
impl->display_server.egl_window = NULL;
|
2014-10-09 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
2016-07-01 09:03:36 +00:00
|
|
|
if (impl->display_server.xdg_toplevel)
|
2014-06-19 19:10:01 +00:00
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
xdg_toplevel_destroy (impl->display_server.xdg_toplevel);
|
2016-07-01 09:03:36 +00:00
|
|
|
impl->display_server.xdg_toplevel = NULL;
|
2014-06-19 19:10:01 +00:00
|
|
|
}
|
2016-02-02 16:42:52 +00:00
|
|
|
else if (impl->display_server.xdg_popup)
|
2014-06-19 19:10:01 +00:00
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
xdg_popup_destroy (impl->display_server.xdg_popup);
|
2016-02-02 16:42:52 +00:00
|
|
|
impl->display_server.xdg_popup = NULL;
|
2016-09-02 10:51:34 +00:00
|
|
|
display_wayland->current_popups =
|
2018-03-20 14:14:10 +00:00
|
|
|
g_list_remove (display_wayland->current_popups, surface);
|
2014-06-19 19:10:01 +00:00
|
|
|
}
|
2016-07-01 09:03:36 +00:00
|
|
|
if (impl->display_server.xdg_surface)
|
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
xdg_surface_destroy (impl->display_server.xdg_surface);
|
2016-07-01 09:03:36 +00:00
|
|
|
impl->display_server.xdg_surface = NULL;
|
2016-07-08 08:54:36 +00:00
|
|
|
if (!impl->initial_configure_received)
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_thaw_updates (surface);
|
2016-07-08 08:54:36 +00:00
|
|
|
else
|
|
|
|
impl->initial_configure_received = FALSE;
|
2016-07-01 09:03:36 +00:00
|
|
|
}
|
2014-06-19 19:10:01 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (impl->display_server.zxdg_toplevel_v6)
|
|
|
|
{
|
|
|
|
zxdg_toplevel_v6_destroy (impl->display_server.zxdg_toplevel_v6);
|
|
|
|
impl->display_server.zxdg_toplevel_v6 = NULL;
|
|
|
|
}
|
|
|
|
else if (impl->display_server.zxdg_popup_v6)
|
|
|
|
{
|
|
|
|
zxdg_popup_v6_destroy (impl->display_server.zxdg_popup_v6);
|
|
|
|
impl->display_server.zxdg_popup_v6 = NULL;
|
|
|
|
display_wayland->current_popups =
|
|
|
|
g_list_remove (display_wayland->current_popups, surface);
|
|
|
|
}
|
|
|
|
if (impl->display_server.zxdg_surface_v6)
|
|
|
|
{
|
|
|
|
zxdg_surface_v6_destroy (impl->display_server.zxdg_surface_v6);
|
|
|
|
impl->display_server.zxdg_surface_v6 = NULL;
|
|
|
|
if (!impl->initial_configure_received)
|
|
|
|
gdk_surface_thaw_updates (surface);
|
|
|
|
else
|
|
|
|
impl->initial_configure_received = FALSE;
|
|
|
|
}
|
|
|
|
|
2015-02-25 13:46:54 +00:00
|
|
|
if (impl->awaiting_frame)
|
|
|
|
{
|
2015-08-28 17:55:23 +00:00
|
|
|
GdkFrameClock *frame_clock;
|
|
|
|
|
2015-02-25 13:46:54 +00:00
|
|
|
impl->awaiting_frame = FALSE;
|
2018-03-20 14:14:10 +00:00
|
|
|
frame_clock = gdk_surface_get_frame_clock (surface);
|
2015-08-28 17:55:23 +00:00
|
|
|
if (frame_clock)
|
|
|
|
_gdk_frame_clock_thaw (frame_clock);
|
2015-02-25 13:46:54 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.gtk_surface)
|
2015-08-01 15:08:30 +00:00
|
|
|
{
|
2016-03-07 03:49:35 +00:00
|
|
|
gtk_surface1_destroy (impl->display_server.gtk_surface);
|
2016-02-02 16:42:52 +00:00
|
|
|
impl->display_server.gtk_surface = NULL;
|
2017-01-25 14:53:55 +00:00
|
|
|
impl->application.was_set = FALSE;
|
2015-08-01 15:08:30 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
wl_surface_destroy (impl->display_server.wl_surface);
|
|
|
|
impl->display_server.wl_surface = NULL;
|
2013-04-25 15:19:31 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
g_slist_free (impl->display_server.outputs);
|
|
|
|
impl->display_server.outputs = NULL;
|
2015-12-08 15:33:45 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->hint == GDK_SURFACE_TYPE_HINT_DIALOG && !impl->transient_for)
|
2016-04-26 03:46:25 +00:00
|
|
|
display_wayland->orphan_dialogs =
|
2018-03-20 14:14:10 +00:00
|
|
|
g_list_remove (display_wayland->orphan_dialogs, surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
2013-09-16 22:36:18 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
unset_transient_for_exported (surface);
|
2017-12-01 08:03:34 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_surface_clear_saved_size (surface);
|
2014-09-01 18:20:49 +00:00
|
|
|
impl->pending_commit = FALSE;
|
2013-09-16 22:36:18 +00:00
|
|
|
impl->mapped = FALSE;
|
2013-04-25 15:11:02 +00:00
|
|
|
}
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2013-04-25 15:11:02 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_hide (GdkSurface *surface)
|
2013-04-25 15:11:02 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_hide_surface (surface);
|
|
|
|
_gdk_surface_clear_update_area (surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_wayland_withdraw (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
if (!surface->destroyed)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (surface))
|
|
|
|
gdk_synthesize_surface_state (surface, 0, GDK_SURFACE_STATE_WITHDRAWN);
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_assert (!GDK_SURFACE_IS_MAPPED (surface));
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_hide_surface (surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_wayland_raise (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_wayland_lower (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_wayland_restack_toplevel (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkSurface *sibling,
|
|
|
|
gboolean above)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_wayland_move_resize (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gboolean with_move,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
2012-04-20 16:57:33 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2015-02-24 08:11:48 +00:00
|
|
|
|
2012-04-20 16:57:33 +00:00
|
|
|
if (with_move)
|
|
|
|
{
|
2014-08-21 15:39:09 +00:00
|
|
|
/* Each toplevel has in its own "root" coordinate system */
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_TYPE (surface) != GDK_SURFACE_TOPLEVEL)
|
2014-08-21 15:39:09 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
surface->x = x;
|
|
|
|
surface->y = y;
|
2016-07-08 08:54:36 +00:00
|
|
|
impl->position_method = POSITION_METHOD_MOVE_RESIZE;
|
2014-08-21 15:39:09 +00:00
|
|
|
}
|
2012-04-20 16:57:33 +00:00
|
|
|
}
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2012-01-17 14:59:03 +00:00
|
|
|
/* If this function is called with width and height = -1 then that means
|
2018-03-20 14:14:10 +00:00
|
|
|
* just move the surface - don't update its size
|
2012-01-17 14:59:03 +00:00
|
|
|
*/
|
|
|
|
if (width > 0 && height > 0)
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_maybe_configure (surface, width, height, impl->scale);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 17:08:32 +00:00
|
|
|
/* Avoid zero width/height as this is a protocol error */
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
sanitize_anchor_rect (GdkSurface *surface,
|
2017-01-12 17:08:32 +00:00
|
|
|
GdkRectangle *rect)
|
|
|
|
{
|
|
|
|
gint original_width = rect->width;
|
|
|
|
gint original_height = rect->height;
|
|
|
|
|
|
|
|
rect->width = MAX (1, rect->width);
|
|
|
|
rect->height = MAX (1, rect->height);
|
2017-02-01 08:41:07 +00:00
|
|
|
rect->x = MAX (rect->x + original_width - rect->width, 0);
|
|
|
|
rect->y = MAX (rect->y + original_height - rect->height, 0);
|
2017-01-12 17:08:32 +00:00
|
|
|
}
|
|
|
|
|
2016-08-08 07:00:42 +00:00
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_surface_wayland_move_to_rect (GdkSurface *surface,
|
|
|
|
const GdkRectangle *rect,
|
|
|
|
GdkGravity rect_anchor,
|
|
|
|
GdkGravity surface_anchor,
|
|
|
|
GdkAnchorHints anchor_hints,
|
|
|
|
gint rect_anchor_dx,
|
|
|
|
gint rect_anchor_dy)
|
2016-08-08 07:00:42 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-08-08 07:00:42 +00:00
|
|
|
|
|
|
|
impl->pending_move_to_rect.rect = *rect;
|
2018-03-20 14:14:10 +00:00
|
|
|
sanitize_anchor_rect (surface, &impl->pending_move_to_rect.rect);
|
2017-01-12 17:08:32 +00:00
|
|
|
|
2016-08-08 07:00:42 +00:00
|
|
|
impl->pending_move_to_rect.rect_anchor = rect_anchor;
|
2018-03-20 11:05:26 +00:00
|
|
|
impl->pending_move_to_rect.surface_anchor = surface_anchor;
|
2016-08-08 07:00:42 +00:00
|
|
|
impl->pending_move_to_rect.anchor_hints = anchor_hints;
|
|
|
|
impl->pending_move_to_rect.rect_anchor_dx = rect_anchor_dx;
|
|
|
|
impl->pending_move_to_rect.rect_anchor_dy = rect_anchor_dy;
|
2016-07-08 08:54:36 +00:00
|
|
|
|
|
|
|
impl->position_method = POSITION_METHOD_MOVE_TO_RECT;
|
2016-08-08 07:00:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-18 20:38:49 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_wayland_get_geometry (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
if (!GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
if (x)
|
2018-03-20 14:14:10 +00:00
|
|
|
*x = surface->x;
|
2010-12-18 20:38:49 +00:00
|
|
|
if (y)
|
2018-03-20 14:14:10 +00:00
|
|
|
*y = surface->y;
|
2010-12-18 20:38:49 +00:00
|
|
|
if (width)
|
2018-03-20 14:14:10 +00:00
|
|
|
*width = surface->width;
|
2010-12-18 20:38:49 +00:00
|
|
|
if (height)
|
2018-03-20 14:14:10 +00:00
|
|
|
*height = surface->height;
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-28 01:58:13 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_wayland_get_root_coords (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint *root_x,
|
|
|
|
gint *root_y)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2016-08-04 06:07:47 +00:00
|
|
|
/*
|
|
|
|
* Wayland does not have a global coordinate space shared between surfaces. In
|
|
|
|
* fact, for regular toplevels, we have no idea where our surfaces are
|
|
|
|
* positioned, relatively.
|
|
|
|
*
|
|
|
|
* However, there are some cases like popups and subsurfaces where we do have
|
2018-03-20 14:14:10 +00:00
|
|
|
* some amount of control over the placement of our surface, and we can
|
|
|
|
* semi-accurately control the x/y position of these surfaces, if they are
|
2016-08-04 06:07:47 +00:00
|
|
|
* relative to another surface.
|
|
|
|
*
|
|
|
|
* To pretend we have something called a root coordinate space, assume all
|
2018-03-20 14:14:10 +00:00
|
|
|
* parent-less surfaces are positioned in (0, 0), and all relative positioned
|
2016-08-04 06:07:47 +00:00
|
|
|
* popups and subsurfaces are placed within this fake root coordinate space.
|
|
|
|
*
|
2018-03-20 14:14:10 +00:00
|
|
|
* For example a 200x200 large toplevel surface will have the position (0, 0).
|
2016-08-04 06:07:47 +00:00
|
|
|
* If a popup positioned in the middle of the toplevel will have the fake
|
|
|
|
* position (100,100). Furthermore, if a positioned is placed in the middle
|
|
|
|
* that popup, will have the fake position (150,150), even though it has the
|
2018-03-20 14:14:10 +00:00
|
|
|
* relative position (50,50). These three surfaces would make up one single
|
2016-08-04 06:07:47 +00:00
|
|
|
* fake root coordinate space.
|
|
|
|
*/
|
2012-04-23 16:26:49 +00:00
|
|
|
|
2013-08-30 07:23:56 +00:00
|
|
|
if (root_x)
|
2018-03-20 14:14:10 +00:00
|
|
|
*root_x = surface->x + x;
|
2013-08-30 07:23:56 +00:00
|
|
|
|
|
|
|
if (root_y)
|
2018-03-20 14:14:10 +00:00
|
|
|
*root_y = surface->y + y;
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_wayland_get_device_state (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkDevice *device,
|
|
|
|
gdouble *x,
|
|
|
|
gdouble *y,
|
|
|
|
GdkModifierType *mask)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
gboolean return_val;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_val_if_fail (surface == NULL || GDK_IS_SURFACE (surface), FALSE);
|
2010-12-18 20:38:49 +00:00
|
|
|
|
|
|
|
return_val = TRUE;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (!GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *child;
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_DEVICE_GET_CLASS (device)->query_state (device, surface,
|
2017-08-08 19:43:03 +00:00
|
|
|
&child,
|
2013-09-16 21:23:29 +00:00
|
|
|
NULL, NULL,
|
|
|
|
x, y, mask);
|
2010-12-18 20:38:49 +00:00
|
|
|
return_val = (child != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return return_val;
|
|
|
|
}
|
|
|
|
|
2013-09-16 21:23:29 +00:00
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_surface_wayland_input_shape_combine_region (GdkSurface *surface,
|
|
|
|
const cairo_region_t *shape_region,
|
|
|
|
gint offset_x,
|
|
|
|
gint offset_y)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2014-03-17 20:02:47 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2014-03-17 20:02:47 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
g_clear_pointer (&impl->input_region, cairo_region_destroy);
|
2014-11-07 16:16:59 +00:00
|
|
|
|
|
|
|
if (shape_region)
|
|
|
|
{
|
|
|
|
impl->input_region = cairo_region_copy (shape_region);
|
|
|
|
cairo_region_translate (impl->input_region, offset_x, offset_y);
|
|
|
|
}
|
|
|
|
|
2016-07-01 08:48:16 +00:00
|
|
|
impl->input_region_dirty = TRUE;
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_destroy (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gboolean recursing,
|
|
|
|
gboolean foreign_destroy)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_if_fail (GDK_IS_SURFACE (surface));
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
/* Wayland surfaces can't be externally destroyed; we may possibly
|
2013-09-16 21:23:29 +00:00
|
|
|
* eventually want to use this path at display close-down
|
|
|
|
*/
|
2013-04-25 15:11:02 +00:00
|
|
|
g_return_if_fail (!foreign_destroy);
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_hide_surface (surface);
|
2017-11-06 23:30:27 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (surface->parent == NULL)
|
2017-11-06 23:30:27 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkWaylandDisplay *display = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
display->toplevels = g_list_remove (display->toplevels, surface);
|
2017-11-06 23:30:27 +00:00
|
|
|
}
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_focus (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
guint32 timestamp)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-03-08 09:03:06 +00:00
|
|
|
|
|
|
|
if (!impl->display_server.gtk_surface)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* We didn't have an event to fetch a time from, meaning we have nothing valid
|
|
|
|
* to send. This should rather be translated to a 'needs-attention' request or
|
|
|
|
* something.
|
|
|
|
*/
|
|
|
|
if (timestamp == GDK_CURRENT_TIME)
|
|
|
|
return;
|
|
|
|
|
|
|
|
gtk_surface1_present (impl->display_server.gtk_surface, timestamp);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_type_hint (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkSurfaceTypeHint hint)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2012-01-13 14:48:46 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2012-01-13 14:48:46 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
|
|
|
|
2012-01-13 14:48:46 +00:00
|
|
|
impl->hint = hint;
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
static GdkSurfaceTypeHint
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_type_hint (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2014-08-28 12:10:00 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2018-03-20 10:40:08 +00:00
|
|
|
return GDK_SURFACE_TYPE_HINT_NORMAL;
|
2014-08-28 12:10:00 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2014-08-28 12:10:00 +00:00
|
|
|
|
|
|
|
return impl->hint;
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
2016-06-28 07:01:22 +00:00
|
|
|
static void
|
|
|
|
gtk_surface_configure (void *data,
|
|
|
|
struct gtk_surface1 *gtk_surface,
|
|
|
|
struct wl_array *states)
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceState new_state = 0;
|
2016-06-28 07:01:22 +00:00
|
|
|
uint32_t *p;
|
|
|
|
|
|
|
|
wl_array_for_each (p, states)
|
|
|
|
{
|
|
|
|
uint32_t state = *p;
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case GTK_SURFACE1_STATE_TILED:
|
2018-03-20 10:40:08 +00:00
|
|
|
new_state |= GDK_SURFACE_STATE_TILED;
|
2016-06-28 07:01:22 +00:00
|
|
|
break;
|
2017-08-17 03:35:52 +00:00
|
|
|
|
|
|
|
/* Since v2 */
|
|
|
|
case GTK_SURFACE1_STATE_TILED_TOP:
|
2018-03-20 10:40:08 +00:00
|
|
|
new_state |= (GDK_SURFACE_STATE_TILED | GDK_SURFACE_STATE_TOP_TILED);
|
2017-08-17 03:35:52 +00:00
|
|
|
break;
|
|
|
|
case GTK_SURFACE1_STATE_TILED_RIGHT:
|
2018-03-20 10:40:08 +00:00
|
|
|
new_state |= (GDK_SURFACE_STATE_TILED | GDK_SURFACE_STATE_RIGHT_TILED);
|
2017-08-17 03:35:52 +00:00
|
|
|
break;
|
|
|
|
case GTK_SURFACE1_STATE_TILED_BOTTOM:
|
2018-03-20 10:40:08 +00:00
|
|
|
new_state |= (GDK_SURFACE_STATE_TILED | GDK_SURFACE_STATE_BOTTOM_TILED);
|
2017-08-17 03:35:52 +00:00
|
|
|
break;
|
|
|
|
case GTK_SURFACE1_STATE_TILED_LEFT:
|
2018-03-20 10:40:08 +00:00
|
|
|
new_state |= (GDK_SURFACE_STATE_TILED | GDK_SURFACE_STATE_LEFT_TILED);
|
2017-08-17 03:35:52 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Unknown state */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl->pending.state |= new_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_surface_configure_edges (void *data,
|
|
|
|
struct gtk_surface1 *gtk_surface,
|
|
|
|
struct wl_array *edge_constraints)
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = GDK_SURFACE (data);
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceState new_state = 0;
|
2017-08-17 03:35:52 +00:00
|
|
|
uint32_t *p;
|
|
|
|
|
|
|
|
wl_array_for_each (p, edge_constraints)
|
|
|
|
{
|
|
|
|
uint32_t constraint = *p;
|
|
|
|
|
|
|
|
switch (constraint)
|
|
|
|
{
|
|
|
|
case GTK_SURFACE1_EDGE_CONSTRAINT_RESIZABLE_TOP:
|
2018-03-20 10:40:08 +00:00
|
|
|
new_state |= GDK_SURFACE_STATE_TOP_RESIZABLE;
|
2017-08-17 03:35:52 +00:00
|
|
|
break;
|
|
|
|
case GTK_SURFACE1_EDGE_CONSTRAINT_RESIZABLE_RIGHT:
|
2018-03-20 10:40:08 +00:00
|
|
|
new_state |= GDK_SURFACE_STATE_RIGHT_RESIZABLE;
|
2017-08-17 03:35:52 +00:00
|
|
|
break;
|
|
|
|
case GTK_SURFACE1_EDGE_CONSTRAINT_RESIZABLE_BOTTOM:
|
2018-03-20 10:40:08 +00:00
|
|
|
new_state |= GDK_SURFACE_STATE_BOTTOM_RESIZABLE;
|
2017-08-17 03:35:52 +00:00
|
|
|
break;
|
|
|
|
case GTK_SURFACE1_EDGE_CONSTRAINT_RESIZABLE_LEFT:
|
2018-03-20 10:40:08 +00:00
|
|
|
new_state |= GDK_SURFACE_STATE_LEFT_RESIZABLE;
|
2017-08-17 03:35:52 +00:00
|
|
|
break;
|
2016-06-28 07:01:22 +00:00
|
|
|
default:
|
|
|
|
/* Unknown state */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl->pending.state |= new_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct gtk_surface1_listener gtk_surface_listener = {
|
2017-08-17 03:35:52 +00:00
|
|
|
gtk_surface_configure,
|
|
|
|
gtk_surface_configure_edges
|
2016-06-28 07:01:22 +00:00
|
|
|
};
|
|
|
|
|
2015-03-06 03:40:12 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_init_gtk_surface (GdkSurface *surface)
|
2015-03-06 03:40:12 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2015-03-06 03:40:12 +00:00
|
|
|
GdkWaylandDisplay *display =
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2015-03-06 03:40:12 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.gtk_surface != NULL)
|
2015-03-06 03:40:12 +00:00
|
|
|
return;
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_toplevel (surface))
|
2015-03-06 03:40:12 +00:00
|
|
|
return;
|
|
|
|
if (display->gtk_shell == NULL)
|
|
|
|
return;
|
|
|
|
|
2016-03-07 03:49:35 +00:00
|
|
|
impl->display_server.gtk_surface =
|
|
|
|
gtk_shell1_get_gtk_surface (display->gtk_shell,
|
|
|
|
impl->display_server.wl_surface);
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_set_geometry_hints (surface,
|
2016-04-05 16:17:40 +00:00
|
|
|
&impl->geometry_hints,
|
|
|
|
impl->geometry_mask);
|
2016-06-28 07:01:22 +00:00
|
|
|
gtk_surface1_add_listener (impl->display_server.gtk_surface,
|
|
|
|
>k_surface_listener,
|
2018-03-20 14:14:10 +00:00
|
|
|
surface);
|
2015-03-06 03:40:12 +00:00
|
|
|
}
|
|
|
|
|
2014-09-06 00:41:06 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
maybe_set_gtk_surface_modal (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2015-03-06 03:40:12 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_init_gtk_surface (surface);
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.gtk_surface == NULL)
|
2015-03-06 03:40:12 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (surface->modal_hint)
|
2016-03-07 03:49:35 +00:00
|
|
|
gtk_surface1_set_modal (impl->display_server.gtk_surface);
|
2015-03-06 03:40:12 +00:00
|
|
|
else
|
2016-03-07 03:49:35 +00:00
|
|
|
gtk_surface1_unset_modal (impl->display_server.gtk_surface);
|
2015-08-01 15:03:49 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_modal_hint (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gboolean modal)
|
2015-08-01 15:03:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
surface->modal_hint = modal;
|
|
|
|
maybe_set_gtk_surface_modal (surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_skip_taskbar_hint (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gboolean skips_taskbar)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_skip_pager_hint (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gboolean skips_pager)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_urgency_hint (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gboolean urgent)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_geometry_hints (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
const GdkGeometry *geometry,
|
|
|
|
GdkSurfaceHints geom_mask)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland;
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2017-12-18 12:00:36 +00:00
|
|
|
int min_width, min_height;
|
|
|
|
int max_width, max_height;
|
2012-01-09 17:11:22 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2012-01-09 17:11:22 +00:00
|
|
|
|
|
|
|
impl->geometry_hints = *geometry;
|
|
|
|
impl->geometry_mask = geom_mask;
|
2016-04-05 16:17:40 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_toplevel (surface))
|
2016-04-05 16:17:40 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_MIN_SIZE)
|
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
min_width = MAX (0, (geometry->min_width -
|
|
|
|
(impl->margin_left + impl->margin_right)));
|
|
|
|
min_height = MAX (0, (geometry->min_height -
|
|
|
|
(impl->margin_top + impl->margin_bottom)));
|
2016-04-05 16:17:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
min_width = 0;
|
|
|
|
min_height = 0;
|
2016-04-05 16:17:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_MAX_SIZE)
|
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
max_width = MAX (0, (geometry->max_width -
|
|
|
|
(impl->margin_left + impl->margin_right)));
|
|
|
|
max_height = MAX (0, (geometry->max_height -
|
|
|
|
(impl->margin_top + impl->margin_bottom)));
|
2016-04-05 16:17:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
max_width = 0;
|
|
|
|
max_height = 0;
|
2016-04-05 16:17:40 +00:00
|
|
|
}
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_set_min_size (impl->display_server.xdg_toplevel,
|
|
|
|
min_width, min_height);
|
|
|
|
xdg_toplevel_set_max_size (impl->display_server.xdg_toplevel,
|
|
|
|
max_width, max_height);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_set_min_size (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
min_width, min_height);
|
|
|
|
zxdg_toplevel_v6_set_max_size (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
max_width, max_height);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_set_title (GdkSurface *surface,
|
|
|
|
const gchar *title)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2016-06-08 05:31:45 +00:00
|
|
|
const char *end;
|
2017-03-20 18:56:22 +00:00
|
|
|
gsize title_length;
|
|
|
|
|
2010-12-18 20:38:49 +00:00
|
|
|
g_return_if_fail (title != NULL);
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
2013-03-16 23:57:17 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-03-16 23:57:17 +00:00
|
|
|
|
2016-07-01 08:51:32 +00:00
|
|
|
if (g_strcmp0 (impl->title, title) == 0)
|
|
|
|
return;
|
|
|
|
|
2013-08-21 11:09:29 +00:00
|
|
|
g_free (impl->title);
|
2016-06-08 05:31:45 +00:00
|
|
|
|
2017-03-20 18:56:22 +00:00
|
|
|
title_length = MIN (strlen (title), MAX_WL_BUFFER_SIZE);
|
|
|
|
if (g_utf8_validate (title, title_length, &end))
|
|
|
|
{
|
|
|
|
impl->title = g_malloc (end - title + 1);
|
|
|
|
memcpy (impl->title, title, end - title);
|
|
|
|
impl->title[end - title] = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
impl->title = g_utf8_make_valid (title, title_length);
|
2018-03-20 10:40:08 +00:00
|
|
|
g_warning ("Invalid utf8 passed to gdk_surface_set_title: '%s'", title);
|
2017-03-20 18:56:22 +00:00
|
|
|
}
|
2013-11-21 17:03:18 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_title (surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_set_startup_id (GdkSurface *surface,
|
|
|
|
const gchar *startup_id)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-12-14 15:34:00 +00:00
|
|
|
static gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
check_transient_for_loop (GdkSurface *surface,
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *parent)
|
2015-12-14 15:34:00 +00:00
|
|
|
{
|
|
|
|
while (parent)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2016-02-29 09:14:56 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (!GDK_IS_SURFACE_IMPL_WAYLAND(parent->impl))
|
2016-02-29 09:14:56 +00:00
|
|
|
return FALSE;
|
2015-12-14 15:34:00 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (parent->impl);
|
2018-03-20 14:14:10 +00:00
|
|
|
if (impl->transient_for == surface)
|
2015-12-14 15:34:00 +00:00
|
|
|
return TRUE;
|
|
|
|
parent = impl->transient_for;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-12-18 20:38:49 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_transient_for (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkSurface *parent)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-04-26 03:46:25 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
2018-03-20 14:14:10 +00:00
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurface *previous_parent;
|
2015-09-10 09:42:21 +00:00
|
|
|
|
2016-04-26 03:46:25 +00:00
|
|
|
g_assert (parent == NULL ||
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_get_display (surface) == gdk_surface_get_display (parent));
|
2016-04-26 03:46:25 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (check_transient_for_loop (surface, parent))
|
2015-12-14 15:34:00 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
g_warning ("Setting %p transient for %p would create a loop", surface, parent);
|
2015-12-14 15:34:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
unset_transient_for_exported (surface);
|
2016-07-13 07:24:19 +00:00
|
|
|
|
2015-12-08 15:33:45 +00:00
|
|
|
previous_parent = impl->transient_for;
|
2011-02-11 22:20:14 +00:00
|
|
|
impl->transient_for = parent;
|
2013-11-11 23:02:19 +00:00
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (impl->hint == GDK_SURFACE_TYPE_HINT_DIALOG)
|
2015-12-08 15:33:45 +00:00
|
|
|
{
|
|
|
|
if (!parent)
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_screen_add_orphan_dialog (surface);
|
2015-12-08 15:33:45 +00:00
|
|
|
else if (!previous_parent)
|
2016-04-26 03:46:25 +00:00
|
|
|
display_wayland->orphan_dialogs =
|
2018-03-20 14:14:10 +00:00
|
|
|
g_list_remove (display_wayland->orphan_dialogs, surface);
|
2015-12-08 15:33:45 +00:00
|
|
|
}
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_parent (surface, NULL);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_get_frame_extents (GdkSurface *surface,
|
|
|
|
GdkRectangle *rect)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2016-08-04 06:07:47 +00:00
|
|
|
*rect = (GdkRectangle) {
|
2018-03-20 14:14:10 +00:00
|
|
|
.x = surface->x,
|
|
|
|
.y = surface->y,
|
|
|
|
.width = surface->width,
|
|
|
|
.height = surface->height
|
2016-08-04 06:07:47 +00:00
|
|
|
};
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_accept_focus (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gboolean accept_focus)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_focus_on_map (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gboolean focus_on_map)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_icon_list (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GList *surfaces)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_set_icon_name (GdkSurface *surface,
|
|
|
|
const gchar *name)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_iconify (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland;
|
2015-02-10 23:06:38 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2015-02-10 23:06:38 +00:00
|
|
|
return;
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_toplevel (surface))
|
2015-02-10 23:06:38 +00:00
|
|
|
return;
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_set_minimized (impl->display_server.xdg_toplevel);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_set_minimized (impl->display_server.zxdg_toplevel_v6);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_deiconify (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_IS_MAPPED (surface))
|
|
|
|
gdk_surface_show (surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
else
|
2013-09-16 21:23:29 +00:00
|
|
|
/* Flip our client side flag, the real work happens on map. */
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_synthesize_surface_state (surface, GDK_SURFACE_STATE_ICONIFIED, 0);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_stick (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_unstick (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_maximize (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-03-16 23:34:57 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
2013-03-16 23:34:57 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_surface_save_size (surface);
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
if (is_realized_toplevel (surface))
|
|
|
|
{
|
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
|
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_set_maximized (impl->display_server.xdg_toplevel);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_set_maximized (impl->display_server.zxdg_toplevel_v6);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
}
|
2015-02-27 23:18:00 +00:00
|
|
|
else
|
2017-12-18 12:00:36 +00:00
|
|
|
{
|
|
|
|
gdk_synthesize_surface_state (surface, 0, GDK_SURFACE_STATE_MAXIMIZED);
|
|
|
|
}
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_unmaximize (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-03-16 23:34:57 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
2013-03-16 23:34:57 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (is_realized_toplevel (surface))
|
|
|
|
{
|
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
|
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_unset_maximized (impl->display_server.xdg_toplevel);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_unset_maximized (impl->display_server.zxdg_toplevel_v6);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
}
|
2015-02-27 23:18:00 +00:00
|
|
|
else
|
2017-12-18 12:00:36 +00:00
|
|
|
{
|
|
|
|
gdk_synthesize_surface_state (surface, GDK_SURFACE_STATE_MAXIMIZED, 0);
|
|
|
|
}
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 16:30:42 +00:00
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_fullscreen_on_monitor (GdkSurface *surface,
|
|
|
|
GdkMonitor *monitor)
|
2015-07-13 16:30:42 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-11-01 15:52:56 +00:00
|
|
|
struct wl_output *output = ((GdkWaylandMonitor *)monitor)->output;
|
2016-09-10 18:39:07 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2015-07-13 16:30:42 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_surface_save_size (surface);
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
if (is_realized_toplevel (surface))
|
2016-07-01 09:03:36 +00:00
|
|
|
{
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
|
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_set_fullscreen (impl->display_server.xdg_toplevel,
|
|
|
|
output);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_set_fullscreen (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
output);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2016-07-01 09:03:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_synthesize_surface_state (surface, 0, GDK_SURFACE_STATE_FULLSCREEN);
|
2017-11-01 15:52:56 +00:00
|
|
|
impl->initial_fullscreen_output = output;
|
2016-07-01 09:03:36 +00:00
|
|
|
}
|
2015-07-13 16:30:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-18 20:38:49 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_fullscreen (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-01-29 18:40:02 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
2013-01-29 18:40:02 +00:00
|
|
|
|
2017-11-01 15:52:56 +00:00
|
|
|
impl->initial_fullscreen_output = NULL;
|
2015-07-13 16:30:42 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_surface_save_size (surface);
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
if (is_realized_toplevel (surface))
|
|
|
|
{
|
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
|
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_set_fullscreen (impl->display_server.xdg_toplevel,
|
|
|
|
NULL);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_set_fullscreen (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
NULL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
}
|
2015-02-27 23:18:00 +00:00
|
|
|
else
|
2017-12-18 12:00:36 +00:00
|
|
|
{
|
|
|
|
gdk_synthesize_surface_state (surface, 0, GDK_SURFACE_STATE_FULLSCREEN);
|
|
|
|
}
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_unfullscreen (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-09-10 18:39:07 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
2013-01-29 18:40:02 +00:00
|
|
|
|
2017-11-01 15:52:56 +00:00
|
|
|
impl->initial_fullscreen_output = NULL;
|
2015-07-13 16:30:42 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (is_realized_toplevel (surface))
|
|
|
|
{
|
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
|
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_unset_fullscreen (impl->display_server.xdg_toplevel);
|
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_unset_fullscreen (impl->display_server.zxdg_toplevel_v6);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
}
|
2015-02-27 23:18:00 +00:00
|
|
|
else
|
2017-12-18 12:00:36 +00:00
|
|
|
{
|
|
|
|
gdk_synthesize_surface_state (surface, GDK_SURFACE_STATE_FULLSCREEN, 0);
|
|
|
|
}
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_set_keep_above (GdkSurface *surface,
|
|
|
|
gboolean setting)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_set_keep_below (GdkSurface *surface,
|
|
|
|
gboolean setting)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
static GdkSurface *
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_group (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_group (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkSurface *leader)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_set_decorations (GdkSurface *surface,
|
|
|
|
GdkWMDecoration decorations)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_get_decorations (GdkSurface *surface,
|
|
|
|
GdkWMDecoration *decorations)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_set_functions (GdkSurface *surface,
|
|
|
|
GdkWMFunction functions)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_begin_resize_drag (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkSurfaceEdge edge,
|
|
|
|
GdkDevice *device,
|
|
|
|
gint button,
|
2019-03-23 18:56:21 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2017-12-18 12:10:47 +00:00
|
|
|
guint32 timestamp)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland;
|
2014-08-20 18:23:58 +00:00
|
|
|
GdkEventSequence *sequence;
|
|
|
|
uint32_t resize_edges, serial;
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
switch (edge)
|
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_WEST:
|
2016-07-01 09:03:36 +00:00
|
|
|
resize_edges = ZXDG_TOPLEVEL_V6_RESIZE_EDGE_TOP_LEFT;
|
2010-12-18 20:38:49 +00:00
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH:
|
2016-07-01 09:03:36 +00:00
|
|
|
resize_edges = ZXDG_TOPLEVEL_V6_RESIZE_EDGE_TOP;
|
2010-12-18 20:38:49 +00:00
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_NORTH_EAST:
|
2016-07-01 09:03:36 +00:00
|
|
|
resize_edges = ZXDG_TOPLEVEL_V6_RESIZE_EDGE_TOP_RIGHT;
|
2010-12-18 20:38:49 +00:00
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_WEST:
|
2016-07-01 09:03:36 +00:00
|
|
|
resize_edges = ZXDG_TOPLEVEL_V6_RESIZE_EDGE_LEFT;
|
2010-12-18 20:38:49 +00:00
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_EAST:
|
2016-07-01 09:03:36 +00:00
|
|
|
resize_edges = ZXDG_TOPLEVEL_V6_RESIZE_EDGE_RIGHT;
|
2010-12-18 20:38:49 +00:00
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_WEST:
|
2016-07-01 09:03:36 +00:00
|
|
|
resize_edges = ZXDG_TOPLEVEL_V6_RESIZE_EDGE_BOTTOM_LEFT;
|
2010-12-18 20:38:49 +00:00
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH:
|
2016-07-01 09:03:36 +00:00
|
|
|
resize_edges = ZXDG_TOPLEVEL_V6_RESIZE_EDGE_BOTTOM;
|
2010-12-18 20:38:49 +00:00
|
|
|
break;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
case GDK_SURFACE_EDGE_SOUTH_EAST:
|
2016-07-01 09:03:36 +00:00
|
|
|
resize_edges = ZXDG_TOPLEVEL_V6_RESIZE_EDGE_BOTTOM_RIGHT;
|
2010-12-18 20:38:49 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-03-20 10:40:08 +00:00
|
|
|
g_warning ("gdk_surface_begin_resize_drag: bad resize edge %d!", edge);
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_toplevel (surface))
|
2013-03-20 15:38:36 +00:00
|
|
|
return;
|
2013-09-16 21:23:29 +00:00
|
|
|
|
2016-02-23 19:32:31 +00:00
|
|
|
serial = _gdk_wayland_seat_get_last_implicit_grab_serial (gdk_device_get_seat (device),
|
|
|
|
&sequence);
|
2014-08-20 18:23:58 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_resize (impl->display_server.xdg_toplevel,
|
2016-07-01 09:03:36 +00:00
|
|
|
gdk_wayland_device_get_wl_seat (device),
|
|
|
|
serial, resize_edges);
|
2017-12-18 12:00:36 +00:00
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_resize (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
gdk_wayland_device_get_wl_seat (device),
|
|
|
|
serial, resize_edges);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2014-08-20 18:23:58 +00:00
|
|
|
|
|
|
|
if (sequence)
|
|
|
|
gdk_wayland_device_unset_touch_grab (device, sequence);
|
2012-01-06 16:49:22 +00:00
|
|
|
|
2012-01-09 16:00:14 +00:00
|
|
|
/* This is needed since Wayland will absorb all the pointer events after the
|
|
|
|
* above function - FIXME: Is this always safe..?
|
2012-01-06 16:49:22 +00:00
|
|
|
*/
|
2015-12-09 11:55:39 +00:00
|
|
|
gdk_seat_ungrab (gdk_device_get_seat (device));
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_begin_move_drag (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkDevice *device,
|
|
|
|
gint button,
|
2019-03-23 18:56:21 +00:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2017-12-18 12:10:47 +00:00
|
|
|
guint32 timestamp)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland;
|
2014-08-20 18:23:58 +00:00
|
|
|
GdkEventSequence *sequence;
|
|
|
|
uint32_t serial;
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface) ||
|
|
|
|
!SURFACE_IS_TOPLEVEL (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
display_wayland = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2010-12-18 20:38:49 +00:00
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_toplevel (surface))
|
2013-03-20 15:38:36 +00:00
|
|
|
return;
|
|
|
|
|
2016-02-23 19:32:31 +00:00
|
|
|
serial = _gdk_wayland_seat_get_last_implicit_grab_serial (gdk_device_get_seat (device),
|
|
|
|
&sequence);
|
2017-12-18 12:00:36 +00:00
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_move (impl->display_server.xdg_toplevel,
|
2016-07-01 09:03:36 +00:00
|
|
|
gdk_wayland_device_get_wl_seat (device),
|
|
|
|
serial);
|
2017-12-18 12:00:36 +00:00
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_move (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
gdk_wayland_device_get_wl_seat (device),
|
|
|
|
serial);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
2014-08-20 18:23:58 +00:00
|
|
|
if (sequence)
|
|
|
|
gdk_wayland_device_unset_touch_grab (device, sequence);
|
2012-01-09 16:00:14 +00:00
|
|
|
|
|
|
|
/* This is needed since Wayland will absorb all the pointer events after the
|
|
|
|
* above function - FIXME: Is this always safe..?
|
|
|
|
*/
|
2015-12-09 11:55:39 +00:00
|
|
|
gdk_seat_ungrab (gdk_device_get_seat (device));
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_opacity (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
gdouble opacity)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_destroy_notify (GdkSurface *surface)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
if (!GDK_SURFACE_DESTROYED (surface))
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
g_warning ("GdkSurface %p unexpectedly destroyed", surface);
|
|
|
|
_gdk_surface_destroy (surface, TRUE);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_object_unref (surface);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
|
|
|
|
2013-06-04 09:39:36 +00:00
|
|
|
static gint
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_scale_factor (GdkSurface *surface)
|
2013-06-04 09:39:36 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2013-06-04 09:39:36 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return impl->scale;
|
|
|
|
}
|
|
|
|
|
2013-05-14 20:23:33 +00:00
|
|
|
static void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_set_opaque_region (GdkSurface *surface,
|
|
|
|
cairo_region_t *region)
|
2013-05-14 20:23:33 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-05-14 20:23:33 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2013-05-14 20:23:33 +00:00
|
|
|
return;
|
|
|
|
|
2014-03-17 20:08:35 +00:00
|
|
|
g_clear_pointer (&impl->opaque_region, cairo_region_destroy);
|
|
|
|
impl->opaque_region = cairo_region_reference (region);
|
2016-07-01 08:48:16 +00:00
|
|
|
impl->opaque_region_dirty = TRUE;
|
2013-05-14 20:23:33 +00:00
|
|
|
}
|
|
|
|
|
2014-02-07 22:20:14 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_shadow_width (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
int left,
|
|
|
|
int right,
|
|
|
|
int top,
|
|
|
|
int bottom)
|
2014-02-07 22:20:14 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2014-11-11 11:07:24 +00:00
|
|
|
gint new_width, new_height;
|
2014-02-07 22:20:14 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
if (GDK_SURFACE_DESTROYED (surface))
|
2014-02-07 22:20:14 +00:00
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
/* Reconfigure surface to keep the same surface geometry */
|
|
|
|
new_width = surface->width -
|
2014-11-11 11:07:24 +00:00
|
|
|
(impl->margin_left + impl->margin_right) + (left + right);
|
2018-03-20 14:14:10 +00:00
|
|
|
new_height = surface->height -
|
2014-11-11 11:07:24 +00:00
|
|
|
(impl->margin_top + impl->margin_bottom) + (top + bottom);
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_maybe_configure (surface, new_width, new_height, impl->scale);
|
2014-11-11 11:07:24 +00:00
|
|
|
|
2014-02-27 21:54:20 +00:00
|
|
|
impl->margin_left = left;
|
|
|
|
impl->margin_right = right;
|
|
|
|
impl->margin_top = top;
|
|
|
|
impl->margin_bottom = bottom;
|
2014-02-07 22:20:14 +00:00
|
|
|
}
|
2013-06-04 09:39:36 +00:00
|
|
|
|
2014-05-24 03:01:27 +00:00
|
|
|
static gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_show_window_menu (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkEvent *event)
|
2014-05-24 03:01:27 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-12-18 12:00:36 +00:00
|
|
|
GdkWaylandDisplay *display_wayland =
|
|
|
|
GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2014-05-24 03:01:27 +00:00
|
|
|
struct wl_seat *seat;
|
2014-08-13 19:05:58 +00:00
|
|
|
GdkWaylandDevice *device;
|
2014-05-24 03:01:27 +00:00
|
|
|
double x, y;
|
2016-07-01 09:03:36 +00:00
|
|
|
uint32_t serial;
|
2014-05-24 03:01:27 +00:00
|
|
|
|
2017-10-11 13:55:19 +00:00
|
|
|
switch ((guint) event->any.type)
|
2014-05-24 03:01:27 +00:00
|
|
|
{
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
case GDK_BUTTON_RELEASE:
|
2014-08-13 19:05:58 +00:00
|
|
|
case GDK_TOUCH_BEGIN:
|
|
|
|
case GDK_TOUCH_END:
|
2014-05-24 03:01:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2017-12-18 12:00:36 +00:00
|
|
|
if (!is_realized_toplevel (surface))
|
2014-05-24 03:01:27 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2014-08-13 19:05:58 +00:00
|
|
|
device = GDK_WAYLAND_DEVICE (gdk_event_get_device (event));
|
|
|
|
seat = gdk_wayland_device_get_wl_seat (GDK_DEVICE (device));
|
2014-05-24 03:01:27 +00:00
|
|
|
gdk_event_get_coords (event, &x, &y);
|
|
|
|
|
2016-07-01 09:03:36 +00:00
|
|
|
serial = _gdk_wayland_device_get_implicit_grab_serial (device, event);
|
2017-12-18 12:00:36 +00:00
|
|
|
|
|
|
|
switch (display_wayland->shell_variant)
|
|
|
|
{
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_XDG_SHELL:
|
|
|
|
xdg_toplevel_show_window_menu (impl->display_server.xdg_toplevel,
|
2016-07-01 09:03:36 +00:00
|
|
|
seat, serial, x, y);
|
2017-12-18 12:00:36 +00:00
|
|
|
break;
|
|
|
|
case GDK_WAYLAND_SHELL_VARIANT_ZXDG_SHELL_V6:
|
|
|
|
zxdg_toplevel_v6_show_window_menu (impl->display_server.zxdg_toplevel_v6,
|
|
|
|
seat, serial, x, y);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
2014-05-24 03:01:27 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2017-09-18 02:09:10 +00:00
|
|
|
static gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_supports_edge_constraints (GdkSurface *surface)
|
2017-09-18 02:09:10 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-10-04 21:25:31 +00:00
|
|
|
struct gtk_surface1 *gtk_surface = impl->display_server.gtk_surface;
|
2017-09-18 02:09:10 +00:00
|
|
|
|
2017-10-04 21:25:31 +00:00
|
|
|
if (!gtk_surface)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return gtk_surface1_get_version (gtk_surface) >= GTK_SURFACE1_CONFIGURE_EDGES_SINCE_VERSION;
|
2017-09-18 02:09:10 +00:00
|
|
|
}
|
|
|
|
|
2010-12-18 20:38:49 +00:00
|
|
|
static void
|
2018-03-20 10:40:08 +00:00
|
|
|
_gdk_surface_impl_wayland_class_init (GdkSurfaceImplWaylandClass *klass)
|
2010-12-18 20:38:49 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplClass *impl_class = GDK_SURFACE_IMPL_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = gdk_surface_impl_wayland_finalize;
|
|
|
|
|
|
|
|
impl_class->show = gdk_wayland_surface_show;
|
|
|
|
impl_class->hide = gdk_wayland_surface_hide;
|
|
|
|
impl_class->withdraw = gdk_surface_wayland_withdraw;
|
|
|
|
impl_class->raise = gdk_surface_wayland_raise;
|
|
|
|
impl_class->lower = gdk_surface_wayland_lower;
|
|
|
|
impl_class->restack_toplevel = gdk_surface_wayland_restack_toplevel;
|
|
|
|
impl_class->move_resize = gdk_surface_wayland_move_resize;
|
|
|
|
impl_class->move_to_rect = gdk_surface_wayland_move_to_rect;
|
|
|
|
impl_class->get_geometry = gdk_surface_wayland_get_geometry;
|
|
|
|
impl_class->get_root_coords = gdk_surface_wayland_get_root_coords;
|
|
|
|
impl_class->get_device_state = gdk_surface_wayland_get_device_state;
|
|
|
|
impl_class->input_shape_combine_region = gdk_surface_wayland_input_shape_combine_region;
|
|
|
|
impl_class->destroy = gdk_wayland_surface_destroy;
|
|
|
|
impl_class->beep = gdk_surface_impl_wayland_beep;
|
|
|
|
|
|
|
|
impl_class->focus = gdk_wayland_surface_focus;
|
|
|
|
impl_class->set_type_hint = gdk_wayland_surface_set_type_hint;
|
|
|
|
impl_class->get_type_hint = gdk_wayland_surface_get_type_hint;
|
|
|
|
impl_class->set_modal_hint = gdk_wayland_surface_set_modal_hint;
|
|
|
|
impl_class->set_skip_taskbar_hint = gdk_wayland_surface_set_skip_taskbar_hint;
|
|
|
|
impl_class->set_skip_pager_hint = gdk_wayland_surface_set_skip_pager_hint;
|
|
|
|
impl_class->set_urgency_hint = gdk_wayland_surface_set_urgency_hint;
|
|
|
|
impl_class->set_geometry_hints = gdk_wayland_surface_set_geometry_hints;
|
|
|
|
impl_class->set_title = gdk_wayland_surface_set_title;
|
|
|
|
impl_class->set_startup_id = gdk_wayland_surface_set_startup_id;
|
|
|
|
impl_class->set_transient_for = gdk_wayland_surface_set_transient_for;
|
|
|
|
impl_class->get_frame_extents = gdk_wayland_surface_get_frame_extents;
|
|
|
|
impl_class->set_accept_focus = gdk_wayland_surface_set_accept_focus;
|
|
|
|
impl_class->set_focus_on_map = gdk_wayland_surface_set_focus_on_map;
|
|
|
|
impl_class->set_icon_list = gdk_wayland_surface_set_icon_list;
|
|
|
|
impl_class->set_icon_name = gdk_wayland_surface_set_icon_name;
|
|
|
|
impl_class->iconify = gdk_wayland_surface_iconify;
|
|
|
|
impl_class->deiconify = gdk_wayland_surface_deiconify;
|
|
|
|
impl_class->stick = gdk_wayland_surface_stick;
|
|
|
|
impl_class->unstick = gdk_wayland_surface_unstick;
|
|
|
|
impl_class->maximize = gdk_wayland_surface_maximize;
|
|
|
|
impl_class->unmaximize = gdk_wayland_surface_unmaximize;
|
|
|
|
impl_class->fullscreen = gdk_wayland_surface_fullscreen;
|
|
|
|
impl_class->fullscreen_on_monitor = gdk_wayland_surface_fullscreen_on_monitor;
|
|
|
|
impl_class->unfullscreen = gdk_wayland_surface_unfullscreen;
|
|
|
|
impl_class->set_keep_above = gdk_wayland_surface_set_keep_above;
|
|
|
|
impl_class->set_keep_below = gdk_wayland_surface_set_keep_below;
|
|
|
|
impl_class->get_group = gdk_wayland_surface_get_group;
|
|
|
|
impl_class->set_group = gdk_wayland_surface_set_group;
|
|
|
|
impl_class->set_decorations = gdk_wayland_surface_set_decorations;
|
|
|
|
impl_class->get_decorations = gdk_wayland_surface_get_decorations;
|
|
|
|
impl_class->set_functions = gdk_wayland_surface_set_functions;
|
|
|
|
impl_class->begin_resize_drag = gdk_wayland_surface_begin_resize_drag;
|
|
|
|
impl_class->begin_move_drag = gdk_wayland_surface_begin_move_drag;
|
|
|
|
impl_class->set_opacity = gdk_wayland_surface_set_opacity;
|
|
|
|
impl_class->destroy_notify = gdk_wayland_surface_destroy_notify;
|
|
|
|
impl_class->register_dnd = _gdk_wayland_surface_register_dnd;
|
|
|
|
impl_class->drag_begin = _gdk_wayland_surface_drag_begin;
|
|
|
|
impl_class->get_scale_factor = gdk_wayland_surface_get_scale_factor;
|
|
|
|
impl_class->set_opaque_region = gdk_wayland_surface_set_opaque_region;
|
|
|
|
impl_class->set_shadow_width = gdk_wayland_surface_set_shadow_width;
|
|
|
|
impl_class->show_window_menu = gdk_wayland_surface_show_window_menu;
|
|
|
|
impl_class->create_gl_context = gdk_wayland_surface_create_gl_context;
|
|
|
|
impl_class->supports_edge_constraints = gdk_wayland_surface_supports_edge_constraints;
|
2015-09-10 09:42:21 +00:00
|
|
|
|
2017-11-18 04:22:02 +00:00
|
|
|
signals[COMMITTED] = g_signal_new (g_intern_static_string ("committed"),
|
2015-09-10 09:42:21 +00:00
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
G_TYPE_NONE, 0);
|
2010-12-18 20:38:49 +00:00
|
|
|
}
|
2012-02-27 14:06:22 +00:00
|
|
|
|
|
|
|
void
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_surface_set_grab_seat (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkSeat *seat)
|
2012-02-27 14:06:22 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2012-03-05 19:41:11 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_if_fail (surface != NULL);
|
2012-03-05 19:41:11 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2012-07-11 13:29:43 +00:00
|
|
|
impl->grab_input_seat = seat;
|
2012-02-27 14:06:22 +00:00
|
|
|
}
|
2013-01-23 21:20:05 +00:00
|
|
|
|
|
|
|
/**
|
2018-03-20 10:40:08 +00:00
|
|
|
* gdk_wayland_surface_get_wl_surface:
|
2018-03-20 14:14:10 +00:00
|
|
|
* @surface: (type GdkWaylandSurface): a #GdkSurface
|
2013-01-23 21:20:05 +00:00
|
|
|
*
|
2018-03-20 10:40:08 +00:00
|
|
|
* Returns the Wayland surface of a #GdkSurface.
|
2013-01-23 21:20:05 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer none): a Wayland wl_surface
|
|
|
|
*/
|
|
|
|
struct wl_surface *
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_wl_surface (GdkSurface *surface)
|
2013-01-23 21:20:05 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WAYLAND_SURFACE (surface), NULL);
|
2013-01-23 21:20:05 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
return GDK_SURFACE_IMPL_WAYLAND (surface->impl)->display_server.wl_surface;
|
2013-01-23 21:20:05 +00:00
|
|
|
}
|
|
|
|
|
2016-05-17 13:02:01 +00:00
|
|
|
struct wl_output *
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_wl_output (GdkSurface *surface)
|
2016-05-17 13:02:01 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2016-05-17 13:02:01 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WAYLAND_SURFACE (surface), NULL);
|
2016-05-17 13:02:01 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-05-17 13:02:01 +00:00
|
|
|
/* We pick the head of the list as this is the last entered output */
|
|
|
|
if (impl->display_server.outputs)
|
|
|
|
return (struct wl_output *) impl->display_server.outputs->data;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-10-09 09:06:48 +00:00
|
|
|
static struct wl_egl_window *
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_wl_egl_window (GdkSurface *surface)
|
2014-10-09 09:06:48 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2014-10-09 09:06:48 +00:00
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.egl_window == NULL)
|
2014-10-09 09:06:48 +00:00
|
|
|
{
|
2016-02-02 16:42:52 +00:00
|
|
|
impl->display_server.egl_window =
|
|
|
|
wl_egl_window_create (impl->display_server.wl_surface,
|
2015-02-28 03:28:28 +00:00
|
|
|
impl->wrapper->width * impl->scale,
|
|
|
|
impl->wrapper->height * impl->scale);
|
2016-02-02 16:42:52 +00:00
|
|
|
wl_surface_set_buffer_scale (impl->display_server.wl_surface, impl->scale);
|
2014-10-09 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 16:42:52 +00:00
|
|
|
return impl->display_server.egl_window;
|
2014-10-09 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EGLSurface
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_egl_surface (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
EGLConfig config)
|
2014-10-09 09:06:48 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkWaylandDisplay *display = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2014-10-09 09:06:48 +00:00
|
|
|
struct wl_egl_window *egl_window;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WAYLAND_SURFACE (surface), NULL);
|
2014-10-09 09:06:48 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2014-10-09 09:06:48 +00:00
|
|
|
|
|
|
|
if (impl->egl_surface == NULL)
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
egl_window = gdk_wayland_surface_get_wl_egl_window (surface);
|
2014-10-09 09:06:48 +00:00
|
|
|
|
|
|
|
impl->egl_surface =
|
2015-02-28 03:28:28 +00:00
|
|
|
eglCreateWindowSurface (display->egl_display, config, egl_window, NULL);
|
2014-10-09 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return impl->egl_surface;
|
|
|
|
}
|
|
|
|
|
2014-10-09 14:09:05 +00:00
|
|
|
EGLSurface
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_dummy_egl_surface (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
EGLConfig config)
|
2014-10-09 14:09:05 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkWaylandDisplay *display = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2014-10-09 14:09:05 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WAYLAND_SURFACE (surface), NULL);
|
2014-10-09 14:09:05 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2014-10-09 14:09:05 +00:00
|
|
|
|
|
|
|
if (impl->dummy_egl_surface == NULL)
|
|
|
|
{
|
2016-02-02 16:42:52 +00:00
|
|
|
impl->display_server.dummy_egl_window =
|
|
|
|
wl_egl_window_create (impl->display_server.wl_surface, 1, 1);
|
2014-10-09 14:09:05 +00:00
|
|
|
|
|
|
|
impl->dummy_egl_surface =
|
2016-02-02 16:42:52 +00:00
|
|
|
eglCreateWindowSurface (display->egl_display, config, impl->display_server.dummy_egl_window, NULL);
|
2014-10-09 14:09:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return impl->dummy_egl_surface;
|
|
|
|
}
|
|
|
|
|
2017-03-13 06:33:06 +00:00
|
|
|
struct gtk_surface1 *
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_get_gtk_surface (GdkSurface *surface)
|
2017-03-13 06:33:06 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WAYLAND_SURFACE (surface), NULL);
|
2017-03-13 06:33:06 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
return GDK_SURFACE_IMPL_WAYLAND (surface->impl)->display_server.gtk_surface;
|
2017-03-13 06:33:06 +00:00
|
|
|
}
|
2014-10-09 14:09:05 +00:00
|
|
|
|
2015-03-23 05:08:09 +00:00
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
maybe_set_gtk_surface_dbus_properties (GdkSurface *surface)
|
2015-03-23 05:08:09 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2015-03-06 03:40:12 +00:00
|
|
|
|
2015-03-23 05:08:09 +00:00
|
|
|
if (impl->application.was_set)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (impl->application.application_id == NULL &&
|
|
|
|
impl->application.app_menu_path == NULL &&
|
|
|
|
impl->application.menubar_path == NULL &&
|
|
|
|
impl->application.window_object_path == NULL &&
|
|
|
|
impl->application.application_object_path == NULL &&
|
|
|
|
impl->application.unique_bus_name == NULL)
|
|
|
|
return;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_init_gtk_surface (surface);
|
2016-02-02 16:42:52 +00:00
|
|
|
if (impl->display_server.gtk_surface == NULL)
|
2015-03-06 03:40:12 +00:00
|
|
|
return;
|
2015-03-23 05:08:09 +00:00
|
|
|
|
2016-03-07 03:49:35 +00:00
|
|
|
gtk_surface1_set_dbus_properties (impl->display_server.gtk_surface,
|
|
|
|
impl->application.application_id,
|
|
|
|
impl->application.app_menu_path,
|
|
|
|
impl->application.menubar_path,
|
|
|
|
impl->application.window_object_path,
|
|
|
|
impl->application.application_object_path,
|
|
|
|
impl->application.unique_bus_name);
|
2015-03-23 05:08:09 +00:00
|
|
|
impl->application.was_set = TRUE;
|
|
|
|
}
|
|
|
|
|
2013-08-30 11:56:45 +00:00
|
|
|
void
|
2017-12-18 12:10:47 +00:00
|
|
|
gdk_wayland_surface_set_dbus_properties_libgtk_only (GdkSurface *surface,
|
|
|
|
const char *application_id,
|
|
|
|
const char *app_menu_path,
|
|
|
|
const char *menubar_path,
|
|
|
|
const char *window_object_path,
|
|
|
|
const char *application_object_path,
|
|
|
|
const char *unique_bus_name)
|
2013-08-30 11:56:45 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2013-08-30 11:56:45 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_if_fail (GDK_IS_WAYLAND_SURFACE (surface));
|
2013-08-30 11:56:45 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2013-08-30 11:56:45 +00:00
|
|
|
|
2015-03-23 05:08:09 +00:00
|
|
|
impl->application.application_id = g_strdup (application_id);
|
|
|
|
impl->application.app_menu_path = g_strdup (app_menu_path);
|
|
|
|
impl->application.menubar_path = g_strdup (menubar_path);
|
|
|
|
impl->application.window_object_path = g_strdup (window_object_path);
|
|
|
|
impl->application.application_object_path =
|
|
|
|
g_strdup (application_object_path);
|
|
|
|
impl->application.unique_bus_name = g_strdup (unique_bus_name);
|
2013-08-30 11:56:45 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
maybe_set_gtk_surface_dbus_properties (surface);
|
2013-08-30 11:56:45 +00:00
|
|
|
}
|
2015-12-08 10:19:33 +00:00
|
|
|
|
|
|
|
void
|
2018-03-20 14:14:10 +00:00
|
|
|
_gdk_wayland_surface_offset_next_wl_buffer (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
int x,
|
|
|
|
int y)
|
2015-12-08 10:19:33 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2015-12-08 10:19:33 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_if_fail (GDK_IS_WAYLAND_SURFACE (surface));
|
2015-12-08 10:19:33 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2015-12-08 10:19:33 +00:00
|
|
|
|
|
|
|
impl->pending_buffer_offset_x = x;
|
|
|
|
impl->pending_buffer_offset_y = y;
|
|
|
|
}
|
2016-07-12 03:49:39 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
xdg_exported_handle (void *data,
|
|
|
|
struct zxdg_exported_v1 *zxdg_exported_v1,
|
|
|
|
const char *handle)
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = data;
|
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-07-12 03:49:39 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl->exported.callback (surface, handle, impl->exported.user_data);
|
2017-05-05 11:07:04 +00:00
|
|
|
g_clear_pointer (&impl->exported.user_data,
|
|
|
|
impl->exported.destroy_func);
|
2016-07-12 03:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct zxdg_exported_v1_listener xdg_exported_listener = {
|
|
|
|
xdg_exported_handle
|
|
|
|
};
|
|
|
|
|
2016-08-29 17:12:56 +00:00
|
|
|
/**
|
2018-03-20 10:40:08 +00:00
|
|
|
* GdkWaylandSurfaceExported:
|
2018-03-20 14:14:10 +00:00
|
|
|
* @surface: the #GdkSurface that is exported
|
2016-08-29 17:12:56 +00:00
|
|
|
* @handle: the handle
|
2018-03-20 10:40:08 +00:00
|
|
|
* @user_data: user data that was passed to gdk_wayland_surface_export_handle()
|
2016-08-29 17:12:56 +00:00
|
|
|
*
|
2018-03-20 14:14:10 +00:00
|
|
|
* Callback that gets called when the handle for a surface has been
|
2016-08-29 17:12:56 +00:00
|
|
|
* obtained from the Wayland compositor. The handle can be passed
|
2018-03-20 14:14:10 +00:00
|
|
|
* to other processes, for the purpose of marking surfaces as transient
|
2016-08-29 17:12:56 +00:00
|
|
|
* for out-of-process surfaces.
|
|
|
|
*/
|
|
|
|
|
2017-05-08 04:09:00 +00:00
|
|
|
static gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_is_exported (GdkSurface *surface)
|
2017-05-08 04:09:00 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-05-08 04:09:00 +00:00
|
|
|
|
|
|
|
return !!impl->display_server.xdg_exported;
|
|
|
|
}
|
|
|
|
|
2016-07-12 03:49:39 +00:00
|
|
|
/**
|
2018-03-20 10:40:08 +00:00
|
|
|
* gdk_wayland_surface_export_handle:
|
2018-03-20 14:14:10 +00:00
|
|
|
* @surface: the #GdkSurface to obtain a handle for
|
2016-08-29 17:12:56 +00:00
|
|
|
* @callback: callback to call with the handle
|
|
|
|
* @user_data: user data for @callback
|
|
|
|
* @destroy_func: destroy notify for @user_data
|
|
|
|
*
|
|
|
|
* Asynchronously obtains a handle for a surface that can be passed
|
|
|
|
* to other processes. When the handle has been obtained, @callback
|
|
|
|
* will be called.
|
|
|
|
*
|
2018-03-20 14:14:10 +00:00
|
|
|
* It is an error to call this function on a surface that is already
|
2016-08-29 17:12:56 +00:00
|
|
|
* exported.
|
|
|
|
*
|
2018-03-20 10:40:08 +00:00
|
|
|
* When the handle is no longer needed, gdk_wayland_surface_unexport_handle()
|
2016-08-29 17:12:56 +00:00
|
|
|
* should be called to clean up resources.
|
|
|
|
*
|
|
|
|
* The main purpose for obtaining a handle is to mark a surface
|
2018-03-20 14:14:10 +00:00
|
|
|
* from another surface as transient for this one, see
|
2018-03-20 10:40:08 +00:00
|
|
|
* gdk_wayland_surface_set_transient_for_exported().
|
2016-07-12 03:49:39 +00:00
|
|
|
*
|
2016-08-29 17:12:56 +00:00
|
|
|
* Note that this API depends on an unstable Wayland protocol,
|
|
|
|
* and thus may require changes in the future.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the handle has been requested, %FALSE if
|
|
|
|
* an error occurred.
|
2016-07-12 03:49:39 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_export_handle (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkWaylandSurfaceExported callback,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify destroy_func)
|
2016-07-12 03:49:39 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2016-07-12 03:49:39 +00:00
|
|
|
GdkWaylandDisplay *display_wayland;
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkDisplay *display = gdk_surface_get_display (surface);
|
2016-07-12 03:49:39 +00:00
|
|
|
struct zxdg_exported_v1 *xdg_exported;
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WAYLAND_SURFACE (surface), FALSE);
|
2016-07-12 03:49:39 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WAYLAND_DISPLAY (display), FALSE);
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-07-12 03:49:39 +00:00
|
|
|
display_wayland = GDK_WAYLAND_DISPLAY (display);
|
|
|
|
|
|
|
|
g_return_val_if_fail (!impl->display_server.xdg_exported, FALSE);
|
|
|
|
|
|
|
|
if (!display_wayland->xdg_exporter)
|
|
|
|
{
|
|
|
|
g_warning ("Server is missing xdg_foreign support");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xdg_exported = zxdg_exporter_v1_export (display_wayland->xdg_exporter,
|
|
|
|
impl->display_server.wl_surface);
|
2018-03-20 14:14:10 +00:00
|
|
|
zxdg_exported_v1_add_listener (xdg_exported, &xdg_exported_listener, surface);
|
2016-07-12 03:49:39 +00:00
|
|
|
|
|
|
|
impl->display_server.xdg_exported = xdg_exported;
|
|
|
|
impl->exported.callback = callback;
|
|
|
|
impl->exported.user_data = user_data;
|
|
|
|
impl->exported.destroy_func = destroy_func;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-03-20 10:40:08 +00:00
|
|
|
* gdk_wayland_surface_unexport_handle:
|
2018-03-20 14:14:10 +00:00
|
|
|
* @surface: the #GdkSurface to unexport
|
2016-08-29 17:12:56 +00:00
|
|
|
*
|
|
|
|
* Destroys the handle that was obtained with
|
2018-03-20 10:40:08 +00:00
|
|
|
* gdk_wayland_surface_export_handle().
|
2016-08-29 17:12:56 +00:00
|
|
|
*
|
2018-03-20 14:14:10 +00:00
|
|
|
* It is an error to call this function on a surface that
|
2016-08-29 17:12:56 +00:00
|
|
|
* does not have a handle.
|
2016-07-12 03:49:39 +00:00
|
|
|
*
|
2016-08-29 17:12:56 +00:00
|
|
|
* Note that this API depends on an unstable Wayland protocol,
|
|
|
|
* and thus may require changes in the future.
|
2016-07-12 03:49:39 +00:00
|
|
|
*/
|
|
|
|
void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_unexport_handle (GdkSurface *surface)
|
2016-07-12 03:49:39 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2016-07-12 03:49:39 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_if_fail (GDK_IS_WAYLAND_SURFACE (surface));
|
2016-07-12 03:49:39 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-07-12 03:49:39 +00:00
|
|
|
|
|
|
|
g_return_if_fail (impl->display_server.xdg_exported);
|
|
|
|
|
|
|
|
g_clear_pointer (&impl->display_server.xdg_exported,
|
|
|
|
zxdg_exported_v1_destroy);
|
|
|
|
g_clear_pointer (&impl->exported.user_data,
|
|
|
|
impl->exported.destroy_func);
|
|
|
|
}
|
2016-07-13 07:24:19 +00:00
|
|
|
|
|
|
|
static void
|
2018-03-20 14:14:10 +00:00
|
|
|
unset_transient_for_exported (GdkSurface *surface)
|
2016-07-13 07:24:19 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-07-13 07:24:19 +00:00
|
|
|
|
|
|
|
g_clear_pointer (&impl->imported_transient_for, zxdg_imported_v1_destroy);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
xdg_imported_destroyed (void *data,
|
|
|
|
struct zxdg_imported_v1 *zxdg_imported_v1)
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurface *surface = data;
|
2016-07-13 07:24:19 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
unset_transient_for_exported (surface);
|
2016-07-13 07:24:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct zxdg_imported_v1_listener xdg_imported_listener = {
|
|
|
|
xdg_imported_destroyed,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2018-03-20 10:40:08 +00:00
|
|
|
* gdk_wayland_surface_set_transient_for_exported:
|
2018-03-20 14:14:10 +00:00
|
|
|
* @surface: the #GdkSurface to make as transient
|
2016-08-29 17:12:56 +00:00
|
|
|
* @parent_handle_str: an exported handle for a surface
|
|
|
|
*
|
2018-03-20 14:14:10 +00:00
|
|
|
* Marks @surface as transient for the surface to which the given
|
2016-08-29 17:12:56 +00:00
|
|
|
* @parent_handle_str refers. Typically, the handle will originate
|
2018-03-20 10:40:08 +00:00
|
|
|
* from a gdk_wayland_surface_export_handle() call in another process.
|
2016-08-29 17:12:56 +00:00
|
|
|
*
|
|
|
|
* Note that this API depends on an unstable Wayland protocol,
|
|
|
|
* and thus may require changes in the future.
|
|
|
|
*
|
2018-03-20 14:14:10 +00:00
|
|
|
* Return value: %TRUE if the surface has been marked as transient,
|
2016-08-29 17:12:56 +00:00
|
|
|
* %FALSE if an error occurred.
|
2016-07-13 07:24:19 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_set_transient_for_exported (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
char *parent_handle_str)
|
2016-07-13 07:24:19 +00:00
|
|
|
{
|
2018-03-20 10:40:08 +00:00
|
|
|
GdkSurfaceImplWayland *impl;
|
2016-07-13 07:24:19 +00:00
|
|
|
GdkWaylandDisplay *display_wayland;
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkDisplay *display = gdk_surface_get_display (surface);
|
2016-07-13 07:24:19 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WAYLAND_SURFACE (surface), FALSE);
|
2016-07-13 07:24:19 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WAYLAND_DISPLAY (display), FALSE);
|
2018-08-19 03:21:41 +00:00
|
|
|
g_return_val_if_fail (!should_map_as_popup (surface), FALSE);
|
2016-07-13 07:24:19 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2016-07-13 07:24:19 +00:00
|
|
|
display_wayland = GDK_WAYLAND_DISPLAY (display);
|
|
|
|
|
|
|
|
if (!display_wayland->xdg_importer)
|
|
|
|
{
|
|
|
|
g_warning ("Server is missing xdg_foreign support");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_surface_set_transient_for (surface, NULL);
|
2016-07-13 07:24:19 +00:00
|
|
|
|
|
|
|
impl->imported_transient_for =
|
|
|
|
zxdg_importer_v1_import (display_wayland->xdg_importer, parent_handle_str);
|
|
|
|
zxdg_imported_v1_add_listener (impl->imported_transient_for,
|
|
|
|
&xdg_imported_listener,
|
2018-03-20 14:14:10 +00:00
|
|
|
surface);
|
2016-07-13 07:24:19 +00:00
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_sync_parent_of_imported (surface);
|
2016-07-13 07:24:19 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2017-03-22 09:21:02 +00:00
|
|
|
|
|
|
|
static struct zwp_keyboard_shortcuts_inhibitor_v1 *
|
2018-03-20 10:40:08 +00:00
|
|
|
gdk_wayland_surface_get_inhibitor (GdkSurfaceImplWayland *impl,
|
2017-03-22 09:21:02 +00:00
|
|
|
struct wl_seat *seat)
|
|
|
|
{
|
|
|
|
return g_hash_table_lookup (impl->shortcuts_inhibitors, seat);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_inhibit_shortcuts (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkSeat *gdk_seat)
|
2017-03-22 09:21:02 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl= GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
|
|
|
GdkWaylandDisplay *display = GDK_WAYLAND_DISPLAY (gdk_surface_get_display (surface));
|
|
|
|
struct wl_surface *wl_surface = impl->display_server.wl_surface;
|
2017-03-22 09:21:02 +00:00
|
|
|
struct wl_seat *seat = gdk_wayland_seat_get_wl_seat (gdk_seat);
|
|
|
|
struct zwp_keyboard_shortcuts_inhibitor_v1 *inhibitor;
|
|
|
|
|
|
|
|
if (display->keyboard_shortcuts_inhibit == NULL)
|
|
|
|
return;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
if (gdk_wayland_surface_get_inhibitor (impl, seat))
|
2017-03-22 09:21:02 +00:00
|
|
|
return; /* Already inhibitted */
|
|
|
|
|
|
|
|
inhibitor =
|
|
|
|
zwp_keyboard_shortcuts_inhibit_manager_v1_inhibit_shortcuts (
|
2018-03-20 14:14:10 +00:00
|
|
|
display->keyboard_shortcuts_inhibit, wl_surface, seat);
|
2017-03-22 09:21:02 +00:00
|
|
|
|
|
|
|
g_hash_table_insert (impl->shortcuts_inhibitors, seat, inhibitor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-03-20 14:14:10 +00:00
|
|
|
gdk_wayland_surface_restore_shortcuts (GdkSurface *surface,
|
2017-12-18 12:10:47 +00:00
|
|
|
GdkSeat *gdk_seat)
|
2017-03-22 09:21:02 +00:00
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
GdkSurfaceImplWayland *impl = GDK_SURFACE_IMPL_WAYLAND (surface->impl);
|
2017-03-22 09:21:02 +00:00
|
|
|
struct wl_seat *seat = gdk_wayland_seat_get_wl_seat (gdk_seat);
|
|
|
|
struct zwp_keyboard_shortcuts_inhibitor_v1 *inhibitor;
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
inhibitor = gdk_wayland_surface_get_inhibitor (impl, seat);
|
2017-03-22 09:21:02 +00:00
|
|
|
if (inhibitor == NULL)
|
|
|
|
return; /* Not inhibitted */
|
|
|
|
|
|
|
|
zwp_keyboard_shortcuts_inhibitor_v1_destroy (inhibitor);
|
|
|
|
g_hash_table_remove (impl->shortcuts_inhibitors, seat);
|
|
|
|
}
|
|
|
|
|