Struct wayland_client::protocol::wl_subsurface::WlSubsurface
source · [−]pub struct WlSubsurface(_);
Implementations
sourceimpl WlSubsurface
impl WlSubsurface
sourcepub fn destroy(&self)
pub fn destroy(&self)
remove sub-surface interface
The sub-surface interface is removed from the wl_surface object that was turned into a sub-surface with a wl_subcompositor.get_subsurface request. The wl_surface’s association to the parent is deleted, and the wl_surface loses its role as a sub-surface. The wl_surface is unmapped immediately.
This is a destructor, you cannot send requests to this object any longer once this method is called.
sourcepub fn set_position(&self, x: i32, y: i32)
pub fn set_position(&self, x: i32, y: i32)
reposition the sub-surface
This schedules a sub-surface position change. The sub-surface will be moved so that its origin (top left corner pixel) will be at the location x, y of the parent surface coordinate system. The coordinates are not restricted to the parent surface area. Negative values are allowed.
The scheduled coordinates will take effect whenever the state of the parent surface is applied. When this happens depends on whether the parent surface is in synchronized mode or not. See wl_subsurface.set_sync and wl_subsurface.set_desync for details.
If more than one set_position request is invoked by the client before the commit of the parent surface, the position of a new request always replaces the scheduled position from any previous request.
The initial position is 0, 0.
sourcepub fn place_above(&self, sibling: &WlSurface)
pub fn place_above(&self, sibling: &WlSurface)
restack the sub-surface
This sub-surface is taken from the stack, and put back just above the reference surface, changing the z-order of the sub-surfaces. The reference surface must be one of the sibling surfaces, or the parent surface. Using any other surface, including this sub-surface, will cause a protocol error.
The z-order is double-buffered. Requests are handled in order and applied immediately to a pending state. The final pending state is copied to the active state the next time the state of the parent surface is applied. When this happens depends on whether the parent surface is in synchronized mode or not. See wl_subsurface.set_sync and wl_subsurface.set_desync for details.
A new sub-surface is initially added as the top-most in the stack of its siblings and parent.
sourcepub fn place_below(&self, sibling: &WlSurface)
pub fn place_below(&self, sibling: &WlSurface)
restack the sub-surface
The sub-surface is placed just below the reference surface. See wl_subsurface.place_above.
sourcepub fn set_sync(&self)
pub fn set_sync(&self)
set sub-surface to synchronized mode
Change the commit behaviour of the sub-surface to synchronized mode, also described as the parent dependent mode.
In synchronized mode, wl_surface.commit on a sub-surface will accumulate the committed state in a cache, but the state will not be applied and hence will not change the compositor output. The cached state is applied to the sub-surface immediately after the parent surface’s state is applied. This ensures atomic updates of the parent and all its synchronized sub-surfaces. Applying the cached state will invalidate the cache, so further parent surface commits do not (re-)apply old state.
See wl_subsurface for the recursive effect of this mode.
sourcepub fn set_desync(&self)
pub fn set_desync(&self)
set sub-surface to desynchronized mode
Change the commit behaviour of the sub-surface to desynchronized mode, also described as independent or freely running mode.
In desynchronized mode, wl_surface.commit on a sub-surface will apply the pending state directly, without caching, as happens normally with a wl_surface. Calling wl_surface.commit on the parent surface has no effect on the sub-surface’s wl_surface state. This mode allows a sub-surface to be updated on its own.
If cached state exists when wl_surface.commit is called in desynchronized mode, the pending state is added to the cached state, and applied as a whole. This invalidates the cache.
Note: even if a sub-surface is set to desynchronized, a parent sub-surface may override it to behave as synchronized. For details, see wl_subsurface.
If a surface’s parent surface behaves as desynchronized, then the cached state is applied on set_desync.
Trait Implementations
sourceimpl AsRef<Proxy<WlSubsurface>> for WlSubsurface
impl AsRef<Proxy<WlSubsurface>> for WlSubsurface
sourceimpl Clone for WlSubsurface
impl Clone for WlSubsurface
sourcefn clone(&self) -> WlSubsurface
fn clone(&self) -> WlSubsurface
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for WlSubsurface
impl Debug for WlSubsurface
sourceimpl From<Proxy<WlSubsurface>> for WlSubsurface
impl From<Proxy<WlSubsurface>> for WlSubsurface
sourceimpl From<WlSubsurface> for Proxy<WlSubsurface>
impl From<WlSubsurface> for Proxy<WlSubsurface>
sourcefn from(value: WlSubsurface) -> Self
fn from(value: WlSubsurface) -> Self
Converts to this type from the input type.
sourceimpl Interface for WlSubsurface
impl Interface for WlSubsurface
sourcefn c_interface() -> *const wl_interface
fn c_interface() -> *const wl_interface
Pointer to the C representation of this interface
sourceimpl PartialEq<WlSubsurface> for WlSubsurface
impl PartialEq<WlSubsurface> for WlSubsurface
sourcefn eq(&self, other: &WlSubsurface) -> bool
fn eq(&self, other: &WlSubsurface) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for WlSubsurface
impl StructuralEq for WlSubsurface
impl StructuralPartialEq for WlSubsurface
Auto Trait Implementations
impl !RefUnwindSafe for WlSubsurface
impl Send for WlSubsurface
impl Sync for WlSubsurface
impl Unpin for WlSubsurface
impl !UnwindSafe for WlSubsurface
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
sourcefn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
sourcefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
sourcefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
sourcefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more