Class DefaultMetalTheme
java.lang.Object
javax.swing.plaf.metal.MetalTheme
javax.swing.plaf.metal.DefaultMetalTheme
- Direct Known Subclasses:
OceanTheme
A concrete implementation of
MetalTheme
providing
the original look of the Java Look and Feel, code-named "Steel". Refer
to MetalLookAndFeel.setCurrentTheme(MetalTheme)
for details on changing
the default theme.
All colors returned by DefaultMetalTheme
are completely
opaque.
Font Style
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:
- Set the system property
swing.boldMetal
tofalse
. For example,java -Dswing.boldMetal=false MyApp
. - Set the defaults property
swing.boldMetal
toBoolean.FALSE
. For example:UIManager.put("swing.boldMetal", Boolean.FALSE);
swing.boldMetal
, if set,
takes precedence 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 JavaBeans
has been added to the java.beans
package.
Please see XMLEncoder
.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the control text font.Returns the menu text font.getName()
Returns the name of this theme.protected ColorUIResource
Returns the primary 1 color.protected ColorUIResource
Returns the primary 2 color.protected ColorUIResource
Returns the primary 3 color.protected ColorUIResource
Returns the secondary 1 color.protected ColorUIResource
Returns the secondary 2 color.protected ColorUIResource
Returns the secondary 3 color.Returns the sub-text font.Returns the system text font.Returns the user text font.Returns the window title font.Methods declared in class MetalTheme
addCustomEntriesToTable, getAcceleratorForeground, getAcceleratorSelectedForeground, getBlack, getControl, getControlDarkShadow, getControlDisabled, getControlHighlight, getControlInfo, getControlShadow, getControlTextColor, getDesktopColor, getFocusColor, getHighlightedTextColor, getInactiveControlTextColor, getInactiveSystemTextColor, getMenuBackground, getMenuDisabledForeground, getMenuForeground, getMenuSelectedBackground, getMenuSelectedForeground, getPrimaryControl, getPrimaryControlDarkShadow, getPrimaryControlHighlight, getPrimaryControlInfo, getPrimaryControlShadow, getSeparatorBackground, getSeparatorForeground, getSystemTextColor, getTextHighlightColor, getUserTextColor, getWhite, getWindowBackground, getWindowTitleBackground, getWindowTitleForeground, getWindowTitleInactiveBackground, getWindowTitleInactiveForeground
Modifier and TypeMethodDescriptionvoid
Adds values specific to this theme to the defaults table.Returns the accelerator foreground color.Returns the accelerator selected foreground color.protected ColorUIResource
getBlack()
Returns the black color.Returns the control color.Returns the control dark shadow color.Returns the control disabled color.Returns the control highlight color.Returns the control info color.Returns the control shadow color.Returns the control text color.Returns the desktop color.Returns the focus color.Returns the highlighted text color.Returns the inactive control text color.Returns the inactive system text color.Returns the menu background color.Returns the menu disabled foreground color.Returns the menu foreground color.Returns the menu selected background color.Returns the menu selected foreground color.Returns the primary control color.Returns the primary control dark shadow color.Returns the primary control highlight color.Returns the primary control info color.Returns the primary control shadow color.Returns the separator background color.Returns the separator foreground color.Returns the system text color.Returns the text highlight color.Returns the user text color.protected ColorUIResource
getWhite()
Returns the white color.Returns the window background color.Returns the window title background color.Returns the window title foreground color.Returns the window title inactive background color.Returns the window title inactive foreground color.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
DefaultMetalTheme
public DefaultMetalTheme()Creates and returns an instance ofDefaultMetalTheme
.
-
-
Method Details
-
getName
Returns the name of this theme. This returns"Steel"
.- Specified by:
getName
in classMetalTheme
- Returns:
- the name of this theme.
-
getPrimary1
Returns the primary 1 color. This returns a color with rgb values of 102, 102, and 153, respectively.- Specified by:
getPrimary1
in classMetalTheme
- Returns:
- the primary 1 color
-
getPrimary2
Returns the primary 2 color. This returns a color with rgb values of 153, 153, 204, respectively.- Specified by:
getPrimary2
in classMetalTheme
- Returns:
- the primary 2 color
-
getPrimary3
Returns the primary 3 color. This returns a color with rgb values 204, 204, 255, respectively.- Specified by:
getPrimary3
in classMetalTheme
- Returns:
- the primary 3 color
-
getSecondary1
Returns the secondary 1 color. This returns a color with rgb values 102, 102, and 102, respectively.- Specified by:
getSecondary1
in classMetalTheme
- Returns:
- the secondary 1 color
-
getSecondary2
Returns the secondary 2 color. This returns a color with rgb values 153, 153, and 153, respectively.- Specified by:
getSecondary2
in classMetalTheme
- Returns:
- the secondary 2 color
-
getSecondary3
Returns the secondary 3 color. This returns a color with rgb values 204, 204, and 204, respectively.- Specified by:
getSecondary3
in classMetalTheme
- Returns:
- the secondary 3 color
-
getControlTextFont
Returns the control text font. This returns Dialog, 12pt. If plain fonts have been enabled as described in font style, the font style is plain. Otherwise the font style is bold.- Specified by:
getControlTextFont
in classMetalTheme
- Returns:
- the control text font
-
getSystemTextFont
Returns the system text font. This returns Dialog, 12pt, plain.- Specified by:
getSystemTextFont
in classMetalTheme
- Returns:
- the system text font
-
getUserTextFont
Returns the user text font. This returns Dialog, 12pt, plain.- Specified by:
getUserTextFont
in classMetalTheme
- Returns:
- the user text font
-
getMenuTextFont
Returns the menu text font. This returns Dialog, 12pt. If plain fonts have been enabled as described in font style, the font style is plain. Otherwise the font style is bold.- Specified by:
getMenuTextFont
in classMetalTheme
- Returns:
- the menu text font
-
getWindowTitleFont
Returns the window title font. This returns Dialog, 12pt, bold.- Specified by:
getWindowTitleFont
in classMetalTheme
- Returns:
- the window title font
-
getSubTextFont
Returns the sub-text font. This returns Dialog, 10pt, plain.- Specified by:
getSubTextFont
in classMetalTheme
- Returns:
- the sub-text font
-