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

📄 defaulttreecelleditor.java

📁 gcc的组建
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* 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.Insets;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.UIDefaults;import javax.swing.UIManager;import javax.swing.border.Border;import javax.swing.event.CellEditorListener;import javax.swing.event.EventListenerList;import javax.swing.event.TreeSelectionEvent;import javax.swing.event.TreeSelectionListener;/** * DefaultTreeCellEditor * @author Andrew Selkirk */public class DefaultTreeCellEditor  implements ActionListener, TreeCellEditor, TreeSelectionListener{  /**   * EditorContainer   */  public class EditorContainer extends Container  {    /**     * 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.    }    /**     * Returns the preferred size for the Container.     *      * @return Dimension of EditorContainer     */    public Dimension getPreferredSize()    {      Dimension containerSize = super.getPreferredSize();      containerSize.width += DefaultTreeCellEditor.this.offset;      return containerSize;    }    /**     * 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)    {      Rectangle tr = tree.getPathBounds(lastPath);      if (tr != null)        {          Insets i = ((DefaultTextField) editingComponent).getBorder()                                                  .getBorderInsets(this);          int textIconGap = 3;          tr.x -= i.left;                    // paints icon          if (editingIcon != null)            {              editingIcon.paintIcon(this, g, tr.x - editingIcon.                                              getIconWidth()/2, tr.y + i.top + i.bottom);              tr.x += editingIcon.getIconWidth()/2 + textIconGap;            }                    tr.width += offset;                    // paint background          g.translate(tr.x, tr.y);          editingComponent.setSize(new Dimension(tr.width, tr.height));          editingComponent.paint(g);          g.translate(-tr.x, -tr.y);        }      super.paint(g);    }    /**     * Lays out this Container. If editing, the editor will be placed at offset     * in the x direction and 0 for y.     */    public void doLayout()    {      if (DefaultTreeCellEditor.this.tree.isEditing())        setLocation(offset, 0);      super.doLayout();    }  }  /**   * DefaultTextField   */  public class DefaultTextField extends JTextField  {    /**     * border     */    protected Border border;    /**     * Creates a <code>DefaultTextField</code> object.     *     * @param border the border to use     */    public DefaultTextField(Border border)    {      this.border = border;    }    /**     * 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();    }  }  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();    realEditor = editor;        lastPath = tree.getLeadSelectionPath();    tree.addTreeSelectionListener(this);    editingContainer = createContainer();    setFont(UIManager.getFont("Tree.font"));    setBorderSelectionColor(UIManager.getColor("Tree.selectionBorderColor"));    editingIcon = renderer.getIcon();    timer = new javax.swing.Timer(1200, this);  }  /**   * Configures the editing component whenever it is null.   *    * @param tree the tree to configure to component for.   * @param renderer the renderer used to set up the nodes   * @param editor the editor used    */  private void configureEditingComponent(JTree tree,                                         DefaultTreeCellRenderer renderer,                                         TreeCellEditor editor)  {        if (tree != null && lastPath != null)      {        Object val = lastPath.getLastPathComponent();        boolean isLeaf = tree.getModel().isLeaf(val);        boolean expanded = tree.isExpanded(lastPath);        determineOffset(tree, val, true, expanded, isLeaf, lastRow);        // set up icon        if (isLeaf)          renderer.setIcon(renderer.getLeafIcon());        else if (expanded)          renderer.setIcon(renderer.getOpenIcon());        else

⌨️ 快捷键说明

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