org.jfree.demo.DrawStringPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtstand-common Show documentation
Show all versions of jtstand-common Show documentation
jtstand-common is a library derived from jcommon, used by jtstand-chart, which is derived from jfreechart
/*
* Copyright (c) 2009 Albert Kurucz.
*
* This file, DrawStringPanel.java is part of JTStand.
*
* JTStand 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 3 of the License, or
* (at your option) any later version.
*
* JTStand 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 GTStand. If not, see .
*/
package org.jfree.demo;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Insets;
import java.awt.geom.Line2D;
import java.awt.geom.Rectangle2D;
import javax.swing.JPanel;
import org.jfree.text.TextUtilities;
import org.jfree.ui.TextAnchor;
/**
* A panel used by the {@link DrawStringDemo} class.
*
* @author David Gilbert
*/
public class DrawStringPanel extends JPanel {
/** The preferred size for the panel. */
private static final Dimension PREFERRED_SIZE = new Dimension(500, 300);
/** Is the text rotated. */
private boolean rotate;
/** The text to display. */
private String text = "Hello World";
/** The text anchor. */
private TextAnchor anchor = TextAnchor.TOP_LEFT;
/** The rotation anchor. */
private TextAnchor rotationAnchor = TextAnchor.TOP_LEFT;
/** The font. */
private Font font = new Font("Serif", Font.PLAIN, 12);
/** The rotation angle. */
private double angle;
/**
* Creates a new panel.
*
* @param text the text.
* @param rotate a flag that controls whether or not the text is rotated.
*/
public DrawStringPanel(final String text, final boolean rotate) {
this.text = text;
this.rotate = rotate;
}
/**
* Returns the preferred size for the panel.
*
* @return The preferred size.
*/
public Dimension getPreferredSize() {
return PREFERRED_SIZE;
}
/**
* Sets the text anchor.
*
* @param anchor the text anchor.
*/
public void setAnchor(final TextAnchor anchor) {
this.anchor = anchor;
}
/**
* Sets the rotation anchor.
*
* @param anchor the rotation anchor.
*/
public void setRotationAnchor(final TextAnchor anchor) {
this.rotationAnchor = anchor;
}
/**
* Sets the rotation angle.
*
* @param angle the rotation angle.
*/
public void setAngle(final double angle) {
this.angle = angle;
}
/**
* Returns the font.
*
* @return The font.
*/
public Font getFont() {
return this.font;
}
/**
* Sets the font.
*
* @param font the font.
*/
public void setFont(final Font font) {
this.font = font;
}
/**
* Paints the panel.
*
* @param g the graphics device.
*/
public void paintComponent(final Graphics g) {
super.paintComponent(g);
final Graphics2D g2 = (Graphics2D) g;
final Dimension size = getSize();
final Insets insets = getInsets();
final Rectangle2D available = new Rectangle2D.Double(
insets.left, insets.top,
size.getWidth() - insets.left - insets.right,
size.getHeight() - insets.top - insets.bottom
);
final double x = available.getCenterX();
final double y = available.getCenterY();
final Line2D line1 = new Line2D.Double(x - 2.0, y + 2.0, x + 2.0, y - 2.0);
final Line2D line2 = new Line2D.Double(x - 2.0, y - 2.0, x + 2.0, y + 2.0);
g2.setPaint(Color.red);
g2.draw(line1);
g2.draw(line2);
g2.setFont(this.font);
g2.setPaint(Color.black);
if (this.rotate) {
TextUtilities.drawRotatedString(
this.text, g2, (float) x, (float) y,
this.anchor, this.angle, this.rotationAnchor
);
}
else {
TextUtilities.drawAlignedString(this.text, g2, (float) x, (float) y, this.anchor);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy