Struct ReparentWindowRequest
pub struct ReparentWindowRequest {
pub window: u32,
pub parent: u32,
pub x: i16,
pub y: i16,
}
Expand description
Reparents a window.
Makes the specified window a child of the specified parent window. If the window is mapped, it will automatically be unmapped before reparenting and re-mapped after reparenting. The window is placed in the stacking order on top with respect to sibling windows.
After reparenting, a ReparentNotify event is generated.
§Fields
window
- The window to reparent.parent
- The new parent of the window.x
- The X position of the window within its new parent.y
- The Y position of the window within its new parent.
§Errors
Match
- The new parent window is not on the same screen as the old parent window.
The new parent window is the specified window or an inferior of the specified window.
The new parent is InputOnly and the window is not.
The specified window has a ParentRelative background and the new parent window is not the same depth as the specified window.
Window
- The specified window does not exist.
§See
ReparentNotify
: eventMapWindow
: requestUnmapWindow
: request
Fields§
§window: u32
§parent: u32
§x: i16
§y: i16
Implementations§
Trait Implementations§
§impl Clone for ReparentWindowRequest
impl Clone for ReparentWindowRequest
§fn clone(&self) -> ReparentWindowRequest
fn clone(&self) -> ReparentWindowRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for ReparentWindowRequest
impl Debug for ReparentWindowRequest
§impl Default for ReparentWindowRequest
impl Default for ReparentWindowRequest
§fn default() -> ReparentWindowRequest
fn default() -> ReparentWindowRequest
Returns the “default value” for a type. Read more
§impl Request for ReparentWindowRequest
impl Request for ReparentWindowRequest
impl Copy for ReparentWindowRequest
impl VoidRequest for ReparentWindowRequest
Auto Trait Implementations§
impl Freeze for ReparentWindowRequest
impl RefUnwindSafe for ReparentWindowRequest
impl Send for ReparentWindowRequest
impl Sync for ReparentWindowRequest
impl Unpin for ReparentWindowRequest
impl UnwindSafe for ReparentWindowRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)