#include #include #include #include #include #include #include #include static Display *dpy; static int scr, sw, sh; static int sx, sy; static Window root; static void select_events(Display *dpy, Window win) { XIEventMask evmasks[1]; unsigned char mask1[(XI_LASTEVENT + 7)/8]; memset(mask1, 0, sizeof(mask1)); /* select for button and key events from all master devices */ XISetMask(mask1, XI_RawButtonPress); XISetMask(mask1, XI_RawButtonRelease); evmasks[0].deviceid = XIAllMasterDevices; evmasks[0].mask_len = sizeof(mask1); evmasks[0].mask = mask1; XISelectEvents(dpy, win, evmasks, 1); XFlush(dpy); } static void getmousepos(int *px, int *py) { Window r, child; int rx, ry; unsigned int mask; XQueryPointer(dpy, root, &r, &child, px, py, &rx, &ry, &mask); } static void* loop() { int px, py, lx, ly, dx, dy; while (1) { lx = px, ly = py; getmousepos(&px, &py); dx = px - lx; dy = py - ly; printf("(%d, %d) from (%d, %d)\n", px, py, sx, sy); sleep(1); } } static void mouse_down(XIRawEvent *xev) { getmousepos(&sx, &sy); printf("Button pressed %d @ %d, %d\n", xev->detail, sx, sy); } static void mouse_up(XIRawEvent *xev) { sx = -1; sy = -1; printf("Button released %d %d\n", xev->detail); } int main(int argc, const char **argv) { XInitThreads(); for (int i = 1; i < argc; i++) { if (argv[i][1] == 'h') { fprintf(stdout, "there is no help to be given\n"); } } if (!(dpy = XOpenDisplay(0x0))) return 1; scr = DefaultScreen(dpy); root = XDefaultRootWindow(dpy); sw = DisplayWidth(dpy, scr); sh = DisplayHeight(dpy, scr); fprintf(stdout, "waiting for events\n"); XEvent ev; XIEvent *xi_event; XIRawEvent *xev; XGenericEventCookie *cookie = &ev.xcookie; select_events(dpy, root); pthread_t id[2]; pthread_create(&id[0], NULL, loop, &argv); for (;;) { if (XCheckTypedEvent(dpy, GenericEvent ,&ev)) { if (cookie->type != GenericEvent || !XGetEventData(dpy, cookie)) { continue; } xi_event = (XIEvent *) cookie->data; xev = (XIRawEvent *) xi_event; switch (cookie->evtype) { case XI_RawButtonPress: if (xev->detail == 2) mouse_down(xev); break; case XI_RawButtonRelease: if (xev->detail == 2) mouse_up(xev); break; } XFreeEventData(dpy, cookie); } } XCloseDisplay(dpy); return 0; }