Examples of SelectTool


Examples of chunmap.app.tools.SelectTool

    UiUtil.addCommonButton(frame,map);
   
    UiUtil.addButton(frame,map,"选择",new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent arg0) {
        tool=new SelectTool();
        map.setCurrentPlug(tool);
      }
    });
  }
View Full Code Here

Examples of com.cburch.draw.tools.SelectTool

  private ZoomModel zoomModel;
  private AppearanceEditHandler editHandler;
 
  public AppearanceView() {
    attrs = new DrawingAttributeSet();
    SelectTool selectTool = new SelectTool();
    canvas = new AppearanceCanvas(selectTool);
    toolbarModel = new AppearanceToolbarModel(selectTool, canvas, attrs);
    zoomModel = new BasicZoomModel(AppPreferences.APPEARANCE_SHOW_GRID,
        AppPreferences.APPEARANCE_ZOOM, ZOOM_OPTIONS);
    canvas.getGridPainter().setZoomModel(zoomModel);
View Full Code Here

Examples of com.cburch.draw.tools.SelectTool

    private ZoomModel zoomModel;
    private AppearanceEditHandler editHandler;

    public AppearanceView() {
        attrs = new DrawingAttributeSet();
        SelectTool selectTool = new SelectTool();
        canvas = new AppearanceCanvas(selectTool);
        toolbarModel = new AppearanceToolbarModel(selectTool, canvas, attrs);
        zoomModel = new BasicZoomModel(AppPreferences.APPEARANCE_SHOW_GRID,
                AppPreferences.APPEARANCE_ZOOM, ZOOM_OPTIONS);
        canvas.getGridPainter().setZoomModel(zoomModel);
View Full Code Here

Examples of com.cburch.logisim.tools.SelectTool

public class Base extends Library {
  private List<Tool> tools = null;

  public Base() {
    SelectTool select = new SelectTool();
    WiringTool wiring = new WiringTool();
   
    tools = Arrays.asList(new Tool[] {
      new PokeTool(),
      new EditTool(select, wiring),
View Full Code Here

Examples of com.cburch.logisim.tools.SelectTool

public class Base extends Library {
    private List<Tool> tools = null;

    public Base() {
        SelectTool select = new SelectTool();
        WiringTool wiring = new WiringTool();

        tools = Arrays.asList(new Tool[] {
            new PokeTool(),
            new EditTool(select, wiring),
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.