jlabel.java

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· Java 代码 · 共 648 行 · 第 1/2 页

JAVA
648
字号
/* JLabel.java --   Copyright (C) 2002, 2004, 2005  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., 59 Temple Place, Suite 330, Boston, MA02111-1307 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.Font;import java.awt.Image;import java.awt.event.KeyEvent;import javax.accessibility.Accessible;import javax.accessibility.AccessibleContext;import javax.swing.plaf.LabelUI;/** * A swing widget that displays a text message and/or an icon. */public class JLabel extends JComponent implements Accessible, SwingConstants{  /** DOCUMENT ME! */  private static final long serialVersionUID = 5496508283662221534L;  /**   * The Component the label will give focus to when its mnemonic is   * activated.   */  protected Component labelFor;  /** The label's text. */  private transient String text;  /** Where the label will be positioned horizontally. */  private transient int horizontalAlignment = LEADING;  /** Where the label text will be placed horizontally relative to the icon. */  private transient int horizontalTextPosition = TRAILING;  /** Where the label will be positioned vertically. */  private transient int verticalAlignment = CENTER;  /** Where the label text will be place vertically relative to the icon. */  private transient int verticalTextPosition = CENTER;  /** The icon painted when the label is enabled. */  private transient Icon icon;  /** The icon painted when the label is disabled. */  private transient Icon disabledIcon;  /** The label's mnemnonic key. */  private transient int displayedMnemonic = KeyEvent.VK_UNDEFINED;  /** The index of the menemonic character in the text. */  private transient int displayedMnemonicIndex = -1;  /** The gap between the icon and the text. */  private transient int iconTextGap = 4;  /**   * Creates a new horizontally and vertically centered JLabel object with no   * text and no icon.   */  public JLabel()  {    this(null, null, CENTER);  }  /**   * Creates a new horizontally and vertically centered JLabel object with no   * text and the given icon.   *   * @param image The icon to use with the label.   */  public JLabel(Icon image)  {    this(null, image, CENTER);  }  /**   * Creates a new vertically centered JLabel object with no text and the   * given icon and horizontal alignment. By default, the text is TRAILING   * the image.   *   * @param image The icon to use with the label.   * @param horizontalAlignment The horizontal alignment of the label.   */  public JLabel(Icon image, int horizontalAlignment)  {    this(null, image, horizontalAlignment);  }  /**   * Creates a new horizontally and vertically centered JLabel object with no   * icon and the given text.   *   * @param text The text to use with the label.   */  public JLabel(String text)  {    this(text, null, CENTER);  }  /**   * Creates a new vertically centered JLabel object with no icon and the   * given text and horizontal alignment.   *   * @param text The text to use with the label.   * @param horizontalAlignment The horizontal alignment of the label.   */  public JLabel(String text, int horizontalAlignment)  {    this(text, null, horizontalAlignment);  }  /**   * Creates a new vertically centered JLabel object with the given text,   * icon, and horizontal alignment.   *   * @param text The text to use with the label.   * @param icon The icon to use with the label.   * @param horizontalAlignment The horizontal alignment of the label.   */  public JLabel(String text, Icon icon, int horizontalAlignment)  {    this.text = text;    this.icon = icon;    this.horizontalAlignment = horizontalAlignment;    updateUI();  }  /**   * This method returns the label's UI delegate.   *   * @return The label's UI delegate.   */  public LabelUI getUI()  {    return (LabelUI) ui;  }  /**   * This method sets the label's UI delegate.   *   * @param ui The label's UI delegate.   */  public void setUI(LabelUI ui)  {    super.setUI(ui);  }  /**   * This method resets the label's UI delegate to the default UI for the   * current look and feel.   */  public void updateUI()  {    setUI((LabelUI) UIManager.getUI(this));  }  /**   * This method returns a name to identify which look and feel class will be   * the UI delegate for this label.   *   * @return The UIClass identifier. "LabelUI"   */  public String getUIClassID()  {    return "LabelUI";  }  /**   * This method is used primarily for debugging purposes and returns a string   * that can be used to represent this label.   *   * @return A string to represent this label.   */  protected String paramString()  {    return "JLabel";  }  /**   * This method returns the label text.   *   * @return The label text.   */  public String getText()  {    return text;  }  /**   * This method changes the "text" property. The given text will be painted   * in the label.   *   * @param newText The label's text.   */  public void setText(String newText)  {    if (text != newText)      {	String oldText = text;	text = newText;	firePropertyChange("text", oldText, newText);	if (text != null && text.length() <= displayedMnemonicIndex)	  setDisplayedMnemonicIndex(text.length() - 1);      }  }  /**   * This method returns the active icon. The active icon is painted when the   * label is enabled.   *   * @return The active icon.   */  public Icon getIcon()  {    return icon;  }  /**   * This method changes the "icon" property. This icon (the active icon) will   * be the one displayed when the label is enabled.   *   * @param newIcon The active icon.   */  public void setIcon(Icon newIcon)  {    if (icon != newIcon)      {	Icon oldIcon = icon;	icon = newIcon;	firePropertyChange("icon", oldIcon, newIcon);      }  }  /**   * This method returns the disabled icon. The disabled icon is painted when   * the label is disabled. If the disabled icon is null and the active icon   * is an ImageIcon, this method returns a grayed version of the icon. The   * grayed  version of the icon becomes the disabledIcon.   *   * @return The disabled icon.   */  public Icon getDisabledIcon()  {    if (disabledIcon == null && icon instanceof ImageIcon)      disabledIcon = new ImageIcon(GrayFilter.createDisabledImage(((ImageIcon) icon)                                                                  .getImage()));    return disabledIcon;  }  /**   * This method changes the "disabledIcon" property. This icon (the disabled   * icon) will be the one displayed when the label is disabled.   *   * @param newIcon The disabled icon.   */  public void setDisabledIcon(Icon newIcon)  {    if (disabledIcon != newIcon)      {	Icon oldIcon = disabledIcon;	disabledIcon = newIcon;	firePropertyChange("disabledIcon", oldIcon, newIcon);      }  }  /**   * This method sets the keycode that will be the label's mnemonic. If the   * label is used as a label for another component, the label will give   * focus to that component when the mnemonic is activated.   *   * @param mnemonic The keycode to use for the mnemonic.   */  public void setDisplayedMnemonic(int mnemonic)  {    if (displayedMnemonic != mnemonic)      {	firePropertyChange("displayedMnemonic",	                   displayedMnemonic, mnemonic);	displayedMnemonic = mnemonic;	if (text != null)	  setDisplayedMnemonicIndex(text.toUpperCase().indexOf(mnemonic));      }  }

⌨️ 快捷键说明

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