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

  1. /*
  2.  * @(#)MotifSeparatorUI.java    1.9 98/02/06
  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.motif;
  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 java.io.Serializable;
  31.  
  32. /**
  33.  * A Windows L&F implementation of SeparatorUI.  This implementation 
  34.  * is a "combined" view/controller.
  35.  *
  36.  * @version 1.9 02/06/98
  37.  * @author Georges Saab
  38.  * @author David Karlton
  39.  */
  40.  
  41. public class MotifSeparatorUI extends SeparatorUI implements Serializable
  42. {
  43.     public static ComponentUI createUI(JComponent x) {
  44.     return new MotifSeparatorUI();
  45.     }
  46.     public void installUI(JComponent c) {
  47.     }
  48.     public void uninstallUI(JComponent c) {
  49.     }
  50.  
  51.     public void paint(Graphics g, JComponent c) {
  52.     Dimension s = c.getSize();
  53.     // Until drawGroove exists
  54.     MotifGraphicsUtils.drawGroove(g, 0, 0, s.width, s.height);
  55.     }
  56.  
  57.     public Dimension getPreferredSize(JComponent c) { 
  58.     return new Dimension(0, 2);
  59.     }
  60.     public Dimension getMinimumSize(JComponent c) { return null;}
  61.     public Dimension getMaximumSize(JComponent c) { return null;}
  62.     public Insets getInsets(JComponent c) { return null;}
  63. }
  64.  
  65.  
  66.  
  67.  
  68.