HEADER

ru.biosoft.graphics.editor
Interface ViewPaneListener

All Known Implementing Classes:
CreateReactionDialog, ViewPaneAdapter

public interface ViewPaneListener

The listener interface for receiving "interesting" mouse events (press, release, click, enter, and exit) on a view pane.

See Also: <{MouseListener}>, <{ru.biosoft.graphics.editor.ViewPaneEvent}>

Method Summary
 voidmouseClicked(ViewPaneEvent e)
          Invoked when the mouse has been clicked on a view pane.
 voidmouseDragged(ViewPaneEvent e)
           
 voidmouseEntered(ViewPaneEvent e)
          Invoked when the mouse enters a view pane.
 voidmouseExited(ViewPaneEvent e)
          Invoked when the mouse exits a view pane.
 voidmouseMoved(ViewPaneEvent e)
           
 voidmousePressed(ViewPaneEvent e)
          Invoked when a mouse button has been pressed on a view pane.
 voidmouseReleased(ViewPaneEvent e)
          Invoked when a mouse button has been released on a view pane.

Method Detail

mouseClicked

public void mouseClicked(ViewPaneEvent e)
Invoked when the mouse has been clicked on a view pane.

mouseDragged

public void mouseDragged(ViewPaneEvent e)

mouseEntered

public void mouseEntered(ViewPaneEvent e)
Invoked when the mouse enters a view pane.

mouseExited

public void mouseExited(ViewPaneEvent e)
Invoked when the mouse exits a view pane.

mouseMoved

public void mouseMoved(ViewPaneEvent e)

mousePressed

public void mousePressed(ViewPaneEvent e)
Invoked when a mouse button has been pressed on a view pane.

mouseReleased

public void mouseReleased(ViewPaneEvent e)
Invoked when a mouse button has been released on a view pane.

FOOTER

BOTTOM