/* * @(#)DemoMetalTheme.java 1.2 98/06/29 * * Copyright 1998 by Sun Microsystems, Inc., * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. * All rights reserved. * * This software is the confidential and proprietary information * of Sun Microsystems, Inc. ("Confidential Information"). You * shall not disclose such Confidential Information and shall use * it only in accordance with the terms of the license agreement * you entered into with Sun. */ import com.sun.java.swing.plaf.*; import com.sun.java.swing.plaf.metal.*; import com.sun.java.swing.*; import com.sun.java.swing.border.*; import java.awt.*; /** * This class describes a theme using large fonts. * It's great for giving demos of your software to a group * where people will have trouble seeing what you're doing. * * @version 1.2 06/29/98 * @author Steve Wilson */ public class DemoMetalTheme extends DefaultMetalTheme { public String getName() { return "Presentation"; } private final FontUIResource controlFont = new FontUIResource("Dialog", Font.BOLD, 18); private final FontUIResource systemFont = new FontUIResource("Dialog", Font.PLAIN, 18); private final FontUIResource userFont = new FontUIResource("SansSerif", Font.PLAIN, 18); private final FontUIResource smallFont = new FontUIResource("Dialog", Font.PLAIN, 14); public FontUIResource getControlTextFont() { return controlFont;} public FontUIResource getSystemTextFont() { return systemFont;} public FontUIResource getUserTextFont() { return userFont;} public FontUIResource getMenuTextFont() { return controlFont;} public FontUIResource getWindowTitleFont() { return controlFont;} public FontUIResource getSubTextFont() { return smallFont;} public void addCustomEntriesToTable(UIDefaults table) { super.addCustomEntriesToTable(table); final int internalFrameIconSize = 16; table.put("InternalFrameTitlePane.closeIcon", MetalIconFactory.getInternalFrameCloseIcon(internalFrameIconSize)); table.put("InternalFrameTitlePane.maximizeIcon", MetalIconFactory.getInternalFrameMaximizeIcon(internalFrameIconSize)); table.put("InternalFrameTitlePane.iconizeIcon", MetalIconFactory.getInternalFrameMinimizeIcon(internalFrameIconSize)); table.put("InternalFrameTitlePane.altMaximizeIcon", MetalIconFactory.getInternalFrameAltMaximizeIcon(internalFrameIconSize)); table.put( "ScrollBar.width", new Integer(21) ); } }