I wondering how to change the size of the layout associated to a VisualizationViewer with jung?
I explain the purpose: actually, when using a SatelliteVisualizationViewer, we can pick a node and move it in an area that is not covered by the SatelliteVisualisationViewer.
We can see this in the SatelliteViewDemo class in the JUNG distribution. Launch the demo, pick a node and move it outside the layout size. The node is well displayed in the VisualizationViewer but not in the satellite view.
So, I try to add some code in the MouseListener of PickingGraphMousePlugin, specifically in the mouseReleased(...) method in order to update the layout size by the size of the rectangle that contains all the nodes of the graph. Doing this, the SatelliteView should be updated. But how to do this?
Edit: Sorry to have not detailled enough. In fact, changing the layout size does not change the SatelliteView, so vertex located outside the layout (after a pick and move operation) are still not covered by the SatelliteView.
Maybe I have miss something...
Actually the real question is: how to change the area covered by the SatelliteVisualizationViewer? !!!