[−][src]Struct wayland_protocols::xdg_shell::client::xdg_surface::XdgSurface
Implementations
impl XdgSurface
[src]
pub fn destroy(&self)
[src]
destroy the xdg_surface
Destroy the xdg_surface object. An xdg_surface must only be destroyed after its role object has been destroyed.
This is a destructor, you cannot send requests to this object any longer once this method is called.
pub fn get_toplevel<F>(&self, implementor: F) -> Result<XdgToplevel, ()> where
F: FnOnce(NewProxy<XdgToplevel>) -> XdgToplevel,
[src]
F: FnOnce(NewProxy<XdgToplevel>) -> XdgToplevel,
assign the xdg_toplevel surface role
This creates an xdg_toplevel object for the given xdg_surface and gives the associated wl_surface the xdg_toplevel role.
See the documentation of xdg_toplevel for more details about what an xdg_toplevel is and how it is used.
pub fn get_popup<F>(
&self,
parent: Option<&XdgSurface>,
positioner: &XdgPositioner,
implementor: F
) -> Result<XdgPopup, ()> where
F: FnOnce(NewProxy<XdgPopup>) -> XdgPopup,
[src]
&self,
parent: Option<&XdgSurface>,
positioner: &XdgPositioner,
implementor: F
) -> Result<XdgPopup, ()> where
F: FnOnce(NewProxy<XdgPopup>) -> XdgPopup,
assign the xdg_popup surface role
This creates an xdg_popup object for the given xdg_surface and gives the associated wl_surface the xdg_popup role.
If null is passed as a parent, a parent surface must be specified using some other protocol, before committing the initial state.
See the documentation of xdg_popup for more details about what an xdg_popup is and how it is used.
pub fn set_window_geometry(&self, x: i32, y: i32, width: i32, height: i32)
[src]
set the new window geometry
The window geometry of a surface is its "visible bounds" from the user's perspective. Client-side decorations often have invisible portions like drop-shadows which should be ignored for the purposes of aligning, placing and constraining windows.
The window geometry is double buffered, and will be applied at the time wl_surface.commit of the corresponding wl_surface is called.
When maintaining a position, the compositor should treat the (x, y) coordinate of the window geometry as the top left corner of the window. A client changing the (x, y) window geometry coordinate should in general not alter the position of the window.
Once the window geometry of the surface is set, it is not possible to unset it, and it will remain the same until set_window_geometry is called again, even if a new subsurface or buffer is attached.
If never set, the value is the full bounds of the surface, including any subsurfaces. This updates dynamically on every commit. This unset is meant for extremely simple clients.
The arguments are given in the surface-local coordinate space of the wl_surface associated with this xdg_surface.
The width and height must be greater than zero. Setting an invalid size will raise an error. When applied, the effective window geometry will be the set window geometry clamped to the bounding rectangle of the combined geometry of the surface of the xdg_surface and the associated subsurfaces.
pub fn ack_configure(&self, serial: u32)
[src]
ack a configure event
When a configure event is received, if a client commits the surface in response to the configure event, then the client must make an ack_configure request sometime before the commit request, passing along the serial of the configure event.
For instance, for toplevel surfaces the compositor might use this information to move a surface to the top left only when the client has drawn itself for the maximized or fullscreen state.
If the client receives multiple configure events before it can respond to one, it only has to ack the last configure event.
A client is not required to commit immediately after sending an ack_configure request - it may even ack_configure several times before its next surface commit.
A client may send multiple ack_configure requests before committing, but only the last request sent before a commit indicates which configure event the client really is responding to.
Trait Implementations
impl AsRef<Proxy<XdgSurface>> for XdgSurface
[src]
impl Clone for XdgSurface
[src]
fn clone(&self) -> XdgSurface
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Eq for XdgSurface
[src]
impl From<Proxy<XdgSurface>> for XdgSurface
[src]
impl From<XdgSurface> for Proxy<XdgSurface>
[src]
fn from(value: XdgSurface) -> Self
[src]
impl<T: EventHandler> HandledBy<T> for XdgSurface
[src]
impl Interface for XdgSurface
[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
const NAME: &'static str
[src]
const VERSION: u32
[src]
fn c_interface() -> *const wl_interface
[src]
impl PartialEq<XdgSurface> for XdgSurface
[src]
fn eq(&self, other: &XdgSurface) -> bool
[src]
fn ne(&self, other: &XdgSurface) -> bool
[src]
impl StructuralEq for XdgSurface
[src]
impl StructuralPartialEq for XdgSurface
[src]
Auto Trait Implementations
impl !RefUnwindSafe for XdgSurface
impl Send for XdgSurface
impl Sync for XdgSurface
impl Unpin for XdgSurface
impl !UnwindSafe for XdgSurface
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<M, I> HandledBy<Sink<M>> for I where
I: Interface,
M: From<(<I as Interface>::Event, I)>,
[src]
I: Interface,
M: From<(<I as Interface>::Event, I)>,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,