home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / jfc.bin / BasicVisibleTreeNode.java < prev    next >
Text File  |  1998-02-26  |  4KB  |  122 lines

  1. /*
  2.  * @(#)BasicVisibleTreeNode.java    1.6 98/02/02
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.swing.plaf.basic;
  22.  
  23. import com.sun.java.swing.*;
  24. import com.sun.java.swing.tree.*;
  25. import com.sun.java.swing.event.*;
  26. import java.awt.*;
  27. import java.awt.event.*;
  28. import java.beans.*;
  29. import java.util.*;
  30. import com.sun.java.swing.plaf.*;
  31.  
  32. /**
  33.  * BasicVisibleTreeNode extends VisibleTreeNode to stop editing
  34.  * whenever nodes are added/removed and to redisplay when collapsing/
  35.  * expanding the node.
  36.  * <p>
  37.  * Warning: serialized objects of this class will not be compatible with
  38.  * future swing releases.  The current serialization support is appropriate
  39.  * for short term storage or RMI between Swing1.0 applications.  It will
  40.  * not be possible to load serialized Swing1.0 objects with future releases
  41.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  42.  * baseline for the serialized form of Swing objects.
  43.  *
  44.  * @version 1.6 02/02/98
  45.  * @author Rob Davis
  46.  * @author Ray Ryan
  47.  * @author Scott Violet
  48.  */
  49. public class BasicVisibleTreeNode extends VisibleTreeNode {
  50.     protected BasicVisibleTreeNode(AbstractTreeUI treeUI, Object value,
  51.                    int index) {
  52.     super(treeUI, value, index);
  53.     }
  54.  
  55.     /**
  56.      * Repaints the receiver by messaging the TreeUI with repaintNode.
  57.      */
  58.     public void repaint() {
  59.     ((BasicTreeUI)treeUI).repaintNode(this);
  60.     }
  61.  
  62.     /**
  63.      * Messages the BasicTreeUI the receiver was crated for to stop
  64.      * editing.
  65.      */
  66.     public void cancelEditing() {
  67.     ((BasicTreeUI)treeUI).completeEditing(false, true, false);
  68.     }
  69.  
  70.     /**
  71.      * If the node is visible, it is repainted.
  72.      */
  73.     public void modelChildCountChanged() {
  74.     if(getRow() != -1)
  75.         repaint();
  76.     }
  77.  
  78.     /**
  79.      * Stops editing, repaints the node if only 1 child and messages
  80.      *  super.
  81.      */
  82.     public void insert(MutableTreeNode newChild, int childIndex) {
  83.     cancelEditing();
  84.     super.insert(newChild, childIndex);
  85.     if(getChildCount() == 1 && getRow() != -1)
  86.         repaint();
  87.     }
  88.  
  89.     /**
  90.      * Stops editing, repaints if no children, and messages super.
  91.      */
  92.     public void remove(int childIndex) {
  93.     cancelEditing();
  94.     super.remove(childIndex);
  95.     if(getModelChildCount() == 0 && getRow() != -1)
  96.         repaint();
  97.     }
  98.  
  99.     /**
  100.      * Stops editing messages super and repaints this node if
  101.      * there are no children.
  102.      */
  103.     protected void collapse(boolean adjustTree) {
  104.     cancelEditing();
  105.     super.collapse(adjustTree);
  106.     if(adjustTree && (children == null || children.size() == 0))
  107.         repaint();
  108.     }
  109.  
  110.     /**
  111.      * Stops editing messages super and repaints this node if
  112.      * there are no children.
  113.      */
  114.     protected void expand(boolean adjustTree) {
  115.     cancelEditing();
  116.     super.expand(adjustTree);
  117.     if(adjustTree && (children == null || children.size() == 0))
  118.         repaint();
  119.     }
  120.  
  121. }
  122.