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

  1. /*
  2.  * @(#)OrganicToggleButtonUI.java    1.5 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.organic;
  22.  
  23. import java.awt.*;
  24. import java.awt.event.*;
  25. import com.sun.java.swing.plaf.basic.BasicToggleButtonUI;
  26.  
  27. import com.sun.java.swing.*;
  28. import com.sun.java.swing.border.*;
  29. import com.sun.java.swing.plaf.*;
  30. import com.sun.java.swing.*;
  31.  
  32. import java.io.Serializable;
  33.  
  34. /**
  35.  * OrganicToggleButton implementation
  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.5 02/02/98
  45.  * @author Tom Santos
  46.  */
  47. public class OrganicToggleButtonUI extends BasicToggleButtonUI {
  48.   // Colors
  49.  
  50.  
  51.     private static Color selectedColor;
  52.     private static Color disabledTextColor;
  53.     private static Color focusColor;
  54.     private static Color focusHighlightColor;
  55.  
  56.     private static final int defaultTextIconGap = 4;
  57.     private final static Insets defaultMargin = new Insets(2,14,2,14);
  58.  
  59.     private static final OrganicToggleButtonUI organicToggleButtonUI = new OrganicToggleButtonUI();
  60.  
  61.     public static ComponentUI createUI(JComponent b) {
  62.         return organicToggleButtonUI;
  63.     }
  64.  
  65.     public void installUI(JComponent c) {
  66.         super.installUI(c);
  67.     selectedColor = UIManager.getColor("ToggleButton.selected");
  68.     disabledTextColor = UIManager.getColor("ToggleButton.disabledText");
  69.     focusColor = UIManager.getColor("ToggleButton.focus");
  70.     focusHighlightColor = UIManager.getColor("ToggleButton.focusHighlight");
  71.     }
  72.  
  73.     public void paint(Graphics g, JComponent c) {
  74.         AbstractButton b = (AbstractButton) c;
  75.         JToggleButton.ToggleButtonModel model = (JToggleButton.ToggleButtonModel)b.getModel();
  76.  
  77.         Dimension size = b.getSize();
  78.         FontMetrics fm = g.getFontMetrics();
  79.  
  80.     Insets i = c.getInsets();
  81.  
  82.         Rectangle viewRect = new Rectangle(size);
  83.  
  84.     viewRect.x += i.left;
  85.     viewRect.y += i.top;
  86.     viewRect.width -= (i.right + viewRect.x);
  87.     viewRect.height -= (i.bottom + viewRect.y);
  88.  
  89.         Rectangle iconRect = new Rectangle();
  90.         Rectangle textRect = new Rectangle();
  91.  
  92.     Font f = c.getFont();
  93.     g.setFont(f);
  94.  
  95.     // layout the text and icon
  96.         String text = SwingUtilities.layoutCompoundLabel(
  97.         fm, b.getText(), b.getIcon(),
  98.         b.getVerticalAlignment(), b.getHorizontalAlignment(),
  99.         b.getVerticalTextPosition(), b.getHorizontalTextPosition(),
  100.         viewRect, iconRect, textRect, b.getText() == null ? 0 : defaultTextIconGap
  101.     );
  102.  
  103.         // Draw background?
  104.         if ( model.isArmed() && model.isPressed() ) {
  105.         if ( model.isSelected() ) {
  106.             g.setColor( c.getBackground() );
  107.         }
  108.         else {
  109.             g.setColor( selectedColor );
  110.         }
  111.         g.fillRect( 2, 2, size.width-4, size.height-4 );
  112.     }
  113.     else if ( model.isSelected() ) {
  114.         g.setColor( selectedColor );
  115.         g.fillRect( 2, 2, size.width-4, size.height-4 );
  116.     }
  117.     else {
  118.         g.setColor(b.getBackground());
  119.         if(c.isOpaque()) {
  120.             g.fillRect(0,0, size.width, size.height);
  121.         }
  122.     }
  123.  
  124.     // Paint the Icon
  125.     Icon icon = null;
  126.         if(b.getIcon() != null) { 
  127.  
  128.             if(!model.isEnabled()) {
  129.                 icon = (Icon) b.getDisabledIcon();
  130.             } else if(model.isPressed() && model.isArmed()) {
  131.                 icon = (Icon) b.getPressedIcon();
  132.                 if(icon == null) {
  133.                     // Use selected icon
  134.                     icon = (Icon) b.getSelectedIcon();
  135.                 } 
  136.             } else if(model.isSelected()) {
  137.                 icon = (Icon) b.getSelectedIcon();
  138.         } else if(b.isRolloverEnabled() && model.isRollover()) {
  139.                 icon = (Icon) b.getRolloverIcon();
  140.             } 
  141.           
  142.         if(icon == null) {
  143.         icon = (Icon) b.getIcon();
  144.         }
  145.            
  146.         icon.paintIcon(c, g, iconRect.x, iconRect.y);
  147.         }
  148.  
  149.     int shift_offset = 0;
  150.  
  151.     // Draw the Text
  152.         if(text != null && !text.equals("")) {
  153.             if(model.isEnabled()) {
  154.                 g.setColor( c.getForeground() );
  155.             }
  156.         else {
  157.             g.setColor( disabledTextColor );
  158.             }
  159.  
  160.         if ( model.isSelected() || (model.isPressed() && model.isArmed()) ) {
  161.             --textRect.x;
  162.         shift_offset = 1;
  163.         }
  164.  
  165.         OrganicUtilities.drawString(g,text, model.getMnemonic(),
  166.                     textRect.x,
  167.                     textRect.y + fm.getAscent());
  168.         }
  169.       
  170.     // draw the dashed focus line.
  171.     boolean isIcon = b.getIcon() != null;
  172.     if (b.isFocusPainted() && b.hasFocus()) {
  173.         // Draw each dash of the line pixel by pixel.
  174.         // The performance of this is surely poor -- Be sure
  175.         // to rewrite when 2d graphics package is ready.
  176.         Rectangle focusRect = new Rectangle();
  177.  
  178.         // If there is text
  179.         if ( text != null & !text.equals( "" ) ) {
  180.             if ( !isIcon ) {
  181.           focusRect.setBounds( textRect );
  182.         }
  183.         else {
  184.             focusRect.setBounds( iconRect.union( textRect ) );
  185.         }
  186.         }
  187.         // If there is an icon and no text
  188.         else if ( isIcon ) {
  189.             focusRect.setBounds( iconRect );
  190.         }
  191.  
  192.         g.setColor(focusHighlightColor);
  193.         g.drawRect((focusRect.x-1) - shift_offset, (focusRect.y-1) - shift_offset,
  194.                focusRect.width+2, focusRect.height+2 );
  195.         g.setColor(focusColor);
  196.         OrganicUtilities.drawDashedRect(g, (focusRect.x-1) - shift_offset, (focusRect.y-1) - shift_offset,
  197.                     focusRect.width+3, focusRect.height+3 );
  198.     }
  199.     }
  200.  
  201.     /**
  202.      * insets and margin
  203.      */
  204.  
  205.     public Insets getDefaultMargin(AbstractButton b) {
  206.     return defaultMargin;
  207.     }
  208.  
  209.   /**
  210.    * Button border.
  211.    * <p>
  212.    * Warning: serialized objects of this class will not be compatible with
  213.    * future swing releases.  The current serialization support is appropriate
  214.    * for short term storage or RMI between Swing1.0 applications.  It will
  215.    * not be possible to load serialized Swing1.0 objects with future releases
  216.    * of Swing.  The JDK1.2 release of Swing will be the compatibility
  217.    * baseline for the serialized form of Swing objects.
  218.    */
  219.   static class OrganicToggleButtonBorder extends OrganicButtonBorder {
  220.       boolean isSelected = false;
  221.  
  222.       protected int getDefaultBorderWidth() { return 0; }
  223.  
  224.       protected Color getTopLeftColor() {
  225.         return isSelected ? super.getPressedTopLeftColor() : super.getTopLeftColor();
  226.       }
  227.  
  228.       protected Color getBottomRightColor() {
  229.       return isSelected ? super.getPressedBottomRightColor() : super.getBottomRightColor();
  230.       }
  231.  
  232.       public void paintBorder(Component c, Graphics g, int x, int y, int w, int h) {
  233.       isSelected = ((JToggleButton.ToggleButtonModel)(((AbstractButton)c).getModel())).isSelected();
  234.       super.paintBorder( c, g, x, y, w, h );
  235.       }
  236.   }
  237. }
  238.