Package com.google.gwt.user.client.ui
Interface MouseListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
DialogBox
,MouseListenerAdapter
@Deprecated public interface MouseListener extends java.util.EventListener
Deprecated.useMouseDownHandler
,MouseUpHandler
,MouseOverHandler
,MouseMoveHandler
, andMouseOutHandler
insteadEvent listener interface for mouse events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
onMouseDown(Widget sender, int x, int y)
Deprecated.void
onMouseEnter(Widget sender)
Deprecated.void
onMouseLeave(Widget sender)
Deprecated.void
onMouseMove(Widget sender, int x, int y)
Deprecated.void
onMouseUp(Widget sender, int x, int y)
Deprecated.
-
-
-
Method Detail
-
onMouseDown
@Deprecated void onMouseDown(Widget sender, int x, int y)
Deprecated.Fired when the user depresses the mouse button over a widget.- Parameters:
sender
- the widget sending the eventx
- the x coordinate of the mousey
- the y coordinate of the mouse
-
onMouseEnter
@Deprecated void onMouseEnter(Widget sender)
Deprecated.Fired when the mouse enters a widget's area.- Parameters:
sender
- the widget sending the event
-
onMouseLeave
@Deprecated void onMouseLeave(Widget sender)
Deprecated.Fired when the mouse leaves a widget's area.- Parameters:
sender
- the widget sending the event
-
onMouseMove
@Deprecated void onMouseMove(Widget sender, int x, int y)
Deprecated.Fired when the user moves the mouse over a widget.- Parameters:
sender
- the widget sending the eventx
- the x coordinate of the mousey
- the y coordinate of the mouse
-
onMouseUp
@Deprecated void onMouseUp(Widget sender, int x, int y)
Deprecated.Fired when the user releases the mouse button over a widget.- Parameters:
sender
- the widget sending the eventx
- the x coordinate of the mousey
- the y coordinate of the mouse
-
-