Home | History | Annotate | Download | only in openwnn

Lines Matching refs:primaryCode

71          * @param primaryCode the unicode of the key being pressed. If the touch is not on a valid
74 void onPress(int primaryCode);
79 * @param primaryCode the code of the key that was released
81 void onRelease(int primaryCode);
85 * @param primaryCode this is the key that was pressed
93 void onKey(int primaryCode, int[] keyCodes);
1076 public void onKey(int primaryCode, int[] keyCodes) {
1077 mKeyboardActionListener.onKey(primaryCode, keyCodes);
1090 public void onPress(int primaryCode) {
1091 mKeyboardActionListener.onPress(primaryCode);
1093 public void onRelease(int primaryCode) {
1094 mKeyboardActionListener.onRelease(primaryCode);