Add keyboard hypotenuse metric to ProximityInfo.
Change-Id: If4a23041b460326a579e8b8cab20b5c027441e23main
parent
738579103f
commit
625778fd36
|
@ -15,6 +15,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
#define LOG_TAG "LatinIME: proximity_info.cpp"
|
#define LOG_TAG "LatinIME: proximity_info.cpp"
|
||||||
|
|
||||||
|
@ -59,6 +60,7 @@ ProximityInfo::ProximityInfo(JNIEnv *env, const jstring localeJStr,
|
||||||
CELL_HEIGHT((keyboardHeight + gridHeight - 1) / gridHeight),
|
CELL_HEIGHT((keyboardHeight + gridHeight - 1) / gridHeight),
|
||||||
KEY_COUNT(min(keyCount, MAX_KEY_COUNT_IN_A_KEYBOARD)),
|
KEY_COUNT(min(keyCount, MAX_KEY_COUNT_IN_A_KEYBOARD)),
|
||||||
KEYBOARD_WIDTH(keyboardWidth), KEYBOARD_HEIGHT(keyboardHeight),
|
KEYBOARD_WIDTH(keyboardWidth), KEYBOARD_HEIGHT(keyboardHeight),
|
||||||
|
KEYBOARD_HYPOTENUSE(hypotf(KEYBOARD_WIDTH, KEYBOARD_HEIGHT)),
|
||||||
HAS_TOUCH_POSITION_CORRECTION_DATA(keyCount > 0 && keyXCoordinates && keyYCoordinates
|
HAS_TOUCH_POSITION_CORRECTION_DATA(keyCount > 0 && keyXCoordinates && keyYCoordinates
|
||||||
&& keyWidths && keyHeights && keyCharCodes && sweetSpotCenterXs
|
&& keyWidths && keyHeights && keyCharCodes && sweetSpotCenterXs
|
||||||
&& sweetSpotCenterYs && sweetSpotRadii),
|
&& sweetSpotCenterYs && sweetSpotRadii),
|
||||||
|
|
|
@ -62,6 +62,7 @@ class ProximityInfo {
|
||||||
int getGridHeight() const { return GRID_HEIGHT; }
|
int getGridHeight() const { return GRID_HEIGHT; }
|
||||||
int getKeyboardWidth() const { return KEYBOARD_WIDTH; }
|
int getKeyboardWidth() const { return KEYBOARD_WIDTH; }
|
||||||
int getKeyboardHeight() const { return KEYBOARD_HEIGHT; }
|
int getKeyboardHeight() const { return KEYBOARD_HEIGHT; }
|
||||||
|
float getKeyboardHypotenuse() const { return KEYBOARD_HYPOTENUSE; }
|
||||||
|
|
||||||
int getKeyCenterXOfCodePointG(int charCode) const;
|
int getKeyCenterXOfCodePointG(int charCode) const;
|
||||||
int getKeyCenterYOfCodePointG(int charCode) const;
|
int getKeyCenterYOfCodePointG(int charCode) const;
|
||||||
|
@ -97,6 +98,7 @@ class ProximityInfo {
|
||||||
const int KEY_COUNT;
|
const int KEY_COUNT;
|
||||||
const int KEYBOARD_WIDTH;
|
const int KEYBOARD_WIDTH;
|
||||||
const int KEYBOARD_HEIGHT;
|
const int KEYBOARD_HEIGHT;
|
||||||
|
const float KEYBOARD_HYPOTENUSE;
|
||||||
const bool HAS_TOUCH_POSITION_CORRECTION_DATA;
|
const bool HAS_TOUCH_POSITION_CORRECTION_DATA;
|
||||||
char mLocaleStr[MAX_LOCALE_STRING_LENGTH];
|
char mLocaleStr[MAX_LOCALE_STRING_LENGTH];
|
||||||
int *mProximityCharsArray;
|
int *mProximityCharsArray;
|
||||||
|
|
Loading…
Reference in New Issue