001/* ===========================================================
002 * JFreeChart : a free chart library for the Java(tm) platform
003 * ===========================================================
004 *
005 * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors.
006 *
007 * Project Info:  http://www.jfree.org/jfreechart/index.html
008 *
009 * This library is free software; you can redistribute it and/or modify it
010 * under the terms of the GNU Lesser General Public License as published by
011 * the Free Software Foundation; either version 2.1 of the License, or
012 * (at your option) any later version.
013 *
014 * This library is distributed in the hope that it will be useful, but
015 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
016 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
017 * License for more details.
018 *
019 * You should have received a copy of the GNU Lesser General Public
020 * License along with this library; if not, write to the Free Software
021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
022 * USA.
023 *
024 * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 
025 * Other names may be trademarks of their respective owners.]
026 *
027 * ---------------
028 * LongNeedle.java
029 * ---------------
030 * (C) Copyright 2002-2008, by the Australian Antarctic Division and
031 *                          Contributors.
032 *
033 * Original Author:  Bryan Scott (for the Australian Antarctic Division);
034 * Contributor(s):   David Gilbert (for Object Refinery Limited);
035 *
036 * Changes:
037 * --------
038 * 25-Sep-2002 : Version 1, contributed by Bryan Scott (DG);
039 * 27-Mar-2003 : Implemented Serializable (DG);
040 * 09-Sep-2003 : Added equals() method (DG);
041 * 16-Mar-2004 : Implemented Rotation;
042 * 22-Nov-2007 : Implemented hashCode() (DG);
043 *
044 */
045
046package org.jfree.chart.needle;
047
048import java.awt.Graphics2D;
049import java.awt.Shape;
050import java.awt.geom.GeneralPath;
051import java.awt.geom.Point2D;
052import java.awt.geom.Rectangle2D;
053import java.io.Serializable;
054
055/**
056 * A needle that is represented by a long line.
057 */
058public class LongNeedle extends MeterNeedle
059                        implements Cloneable, Serializable {
060
061    /** For serialization. */
062    private static final long serialVersionUID = -4319985779783688159L;
063
064    /**
065     * Default constructor.
066     */
067    public LongNeedle() {
068        super();
069        setRotateY(0.8);
070    }
071
072    /**
073     * Draws the needle.
074     *
075     * @param g2  the graphics device.
076     * @param plotArea  the plot area.
077     * @param rotate  the rotation point.
078     * @param angle  the angle.
079     */
080    @Override
081    protected void drawNeedle(Graphics2D g2, Rectangle2D plotArea,
082                              Point2D rotate, double angle) {
083
084        GeneralPath shape1 = new GeneralPath();
085        GeneralPath shape2 = new GeneralPath();
086        GeneralPath shape3 = new GeneralPath();
087
088        float minX = (float) plotArea.getMinX();
089        float minY = (float) plotArea.getMinY();
090        float maxX = (float) plotArea.getMaxX();
091        float maxY = (float) plotArea.getMaxY();
092        //float midX = (float) (minX + (plotArea.getWidth() * getRotateX()));
093        //float midY = (float) (minY + (plotArea.getHeight() * getRotateY()));
094        float midX = (float) (minX + (plotArea.getWidth() * 0.5));
095        float midY = (float) (minY + (plotArea.getHeight() * 0.8));
096        float y = maxY - (2 * (maxY - midY));
097        if (y < minY) {
098            y = minY;
099        }
100        shape1.moveTo(minX, midY);
101        shape1.lineTo(midX, minY);
102        shape1.lineTo(midX, y);
103        shape1.closePath();
104
105        shape2.moveTo(maxX, midY);
106        shape2.lineTo(midX, minY);
107        shape2.lineTo(midX, y);
108        shape2.closePath();
109
110        shape3.moveTo(minX, midY);
111        shape3.lineTo(midX, maxY);
112        shape3.lineTo(maxX, midY);
113        shape3.lineTo(midX, y);
114        shape3.closePath();
115
116        Shape s1 = shape1;
117        Shape s2 = shape2;
118        Shape s3 = shape3;
119
120        if ((rotate != null) && (angle != 0)) {
121            /// we have rotation huston, please spin me
122            getTransform().setToRotation(angle, rotate.getX(), rotate.getY());
123            s1 = shape1.createTransformedShape(transform);
124            s2 = shape2.createTransformedShape(transform);
125            s3 = shape3.createTransformedShape(transform);
126        }
127
128
129        if (getHighlightPaint() != null) {
130            g2.setPaint(getHighlightPaint());
131            g2.fill(s3);
132        }
133
134        if (getFillPaint() != null) {
135            g2.setPaint(getFillPaint());
136            g2.fill(s1);
137            g2.fill(s2);
138        }
139
140
141        if (getOutlinePaint() != null) {
142            g2.setStroke(getOutlineStroke());
143            g2.setPaint(getOutlinePaint());
144            g2.draw(s1);
145            g2.draw(s2);
146            g2.draw(s3);
147        }
148    }
149
150    /**
151     * Tests another object for equality with this object.
152     *
153     * @param obj  the object to test (<code>null</code> permitted).
154     *
155     * @return A boolean.
156     */
157    @Override
158    public boolean equals(Object obj) {
159        if (obj == this) {
160            return true;
161        }
162        if (!(obj instanceof LongNeedle)) {
163            return false;
164        }
165        return super.equals(obj);
166    }
167
168    /**
169     * Returns a hash code for this instance.
170     *
171     * @return A hash code.
172     */
173    @Override
174    public int hashCode() {
175        return super.hashCode();
176    }
177
178    /**
179     * Returns a clone of this needle.
180     *
181     * @return A clone.
182     *
183     * @throws CloneNotSupportedException if the <code>LongNeedle</code>
184     *     cannot be cloned (in theory, this should not happen).
185     */
186    @Override
187    public Object clone() throws CloneNotSupportedException {
188        return super.clone();
189    }
190
191}