|
NAMExcb_send_event - send an eventSYNOPSIS#include <xcb/xproto.h>Request functionxcb_void_cookie_t
xcb_send_event(xcb_connection_t *conn,
uint8_t propagate, xcb_window_t destination,
uint32_t event_mask, const char *event);
REQUEST ARGUMENTS
DESCRIPTIONIdentifies the destination window, determines which clients should receive the specified event and ignores any active grabs.The event must be one of the core events or an event defined by an extension, so that the X server can correctly byte-swap the contents as necessary. The contents of event are otherwise unaltered and unchecked except for the send_event field which is forced to 'true'. RETURN VALUEReturns an xcb_void_cookie_t. Errors (if any) have to be handled in the event loop.If you want to handle errors directly with xcb_request_check instead, use xcb_send_event_checked. See xcb-requests(3) for details. ERRORS
EXAMPLE/* * Tell the given window that it was configured to a size of 800x600 pixels. * */ void my_example(xcb_connection_t *conn, xcb_window_t window) { /* Every X11 event is 32 bytes long. Therefore, XCB will copy 32 bytes. * In order to properly initialize these bytes, we allocate 32 bytes even * though we only need less for an xcb_configure_notify_event_t */ xcb_configure_notify_event_t *event = calloc(32, 1); event->event = window; event->window = window; event->response_type = XCB_CONFIGURE_NOTIFY; event->x = 0; event->y = 0; event->width = 800; event->height = 600; event->border_width = 0; event->above_sibling = XCB_NONE; event->override_redirect = false; xcb_send_event(conn, false, window, XCB_EVENT_MASK_STRUCTURE_NOTIFY, (char*)event); xcb_flush(conn); free(event); } SEE ALSOxcb-requests(3), xcb-examples(3), xcb_configure_notify_event_t(3)AUTHORGenerated from xproto.xml. Contact xcb@lists.freedesktop.org for corrections and improvements.
Visit the GSP FreeBSD Man Page Interface. |