Let's say I have a window-less application which has only an icon on the Taskbar (Windows, Mac OS X & Linux). I want it to capture some key & key combinations, let's say Right Control + Right Shift. Upon keying in correct, combination, it will do something, say take screenshot. I can do window-less app, icon on the Taskbar and screen capture but I don't know how to monitor keyboard globally for key combinations. Please kindly advise. Any help or hint is greatly appreciated! Thanks in advance!

link|improve this question

To my mind, you couldn't grab or capture key, since you don't have the focus onto your window. – dzen Jun 5 '10 at 11:41
So I need to Hook then :) – Viet Jun 5 '10 at 11:51
Just curious. Are you waiting for more thorough answer than mine? ;) – przemoc Jul 5 '10 at 11:11
feedback

1 Answer

up vote 4 down vote accepted

System-wide key grabbing is a tricky subject, but system-wide key hooking is even trickier. Every OS/GUI has its own solution, at least for grabbing. Qt4 doesn't expose such feature, but Qt eXTension library solves the problem with its QxtGlobalShortcut. It's a nice wrapper for:

So you can grab explicit key combination, i.e. particular key and modifiers (XGrabKey() allows a bit more), that no other application will get. Key sequences, i.e. consecutive key combinations, are not supported here.


Keyboard hooking is much more powerful, because it allows peeking at the input events (or even filtering them). It's not only used by keyboard loggers, but they are a typical association here.

If you're into Windows, then you can read:

In X11 it's much more complicated. There are at least a two pages you may want to read:

There was a X Event Interception Extension, but it wasn't maintained and eventually has been removed.

Hopefully it can be done without the help of X11 infrastructure. In Linux 2.6 kernel there is "Event interface", known as evdev, that can be exploited here. Details can be found in the source code of the logkeys Linux keylogger. It can also be done with something in effect similar to evdev. See my PoC project: kaos - Key Activity On-Screen display.

And I don't have Mac, so no further references. ;)

link|improve this answer
+1 thanks. I didn't notice your answer. I'm using libqxt with no success in Mac OS X. – Viet Jul 5 '10 at 12:58
As I said, I am not a Mac user, so I cannot help you here. Sorry. – przemoc Jul 5 '10 at 13:22
Interesting, Win32 Hooks is now an empty page with Content Removed. Is it my fault? ;) I'll update above answer. Don't worry, there is a Wayback Machine. http://web.archive.org/web/20080510093117/http://msdn.microsoft.com/en-us/libra‌​ry/ms997537.aspx) - Win32 Hooks by Kyle Marsh – przemoc Jul 6 '10 at 21:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.