home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / ContrastMetalTheme.java < prev    next >
Text File  |  1998-05-08  |  3KB  |  81 lines

  1. /*
  2.  * @(#)ContrastMetalTheme.java    1.7 98/02/05
  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. import com.sun.java.swing.plaf.*;
  22. import com.sun.java.swing.plaf.metal.*;
  23. import com.sun.java.swing.*;
  24. import com.sun.java.swing.border.*;
  25. import java.awt.*;
  26.  
  27. /**
  28.  * This class describes a higher-contrast Metal Theme.
  29.  *
  30.  * @version 1.7 02/05/98
  31.  * @author Michael C. Albers
  32.  */
  33.  
  34. public class ContrastMetalTheme extends DefaultMetalTheme {
  35.  
  36.     public String getName() { return "Contrast"; }
  37.  
  38.     private final ColorUIResource primary1 = new ColorUIResource(0, 0, 0);
  39.     private final ColorUIResource primary2 = new ColorUIResource(204, 204, 204);
  40.     private final ColorUIResource primary3 = new ColorUIResource(255, 255, 255);
  41.     private final ColorUIResource primaryHighlight = new ColorUIResource(102,102,102);
  42.  
  43.     private final ColorUIResource secondary2 = new ColorUIResource(204, 204, 204);
  44.     private final ColorUIResource secondary3 = new ColorUIResource(255, 255, 255);
  45.     private final ColorUIResource controlHighlight = new ColorUIResource(102,102,102);
  46.  
  47.     protected ColorUIResource getPrimary1() { return primary1; } 
  48.     protected ColorUIResource getPrimary2() { return primary2; }
  49.     protected ColorUIResource getPrimary3() { return primary3; }
  50.     public ColorUIResource getPrimaryControlHighlight() { return primaryHighlight;}
  51.  
  52.     protected ColorUIResource getSecondary2() { return secondary2; }
  53.     protected ColorUIResource getSecondary3() { return secondary3; }
  54.     public ColorUIResource getControlHighlight() { return super.getSecondary3(); }
  55.  
  56.     public ColorUIResource getFocusColor() { return getBlack(); }
  57.  
  58.     public ColorUIResource getTextHighlightColor() { return getBlack(); }
  59.     public ColorUIResource getHighlightedTextColor() { return getWhite(); }
  60.   
  61.     public ColorUIResource getMenuSelectedBackground() { return getBlack(); }
  62.     public ColorUIResource getMenuSelectedForeground() { return getWhite(); }
  63.     public ColorUIResource getAcceleratorForeground() { return getBlack(); }
  64.     public ColorUIResource getAcceleratorSelectedForeground() { return getWhite(); }
  65.  
  66.  
  67.     public void addCustomEntriesToTable(UIDefaults table) {
  68.  
  69.         Border blackLineBorder = new BorderUIResource(new LineBorder( getBlack() ));
  70.         Border whiteLineBorder = new BorderUIResource(new LineBorder( getWhite() ));
  71.  
  72.         table.put( "ToolTip.border", blackLineBorder);
  73.     table.put( "TitledBorder.border", blackLineBorder);
  74.         table.put( "Table.focusCellHighlightBorder", whiteLineBorder);
  75.         table.put( "Table.focusCellForeground", getWhite());
  76.  
  77.  
  78.     }
  79.  
  80. }
  81.