It is possible to activate layout process in GraphStream
with Viewer#enableAutoLayout()
. Unfortunately, this process will tamper each user interaction like node dragging.
Is is possible to do automatic layout once and then stop?
I have tried to turn autolayout for a second and wait, but this didn't work.
package tests.graphstream;
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import org.graphstream.graph.Graph;
import org.graphstream.graph.implementations.SingleGraph;
import org.graphstream.ui.swingViewer.View;
import org.graphstream.ui.swingViewer.Viewer;
public class Tutorial1_01 {
private static Graph graph = new SingleGraph("Tutorial 1");
public static class MyFrame extends JFrame {
private static final long serialVersionUID = 8394236698316485656L;
//private Graph graph = new MultiGraph("embedded");
private Viewer viewer = new Viewer(graph, Viewer.ThreadingModel.GRAPH_IN_ANOTHER_THREAD);
//private Viewer viewer = new Viewer(graph, Viewer.ThreadingModel.GRAPH_IN_SWING_THREAD);
private View view = viewer.addDefaultView(false);
private View defaultView = viewer.getDefaultView();
public MyFrame() {
setLayout(new BorderLayout());
//add( new JScrollPane(defaultView), BorderLayout.CENTER);
add(defaultView, BorderLayout.CENTER);
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
}
public static void main(String args[]) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
MyFrame frame = new MyFrame();
frame.setSize(320, 240);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
graph.addNode("A");
graph.addNode("B");
graph.addNode("C");
graph.addEdge("AB", "A", "B");
graph.addEdge("BC", "B", "C");
graph.addEdge("CA", "C", "A");
graph.addAttribute("ui.quality");
graph.addAttribute("ui.antialias");
frame.viewer.enableAutoLayout();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
frame.viewer.disableAutoLayout();
//frame.view.getCamera().resetView();
}
});
}
}