[][src]Struct wayland_protocols::unstable::xdg_decoration::v1::client::zxdg_toplevel_decoration_v1::ZxdgToplevelDecorationV1

pub struct ZxdgToplevelDecorationV1(_);

Implementations

impl ZxdgToplevelDecorationV1[src]

pub fn destroy(&self)[src]

destroy the decoration object

Switch back to a mode without any server-side decorations at the next commit.

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

pub fn set_mode(&self, mode: Mode)[src]

set the decoration mode

Set the toplevel surface decoration mode. This informs the compositor that the client prefers the provided decoration mode.

After requesting a decoration mode, the compositor will respond by emitting a xdg_surface.configure event. The client should then update its content, drawing it without decorations if the received mode is server-side decorations. The client must also acknowledge the configure when committing the new content (see xdg_surface.ack_configure).

The compositor can decide not to use the client's mode and enforce a different mode instead.

Clients whose decoration mode depend on the xdg_toplevel state may send a set_mode request in response to a xdg_surface.configure event and wait for the next xdg_surface.configure event to prevent unwanted state. Such clients are responsible for preventing configure loops and must make sure not to send multiple successive set_mode requests with the same decoration mode.

pub fn unset_mode(&self)[src]

unset the decoration mode

Unset the toplevel surface decoration mode. This informs the compositor that the client doesn't prefer a particular decoration mode.

This request has the same semantics as set_mode.

Trait Implementations

impl AsRef<Proxy<ZxdgToplevelDecorationV1>> for ZxdgToplevelDecorationV1[src]

impl Clone for ZxdgToplevelDecorationV1[src]

impl Debug for ZxdgToplevelDecorationV1[src]

impl Eq for ZxdgToplevelDecorationV1[src]

impl From<Proxy<ZxdgToplevelDecorationV1>> for ZxdgToplevelDecorationV1[src]

impl From<ZxdgToplevelDecorationV1> for Proxy<ZxdgToplevelDecorationV1>[src]

impl Interface for ZxdgToplevelDecorationV1[src]

type Request = Request

Set of requests associated to this interface Read more

type Event = Event

Set of events associated to this interface Read more

impl PartialEq<ZxdgToplevelDecorationV1> for ZxdgToplevelDecorationV1[src]

impl StructuralEq for ZxdgToplevelDecorationV1[src]

impl StructuralPartialEq for ZxdgToplevelDecorationV1[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.