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> MouseListener,MouseMotionListener,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, vertexFields inherited from class edu.uci.ics.jung.visualization.control.AbstractGraphMousePlugin
cursor, down, modifiers -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanvoidIf the mouse is over a picked vertex, drag all picked vertices with the mouse.voidvoidFor primary modifiers (default, MouseButton1): pick a single Vertex or Edge that is under the mouse pointer.voidIf the mouse is dragging a rectangle, pick the Vertices contained in that rectangle clean up settings from mousePressedMethods inherited from class ghidra.graph.viewer.event.mouse.JungPickingGraphMousePlugin
getLensColor, isLocked, mouseClicked, mouseEntered, mouseExited, pickContainedVertices, setLensColor, setLockedMethods inherited from class edu.uci.ics.jung.visualization.control.AbstractGraphMousePlugin
getCursor, getModifiers, setCursor, setModifiersMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ghidra.graph.viewer.event.mouse.VisualGraphMousePlugin
dispose, getGraphViewer, getSatelliteGraphViewer, getViewer, getViewUpdater, getViewUpdater
-
Constructor Details
-
VisualGraphPickingGraphMousePlugin
public VisualGraphPickingGraphMousePlugin()
-
-
Method Details
-
checkModifiers
- Specified by:
checkModifiersin interfaceedu.uci.ics.jung.visualization.control.GraphMousePlugin- Overrides:
checkModifiersin classedu.uci.ics.jung.visualization.control.AbstractGraphMousePlugin
-
mousePressed
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 interfaceMouseListener- Overrides:
mousePressedin classJungPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>> - Parameters:
e- the event
-
mouseDragged
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 interfaceMouseMotionListener- Overrides:
mouseDraggedin classJungPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>>
-
mouseMoved
- Specified by:
mouseMovedin interfaceMouseMotionListener- Overrides:
mouseMovedin classJungPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>>
-
mouseReleased
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 interfaceMouseListener- Overrides:
mouseReleasedin classJungPickingGraphMousePlugin<V extends VisualVertex,E extends VisualEdge<V>>
-