org.zaval.lw.event
Interface LwMouseListener
- All Superinterfaces:
- java.util.EventListener
- All Known Implementing Classes:
- DgnController, LwAList, LwButton, LwCheckbox, LwCombo, LwCursorManager, LwExtender, LwFocusManager, LwNotebook, LwPopupManager, LwScroll, LwSlider, LwStButton, LwTextField, LwTooltipMan, LwTracker, LwWindow, LwTree, LwGridCaption, LwGrid
- public interface LwMouseListener
- extends java.util.EventListener
This is listener interface to receive light weight mouse events.
mouseClicked
public void mouseClicked(LwMouseEvent e)
- Invoked when the mouse button has been clicked on a light weight component.
- Parameters:
e - the specified mouse event.
mouseEntered
public void mouseEntered(LwMouseEvent e)
- Invoked when the mouse enters a light weight component.
- Parameters:
e - the specified mouse event.
mouseExited
public void mouseExited(LwMouseEvent e)
- Invoked when the mouse exits a light weight component.
- Parameters:
e - the specified mouse event.
mousePressed
public void mousePressed(LwMouseEvent e)
- Invoked when the mouse button has been pressed on a light weight component.
- Parameters:
e - the specified mouse event.
mouseReleased
public void mouseReleased(LwMouseEvent e)
- Invoked when the mouse button has been released on a light weight component.
- Parameters:
e - the specified mouse event.
|