Package org.osm2world.viewer.control.actions

Examples of org.osm2world.viewer.control.actions.ToggleDebugViewAction


          new WorldObjectNormalsDebugView());
      initAndAddDebugView(subMenu, -1, false,
          new MapDataBoundsDebugView());
      initAndAddDebugView(subMenu, -1, false,
          new OrthoBoundsDebugView());
      subMenu.add(new JCheckBoxMenuItem(new ToggleDebugViewAction(
          new InternalCoordsDebugView(), -1, false,
          this, data, renderOptions)));
      subMenu.add(new JCheckBoxMenuItem(new ToggleDebugViewAction(
          new LatLonDebugView(), -1, false,
          this, data, renderOptions)));
      initAndAddDebugView(subMenu, -1, false,
          new EleDebugView());
      initAndAddDebugView(subMenu, -1, false,
View Full Code Here


  private void initAndAddDebugView(JMenu menu, int keyEvent,
      boolean enabled, DebugView debugView) {
   
    debugView.setConfiguration(data.getConfig());
   
    menu.add(new JCheckBoxMenuItem(new ToggleDebugViewAction(
        debugView, keyEvent, enabled,
        this, data, renderOptions)));
   
  }
View Full Code Here

TOP

Related Classes of org.osm2world.viewer.control.actions.ToggleDebugViewAction

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.