/* * ContinuousStrokeDecorator.java * * Copyright (C) 2006-2014 Andrew Rambaut * * This program 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 2 * of the License, or (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package figtree.treeviewer.decorators; import jebl.util.Attributable; import java.awt.*; import java.awt.geom.Point2D; /** * This decorator takes an attribute name and a set of attibutable Objects. It * autodetects the type of attributes and then provides a colouring scheme for them * based on a gradient between color1 & color2. * * @author Andrew Rambaut * @version $Id$ * * $HeadURL$ * * $LastChangedBy$ * $LastChangedDate$ * $LastChangedRevision$ */ public class ContinuousStrokeDecorator implements Decorator { public ContinuousStrokeDecorator(ContinuousScale continuousScale, float minWidth, float maxWidth) throws NumberFormatException { this.continuousScale = continuousScale; this.minWidth = minWidth; this.maxWidth = maxWidth; } @Override public boolean allowsGradient() { return false; } // Decorator INTERFACE public Paint getPaint(Paint paint) { return paint; } public Paint getPaint(final Paint paint, final Point2D point1, final Point2D point2) { throw new UnsupportedOperationException("This decorator doesn't support gradients"); } public Paint getFillPaint(Paint paint) { return paint; } public Paint getFillPaint(final Paint paint, final Point2D point1, final Point2D point2) { throw new UnsupportedOperationException("This decorator doesn't support gradients"); } public Stroke getStroke(Stroke stroke) { if (this.stroke == null) { return stroke; } return this.stroke; } public Font getFont(Font font) { return font; } public boolean isGradient() { return false; } public void setItem(Attributable item, Attributable fallbackItem) { setAttributableItem((Attributable)item); } public void setItem(Object item) { if (item instanceof Attributable) { setAttributableItem((Attributable)item); } } public void setItems(final Object item1, final Object item2) { throw new UnsupportedOperationException("This decorator doesn't support gradients"); } // Private methods private void setAttributableItem(Attributable item) { double value = continuousScale.getValue(item); if (!Double.isNaN(value)) { stroke = new BasicStroke((float)((value * (maxWidth - minWidth)) + minWidth)); } else { stroke = null; } } public ContinuousScale getContinuousScale() { return continuousScale; } private final ContinuousScale continuousScale; private final float minWidth; private final float maxWidth; private Stroke stroke = null; }