- /*
- * @(#)MetalTheme.java 1.15 00/02/02
- *
- * Copyright 1998-2000 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the proprietary information of Sun Microsystems, Inc.
- * Use is subject to license terms.
- *
- */
-
- package javax.swing.plaf.metal;
-
- import javax.swing.plaf.*;
- import javax.swing.*;
-
- /**
- * This interface acts as a generic way to describe the colors
- * used by Metal. Classes which implement this interface can
- * be used to swap the colors in a Metal application.
- *
- * @version 1.15 02/02/00
- * @author Steve Wilson
- */
-
- public abstract class MetalTheme {
-
- private static ColorUIResource white = new ColorUIResource( 255, 255, 255 );
- private static ColorUIResource black = new ColorUIResource( 0, 0, 0 );
-
- public abstract String getName();
-
- protected abstract ColorUIResource getPrimary1(); // these are blue in Metal Default Theme
- protected abstract ColorUIResource getPrimary2();
- protected abstract ColorUIResource getPrimary3();
-
- protected abstract ColorUIResource getSecondary1(); // these are gray in Metal Default Theme
- protected abstract ColorUIResource getSecondary2();
- protected abstract ColorUIResource getSecondary3();
-
- public abstract FontUIResource getControlTextFont();
- public abstract FontUIResource getSystemTextFont();
- public abstract FontUIResource getUserTextFont();
- public abstract FontUIResource getMenuTextFont();
- public abstract FontUIResource getWindowTitleFont();
- public abstract FontUIResource getSubTextFont();
-
- protected ColorUIResource getWhite() { return white; }
- protected ColorUIResource getBlack() { return black; }
-
- public ColorUIResource getFocusColor() { return getPrimary2(); }
-
- public ColorUIResource getDesktopColor() { return getPrimary2(); }
-
- public ColorUIResource getControl() { return getSecondary3(); }
- public ColorUIResource getControlShadow() { return getSecondary2(); }
- public ColorUIResource getControlDarkShadow() { return getSecondary1(); }
- public ColorUIResource getControlInfo() { return getBlack(); }
- public ColorUIResource getControlHighlight() { return getWhite(); }
- public ColorUIResource getControlDisabled() { return getSecondary2(); }
-
- public ColorUIResource getPrimaryControl() { return getPrimary3(); }
- public ColorUIResource getPrimaryControlShadow() { return getPrimary2(); }
- public ColorUIResource getPrimaryControlDarkShadow() { return getPrimary1(); }
- public ColorUIResource getPrimaryControlInfo() { return getBlack(); }
- public ColorUIResource getPrimaryControlHighlight() { return getWhite(); }
-
- public ColorUIResource getSystemTextColor() { return getPrimary1(); }
- public ColorUIResource getControlTextColor() { return getControlInfo(); }
- public ColorUIResource getInactiveControlTextColor() { return getControlDisabled(); }
- public ColorUIResource getInactiveSystemTextColor() { return getSecondary2(); }
- public ColorUIResource getUserTextColor() { return getBlack(); }
- public ColorUIResource getTextHighlightColor() { return getPrimary3(); }
- public ColorUIResource getHighlightedTextColor() { return getControlTextColor(); }
-
- public ColorUIResource getWindowBackground() { return getWhite(); }
- public ColorUIResource getWindowTitleBackground() { return getPrimary3(); }
- public ColorUIResource getWindowTitleForeground() { return getBlack(); }
- public ColorUIResource getWindowTitleInactiveBackground() { return getSecondary3(); }
- public ColorUIResource getWindowTitleInactiveForeground() { return getBlack(); }
-
- public ColorUIResource getMenuBackground() { return getSecondary3(); }
- public ColorUIResource getMenuForeground() { return getBlack(); }
- public ColorUIResource getMenuSelectedBackground() { return getPrimary2(); }
- public ColorUIResource getMenuSelectedForeground() { return getBlack(); }
- public ColorUIResource getMenuDisabledForeground() { return getSecondary2(); }
- public ColorUIResource getSeparatorBackground() { return getWhite(); }
- public ColorUIResource getSeparatorForeground() { return getPrimary1(); }
- public ColorUIResource getAcceleratorForeground() { return getPrimary1(); }
- public ColorUIResource getAcceleratorSelectedForeground() { return getBlack(); }
-
- public void addCustomEntriesToTable(UIDefaults table) {}
- }