12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #include "process_unicode_common.h"
- #include "unicode.h"
- #include "action_util.h"
- #include "keycode.h"
- #if defined(UNICODE_ENABLE)
- # include "process_unicode.h"
- #elif defined(UNICODEMAP_ENABLE)
- # include "process_unicodemap.h"
- #elif defined(UCIS_ENABLE)
- # include "process_ucis.h"
- #endif
- bool process_unicode_common(uint16_t keycode, keyrecord_t *record) {
- if (record->event.pressed) {
- bool shifted = get_mods() & MOD_MASK_SHIFT;
- switch (keycode) {
- case QK_UNICODE_MODE_NEXT:
- cycle_unicode_input_mode(shifted ? -1 : +1);
- break;
- case QK_UNICODE_MODE_PREVIOUS:
- cycle_unicode_input_mode(shifted ? +1 : -1);
- break;
- case QK_UNICODE_MODE_MACOS:
- set_unicode_input_mode(UNICODE_MODE_MACOS);
- break;
- case QK_UNICODE_MODE_LINUX:
- set_unicode_input_mode(UNICODE_MODE_LINUX);
- break;
- case QK_UNICODE_MODE_WINDOWS:
- set_unicode_input_mode(UNICODE_MODE_WINDOWS);
- break;
- case QK_UNICODE_MODE_BSD:
- set_unicode_input_mode(UNICODE_MODE_BSD);
- break;
- case QK_UNICODE_MODE_WINCOMPOSE:
- set_unicode_input_mode(UNICODE_MODE_WINCOMPOSE);
- break;
- case QK_UNICODE_MODE_EMACS:
- set_unicode_input_mode(UNICODE_MODE_EMACS);
- break;
- }
- }
- #if defined(UNICODE_ENABLE)
- return process_unicode(keycode, record);
- #elif defined(UNICODEMAP_ENABLE)
- return process_unicodemap(keycode, record);
- #elif defined(UCIS_ENABLE)
- return process_ucis(keycode, record);
- #else
- return true;
- #endif
- }
|