| 839 | } |
| 840 | |
| 841 | void OSXKeyState::handleModifierKey(void *target, uint32_t virtualKey, KeyID id, bool down, KeyModifierMask newMask) |
| 842 | { |
| 843 | KeyButton button = mapVirtualKeyToKeyButton(virtualKey); |
| 844 | onKey(button, down, newMask); |
| 845 | sendKeyEvent(target, down, false, id, newMask, 0, button); |
| 846 | } |
| 847 | |
| 848 | bool OSXKeyState::getGroups(AutoCFArray &groups) const |
| 849 | { |
nothing calls this directly
no outgoing calls
no test coverage detected