summaryrefslogtreecommitdiff
path: root/xwayland
diff options
context:
space:
mode:
authorQuentin Glidic <sardemff7+git@sardemff7.net>2016-08-12 10:41:35 +0200
committerQuentin Glidic <sardemff7+git@sardemff7.net>2016-08-14 09:29:08 +0200
commit955cec06c74a516a066bb88d42641eddebd7074a (patch)
tree44053845ee689234b1f4a0951ed93e61c13ca648 /xwayland
parent248dd1096518d15af70bbafe4826a1468ef90a6b (diff)
downloadweston-955cec06c74a516a066bb88d42641eddebd7074a.tar.gz
xwayland: Introduce a private struct for XWayland interface
libweston-desktop implements this private struct. Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net> Reviewed-by: Jonas Ådahl <jadahl@gmail.com> Acked-by: Giulio Camuffo <giulio.camuffo@kdab.com> Differential Revision: https://phabricator.freedesktop.org/D1208
Diffstat (limited to 'xwayland')
-rw-r--r--xwayland/launcher.c17
-rw-r--r--xwayland/window-manager.c128
-rw-r--r--xwayland/xwayland-api.h42
-rw-r--r--xwayland/xwayland-internal-interface.h62
4 files changed, 189 insertions, 60 deletions
diff --git a/xwayland/launcher.c b/xwayland/launcher.c
index 89723198..dcc4b972 100644
--- a/xwayland/launcher.c
+++ b/xwayland/launcher.c
@@ -341,6 +341,7 @@ const struct weston_xwayland_api api = {
weston_xwayland_xserver_loaded,
weston_xwayland_xserver_exited,
};
+extern const struct weston_xwayland_surface_api surface_api;
WL_EXPORT int
module_init(struct weston_compositor *compositor,
@@ -357,6 +358,13 @@ module_init(struct weston_compositor *compositor,
wxs->wl_display = display;
wxs->compositor = compositor;
+ if (weston_xwayland_get_api(compositor) != NULL ||
+ weston_xwayland_surface_get_api(compositor) != NULL) {
+ weston_log("The xwayland module APIs are already loaded.\n");
+ free(wxs);
+ return -1;
+ }
+
ret = weston_plugin_api_register(compositor, WESTON_XWAYLAND_API_NAME,
&api, sizeof(api));
if (ret < 0) {
@@ -365,6 +373,15 @@ module_init(struct weston_compositor *compositor,
return -1;
}
+ ret = weston_plugin_api_register(compositor,
+ WESTON_XWAYLAND_SURFACE_API_NAME,
+ &surface_api, sizeof(surface_api));
+ if (ret < 0) {
+ weston_log("Failed to register the xwayland surface API.\n");
+ free(wxs);
+ return -1;
+ }
+
wxs->destroy_listener.notify = weston_xserver_destroy;
wl_signal_add(&compositor->destroy_signal, &wxs->destroy_listener);
diff --git a/xwayland/window-manager.c b/xwayland/window-manager.c
index 60e9bd7e..4fab6027 100644
--- a/xwayland/window-manager.c
+++ b/xwayland/window-manager.c
@@ -39,6 +39,7 @@
#include <linux/input.h>
#include "xwayland.h"
+#include "xwayland-internal-interface.h"
#include "cairo-util.h"
#include "compositor.h"
@@ -132,7 +133,7 @@ struct weston_wm_window {
cairo_surface_t *cairo_surface;
uint32_t surface_id;
struct weston_surface *surface;
- struct shell_surface *shsurf;
+ struct weston_desktop_xwayland_surface *shsurf;
struct wl_listener surface_destroy_listener;
struct wl_event_source *repaint_source;
struct wl_event_source *configure_source;
@@ -395,8 +396,8 @@ static void
weston_wm_window_read_properties(struct weston_wm_window *window)
{
struct weston_wm *wm = window->wm;
- struct weston_shell_interface *shell_interface =
- &wm->server->compositor->shell_interface;
+ const struct weston_desktop_xwayland_interface *xwayland_interface =
+ wm->server->compositor->xwayland_interface;
#define F(field) offsetof(struct weston_wm_window, field)
const struct {
@@ -540,11 +541,11 @@ weston_wm_window_read_properties(struct weston_wm_window *window)
}
if (window->shsurf && window->name)
- shell_interface->set_title(window->shsurf, window->name);
+ xwayland_interface->set_title(window->shsurf, window->name);
if (window->frame && window->name)
frame_set_title(window->frame, window->name);
if (window->shsurf && window->pid > 0)
- shell_interface->set_pid(window->shsurf, window->pid);
+ xwayland_interface->set_pid(window->shsurf, window->pid);
}
static void
@@ -1043,8 +1044,8 @@ weston_wm_window_draw_decoration(void *data)
cairo_t *cr;
int x, y, width, height;
int32_t input_x, input_y, input_w, input_h;
- struct weston_shell_interface *shell_interface =
- &wm->server->compositor->shell_interface;
+ const struct weston_desktop_xwayland_interface *xwayland_interface =
+ wm->server->compositor->xwayland_interface;
uint32_t flags = 0;
struct weston_view *view;
@@ -1106,8 +1107,8 @@ weston_wm_window_draw_decoration(void *data)
pixman_region32_init_rect(&window->surface->pending.input,
input_x, input_y, input_w, input_h);
- shell_interface->set_window_geometry(window->shsurf,
- input_x, input_y, input_w, input_h);
+ xwayland_interface->set_window_geometry(window->shsurf,
+ input_x, input_y, input_w, input_h);
}
}
@@ -1352,8 +1353,8 @@ weston_wm_window_handle_moveresize(struct weston_wm_window *window,
struct weston_seat *seat = weston_wm_pick_seat_for_window(window);
struct weston_pointer *pointer = weston_seat_get_pointer(seat);
int detail;
- struct weston_shell_interface *shell_interface =
- &wm->server->compositor->shell_interface;
+ const struct weston_desktop_xwayland_interface *xwayland_interface =
+ wm->server->compositor->xwayland_interface;
if (!pointer || pointer->button_count != 1
|| !pointer->focus
@@ -1363,7 +1364,7 @@ weston_wm_window_handle_moveresize(struct weston_wm_window *window,
detail = client_message->data.data32[2];
switch (detail) {
case _NET_WM_MOVERESIZE_MOVE:
- shell_interface->move(window->shsurf, pointer);
+ xwayland_interface->move(window->shsurf, pointer);
break;
case _NET_WM_MOVERESIZE_SIZE_TOPLEFT:
case _NET_WM_MOVERESIZE_SIZE_TOP:
@@ -1373,7 +1374,7 @@ weston_wm_window_handle_moveresize(struct weston_wm_window *window,
case _NET_WM_MOVERESIZE_SIZE_BOTTOM:
case _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT:
case _NET_WM_MOVERESIZE_SIZE_LEFT:
- shell_interface->resize(window->shsurf, pointer, map[detail]);
+ xwayland_interface->resize(window->shsurf, pointer, map[detail]);
break;
case _NET_WM_MOVERESIZE_CANCEL:
break;
@@ -1415,10 +1416,10 @@ weston_wm_window_configure(void *data);
static void
weston_wm_window_set_toplevel(struct weston_wm_window *window)
{
- struct weston_shell_interface *shell_interface =
- &window->wm->server->compositor->shell_interface;
+ const struct weston_desktop_xwayland_interface *xwayland_interface =
+ window->wm->server->compositor->xwayland_interface;
- shell_interface->set_toplevel(window->shsurf);
+ xwayland_interface->set_toplevel(window->shsurf);
window->width = window->saved_width;
window->height = window->saved_height;
if (window->frame)
@@ -1439,8 +1440,8 @@ weston_wm_window_handle_state(struct weston_wm_window *window,
xcb_client_message_event_t *client_message)
{
struct weston_wm *wm = window->wm;
- struct weston_shell_interface *shell_interface =
- &wm->server->compositor->shell_interface;
+ const struct weston_desktop_xwayland_interface *xwayland_interface =
+ wm->server->compositor->xwayland_interface;
uint32_t action, property;
int maximized = weston_wm_window_is_maximized(window);
@@ -1455,9 +1456,8 @@ weston_wm_window_handle_state(struct weston_wm_window *window,
window->saved_height = window->height;
if (window->shsurf)
- shell_interface->set_fullscreen(window->shsurf,
- WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
- 0, NULL);
+ xwayland_interface->set_fullscreen(window->shsurf,
+ NULL);
} else {
if (window->shsurf)
weston_wm_window_set_toplevel(window);
@@ -1476,7 +1476,7 @@ weston_wm_window_handle_state(struct weston_wm_window *window,
window->saved_height = window->height;
if (window->shsurf)
- shell_interface->set_maximized(window->shsurf);
+ xwayland_interface->set_maximized(window->shsurf);
} else if (window->shsurf) {
weston_wm_window_set_toplevel(window);
}
@@ -1753,8 +1753,8 @@ static void
weston_wm_handle_button(struct weston_wm *wm, xcb_generic_event_t *event)
{
xcb_button_press_event_t *button = (xcb_button_press_event_t *) event;
- struct weston_shell_interface *shell_interface =
- &wm->server->compositor->shell_interface;
+ const struct weston_desktop_xwayland_interface *xwayland_interface =
+ wm->server->compositor->xwayland_interface;
struct weston_seat *seat;
struct weston_pointer *pointer;
struct weston_wm_window *window;
@@ -1794,13 +1794,13 @@ weston_wm_handle_button(struct weston_wm *wm, xcb_generic_event_t *event)
if (frame_status(window->frame) & FRAME_STATUS_MOVE) {
if (pointer)
- shell_interface->move(window->shsurf, pointer);
+ xwayland_interface->move(window->shsurf, pointer);
frame_status_clear(window->frame, FRAME_STATUS_MOVE);
}
if (frame_status(window->frame) & FRAME_STATUS_RESIZE) {
if (pointer)
- shell_interface->resize(window->shsurf, pointer, location);
+ xwayland_interface->resize(window->shsurf, pointer, location);
frame_status_clear(window->frame, FRAME_STATUS_RESIZE);
}
@@ -1815,7 +1815,7 @@ weston_wm_handle_button(struct weston_wm *wm, xcb_generic_event_t *event)
if (weston_wm_window_is_maximized(window)) {
window->saved_width = window->width;
window->saved_height = window->height;
- shell_interface->set_maximized(window->shsurf);
+ xwayland_interface->set_maximized(window->shsurf);
} else {
weston_wm_window_set_toplevel(window);
}
@@ -2333,6 +2333,12 @@ get_wm_window(struct weston_surface *surface)
return NULL;
}
+static bool
+is_wm_window(struct weston_surface *surface)
+{
+ return get_wm_window(surface) != NULL;
+}
+
static void
weston_wm_window_configure(void *data)
{
@@ -2431,9 +2437,8 @@ send_position(struct weston_surface *surface, int32_t x, int32_t y)
}
}
-static const struct weston_shell_client shell_client = {
+static const struct weston_xwayland_client_interface shell_client = {
send_configure,
- send_position
};
static int
@@ -2500,11 +2505,12 @@ xserver_map_shell_surface(struct weston_wm_window *window,
struct weston_surface *surface)
{
struct weston_wm *wm = window->wm;
- struct weston_shell_interface *shell_interface =
- &wm->server->compositor->shell_interface;
+ struct weston_desktop_xwayland *xwayland =
+ wm->server->compositor->xwayland;
+ const struct weston_desktop_xwayland_interface *xwayland_interface =
+ wm->server->compositor->xwayland_interface;
struct weston_output *output;
struct weston_wm_window *parent;
- int flags = 0;
weston_wm_window_read_properties(window);
@@ -2521,7 +2527,7 @@ xserver_map_shell_surface(struct weston_wm_window *window,
weston_wm_window_schedule_repaint(window);
- if (!shell_interface->create_shell_surface)
+ if (!xwayland_interface)
return;
if (window->surface->committed) {
@@ -2532,50 +2538,52 @@ xserver_map_shell_surface(struct weston_wm_window *window,
}
window->shsurf =
- shell_interface->create_shell_surface(shell_interface->shell,
- window->surface,
- &shell_client);
+ xwayland_interface->create_surface(xwayland,
+ window->surface,
+ &shell_client);
if (window->name)
- shell_interface->set_title(window->shsurf, window->name);
+ xwayland_interface->set_title(window->shsurf, window->name);
if (window->pid > 0)
- shell_interface->set_pid(window->shsurf, window->pid);
+ xwayland_interface->set_pid(window->shsurf, window->pid);
if (window->fullscreen) {
window->saved_width = window->width;
window->saved_height = window->height;
- shell_interface->set_fullscreen(window->shsurf,
- WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
- 0, NULL);
+ xwayland_interface->set_fullscreen(window->shsurf, NULL);
return;
} else if (legacy_fullscreen(wm, window, &output)) {
window->fullscreen = 1;
- shell_interface->set_fullscreen(window->shsurf,
- WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
- 0, output);
+ xwayland_interface->set_fullscreen(window->shsurf, output);
} else if (window->override_redirect) {
- shell_interface->set_xwayland(window->shsurf,
- window->x,
- window->y,
- WL_SHELL_SURFACE_TRANSIENT_INACTIVE);
+ xwayland_interface->set_xwayland(window->shsurf,
+ window->x, window->y);
} else if (window->transient_for && window->transient_for->surface) {
parent = window->transient_for;
- if (weston_wm_window_type_inactive(window))
- flags = WL_SHELL_SURFACE_TRANSIENT_INACTIVE;
- shell_interface->set_transient(window->shsurf,
- parent->surface,
- window->x - parent->x,
- window->y - parent->y, flags);
+ if (weston_wm_window_type_inactive(window)) {
+ xwayland_interface->set_transient(window->shsurf,
+ parent->surface,
+ window->x - parent->x,
+ window->y - parent->y);
+ } else {
+ xwayland_interface->set_toplevel(window->shsurf);
+ xwayland_interface->set_parent(window->shsurf,
+ parent->surface);
+ }
} else if (weston_wm_window_is_maximized(window)) {
- shell_interface->set_maximized(window->shsurf);
+ xwayland_interface->set_maximized(window->shsurf);
} else {
if (weston_wm_window_type_inactive(window)) {
- shell_interface->set_xwayland(window->shsurf,
- window->x,
- window->y,
- WL_SHELL_SURFACE_TRANSIENT_INACTIVE);
+ xwayland_interface->set_xwayland(window->shsurf,
+ window->x,
+ window->y);
} else {
- shell_interface->set_toplevel(window->shsurf);
+ xwayland_interface->set_toplevel(window->shsurf);
}
}
}
+
+const struct weston_xwayland_surface_api surface_api = {
+ is_wm_window,
+ send_position,
+};
diff --git a/xwayland/xwayland-api.h b/xwayland/xwayland-api.h
index 0802f481..317533ef 100644
--- a/xwayland/xwayland-api.h
+++ b/xwayland/xwayland-api.h
@@ -38,6 +38,7 @@ struct weston_compositor;
struct weston_xwayland;
#define WESTON_XWAYLAND_API_NAME "weston_xwayland_v1"
+#define WESTON_XWAYLAND_SURFACE_API_NAME "weston_xwayland_surface_v1"
typedef pid_t
(*weston_xwayland_spawn_xserver_func_t)(
@@ -127,6 +128,47 @@ weston_xwayland_get_api(struct weston_compositor *compositor)
return (const struct weston_xwayland_api *)api;
}
+/** The libweston Xwayland surface API
+ *
+ * This API allows control of the Xwayland libweston module surfaces.
+ * The module must be loaded at runtime with \a weston_compositor_load_xwayland,
+ * after which the API can be retrieved by using
+ * \a weston_xwayland_surface_get_api.
+ */
+struct weston_xwayland_surface_api {
+ /** Check if the surface is an Xwayland surface
+ *
+ * \param surface The surface.
+ */
+ bool
+ (*is_xwayland_surface)(struct weston_surface *surface);
+ /** Notify the Xwayland surface that its position changed.
+ *
+ * \param surface The Xwayland surface.
+ * \param x The x-axis position.
+ * \param y The y-axis position.
+ */
+ void
+ (*send_position)(struct weston_surface *surface, int32_t x, int32_t y);
+};
+
+/** Retrieve the API object for the libweston Xwayland surface.
+ *
+ * The module must have been previously loaded by calling
+ * \a weston_compositor_load_xwayland.
+ *
+ * \param compositor The compositor instance.
+ */
+static inline const struct weston_xwayland_surface_api *
+weston_xwayland_surface_get_api(struct weston_compositor *compositor)
+{
+ const void *api;
+ api = weston_plugin_api_get(compositor, WESTON_XWAYLAND_SURFACE_API_NAME,
+ sizeof(struct weston_xwayland_surface_api));
+ /* The cast is necessary to use this function in C++ code */
+ return (const struct weston_xwayland_surface_api *)api;
+}
+
#ifdef __cplusplus
}
#endif
diff --git a/xwayland/xwayland-internal-interface.h b/xwayland/xwayland-internal-interface.h
new file mode 100644
index 00000000..e7717300
--- /dev/null
+++ b/xwayland/xwayland-internal-interface.h
@@ -0,0 +1,62 @@
+/*
+ * Copyright © 2016 Quentin "Sardem FF7" Glidic
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#ifndef XWAYLAND_INTERNAL_INTERFACE_H
+#define XWAYLAND_INTERNAL_INTERFACE_H
+
+struct weston_desktop_xwayland;
+struct weston_desktop_xwayland_surface;
+
+struct weston_xwayland_client_interface {
+ void (*send_configure)(struct weston_surface *surface, int32_t width, int32_t height);
+};
+
+struct weston_desktop_xwayland_interface {
+ struct weston_desktop_xwayland_surface *(*create_surface)(struct weston_desktop_xwayland *xwayland,
+ struct weston_surface *surface,
+ const struct weston_xwayland_client_interface *client);
+ void (*set_toplevel)(struct weston_desktop_xwayland_surface *shsurf);
+ void (*set_parent)(struct weston_desktop_xwayland_surface *shsurf,
+ struct weston_surface *parent);
+ void (*set_transient)(struct weston_desktop_xwayland_surface *shsurf,
+ struct weston_surface *parent, int x, int y);
+ void (*set_fullscreen)(struct weston_desktop_xwayland_surface *shsurf,
+ struct weston_output *output);
+ void (*set_xwayland)(struct weston_desktop_xwayland_surface *shsurf,
+ int x, int y);
+ int (*move)(struct weston_desktop_xwayland_surface *shsurf,
+ struct weston_pointer *pointer);
+ int (*resize)(struct weston_desktop_xwayland_surface *shsurf,
+ struct weston_pointer *pointer, uint32_t edges);
+ void (*set_title)(struct weston_desktop_xwayland_surface *shsurf,
+ const char *title);
+ void (*set_window_geometry)(struct weston_desktop_xwayland_surface *shsurf,
+ int32_t x, int32_t y,
+ int32_t width, int32_t height);
+ void (*set_maximized)(struct weston_desktop_xwayland_surface *shsurf);
+ void (*set_pid)(struct weston_desktop_xwayland_surface *shsurf, pid_t pid);
+};
+
+#endif