?? axispropertyeditpanel.java
字號(hào):
/* ======================================
* JFreeChart : a free Java chart library
* ======================================
*
* Project Info: http://www.jfree.org/jfreechart/index.html
* Project Lead: David Gilbert (david.gilbert@object-refinery.com);
*
* (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
*
* 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.
*
* --------------------------
* AxisPropertyEditPanel.java
* --------------------------
* (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
*
* Original Author: David Gilbert;
* Contributor(s): Andrzej Porebski;
* Arnaud Lelievre;
*
* $Id: AxisPropertyEditPanel.java,v 1.4 2003/09/08 22:08:28 mungady Exp $
*
* Changes (from 24-Aug-2001)
* --------------------------
* 24-Aug-2001 : Added standard source header. Fixed DOS encoding problem (DG);
* 07-Nov-2001 : Separated the JCommon Class Library classes, JFreeChart now requires
* jcommon.jar (DG);
* 21-Nov-2001 : Allowed for null axes (DG);
* 09-Apr-2002 : Minor change to import statement to fix Javadoc error (DG);
* 15-Oct-2002 : Fixed errors reported by Checkstyle (DG);
* 08-Sep-2003 : Added internationalization via use of properties resourceBundle (RFE 690236) (AL);
*
*/
package org.jfree.chart.ui;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Font;
import java.awt.Insets;
import java.awt.Paint;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ResourceBundle;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JColorChooser;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.JTextField;
import org.jfree.chart.axis.Axis;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.layout.LCBLayout;
import org.jfree.ui.FontChooserPanel;
import org.jfree.ui.FontDisplayField;
import org.jfree.ui.InsetsChooserPanel;
import org.jfree.ui.InsetsTextField;
import org.jfree.ui.PaintSample;
/**
* A panel for editing the properties of an axis.
*
* @author David Gilbert
*/
public class AxisPropertyEditPanel extends JPanel implements ActionListener {
/** The axis label. */
private JTextField label;
/** The label font. */
private Font labelFont;
/** The label paint. */
private PaintSample labelPaintSample;
/** A field showing a description of the label font. */
private JTextField labelFontField;
/** The font for displaying tick labels on the axis. */
private Font tickLabelFont;
/** A field containing a description of the font for displaying tick labels on the axis. */
private JTextField tickLabelFontField;
/** The paint (color) for the tick labels. */
private PaintSample tickLabelPaintSample;
/** An empty sub-panel for extending the user interface to handle more complex axes. */
private JPanel slot1;
/** An empty sub-panel for extending the user interface to handle more complex axes. */
private JPanel slot2;
/** A flag that indicates whether or not the tick labels are visible. */
private JCheckBox showTickLabelsCheckBox;
/** A flag that indicates whether or not the tick marks are visible. */
private JCheckBox showTickMarksCheckBox;
/** Insets text field. */
private InsetsTextField tickLabelInsetsTextField;
/** Label insets text field. */
private InsetsTextField labelInsetsTextField;
/** The tick label insets. */
private Insets tickLabelInsets;
/** The label insets. */
private Insets labelInsets;
/** A tabbed pane for... */
private JTabbedPane otherTabs;
/** The resourceBundle for the localization. */
static protected ResourceBundle localizationResources =
ResourceBundle.getBundle("org.jfree.chart.ui.LocalizationBundle");
/**
* A static method that returns a panel that is appropriate for the axis
* type.
*
* @param axis the axis whose properties are to be displayed/edited in the panel.
*
* @return a panel or <code>null</code< if axis is <code>null</code>.
*/
public static AxisPropertyEditPanel getInstance(Axis axis) {
if (axis != null) {
// figure out what type of axis we have and instantiate the
// appropriate panel
if (axis instanceof NumberAxis) {
return new NumberAxisPropertyEditPanel((NumberAxis) axis);
}
else {
return new AxisPropertyEditPanel(axis);
}
}
else {
return null;
}
}
/**
* Standard constructor: builds a panel for displaying/editing the
* properties of the specified axis.
*
* @param axis the axis whose properties are to be displayed/edited in the panel.
*/
public AxisPropertyEditPanel(Axis axis) {
labelFont = axis.getLabelFont();
labelPaintSample = new PaintSample(axis.getLabelPaint());
tickLabelFont = axis.getTickLabelFont();
tickLabelPaintSample = new PaintSample(axis.getTickLabelPaint());
// Insets values
this.tickLabelInsets = axis.getTickLabelInsets();
this.labelInsets = axis.getLabelInsets();
setLayout(new BorderLayout());
JPanel general = new JPanel(new BorderLayout());
general.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
localizationResources.getString("General")));
JPanel interior = new JPanel(new LCBLayout(5));
interior.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5));
interior.add(new JLabel(localizationResources.getString("Label")));
label = new JTextField(axis.getLabel());
interior.add(label);
interior.add(new JPanel());
interior.add(new JLabel(localizationResources.getString("Font")));
labelFontField = new FontDisplayField(labelFont);
interior.add(labelFontField);
JButton b = new JButton(localizationResources.getString("Select..."));
b.setActionCommand("SelectLabelFont");
b.addActionListener(this);
interior.add(b);
interior.add(new JLabel(localizationResources.getString("Paint")));
interior.add(labelPaintSample);
b = new JButton(localizationResources.getString("Select..."));
b.setActionCommand("SelectLabelPaint");
b.addActionListener(this);
interior.add(b);
interior.add(new JLabel(localizationResources.getString("Label_Insets")));
b = new JButton(localizationResources.getString("Edit..."));
b.setActionCommand("LabelInsets");
b.addActionListener(this);
labelInsetsTextField = new InsetsTextField(this.labelInsets);
interior.add(labelInsetsTextField);
interior.add(b);
interior.add(new JLabel(localizationResources.getString("Tick_Label_Insets")));
b = new JButton(localizationResources.getString("Edit..."));
b.setActionCommand("TickLabelInsets");
b.addActionListener(this);
tickLabelInsetsTextField = new InsetsTextField(this.tickLabelInsets);
interior.add(tickLabelInsetsTextField);
interior.add(b);
general.add(interior);
add(general, BorderLayout.NORTH);
slot1 = new JPanel(new BorderLayout());
JPanel other = new JPanel(new BorderLayout());
other.setBorder(BorderFactory.createTitledBorder(
BorderFactory.createEtchedBorder(),
localizationResources.getString("Other")));
otherTabs = new JTabbedPane();
otherTabs.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5));
JPanel ticks = new JPanel(new LCBLayout(3));
ticks.setBorder(BorderFactory.createEmptyBorder(4, 4, 4, 4));
showTickLabelsCheckBox = new JCheckBox(localizationResources.getString("Show_tick_labels"),
axis.isTickLabelsVisible());
ticks.add(showTickLabelsCheckBox);
ticks.add(new JPanel());
ticks.add(new JPanel());
ticks.add(new JLabel(localizationResources.getString("Tick_label_font")));
tickLabelFontField = new FontDisplayField(tickLabelFont);
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -