Package com.google.gwt.user.client.ui
Interface MouseListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
DialogBox
,MouseListenerAdapter
Deprecated.
Event listener interface for mouse events.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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
Deprecated.
-
Method Details
-
onMouseDown
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.Fired when the mouse enters a widget's area.- Parameters:
sender
- the widget sending the event
-
onMouseLeave
Deprecated.Fired when the mouse leaves a widget's area.- Parameters:
sender
- the widget sending the event
-
onMouseMove
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.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
-
MouseDownHandler
,MouseUpHandler
,MouseOverHandler
,MouseMoveHandler
, andMouseOutHandler
instead