1xcb_ungrab_button(3) XCB Requests xcb_ungrab_button(3)
2
3
4
6 xcb_ungrab_button -
7
9 #include <xcb/xproto.h>
10
11 Request function
12 xcb_void_cookie_t xcb_ungrab_button(xcb_connection_t *conn,
13 uint8_t button, xcb_window_t grab_window, uint16_t modifiers);
14
16 conn The XCB connection to X11.
17
18 button One of the following values:
19
20 XCB_BUTTON_INDEX_ANY
21 Any of the following (or none):
22
23 XCB_BUTTON_INDEX_1
24 The left mouse button.
25
26 XCB_BUTTON_INDEX_2
27 The right mouse button.
28
29 XCB_BUTTON_INDEX_3
30 The middle mouse button.
31
32 XCB_BUTTON_INDEX_4
33 Scroll wheel. TODO: direction?
34
35 XCB_BUTTON_INDEX_5
36 Scroll wheel. TODO: direction?
37 TODO: NOT YET DOCUMENTED.
38
39 grab_window
40 TODO: NOT YET DOCUMENTED.
41
42 modifiers TODO: NOT YET DOCUMENTED.
43
46 Returns an xcb_void_cookie_t. Errors (if any) have to be handled in the
47 event loop.
48
49 If you want to handle errors directly with xcb_request_check instead,
50 use xcb_ungrab_button_checked. See xcb-requests(3) for details.
51
53 This request does never generate any errors.
54
57 Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
58 rections and improvements.
59
60
61
62X Version 11 libxcb 1.12 xcb_ungrab_button(3)