Class SoKeyboardEvent


public class SoKeyboardEvent extends SoButtonEvent
Keyboard key press and release events. SoKeyboardEvent represents keyboard key press and release events in the Open Inventor event model.

Add an SoEventCallback node to the scene graph to handle Open Inventor events.

See Also:
  • Constructor Details

    • SoKeyboardEvent

      public SoKeyboardEvent()
      Constructor.
  • Method Details

    • getKeySym

      public static SoKeyboardEvent.Keys getKeySym(int key)
    • setKey

      public void setKey(SoKeyboardEvent.Keys whichKey)
      Sets which key generated the event.
    • isKeyPressEvent

      public static boolean isKeyPressEvent(SoEvent e, SoKeyboardEvent.Keys whichKey)
      Returns whether the passed event is a keyboard press event of the passed key. When SoKeyboardEvent.ANY is passed, this returns true if the event represents a keyboard press of any key.
    • getKey

      public SoKeyboardEvent.Keys getKey()
      Gets which key generated the event.
    • isKeyReleaseEvent

      public static boolean isKeyReleaseEvent(SoEvent e, SoKeyboardEvent.Keys whichKey)
      Returns whether the passed event is a keyboard release event of the passed key. When SoKeyboardEvent.ANY is passed, this returns true if the event represents a keyboard release of any key.
    • getPrintableCharacter

      public byte getPrintableCharacter()
      Convenience routine that returns the character representing the key, if it's printable. If not, this returns NULL ('\0').