When I press any key I receive 3 events: KeyPressed, KeyTyped and KeyReleased. For KeyPressed and KeyReleased it knows where the key came from e.g. the KeyPad. However, for the KeyTyped event it seems to lose all knowledge that it came from the keypad. Any idea why that is?
This is some of the toString when i press the 4 key in the keypad:
java.awt.event.KeyEvent[KEY_TYPED,keyCode=0,keyText=Unknown keyCode: 0x0,keyChar='4',keyLocation=KEY_LOCATION_UNKNOWN
I can consume the KeyPressed and KeyReleased if it comes from the keypad but I need to do the same for KeyTyped:
@Override
public boolean dispatchKeyEvent(KeyEvent keyEvent) {
if (keyEvent.getKeyLocation() == KeyEvent.KEY_LOCATION_NUMPAD){
keyEvent.consume();
return true;
}
return false;
}
So my question is how do I stop it from issuing the KeyTyped event if it comes from the keypad?
Thanks,