| xcb_query_pointer(3) | XCB Requests | xcb_query_pointer(3) |
xcb_query_pointer - get pointer coordinates
#include <xcb/xproto.h>
xcb_query_pointer_cookie_t xcb_query_pointer(xcb_connection_t *conn, xcb_window_t window);
typedef struct xcb_query_pointer_reply_t {
uint8_t response_type;
uint8_t same_screen;
uint16_t sequence;
uint32_t length;
xcb_window_t root;
xcb_window_t child;
int16_t root_x;
int16_t root_y;
int16_t win_x;
int16_t win_y;
uint16_t mask;
uint8_t pad0[2];
} xcb_query_pointer_reply_t;
xcb_query_pointer_reply_t
*xcb_query_pointer_reply(xcb_connection_t *conn,
xcb_query_pointer_cookie_t cookie,
xcb_generic_error_t **e);
Gets the root window the pointer is logically on and the pointer coordinates relative to the root window's origin.
Returns an xcb_query_pointer_cookie_t. Errors have to be handled when calling the reply function xcb_query_pointer_reply.
If you want to handle errors in the event loop instead, use xcb_query_pointer_unchecked. See xcb-requests(3) for details.
xcb-requests(3)
Generated from xproto.xml. Contact xcb@lists.freedesktop.org for corrections and improvements.
| libxcb 1.15 | X Version 11 |