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

  1. /*
  2.  * @(#)MacLabelUI.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.mac;
  22.  
  23. import java.awt.*;
  24. import com.sun.java.swing.*;
  25. import com.sun.java.swing.plaf.basic.BasicLabelUI;
  26. import com.sun.java.swing.plaf.basic.BasicGraphicsUtils;
  27. import com.sun.java.swing.plaf.ComponentUI;
  28.  
  29. /**
  30.  * A Mac L&F implementation of LabelUI.
  31.  * This merely sets up new default values in MacLookAndFeel.
  32.  * <p>
  33.  * Warning: serialized objects of this class will not be compatible with
  34.  * future swing releases.  The current serialization support is appropriate
  35.  * for short term storage or RMI between Swing1.0 applications.  It will
  36.  * not be possible to load serialized Swing1.0 objects with future releases
  37.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  38.  * baseline for the serialized form of Swing objects.
  39.  *
  40.  * @version @(#)MacLabelUI.java    1.0 11/24/97
  41.  * @author Symantec
  42.  */
  43.  
  44. public class MacLabelUI extends BasicLabelUI 
  45. {
  46.     protected ActivationHelper activationHelper;
  47.     protected ChangeListener changeListener;
  48.     protected boolean isActive = true;
  49.  
  50.     public static ComponentUI createUI(JComponent c)
  51.     {
  52.         return new MacLabelUI();
  53.     }
  54.  
  55.     public boolean isActive()
  56.     {
  57.         return isActive;
  58.     }
  59.  
  60.     public void installUI(JComponent c)
  61.     { 
  62.          super.installUI(c);
  63.          
  64.         activationHelper    = new ActivationHelper(c);
  65.         changeListener        = new ChangeListener();
  66.         activationHelper.addPropertyChangeListener(changeListener);
  67.     }
  68.  
  69.     public void uninstallUI(JComponent c)
  70.     {
  71.         super.uninstallUI(c);
  72.         
  73.         activationHelper.removePropertyChangeListener(changeListener);
  74.         activationHelper = null;
  75.         changeListener = null;
  76.     }
  77.     
  78.     /**
  79.      * Paint the label text in the foreground color, if the label
  80.      * is opaque then paint the entire background with the background
  81.      * color.  The Label text is drawn by paintEnabledText() or
  82.      * paintDisabledText().  The locations of the label parts are computed
  83.      * by layoutCL.
  84.      * 
  85.      * @see #paintEnabledText
  86.      * @see #paintDisabledText
  87.      * @see #layoutCL
  88.      */
  89.     public void paint(Graphics g, JComponent c) 
  90.     {
  91.         JLabel label = (JLabel)c;
  92.         String text = label.getText();
  93.         Icon icon = (label.isEnabled()) ? label.getIcon() : label.getDisabledIcon();
  94.     
  95.         if ((icon == null) && (text == null))
  96.         {
  97.             return;
  98.         }
  99.     
  100.         FontMetrics fm = g.getFontMetrics();
  101.         Rectangle iconR = new Rectangle();
  102.         Rectangle textR = new Rectangle();
  103.         Rectangle viewR = new Rectangle(c.getSize());
  104.         Insets viewInsets = c.getInsets();
  105.     
  106.         viewR.x = viewInsets.left;
  107.         viewR.y = viewInsets.top;
  108.         viewR.width -= (viewInsets.left + viewInsets.right);
  109.         viewR.height -= (viewInsets.top + viewInsets.bottom);
  110.     
  111.         String clippedText = layoutCL(label, fm, text, icon, viewR, iconR, textR);
  112.     
  113.         if (icon != null)
  114.         {
  115.             icon.paintIcon(c, g, iconR.x, iconR.y);
  116.         }
  117.     
  118.         if (text != null)
  119.         {
  120.             int textX = textR.x;
  121.             int textY = textR.y + fm.getAscent();
  122.     
  123.             if (label.isEnabled() && isActive)
  124.             {
  125.                 paintEnabledText(label, g, clippedText, textX, textY);
  126.             }
  127.             else
  128.             {
  129.                 paintDisabledText(label, g, clippedText, textX, textY);
  130.             }
  131.         }
  132.     }
  133.  
  134.     /**
  135.      * Paint clippedText at textX, textY with the labels foreground color.
  136.      * 
  137.      * @see #paint
  138.      * @see #paintDisabledText
  139.      */
  140.     protected void paintEnabledText(JLabel l, Graphics g, String s, int textX, int textY)
  141.     {
  142.         g.setColor(l.getForeground());
  143.         BasicGraphicsUtils.drawString(g, s, 0, textX, textY);
  144.     }
  145.  
  146.     /**
  147.      * Paint clippedText at textX, textY with background.lighter() and then 
  148.      * shifted down and to the right by one pixel with background.darker().
  149.      * 
  150.      * @see #paint
  151.      * @see #paintEnabledText
  152.      */
  153.     protected void paintDisabledText(JLabel l, Graphics g, String s, int textX, int textY)
  154.     {
  155.         g.setColor(UIManager.getColor("Control.disabledForeground"));
  156.         BasicGraphicsUtils.drawString(g, s, 0, textX, textY);
  157.     }
  158.  
  159.     class ChangeListener implements java.beans.PropertyChangeListener
  160.     {
  161.         public void propertyChange(java.beans.PropertyChangeEvent evt)
  162.         {
  163.             if(evt.getPropertyName().equals("activated"))
  164.             {
  165.                 boolean oldActive = isActive;
  166.                 isActive = ((Boolean) evt.getNewValue()).booleanValue();
  167.                 if(isActive != oldActive)
  168.                 {
  169.                     Object obj = evt.getSource();
  170.                     if(obj instanceof ActivationHelper)
  171.                     {
  172.                         ((ActivationHelper)obj).getComponent().repaint();
  173.                     }
  174.                 }
  175.             }
  176.         }
  177.     }
  178. }
  179.