org.zaval.lw.event
Interface LwMouseMotionListener
- All Superinterfaces:
- java.util.EventListener
- All Known Implementing Classes:
- LwAList, LwButton, LwCursorManager, LwScroll, LwSlider, LwSplitPan, LwStButton, LwTextField, LwTooltipMan, LwTracker, LwWindow, ShapeController, LwGridCaption
- public interface LwMouseMotionListener
- extends java.util.EventListener
This is listener interface to receive light weight mouse motion events.
startDragged
public void startDragged(LwMouseEvent e)
- Invoked when the mouse starts dragged.
- Parameters:
e - the specified mouse event.
endDragged
public void endDragged(LwMouseEvent e)
- Invoked when the mouse ends dragged.
- Parameters:
e - the specified mouse event.
mouseDragged
public void mouseDragged(LwMouseEvent e)
- Invoked when a mouse button is pressed on a component and then dragged.
Mouse drag events will continue to be delivered to the component where
the first originated until the mouse button is released (regardless of
whether the mouse position is within the bounds of the component).
- Parameters:
e - the specified mouse event.
mouseMoved
public void mouseMoved(LwMouseEvent e)
- Invoked when the mouse pointer has been moved on a light weight component
(with no buttons no down).
- Parameters:
e - the specified mouse event.
|