pub struct ReparentWindowRequest {
pub window: Window,
pub parent: Window,
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: Window
§parent: Window
§x: i16
§y: i16
Implementations§
Source§impl ReparentWindowRequest
impl ReparentWindowRequest
Sourcepub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
pub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
Serialize this request into bytes for the provided connection
Sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8],
) -> Result<Self, ParseError>
pub fn try_parse_request( header: RequestHeader, value: &[u8], ) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
Trait Implementations§
Source§impl Clone for ReparentWindowRequest
impl Clone for ReparentWindowRequest
Source§fn clone(&self) -> ReparentWindowRequest
fn clone(&self) -> ReparentWindowRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more