Package org.freeplane.features.ui

Examples of org.freeplane.features.ui.IMapViewChangeListener


   * the client which asks a remote repository for the current version of the program.
   */
  public UpdateCheckAction() {
    super("UpdateCheckAction");
    final Controller controller = Controller.getCurrentController();
    controller.getMapViewManager().addMapViewChangeListener(new IMapViewChangeListener() {
      public void afterViewChange(final Component oldView, final Component newView) {
        if (newView == null) {
          return;
        }
        controller.getViewController().invokeLater(new Runnable() {
View Full Code Here


        setStyle(node);
            }
     
    });
    final IMapViewManager mapViewManager = controller.getMapViewManager();
    mapViewManager.addMapViewChangeListener(new IMapViewChangeListener() {
      public void beforeViewChange(final Component oldView, final Component newView) {
      }

      public void afterViewCreated(final Component mapView) {
      }
View Full Code Here

TOP

Related Classes of org.freeplane.features.ui.IMapViewChangeListener

Copyright © 2018 www.massapicom. 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.