Uses of Class
org.eclipse.swt.events.MouseEvent
-
Packages that use MouseEvent Package Description org.eclipse.swt.events org.eclipse.swt.widgets -
-
Uses of MouseEvent in org.eclipse.swt.events
Subclasses of MouseEvent in org.eclipse.swt.events Modifier and Type Class Description classDragDetectEventInstances of this class are sent as a result of a drag gesture.Methods in org.eclipse.swt.events with parameters of type MouseEvent Modifier and Type Method Description voidMouseAdapter. mouseDoubleClick(MouseEvent e)Sent when a mouse button is pressed twice within the (operating system specified) double click period.voidMouseListener. mouseDoubleClick(MouseEvent e)Sent when a mouse button is pressed twice within the (operating system specified) double click period.voidMouseAdapter. mouseDown(MouseEvent e)Sent when a mouse button is pressed.voidMouseListener. mouseDown(MouseEvent e)Sent when a mouse button is pressed.voidMouseTrackAdapter. mouseEnter(MouseEvent e)Sent when the mouse pointer passes into the area of the screen covered by a control.voidMouseTrackListener. mouseEnter(MouseEvent e)Sent when the mouse pointer passes into the area of the screen covered by a control.voidMouseTrackAdapter. mouseExit(MouseEvent e)Sent when the mouse pointer passes out of the area of the screen covered by a control.voidMouseTrackListener. mouseExit(MouseEvent e)Sent when the mouse pointer passes out of the area of the screen covered by a control.voidMouseTrackAdapter. mouseHover(MouseEvent e)Sent when the mouse pointer hovers (that is, stops moving for an (operating system specified) period of time) over a control.voidMouseTrackListener. mouseHover(MouseEvent e)Sent when the mouse pointer hovers (that is, stops moving for an (operating system specified) period of time) over a control.voidMouseMoveListener. mouseMove(MouseEvent e)Sent when the mouse moves.voidMouseWheelListener. mouseScrolled(MouseEvent e)Sent when the mouse wheel is scrolled.voidMouseAdapter. mouseUp(MouseEvent e)Sent when a mouse button is released.voidMouseListener. mouseUp(MouseEvent e)Sent when a mouse button is released.Method parameters in org.eclipse.swt.events with type arguments of type MouseEvent Modifier and Type Method Description static MouseListenerMouseListener. mouseDoubleClickAdapter(java.util.function.Consumer<MouseEvent> c)Static helper method to create aMouseListenerfor theMouseListener.mouseDoubleClick(MouseEvent e)) method with a lambda expression.static MouseListenerMouseListener. mouseDownAdapter(java.util.function.Consumer<MouseEvent> c)Static helper method to create aMouseListenerfor theMouseListener.mouseDown(MouseEvent e)) method with a lambda expression.static MouseTrackListenerMouseTrackListener. mouseEnterAdapter(java.util.function.Consumer<MouseEvent> c)Static helper method to create aMouseTrackListenerfor theMouseTrackListener.mouseEnter(MouseEvent e)) method, given a lambda expression or a method reference.static MouseTrackListenerMouseTrackListener. mouseExitAdapter(java.util.function.Consumer<MouseEvent> c)Static helper method to create aMouseTrackListenerfor theMouseTrackListener.mouseExit(MouseEvent e)) method, given a lambda expression or a method reference.static MouseTrackListenerMouseTrackListener. mouseHoverAdapter(java.util.function.Consumer<MouseEvent> c)Static helper method to create aMouseTrackListenerfor theMouseTrackListener.mouseHover(MouseEvent e)) method, given a lambda expression or a method reference.static MouseListenerMouseListener. mouseUpAdapter(java.util.function.Consumer<MouseEvent> c)Static helper method to create aMouseListenerfor theMouseListener.mouseUp(MouseEvent e)) method with a lambda expression. -
Uses of MouseEvent in org.eclipse.swt.widgets
Methods in org.eclipse.swt.widgets with parameters of type MouseEvent Modifier and Type Method Description booleanControl. dragDetect(MouseEvent event)Detects a drag and drop gesture.
-