pub trait RequestsTrait {
    fn destroy(&self);
    fn set_cursor_position_hint(&self, surface_x: f64, surface_y: f64);
    fn set_region(&self, region: Option<&Proxy<WlRegion>>);
}

Required Methods§

destroy the locked pointer object

Destroy the locked pointer object. If applicable, the compositor will unlock the pointer.

This is a destructor, you cannot send requests to this object any longer once this method is called.

set the pointer cursor position hint

Set the cursor position hint relative to the top left corner of the surface.

If the client is drawing its own cursor, it should update the position hint to the position of its own cursor. A compositor may use this information to warp the pointer upon unlock in order to avoid pointer jumps.

The cursor position hint is double buffered. The new hint will only take effect when the associated surface gets it pending state applied. See wl_surface.commit for details.

set a new lock region

Set a new region used to lock the pointer.

The new lock region is double-buffered. The new lock region will only take effect when the associated surface gets its pending state applied. See wl_surface.commit for details.

For details about the lock region, see wp_locked_pointer.

Implementations on Foreign Types§

Implementors§