is new.
java.lang.Objectjavax.swing.UIManager
public class UIManager
UIManager manages the current look and feel, the set of available look and feels, PropertyChangeListeners that are notified when the look and feel changes, look and feel defaults, and convenience methods for obtaining various default values.
Specifying the look and feel
The look and feel can be specified in two distinct ways: by specifying the fully qualified name of the class for the look and feel, or by creating an instance of LookAndFeel and passing it to setLookAndFeel. The following example illustrates setting the look and feel to the system look and feel:
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
The following example illustrates setting the look and feel based on class name:
UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
Once the look and feel has been changed it is imperative to invoke updateUI on all JComponents. The method
SwingUtilities.updateComponentTreeUI(java.awt.Component)
makes it easy to apply updateUI to a containment hierarchy. Refer to it for details. The exact behavior of not invoking updateUI after changing the look and feel is unspecified. It is very possible to receive unexpected exceptions, painting problems, or worse.
Default look and feel
The class used for the default look and feel is chosen in the following manner:
its value
the
default look and feel class name. The location
that is checked for
the location is ${java.home}/lib/swing.properties.
being used
cross platform
Defaults
UIManager manages three sets of UIDefaults. In order, they are:
Developer defaults. With few exceptions Swing does not alter the developer defaults; these are intended to be modified and used by the developer.
Look and feel defaults. The look and feel defaults are supplied by the look and feel at the time it is installed as the current look and feel (setLookAndFeel() is invoked). The look and feel defaults can be obtained using the getLookAndFeelDefaults() method.
Sytem defaults. The system defaults are provided by Swing.
Invoking any of the various get methods results in checking each of the defaults, in order, returning the first non-null value. For example, invoking UIManager.getString("Table.foreground") results in first checking developer defaults. If the developer defaults contain a value for "Table.foreground" it is returned, otherwise the look and feel defaults are checked, followed by the system defaults.
It's important to note that getDefaults returns a custom instance of UIDefaults with this resolution logic built into it. For example, UIManager.getDefaults().getString("Table.foreground") is equivalent to UIManager.getString("Table.foreground"). Both resolve using the algorithm just described. In many places the documentation uses the word defaults to refer to the custom instance of UIDefaults with the resolution logic as previously described.
We manage three levels of defaults: user defaults, look and feel defaults, system defaults. A call to UIManager.get checks all three levels in order and returns the first non-null value for a key, if any. A call to UIManager.put just affects the user defaults. Note that a call to setLookAndFeel doesn't affect the user defaults, it just replaces the middle defaults "level".
When the look and feel is changed, UIManager alters only the look and feel defaults; the developer and system defaults are not altered by the UIManager in any way.
The set of defaults a particular look and feel supports is defined and documented by that look and feel. In addition, each look and feel, or ComponentUI provided by a look and feel, may access the defaults at different times in their life cycle. Some look and feels may agressively look up defaults, so that changing a default may not have an effect after installing the look and feel. Other look and feels may lazily access defaults so that a change to the defaults may effect an existing look and feel. Finally, other look and feels might not configure themselves from the defaults table in any way. None-the-less it is usually the case that a look and feel expects certain defaults, so that in general a ComponentUI provided by one look and feel will not work with another look and feel.
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 TM has been added to the java.beans package. Please see XMLEncoder .
| Nested Class Summary | |
|---|---|
| static class |
UIManager.LookAndFeelInfo
Provides a little information about an installed LookAndFeel for the sake of configuring a menu or for initial application set up. |
| Constructor Summary | |
|---|---|
|
UIManager
() |
|
| Method Summary | |
|---|---|
| static void |
addAuxiliaryLookAndFeel
(
LookAndFeel
laf) Adds a LookAndFeel to the list of auxiliary look and feels. |
| static void |
addPropertyChangeListener
(
PropertyChangeListener
listener) Adds a PropertyChangeListener to the listener list. |
| static Object |
get
(
Object
Returns an object from the
defaults.
|
| static Object |
get
(
Object
key,
Locale
Returns an object from the defaults
|
| static LookAndFeel [] |
getAuxiliaryLookAndFeels
() Returns the list of auxiliary look and feels (can be null). |
| static boolean |
getBoolean
(
Object
Returns a boolean from the defaults
|
| static boolean |
getBoolean
(
Object
key,
Locale
Returns a boolean from the defaults
|
| static Border |
getBorder
(
Object
Returns a border from the
defaults.
|
| static Border |
getBorder
(
Object
key,
Locale
Returns a border from the defaults
|
| static Color |
getColor
(
Object
Returns a
defaults.
|
| static Color |
getColor
(
Object
key,
Locale
Returns a
|
| static String |
getCrossPlatformLookAndFeelClassName
() Returns the name of the LookAndFeel class that implements the default cross platform look and feel -- the Java Look and Feel (JLF). |
| static UIDefaults |
getDefaults
() Returns the
defaults.
|
| static Dimension |
getDimension
(
Object
Returns a dimension from the
defaults.
|
| static Dimension |
getDimension
(
Object
key,
Locale
Returns a dimension from the defaults
|
| static Font |
getFont
(
Object
Returns a
defaults.
|
| static Font |
getFont
(
Object
key,
Locale
Returns a
|
| static Icon |
getIcon
(
Object
Returns an Icon from the
defaults.
|
| static Icon |
getIcon
(
Object
key,
Locale
Returns an Icon from the defaults
|
| static Insets |
getInsets
(
Object
Returns an Insets object from the
defaults.
|
| static Insets |
getInsets
(
Object
key,
Locale
Returns an Insets object from the defaults
|
| static UIManager.LookAndFeelInfo |
getInstalledLookAndFeels
() Returns an array of
LookAndFeelInfos representing
currently available.
|
| static int |
getInt
(
Object
Returns an integer from the
defaults.
|
| static int |
getInt
(
Object
key,
Locale
Returns an integer from the defaults
|
| static LookAndFeel |
getLookAndFeel
() Returns the current
|
| static UIDefaults |
getLookAndFeelDefaults
() Returns the
UIDefaults from the current
feel, that were obtained at the time the look and feel was installed.
|
| static PropertyChangeListener [] |
getPropertyChangeListeners
() Returns an array of all the PropertyChangeListeners added to this UIManager with addPropertyChangeListener(). |
| static String |
getString
(
Object
Returns a string from the
defaults.
|
| static String |
getString
(
Object
key,
Locale
Returns a string from the defaults
|
| static String |
getSystemLookAndFeelClassName
() Returns the name of the LookAndFeel class that implements the native
system
|
| static ComponentUI |
getUI
(
JComponent
Returns the
appropriate ComponentUI implementation for target.
|
| static void |
installLookAndFeel
(
String
name,
String
Adds the specified
set of available look and feels.
|
| static void |
installLookAndFeel
(
UIManager.LookAndFeelInfo
Adds the specified look and feel to the
set of available look
feels.
|
| static Object |
put
(
Object
key,
Object
Stores an object in the
developer defaults.
|
| static boolean |
removeAuxiliaryLookAndFeel
(
LookAndFeel
laf) Removes a LookAndFeel from the list of auxiliary look and feels. |
| static void |
removePropertyChangeListener
(
PropertyChangeListener
listener) Removes a PropertyChangeListener from the listener list. |
| static void |
setInstalledLookAndFeels
(
UIManager.LookAndFeelInfo
Sets
set
available look and feels.
|
| static void |
setLookAndFeel
(
LookAndFeel
Sets the current
to newLookAndFeel.
|
| static void |
setLookAndFeel
(
String
Loads
LookAndFeel specified by the given class name,
the current thread's context
loader, and passes it to setLookAndFeel(LookAndFeel).
|
| Methods inherited from class java.lang. Object |
|---|
| clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait |
| Constructor Detail |
|---|
public UIManager()
| Method Detail |
|---|
public static UIManager.LookAndFeelInfo[] getInstalledLookAndFeels()
LookAndFeelInfos representing
currently available.
LookAndFeelInfo
be
used by an application to construct a menu of look and feel options for the
user,
determine which
to set
at
startup
To avoid
penalty of creating numerous
LookAndFeel
objects, LookAndFeelInfo maintains
class name
the LookAndFeel class, not the actual LookAndFeel instance.
The following example illustrates setting the current look and feel from an instance of LookAndFeelInfo:
Given a LookAndFeelInfo object one can set the current look and feel like this:
UIManager.setLookAndFeel(info.getClassName());
public static void setInstalledLookAndFeels(UIManager.LookAndFeelInfo[] infos)
throws SecurityException
Sets the set of available look and feels. While this method does not check to ensure all of the LookAndFeelInfos are non-null, it is strongly recommended that only non-null values are supplied in the infos array.
set
specifying the available look and feels
NullPointerException
- if infos is null
public static void installLookAndFeel(UIManager.LookAndFeelInfo info)
Adds the specified look and feel to the set of available look and feels. While this method allows a null info, it is strongly recommended that a non-null value be used.
the
See Also:
setInstalledLookAndFeels(javax.swing.UIManager.LookAndFeelInfo[])
public static void installLookAndFeel(String name,
String className)
Adds the specified look and feel to the set of available look and feels. While this method does not check the arguments in any way, it is strongly recommended that non-null values be supplied.
descriptive
name of
See Also:
setInstalledLookAndFeels(javax.swing.UIManager.LookAndFeelInfo[])
public static LookAndFeel getLookAndFeel()
public static void setLookAndFeel(LookAndFeel newLookAndFeel)
throws UnsupportedLookAndFeelException
Sets the current look and feel to newLookAndFeel. If the current look and feel is non-null uninitialize is invoked on it. If newLookAndFeel is non-null, initialize is invoked on it followed by getDefaults. The defaults returned from newLookAndFeel.getDefaults() replace those of the defaults from the previous look and feel. If the newLookAndFeel is null, the look and feel defaults are set to null.
A value of null can be used to set the look and feel to null. As the LookAndFeel is required for most of Swing to function, setting the LookAndFeel to null is strongly discouraged.
This is a JavaBeans bound property.
to install
newLookAndFeel
non-null and newLookAndFeel.isSupportedLookAndFeel() returns
false
public static void setLookAndFeel(String className)
throws ClassNotFoundException,
InstantiationException,
IllegalAccessException,
UnsupportedLookAndFeelException
Loads the LookAndFeel specified by the given class name, using the current thread's context class loader, and passes it to setLookAndFeel(LookAndFeel).
ClassCastException
- if className does not identify a class that extends LookAndFeel
public static String getSystemLookAndFeelClassName()
system
This
can
overriden by setting the swing.systemlaf system property.
public static String getCrossPlatformLookAndFeelClassName()
This value can be overriden by setting the swing.crossplatformlaf system property.
public static UIDefaults getDefaults()
Returns the defaults. The returned defaults resolve using the logic specified in the class documentation.
public static Font getFont(Object key)
Returns a font from the defaults. If the value for key is not a Font, null is returned.
Throws:
NullPointerException
- if key is null
public static Font getFont(Object key,
Locale l)
If the value for key is not a Font, null is returned.
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
public static Color getColor(Object key)
Returns a color from the defaults. If the value for key is not a Color, null is returned.
Throws:
NullPointerException
- if key is null
public static Color getColor(Object key,
Locale l)
If the value for key is not a Color, null is returned.
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
public static Icon getIcon(Object key)
Returns an Icon from the defaults. If the value for key is not an Icon, null is returned.
Throws:
NullPointerException
- if key is null
public static Icon getIcon(Object key,
Locale l)
If the value for key is not an Icon, null is returned.
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
public static Border getBorder(Object key)
Returns a border from the defaults. If the value for key is not a Border, null is returned.
Throws:
NullPointerException
- if key is null
public static Border getBorder(Object key,
Locale l)
If the value for key is not a Border, null is returned.
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
public static String getString(Object key)
Returns a string from the defaults. If the value for key is not a String, null is returned.
Throws:
NullPointerException
- if key is null
public static String getString(Object key,
Locale l)
If the value for key is not a String, null is returned.
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
Since:
1.4
public static int getInt(Object key)
Returns an integer from the defaults. If the value for key is not an Integer, or does not exist, 0 is returned.
Throws:
NullPointerException
- if key is null
public static int getInt(Object key,
Locale l)
If the value for key is not an Integer, or does not exist, 0 is returned.
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
public static boolean getBoolean(Object key)
is
Throws:
NullPointerException
- if key is null
public static boolean getBoolean(Object key,
Locale l)
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
public static Insets getInsets(Object key)
Returns an Insets object from the defaults. If the value for key is not an Insets, null is returned.
Throws:
NullPointerException
- if key is null
public static Insets getInsets(Object key,
Locale l)
If the value for key is not an Insets, null is returned.
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
public static Dimension getDimension(Object key)
Returns a dimension from the defaults. If the value for key is not a Dimension, null is returned.
Throws:
NullPointerException
- if key is null
public static Dimension getDimension(Object key,
Locale l)
If the value for key is not a Dimension, null is returned.
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
public static Object get(Object key)
defaults.
Throws:
NullPointerException
- if key is null
public static Object get(Object key,
Locale l)
desired; refer to UIDefaults for details on how a null Locale is handled
Throws:
NullPointerException
- if key is null
Since:
1.4
public static Object put(Object key,
Object value)
Stores an object in the developer defaults. This is a cover method for getDefaults().put(key, value). This only effects the developer defaults, not the system or look and feel defaults.
value - the Object to store; refer to UIDefaults for details on how null is handled
Throws:
NullPointerException
- if key is null
See Also:
UIDefaults.put(java.lang.Object, java.lang.Object)
public static ComponentUI getUI(JComponent target)
Returns the appropriate ComponentUI implementation for target. Typically, this is a cover for getDefaults().getUI(target). However, if an auxiliary look and feel has been installed, this first invokes getUI(target) on the multiplexing look and feel's defaults, and returns that value if it is non-null.
return the ComponentUI for
the ComponentUI object for target
Throws:
NullPointerException
- if target is null
See Also:
UIDefaults.getUI(javax.swing.JComponent)
public static UIDefaults getLookAndFeelDefaults()
Returns the UIDefaults from the current look and feel, that were obtained at the time the look and feel was installed.
In general, developers should use the UIDefaults returned from getDefaults(). As the current look and feel may expect certain values to exist, altering the UIDefaults returned from this method could have unexpected results.
UIDefaults from the current look and feel
See Also:
getDefaults()
,
setLookAndFeel(LookAndFeel)
,
LookAndFeel.getDefaults()
public static void addAuxiliaryLookAndFeel(LookAndFeel laf)
Note these are not the same as the installed look and feels.
public static boolean removeAuxiliaryLookAndFeel(LookAndFeel laf)
Note these are not the same as the installed look and feels.
public static LookAndFeel[] getAuxiliaryLookAndFeels()
Note these are not the same as the installed look and feels.
public static void addPropertyChangeListener(PropertyChangeListener listener)
public static void removePropertyChangeListener(PropertyChangeListener listener)
public static PropertyChangeListener[] getPropertyChangeListeners()