Package org.fxmisc.richtext.event
Class MouseStationaryEvent
- java.lang.Object
-
- java.util.EventObject
-
- javafx.event.Event
-
- javafx.scene.input.InputEvent
-
- org.fxmisc.richtext.event.MouseStationaryEvent
-
- All Implemented Interfaces:
Serializable,Cloneable
public abstract class MouseStationaryEvent extends InputEvent
An event indicating that the mouse has stopped moving and remained stationary for time (MOUSE_STATIONARY_BEGIN), or that the stationary mouse has once again moved (MOUSE_STATIONARY_END).- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static EventType<MouseStationaryEvent>ANYstatic EventType<MouseStationaryEvent>MOUSE_STATIONARY_BEGINstatic EventType<MouseStationaryEvent>MOUSE_STATIONARY_END-
Fields inherited from class javafx.event.Event
consumed, eventType, NULL_SOURCE_TARGET, target
-
Fields inherited from class java.util.EventObject
source
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract Point2DgetPosition()abstract Point2DgetScenePosition()abstract Point2DgetScreenPosition()-
Methods inherited from class javafx.scene.input.InputEvent
getEventType
-
Methods inherited from class javafx.event.Event
clone, consume, copyFor, fireEvent, getTarget, isConsumed
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
-
ANY
public static final EventType<MouseStationaryEvent> ANY
-
MOUSE_STATIONARY_BEGIN
public static final EventType<MouseStationaryEvent> MOUSE_STATIONARY_BEGIN
-
MOUSE_STATIONARY_END
public static final EventType<MouseStationaryEvent> MOUSE_STATIONARY_END
-
-