: Download: FAQ: Licensing: Support: Contact ME
LwVCL Home
Introduction
Overview
Screen Shots
On-line Demos
Requirements
Further Plans
Docs
Tutorial
How-to (PDF)
API
FAQ
Download
Latest version

Home > J2SE > API

Overview  Package   Class  Tree  Deprecated  Index  Help 

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.


Method Summary
 void endDragged(LwMouseEvent e)
          Invoked when the mouse ends dragged.
 void mouseDragged(LwMouseEvent e)
          Invoked when a mouse button is pressed on a component and then dragged.
 void mouseMoved(LwMouseEvent e)
          Invoked when the mouse pointer has been moved on a light weight component (with no buttons no down).
 void startDragged(LwMouseEvent e)
          Invoked when the mouse starts dragged.
 

Method Detail

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.


: up