Package com.openinventor.inventor.events
Class SoKeyboardEvent
java.lang.Object
com.openinventor.inventor.Inventor
com.openinventor.inventor.events.SoEvent
com.openinventor.inventor.events.SoButtonEvent
com.openinventor.inventor.events.SoKeyboardEvent
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:
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class com.openinventor.inventor.events.SoButtonEvent
SoButtonEvent.States
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
Field Summary
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetKey()
Gets which key generated the event.static SoKeyboardEvent.Keys
getKeySym
(int key) byte
Convenience routine that returns the character representing the key, if it's printable.static boolean
isKeyPressEvent
(SoEvent e, SoKeyboardEvent.Keys whichKey) Returns whether the passed event is a keyboard press event of the passed key.static boolean
isKeyReleaseEvent
(SoEvent e, SoKeyboardEvent.Keys whichKey) Returns whether the passed event is a keyboard release event of the passed key.void
setKey
(SoKeyboardEvent.Keys whichKey) Sets which key generated the event.Methods inherited from class com.openinventor.inventor.events.SoButtonEvent
getState, setState
Methods inherited from class com.openinventor.inventor.events.SoEvent
getNormalizedPosition, getPosition, getPosition, getPositionFloat, getPositionFloat, getTime, setAltDown, setButton1Down, setCtrlDown, setPosition, setPosition, setShiftDown, setTime, wasAltDown, wasButton1Down, wasCtrlDown, wasShiftDown
Methods inherited from class com.openinventor.inventor.Inventor
dispose, getNativeResourceHandle
-
Constructor Details
-
SoKeyboardEvent
public SoKeyboardEvent()Constructor.
-
-
Method Details
-
getKeySym
-
setKey
Sets which key generated the event. -
isKeyPressEvent
Returns whether the passed event is a keyboard press event of the passed key. WhenSoKeyboardEvent.ANY
is passed, this returns true if the event represents a keyboard press of any key. -
getKey
Gets which key generated the event. -
isKeyReleaseEvent
Returns whether the passed event is a keyboard release event of the passed key. WhenSoKeyboardEvent.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').
-