mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	* `UC_MOD`/`UC_RMOD` -> `UC_NEXT`/`UC_PREV` * `UNICODE_MODE_*` -> `QK_UNICODE_MODE_*` * `UC_MAC` -> `UNICODE_MODE_MACOS` * `UC_LNX` -> `UNICODE_MODE_LINUX` * `UC_WIN` -> `UNICODE_MODE_WINDOWS` * `UC_BSD` -> `UNICODE_MODE_BSD` * `UC_WINC` -> `UNICODE_MODE_WINCOMPOSE` * `UC_EMACS` -> `UNICODE_MODE_EMACS` * `UC__COUNT` -> `UNICODE_MODE_COUNT` * `UC_M_MA` -> `UC_MAC` * `UC_M_LN` -> `UC_LINX` * `UC_M_WI` -> `UC_WIN` * `UC_M_BS` -> `UC_BSD` * `UC_M_WC` -> `UC_WINC` * `UC_M_EM` -> `UC_EMAC` * Docs * Update quantum/unicode/unicode.h
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* 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/>.
 | 
						|
 */
 | 
						|
 | 
						|
#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
 | 
						|
}
 |