Browse Source

Move more unicode ranges to DD (#19755)

pull/19808/head
Joel Challis 1 year ago
committed by GitHub
parent
commit
2ffdec5dc2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 5 deletions
  1. +10
    -1
      data/constants/keycodes/keycodes_0.0.2.hjson
  2. +6
    -0
      quantum/keycodes.h
  3. +0
    -4
      quantum/quantum_keycodes.h

+ 10
- 1
data/constants/keycodes/keycodes_0.0.2.hjson View File

@ -1 +1,10 @@
{}
{
"ranges": {
"0x8000/0X3FFF": {
"define": "QK_UNICODEMAP"
},
"0xC000/0X3FFF": {
"define": "QK_UNICODEMAP_PAIR"
}
}
}

+ 6
- 0
quantum/keycodes.h View File

@ -82,6 +82,10 @@ enum qk_keycode_ranges {
QK_USER_MAX = 0x7FFF,
QK_UNICODE = 0x8000,
QK_UNICODE_MAX = 0xFFFF,
QK_UNICODEMAP = 0x8000,
QK_UNICODEMAP_MAX = 0xBFFF,
QK_UNICODEMAP_PAIR = 0xC000,
QK_UNICODEMAP_PAIR_MAX = 0xFFFF,
};
enum qk_keycode_defines {
@ -1308,6 +1312,8 @@ enum qk_keycode_defines {
#define IS_QK_KB(code) ((code) >= QK_KB && (code) <= QK_KB_MAX)
#define IS_QK_USER(code) ((code) >= QK_USER && (code) <= QK_USER_MAX)
#define IS_QK_UNICODE(code) ((code) >= QK_UNICODE && (code) <= QK_UNICODE_MAX)
#define IS_QK_UNICODEMAP(code) ((code) >= QK_UNICODEMAP && (code) <= QK_UNICODEMAP_MAX)
#define IS_QK_UNICODEMAP_PAIR(code) ((code) >= QK_UNICODEMAP_PAIR && (code) <= QK_UNICODEMAP_PAIR_MAX)
// Group Helpers
#define IS_INTERNAL_KEYCODE(code) ((code) >= KC_NO && (code) <= KC_TRANSPARENT)


+ 0
- 4
quantum/quantum_keycodes.h View File

@ -33,10 +33,6 @@
#define QK_RSFT 0x1200
#define QK_RALT 0x1400
#define QK_RGUI 0x1800
#define QK_UNICODEMAP 0x8000
#define QK_UNICODEMAP_MAX 0xBFFF
#define QK_UNICODEMAP_PAIR 0xC000
#define QK_UNICODEMAP_PAIR_MAX 0xFFFF
// clang-format on
// Generic decoding for the whole QK_MODS range


Loading…
Cancel
Save