2017-03-29 00:20:36 +02: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 23:09:47 +01:00
|
|
|
#include "process_unicode_common.h"
|
2022-09-12 17:49:04 +02:00
|
|
|
#include "unicode.h"
|
|
|
|
#include "action_util.h"
|
2023-08-27 05:30:19 +02:00
|
|
|
#include "keycodes.h"
|
|
|
|
#include "modifiers.h"
|
2017-02-15 23:09:47 +01:00
|
|
|
|
2022-09-12 17:49:04 +02: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"
|
2020-05-09 10:22:02 +02:00
|
|
|
#endif
|
|
|
|
|
2018-12-19 17:39:24 +01:00
|
|
|
bool process_unicode_common(uint16_t keycode, keyrecord_t *record) {
|
2019-08-30 20:19:03 +02:00
|
|
|
if (record->event.pressed) {
|
2020-05-09 10:22:02 +02:00
|
|
|
bool shifted = get_mods() & MOD_MASK_SHIFT;
|
2019-08-30 20:19:03 +02:00
|
|
|
switch (keycode) {
|
2022-10-31 22:15:12 +01:00
|
|
|
case QK_UNICODE_MODE_NEXT:
|
2023-08-27 05:30:19 +02:00
|
|
|
if (shifted) {
|
|
|
|
unicode_input_mode_step_reverse();
|
|
|
|
} else {
|
|
|
|
unicode_input_mode_step();
|
|
|
|
}
|
2019-08-30 20:19:03 +02:00
|
|
|
break;
|
2022-10-31 22:15:12 +01:00
|
|
|
case QK_UNICODE_MODE_PREVIOUS:
|
2023-08-27 05:30:19 +02:00
|
|
|
if (shifted) {
|
|
|
|
unicode_input_mode_step();
|
|
|
|
} else {
|
|
|
|
unicode_input_mode_step_reverse();
|
|
|
|
}
|
2019-08-30 20:19:03 +02:00
|
|
|
break;
|
2022-10-31 22:15:12 +01:00
|
|
|
case QK_UNICODE_MODE_MACOS:
|
|
|
|
set_unicode_input_mode(UNICODE_MODE_MACOS);
|
2022-08-14 21:24:52 +02:00
|
|
|
break;
|
2022-10-31 22:15:12 +01:00
|
|
|
case QK_UNICODE_MODE_LINUX:
|
|
|
|
set_unicode_input_mode(UNICODE_MODE_LINUX);
|
2022-08-14 21:24:52 +02:00
|
|
|
break;
|
2022-10-31 22:15:12 +01:00
|
|
|
case QK_UNICODE_MODE_WINDOWS:
|
|
|
|
set_unicode_input_mode(UNICODE_MODE_WINDOWS);
|
2022-08-14 21:24:52 +02:00
|
|
|
break;
|
2022-10-31 22:15:12 +01:00
|
|
|
case QK_UNICODE_MODE_BSD:
|
|
|
|
set_unicode_input_mode(UNICODE_MODE_BSD);
|
2022-08-14 21:24:52 +02:00
|
|
|
break;
|
2022-10-31 22:15:12 +01:00
|
|
|
case QK_UNICODE_MODE_WINCOMPOSE:
|
|
|
|
set_unicode_input_mode(UNICODE_MODE_WINCOMPOSE);
|
2022-08-14 21:24:52 +02:00
|
|
|
break;
|
2022-10-31 22:15:12 +01:00
|
|
|
case QK_UNICODE_MODE_EMACS:
|
|
|
|
set_unicode_input_mode(UNICODE_MODE_EMACS);
|
2019-08-30 20:19:03 +02:00
|
|
|
break;
|
|
|
|
}
|
2018-12-19 17:39:24 +01:00
|
|
|
}
|
2020-05-09 10:22:02 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
#if defined(UNICODE_ENABLE)
|
|
|
|
return process_unicode(keycode, record);
|
2018-12-19 17:39:24 +01:00
|
|
|
#elif defined(UNICODEMAP_ENABLE)
|
2019-08-30 20:19:03 +02:00
|
|
|
return process_unicodemap(keycode, record);
|
2018-12-19 17:39:24 +01:00
|
|
|
#elif defined(UCIS_ENABLE)
|
2019-08-30 20:19:03 +02:00
|
|
|
return process_ucis(keycode, record);
|
2018-12-19 17:39:24 +01:00
|
|
|
#else
|
2019-08-30 20:19:03 +02:00
|
|
|
return true;
|
2018-12-19 17:39:24 +01:00
|
|
|
#endif
|
|
|
|
}
|