org.apache.batik.swing.gvt
protected class AbstractJGVTComponent.Listener extends Object implements GVTTreeRendererListener, KeyListener, MouseListener, MouseMotionListener
| Constructor Summary | |
|---|---|
| protected | Listener()
Creates a new Listener. |
| Method Summary | |
|---|---|
| protected void | deselectInteractor()
Deselects an interactor, if the interaction has finished. |
| protected void | dispatchKeyPressed(KeyEvent e)
Dispatches the event to the GVT tree. |
| protected void | dispatchKeyReleased(KeyEvent e)
Dispatches the event to the GVT tree. |
| protected void | dispatchKeyTyped(KeyEvent e)
Dispatches the event to the GVT tree. |
| protected void | dispatchMouseClicked(MouseEvent e)
Dispatches the event to the GVT tree. |
| protected void | dispatchMouseDragged(MouseEvent e)
Dispatches the event to the GVT tree. |
| protected void | dispatchMouseEntered(MouseEvent e)
Dispatches the event to the GVT tree. |
| protected void | dispatchMouseExited(MouseEvent e)
Dispatches the event to the GVT tree. |
| protected void | dispatchMouseMoved(MouseEvent e)
Dispatches the event to the GVT tree. |
| protected void | dispatchMousePressed(MouseEvent e)
Dispatches the event to the GVT tree. |
| protected void | dispatchMouseReleased(MouseEvent e)
Dispatches the event to the GVT tree. |
| void | gvtRenderingCancelled(GVTTreeRendererEvent e)
Called when a rendering was cancelled. |
| void | gvtRenderingCompleted(GVTTreeRendererEvent e)
Called when a rendering was completed. |
| void | gvtRenderingFailed(GVTTreeRendererEvent e)
Called when a rendering failed. |
| void | gvtRenderingPrepare(GVTTreeRendererEvent e)
Called when a rendering is in its preparing phase. |
| void | gvtRenderingStarted(GVTTreeRendererEvent e)
Called when a rendering started. |
| void | handleMouseClicked(MouseEvent e) |
| void | keyPressed(KeyEvent e)
Invoked when a key has been pressed. |
| void | keyReleased(KeyEvent e)
Invoked when a key has been released. |
| void | keyTyped(KeyEvent e)
Invoked when a key has been typed.
|
| void | mouseClicked(MouseEvent e)
Invoked when the mouse has been clicked on a component. |
| void | mouseDragged(MouseEvent e)
Invoked when a mouse button is pressed on a component and then
dragged. |
| void | mouseEntered(MouseEvent e)
Invoked when the mouse enters a component. |
| void | mouseExited(MouseEvent e)
Invoked when the mouse exits a component. |
| void | mouseMoved(MouseEvent e)
Invoked when the mouse button has been moved on a component
(with no buttons no down). |
| void | mousePressed(MouseEvent e)
Invoked when a mouse button has been pressed on a component. |
| void | mouseReleased(MouseEvent e)
Invoked when a mouse button has been released on a component. |
| protected void | selectInteractor(InputEvent ie)
Selects an interactor, given an input event. |