Uses of Class
com.openinventor.inventor.events.SoKeyboardEvent.Keys
-
Packages that use SoKeyboardEvent.Keys Package Description com.openinventor.inventor.events com.openinventor.inventor.viewercomponents Viewer components contains helpful tools to implement a custom viewer.com.openinventor.ivtune IvTune is used for viewing and interacting with the scene graph in an Open Inventor application.com.openinventor.remoteviz.rendering Table of Contents -
-
Uses of SoKeyboardEvent.Keys in com.openinventor.inventor.events
Methods in com.openinventor.inventor.events that return SoKeyboardEvent.Keys Modifier and Type Method Description SoKeyboardEvent.Keys
SoKeyboardEvent. getKey()
Gets which key generated the event.static SoKeyboardEvent.Keys
SoKeyboardEvent. getKeySym(int key)
static SoKeyboardEvent.Keys
SoKeyboardEvent.Keys. valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoKeyboardEvent.Keys
SoKeyboardEvent.Keys. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoKeyboardEvent.Keys[]
SoKeyboardEvent.Keys. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.openinventor.inventor.events with parameters of type SoKeyboardEvent.Keys Modifier and Type Method Description static boolean
SoKeyboardEvent. isKeyPressEvent(SoEvent e, SoKeyboardEvent.Keys whichKey)
Returns whether the passed event is a keyboard press event of the passed key.static boolean
SoKeyboardEvent. isKeyReleaseEvent(SoEvent e, SoKeyboardEvent.Keys whichKey)
Returns whether the passed event is a keyboard release event of the passed key.void
SoKeyboardEvent. setKey(SoKeyboardEvent.Keys whichKey)
Sets which key generated the event. -
Uses of SoKeyboardEvent.Keys in com.openinventor.inventor.viewercomponents
Methods in com.openinventor.inventor.viewercomponents with parameters of type SoKeyboardEvent.Keys Modifier and Type Method Description SoKeyboardEvent
SoEventBuilder. getKeyPressEvent(SoKeyboardEvent.Keys key, boolean isAltDown, boolean isCtrlDown, boolean isShiftDown)
Return anSoKeyboardEvent
corresponding to given parameters.SoKeyboardEvent
SoEventBuilder. getKeyReleaseEvent(SoKeyboardEvent.Keys key, boolean isAltDown, boolean isCtrlDown, boolean isShiftDown)
Return anSoKeyboardEvent
corresponding to given parameters. -
Uses of SoKeyboardEvent.Keys in com.openinventor.ivtune
Methods in com.openinventor.ivtune that return SoKeyboardEvent.Keys Modifier and Type Method Description static SoKeyboardEvent.Keys
SoIvTune. getShortcutValue()
Retrieves the defined keyboard shortcut used to launch IvTune/Open Inventor Studio.Methods in com.openinventor.ivtune with parameters of type SoKeyboardEvent.Keys Modifier and Type Method Description static void
SoIvTune. setShortcutValue(SoKeyboardEvent.Keys name_14298)
Defines the keyboard shortcut to use to launch IvTune/Open Inventor Studio. -
Uses of SoKeyboardEvent.Keys in com.openinventor.remoteviz.rendering
Methods in com.openinventor.remoteviz.rendering with parameters of type SoKeyboardEvent.Keys Modifier and Type Method Description boolean
RenderAreaListener. onKeyDown(RenderArea renderArea, Connection sender, int x, int y, SoKeyboardEvent.Keys key)
Triggered when a KeyDown event is received from the client.boolean
RenderAreaListener. onKeyUp(RenderArea renderArea, Connection sender, int x, int y, SoKeyboardEvent.Keys key)
Triggered when a KeyUp event is received from the client.
-