Struct wayrs_protocols::pointer_constraints_unstable_v1::zwp_locked_pointer_v1::ZwpLockedPointerV1
source · pub struct ZwpLockedPointerV1 { /* private fields */ }pointer-constraints-unstable-v1 only.Expand description
receive relative pointer motion events
The wp_locked_pointer interface represents a locked pointer state.
While the lock of this object is active, the wl_pointer objects of the associated seat will not emit any wl_pointer.motion events.
This object will send the event ‘locked’ when the lock is activated. Whenever the lock is activated, it is guaranteed that the locked surface will already have received pointer focus and that the pointer will be within the region passed to the request creating this object.
To unlock the pointer, send the destroy request. This will also destroy the wp_locked_pointer object.
If the compositor decides to unlock the pointer the unlocked event is sent. See wp_locked_pointer.unlock for details.
When unlocking, the compositor may warp the cursor position to the set cursor position hint. If it does, it will not result in any relative motion events emitted via wp_relative_pointer.
If the surface the lock was requested on is destroyed and the lock is not yet activated, the wp_locked_pointer object is now defunct and must be destroyed.
See Event for the list of possible events.
Implementations§
source§impl ZwpLockedPointerV1
impl ZwpLockedPointerV1
sourcepub fn destroy<D>(self, conn: &mut Connection<D>)
pub fn destroy<D>(self, conn: &mut Connection<D>)
destroy the locked pointer object
Destroy the locked pointer object. If applicable, the compositor will unlock the pointer.
Since version 1.
sourcepub fn set_cursor_position_hint<D>(
self,
conn: &mut Connection<D>,
surface_x: Fixed,
surface_y: Fixed
)
pub fn set_cursor_position_hint<D>( self, conn: &mut Connection<D>, surface_x: Fixed, surface_y: Fixed )
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.
Since version 1.
sourcepub fn set_region<D>(self, conn: &mut Connection<D>, region: Option<WlRegion>)
pub fn set_region<D>(self, conn: &mut Connection<D>, region: Option<WlRegion>)
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.
Since version 1.
Trait Implementations§
source§impl Borrow<ObjectId> for ZwpLockedPointerV1
impl Borrow<ObjectId> for ZwpLockedPointerV1
source§impl Clone for ZwpLockedPointerV1
impl Clone for ZwpLockedPointerV1
source§fn clone(&self) -> ZwpLockedPointerV1
fn clone(&self) -> ZwpLockedPointerV1
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ZwpLockedPointerV1
impl Debug for ZwpLockedPointerV1
source§impl Hash for ZwpLockedPointerV1
impl Hash for ZwpLockedPointerV1
source§impl Ord for ZwpLockedPointerV1
impl Ord for ZwpLockedPointerV1
source§impl PartialEq<ObjectId> for ZwpLockedPointerV1
impl PartialEq<ObjectId> for ZwpLockedPointerV1
source§impl PartialEq<ZwpLockedPointerV1> for ObjectId
impl PartialEq<ZwpLockedPointerV1> for ObjectId
source§fn eq(&self, other: &ZwpLockedPointerV1) -> bool
fn eq(&self, other: &ZwpLockedPointerV1) -> bool
self and other values to be equal, and is used
by ==.source§impl PartialEq for ZwpLockedPointerV1
impl PartialEq for ZwpLockedPointerV1
source§impl PartialOrd for ZwpLockedPointerV1
impl PartialOrd for ZwpLockedPointerV1
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read more