diff options
author | Guillermo Ramos | 2011-09-19 01:00:27 +0200 |
---|---|---|
committer | Guillermo Ramos | 2011-09-19 01:00:27 +0200 |
commit | 68459ada2db3d8626b1957e220a9abe8aff6c1e3 (patch) | |
tree | b7a07d789b37d2d9dcab5c7b94c41241347896d4 /maps/maps.h | |
parent | 974a8595ed3c09ccef62df7e3748baddb9038d8e (diff) | |
download | evspy-68459ada2db3d8626b1957e220a9abe8aff6c1e3.tar.gz |
Added license and done a little cleanup of code
Diffstat (limited to 'maps/maps.h')
-rw-r--r-- | maps/maps.h | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/maps/maps.h b/maps/maps.h index 399d3df..f4fc856 100644 --- a/maps/maps.h +++ b/maps/maps.h @@ -3,36 +3,42 @@ * * Each map is an array where the content of each position is the key value * associated with the event code (index). An special/unknown key is represented - * as a dot ('.'). The dot key itself has its own macro (KEY_DOT). + * as a dot ('.'). The dot key itself is registered with its own macro (KEY_DOT). + * + * Maps are imported from files named map_XX.h, where XX is the layout code. + * + * Each file declares a char array called map, where the content of each + * position is the key value associated with the event code (index). It also + * defines a function called init_shiftmap that can register any number of shift + * keys to be parsed when shift or capslock has been pressed. + * + * For example, + * EVS_SHIFT(KEY_7, "/"); + * associates the key of number 7 to the slash character when shift is pressed. + * Yeah, the character associated is a string: this is because of the hashmap + * implementation, that maps an integer to a (void *). * * By the moment, evspy does not support non-ascii characters. * - * Select your map with EVS_MAP macro in evspy-core.h + * Select your map with EVS_KLAY macro in evspy-core.h */ #ifndef __EVS_MAPS #define __EVS_MAPS #include <linux/input.h> -#include "../khashmap/khashmap.h" +#include "../khm/khm.h" #define EVS_SHIFT(KEY, VALUE) khm_insert(shm, (KEY), (VALUE)) +// Shift map static struct khashmap *shm; -static inline void exit_map(void) +static inline void exit_shiftmap(void) { khm_destroy(shm); } -static inline void init_shiftmap_global(void) -{ - shm = khm_create(); -} - -#define EVS_KLAY_EN 0 -#define EVS_KLAY_ES 1 - // Load the map associated with the given keyboard layout #ifndef EVS_KLAY #include "map_es.h" // default layout |