Package org.geotools.swing.event
Interface MapMouseListener
- All Known Implementing Classes:
AbstractZoomTool
,CursorTool
,InfoTool
,MapMouseAdapter
,PanTool
,ScrollWheelTool
,ZoomInTool
,ZoomOutTool
public interface MapMouseListener
Interface for classes that listen to MapMouseEvents
- Since:
- 2.6
- Author:
- Michael Bedward
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Respond to a mouse click event received from the map panevoid
Respond to a mouse dragged event received from the map panevoid
Respond to a mouse entered event received from the map panevoid
Respond to a mouse exited event received from the map panevoid
Respond to a mouse movement event received from the map panevoid
Respond to a mouse button press event received from the map panevoid
Respond to a mouse button release event received from the map panevoid
Respond to a mouse wheel scroll event received from the map pane
-
Method Details
-
onMouseClicked
Respond to a mouse click event received from the map pane- Parameters:
ev
- the mouse event
-
onMouseDragged
Respond to a mouse dragged event received from the map pane- Parameters:
ev
- the mouse event
-
onMouseEntered
Respond to a mouse entered event received from the map pane- Parameters:
ev
- the mouse event
-
onMouseExited
Respond to a mouse exited event received from the map pane- Parameters:
ev
- the mouse event
-
onMouseMoved
Respond to a mouse movement event received from the map pane- Parameters:
ev
- the mouse event
-
onMousePressed
Respond to a mouse button press event received from the map pane- Parameters:
ev
- the mouse event
-
onMouseReleased
Respond to a mouse button release event received from the map pane- Parameters:
ev
- the mouse event
-
onMouseWheelMoved
Respond to a mouse wheel scroll event received from the map pane- Parameters:
ev
- the mouse event
-