diff options
author | 2012-09-04 17:00:24 +0900 | |
---|---|---|
committer | 2012-09-04 17:00:24 +0900 | |
commit | 95a49a527ac9c2c97cfcc758bd6f0d58fb4ad9c0 (patch) | |
tree | 4cdb92b65aae3bf026ba6fcbcdd6966637677b86 /native/jni/src/defines.h | |
parent | d34dd5bb6bb01666171a37e9cefe46bb20d04e93 (diff) | |
download | latinime-95a49a527ac9c2c97cfcc758bd6f0d58fb4ad9c0.tar.gz latinime-95a49a527ac9c2c97cfcc758bd6f0d58fb4ad9c0.tar.xz latinime-95a49a527ac9c2c97cfcc758bd6f0d58fb4ad9c0.zip |
Restricting children for gesture input.
Change-Id: Id2607ef48e67685b0a71b8c628663eceb6b6fe95
Diffstat (limited to 'native/jni/src/defines.h')
-rw-r--r-- | native/jni/src/defines.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/jni/src/defines.h b/native/jni/src/defines.h index 2ce10d0ac..0286365bc 100644 --- a/native/jni/src/defines.h +++ b/native/jni/src/defines.h @@ -327,6 +327,9 @@ static inline void prof_out(void) { // Max Distance between point to key #define MAX_POINT_TO_KEY_LENGTH 10000000 +// The max number of the keys in one keyboard layout +#define MAX_KEY_COUNT_IN_A_KEYBOARD 64 + // TODO: Reduce this constant if possible; check the maximum number of digraphs in the same // word in the dictionary for languages with digraphs, like German and French #define DEFAULT_MAX_DIGRAPH_SEARCH_DEPTH 5 |