⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 drawstringpanel.java

📁 在软件开发中用来绘制各种图表的源码
💻 JAVA
字号:
/* --------------------
 * DrawStringPanel.java
 * --------------------
 * (C) Copyright 2003-2005, by Object Refinery Limited.
 *
 * Original Author:  David Gilbert (for Object Refinery Limited);
 * Contributor(s):   -;
 *
 * $Id: DrawStringPanel.java,v 1.1 2004/07/15 15:23:31 mungady Exp $
 *
 * Changes
 * -------
 * 10-Jun-2003 : Version 1;
 *
 */

package 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.
 */
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);
        Graphics2D g2 = (Graphics2D) g;

        Dimension size = getSize();
        Insets insets = getInsets();
        Rectangle2D available = new Rectangle2D.Double(
            insets.left, insets.top,
            size.getWidth() - insets.left - insets.right,
            size.getHeight() - insets.top - insets.bottom
        );

        double x = available.getCenterX();
        double y = available.getCenterY();

        Line2D line1 = new Line2D.Double(x - 2.0, y + 2.0, x + 2.0, y - 2.0);
        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
            );
        }

    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -