Class RegionSelectingGraphMousePlugin<V,​E>

    • Field Detail

      • locked

        protected boolean locked
        controls whether the Vertices may be moved with the mouse
      • viewRectangle

        protected Shape viewRectangle
        used to draw a rectangle to contain selected vertices
      • layoutTargetShape

        protected Shape layoutTargetShape
      • lensColor

        protected Color lensColor
        color for the picking rectangle
      • deltaDown

        protected Point2D deltaDown
      • singleSelectionMask

        protected int singleSelectionMask
      • addSingleSelectionMask

        protected int addSingleSelectionMask
      • regionSelectionMask

        protected int regionSelectionMask
      • addRegionSelectionMask

        protected int addRegionSelectionMask
      • regionSelectionCompleteMask

        protected int regionSelectionCompleteMask
      • addRegionSelectionCompleteMask

        protected int addRegionSelectionCompleteMask
    • Constructor Detail

      • RegionSelectingGraphMousePlugin

        public RegionSelectingGraphMousePlugin()
      • RegionSelectingGraphMousePlugin

        protected RegionSelectingGraphMousePlugin​(int regionSelectionMask,
                                                  int addRegionSelectionMask,
                                                  int regionSelectionCompleteMask,
                                                  int addRegionSelectionCompleteMask)
        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
      • 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
      • mouseDragged

        public void mouseDragged​(MouseEvent e)
        If the mouse is over a selected vertex, drag all selected vertices with the mouse. If the mouse is not over a Vertex, draw the rectangle to select multiple Vertices
        Specified by:
        mouseDragged in interface MouseMotionListener
      • transform

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

        protected Collection<V> pickContainedVertices​(VisualizationViewer<V,​E> vv,
                                                      Shape pickTarget,
                                                      boolean clear)
        pick the vertices inside the rectangle created from points 'down' and 'out' (two diagonally opposed corners of the rectangle)
        Parameters:
        vv - the viewer containing the layout and selected state
        pickTarget - - the shape to pick vertices in (layout coordinate system)
        clear - whether to reset existing selected state
      • isLocked

        public boolean isLocked()
        Returns:
        Returns the locked.
      • setLocked

        public void setLocked​(boolean locked)
        Parameters:
        locked - The locked to set.