Package totalcross.ui.event
Interface MouseListener
-
- All Known Implementing Classes:
ToolTip
public interface MouseListenerInterface used to listen to mouse move events.- Since:
- TotalCross 1.27
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmouseIn(MouseEvent e)A MOUSE_IN event was dispatched when the mouse was going into a control.voidmouseMove(MouseEvent e)A MOUSE_MOVE event was dispatched.voidmouseOut(MouseEvent e)A MOUSE_OUT event was dispatched when the mouse was going out of a control.voidmouseWheel(MouseEvent e)The event type for a mouse wheel moving down.
-
-
-
Method Detail
-
mouseMove
void mouseMove(MouseEvent e)
A MOUSE_MOVE event was dispatched.- See Also:
PenEvent
-
mouseIn
void mouseIn(MouseEvent e)
A MOUSE_IN event was dispatched when the mouse was going into a control.- See Also:
PenEvent
-
mouseOut
void mouseOut(MouseEvent e)
A MOUSE_OUT event was dispatched when the mouse was going out of a control.- See Also:
PenEvent
-
mouseWheel
void mouseWheel(MouseEvent e)
The event type for a mouse wheel moving down. This is a hardware event.
-
-