Interface IUIMouseMotionListener
public interface IUIMouseMotionListener extends IUIBaseEventListener
{
// Methods
public void mouseDragged(UIMouseEvent e);
public void mouseMoved(UIMouseEvent e);
}
This listener interface receives mouse motion events on a IUIComponent.
EventListener
|
+--IUIBaseEventListener
|
+--IUIMouseMotionListener
public void mouseDragged(UIMouseEvent 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 event originated until the mouse button is released, regardless of whether the mouse position is within the bounds of the component.
Return Value:
No return value.
public void mouseMoved(UIMouseEvent e);
Invoked when the mouse button has been moved on a component (with no buttons pressed down).
Return Value:
No return value.
Parameter | Description |
e
| The MOUSE_MOVED event that was posted.
|