Package org.jungrapht.visualization
Interface SatelliteVisualizationViewer<V,E>
-
- All Superinterfaces:
ChangeListener
,EventListener
,LayoutSizeChange.Listener
,LayoutStateChange.Listener
,ModelChange.Listener
,RenderContextStateChange.Listener
,ViewChange.Listener
,VisualizationComponent
,VisualizationServer<V,E>
,VisualizationViewer<V,E>
- All Known Implementing Classes:
AbstractSatelliteVisualizationViewer
,DefaultSatelliteVisualizationViewer
public interface SatelliteVisualizationViewer<V,E> extends VisualizationViewer<V,E>
A VisualizationViewer that can act as a satellite view for another (master) VisualizationViewer. In this view, the full graph is always visible and all mouse actions affect the graph in the master view.A rectangular shape in the satellite view shows the visible bounds of the master view.
- Author:
- Tom Nelson
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SatelliteVisualizationViewer.Builder<V,E,T extends DefaultSatelliteVisualizationViewer<V,E>,B extends SatelliteVisualizationViewer.Builder<V,E,T,B>>
static class
SatelliteVisualizationViewer.ViewLens<V,E>
A four-sided shape that represents the visible part of the master view and is drawn in the satellite view-
Nested classes/interfaces inherited from interface org.jungrapht.visualization.VisualizationServer
VisualizationServer.Paintable
-
Nested classes/interfaces inherited from interface org.jungrapht.visualization.VisualizationViewer
VisualizationViewer.GraphMouse
-
-
Field Summary
Fields Modifier and Type Field Description static String
SATELLITE_BACKGROUND_TRANSPARENT
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static <V,E>
SatelliteVisualizationViewer.Builder<V,E,?,?>builder(VisualizationViewer<V,E> master)
Color
getLensColor()
VisualizationViewer<V,E>
getMaster()
-
Methods inherited from interface org.jungrapht.visualization.layout.event.LayoutSizeChange.Listener
layoutSizeChanged
-
Methods inherited from interface org.jungrapht.visualization.layout.event.LayoutStateChange.Listener
layoutStateChanged
-
Methods inherited from interface org.jungrapht.visualization.layout.event.ModelChange.Listener
modelChanged
-
Methods inherited from interface org.jungrapht.visualization.RenderContextStateChange.Listener
renderContextStateChanged
-
Methods inherited from interface org.jungrapht.visualization.layout.event.ViewChange.Listener
viewChanged
-
Methods inherited from interface org.jungrapht.visualization.VisualizationComponent
add, add, getBackground, getBounds, getComponent, getFont, getHeight, getPreferredSize, getSize, getToolTipText, getWidth, setBackground, setCursor, setFont, setForeground, setLayout, setPreferredSize
-
Methods inherited from interface org.jungrapht.visualization.VisualizationServer
addChangeListener, addPostRenderPaintable, addPreRenderPaintable, fireStateChanged, getCenter, getChangeListeners, getEdgeSpatial, getPickSupport, getRenderContext, getRenderer, getRenderingHints, getSelectedEdges, getSelectedEdgeState, getSelectedVertexState, getSelectedVertices, getTransformSupport, getVertexSpatial, getVisualizationModel, isDoubleBuffered, prependPreRenderPaintable, removeChangeListener, removePostRenderPaintable, removePreRenderPaintable, repaint, reset, resizeToLayout, scaleToLayout, scaleToLayout, scaleToLayout, scaleToLayout, setDoubleBuffered, setEdgeSpatial, setInitialDimensionFunction, setPickSupport, setRenderContext, setRenderingHints, setSelectedEdgeState, setSelectedVertexState, setTransformSupport, setVertexSpatial, setVisible, setVisualizationModel, stateChanged, viewOnLayout
-
Methods inherited from interface org.jungrapht.visualization.VisualizationViewer
addGraphMouseListener, addKeyListener, getGraphMouse, getMultiSelectionStrategySupplier, getToolTipText, setEdgeToolTipFunction, setGraphMouse, setMouseEventToolTipFunction, setMultiSelectionStrategySupplier, setToolTipText, setVertexToolTipFunction
-
-
-
-
Field Detail
-
SATELLITE_BACKGROUND_TRANSPARENT
static final String SATELLITE_BACKGROUND_TRANSPARENT
- See Also:
- Constant Field Values
-
-
Method Detail
-
builder
static <V,E> SatelliteVisualizationViewer.Builder<V,E,?,?> builder(VisualizationViewer<V,E> master)
-
getMaster
VisualizationViewer<V,E> getMaster()
- Returns:
- Returns the master.
-
getLensColor
Color getLensColor()
-
-