Package org.eclipse.swt.events
Class TouchEvent
java.lang.Object
java.util.EventObject
org.eclipse.swt.events.TypedEvent
org.eclipse.swt.events.TouchEvent
- All Implemented Interfaces:
Serializable
Instances of this class are sent in response to
a touch-based input source being touched.
- Since:
- 3.7
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionint
The state of the keyboard modifier keys and mouse masks at the time the event was generated.Touch[]
The set of touches representing the state of all contacts with touch input device at the time the event was generated.int
The widget-relative x coordinate of the pointer at the time the touch occurred.int
The widget-relative y coordinate of the pointer at the time the touch occurred.Fields inherited from class org.eclipse.swt.events.TypedEvent
data, display, time, widget
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionTouchEvent
(Event e) Constructs a new instance of this class based on the information in the given untyped event. -
Method Summary
Methods inherited from class java.util.EventObject
getSource
-
Field Details
-
touches
The set of touches representing the state of all contacts with touch input device at the time the event was generated.- See Also:
-
stateMask
public int stateMaskThe state of the keyboard modifier keys and mouse masks at the time the event was generated.- See Also:
-
x
public int xThe widget-relative x coordinate of the pointer at the time the touch occurred. -
y
public int yThe widget-relative y coordinate of the pointer at the time the touch occurred.
-
-
Constructor Details
-
TouchEvent
Constructs a new instance of this class based on the information in the given untyped event.- Parameters:
e
- the untyped event containing the information
-
-
Method Details
-
toString
Returns a string containing a concise, human-readable description of the receiver.- Overrides:
toString
in classTypedEvent
- Returns:
- a string representation of the event
-