1xcb_unmap_window(3) XCB Requests xcb_unmap_window(3)
2
3
4
6 xcb_unmap_window - Makes a window invisible
7
9 #include <xcb/xproto.h>
10
11 Request function
12 xcb_void_cookie_t xcb_unmap_window(xcb_connection_t *conn,
13 xcb_window_t window);
14
16 conn The XCB connection to X11.
17
18 window The window to make invisible.
19
21 Unmaps the specified window. This means making the window invisible
22 (and all its child windows).
23
24 Unmapping a window leads to the UnmapNotify event being generated. Al‐
25 so, Expose events are generated for formerly obscured windows.
26
28 Returns an xcb_void_cookie_t. Errors (if any) have to be handled in the
29 event loop.
30
31 If you want to handle errors directly with xcb_request_check instead,
32 use xcb_unmap_window_checked. See xcb-requests(3) for details.
33
35 xcb_window_error_t
36 The specified window does not exist.
37
39 xcb-requests(3), xcb_expose_event_t(3), xcb_map_window(3), xcb_un‐
40 map_notify_event_t(3)
41
43 Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
44 rections and improvements.
45
46
47
48X Version 11 libxcb 1.13.1 xcb_unmap_window(3)