Function x11rb::protocol::xproto::reparent_window

source ·
pub fn reparent_window<Conn>(
    conn: &Conn,
    window: Window,
    parent: Window,
    x: i16,
    y: i16
) -> Result<VoidCookie<'_, Conn>, ConnectionError>
where Conn: RequestConnection + ?Sized,
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: event
  • MapWindow: request
  • UnmapWindow: request