defaulttreecelleditor.java

来自「linux下建立JAVA虚拟机的源码KAFFE」· Java 代码 · 共 798 行 · 第 1/2 页

JAVA
798
字号
/* DefaultTreeCellEditor.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., 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.tree;import java.awt.Color;import java.awt.Component;import java.awt.Container;import java.awt.Dimension;import java.awt.Font;import java.awt.FontMetrics;import java.awt.Graphics;import java.awt.Rectangle;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.MouseEvent;import java.io.IOException;import java.io.ObjectInputStream;import java.io.ObjectOutputStream;import java.util.EventObject;import javax.swing.DefaultCellEditor;import javax.swing.Icon;import javax.swing.JTextField;import javax.swing.JTree;import javax.swing.SwingUtilities;import javax.swing.UIManager;import javax.swing.border.Border;import javax.swing.event.CellEditorListener;import javax.swing.event.ChangeEvent;import javax.swing.event.EventListenerList;import javax.swing.event.TreeSelectionEvent;import javax.swing.event.TreeSelectionListener;/** * Participates in the tree cell editing. *  * @author Andrew Selkirk * @author Audrius Meskauskas */public class DefaultTreeCellEditor  implements ActionListener, TreeCellEditor, TreeSelectionListener{  /**   * The gap between the icon and editing component during editing.    */  static int ICON_TEXT_GAP = 3;    /**   * The left margin of the editing container (the gap between the tree and   * the editing component of the editing icon.   */  static int TREE_ICON_GAP = ICON_TEXT_GAP;    /**   * The number of the fast mouse clicks, required to start the editing    * session.   */  static int CLICK_COUNT_TO_START = 3;    /**   * This container that appears on the tree during editing session.   * It contains the editing component displays various other editor -    * specific parts like editing icon.    */  public class EditorContainer extends Container  {   /**    * Use v 1.5 serial version UID for interoperability.    */    static final long serialVersionUID = 6470339600449699810L;        /**     * Creates an <code>EditorContainer</code> object.     */    public EditorContainer()    {      // Do nothing here.    }    /**     * This method only exists for API compatibility and is useless as it does     * nothing. It got probably introduced by accident.     */    public void EditorContainer()    {      // Do nothing here.    }       public void setBounds(Rectangle bounds)    {      super.setBounds(bounds);      doLayout();    }    /**     * Overrides Container.paint to paint the node's icon and use the selection     * color for the background.     *      * @param g -     *          the specified Graphics window     */    public void paint(Graphics g)    {      if (editingIcon != null)        {          // From the previous version, the left margin is taken as half          // of the icon width.          editingIcon.paintIcon(this, g, TREE_ICON_GAP, 0);        }      super.paint(g);    }    /**     * Lays out this Container, moving the editor component to the left     * (leaving place for the icon).     */    public void doLayout()    {      // The offset of the editing component.      int eOffset;      // Move the component to the left, leaving room for the editing icon:      if (editingIcon != null)        eOffset = TREE_ICON_GAP + editingIcon.getIconWidth() + ICON_TEXT_GAP;      else        eOffset = 0;      Rectangle bounds = getBounds();      Component c = getComponent(0);      c.setLocation(eOffset, 0);      // Span the editing component near over all window width.      c.setSize(bounds.width - eOffset - TREE_ICON_GAP, bounds.height);      /*       * @specnote the Sun sets some more narrow editing component width (it is       * not documented how does it is calculated). However as our text field is       * still not able to auto - scroll horizontally, replicating such strategy       * would prevent adding extra characters to the text being edited.       */    }  }  /**   * The default text field, used in the editing sessions.   */  public class DefaultTextField extends JTextField  {   /**    * Use v 1.5 serial version UID for interoperability.    */    static final long serialVersionUID = -6629304544265300143L;         /**     * The border of the text field.     */    protected Border border;    /**     * Creates a <code>DefaultTextField</code> object.     *     * @param aBorder the border to use     */    public DefaultTextField(Border aBorder)    {      border = aBorder;    }    /**     * Gets the font of this component.     * @return this component's font; if a font has not been set for      * this component, the font of its parent is returned (if the parent     * is not null, otherwise null is returned).      */    public Font getFont()    {      Font font = super.getFont();      if (font == null)        {          Component parent = getParent();          if (parent != null)            return parent.getFont();          return null;        }      return font;    }    /**     * Returns the border of the text field.     *     * @return the border     */    public Border getBorder()    {      return border;    }    /**     * Overrides JTextField.getPreferredSize to return the preferred size      * based on current font, if set, or else use renderer's font.     *      * @return the Dimension of this textfield.     */    public Dimension getPreferredSize()    {      String s = getText();      Font f = getFont();      if (f != null)        {          FontMetrics fm = getToolkit().getFontMetrics(f);          return new Dimension(SwingUtilities.computeStringWidth(fm, s),                               fm.getHeight());        }      return renderer.getPreferredSize();    }  }    /**   * Listens for the events from the realEditor.   */  class RealEditorListener implements CellEditorListener  {    /**     * The method is called when the editing has been cancelled.     * @param event unused     */    public void editingCanceled(ChangeEvent event)    {      cancelCellEditing();    }    /**     * The method is called after completing the editing session.     *      * @param event unused     */    public void editingStopped(ChangeEvent event)    {      stopCellEditing();    }  }  private EventListenerList listenerList = new EventListenerList();    /**   * Editor handling the editing.   */  protected TreeCellEditor realEditor;  /**   * Renderer, used to get border and offsets from.   */  protected DefaultTreeCellRenderer renderer;  /**   * Editing container, will contain the editorComponent.   */  protected Container editingContainer;  /**   * Component used in editing, obtained from the editingContainer.   */  protected transient Component editingComponent;  /**   * As of Java 2 platform v1.4 this field should no longer be used.    * If you wish to provide similar behavior you should directly    * override isCellEditable.   */  protected boolean canEdit;  /**   * Used in editing. Indicates x position to place editingComponent.   */  protected transient int offset;  /**   * JTree instance listening too.   */  protected transient JTree tree;  /**   * Last path that was selected.   */  protected transient TreePath lastPath;  /**   * Used before starting the editing session.   */  protected transient javax.swing.Timer timer;  /**   * Row that was last passed into getTreeCellEditorComponent.   */  protected transient int lastRow;  /**   * True if the border selection color should be drawn.   */  protected Color borderSelectionColor;  /**   * Icon to use when editing.   */  protected transient Icon editingIcon;  /**   * Font to paint with, null indicates font of renderer is to be used.   */  protected Font font;    /**   * Helper field used to save the last path seen while the timer was   * running.   */    private TreePath tPath;      /**   * Constructs a DefaultTreeCellEditor object for a JTree using the    * specified renderer and a default editor. (Use this constructor    * for normal editing.)   *    * @param tree - a JTree object   * @param renderer - a DefaultTreeCellRenderer object   */  public DefaultTreeCellEditor(JTree tree, DefaultTreeCellRenderer renderer)  {    this(tree, renderer, null);  }  /**   * Constructs a DefaultTreeCellEditor  object for a JTree using the specified    * renderer and the specified editor. (Use this constructor    * for specialized editing.)   *    * @param tree - a JTree object   * @param renderer - a DefaultTreeCellRenderer object   * @param editor - a TreeCellEditor object   */  public DefaultTreeCellEditor(JTree tree, DefaultTreeCellRenderer renderer,                               TreeCellEditor editor)  {    setTree(tree);    this.renderer = renderer;        if (editor == null)      editor = createTreeCellEditor();    else      editor.addCellEditorListener(new RealEditorListener());        realEditor = editor;        lastPath = tree.getLeadSelectionPath();    tree.addTreeSelectionListener(this);    editingContainer = createContainer();    setFont(UIManager.getFont("Tree.font"));    setBorderSelectionColor(UIManager.getColor("Tree.selectionBorderColor"));    editingIcon = renderer.getIcon();  }  /**

⌨️ 快捷键说明

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