Class SoTouchEvent
java.lang.Object
com.openinventor.inventor.Inventor
com.openinventor.inventor.events.SoEvent
com.openinventor.inventor.touch.events.SoTouchEvent
Base class for touch events.
SoTouchEvent
is the base class for touch events in the Open Inventor event model. A touch event typically represents a user finger action on a touch screen input device, such as putting a finger down on the screen. SoTouchEvent
is an SoEvent
with touch information including the displacement and speed of the finger and the state (UP, DOWN or MOVE).
The SoTouchEvent.getTouchManager()
method can be use to retrieve the corresponding touch device currently used and information about other fingers touching the screen at the same time.
Open Inventor also supports gesture events (see SoGestureEvent
) such as pinch and rotate. Gesture events are generated by gesture recognizers (see SoGestureRecognizer
) which analyze a series of touch events.
Note: Unlike mouse and keyboard events, the application must explicitly register a touch screen device (
,
invalid reference
SoWinTouchScreen
, etc) in order to get touch events.
invalid reference
SoQtTouchScreen
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
The different states a touch event can have.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 TypeMethodDescriptionGets the acceleration vector (in pixels per second squared) between the previous event and the current one.Gets the deplacement vector (in pixels) between the previous event and the current one.Gets the elapsed time since previous event, triggered by the same finger, in seconds.Gets the elapsed time between the first contact and previous event, for the finger identified bygetFingerId()
, in seconds.long
Gets the id of the finger triggering this event.Gets the time of first contact in seconds of the finger identified bygetFingerId()
.Gets the first position (in pixels).Gets the time of previous event of the finger identified bygetFingerId()
.Gets the previous position of the same finger (in pixels).Gets the previous speed (in pixels per second).getSpeed()
Gets the speed (in pixels per second) between the previous event and the current one.getState()
Gets the touch event state (Up, Down, Move or Unknown).Gets the corresponding TouchManager for this event.void
setFingerId
(long idFinger) Sets the id of the finger triggering this event.void
setFirstPosition
(SbVec2f name_23536) Sets the first position (in pixels).void
Sets the previous speed in pixels per second.void
Sets the state of the touch event.void
setTouchManager
(SoTouchManager manager) Sets the TouchManager for this event.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
-
SoTouchEvent
public SoTouchEvent()Constructor.
-
-
Method Details
-
setFingerId
public void setFingerId(long idFinger) Sets the id of the finger triggering this event. -
getFingerId
public long getFingerId()Gets the id of the finger triggering this event. -
getAcceleration
Gets the acceleration vector (in pixels per second squared) between the previous event and the current one. -
setFirstPosition
Sets the first position (in pixels). -
setPreviousSpeed
public void setPreviousSpeed()Sets the previous speed in pixels per second. -
getState
Gets the touch event state (Up, Down, Move or Unknown). . -
getSpeed
Gets the speed (in pixels per second) between the previous event and the current one. -
getTouchManager
Gets the corresponding TouchManager for this event. -
getPreviousEventTime
Gets the time of previous event of the finger identified bygetFingerId()
. If current event is a DOWN, the function returns the current time. -
getDisplacement
Gets the deplacement vector (in pixels) between the previous event and the current one. -
getPreviousPosition
Gets the previous position of the same finger (in pixels). If current event is a DOWN, the function returns the current position. -
getPreviousSpeed
Gets the previous speed (in pixels per second). -
getFirstContactTime
Gets the time of first contact in seconds of the finger identified bygetFingerId()
. This date is set when the DOWN event occurs. -
setState
Sets the state of the touch event. -
getElapsedTimeSincePreviousEvent
Gets the elapsed time since previous event, triggered by the same finger, in seconds. If the current event is a DOWN, the function returns 0. -
setTouchManager
Sets the TouchManager for this event. -
getElapsedTimeUntilPreviousEvent
Gets the elapsed time between the first contact and previous event, for the finger identified bygetFingerId()
, in seconds. -
getFirstPosition
Gets the first position (in pixels). This position is set when the DOWN event occurs.
-