XMapRaised()XMapRaised()NameXMapRaised – map a window on top of its siblings.
Synopsis
XMapRaised(display, w)
Display *display;
Window w;
Arguments
display Specifies a connection to an X server; returned from XOpenDis‐
play().
w Specifies the window ID of the window to be mapped and raised.
DescriptionXMapRaised() marks a window as eligible to be displayed, and positions
the window at the top of the stack of its siblings. It will actually
be displayed if its ancestors are mapped and it is not obscured by
unrelated windows. XMapRaised() is similar to XMapWindow(), except it
additionally raises the specified window to the top of the stack among
its siblings. Mapping an already mapped window with XMapRaised()
raises the window. See XMapWindow() for further details.
For more information, see Volume One, Chapter 16, Window Management.
Errors
BadWindow
See AlsoXMapSubwindows(), XMapWindow(), XUnmapSubwindows(), XUnmapWindow().
Xlib - Window Mapping XMapRaised()