Class SynthLookAndFeel
java.lang.Object
javax.swing.LookAndFeel
javax.swing.plaf.basic.BasicLookAndFeel
javax.swing.plaf.synth.SynthLookAndFeel
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NimbusLookAndFeel
SynthLookAndFeel provides the basis for creating a customized look and
feel. SynthLookAndFeel does not directly provide a look, all painting is
delegated.
You need to either provide a configuration file, by way of the
load(InputStream, Class) method, or provide your own SynthStyleFactory
to setStyleFactory(SynthStyleFactory). Refer to the
package summary for an example of
loading a file, and SynthStyleFactory for
an example of providing your own SynthStyleFactory to
setStyleFactory.
SynthIcon interface provides
paintIcon(synthContext, graphics, x, y, width, height) method that
allows to draw the icon with the given SynthContext.
Warning:
This class implements Serializable as a side effect of it
extending BasicLookAndFeel. It is not intended to be serialized.
An attempt to serialize it will
result in NotSerializableException.
- Since:
- 1.5
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ComponentUICreates the Synth look and feelComponentUIfor the passed inJComponent.Returns the defaults for this SynthLookAndFeel.Returns a textual description of SynthLookAndFeel.getID()Return a string that identifies this look and feel.getName()Return a short string that identifies this look and feel.static RegionReturns the Region for the JComponentc.static SynthStylegetStyle(JComponent c, Region region) Gets a SynthStyle for the specified region of the specified component.static SynthStyleFactoryReturns the current SynthStyleFactory.voidCalled by UIManager when this look and feel is installed.booleanReturns false, SynthLookAndFeel is not a native look and feel.booleanReturns true, SynthLookAndFeel is always supported.voidload(InputStream input, Class<?> resourceBase) Loads the set ofSynthStyles that will be used by thisSynthLookAndFeel.static voidsetStyleFactory(SynthStyleFactory cache) Sets the SynthStyleFactory that the UI classes provided by synth will use to obtain a SynthStyle.booleanReturns whether or not the UIs should update theirSynthStylesfrom theSynthStyleFactorywhen the ancestor of theJComponentchanges.protected booleanReturns whether or not the UIs should update their styles when a particular event occurs.voidCalled by UIManager when this look and feel is uninstalled.static voidUpdates the style associated withc, and all its children.Methods declared in class BasicLookAndFeel
createAudioAction, getAudioActionMap, initClassDefaults, initComponentDefaults, initSystemColorDefaults, loadSystemColors, playSoundModifier and TypeMethodDescriptionprotected ActioncreateAudioAction(Object key) Creates and returns anActionused to play a sound.protected ActionMapReturns anActionMapcontaining the audio actions for this look and feel.protected voidinitClassDefaults(UIDefaults table) Populatestablewith mappings fromuiClassIDto the fully qualified name of the ui class.protected voidinitComponentDefaults(UIDefaults table) Populatestablewith the defaults for the basic look and feel.protected voidPopulatestablewith system colors.protected voidloadSystemColors(UIDefaults table, String[] systemColors, boolean useNative) Populatestablewith thename-colorpairs insystemColors.protected voidIf necessary, invokesactionPerformedonaudioActionto play a sound.Methods declared in class LookAndFeel
getDesktopPropertyValue, getDisabledIcon, getDisabledSelectedIcon, getLayoutStyle, getSupportsWindowDecorations, installBorder, installColors, installColorsAndFont, installProperty, loadKeyBindings, makeComponentInputMap, makeIcon, makeInputMap, makeKeyBindings, provideErrorFeedback, toString, 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.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.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
-
SynthLookAndFeel
public SynthLookAndFeel()Creates a SynthLookAndFeel.For the returned
SynthLookAndFeelto be useful you need to invokeloadto specify the set ofSynthStyles, or invokesetStyleFactory.- See Also:
-
-
Method Details
-
setStyleFactory
Sets the SynthStyleFactory that the UI classes provided by synth will use to obtain a SynthStyle.- Parameters:
cache- SynthStyleFactory the UIs should use.
-
getStyleFactory
Returns the current SynthStyleFactory.- Returns:
- SynthStyleFactory
-
getStyle
Gets a SynthStyle for the specified region of the specified component. This is not for general consumption, only custom UIs should call this method.- Parameters:
c- JComponent to get the SynthStyle forregion- Identifies the region of the specified component- Returns:
- SynthStyle to use.
-
updateStyles
Updates the style associated withc, and all its children. This is a lighter version ofSwingUtilities.updateComponentTreeUI.- Parameters:
c- Component to update style for.
-
getRegion
Returns the Region for the JComponentc.- Parameters:
c- JComponent to fetch the Region for- Returns:
- Region corresponding to
c
-
createUI
Creates the Synth look and feelComponentUIfor the passed inJComponent.- Parameters:
c- JComponent to create theComponentUIfor- Returns:
- ComponentUI to use for
c
-
load
Loads the set ofSynthStyles that will be used by thisSynthLookAndFeel.resourceBaseis used to resolve any path based resources, for example anImagewould be resolved byresourceBase.getResource(path). Refer to Synth File Format for more information.- Parameters:
input- InputStream to load fromresourceBase- used to resolve any images or other resources- Throws:
ParseException- if there is an error in parsingIllegalArgumentException- if input or resourceBase isnull
-
initialize
public void initialize()Called by UIManager when this look and feel is installed.- Overrides:
initializein classLookAndFeel- See Also:
-
uninitialize
public void uninitialize()Called by UIManager when this look and feel is uninstalled.- Overrides:
uninitializein classLookAndFeel- See Also:
-
getDefaults
Returns the defaults for this SynthLookAndFeel.- Overrides:
getDefaultsin classBasicLookAndFeel- Returns:
- Defaults table.
- See Also:
-
isSupportedLookAndFeel
public boolean isSupportedLookAndFeel()Returns true, SynthLookAndFeel is always supported.- Specified by:
isSupportedLookAndFeelin classLookAndFeel- Returns:
- true.
- See Also:
-
isNativeLookAndFeel
public boolean isNativeLookAndFeel()Returns false, SynthLookAndFeel is not a native look and feel.- Specified by:
isNativeLookAndFeelin classLookAndFeel- Returns:
- false
-
getDescription
Returns a textual description of SynthLookAndFeel.- Specified by:
getDescriptionin classLookAndFeel- Returns:
- textual description of synth.
-
getName
Return a short string that identifies this look and feel.- Specified by:
getNamein classLookAndFeel- Returns:
- a short string identifying this look and feel.
-
getID
Return a string that identifies this look and feel.- Specified by:
getIDin classLookAndFeel- Returns:
- a short string identifying this look and feel.
-
shouldUpdateStyleOnAncestorChanged
public boolean shouldUpdateStyleOnAncestorChanged()Returns whether or not the UIs should update theirSynthStylesfrom theSynthStyleFactorywhen the ancestor of theJComponentchanges. A subclass that provided aSynthStyleFactorythat based the return value fromgetStyleoff the containment hierarchy would override this method to return true.- Returns:
- whether or not the UIs should update their
SynthStylesfrom theSynthStyleFactorywhen the ancestor changed.
-
shouldUpdateStyleOnEvent
Returns whether or not the UIs should update their styles when a particular event occurs.- Parameters:
ev- aPropertyChangeEvent- Returns:
- whether or not the UIs should update their styles
- Since:
- 1.7
-