org.jdesktop.swingx.plaf.LookAndFeelAddons Maven / Gradle / Ivy
Show all versions of swingx-all Show documentation
/*
* $Id$
*
* Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
* Santa Clara, California 95054, U.S.A. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.jdesktop.swingx.plaf;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.lang.reflect.Method;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.ServiceLoader;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JComponent;
import javax.swing.LookAndFeel;
import javax.swing.UIDefaults;
import javax.swing.UIManager;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.UIResource;
import org.jdesktop.swingx.painter.Painter;
/**
* Provides additional pluggable UI for new components added by the library. By default, the library
* uses the pluggable UI returned by {@link #getBestMatchAddonClassName()}.
*
* The default addon can be configured using the swing.addon
system property as follow:
*
* - on the command line,
java -Dswing.addon=ADDONCLASSNAME ...
* - at runtime and before using the library components
*
System.getProperties().put("swing.addon", ADDONCLASSNAME);
*
*
* The default {@link #getCrossPlatformAddonClassName() cross platform addon} can be configured
* using the swing.crossplatformlafaddon
system property as follow:
*
* - on the command line,
java -Dswing.crossplatformlafaddon=ADDONCLASSNAME ...
* - at runtime and before using the library components
*
System.getProperties().put("swing.crossplatformlafaddon", ADDONCLASSNAME);
* Note: changing this property after the UI has been initialized may result in unexpected behavior.
*
*
*
* The addon can also be installed directly by calling the {@link #setAddon(String)}method. For
* example, to install the Windows addons, add the following statement
* LookAndFeelAddons.setAddon("org.jdesktop.swingx.plaf.windows.WindowsLookAndFeelAddons");
.
*
* @author Frederic Lavigne
* @author Karl Schaefer
*/
@SuppressWarnings("nls")
public abstract class LookAndFeelAddons {
@SuppressWarnings("unused")
private static final Logger LOG = Logger.getLogger(LookAndFeelAddons.class
.getName());
private static List contributedComponents = new ArrayList();
/**
* Key used to ensure the current UIManager has been populated by the LookAndFeelAddons.
*/
private static final Object APPCONTEXT_INITIALIZED = new Object();
private static boolean trackingChanges = false;
private static PropertyChangeListener changeListener;
static {
// load the default addon
String addonClassname = getBestMatchAddonClassName();
try {
addonClassname = System.getProperty("swing.addon", addonClassname);
} catch (SecurityException ignore) {
// security exception may arise in Java Web Start
LOG.log(Level.FINE, "not allowed to access property swing.addon", ignore);
}
try {
setAddon(addonClassname);
} catch (Exception e) {
// PENDING(fred) do we want to log an error and continue with a default
// addon class or do we just fail?
throw new ExceptionInInitializerError(e);
}
setTrackingLookAndFeelChanges(true);
}
private static LookAndFeelAddons currentAddon;
/**
* Determines if the addon is a match for the {@link UIManager#getLookAndFeel() current Look and
* Feel}.
*
* @return {@code true} if this addon matches (is compatible); {@code false} otherwise
*/
protected boolean matches() {
return false;
}
/**
* Determines if the addon is a match for the system Look and Feel.
*
* @return {@code true} if this addon matches (is compatible with) the system Look and Feel;
* {@code false} otherwise
*/
protected boolean isSystemAddon() {
return false;
}
/**
* Initializes the look and feel addon. This method is
*
* @see #uninitialize
* @see UIManager#setLookAndFeel
*/
public void initialize() {
for (Iterator iter = contributedComponents.iterator(); iter.hasNext();) {
ComponentAddon addon = iter.next();
addon.initialize(this);
}
}
public void uninitialize() {
for (Iterator iter = contributedComponents.iterator(); iter.hasNext();) {
ComponentAddon addon = iter.next();
addon.uninitialize(this);
}
}
/**
* Adds the given defaults in UIManager.
*
* Note: the values are added only if they do not exist in the existing look and feel defaults.
* This makes it possible for look and feel implementors to override SwingX defaults.
*
* Note: the array is traversed in reverse order. If a key is found twice in the array, the
* key/value with the highest position in the array gets precedence over the other key in the
* array
*
* @param keysAndValues
*/
public void loadDefaults(Object[] keysAndValues) {
// Go in reverse order so the most recent keys get added first...
for (int i = keysAndValues.length - 2; i >= 0; i = i - 2) {
if (UIManager.getLookAndFeelDefaults().get(keysAndValues[i]) == null) {
UIManager.getLookAndFeelDefaults().put(keysAndValues[i], keysAndValues[i + 1]);
}
}
}
public void unloadDefaults(@SuppressWarnings("unused") Object[] keysAndValues) {
// commented after Issue 446.
/*
* for (int i = 0, c = keysAndValues.length; i < c; i = i + 2) {
* UIManager.getLookAndFeelDefaults().put(keysAndValues[i], null); }
*/
}
public static void setAddon(String addonClassName) throws InstantiationException,
IllegalAccessException, ClassNotFoundException {
setAddon(Class.forName(addonClassName, true, getClassLoader()));
}
public static void setAddon(Class> addonClass) throws InstantiationException,
IllegalAccessException {
LookAndFeelAddons addon = (LookAndFeelAddons) addonClass.newInstance();
setAddon(addon);
}
public static void setAddon(LookAndFeelAddons addon) {
if (currentAddon != null) {
currentAddon.uninitialize();
}
addon.initialize();
currentAddon = addon;
// JW: we want a marker to discover if the LookAndFeelDefaults have been
// swept from under our feet. The following line looks suspicious,
// as it is setting a user default instead of a LF default. User defaults
// are not touched when resetting a LF
UIManager.put(APPCONTEXT_INITIALIZED, Boolean.TRUE);
// trying to fix #784-swingx: frequent NPE on getUI
// JW: we want a marker to discover if the LookAndFeelDefaults have been
// swept from under our feet.
UIManager.getLookAndFeelDefaults().put(APPCONTEXT_INITIALIZED, Boolean.TRUE);
}
public static LookAndFeelAddons getAddon() {
return currentAddon;
}
private static ClassLoader getClassLoader() {
ClassLoader cl = null;
try {
cl = AccessController.doPrivileged(new PrivilegedAction() {
@Override
public ClassLoader run() {
return LookAndFeelAddons.class.getClassLoader();
}
});
} catch (SecurityException ignore) { }
if (cl == null) {
final Thread t = Thread.currentThread();
try {
cl = AccessController.doPrivileged(new PrivilegedAction() {
@Override
public ClassLoader run() {
return t.getContextClassLoader();
}
});
} catch (SecurityException ignore) { }
}
if (cl == null) {
try {
cl = AccessController.doPrivileged(new PrivilegedAction() {
@Override
public ClassLoader run() {
return ClassLoader.getSystemClassLoader();
}
});
} catch (SecurityException ignore) { }
}
return cl;
}
/**
* Based on the current look and feel (as returned by UIManager.getLookAndFeel()
),
* this method returns the name of the closest LookAndFeelAddons
to use.
*
* The lookup fallback is implemented
*
* - check for cross-platform LAF and return the cross-platform addons
*
- check for system LAF and return the system addons
*
- loop through the addons provided by services and return the first that matches
*
- return the cross-platform addons
*
*
* @return the addon matching the currently installed look and feel
*
* @see #getCrossPlatformAddonClassName()
* @see #getSystemAddonClassName()
* @see #getProvidedLookAndFeelAddons()
*/
public static String getBestMatchAddonClassName() {
LookAndFeel laf = UIManager.getLookAndFeel();
String className = null;
if (UIManager.getCrossPlatformLookAndFeelClassName().equals(laf.getClass().getName())) {
className = getCrossPlatformAddonClassName();
} else if (UIManager.getSystemLookAndFeelClassName().equals(laf.getClass().getName())) {
className = getSystemAddonClassName();
} else {
Iterable loadedAddons = getProvidedLookAndFeelAddons();
for (LookAndFeelAddons addon : loadedAddons) {
if (addon.matches()) {
className = addon.getClass().getName();
break;
}
}
}
if (className == null) {
className = getSystemAddonClassName();
}
return className;
}
/**
* Returns the addon class name best suited for cross-platform laf.
* The lookup sequence is implemented to
*
* - get and return the system property
*
swing.crossplatformlafaddon
if available
* - return the addon (hard-coded!) for Metal
*
*
* @return the class name of the cross-platform addon
*/
public static String getCrossPlatformAddonClassName() {
try {
return AccessController.doPrivileged(new PrivilegedAction() {
@Override
public String run() {
return System.getProperty("swing.crossplatformlafaddon",
"org.jdesktop.swingx.plaf.metal.MetalLookAndFeelAddons");
}
});
} catch (SecurityException ignore) {
}
return "org.jdesktop.swingx.plaf.metal.MetalLookAndFeelAddons";
}
/**
* Gets the addon best suited for the operating system where the virtual machine is running.
*
* The lookup is implemented like
*
* - loop through the addons provided by services and return the first
* that isSystemAddon
*
- return the cross-platform addons
*
*
* @return the addon matching the native operating system platform.
*
* @see #getProvidedLookAndFeelAddons()
* @see #getCrossPlatformAddonClassName()
*/
public static String getSystemAddonClassName() {
Iterable loadedAddons = getProvidedLookAndFeelAddons();
String className = null;
for (LookAndFeelAddons addon : loadedAddons) {
if (addon.isSystemAddon()) {
className = addon.getClass().getName();
break;
}
}
if (className == null) {
className = getCrossPlatformAddonClassName();
}
return className;
}
/**
* Returns the LookAndFeelAddons from the ServiceLoader.
*
* The actual lookup of the provider must
* be triggered in a privileged action to force
* loading the classes. Without, it might not have access to the
* provider configuration file in security restricted contexts.
*
* @return the LookAndFeelAddons from the ServiceLoader
*/
protected static Iterable getProvidedLookAndFeelAddons() {
final ServiceLoader loader = ServiceLoader.load(LookAndFeelAddons.class,
getClassLoader());
// need to access the iterator inside a privileged action
// probably because it's lazily loaded
AccessController
.doPrivileged(new PrivilegedAction>() {
@Override
public Iterable run() {
loader.iterator().hasNext();
return loader;
}
});
return loader;
}
/**
* Each new component added by the library will contribute its default UI classes, colors and
* fonts to the LookAndFeelAddons. See {@link ComponentAddon}.
*
* @param component
*/
public static void contribute(ComponentAddon component) {
contributedComponents.add(component);
if (currentAddon != null) {
// make sure to initialize any addons added after the
// LookAndFeelAddons has been installed
component.initialize(currentAddon);
}
}
/**
* Removes the contribution of the given addon
*
* @param component
*/
public static void uncontribute(ComponentAddon component) {
contributedComponents.remove(component);
if (currentAddon != null) {
component.uninitialize(currentAddon);
}
}
/**
* Workaround for IDE mixing up with classloaders and Applets environments. Consider this method
* as API private. It must not be called directly.
*
* @param component
* @param expectedUIClass
* @return an instance of expectedUIClass
*/
public static ComponentUI getUI(JComponent component, Class> expectedUIClass) {
maybeInitialize();
// solve issue with ClassLoader not able to find classes
String uiClassname = (String) UIManager.get(component.getUIClassID());
// possible workaround and more debug info on #784
if (uiClassname == null) {
Logger logger = Logger.getLogger("LookAndFeelAddons");
logger.warning("Failed to retrieve UI for " + component.getClass().getName()
+ " with UIClassID " + component.getUIClassID());
if (logger.isLoggable(Level.FINE)) {
logger.fine("Existing UI defaults keys: "
+ new ArrayList