Caps Lock State in Qt (or any mac API) - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T05:24:31Zhttp://stackoverflow.com/feeds/question/1009883http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1009883/caps-lock-state-in-qt-or-any-mac-api0Caps Lock State in Qt (or any mac API)Boris Gougeon2009-06-17T22:43:22Z2009-06-18T01:25:05Z
<p>Hi!</p>
<p>I'm trying to figure out how to get the caps lock state in Qt (4.5) but the only thing I managed to get from qt is either or not the CAPS LOCK was pressed or released, and then could't get the actual state.</p>
<p>In order to solve that I've tried platform dependent and I got something working on xp. But now I'm looking for a solution on mac. I googled a lot without success (or maybe some objective C API or HID Api).</p>
<p>So it would be great if someone had any id how to do that either with qt, or on mac.
Thanks in advance, </p>
<p>Boris</p>
http://stackoverflow.com/questions/1009883/caps-lock-state-in-qt-or-any-mac-api/1010345#10103451Answer by ephemient for Caps Lock State in Qt (or any mac API)ephemient2009-06-18T01:25:05Z2009-06-18T01:25:05Z<p>If looking at GPL code doesn't taint you, see <a href="http://vbox.innotek.de/browser/trunk/src/VBox/Frontends/VirtualBox/src/darwin/DarwinKeyboard.cpp" rel="nofollow">VirtualBox/src/VBox/Frontends/VirtualBox/src/darwin/DarwinKeyboard.cpp</a>.</p>
<p>In particular, its <code>darwinHIDKeyboardCacheDoUpdate</code> finds all keyboards, and <code>darwinQueryHIDModifiers</code> iterates over keyboards looking for held modifier keys.</p>
<p>As the comments say: for some reason, this all seems to be pretty poorly documented...</p>
<p>I don't have a running Mac myself, but VirtualBox uses Qt 4 for its GUI and <em>still</em> has to dig down into IOKit itself to get at keyboard modifier keys on a Mac, so I would guess that this isn't possible with just plain Qt.</p>