clients/presentation-shm: use xdg_shell instead of wl_shell

wl_shell is deprecated, and using xdg_shell allows the client to run on
compositors which do not implement the old protocol. Functionality
should be identical.

Signed-off-by: Astatos Aner <random.bored.human@gmail.com>
dev
random human 5 years ago
parent e404b72fd5
commit 6d9fda7156
No known key found for this signature in database
GPG Key ID: 73E5A60444CC77A3
  1. 95
      clients/presentation-shm.c

@ -43,6 +43,7 @@
#include "shared/timespec-util.h" #include "shared/timespec-util.h"
#include "shared/os-compatibility.h" #include "shared/os-compatibility.h"
#include "presentation-time-client-protocol.h" #include "presentation-time-client-protocol.h"
#include "xdg-shell-client-protocol.h"
enum run_mode { enum run_mode {
RUN_MODE_FEEDBACK, RUN_MODE_FEEDBACK,
@ -66,7 +67,7 @@ struct display {
struct wl_display *display; struct wl_display *display;
struct wl_registry *registry; struct wl_registry *registry;
struct wl_compositor *compositor; struct wl_compositor *compositor;
struct wl_shell *shell; struct xdg_wm_base *wm_base;
struct wl_shm *shm; struct wl_shm *shm;
uint32_t formats; uint32_t formats;
@ -99,7 +100,9 @@ struct window {
int width, height; int width, height;
enum run_mode mode; enum run_mode mode;
struct wl_surface *surface; struct wl_surface *surface;
struct wl_shell_surface *shell_surface; struct xdg_surface *xdg_surface;
struct xdg_toplevel *xdg_toplevel;
uint32_t configure_serial;
struct buffer *buffers; struct buffer *buffers;
int num_buffers; int num_buffers;
@ -181,27 +184,48 @@ create_shm_buffers(struct display *display, struct buffer **buffers,
} }
static void static void
handle_ping(void *data, struct wl_shell_surface *shell_surface, xdg_wm_base_handle_ping(void *data, struct xdg_wm_base *xdg_wm_base,
uint32_t serial) uint32_t serial)
{ {
wl_shell_surface_pong(shell_surface, serial); xdg_wm_base_pong(xdg_wm_base, serial);
} }
static const struct xdg_wm_base_listener xdg_wm_base_listener = {
.ping = xdg_wm_base_handle_ping,
};
static void
xdg_surface_handle_configure(void *data, struct xdg_surface *xdg_surface,
uint32_t serial)
{
struct window *window = data;
window->configure_serial = serial;
}
static const struct xdg_surface_listener xdg_surface_listener = {
.configure = xdg_surface_handle_configure,
};
static void static void
handle_configure(void *data, struct wl_shell_surface *shell_surface, xdg_toplevel_handle_configure(void *data, struct xdg_toplevel *xdg_toplevel,
uint32_t edges, int32_t width, int32_t height) int32_t width, int32_t height,
struct wl_array *states)
{ {
/* noop */
} }
static void static void
handle_popup_done(void *data, struct wl_shell_surface *shell_surface) xdg_toplevel_handle_close(void *data, struct xdg_toplevel *xdg_toplevel)
{ {
fprintf(stderr, "presentation-shm exiting\n");
exit(0);
} }
static const struct wl_shell_surface_listener shell_surface_listener = { static const struct xdg_toplevel_listener xdg_toplevel_listener = {
handle_ping, .configure = xdg_toplevel_handle_configure,
handle_configure, .close = xdg_toplevel_handle_close,
handle_popup_done
}; };
static struct window * static struct window *
@ -228,16 +252,30 @@ create_window(struct display *display, int width, int height,
window->width = width; window->width = width;
window->height = height; window->height = height;
window->surface = wl_compositor_create_surface(display->compositor); window->surface = wl_compositor_create_surface(display->compositor);
window->shell_surface = wl_shell_get_shell_surface(display->shell, window->xdg_surface = xdg_wm_base_get_xdg_surface(display->wm_base,
window->surface); window->surface);
if (!window->xdg_surface)
return NULL;
window->xdg_toplevel = xdg_surface_get_toplevel(window->xdg_surface);
if (window->shell_surface) if (!window->xdg_toplevel)
wl_shell_surface_add_listener(window->shell_surface, return NULL;
&shell_surface_listener, window);
xdg_wm_base_add_listener(display->wm_base, &xdg_wm_base_listener,
NULL);
xdg_surface_add_listener(window->xdg_surface, &xdg_surface_listener,
window);
xdg_toplevel_add_listener(window->xdg_toplevel, &xdg_toplevel_listener,
window);
wl_shell_surface_set_title(window->shell_surface, title); xdg_toplevel_set_title(window->xdg_toplevel, title);
xdg_toplevel_set_min_size(window->xdg_toplevel, width, height);
xdg_toplevel_set_max_size(window->xdg_toplevel, width, height);
wl_shell_surface_set_toplevel(window->shell_surface); wl_surface_commit(window->surface);
wl_display_roundtrip(window->display->display);
window->num_buffers = 60; window->num_buffers = 60;
window->refresh_nsec = NSEC_PER_SEC / 60; /* 60 Hz guess */ window->refresh_nsec = NSEC_PER_SEC / 60; /* 60 Hz guess */
@ -277,7 +315,7 @@ destroy_window(struct window *window)
if (window->callback) if (window->callback)
wl_callback_destroy(window->callback); wl_callback_destroy(window->callback);
wl_shell_surface_destroy(window->shell_surface); xdg_surface_destroy(window->xdg_surface);
wl_surface_destroy(window->surface); wl_surface_destroy(window->surface);
for (i = 0; i < window->num_buffers; i++) for (i = 0; i < window->num_buffers; i++)
@ -522,6 +560,12 @@ window_commit_next(struct window *window)
buffer = window_next_buffer(window); buffer = window_next_buffer(window);
assert(buffer); assert(buffer);
if (window->configure_serial) {
xdg_surface_ack_configure(window->xdg_surface,
window->configure_serial);
window->configure_serial = 0;
}
wl_surface_attach(window->surface, buffer->buffer, 0, 0); wl_surface_attach(window->surface, buffer->buffer, 0, 0);
wl_surface_damage(window->surface, 0, 0, window->width, window->height); wl_surface_damage(window->surface, 0, 0, window->width, window->height);
wl_surface_commit(window->surface); wl_surface_commit(window->surface);
@ -718,9 +762,10 @@ registry_handle_global(void *data, struct wl_registry *registry,
d->compositor = d->compositor =
wl_registry_bind(registry, wl_registry_bind(registry,
name, &wl_compositor_interface, 1); name, &wl_compositor_interface, 1);
} else if (strcmp(interface, "wl_shell") == 0) { } else if (strcmp(interface, "xdg_wm_base") == 0) {
d->shell = wl_registry_bind(registry, d->wm_base =
name, &wl_shell_interface, 1); wl_registry_bind(registry, name,
&xdg_wm_base_interface, version);
} else if (strcmp(interface, "wl_shm") == 0) { } else if (strcmp(interface, "wl_shm") == 0) {
d->shm = wl_registry_bind(registry, d->shm = wl_registry_bind(registry,
name, &wl_shm_interface, 1); name, &wl_shm_interface, 1);
@ -806,8 +851,8 @@ destroy_display(struct display *display)
if (display->shm) if (display->shm)
wl_shm_destroy(display->shm); wl_shm_destroy(display->shm);
if (display->shell) if (display->wm_base)
wl_shell_destroy(display->shell); xdg_wm_base_destroy(display->wm_base);
if (display->compositor) if (display->compositor)
wl_compositor_destroy(display->compositor); wl_compositor_destroy(display->compositor);

Loading…
Cancel
Save