Tagged Questions
2
votes
0answers
28 views
Replaying “active” keyboard grabs with Xlib on Linux
I've been using Xlib's XGrabKey to track input events for single keys with XAllowEvents=ReplayPointer so that the target window also gets the event.
I need to do this for the entire keyboard, ...
5
votes
5answers
443 views
How to fix this script so that it won't peg the CPU?
On my home Kubuntu machine, I am running a script to beep on every keypress, no matter which window or application has focus, adapted from this insightful page
#!/usr/bin/env python
from ...
0
votes
1answer
79 views
How can I get the KeyCode associated to a given KeySym?
I have seen that XGetKeyboardMapping() would let me do that, but the documentation is opaque and I haven’t been able to find any examples. Any idea?
1
vote
1answer
692 views
XSetInputFocus fails
In my Xlib application, I need to set up the keyboard to focus on a specific component, and I though of doing it with XSetInputFocus. For some reason I always get a BadMatch error even though my ...
0
votes
1answer
595 views
Xlib: draw a text input box and read text as it is typed
I am trying to implement a text box where a user can type, use arrow keys, backspace, delete, etc. I would like to be able to know what is in this text box without the user needing to submit ...
3
votes
1answer
800 views
Excluding some keys from XGrabKeyboard
Consider an application where it's desirable to grab the keyboard when focused in order to capture all window manager commands (Alt+F4 and whatnot) for processing. Now, this has the downside that the ...
4
votes
1answer
2k views
drop/rewrite/generate keyboard events under Linux
I would like to hook into, intercept, and generate keyboard (make/break) events under Linux before they get delivered to any application. More precisely, I want to detect patterns in the key event ...