All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.l2fprod.gui.plaf.skin.SkinLookAndFeel Maven / Gradle / Ivy

Go to download

Skin Look And Feel allows Java developers to write skin-able application using the Swing toolkit. Skin Look And Feel is able to load themepacks (a bundle of GTK - The Gimp Toolkit - and KDE - The K Desktop Environment - skins) to enhance your application GUI controls such as Buttons, Checks, Radios, Scrollbars, Progress Bar, Lists, Tables, Internal Frames, Colors, Background Textures, Regular Windows. Skin Look And Feel (aka SkinLF) also includes NativeSkin to create irregular windows.

The newest version!
/*
 * ====================================================================
 * 
 * Skin Look And Feel 6.7 License.
 * 
 * Copyright (c) 2000-2006 L2FProd.com. All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met: 1.
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer. 2. Redistributions in
 * binary form must reproduce the above copyright notice, this list of
 * conditions and the following disclaimer in the documentation and/or other
 * materials provided with the distribution. 3. The end-user documentation
 * included with the redistribution, if any, must include the following
 * acknowlegement: "This product includes software developed by L2FProd.com
 * (http://www.L2FProd.com/)." Alternately, this acknowlegement may appear in
 * the software itself, if and wherever such third-party acknowlegements
 * normally appear. 4. The names "Skin Look And Feel", "SkinLF" and
 * "L2FProd.com" must not be used to endorse or promote products derived from
 * this software without prior written permission. For written permission,
 * please contact [email protected]. 5. Products derived from this software may
 * not be called "SkinLF" nor may "SkinLF" appear in their names without prior
 * written permission of L2FProd.com.
 * 
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 * L2FPROD.COM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 */
package com.l2fprod.gui.plaf.skin;

import com.l2fprod.contrib.nanoxml.XMLElement;
import com.l2fprod.gui.plaf.skin.impl.gtk.GtkSkin;
import com.l2fprod.gui.plaf.skin.impl.kde.KdeSkin;
import com.l2fprod.util.OS;
import com.l2fprod.util.StringUtils;
import com.l2fprod.util.ZipResourceLoader;

import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Insets;
import java.io.BufferedInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.InputStream;
import java.net.URL;
import java.util.Arrays;
import java.util.Enumeration;
import java.util.ResourceBundle;

import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import javax.swing.UIDefaults;
import javax.swing.UIManager;
import javax.swing.border.Border;
import javax.swing.border.CompoundBorder;
import javax.swing.border.EmptyBorder;
import javax.swing.border.LineBorder;
import javax.swing.plaf.BorderUIResource;
import javax.swing.plaf.ColorUIResource;
import javax.swing.plaf.DimensionUIResource;
import javax.swing.plaf.FontUIResource;
import javax.swing.plaf.IconUIResource;
import javax.swing.plaf.InsetsUIResource;
import javax.swing.plaf.basic.BasicLookAndFeel;
import javax.swing.text.DefaultEditorKit;
import javax.swing.text.JTextComponent;

/**
 * Skin Look And Feel Main Class. 
Use this class to set the current skin * or to load skins.
See L2FProd.com * website for the complete description of a theme pack. * * @author $Author: l2fprod $ * @version $Revision: 1.19 $, $Date: 2006/07/22 10:04:33 $ */ public class SkinLookAndFeel extends BasicLookAndFeel { /** * Description of the Field * * @deprecated Will be soon replaced by {@link #version()} */ public final static String VERSION = version(); /** * Returns the Skin Look And Feel version * * @return the Skin Look And Feel version */ public static String version() { return "6.7"; } public static String date() { return "07/22/2006 01:46 PM"; } private static Skin c_CurrentSkin; private static ZipResourceLoader c_ResourceLoader; /** * Constructs a new SkinLookAndFeel */ public SkinLookAndFeel() { UIManager.getLookAndFeelDefaults().put( "ClassLoader", getClass().getClassLoader()); } /** * Gets the Name attribute of the SkinLookAndFeel object * * @return The Name value */ public String getName() { return "SkinLF"; } /** * Gets the Description attribute of the SkinLookAndFeel object * * @return The Description value */ public String getDescription() { return "Skin Look and Feel"; } /** * Gets the ID attribute of the SkinLookAndFeel object * * @return The ID value */ public String getID() { return "SkinLF"; } /** * Gets the NativeLookAndFeel attribute of the SkinLookAndFeel object * * @return The NativeLookAndFeel value */ public boolean isNativeLookAndFeel() { return false; } public boolean getSupportsWindowDecorations() { return true; } /** * Gets the SupportedLookAndFeel attribute of the SkinLookAndFeel object * * @return The SupportedLookAndFeel value */ public boolean isSupportedLookAndFeel() { return true; } /** * Description of the Method * * @param table Description of Parameter */ protected void initClassDefaults(UIDefaults table) { super.initClassDefaults(table); java.util.Vector list = new java.util.Vector(); if (getSkin().getProgress() != null && getSkin().getProgress().status()) { list.addElement("ProgressBarUI"); list.addElement(SkinProgressBarUI.class.getName()); } if (getSkin().getTab() != null && getSkin().getTab().status()) { list.addElement("TabbedPaneUI"); list.addElement(SkinTabbedPaneUI.class.getName()); } if (getSkin().getFrame() != null && getSkin().getFrame().status()) { list.addElement("InternalFrameUI"); list.addElement(SkinInternalFrameUI.class.getName()); if (OS.isOneDotFourOrMore()) { // add support for decorated frames list.addElement("RootPaneUI"); list.addElement(SkinRootPaneUI.class.getName()); } list.addElement("WindowButtonUI"); list.addElement(SkinWindowButtonUI.class.getName()); } if (getSkin().getSlider() != null && getSkin().getSlider().status()) { list.addElement("SliderUI"); list.addElement(SkinSliderUI.class.getName()); } if (getSkin().getScrollbar() != null && getSkin().getScrollbar().status()) { list.addElement("ScrollBarUI"); list.addElement(SkinScrollBarUI.class.getName()); } if (getSkin().getButton() != null && getSkin().getButton().status()) { list.addElement("ButtonUI"); list.addElement(SkinButtonUI.class.getName()); list.addElement("ToggleButtonUI"); list.addElement(SkinToggleButtonUI.class.getName()); } if (getSkin().getSeparator() != null && getSkin().getSeparator().status()) { list.addElement("SeparatorUI"); list.addElement(SkinSeparatorUI.class.getName()); } Object[] uiDefaults = { "CheckBoxUI", SkinCheckBoxUI.class.getName(), "ComboBoxUI", SkinComboBoxUI.class.getName(), "CheckBoxMenuItemUI", SkinCheckBoxMenuItemUI.class.getName(), "MenuItemUI", SkinMenuItemUI.class.getName(), "MenuUI", SkinMenuUI.class.getName(), "MenuBarUI", SkinMenuBarUI.class.getName(), "ToolBarUI", SkinToolBarUI.class.getName(), // "ListUI", SkinListUI.class.getName(), "PopupMenuUI", SkinPopupMenuUI.class.getName(), "RadioButtonUI", SkinRadioButtonUI.class.getName(), "RadioButtonMenuItemUI", SkinRadioButtonMenuItemUI.class.getName(), "PanelUI", SkinPanelUI.class.getName(), "DesktopPaneUI", SkinDesktopPaneUI.class.getName(), "DesktopIconUI", SkinDesktopIconUI.class.getName(), "TableHeaderUI", SkinTableHeaderUI.class.getName(), // there is no basic filechooser ui! // so we use the filechooser from metal :( "FileChooserUI", SkinFileChooserUI.class.getName(), "TextFieldUI", "javax.swing.plaf.metal.MetalTextFieldUI", "SplitPaneUI", (Boolean.TRUE.equals(UIManager.get("JSplitPane.alternateUI")) ? (SkinSplitPaneUI.class.getName()) : "javax.swing.plaf.basic.BasicSplitPaneUI"), "TreeUI", SkinTreeUI.class.getName(), "OptionPaneUI", SkinOptionPaneUI.class.getName(), "ToolTipUI", SkinToolTipUI.class.getName(), }; for (int i = 0; i < uiDefaults.length; i++) { list.addElement(uiDefaults[i]); } Object[] results = new Object[list.size()]; list.copyInto(results); table.putDefaults(results); } /** * Description of the Method * * @param table Description of Parameter */ protected void initSystemColorDefaults(UIDefaults table) { super.initSystemColorDefaults(table); String[] skinColors = getSkin().getColors(); if (skinColors != null) { loadSystemColors(table, skinColors, isNativeLookAndFeel()); } else { loadSystemColors(table, new String[0], isNativeLookAndFeel()); } } /** * Description of the Method * * @param table Description of Parameter */ protected void initComponentDefaults(UIDefaults table) { super.initComponentDefaults(table); loadResourceBundle(table); // *** Tree Object treeExpandedIcon = SkinTreeUI.ExpandedIcon.createExpandedIcon(); Object treeCollapsedIcon = SkinTreeUI.CollapsedIcon.createCollapsedIcon(); Object checkIcon = new SkinCheckBoxIcon(); Object[] defaults = { // // Buttons "Button.dashedRectGapX", new Integer(5), "Button.dashedRectGapY", new Integer(4), "Button.dashedRectGapWidth", new Integer(10), "Button.dashedRectGapHeight", new Integer(8), "Button.textShiftOffset", new Integer(1), "Desktop.background", table.get("desktop"), "ToggleButton.textShiftOffset", new Integer(1), "CheckBoxMenuItem.checkIcon", checkIcon, "RadioButtonMenuItem.checkIcon", checkIcon, "SplitPane.dividerSize", new Integer(4), "SplitPane.background", table.get("control"), "ProgressBar.cellLength", new Integer(7), "ProgressBar.cellSpacing", new Integer(2), "Tree.expandedIcon", treeExpandedIcon, "Tree.collapsedIcon", treeCollapsedIcon, "Tree.line", Color.black, // horiz lines "Tree.hash", Color.black, // legs "Tree.rowHeight", new Integer(0), "Tree.textForeground", table.get("textText"), "Tree.textBackground", table.get("window"), "FileChooser.usesSingleFilePane", Boolean.TRUE, "FileChooser.ancestorInputMap", new UIDefaults.LazyInputMap(new Object[] { "ESCAPE", "cancelSelection", "F2", "editFileName", "F5", "refresh", "BACK_SPACE", "Go Up", "ENTER", "approveSelection" }), "InternalFrame.minimizeIconBackground", table.get("control"), "InternalFrame.resizeIconHighlight", table.get("controlHighlight"), "InternalFrame.resizeIconShadow", table.get("controlShadow"), "ToolTip.border", new BorderUIResource(new CompoundBorder(new LineBorder(Color.black), new EmptyBorder(0, 2, 0, 2))), }; table.putDefaults(defaults); // bug fixed by Christopher R. Staley [[email protected]] // for JDK1.3 we use InputMap and for JDK1.1,1.2 we use KeyBindings try { Class.forName("javax.swing.InputMap"); Class uidefaults = Class.forName("javax.swing.UIDefaults"); Class[] innerClasses = uidefaults.getClasses(); java.lang.reflect.Constructor c = null; for (int i = 0; i < innerClasses.length; i++) { if (innerClasses[i].getName().endsWith("LazyInputMap")) { c = innerClasses[i].getConstructor(new Class[] { Object[].class }); break; } } Object[] fieldInputMap = new Object[] { "ctrl C", DefaultEditorKit.copyAction, "ctrl V", DefaultEditorKit.pasteAction, "ctrl X", DefaultEditorKit.cutAction, "COPY", DefaultEditorKit.copyAction, "PASTE", DefaultEditorKit.pasteAction, "CUT", DefaultEditorKit.cutAction, "shift LEFT", DefaultEditorKit.selectionBackwardAction, "shift KP_LEFT", DefaultEditorKit.selectionBackwardAction, "shift RIGHT", DefaultEditorKit.selectionForwardAction, "shift KP_RIGHT", DefaultEditorKit.selectionForwardAction, "ctrl LEFT", DefaultEditorKit.previousWordAction, "ctrl KP_LEFT", DefaultEditorKit.previousWordAction, "ctrl RIGHT", DefaultEditorKit.nextWordAction, "ctrl KP_RIGHT", DefaultEditorKit.nextWordAction, "ctrl shift LEFT", DefaultEditorKit.selectionPreviousWordAction, "ctrl shift KP_LEFT", DefaultEditorKit.selectionPreviousWordAction, "ctrl shift RIGHT", DefaultEditorKit.selectionNextWordAction, "ctrl shift KP_RIGHT", DefaultEditorKit.selectionNextWordAction, "ctrl A", DefaultEditorKit.selectAllAction, "HOME", DefaultEditorKit.beginLineAction, "END", DefaultEditorKit.endLineAction, "shift HOME", DefaultEditorKit.selectionBeginLineAction, "shift END", DefaultEditorKit.selectionEndLineAction, "typed \010", DefaultEditorKit.deletePrevCharAction, "DELETE", DefaultEditorKit.deleteNextCharAction, "RIGHT", DefaultEditorKit.forwardAction, "LEFT", DefaultEditorKit.backwardAction, "KP_RIGHT", DefaultEditorKit.forwardAction, "KP_LEFT", DefaultEditorKit.backwardAction, "ENTER", JTextField.notifyAction, "ctrl BACK_SLASH", "unselect", "control shift O", "toggle-componentOrientation" }; Object[] multilineInputMap = new Object[] { "ctrl C", DefaultEditorKit.copyAction, "ctrl V", DefaultEditorKit.pasteAction, "ctrl X", DefaultEditorKit.cutAction, "COPY", DefaultEditorKit.copyAction, "PASTE", DefaultEditorKit.pasteAction, "CUT", DefaultEditorKit.cutAction, "shift LEFT", DefaultEditorKit.selectionBackwardAction, "shift KP_LEFT", DefaultEditorKit.selectionBackwardAction, "shift RIGHT", DefaultEditorKit.selectionForwardAction, "shift KP_RIGHT", DefaultEditorKit.selectionForwardAction, "ctrl LEFT", DefaultEditorKit.previousWordAction, "ctrl KP_LEFT", DefaultEditorKit.previousWordAction, "ctrl RIGHT", DefaultEditorKit.nextWordAction, "ctrl KP_RIGHT", DefaultEditorKit.nextWordAction, "ctrl shift LEFT", DefaultEditorKit.selectionPreviousWordAction, "ctrl shift KP_LEFT", DefaultEditorKit.selectionPreviousWordAction, "ctrl shift RIGHT", DefaultEditorKit.selectionNextWordAction, "ctrl shift KP_RIGHT", DefaultEditorKit.selectionNextWordAction, "ctrl A", DefaultEditorKit.selectAllAction, "HOME", DefaultEditorKit.beginLineAction, "END", DefaultEditorKit.endLineAction, "shift HOME", DefaultEditorKit.selectionBeginLineAction, "shift END", DefaultEditorKit.selectionEndLineAction, "UP", DefaultEditorKit.upAction, "KP_UP", DefaultEditorKit.upAction, "DOWN", DefaultEditorKit.downAction, "KP_DOWN", DefaultEditorKit.downAction, "PAGE_UP", DefaultEditorKit.pageUpAction, "PAGE_DOWN", DefaultEditorKit.pageDownAction, "shift PAGE_UP", "selection-page-up", "shift PAGE_DOWN", "selection-page-down", "ctrl shift PAGE_UP", "selection-page-left", "ctrl shift PAGE_DOWN", "selection-page-right", "shift UP", DefaultEditorKit.selectionUpAction, "shift KP_UP", DefaultEditorKit.selectionUpAction, "shift DOWN", DefaultEditorKit.selectionDownAction, "shift KP_DOWN", DefaultEditorKit.selectionDownAction, "ENTER", DefaultEditorKit.insertBreakAction, "typed \010", DefaultEditorKit.deletePrevCharAction, "DELETE", DefaultEditorKit.deleteNextCharAction, "RIGHT", DefaultEditorKit.forwardAction, "LEFT", DefaultEditorKit.backwardAction, "KP_RIGHT", DefaultEditorKit.forwardAction, "KP_LEFT", DefaultEditorKit.backwardAction, "TAB", DefaultEditorKit.insertTabAction, "ctrl BACK_SLASH", "unselect", "ctrl HOME", DefaultEditorKit.beginAction, "ctrl END", DefaultEditorKit.endAction, "ctrl shift HOME", DefaultEditorKit.selectionBeginAction, "ctrl shift END", DefaultEditorKit.selectionEndAction, "ctrl T", "next-link-action", "ctrl shift T", "previous-link-action", "ctrl SPACE", "activate-link-action", "control shift O", "toggle-componentOrientation" }; table.put( "TextField.focusInputMap", c.newInstance(new Object[] { fieldInputMap })); table.put( "PasswordField.focusInputMap", c.newInstance(new Object[] { fieldInputMap })); table.put( "TextArea.focusInputMap", c.newInstance(new Object[] { multilineInputMap })); table.put( "TextPane.focusInputMap", c.newInstance(new Object[] { multilineInputMap })); table.put( "EditorPane.focusInputMap", c.newInstance(new Object[] { multilineInputMap })); } catch (Throwable e) { JTextComponent.KeyBinding[] fieldBindings = makeKeyBindings( new Object[] { "control C", DefaultEditorKit.copyAction, "control V", DefaultEditorKit.pasteAction, "control X", DefaultEditorKit.cutAction, "COPY", DefaultEditorKit.copyAction, "PASTE", DefaultEditorKit.pasteAction, "CUT", DefaultEditorKit.cutAction, "control INSERT", DefaultEditorKit.copyAction, "shift INSERT", DefaultEditorKit.pasteAction, "shift DELETE", DefaultEditorKit.cutAction, "control A", DefaultEditorKit.selectAllAction, "control BACK_SLASH", "unselect", "shift LEFT", DefaultEditorKit.selectionBackwardAction, "shift RIGHT", DefaultEditorKit.selectionForwardAction, "control LEFT", DefaultEditorKit.previousWordAction, "control RIGHT", DefaultEditorKit.nextWordAction, "control shift LEFT", DefaultEditorKit.selectionPreviousWordAction, "control shift RIGHT", DefaultEditorKit.selectionNextWordAction, "HOME", DefaultEditorKit.beginLineAction, "END", DefaultEditorKit.endLineAction, "shift HOME", DefaultEditorKit.selectionBeginLineAction, "shift END", DefaultEditorKit.selectionEndLineAction, "BACK_SPACE", DefaultEditorKit.deletePrevCharAction, "DELETE", DefaultEditorKit.deleteNextCharAction, "RIGHT", DefaultEditorKit.forwardAction, "LEFT", DefaultEditorKit.backwardAction, "KP_RIGHT", DefaultEditorKit.forwardAction, "KP_LEFT", DefaultEditorKit.backwardAction, "ENTER", JTextField.notifyAction, "control shift O", "toggle-componentOrientation" }); JTextComponent.KeyBinding[] multilineBindings = makeKeyBindings( new Object[] { "control C", DefaultEditorKit.copyAction, "control V", DefaultEditorKit.pasteAction, "control X", DefaultEditorKit.cutAction, "COPY", DefaultEditorKit.copyAction, "PASTE", DefaultEditorKit.pasteAction, "CUT", DefaultEditorKit.cutAction, "control INSERT", DefaultEditorKit.copyAction, "shift INSERT", DefaultEditorKit.pasteAction, "shift DELETE", DefaultEditorKit.cutAction, "shift LEFT", DefaultEditorKit.selectionBackwardAction, "shift RIGHT", DefaultEditorKit.selectionForwardAction, "control LEFT", DefaultEditorKit.previousWordAction, "control RIGHT", DefaultEditorKit.nextWordAction, "control shift LEFT", DefaultEditorKit.selectionPreviousWordAction, "control shift RIGHT", DefaultEditorKit.selectionNextWordAction, "control A", DefaultEditorKit.selectAllAction, "control BACK_SLASH", "unselect", "HOME", DefaultEditorKit.beginLineAction, "END", DefaultEditorKit.endLineAction, "shift HOME", DefaultEditorKit.selectionBeginLineAction, "shift END", DefaultEditorKit.selectionEndLineAction, "control HOME", DefaultEditorKit.beginAction, "control END", DefaultEditorKit.endAction, "control shift HOME", DefaultEditorKit.selectionBeginAction, "control shift END", DefaultEditorKit.selectionEndAction, "UP", DefaultEditorKit.upAction, "DOWN", DefaultEditorKit.downAction, "BACK_SPACE", DefaultEditorKit.deletePrevCharAction, "DELETE", DefaultEditorKit.deleteNextCharAction, "RIGHT", DefaultEditorKit.forwardAction, "LEFT", DefaultEditorKit.backwardAction, "KP_RIGHT", DefaultEditorKit.forwardAction, "KP_LEFT", DefaultEditorKit.backwardAction, "PAGE_UP", DefaultEditorKit.pageUpAction, "PAGE_DOWN", DefaultEditorKit.pageDownAction, "shift PAGE_UP", "selection-page-up", "shift PAGE_DOWN", "selection-page-down", "control shift PAGE_UP", "selection-page-left", "control shift PAGE_DOWN", "selection-page-right", "shift UP", DefaultEditorKit.selectionUpAction, "shift DOWN", DefaultEditorKit.selectionDownAction, "ENTER", DefaultEditorKit.insertBreakAction, "TAB", DefaultEditorKit.insertTabAction, "control T", "next-link-action", "control shift T", "previous-link-action", "control SPACE", "activate-link-action", "control shift O", "toggle-componentOrientation" }); table.put("TextField.keyBindings", fieldBindings); table.put("PasswordField.keyBindings", fieldBindings); table.put("TextArea.keyBindings", multilineBindings); table.put("TextPane.keyBindings", multilineBindings); table.put("EditorPane.keyBindings", multilineBindings); } LafPluginSupport.initAllDefaultsEntries(table); } public void initialize() { super.initialize(); LafPluginSupport.initialize(); } /** * Description of the Method * * @param table Description of Parameter */ private void loadResourceBundle(UIDefaults table) { ResourceBundle bundle = ResourceBundle.getBundle("com.l2fprod.gui.plaf.skin.resources.skin"); Enumeration iter = bundle.getKeys(); while (iter.hasMoreElements()) { String key = (String)iter.nextElement(); table.put(key, fixMnemonic(key, bundle.getObject(key))); } } private Object fixMnemonic(String key, Object value) { if (key.endsWith("Mnemonic") && value instanceof String) { try { return Integer.decode((String) value); } catch (NumberFormatException ignored) {} } return value; } /** * Set the skin used by the Skin Look And Feel * * @param skin a skin */ public static void setSkin(Skin skin) { c_CurrentSkin = skin; } /** * Return the current skin.
* * If the current skin has not yet been set, Skin Look And Feel will attempt * to load a themepack: *
    *
  • from the property skinlf.themepack (set on the command line using * -Dskinlf.themepack= * path-to-themepack or using System.getProperties().put("skinlf.themepack", path) *
  • *
  • from the user theme pack located in * <user.home>/.skinlf/themepack.zip.
  • *
  • from the user theme pack located in * <user.home>/.skinlf/themepack.zip
  • *
  • from the classloader used to load the SkinLookAndFeel class, looking for "/themepack.zip"
  • *
* If after this lookup, no theme pack is found, an Error will be thrown. * * @return the current skin */ public static Skin getSkin() { Skin s = c_CurrentSkin; if (s == null) { try { // first the property String themepack = System.getProperty("skinlf.themepack"); if (themepack != null) { // a property exists, use it s = loadThemePack(themepack); } else { // then ~/.skinlf/themepack.zip File themepackFile = new File( System.getProperty("user.home") + File.separator + ".skinlf" + File.separator + "themepack.zip"); if (!themepackFile.isFile()) { // then ~/skinlf/themepack.zip themepackFile = new File( System.getProperty("user.home") + File.separator + "skinlf" + File.separator + "themepack.zip"); } if (themepackFile.isFile()) { s = loadThemePack(themepackFile.toURL()); } else { // finally in the classpath URL u = SkinLookAndFeel.class.getResource("/themepack.zip"); if (u != null) { s = loadThemePack(u); } else { throw new Error("themepack.zip not found in classpath"); } } } setSkin(s); } catch (Throwable th) { throw new Error( "Skin was null and an error occurs while trying to load the user theme pack. Source exception message is " + th.getMessage()); } } return s; } /** * @deprecated no longer needed */ public static void enable() throws javax.swing.UnsupportedLookAndFeelException { SkinLookAndFeel lnf = new SkinLookAndFeel(); UIManager.setLookAndFeel(lnf); UIManager.getLookAndFeelDefaults().put("ClassLoader", lnf.getClass().getClassLoader()); } /** * Load a skin from the given filename.
SkinLF will use the filename to * guess which theme to instanciate * * @param filename the given filename * @return Description of the Returned Value * @exception Exception Description of Exception */ public static Skin loadSkin(String filename) throws Exception { return loadSkin(SkinUtils.toURL(new java.io.File(filename))); } /** * Load a skin from the given url.
SkinLF will use the url filename to * guess which theme to instanciate * * @param url Description of Parameter * @return Description of the Returned Value * @exception Exception Description of Exception */ public static Skin loadSkin(java.net.URL url) throws Exception { String filename = url.getFile(); if (filename.endsWith("gtkrc")) { return new GtkSkin(url, getInputStream(url)); } else if (filename.endsWith(".themerc")) { return new KdeSkin(url, getInputStream(url)); } else { throw new Exception( "Unable to load this skin " + url + " (by using filename matching), " + " try an explicit constructor"); } } /** * Load the default theme pack.
Skin Look And Feel will look for the * resource file named skinlf-themepack.xml in the user * classpath (using SkinLookAndFeel.class.getResource("/skinlf-themepack.xml")). * * @return Description of the Returned Value * @exception Exception Description of Exception */ public static Skin loadDefaultThemePack() throws Exception { return loadThemePackDefinition( SkinLookAndFeel.class.getResource("/skinlf-themepack.xml")); } /** * Load a Theme Pack from the given zip file.
See * L2FProd.com website for the * complete description of a theme pack. * * @param filename the theme pack filename * @return Description of the Returned Value * @exception Exception Description of Exception */ public static Skin loadThemePack(String filename) throws Exception { if (filename.startsWith("http://") || filename.startsWith("https://") || filename.startsWith("ftp://") || filename.startsWith("file:/") || filename.startsWith("jar:/")) { return loadThemePack(new URL(filename)); } else { return loadThemePack(SkinUtils.toURL(new File(filename))); } } /** * Load a Theme Pack from the given zip url.
See * L2FProd.com website for the * complete description of a theme pack. * * @param url the theme pack url * @return Description of the Returned Value * @exception Exception Description of Exception * @see com.l2fprod.util.ZipResourceLoader */ public static Skin loadThemePack(URL url) throws Exception { return loadThemePack(url.openStream()); } /** * Load a Theme Pack from the given stream pointing to a themepack.
See * L2FProd.com website for the * complete description of a theme pack. * * @param streamToPack stream to the themepack * @see com.l2fprod.util.ZipResourceLoader */ public static Skin loadThemePack(InputStream streamToPack) throws Exception { ZipResourceLoader loader = new ZipResourceLoader(streamToPack); c_ResourceLoader = loader; Skin skin = loadThemePackDefinition( new URL("http://dummyhostforziploader/skinlf-themepack.xml")); c_ResourceLoader = null; return skin; } /** * Load a Theme Pack from the given theme pack definition.
URLs in the * definition must be relative * * @param url the theme pack definition url * @return Description of the Returned Value * @exception Exception Description of Exception */ public static Skin loadThemePackDefinition(java.net.URL url) throws Exception { Skin skin = null; XMLElement element = new XMLElement(); element.parseFromReader(new java.io.InputStreamReader(getInputStream(url))); checkRequiredVersion(element.getProperty("REQUIRE")); // reset any custom properties that may be set in the skin UIManager.put("JDesktopPane.backgroundEnabled", Boolean.FALSE); UIManager.put("PopupMenu.animation", Boolean.FALSE); UIManager.put("ScrollBar.alternateLayout", Boolean.FALSE); UIManager.put("JSplitPane.alternateUI", Boolean.FALSE); Enumeration enumeration = element.enumerateChildren(); while (enumeration.hasMoreElements()) { element = (XMLElement)enumeration.nextElement(); String tagName = element.getTagName().toLowerCase(); if ("skin".equals(tagName)) { skin = buildSkin(url, element); } else if ("property".equals(tagName)) { String type = element.getProperty("TYPE"); // Take the boolean class if the typeclass is not specified for // backward compatibility. if (type == null || "".equals(type) || "boolean".equalsIgnoreCase(type) || "java.lang.Boolean".equalsIgnoreCase(type)) { UIManager.put( element.getProperty("NAME"), Boolean.valueOf(element.getProperty("VALUE"))); } else if ( "int".equalsIgnoreCase(type) || "java.lang.Integer".equalsIgnoreCase(type)) { UIManager.put( element.getProperty("NAME"), Integer.valueOf(element.getProperty("VALUE"))); } else if ( "String".equalsIgnoreCase(type) || "java.lang.String".equalsIgnoreCase(type)) { UIManager.put( element.getProperty("NAME"), element.getProperty("VALUE")); } else if ( "Color".equalsIgnoreCase(type) || "java.awt.Color".equalsIgnoreCase(type)) { Color color = Color.decode(element.getProperty("VALUE")); UIManager.put( element.getProperty("NAME"), new ColorUIResource(color)); } else if ( "Insets".equalsIgnoreCase(type) || "java.awt.Insets".equalsIgnoreCase(type)) { Insets insets = parseInsets(element.getProperty("VALUE")); UIManager.put( element.getProperty("NAME"), new InsetsUIResource( insets.top, insets.left, insets.bottom, insets.right)); } else if ( "Dimension".equalsIgnoreCase(type) || "java.awt.Dimension".equalsIgnoreCase(type)) { Dimension dim = parseDimension(element.getProperty("VALUE")); UIManager.put( element.getProperty("NAME"), new DimensionUIResource(dim.width, dim.height)); } else if ( "LineBorder".equalsIgnoreCase(type) || "javax.swing.border.LineBorder".equalsIgnoreCase(type)) { boolean rounded = false; Color color = Color.black; int thickness = 1; int padding = 0; String temp; temp = element.getProperty("ROUNDED"); if (temp != null) { rounded = (Boolean.getBoolean(temp)); } temp = element.getProperty("THICKNESS"); if (temp != null) { thickness = Integer.parseInt(temp); } temp = element.getProperty("PADDING"); if (temp != null) { padding = Integer.parseInt(temp); } temp = element.getProperty("COLOR"); if (temp != null) { color = Color.decode(temp); } Border border = new com.l2fprod.gui.border.LineBorder(color, thickness, rounded); if (padding > 0) { border = new CompoundBorder( border, BorderFactory.createEmptyBorder( padding, padding, padding, padding)); } UIManager.put( element.getProperty("NAME"), new BorderUIResource(border)); } else if ( "EmptyBorder".equalsIgnoreCase(type) || "javax.swing.border.EmptyBorder".equalsIgnoreCase(type)) { Insets insets = parseInsets(element.getProperty("VALUE")); Border border = new javax.swing.border.EmptyBorder(insets); UIManager.put( element.getProperty("NAME"), new BorderUIResource(border)); } } else if ("font".equalsIgnoreCase(tagName)) { String[] fontStyle = StringUtils.splitString(element.getProperty("VALUE"), ","); Font f = SkinUtils.getFont( fontStyle[0], Integer.parseInt(fontStyle[1]), Integer.parseInt(fontStyle[2])); if (f != null) { if ("Global".equalsIgnoreCase(element.getProperty("NAME"))) { SkinUtils.setFont(new FontUIResource(f)); } else { UIManager.put(element.getProperty("NAME"), new FontUIResource(f)); } } } else if ("icon".equalsIgnoreCase(tagName)) { final URL iconURL = new URL(url, element.getProperty("VALUE")); ImageIcon icon = new ImageIcon(SkinUtils.loadImage(iconURL)); UIManager.put(element.getProperty("NAME"), new IconUIResource(icon)); // put the default internal icon at work for JOptionPane too if ("InternalFrame.icon".equals(element.getProperty("NAME"))) { JOptionPane.getRootFrame().setIconImage(icon.getImage()); } } } return skin; } /** * Description of the Method * * @param required Description of Parameter * @exception IncorrectVersionException */ public static void checkRequiredVersion(String required) throws IncorrectVersionException { if ((required == null) || ("".equals(required))) { return; } IncorrectVersionException.checkRequiredVersion(version(), required); } /** * Gets the InputStream attribute of the SkinLookAndFeel class * * @param url Description of Parameter * @return The InputStream value * @exception Exception Description of Exception */ static InputStream getInputStream(URL url) throws Exception { if (c_ResourceLoader != null) { return c_ResourceLoader.getZipResource(url).getInputStream(); } else { return url.openStream(); } } /** * Gets the URLContent attribute of the SkinLookAndFeel class * * @param url Description of Parameter * @return The URLContent value * @exception Exception Description of Exception */ static byte[] getURLContent(URL url) throws Exception { if (c_ResourceLoader == null) { BufferedInputStream input = new BufferedInputStream(url.openStream()); ByteArrayOutputStream output = new ByteArrayOutputStream(); int read; while ((read = input.read()) != -1) { output.write(read); } return output.toByteArray(); } else { return c_ResourceLoader.getZipResource(url).getURLContent(); } } /** * Description of the Method * * @param str Description of Parameter * @return Description of the Returned Value */ private static Dimension parseDimension(String str) { int[] dim = new int[2]; Arrays.fill(dim, 0); String[] dimStrings = StringUtils.splitString(str, "{,}"); for (int i = 0; i < dim.length; i++) { dim[i] = Integer.parseInt(dimStrings[i]); } return new Dimension(dim[0], dim[1]); } /** * Description of the Method * * @param str Description of Parameter * @return Description of the Returned Value */ private static Insets parseInsets(String str) { int[] insets = new int[4]; Arrays.fill(insets, 0); String[] insetsString = StringUtils.splitString(str, "{,}"); for (int i = 0; i < insets.length; i++) { insets[i] = Integer.parseInt(insetsString[i]); } return new Insets(insets[0], insets[1], insets[2], insets[3]); } /** * Description of the Method * * @param context Description of Parameter * @param element Description of Parameter * @return Description of the Returned Value * @exception Exception Description of Exception */ private static Skin buildSkin(URL context, XMLElement element) throws Exception { Skin result = null; if (element.countChildren() == 0) { result = loadSkin(new URL(context, element.getProperty("URL"))); } else if (element.countChildren() == 2) { // it's a compound skin result = new CompoundSkin( buildSkin(context, (XMLElement)element.getChildren().elementAt(0)), buildSkin(context, (XMLElement)element.getChildren().elementAt(1))); } return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy