| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.swing.plaf.metal.MetalTheme
javax.swing.plaf.metal.DefaultMetalTheme
public class DefaultMetalTheme
A concrete implementation of MetalTheme providing
 the original look of the Java Look and Feel, code-named "Steel". Refer
 to MetalLookAndFeel.setCurrentTheme(javax.swing.plaf.metal.MetalTheme) for details on changing
 the default theme.
 
 All colors returned by DefaultMetalTheme are completely
 opaque.
 
DefaultMetalTheme uses bold fonts for many controls.  To make all
 controls (with the exception of the internal frame title bars and
 client decorated frame title bars) use plain fonts you can do either of
 the following:
 swing.boldMetal to
     false.  For example,
     java -Dswing.boldMetal=false MyApp.
 swing.boldMetal to
     Boolean.FALSE.  For example:
     UIManager.put("swing.boldMetal", Boolean.FALSE);
 swing.boldMetal, if set,
 takes precendence over the system property of the same name. After
 setting this defaults property you need to re-install
 MetalLookAndFeel, as well as update the UI
 of any previously created widgets. Otherwise the results are undefined.
 The following illustrates how to do this:
 
   // turn off bold fonts
   UIManager.put("swing.boldMetal", Boolean.FALSE);
   // re-install the Metal Look and Feel
   UIManager.setLookAndFeel(new MetalLookAndFeel());
   // Update the ComponentUIs for all Components. This
   // needs to be invoked for all windows.
   SwingUtilities.updateComponentTreeUI(rootComponent);
 
 
 Warning:
 Serialized objects of this class will not be compatible with
 future Swing releases. The current serialization support is
 appropriate for short term storage or RMI between applications running
 the same version of Swing.  As of 1.4, support for long term storage
 of all JavaBeansTM
 has been added to the java.beans package.
 Please see XMLEncoder.
MetalLookAndFeel, 
MetalLookAndFeel.setCurrentTheme(javax.swing.plaf.metal.MetalTheme)| Constructor Summary | |
|---|---|
| DefaultMetalTheme()Creates and returns an instance of DefaultMetalTheme. | |
| Method Summary | |
|---|---|
|  FontUIResource | getControlTextFont()Returns the control text font. | 
|  FontUIResource | getMenuTextFont()Returns the menu text font. | 
|  String | getName()Returns the name of this theme. | 
| protected  ColorUIResource | getPrimary1()Returns the primary 1 color. | 
| protected  ColorUIResource | getPrimary2()Returns the primary 2 color. | 
| protected  ColorUIResource | getPrimary3()Returns the primary 3 color. | 
| protected  ColorUIResource | getSecondary1()Returns the secondary 1 color. | 
| protected  ColorUIResource | getSecondary2()Returns the secondary 2 color. | 
| protected  ColorUIResource | getSecondary3()Returns the secondary 3 color. | 
|  FontUIResource | getSubTextFont()Returns the sub-text font. | 
|  FontUIResource | getSystemTextFont()Returns the system text font. | 
|  FontUIResource | getUserTextFont()Returns the user text font. | 
|  FontUIResource | getWindowTitleFont()Returns the window title font. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public DefaultMetalTheme()
DefaultMetalTheme.
| Method Detail | 
|---|
public String getName()
"Steel".
getName in class MetalThemeprotected ColorUIResource getPrimary1()
getPrimary1 in class MetalThemeprotected ColorUIResource getPrimary2()
getPrimary2 in class MetalThemeprotected ColorUIResource getPrimary3()
getPrimary3 in class MetalThemeprotected ColorUIResource getSecondary1()
getSecondary1 in class MetalThemeprotected ColorUIResource getSecondary2()
getSecondary2 in class MetalThemeprotected ColorUIResource getSecondary3()
getSecondary3 in class MetalThemepublic FontUIResource getControlTextFont()
getControlTextFont in class MetalThemepublic FontUIResource getSystemTextFont()
getSystemTextFont in class MetalThemepublic FontUIResource getUserTextFont()
getUserTextFont in class MetalThemepublic FontUIResource getMenuTextFont()
getMenuTextFont in class MetalThemepublic FontUIResource getWindowTitleFont()
getWindowTitleFont in class MetalThemepublic FontUIResource getSubTextFont()
getSubTextFont in class MetalTheme| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.