1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
#if defined (linux) || defined (__GNU__) || defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
#include <stdio.h>
#include <X11/XKBlib.h>
#include <X11/extensions/record.h>
#include "buckle.h"
void key_pressed_cb(XPointer arg, XRecordInterceptData *d);
int scan(void)
{
/* Initialize and start Xrecord context */
XRecordRange* rr;
XRecordClientSpec rcs;
XRecordContext rc;
printd("Opening Xrecord context");
Display *dpy = XOpenDisplay(NULL);
if(dpy == NULL) {
fprintf(stderr, "Unable to open display\n");
return -1;
}
rr = XRecordAllocRange ();
if(rr == NULL) {
fprintf(stderr, "XRecordAllocRange error\n");
return -1;
}
rr->device_events.first = KeyPress;
rr->device_events.last = KeyRelease;
rcs = XRecordAllClients;
rc = XRecordCreateContext (dpy, 0, &rcs, 1, &rr, 1);
if(rc == 0) {
fprintf(stderr, "XRecordCreateContext error\n");
return -1;
}
XFree (rr);
if(XRecordEnableContext(dpy, rc, key_pressed_cb, NULL) == 0) {
fprintf(stderr, "XRecordEnableContext error\n");
return -1;
}
/* We never get here */
return 0;
}
/*
* Xrecord event callback
*/
void key_pressed_cb(XPointer arg, XRecordInterceptData *d)
{
if (d->category != XRecordFromServer)
return;
int key = ((unsigned char*) d->data)[1];
int type = ((unsigned char*) d->data)[0] & 0x7F;
int repeat = d->data[2] & 1;
key -= 8; /* X code to scan code? */
if(!repeat) {
switch (type) {
case KeyPress:
play(key, 1);
break;
case KeyRelease:
play(key, 0);
break;
default:
break;
}
}
XRecordFreeData (d);
}
void open_console(void)
{
}
#endif
|