Package org.locationtech.udig.printing.ui.internal.editor.commands

Source Code of org.locationtech.udig.printing.ui.internal.editor.commands.BoxCreateCommand

/*
*    uDig - User Friendly Desktop Internet GIS client
*    http://udig.refractions.net
*    (C) 2012, Refractions Research Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD
* License v1.0 (http://udig.refractions.net/files/bsd3-v10.html).
*/
package org.locationtech.udig.printing.ui.internal.editor.commands;

import org.locationtech.udig.printing.model.Box;
import org.locationtech.udig.printing.model.Page;

import org.eclipse.draw2d.geometry.Dimension;
import org.eclipse.draw2d.geometry.Rectangle;
import org.eclipse.gef.commands.Command;

public class BoxCreateCommand extends Command {
  private Box newBox;
  private Page parent; //page to add box to
  private Rectangle bounds;
  public BoxCreateCommand(Box box, Page parent, Rectangle bounds) {
    super();
    this.bounds = bounds;
    newBox = box;
    this.parent = parent;
    setLabel("box creation");
  }
 
  public boolean canExecute() {
    return newBox != null && parent != null && bounds != null;
  }
 
  public void execute() {
    newBox.setLocation(bounds.getLocation());
    Dimension size = bounds.getSize();
    if (size.width > 0 && size.height > 0)
      newBox.setSize(size);
    redo();
  }
 
  public void redo() {
    parent.getBoxes().add(newBox);
  }
 
  public void undo() {
    parent.getBoxes().remove(newBox);
  }
}
TOP

Related Classes of org.locationtech.udig.printing.ui.internal.editor.commands.BoxCreateCommand

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.