Package org.freeplane.view.swing.ui

Examples of org.freeplane.view.swing.ui.DefaultMapMouseListener


        }
    removeDesktopPaneAccelerators();
    mapViews = new Vector<Component>();
    final FileOpener fileOpener = new FileOpener();
    new DropTarget(rootWindow, fileOpener);
    rootWindow.addMouseListener(new DefaultMapMouseListener());

    final Controller controller = Controller.getCurrentController();
    controller.getMapViewManager().addMapViewChangeListener(this);
    rootWindow.addListener(new DockingWindowAdapter(){
View Full Code Here


    map.repaint();
  }

  private DetailsView createDetailView() {
      DetailsView detailContent =  new DetailsView();
      final DefaultMapMouseListener mouseListener = new DefaultMapMouseListener();
      detailContent.addMouseMotionListener(mouseListener);
      detailContent.addMouseMotionListener(DETAILS_MOUSE_LISTENER);
      detailContent.addMouseListener(DETAILS_MOUSE_LISTENER);
      return detailContent;
    }
View Full Code Here

TOP

Related Classes of org.freeplane.view.swing.ui.DefaultMapMouseListener

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.