#include "shared/timespec-util.h"
#include "shared/os-compatibility.h"
#include "presentation-time-client-protocol.h"
+#include "xdg-shell-client-protocol.h"
enum run_mode {
RUN_MODE_FEEDBACK,
struct wl_display *display;
struct wl_registry *registry;
struct wl_compositor *compositor;
- struct wl_shell *shell;
+ struct xdg_wm_base *wm_base;
struct wl_shm *shm;
uint32_t formats;
int width, height;
enum run_mode mode;
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;
int num_buffers;
}
static void
-handle_ping(void *data, struct wl_shell_surface *shell_surface,
- uint32_t serial)
+xdg_wm_base_handle_ping(void *data, struct xdg_wm_base *xdg_wm_base,
+ 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
-handle_configure(void *data, struct wl_shell_surface *shell_surface,
- uint32_t edges, int32_t width, int32_t height)
+xdg_toplevel_handle_configure(void *data, struct xdg_toplevel *xdg_toplevel,
+ int32_t width, int32_t height,
+ struct wl_array *states)
{
+ /* noop */
}
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 = {
- handle_ping,
- handle_configure,
- handle_popup_done
+static const struct xdg_toplevel_listener xdg_toplevel_listener = {
+ .configure = xdg_toplevel_handle_configure,
+ .close = xdg_toplevel_handle_close,
};
static struct window *
window->width = width;
window->height = height;
window->surface = wl_compositor_create_surface(display->compositor);
- window->shell_surface = wl_shell_get_shell_surface(display->shell,
- window->surface);
+ window->xdg_surface = xdg_wm_base_get_xdg_surface(display->wm_base,
+ window->surface);
+
+ if (!window->xdg_surface)
+ return NULL;
+
+ window->xdg_toplevel = xdg_surface_get_toplevel(window->xdg_surface);
- if (window->shell_surface)
- wl_shell_surface_add_listener(window->shell_surface,
- &shell_surface_listener, window);
+ if (!window->xdg_toplevel)
+ return NULL;
+
+ 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->refresh_nsec = NSEC_PER_SEC / 60; /* 60 Hz guess */
if (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);
for (i = 0; i < window->num_buffers; i++)
buffer = window_next_buffer(window);
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_damage(window->surface, 0, 0, window->width, window->height);
wl_surface_commit(window->surface);
d->compositor =
wl_registry_bind(registry,
name, &wl_compositor_interface, 1);
- } else if (strcmp(interface, "wl_shell") == 0) {
- d->shell = wl_registry_bind(registry,
- name, &wl_shell_interface, 1);
+ } else if (strcmp(interface, "xdg_wm_base") == 0) {
+ d->wm_base =
+ wl_registry_bind(registry, name,
+ &xdg_wm_base_interface, version);
} else if (strcmp(interface, "wl_shm") == 0) {
d->shm = wl_registry_bind(registry,
name, &wl_shm_interface, 1);
if (display->shm)
wl_shm_destroy(display->shm);
- if (display->shell)
- wl_shell_destroy(display->shell);
+ if (display->wm_base)
+ xdg_wm_base_destroy(display->wm_base);
if (display->compositor)
wl_compositor_destroy(display->compositor);