Class LensMagnificationGraphMousePlugin
- java.lang.Object
-
- org.jungrapht.visualization.control.AbstractGraphMousePlugin
-
- org.jungrapht.visualization.control.LensMagnificationGraphMousePlugin
-
- All Implemented Interfaces:
MouseWheelListener
,EventListener
,GraphMousePlugin
public class LensMagnificationGraphMousePlugin extends AbstractGraphMousePlugin implements MouseWheelListener
HyperbolicMagnificationGraphMousePlugin changes the magnification within the Hyperbolic projection of the HyperbolicTransformer.- Author:
- Tom Nelson
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.jungrapht.visualization.control.AbstractGraphMousePlugin
AbstractGraphMousePlugin.Selecting
-
-
Constructor Summary
Constructors Constructor Description LensMagnificationGraphMousePlugin()
Creates an instance with modifier of CTRL_DOWN_MASK, and default min/max/delta zoom values of 1/4/0.2.LensMagnificationGraphMousePlugin(float floor, float ceiling, float delta)
Creates an instance with modifier of CTRL_DOWN_MASK, and the specified zoom parameters.LensMagnificationGraphMousePlugin(int modifiers)
Creates an instance with the specified modifiers and the default min/max/delta zoom values of 1/4/0.2.LensMagnificationGraphMousePlugin(int modifiers, float floor, float ceiling, float delta)
Creates an instance with the specified mouse event modifiers and zoom parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
checkModifiers(MouseEvent e)
override to check equality with a maskvoid
mouseWheelMoved(MouseWheelEvent e)
change magnification of the lens, depending on the direction of the mouse wheel motion.-
Methods inherited from class org.jungrapht.visualization.control.AbstractGraphMousePlugin
getCursor, getModifiersEx, setCursor, setModifiers
-
-
-
-
Constructor Detail
-
LensMagnificationGraphMousePlugin
public LensMagnificationGraphMousePlugin()
Creates an instance with modifier of CTRL_DOWN_MASK, and default min/max/delta zoom values of 1/4/0.2.
-
LensMagnificationGraphMousePlugin
public LensMagnificationGraphMousePlugin(float floor, float ceiling, float delta)
Creates an instance with modifier of CTRL_DOWN_MASK, and the specified zoom parameters.- Parameters:
floor
- the minimum zoom valueceiling
- the maximum zoom valuedelta
- the change in zoom value caused by each mouse event
-
LensMagnificationGraphMousePlugin
public LensMagnificationGraphMousePlugin(int modifiers)
Creates an instance with the specified modifiers and the default min/max/delta zoom values of 1/4/0.2.- Parameters:
modifiers
- the mouse event modifiers to specify
-
LensMagnificationGraphMousePlugin
public LensMagnificationGraphMousePlugin(int modifiers, float floor, float ceiling, float delta)
Creates an instance with the specified mouse event modifiers and zoom parameters.- Parameters:
modifiers
- the mouse event modifiers to specifyfloor
- the minimum zoom valueceiling
- the maximum zoom valuedelta
- the change in zoom value caused by each mouse event
-
-
Method Detail
-
checkModifiers
public boolean checkModifiers(MouseEvent e)
override to check equality with a mask- Specified by:
checkModifiers
in interfaceGraphMousePlugin
- Overrides:
checkModifiers
in classAbstractGraphMousePlugin
- Parameters:
e
- an event to compare to- Returns:
- whether the member modifiers match the event modifiers
-
mouseWheelMoved
public void mouseWheelMoved(MouseWheelEvent e)
change magnification of the lens, depending on the direction of the mouse wheel motion.- Specified by:
mouseWheelMoved
in interfaceMouseWheelListener
-
-