Enum wayland_protocols::unstable::pointer_constraints::v1::client::zwp_locked_pointer_v1::Request [] [src]

pub enum Request {
    Destroy,
    SetCursorPositionHint {
        surface_x: f64,
        surface_y: f64,
    },
    SetRegion {
        region: Option<Proxy<WlRegion>>,
    },
}

Variants

destroy the locked pointer object

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

This is a destructor, once sent this object cannot be used any longer.

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.

Fields of SetCursorPositionHint

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.

Fields of SetRegion

Trait Implementations

impl MessageGroup for Request
[src]

[src]

Whether this message is a destructor Read more

[src]

Construct a message of this group from its C representation

[src]

Build a C representation of this message Read more

Auto Trait Implementations

impl Send for Request

impl Sync for Request