: 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 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.


Method Summary
 void mouseClicked(LwMouseEvent e)
          Invoked when the mouse button has been clicked on a light weight component.
 void mouseEntered(LwMouseEvent e)
          Invoked when the mouse enters a light weight component.
 void mouseExited(LwMouseEvent e)
          Invoked when the mouse exits a light weight component.
 void mousePressed(LwMouseEvent e)
          Invoked when the mouse button has been pressed on a light weight component.
 void mouseReleased(LwMouseEvent e)
          Invoked when the mouse button has been released on a light weight component.
 

Method Detail

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.


: up