Package ghidra.graph.viewer.event.mouse
Class VisualGraphPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>>
- java.lang.Object
-
- edu.uci.ics.jung.visualization.control.AbstractGraphMousePlugin
-
- ghidra.graph.viewer.event.mouse.JungPickingGraphMousePlugin<V,E>
-
- ghidra.graph.viewer.event.mouse.VisualGraphPickingGraphMousePlugin<V,E>
-
- All Implemented Interfaces:
edu.uci.ics.jung.visualization.control.GraphMousePlugin,VisualGraphMousePlugin<V,E>,java.awt.event.MouseListener,java.awt.event.MouseMotionListener,java.util.EventListener
public class VisualGraphPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>> extends JungPickingGraphMousePlugin<V,E> implements VisualGraphMousePlugin<V,E>
-
-
Field Summary
-
Fields inherited from class ghidra.graph.viewer.event.mouse.JungPickingGraphMousePlugin
addToSelectionModifiers, edge, lensColor, lensPaintable, locked, offsetx, offsety, rect, vertex
-
-
Constructor Summary
Constructors Constructor Description VisualGraphPickingGraphMousePlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancheckModifiers(java.awt.event.MouseEvent e)voidmouseDragged(java.awt.event.MouseEvent e)If the mouse is over a picked vertex, drag all picked vertices with the mouse.voidmouseMoved(java.awt.event.MouseEvent e)voidmousePressed(java.awt.event.MouseEvent e)For primary modifiers (default, MouseButton1): pick a single Vertex or Edge that is under the mouse pointer.voidmouseReleased(java.awt.event.MouseEvent e)If the mouse is dragging a rectangle, pick the Vertices contained in that rectangle clean up settings from mousePressed-
Methods inherited from class ghidra.graph.viewer.event.mouse.JungPickingGraphMousePlugin
getLensColor, isLocked, mouseClicked, mouseEntered, mouseExited, pickContainedVertices, setLensColor, setLocked
-
Methods inherited from class edu.uci.ics.jung.visualization.control.AbstractGraphMousePlugin
getCursor, getModifiers, setCursor, setModifiers
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface ghidra.graph.viewer.event.mouse.VisualGraphMousePlugin
dispose, getGraphViewer, getSatelliteGraphViewer, getViewer, getViewUpdater, getViewUpdater
-
-
-
-
Method Detail
-
checkModifiers
public boolean checkModifiers(java.awt.event.MouseEvent e)
- Specified by:
checkModifiersin interfaceedu.uci.ics.jung.visualization.control.GraphMousePlugin- Overrides:
checkModifiersin classedu.uci.ics.jung.visualization.control.AbstractGraphMousePlugin
-
mousePressed
public void mousePressed(java.awt.event.MouseEvent e)
Description copied from class:JungPickingGraphMousePluginFor primary modifiers (default, MouseButton1): pick a single Vertex or Edge that is under the mouse pointer. If no Vertex or edge is under the pointer, unselect all picked Vertices and edges, and set up to draw a rectangle for multiple selection of contained Vertices. For additional selection (default Shift+MouseButton1): Add to the selection, a single Vertex or Edge that is under the mouse pointer. If a previously picked Vertex or Edge is under the pointer, it is un-picked. If no vertex or Edge is under the pointer, set up to draw a multiple selection rectangle (as above) but do not unpick previously picked elements.- Specified by:
mousePressedin interfacejava.awt.event.MouseListener- Overrides:
mousePressedin classJungPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>>- Parameters:
e- the event
-
mouseDragged
public void mouseDragged(java.awt.event.MouseEvent e)
Description copied from class:JungPickingGraphMousePluginIf the mouse is over a picked vertex, drag all picked vertices with the mouse. If the mouse is not over a Vertex, draw the rectangle to select multiple Vertices- Specified by:
mouseDraggedin interfacejava.awt.event.MouseMotionListener- Overrides:
mouseDraggedin classJungPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>>
-
mouseMoved
public void mouseMoved(java.awt.event.MouseEvent e)
- Specified by:
mouseMovedin interfacejava.awt.event.MouseMotionListener- Overrides:
mouseMovedin classJungPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>>
-
mouseReleased
public void mouseReleased(java.awt.event.MouseEvent e)
Description copied from class:JungPickingGraphMousePluginIf the mouse is dragging a rectangle, pick the Vertices contained in that rectangle clean up settings from mousePressed- Specified by:
mouseReleasedin interfacejava.awt.event.MouseListener- Overrides:
mouseReleasedin classJungPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>>
-
-