Class EdgeSelectingGraphMousePlugin<V,​E>

  • Type Parameters:
    V - vertex type
    E - edge type
    All Implemented Interfaces:
    MouseListener, MouseMotionListener, EventListener, GraphMousePlugin

    public class EdgeSelectingGraphMousePlugin<V,​E>
    extends AbstractGraphMousePlugin
    implements MouseListener, MouseMotionListener
    EdgeSelectingGraphMousePlugin supports the selecting of graph elements with the mouse. MouseButtonOne selects a single vertex or edge, and MouseButtonTwo adds to the set of selected Vertices or EdgeType. If a Vertex is selected and the mouse is dragged while on the selected Vertex, then that Vertex will be repositioned to follow the mouse until the button is released.
    Author:
    Tom Nelson
    • Field Detail

      • pickSize

        protected int pickSize
      • edge

        protected E edge
        the selected Edge, if any
      • footprintRectangle

        protected Rectangle2D footprintRectangle
      • lensColor

        protected Color lensColor
        color for the picking rectangle
      • deltaDown

        protected Point2D deltaDown
      • singleSelectionMask

        protected int singleSelectionMask
      • addSingleSelectionMask

        protected int addSingleSelectionMask
    • Constructor Detail

      • EdgeSelectingGraphMousePlugin

        public EdgeSelectingGraphMousePlugin​(int singleSelectionMask,
                                             int addSingleSelectionMask)
        create an instance with overrides

        // * @param selectionModifiers for primary selection // * @param addToSelectionModifiers for additional selection

    • Method Detail

      • getLensColor

        public Color getLensColor()
        Returns:
        Returns the lensColor.
      • setLensColor

        public void setLensColor​(Color lensColor)
        Parameters:
        lensColor - The lensColor to set.
      • mousePressed

        public void mousePressed​(MouseEvent e)
        For 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 selected 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 selected Vertex or Edge is under the pointer, it is un-selected. If no vertex or Edge is under the pointer, set up to draw a multiple selection rectangle (as above) but do not unpick previously selected elements.
        Specified by:
        mousePressed in interface MouseListener
        Parameters:
        e - the event
      • singleEdgeSelection

        protected boolean singleEdgeSelection​(MouseEvent e,
                                              Point2D layoutPoint,
                                              boolean addToSelection)
      • mouseReleased

        public void mouseReleased​(MouseEvent e)
        If the mouse is dragging a rectangle, pick the Vertices contained in that rectangle

        clean up settings from mousePressed

        Specified by:
        mouseReleased in interface MouseListener
      • transform

        protected Shape transform​(VisualizationViewer<V,​E> vv,
                                  Shape shape)
        override to consider Lens effects
        Parameters:
        vv -
        shape -
        Returns: