Uses of Class
com.openinventor.inventor.events.SoMouseButtonEvent.Buttons
-
Packages that use SoMouseButtonEvent.Buttons Package Description com.openinventor.inventor.events com.openinventor.inventor.viewercomponents Viewer components contains helpful tools to implement a custom viewer.com.openinventor.remoteviz.rendering Table of Contents -
-
Uses of SoMouseButtonEvent.Buttons in com.openinventor.inventor.events
Methods in com.openinventor.inventor.events that return SoMouseButtonEvent.Buttons Modifier and Type Method Description SoMouseButtonEvent.ButtonsSoMouseButtonEvent. getButton()Gets which mouse button generated the event.static SoMouseButtonEvent.ButtonsSoMouseButtonEvent.Buttons. valueOf(int val)Returns the enum constant of this type with the specified integer valuestatic SoMouseButtonEvent.ButtonsSoMouseButtonEvent.Buttons. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SoMouseButtonEvent.Buttons[]SoMouseButtonEvent.Buttons. 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 SoMouseButtonEvent.Buttons Modifier and Type Method Description static booleanSoMouseButtonEvent. isButtonDoubleClickEvent(SoEvent e, SoMouseButtonEvent.Buttons whichButton)Returns whether the passed event is a mouse button double click event of the passed button.static booleanSoMouseButtonEvent. isButtonPressEvent(SoEvent e, SoMouseButtonEvent.Buttons whichButton)Returns whether the passed event is a mouse button press event of the passed button.static booleanSoMouseButtonEvent. isButtonReleaseEvent(SoEvent e, SoMouseButtonEvent.Buttons whichButton)Returns whether the passed event is a mouse button release event of the passed button.voidSoMouseButtonEvent. setButton(SoMouseButtonEvent.Buttons b)Sets which mouse button generated the event. -
Uses of SoMouseButtonEvent.Buttons in com.openinventor.inventor.viewercomponents
Methods in com.openinventor.inventor.viewercomponents with parameters of type SoMouseButtonEvent.Buttons Modifier and Type Method Description SoMouseButtonEventSoEventBuilder. getMouseDoubleClickEvent(int x, int y, SoMouseButtonEvent.Buttons buttonId, boolean isAltDown, boolean isCtrlDown, boolean isShiftDown)Return anSoMouseButtonEventcorresponding to given parameters.SoMouseButtonEventSoEventBuilder. getMousePressEvent(int x, int y, SoMouseButtonEvent.Buttons buttonId, boolean isAltDown, boolean isCtrlDown, boolean isShiftDown)Return anSoMouseButtonEventcorresponding to given parameters.SoMouseButtonEventSoEventBuilder. getMouseReleaseEvent(int x, int y, SoMouseButtonEvent.Buttons buttonId, boolean isAltDown, boolean isCtrlDown, boolean isShiftDown)Return anSoMouseButtonEventcorresponding to given parameters. -
Uses of SoMouseButtonEvent.Buttons in com.openinventor.remoteviz.rendering
Methods in com.openinventor.remoteviz.rendering with parameters of type SoMouseButtonEvent.Buttons Modifier and Type Method Description booleanRenderAreaListener. onMouseDoubleClick(RenderArea renderArea, Connection sender, int x, int y, SoMouseButtonEvent.Buttons button)Triggered when a MouseDoubleClick event is received from the client.booleanRenderAreaListener. onMouseDown(RenderArea renderArea, Connection sender, int x, int y, SoMouseButtonEvent.Buttons button)Triggered when a MouseDown event is received from the client.booleanRenderAreaListener. onMouseUp(RenderArea renderArea, Connection sender, int x, int y, SoMouseButtonEvent.Buttons button)Triggered when a MouseUp event is received from the client.
-