/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OpenFlexo is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo.fge.geomedit.edition; import java.awt.Color; import org.openflexo.fge.geom.FGEPoint; import org.openflexo.fge.geom.FGEQuadCurve; import org.openflexo.fge.geom.FGESegment; import org.openflexo.fge.geomedit.GeomEditController; import org.openflexo.fge.geomedit.QuadCurve; import org.openflexo.fge.geomedit.construction.QuadCurveWithThreePointsConstruction; import org.openflexo.fge.graphics.FGEDrawingGraphics; import org.openflexo.fge.graphics.ForegroundStyle; import org.openflexo.fge.graphics.ForegroundStyle.DashStyle; public class CreateQuadCurveFromThreePoints extends Edition { public CreateQuadCurveFromThreePoints(GeomEditController controller) { super("Create quadratic curve from three points", controller); inputs.add(new ObtainPoint("Select start point", controller)); inputs.add(new ObtainPoint("Select end point", controller)); inputs.add(new ObtainPoint("Select control point", controller)); } @Override public void performEdition() { ObtainPoint p1 = (ObtainPoint) inputs.get(0); ObtainPoint p2 = (ObtainPoint) inputs.get(1); ObtainPoint p3 = (ObtainPoint) inputs.get(2); addObject(new QuadCurve(getController().getDrawing().getModel(), new QuadCurveWithThreePointsConstruction(p1.getConstruction(), p3.getConstruction(), p2.getConstruction()))); } /*public void addObject(GeometricObject object) { getController().getDrawing().getModel().addToChilds(object); }*/ @Override public void paintEdition(FGEDrawingGraphics graphics, FGEPoint lastMouseLocation) { if (currentStep == 0) { // Nothing to draw } else if (currentStep == 1) { // Nothing to draw FGEPoint p1 = ((ObtainPoint) inputs.get(0)).getInputData(); graphics.setDefaultForeground(focusedForegroundStyle); p1.paint(graphics); new FGESegment(p1, lastMouseLocation).paint(graphics); } else if (currentStep == 2) { // Draw construction FGEPoint p1 = ((ObtainPoint) inputs.get(0)).getInputData(); FGEPoint p2 = ((ObtainPoint) inputs.get(1)).getInputData(); graphics.setDefaultForeground(ForegroundStyle.makeStyle(Color.LIGHT_GRAY, 1, DashStyle.MEDIUM_DASHES)); FGESegment line1 = new FGESegment(lastMouseLocation, p1); FGESegment line2 = new FGESegment(lastMouseLocation, p2); line1.paint(graphics); line2.paint(graphics); graphics.setDefaultForeground(ForegroundStyle.makeStyle(Color.RED, 1)); p1.paint(graphics); p2.paint(graphics); lastMouseLocation.paint(graphics); new FGEQuadCurve(p1, lastMouseLocation, p2).paint(graphics); } } }