XMapRaised() XMapRaised()
Name
XMapRaised - 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 XOpenDisplay().
w Specifies the window ID of the window to be mapped and raised.
Description
XMapRaised() marks a window as eligible to be displayed, and positions the window at the top of the stack of its siblings. It will actu-
ally 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 Also
XMapSubwindows(), XMapWindow(), XUnmapSubwindows(), XUnmapWindow().
Xlib - Window Mapping XMapRaised()