Package edu.uci.ics.jung.visualization

Examples of edu.uci.ics.jung.visualization.VisualizationViewer.addMouseListener()


    final VisualizationViewer vv = app.getVv();
    vv.setLayout(new BorderLayout());
    vv.setBackground(Color.white);
    // add a mouse listener to manage mouse event on graph element
    vv.setPickSupport(new ShapePickSupport(5));
    vv.addMouseListener(new XGrapherMouseListener(app, vv, mapper));
    vv.setGraphMouse(app.getModalGraphMouse());
    this.add(vv, BorderLayout.CENTER);
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.