Files
zsa_qmk_firmware/quantum/process_keycode/process_unicode_common.c
T

71 lines
2.4 KiB
C
Raw Normal View History

2017-03-28 15:20:36 -07:00
/* Copyright 2017 Jack Humbert
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2017-02-15 17:09:47 -05:00
#include "process_unicode_common.h"
2022-09-13 01:49:04 +10:00
#include "unicode.h"
#include "action_util.h"
#include "keycode.h"
2017-02-15 17:09:47 -05:00
2022-09-13 01:49:04 +10:00
#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) {
2019-08-30 11:19:03 -07:00
if (record->event.pressed) {
bool shifted = get_mods() & MOD_MASK_SHIFT;
2019-08-30 11:19:03 -07:00
switch (keycode) {
2022-11-01 08:15:12 +11:00
case QK_UNICODE_MODE_NEXT:
cycle_unicode_input_mode(shifted ? -1 : +1);
2019-08-30 11:19:03 -07:00
break;
2022-11-01 08:15:12 +11:00
case QK_UNICODE_MODE_PREVIOUS:
cycle_unicode_input_mode(shifted ? +1 : -1);
2019-08-30 11:19:03 -07:00
break;
2022-11-01 08:15:12 +11:00
case QK_UNICODE_MODE_MACOS:
set_unicode_input_mode(UNICODE_MODE_MACOS);
break;
2022-11-01 08:15:12 +11:00
case QK_UNICODE_MODE_LINUX:
set_unicode_input_mode(UNICODE_MODE_LINUX);
break;
2022-11-01 08:15:12 +11:00
case QK_UNICODE_MODE_WINDOWS:
set_unicode_input_mode(UNICODE_MODE_WINDOWS);
break;
2022-11-01 08:15:12 +11:00
case QK_UNICODE_MODE_BSD:
set_unicode_input_mode(UNICODE_MODE_BSD);
break;
2022-11-01 08:15:12 +11:00
case QK_UNICODE_MODE_WINCOMPOSE:
set_unicode_input_mode(UNICODE_MODE_WINCOMPOSE);
break;
2022-11-01 08:15:12 +11:00
case QK_UNICODE_MODE_EMACS:
set_unicode_input_mode(UNICODE_MODE_EMACS);
2019-08-30 11:19:03 -07:00
break;
}
}
2019-08-30 11:19:03 -07:00
#if defined(UNICODE_ENABLE)
return process_unicode(keycode, record);
#elif defined(UNICODEMAP_ENABLE)
2019-08-30 11:19:03 -07:00
return process_unicodemap(keycode, record);
#elif defined(UCIS_ENABLE)
2019-08-30 11:19:03 -07:00
return process_ucis(keycode, record);
#else
2019-08-30 11:19:03 -07:00
return true;
#endif
}