📄 texttitle.java
字号:
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (C) Copyright 2000-2004, by Object Refinery Limited and Contributors.
*
* Project Info: http://www.jfree.org/jfreechart/index.html
*
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This library 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* --------------
* TextTitle.java
* --------------
* (C) Copyright 2000-2004, by David Berry and Contributors.
*
* Original Author: David Berry;
* Contributor(s): David Gilbert (for Object Refinery Limited);
* Nicolas Brodu;
*
* $Id: TextTitle.java,v 1.1 2004/08/31 14:52:48 mungady Exp $
*
* Changes (from 18-Sep-2001)
* --------------------------
* 18-Sep-2001 : Added standard header (DG);
* 07-Nov-2001 : Separated the JCommon Class Library classes, JFreeChart now requires
* jcommon.jar (DG);
* 09-Jan-2002 : Updated Javadoc comments (DG);
* 07-Feb-2002 : Changed Insets --> Spacer in AbstractTitle.java (DG);
* 06-Mar-2002 : Updated import statements (DG);
* 25-Jun-2002 : Removed redundant imports (DG);
* 18-Sep-2002 : Fixed errors reported by Checkstyle (DG);
* 28-Oct-2002 : Small modifications while changing JFreeChart class (DG);
* 13-Mar-2003 : Changed width used for relative spacing to fix bug 703050 (DG);
* 26-Mar-2003 : Implemented Serializable (DG);
* 15-Jul-2003 : Fixed null pointer exception (DG);
* 11-Sep-2003 : Implemented Cloneable (NB)
* 22-Sep-2003 : Added checks for null values and thow nullpointer exceptions (TM);
* Background paint was not serialized.
* 07-Oct-2003 : Added fix for exception caused by empty string in title (DG);
* 29-Oct-2003 : Added workaround for text alignment in PDF output (DG);
* 03-Feb-2004 : Fixed bug in getPreferredWidth() method (DG);
* 17-Feb-2004 : Added clone() method and fixed bug in equals() method (DG);
* 01-Apr-2004 : Changed java.awt.geom.Dimension2D to org.jfree.ui.Size2D because of
* JDK bug 4976448 which persists on JDK 1.3.1. Also fixed bug in
* getPreferredHeight() method (DG);
* 29-Apr-2004 : Fixed bug in getPreferredWidth() method - see bug id 944173 (DG);
*
*/
package org.jfree.chart.title;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Paint;
import java.awt.geom.Rectangle2D;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import org.jfree.chart.event.TitleChangeEvent;
import org.jfree.io.SerialUtilities;
import org.jfree.text.G2TextMeasurer;
import org.jfree.text.TextBlock;
import org.jfree.text.TextBlockAnchor;
import org.jfree.text.TextUtilities;
import org.jfree.ui.HorizontalAlignment;
import org.jfree.ui.RectangleEdge;
import org.jfree.ui.Size2D;
import org.jfree.ui.Spacer;
import org.jfree.ui.VerticalAlignment;
import org.jfree.util.ObjectUtils;
import org.jfree.util.LogContext;
import org.jfree.util.Log;
/**
* A chart title that displays a text string.
*
* @author David Berry
*/
public class TextTitle extends Title implements Serializable, Cloneable {
/** The default font. */
public static final Font DEFAULT_FONT = new Font("SansSerif", Font.BOLD, 12);
/** The default text color. */
public static final Paint DEFAULT_TEXT_PAINT = Color.black;
/** The title text. */
private String text;
/** The font used to display the title. */
private Font font;
/** The paint used to display the title text. */
private transient Paint paint;
/** The background paint. */
private transient Paint backgroundPaint;
/** Access to logging facilities. */
private static final LogContext LOGGER = Log.createContext(TextTitle.class);
/**
* Creates a new title, using default attributes where necessary.
*/
public TextTitle() {
this("");
}
/**
* Creates a new title, using default attributes where necessary.
*
* @param text the title text (<code>null</code> not permitted).
*/
public TextTitle(String text) {
this(text,
TextTitle.DEFAULT_FONT,
TextTitle.DEFAULT_TEXT_PAINT,
Title.DEFAULT_POSITION,
Title.DEFAULT_HORIZONTAL_ALIGNMENT,
Title.DEFAULT_VERTICAL_ALIGNMENT,
Title.DEFAULT_SPACER);
}
/**
* Creates a new title, using default attributes where necessary.
*
* @param text the title text (<code>null</code> not permitted).
* @param font the title font (<code>null</code> not permitted).
*/
public TextTitle(String text, Font font) {
this(text, font,
TextTitle.DEFAULT_TEXT_PAINT,
Title.DEFAULT_POSITION,
Title.DEFAULT_HORIZONTAL_ALIGNMENT,
Title.DEFAULT_VERTICAL_ALIGNMENT,
Title.DEFAULT_SPACER);
}
/**
* Creates a new title, using default attributes where necessary.
*
* @param text the title text (<code>null</code> not permitted).
* @param font the title font (<code>null</code> not permitted).
* @param paint the title paint (<code>null</code> not permitted).
*/
public TextTitle(String text, Font font, Paint paint) {
this(text, font, paint,
Title.DEFAULT_POSITION,
Title.DEFAULT_HORIZONTAL_ALIGNMENT,
Title.DEFAULT_VERTICAL_ALIGNMENT,
Title.DEFAULT_SPACER);
}
/**
* Creates a new title, using default attributes where necessary. For the horizontal
* alignment, use one of the following tokens: <code>HorizontalAlignment.LEFT</code>,
* <code>HorizontalAlignment.RIGHT </code> and <code>HorizontalAlignment.CENTER</code>.
*
* @param text the title text (<code>null</code> not permitted).
* @param font the title font (<code>null</code> not permitted).
* @param horizontalAlignment the horizontal alignment (<code>null</code> not permitted).
*/
public TextTitle(String text, Font font, HorizontalAlignment horizontalAlignment) {
this(text, font,
TextTitle.DEFAULT_TEXT_PAINT,
Title.DEFAULT_POSITION,
horizontalAlignment,
Title.DEFAULT_VERTICAL_ALIGNMENT,
Title.DEFAULT_SPACER);
}
/**
* Creates a new title.
*
* @param text the text for the title (<code>null</code> not permitted).
* @param font the title font (<code>null</code> not permitted).
* @param paint the title paint (<code>null</code> not permitted).
* @param position the title position (<code>null</code> not permitted).
* @param horizontalAlignment the horizontal alignment (<code>null</code> not permitted).
* @param verticalAlignment the vertical alignment (<code>null</code> not permitted).
* @param spacer the space to leave around the outside of the title.
*/
public TextTitle(String text,
Font font,
Paint paint,
RectangleEdge position,
HorizontalAlignment horizontalAlignment,
VerticalAlignment verticalAlignment,
Spacer spacer) {
super(position, horizontalAlignment, verticalAlignment, spacer);
if (text == null) {
throw new NullPointerException("Null 'text' argument.");
}
if (font == null) {
throw new NullPointerException("Null 'font' argument.");
}
if (paint == null) {
throw new NullPointerException("Null 'paint' argument.");
}
this.text = text;
this.font = font;
this.paint = paint;
this.backgroundPaint = null;
}
/**
* Returns the title text.
*
* @return The text (never <code>null</code>).
*/
public String getText() {
return this.text;
}
/**
* Sets the title to the specified text and sends a {@link TitleChangeEvent} to all
* registered listeners.
*
* @param text the text (<code>null</code> not permitted).
*/
public void setText(String text) {
if (text == null) {
throw new NullPointerException("TextTitle.setText(..): Text is null");
}
if (!this.text.equals(text)) {
this.text = text;
notifyListeners(new TitleChangeEvent(this));
}
}
/**
* Returns the font used to display the title string.
*
* @return The font (never <code>null</code>).
*/
public Font getFont() {
return this.font;
}
/**
* Sets the font used to display the title string. Registered listeners are notified that
* the title has been modified.
*
* @param font the new font (<code>null</code> not permitted).
*/
public void setFont(Font font) {
// check argument...
if (font == null) {
throw new IllegalArgumentException("TextTitle.setFont(...): null font not permitted.");
}
// make the change...
if (!this.font.equals(font)) {
this.font = font;
notifyListeners(new TitleChangeEvent(this));
}
}
/**
* Returns the paint used to display the title string.
*
* @return The paint (never <code>null</code>).
*/
public Paint getPaint() {
return this.paint;
}
/**
* Sets the paint used to display the title string. Registered listeners are notified that
* the title has been modified.
*
* @param paint the new paint (<code>null</code> not permitted).
*/
public void setPaint(Paint paint) {
if (paint == null) {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -