Tagged Questions
1
vote
0answers
22 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, ...
8
votes
4answers
1k views
Listening to keyboard events without trapping them?
I'm writing an command-line application which listens for Control key release events in X Windows and alerts another process when it detects them.
Being new to GNU/Linux, I'd prefer avoiding to ...
3
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 ...
2
votes
1answer
964 views
Portable keycodes in X11?
I want to get mapping-independent key codes, but documentation says that "keycode" in XKeyEvent structure depends on hardware and driver and I can't rely on it. How can I get some portable key codes ...
1
vote
2answers
509 views
2
votes
1answer
432 views
How to create a mapped but not visible window with XLib?
I'm working on a I/O verification tool based on Linux in a game project. It is written in C++, and,since using the same I/O module as our game, it's based on OIS 1.2. Thus, though all I need is to ...