AbstractLineDecoration.java
/*
* @(#)AbstractLineDecoration.java
*
* Project: JHotdraw - a GUI framework for technical drawings
* http://www.jhotdraw.org
* http://jhotdraw.sourceforge.net
* Copyright: © by the original author(s) and all contributors
* License: Lesser GNU Public License (LGPL)
* http://www.opensource.org/licenses/lgpl-license.html
*/
package CH.ifa.draw.figures;
import java.io.*;
import java.awt.*;
import CH.ifa.draw.framework.*;
import CH.ifa.draw.standard.*;
import CH.ifa.draw.util.*;
/**
* An standard implementation of a line decoration.
*
* @see PolyLineFigure
*
* @version <$CURRENT_VERSION$>
*/
public abstract class AbstractLineDecoration implements LineDecoration {
static final long serialVersionUID = 1577970039258356627L;
private Color fFillColor;
private Color fBorderColor;
public AbstractLineDecoration() {
}
/**
* Draws the arrow tip in the direction specified by the given two
* points.. (template method)
*/
public void draw(Graphics g, int x1, int y1, int x2, int y2) {
// TBD: reuse the Polygon object
Polygon p = outline(x1, y1, x2, y2);
if (getFillColor() == null) {
g.fillPolygon(p.xpoints, p.ypoints, p.npoints);
}
else {
Color drawColor = g.getColor();
g.setColor(getFillColor());
g.fillPolygon(p.xpoints, p.ypoints, p.npoints);
g.setColor(drawColor);
}
if (getBorderColor() != getFillColor()) {
Color drawColor = g.getColor();
g.setColor(getBorderColor());
g.drawPolygon(p.xpoints, p.ypoints, p.npoints);
g.setColor(drawColor);
}
}
/**
* Hook method to calculates the outline of an arrow tip.
*/
public abstract Polygon outline(int x1, int y1, int x2, int y2);
/**
* Stores the arrow tip to a StorableOutput.
*/
public void write(StorableOutput dw) {
if (getFillColor() != null) {
FigureAttributes.writeColor(dw, "FillColor", getFillColor());
}
else {
dw.writeString("noFillColor");
}
if (getBorderColor() != null) {
FigureAttributes.writeColor(dw, "BorderColor", getBorderColor());
}
else {
dw.writeString("noBorderColor");
}
}
/**
* Reads the arrow tip from a StorableInput.
*/
public void read(StorableInput dr) throws IOException {
String fillColorId = dr.readString();
// read color only if one has been written
if (fillColorId.equals("FillColor")) {
setFillColor(FigureAttributes.readColor(dr));
}
String borderColorId = dr.readString();
// read color only if one has been written
if (borderColorId.equals("BorderColor")) {
setBorderColor(FigureAttributes.readColor(dr));
}
}
/**
* Sets color with which arrow is filled
*/
public void setFillColor(Color fillColor) {
fFillColor = fillColor;
}
/**
* Returns color with which arrow is filled
*/
public Color getFillColor() {
return fFillColor;
}
/**
* Sets color of arrow's border
*/
public void setBorderColor(Color borderColor) {
fBorderColor = borderColor;
}
/**
* Returns color of arrow's border
*/
public Color getBorderColor() {
return fBorderColor;
}
}