wayland-window 0.13.3

A minimalistic window-decorations library built on top of wayland-client.
Documentation
use FrameIData;
use wayland_client::protocol::wl_shell_surface;

pub(crate) fn wl_shell_surface_implementation<ID>() -> wl_shell_surface::Implementation<FrameIData<ID>> {
    wl_shell_surface::Implementation {
        ping: |_, _, shell_surface, serial| {
            shell_surface.pong(serial);
        },
        configure: |evqh, idata, _, edges, width, height| {
            let newsize = {
                let mut meta = idata.meta.lock().unwrap();
                meta.need_redraw = true;
                meta.clamp_to_limits((width, height))
            };
            let configure = super::Configure::Wl(edges);
            let mut user_idata = idata.idata.borrow_mut();
            (idata.implementation.configure)(evqh, &mut *user_idata, configure, Some(newsize))
        },
        popup_done: |_, _, _| {
            // We are not doing popups
        },
    }
}