Class MultiLookAndFeel
java.lang.Object
javax.swing.LookAndFeel
javax.swing.plaf.multi.MultiLookAndFeel
A multiplexing look and feel that allows more than one UI to be associated with a component at the same time. The primary look and feel is called the default look and feel, and the other look and feels are called auxiliary.
For further information, see Using the Multiplexing 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
has been added to the java.beans package.
Please see XMLEncoder.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ComponentUIcreateUIs(ComponentUI mui, Vector<ComponentUI> uis, JComponent target) Creates theComponentUIobjects required to present thetargetcomponent, placing the objects in theuisvector and returning theComponentUIobject that best represents the component's UI.Creates, initializes, and returns the look and feel specific defaults.Returns a one-line description of this look and feel.getID()Returns a string, suitable for use by applications/services, that identifies this look and feel.getName()Returns a string, suitable for use in menus, that identifies this look and feel.booleanReturnsfalse; this look and feel is not native to any platform.booleanReturnstrue; every platform permits this look and feel.protected static ComponentUI[]uisToArray(Vector<? extends ComponentUI> uis) Creates an array, populates it with UI objects from the passed-in vector, and returns the array.Methods declared in class LookAndFeel
getDesktopPropertyValue, getDisabledIcon, getDisabledSelectedIcon, getLayoutStyle, getSupportsWindowDecorations, initialize, installBorder, installColors, installColorsAndFont, installProperty, loadKeyBindings, makeComponentInputMap, makeIcon, makeInputMap, makeKeyBindings, provideErrorFeedback, toString, uninitialize, uninstallBorderModifier and TypeMethodDescriptionstatic ObjectgetDesktopPropertyValue(String systemPropertyName, Object fallbackValue) Returns the value of the specified system desktop property by invokingToolkit.getDefaultToolkit().getDesktopProperty().getDisabledIcon(JComponent component, Icon icon) Returns anIconwith a disabled appearance.getDisabledSelectedIcon(JComponent component, Icon icon) Returns anIconfor use by disabled components that are also selected.Returns theLayoutStylefor this look and feel.booleanReturnstrueif theLookAndFeelreturnedRootPaneUIinstances support providingWindowdecorations in aJRootPane.voidInitializes the look and feel.static voidinstallBorder(JComponent c, String defaultBorderName) Convenience method for setting a component's border property with a value from the defaults.static voidinstallColors(JComponent c, String defaultBgName, String defaultFgName) Convenience method for setting a component's foreground and background color properties with values from the defaults.static voidinstallColorsAndFont(JComponent c, String defaultBgName, String defaultFgName, String defaultFontName) Convenience method for setting a component's foreground, background and font properties with values from the defaults.static voidinstallProperty(JComponent c, String propertyName, Object propertyValue) Convenience method for installing a property with the specified name and value on a component if that property has not already been set by the developer.static voidloadKeyBindings(InputMap retMap, Object[] keys) Populates anInputMapwith the specified bindings.static ComponentInputMapmakeComponentInputMap(JComponent c, Object[] keys) Creates aComponentInputMapUIResourcefromkeys.static ObjectCreates and returns aUIDefault.LazyValuethat loads an image.static InputMapmakeInputMap(Object[] keys) Creates anInputMapUIResourcefromkeys.static JTextComponent.KeyBinding[]makeKeyBindings(Object[] keyBindingList) Convenience method for building an array ofKeyBindings.voidprovideErrorFeedback(Component component) Invoked when the user attempts an invalid operation, such as pasting into an uneditableJTextFieldthat has focus.toString()Returns a string that displays and identifies this object's properties.voidUninitializes the look and feel.static voidConvenience method for uninstalling a border.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()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.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(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 voidwait(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
-
MultiLookAndFeel
public MultiLookAndFeel()Constructs aMultiLookAndFeel.
-
-
Method Details
-
getName
Returns a string, suitable for use in menus, that identifies this look and feel.- Specified by:
getNamein classLookAndFeel- Returns:
- a string such as "Multiplexing Look and Feel"
-
getID
Returns a string, suitable for use by applications/services, that identifies this look and feel.- Specified by:
getIDin classLookAndFeel- Returns:
- "Multiplex"
-
getDescription
Returns a one-line description of this look and feel.- Specified by:
getDescriptionin classLookAndFeel- Returns:
- a descriptive string such as "Allows multiple UI instances per component instance"
-
isNativeLookAndFeel
public boolean isNativeLookAndFeel()Returnsfalse; this look and feel is not native to any platform.- Specified by:
isNativeLookAndFeelin classLookAndFeel- Returns:
false
-
isSupportedLookAndFeel
public boolean isSupportedLookAndFeel()Returnstrue; every platform permits this look and feel.- Specified by:
isSupportedLookAndFeelin classLookAndFeel- Returns:
true- See Also:
-
getDefaults
Creates, initializes, and returns the look and feel specific defaults. For this look and feel, the defaults consist solely of mappings of UI class IDs (such as "ButtonUI") toComponentUIclass names (such as "javax.swing.plaf.multi.MultiButtonUI").- Overrides:
getDefaultsin classLookAndFeel- Returns:
- an initialized
UIDefaultsobject - See Also:
-
createUIs
Creates theComponentUIobjects required to present thetargetcomponent, placing the objects in theuisvector and returning theComponentUIobject that best represents the component's UI. This method finds theComponentUIobjects by invokinggetDefaults().getUI(target)on each default and auxiliary look and feel currently in use. The first UI object this method adds to theuisvector is for the default look and feel.This method is invoked by the
createUImethod ofMultiXxxxUIclasses.- Parameters:
mui- theComponentUIobject that represents the complete UI for thetargetcomponent; this should be an instance of one of theMultiXxxxUIclassesuis- aVector; generally this is theuisfield of themuiargumenttarget- a component whose UI is represented bymui- Returns:
muiif the component has any auxiliary UI objects; otherwise, returns the UI object for the default look and feel ornullif the default UI object couldn't be found- See Also:
-
uisToArray
Creates an array, populates it with UI objects from the passed-in vector, and returns the array. Ifuisis null, this method returns an array with zero elements. Ifuisis an empty vector, this method returnsnull. A run-time error occurs if any objects in theuisvector are not of typeComponentUI.- Parameters:
uis- a vector containingComponentUIobjects- Returns:
- an array equivalent to the passed-in vector
-