jspinner.java
来自「linux下建立JAVA虚拟机的源码KAFFE」· Java 代码 · 共 751 行 · 第 1/2 页
JAVA
751 行
/* JSpinner.java -- Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING. If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library. Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule. An independent module is a module which is not derived fromor based on this library. If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so. If you do not wish to do so, delete thisexception statement from your version. */package javax.swing;import java.awt.Component;import java.awt.Container;import java.awt.Dimension;import java.awt.Insets;import java.awt.LayoutManager;import java.beans.PropertyChangeEvent;import java.beans.PropertyChangeListener;import java.text.DateFormat;import java.text.DecimalFormat;import java.text.NumberFormat;import java.text.ParseException;import java.text.SimpleDateFormat;import javax.swing.event.ChangeEvent;import javax.swing.event.ChangeListener;import javax.swing.plaf.SpinnerUI;import javax.swing.text.DateFormatter;import javax.swing.text.DefaultFormatterFactory;import javax.swing.text.NumberFormatter;/** * A <code>JSpinner</code> is a component that displays a single value from * a sequence of values, and provides a convenient means for selecting the * previous and next values in the sequence. Typically the spinner displays * a numeric value, but it is possible to display dates or arbitrary items * from a list. * * @author Ka-Hing Cheung * * @since 1.4 */public class JSpinner extends JComponent{ /** * The base class for the editor used by the {@link JSpinner} component. * The editor is in fact a panel containing a {@link JFormattedTextField} * component. */ public static class DefaultEditor extends JPanel implements ChangeListener, PropertyChangeListener, LayoutManager { /** The spinner that the editor is allocated to. */ private JSpinner spinner; /** The JFormattedTextField that backs the editor. */ JFormattedTextField ftf; /** * For compatability with Sun's JDK 1.4.2 rev. 5 */ private static final long serialVersionUID = -5317788736173368172L; /** * Creates a new <code>DefaultEditor</code> object. The editor is * registered with the spinner as a {@link ChangeListener} here. * * @param spinner the <code>JSpinner</code> associated with this editor */ public DefaultEditor(JSpinner spinner) { super(); setLayout(this); this.spinner = spinner; ftf = new JFormattedTextField(); add(ftf); ftf.setValue(spinner.getValue()); ftf.addPropertyChangeListener(this); spinner.addChangeListener(this); } /** * Returns the <code>JSpinner</code> component that the editor is assigned * to. * * @return The spinner that the editor is assigned to. */ public JSpinner getSpinner() { return spinner; } /** * DOCUMENT ME! */ public void commitEdit() throws ParseException { // TODO: Implement this properly. } /** * Removes the editor from the {@link ChangeListener} list maintained by * the specified <code>spinner</code>. * * @param spinner the spinner (<code>null</code> not permitted). */ public void dismiss(JSpinner spinner) { spinner.removeChangeListener(this); } /** * Returns the text field used to display and edit the current value in * the spinner. * * @return The text field. */ public JFormattedTextField getTextField() { return ftf; } /** * Sets the bounds for the child components in this container. In this * case, the text field is the only component to be laid out. * * @param parent the parent container. */ public void layoutContainer(Container parent) { Insets insets = getInsets(); Dimension size = getSize(); ftf.setBounds(insets.left, insets.top, size.width - insets.left - insets.right, size.height - insets.top - insets.bottom); } /** * Calculates the minimum size for this component. In this case, the * text field is the only subcomponent, so the return value is the minimum * size of the text field plus the insets of this component. * * @param parent the parent container. * * @return The minimum size. */ public Dimension minimumLayoutSize(Container parent) { Insets insets = getInsets(); Dimension minSize = ftf.getMinimumSize(); return new Dimension(minSize.width + insets.left + insets.right, minSize.height + insets.top + insets.bottom); } /** * Calculates the preferred size for this component. In this case, the * text field is the only subcomponent, so the return value is the * preferred size of the text field plus the insets of this component. * * @param parent the parent container. * * @return The preferred size. */ public Dimension preferredLayoutSize(Container parent) { Insets insets = getInsets(); Dimension prefSize = ftf.getPreferredSize(); return new Dimension(prefSize.width + insets.left + insets.right, prefSize.height + insets.top + insets.bottom); } /** * Receives notification of property changes. If the text field's 'value' * property changes, the spinner's model is updated accordingly. * * @param event the event. */ public void propertyChange(PropertyChangeEvent event) { if (event.getSource() == ftf) { if (event.getPropertyName().equals("value")) spinner.getModel().setValue(event.getNewValue()); } } /** * Receives notification of changes in the state of the {@link JSpinner} * that the editor belongs to - the content of the text field is updated * accordingly. * * @param event the change event. */ public void stateChanged(ChangeEvent event) { ftf.setValue(spinner.getValue()); } /** * This method does nothing. It is required by the {@link LayoutManager} * interface, but since this component has a single child, there is no * need to use this method. * * @param child the child component to remove. */ public void removeLayoutComponent(Component child) { // Nothing to do here. } /** * This method does nothing. It is required by the {@link LayoutManager} * interface, but since this component has a single child, there is no * need to use this method. * * @param name the name. * @param child the child component to add. */ public void addLayoutComponent(String name, Component child) { // Nothing to do here. } } /** * A panel containing a {@link JFormattedTextField} that is configured for * displaying and editing numbers. The panel is used as a subcomponent of * a {@link JSpinner}. * * @see JSpinner#createEditor(SpinnerModel) */ public static class NumberEditor extends DefaultEditor { /** * For compatability with Sun's JDK */ private static final long serialVersionUID = 3791956183098282942L; /** * Creates a new <code>NumberEditor</code> object for the specified * <code>spinner</code>. The editor is registered with the spinner as a * {@link ChangeListener}. * * @param spinner the component the editor will be used with. */ public NumberEditor(JSpinner spinner) { super(spinner); NumberEditorFormatter nef = new NumberEditorFormatter(); nef.setMinimum(getModel().getMinimum()); nef.setMaximum(getModel().getMaximum()); ftf.setFormatterFactory(new DefaultFormatterFactory(nef)); } /** * Creates a new <code>NumberEditor</code> object. * * @param spinner the spinner. * @param decimalFormatPattern the number format pattern. */ public NumberEditor(JSpinner spinner, String decimalFormatPattern) { super(spinner); NumberEditorFormatter nef = new NumberEditorFormatter(decimalFormatPattern); nef.setMinimum(getModel().getMinimum()); nef.setMaximum(getModel().getMaximum()); ftf.setFormatterFactory(new DefaultFormatterFactory(nef)); } /** * Returns the format used by the text field. * * @return The format used by the text field. */ public DecimalFormat getFormat() { NumberFormatter formatter = (NumberFormatter) ftf.getFormatter(); return (DecimalFormat) formatter.getFormat(); } /** * Returns the model used by the editor's {@link JSpinner} component, * cast to a {@link SpinnerNumberModel}. * * @return The model. */ public SpinnerNumberModel getModel() { return (SpinnerNumberModel) getSpinner().getModel(); } } static class NumberEditorFormatter extends NumberFormatter { public NumberEditorFormatter() { super(NumberFormat.getInstance()); } public NumberEditorFormatter(String decimalFormatPattern) { super(new DecimalFormat(decimalFormatPattern)); } } /** * A <code>JSpinner</code> editor used for the {@link SpinnerListModel}. * This editor uses a <code>JFormattedTextField</code> to edit the values * of the spinner. * * @author Roman Kennke (kennke@aicas.com) */ public static class ListEditor extends DefaultEditor { /** * Creates a new instance of <code>ListEditor</code>. * * @param spinner the spinner for which this editor is used */ public ListEditor(JSpinner spinner) { super(spinner); } /** * Returns the spinner's model cast as a {@link SpinnerListModel}. * * @return The spinner's model. */ public SpinnerListModel getModel() { return (SpinnerListModel) getSpinner().getModel(); } } /** * An editor class for a <code>JSpinner</code> that is used * for displaying and editing dates (e.g. that uses * <code>SpinnerDateModel</code> as model). * * The editor uses a {@link JTextField} with the value * displayed by a {@link DateFormatter} instance. */ public static class DateEditor extends DefaultEditor {
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?