public interface P2DComponentControlInterface
Modifier and Type | Method and Description |
---|---|
void |
focusGained(java.awt.geom.Point2D p,
java.awt.event.FocusEvent e)
Invoked when the mouse activates a component.
|
void |
focusLost(java.awt.geom.Point2D p,
java.awt.event.FocusEvent e)
Invoked when the mouse inactivates a component.
|
void |
mouseClicked(java.awt.geom.Point2D p,
java.awt.event.MouseEvent e)
The callback that is called if the mouse was clicked.
|
void |
mouseDragged(java.awt.geom.Point2D p,
java.awt.event.MouseEvent e)
The callback that is called if the mouse was dragged.
|
void |
mouseEntered(java.awt.geom.Point2D p,
java.awt.event.MouseEvent e)
The callback that is called if the mouse was entered.
|
void |
mouseExited(java.awt.geom.Point2D p,
java.awt.event.MouseEvent e)
The callback that is called if the mouse was exited.
|
void |
mouseMoved(java.awt.geom.Point2D p,
java.awt.event.MouseEvent e)
The callback that is called if the mouse was moved.
|
void |
mousePressed(java.awt.geom.Point2D p,
java.awt.event.MouseEvent e)
The callback that is called if the mouse was pressed.
|
void |
mouseReleased(java.awt.geom.Point2D p,
java.awt.event.MouseEvent e)
The callback that is called if the mouse was released.
|
void mouseClicked(java.awt.geom.Point2D p, java.awt.event.MouseEvent e)
component
- The componentp
- The coordinates in the component coordinate system.e
- The mouse event.void mousePressed(java.awt.geom.Point2D p, java.awt.event.MouseEvent e)
component
- The componentp
- The coordinates in the component coordinate system.e
- The mouse event.void mouseReleased(java.awt.geom.Point2D p, java.awt.event.MouseEvent e)
component
- The componentp
- The coordinates in the component coordinate system.e
- The mouse event.void mouseEntered(java.awt.geom.Point2D p, java.awt.event.MouseEvent e)
component
- The componentp
- The coordinates in the component coordinate system.e
- The mouse event.void mouseExited(java.awt.geom.Point2D p, java.awt.event.MouseEvent e)
component
- The componentp
- The coordinates in the component coordinate system.e
- The mouse event.void mouseMoved(java.awt.geom.Point2D p, java.awt.event.MouseEvent e)
component
- The componentp
- The coordinates in the component coordinate system.e
- The mouse event.void mouseDragged(java.awt.geom.Point2D p, java.awt.event.MouseEvent e)
component
- The componentp
- The coordinates in the component coordinate system.e
- The mouse event.void focusGained(java.awt.geom.Point2D p, java.awt.event.FocusEvent e)
component
- The componentp
- The coordinates in the component coordinate system.e
- The focus event.void focusLost(java.awt.geom.Point2D p, java.awt.event.FocusEvent e)
component
- The componentp
- The coordinates in the component coordinate system.e
- The focus event.