pub enum Request {
Destroy,
SetCursorPositionHint {
surface_x: Fixed,
surface_y: Fixed,
},
SetRegion {
region: ObjectId,
},
}
Variants§
Destroy
destroy the locked pointer object
Destroy the locked pointer object. If applicable, the compositor will unlock the pointer.
SetCursorPositionHint
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.
SetRegion
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
region: ObjectId
region of surface