Use new builtin `Key` variant test functions in Qukeys

Signed-off-by: Michael Richters <gedankenexperimenter@gmail.com>
pull/982/head
Michael Richters 4 years ago
parent 1f61183dba
commit 3db2779b23
No known key found for this signature in database
GPG Key ID: 1288FD13E4EEF0C0

@ -418,24 +418,11 @@ bool Qukeys::isKeyAddrInQueueBeforeIndex(KeyAddr k, uint8_t index) const {
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// This function could get lifted into Kaleidoscope proper, since it might be // This function is here to provide the test for a SpaceCadet-type qukey, which
// more generally useful. It's here to provide the test for a SpaceCadet-type // is any Qukey that has a modifier (including layer shifts) as its primary
// qukey, which is any Qukey that has a modifier (including layer shifts) as its // value.
// primary value.
bool isModifierKey(Key key) { bool isModifierKey(Key key) {
// If it's a plain keyboard key, return true if its base keycode is a return (key.isKeyboardModifier() || key.isLayerShift());
// modifier, otherwise return false:
if ((key.getFlags() & (SYNTHETIC | RESERVED)) == 0) {
return (key.getKeyCode() >= HID_KEYBOARD_FIRST_MODIFIER &&
key.getKeyCode() <= HID_KEYBOARD_LAST_MODIFIER);
}
// If it's a layer shift key, return true:
if (key.getFlags() == (SYNTHETIC | SWITCH_TO_KEYMAP) &&
key.getKeyCode() >= LAYER_SHIFT_OFFSET) {
return true;
}
// In all other cases, return false:
return false;
} }
} // namespace plugin { } // namespace plugin {

Loading…
Cancel
Save