[][src]Function xcb::ffi::xproto::xcb_reparent_window

pub unsafe extern "C" fn xcb_reparent_window(
    c: *mut xcb_connection_t,
    window: xcb_window_t,
    parent: xcb_window_t,
    x: i16,
    y: i16
) -> xcb_void_cookie_t

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.