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

  1. /*
  2.  * @(#)MetalSeparatorUI.java    1.5 98/02/02
  3.  * 
  4.  * Copyright (c) 1998 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.metal;
  22.  
  23. import com.sun.java.swing.*;
  24. import java.awt.Color;
  25. import java.awt.Dimension;
  26. import java.awt.Graphics;
  27. import java.awt.Insets;
  28. import java.awt.Rectangle;
  29. import com.sun.java.swing.plaf.*;
  30. import com.sun.java.swing.plaf.basic.BasicSeparatorUI;
  31.  
  32.  
  33. /**
  34.  * A Metal L&F implementation of SeparatorUI.  This implementation 
  35.  * is a "combined" view/controller.
  36.  *
  37.  * @version 1.5 02/02/98
  38.  * @author Jeff Shapiro
  39.  */
  40.  
  41. public class MetalSeparatorUI extends BasicSeparatorUI
  42. {
  43.     public static ComponentUI createUI( JComponent c )
  44.     {
  45.     return new MetalSeparatorUI();
  46.     }
  47.  
  48.     protected void installDefaults( JComponent c )
  49.     {
  50.         LookAndFeel.installColors( c, "Separator.background", "Separator.foreground" );
  51.     }
  52.  
  53.     public void paint( Graphics g, JComponent c )
  54.     {
  55.     Dimension s = c.getSize();
  56.  
  57.         g.setColor( c.getForeground() );
  58.     g.drawLine( 0, 1, s.width, 1 );
  59.  
  60.         g.setColor( c.getBackground() );
  61.     g.drawLine( 0, 2, s.width, 2 );
  62.     g.drawLine( 0, 0, 0, 0 );
  63.     g.drawLine( 0, 3, 0, 3 );
  64.     }
  65.  
  66.     public Dimension getPreferredSize( JComponent c )
  67.     { 
  68.     return new Dimension( 0, 4 );
  69.     }
  70. }
  71.  
  72.  
  73.  
  74.  
  75.