Class SatelliteTranslatingGraphMousePlugin
- java.lang.Object
-
- org.jungrapht.visualization.control.AbstractGraphMousePlugin
-
- org.jungrapht.visualization.control.TranslatingGraphMousePlugin
-
- org.jungrapht.visualization.control.SatelliteTranslatingGraphMousePlugin
-
- All Implemented Interfaces:
MouseListener
,MouseMotionListener
,EventListener
,GraphMousePlugin
public class SatelliteTranslatingGraphMousePlugin extends TranslatingGraphMousePlugin
Overrides TranslatingGraphMousePlugin so that mouse events in the satellite view cause translating of the main view- Author:
- Tom Nelson
- See Also:
SatelliteTranslatingGraphMousePlugin
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.jungrapht.visualization.control.AbstractGraphMousePlugin
AbstractGraphMousePlugin.Selecting
-
-
Field Summary
-
Fields inherited from class org.jungrapht.visualization.control.TranslatingGraphMousePlugin
translatingMask
-
Fields inherited from class org.jungrapht.visualization.control.AbstractGraphMousePlugin
cursor, down, modifiers
-
-
Constructor Summary
Constructors Constructor Description SatelliteTranslatingGraphMousePlugin(int translatingMask)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
mouseClicked(MouseEvent e)
void
mouseDragged(MouseEvent e)
Check the modifiers.void
mousePressed(MouseEvent e)
Check the event modifiers.-
Methods inherited from class org.jungrapht.visualization.control.TranslatingGraphMousePlugin
mouseEntered, mouseExited, mouseMoved, mouseReleased, toString
-
Methods inherited from class org.jungrapht.visualization.control.AbstractGraphMousePlugin
checkModifiers, getCursor, getModifiersEx, setCursor, setModifiers
-
-
-
-
Method Detail
-
mousePressed
public void mousePressed(MouseEvent e)
Description copied from class:TranslatingGraphMousePlugin
Check the event modifiers. Set the 'down' point for later use. If this event satisfies the modifiers, change the cursor to the system 'move cursor'- Specified by:
mousePressed
in interfaceMouseListener
- Overrides:
mousePressed
in classTranslatingGraphMousePlugin
- Parameters:
e
- the event
-
mouseClicked
public void mouseClicked(MouseEvent e)
- Specified by:
mouseClicked
in interfaceMouseListener
- Overrides:
mouseClicked
in classTranslatingGraphMousePlugin
-
mouseDragged
public void mouseDragged(MouseEvent e)
Check the modifiers. If accepted, translate the main view according to the dragging of the mouse pointer in the satellite view- Specified by:
mouseDragged
in interfaceMouseMotionListener
- Overrides:
mouseDragged
in classTranslatingGraphMousePlugin
- Parameters:
e
- the event
-
-