Examples of ZoomTool


Examples of chunmap.app.tools.navigate.ZoomTool

  public OperateManager(MapCtrl mapBox,Component component) {
    plugs = new ArrayList<Tool>();
    this.mapBox = mapBox;
    commandManager=new CommandStack();
    addPlug(new PanTool());
    addPlug(new ZoomTool());
   
    ComponentUtils.bindEvent(this, component);
  }
View Full Code Here

Examples of org.openbp.cockpit.modeler.tools.ZoomTool

    tool = new RubberBandTool(toolSupport);
    tool.setToolCursor(ModelerGraphics.standardCursor);
    toolSupport.addToolDecisionTableEntry(tool, ProcessDrawing.class, 0);

    tool = new ZoomTool(toolSupport);
    tool.setToolCursor(ModelerGraphics.zoomCursor);
    toolSupport.addToolDecisionTableEntry(tool, ProcessDrawing.class, InputState.ALT | InputState.CTRL | InputState.HOVER);

    tool = new ScrollTool(toolSupport);
    tool.setToolCursor(ModelerGraphics.handScrollCursor);
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.