Struct smithay_client_toolkit::shell::xdg::window::Window

source ·
pub struct Window(/* private fields */);

Implementations§

source§

impl Window

source

pub fn from_xdg_toplevel(toplevel: &XdgToplevel) -> Option<Window>

source

pub fn from_xdg_surface(surface: &XdgSurface) -> Option<Window>

source

pub fn from_toplevel_decoration( decoration: &ZxdgToplevelDecorationV1, ) -> Option<Window>

source

pub fn show_window_menu(&self, seat: &WlSeat, serial: u32, position: (i32, i32))

source

pub fn set_title(&self, title: impl Into<String>)

source

pub fn set_app_id(&self, app_id: impl Into<String>)

source

pub fn set_parent(&self, parent: Option<&Window>)

source

pub fn set_maximized(&self)

source

pub fn unset_maximized(&self)

source

pub fn set_minimized(&self)

source

pub fn set_fullscreen(&self, output: Option<&WlOutput>)

source

pub fn unset_fullscreen(&self)

source

pub fn request_decoration_mode(&self, mode: Option<DecorationMode>)

Requests the window should use the specified decoration mode.

A mode of None indicates that the window does not care what type of decorations are used.

The compositor will respond with a configure. The configure will indicate whether the window’s decoration mode has changed.

§Configure loops

You should avoid sending multiple decoration mode requests to ensure you do not enter a configure loop.

source

pub fn move_(&self, seat: &WlSeat, serial: u32)

source

pub fn resize(&self, seat: &WlSeat, serial: u32, edges: ResizeEdge)

source

pub fn set_min_size(&self, min_size: Option<(u32, u32)>)

source

pub fn set_max_size(&self, max_size: Option<(u32, u32)>)

§Protocol errors

The maximum size of the window may not be smaller than the minimum size.

source

pub fn xdg_toplevel(&self) -> &XdgToplevel

Returns the underlying xdg toplevel wrapped by this window.

Trait Implementations§

source§

impl Clone for Window

source§

fn clone(&self) -> Window

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Window

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for Window

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl WaylandSurface for Window

source§

fn wl_surface(&self) -> &WlSurface

The underlying WlSurface.
source§

fn attach(&self, buffer: Option<&WlBuffer>, x: u32, y: u32)

source§

fn set_opaque_region(&self, region: Option<&WlRegion>)

source§

fn set_input_region(&self, region: Option<&WlRegion>)

source§

fn set_buffer_transform(&self, transform: Transform) -> Result<(), Unsupported>

source§

fn set_buffer_scale(&self, scale: u32) -> Result<(), Unsupported>

source§

fn offset(&self, x: u32, y: u32) -> Result<(), Unsupported>

source§

fn commit(&self)

Commits pending surface state. Read more
source§

impl XdgSurface for Window

source§

fn xdg_surface(&self) -> &XdgSurface

The underlying XdgSurface.
source§

fn set_window_geometry(&self, x: u32, y: u32, width: u32, height: u32)

Auto Trait Implementations§

§

impl Freeze for Window

§

impl !RefUnwindSafe for Window

§

impl Send for Window

§

impl Sync for Window

§

impl Unpin for Window

§

impl !UnwindSafe for Window

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

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.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

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.
§

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.
§

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

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more