Class DefaultModalGraphMouse<V,​E>

  • All Implemented Interfaces:
    MouseListener, MouseMotionListener, MouseWheelListener, EventListener, Modal, ModalGraphMouse, VisualizationViewer.GraphMouse
    Direct Known Subclasses:
    ModalLensGraphMouse, ModalSatelliteGraphMouse

    public class DefaultModalGraphMouse<V,​E>
    extends AbstractModalGraphMouse
    implements ModalGraphMouse
    DefaultModalGraphMouse is a GraphMouse class that pre-installs a large collection of plugins for picking and transforming the graph. Additionally, it carries the notion of a Mode: Picking or Translating. Switching between modes allows for a more natural choice of mouse modifiers to be used for the various plugins. The default modifiers are intended to mimick those of mainstream software applications in order to be intuitive to users.

    To change between modes, two different controls are offered, a combo box and a menu system. These controls are lazily created in their respective 'getter' methods so they don't impact code that does not intend to use them. The menu control can be placed in an unused corner of the VisualizationScrollPane, which is a common location for mouse mode selection menus in mainstream applications.

    Author:
    Tom Nelson
    • Field Detail

      • singleSelectionMask

        protected int singleSelectionMask
      • addSingleSelectionMask

        protected int addSingleSelectionMask
      • regionSelectionMask

        protected int regionSelectionMask
      • addRegionSelectionMask

        protected int addRegionSelectionMask
      • regionSelectionCompleteMask

        protected int regionSelectionCompleteMask
      • addRegionSelectionCompleteMask

        protected int addRegionSelectionCompleteMask
      • translatingMask

        protected int translatingMask
      • scalingMask

        protected int scalingMask
      • xAxisScalingMask

        protected int xAxisScalingMask
      • yAxisScalingMask

        protected int yAxisScalingMask
    • Constructor Detail

      • DefaultModalGraphMouse

        public DefaultModalGraphMouse()
        create an instance with default values
      • DefaultModalGraphMouse

        public DefaultModalGraphMouse​(Modal.Mode mode,
                                      float in,
                                      float out,
                                      boolean vertexSelectionOnly,
                                      int singleSelectionMask,
                                      int addSingleSelectionMask,
                                      int regionSelectionMask,
                                      int addRegionSelectionMask,
                                      int regionSelectionCompleteMask,
                                      int addRegionSelectionCompleteMask,
                                      int translatingMask,
                                      int scalingMask,
                                      int xAxisScalingMask,
                                      int yAxisScalingMask)