Table of Contents

Name

XSendExtensionEvent - send input extension events to a client

Syntax

Status XSendExtensionEvent(Display *display, XDevice
*device, Window destination, Bool propagate, int event_count, XEventClass *event_list, XEvent *event_send);

Arguments

display
Specifies the connection to the X server.
device
Specifies the device from which the events are to be sent.
destination
Specifies the window the event is to be sent to. You can pass window id, PointerWindow, or InputFocus.
propagate
Specifies a Boolean value that is either True or False.
event_count
Specifies the count of XEventClasses in event_list.
event_list
Specifies the list of event selections to be used.
event_send
Specifies a pointer to the event that is to be sent.

Description

The
XSendExtensionEvent request identifies the destination window, determines which clients should receive the specified events, and ignores any active grabs. This request requires you to pass an event class list. For a discussion of the valid event class names, see XOpenDevice(3X11) . This request uses the w argument to identify the destination window as follows:
  • If w is PointerWindow , the destination window is the window that contains the pointer.
  • If w is InputFocus and if the focus window contains the pointer, the destination window is the window that contains the pointer; otherwise, the destination window is the focus window.
  • To determine which clients should receive the specified events, XSendExtensionEvent uses the propagate argument as follows:

    The event in the XEvent structure must be one of the events defined by the input extension (or a BadValue error results) so that the X server can correctly byte-swap the contents as necessary. The contents of the event are otherwise unaltered and unchecked by the X server except to force send_event to True in the forwarded event and to set the serial number in the event correctly.

    XSendExtensionEvent returns zero if the conversion to wire protocol format failed and returns nonzero otherwise. XSendExtensionEvent can generate BadClass, BadDevice, BadValue, and BadWindow errors.

    Diagnostics

    BadDevice
    An invalid device was specified. The specified device does not exist or has not been opened by this client via XOpenInputDevice. This error may also occur if the specified device is the X keyboard or X pointer device.
    BadValue
    Some numeric value falls outside the range of values accepted by the request. Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted. Any argument defined as a set of alternatives can generate this error.
    BadWindow
    A value for a Window argument does not name a defined Window.

    See Also


    Programming with Xlib


    Table of Contents