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

  1. /*
  2.  * @(#)BasicRadioButtonUI.java    1.43 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 java.awt.*;
  24. import java.awt.event.*;
  25. import com.sun.java.swing.*;
  26. import com.sun.java.swing.border.*;
  27. import com.sun.java.swing.plaf.*;
  28. import java.io.Serializable;
  29.  
  30.  
  31. /**
  32.  * RadioButtonUI implementation for BasicRadioButtonUI
  33.  * <p>
  34.  * Warning: serialized objects of this class will not be compatible with
  35.  * future swing releases.  The current serialization support is appropriate
  36.  * for short term storage or RMI between Swing1.0 applications.  It will
  37.  * not be possible to load serialized Swing1.0 objects with future releases
  38.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  39.  * baseline for the serialized form of Swing objects.
  40.  *
  41.  * @version 1.43 02/02/98
  42.  * @author Jeff Dinkins
  43.  */
  44. public class BasicRadioButtonUI extends BasicToggleButtonUI 
  45.     implements Serializable
  46. {
  47.     protected final static Insets defaultMargin = new Insets(2,2,2,2);
  48.  
  49.     protected Icon icon = null;
  50.  
  51.     public BasicRadioButtonUI() {
  52.     }
  53.  
  54.     protected static ToggleButtonUI radioButtonUI;
  55.  
  56.     public static ComponentUI createUI(JComponent b) {
  57.         if(radioButtonUI == null) {
  58.             radioButtonUI = new BasicRadioButtonUI();
  59.         }
  60.         return radioButtonUI;
  61.     }
  62.  
  63.  
  64.     /************************** The View *************************/
  65.  
  66.     ButtonModel model;
  67.  
  68.     protected void installDefaults(JComponent c){
  69.     super.installDefaults(c);
  70.     icon = createIcon();
  71.     LookAndFeel.installColorsAndFont(c,
  72.                      "RadioButton.background",
  73.                      "RadioButton.foreground",
  74.                      "RadioButton.font");
  75.         // LookAndFeel.installBorder(c,"RadioButton.border"); 
  76.     }   
  77.  
  78.  
  79.     /**
  80.      * paint the radio button
  81.      */
  82.     public synchronized void paint(Graphics g, JComponent c) {
  83.  
  84.     AbstractButton b = (AbstractButton) c;
  85.     model = b.getModel();
  86.     
  87.     Dimension size = c.getSize();
  88.  
  89.     int w = size.width;
  90.     int h = size.height;
  91.  
  92.     Font f = c.getFont();
  93.     g.setFont(f);
  94.     FontMetrics fm = g.getFontMetrics();
  95.  
  96.     Rectangle viewRect = new Rectangle(size);
  97.         Rectangle iconRect = new Rectangle();
  98.         Rectangle textRect = new Rectangle();
  99.  
  100.     Icon altIcon = b.getIcon();
  101.     Icon selectedIcon = null;
  102.     Icon disabledIcon = null;
  103.     
  104.         String text = SwingUtilities.layoutCompoundLabel(
  105.             fm, b.getText(), altIcon != null ? altIcon : icon,
  106.             b.getVerticalAlignment(), b.getHorizontalAlignment(),
  107.             b.getVerticalTextPosition(), b.getHorizontalTextPosition(),
  108.             viewRect, iconRect, textRect, getDefaultTextIconGap(b)
  109.         );
  110.     
  111.         // fill background
  112.     if(c.isOpaque()) {
  113.         g.setColor(b.getBackground());
  114.         g.fillRect(0,0, size.width, size.height); 
  115.     }
  116.  
  117.     
  118.     // Paint the radio button
  119.         if(altIcon != null) { 
  120.  
  121.             if(!model.isEnabled()) {
  122.                 altIcon = b.getDisabledIcon();
  123.             } else if(model.isPressed() && model.isArmed()) {
  124.                 altIcon = b.getPressedIcon();
  125.                 if(altIcon == null) {
  126.                     // Use selected icon
  127.                     altIcon = b.getSelectedIcon();
  128.                 } 
  129.             } else if(model.isSelected()) {
  130.                 altIcon = b.getSelectedIcon();
  131.         } else if(b.isRolloverEnabled() && model.isRollover()) {
  132.                 altIcon = (Icon) b.getRolloverIcon();
  133.             } 
  134.           
  135.         if(altIcon == null) {
  136.         altIcon = b.getIcon();
  137.         }
  138.            
  139.         altIcon.paintIcon(c, g, iconRect.x, iconRect.y);
  140.  
  141.         } else {
  142.         icon.paintIcon(c, g, iconRect.x, iconRect.y);
  143.     }
  144.  
  145.  
  146.     // Draw the Text
  147.     if(text != null) {
  148.         if(model.isEnabled()) {
  149.         // *** paint the text normally
  150.         g.setColor(b.getForeground());
  151.                 BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
  152.                                               textRect.x, textRect.y + fm.getAscent());
  153.         } else {
  154.         // *** paint the text disabled
  155.         g.setColor(b.getBackground().brighter());
  156.                 BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
  157.                                               textRect.x + 1, textRect.y + fm.getAscent() + 1);
  158.         g.setColor(b.getBackground().darker());
  159.                 BasicGraphicsUtils.drawString(g,text,model.getMnemonic(),
  160.                                               textRect.x, textRect.y + fm.getAscent());
  161.         }
  162.             if(b.hasFocus() && b.isFocusPainted() && textRect.width > 0 && textRect.height > 0 ) {
  163.           paintFocus(g,textRect,size);
  164.  
  165.             }
  166.     }
  167.     }
  168.  
  169.     protected void paintFocus(Graphics g, Rectangle textRect, Dimension size){
  170.     }
  171.  
  172.     /**
  173.      * Creates the radio dot
  174.      */
  175.     public Icon createIcon() {
  176.     return UIManager.getIcon("RadioButton.icon");
  177.     }
  178.  
  179.  
  180.     /**
  181.      * The preferred size of the radio button
  182.      */
  183.     public Dimension getPreferredSize(JComponent c) {
  184.  
  185.     if(c.getComponentCount() > 0) {
  186.         return null;
  187.     }
  188.  
  189.         AbstractButton b = (AbstractButton) c;
  190.  
  191.         String text = b.getText();
  192.  
  193.         Icon radioIcon = (Icon) b.getIcon();
  194.     if(radioIcon == null) {
  195.         radioIcon = icon;
  196.     }
  197.  
  198.         int width = 0;
  199.         int height = 0;
  200.  
  201.         Font font = b.getFont();
  202.         FontMetrics fm = b.getToolkit().getFontMetrics(font);
  203.       
  204.         Rectangle iconR = new Rectangle();
  205.         Rectangle textR = new Rectangle();
  206.         Rectangle viewR = new Rectangle(Short.MAX_VALUE, Short.MAX_VALUE);
  207.  
  208.         SwingUtilities.layoutCompoundLabel(
  209.         fm, text, radioIcon,
  210.         b.getVerticalAlignment(), b.getHorizontalAlignment(),
  211.         b.getVerticalTextPosition(), b.getHorizontalTextPosition(),
  212.         viewR, iconR, textR, text == null ? 0 : getDefaultTextIconGap(b)
  213.     );
  214.  
  215.         // find the union of the icon and text rects
  216.         Rectangle r = iconR.union(textR);
  217.  
  218.     Insets insets = b.getInsets();
  219.     r.width += insets.left + insets.right;
  220.     r.height += insets.top + insets.bottom;
  221.  
  222.         return r.getSize();
  223.     }
  224.  
  225.     public Insets getDefaultMargin(AbstractButton b) {
  226.     return defaultMargin;
  227.     }
  228.  
  229.     
  230. }
  231.