Examples of PlasticTheme


Examples of com.jgoodies.plaf.plastic.PlasticTheme

public class PlasticThemeCombo extends JComboBox {
    private static List themeList = PlasticLookAndFeel.getInstalledThemes();

    public static PlasticTheme getTheme(String name) {
        for (Iterator iterator = themeList.iterator(); iterator.hasNext();) {
            PlasticTheme plasticTheme = (PlasticTheme) iterator.next();
            if (plasticTheme.getName().equals(name)) {
                return plasticTheme;
            }
        }
        return null;
    }
View Full Code Here

Examples of com.jgoodies.plaf.plastic.PlasticTheme

    public void apply() {
        PlasticLookAndFeel.setMyCurrentTheme((PlasticTheme) getSelectedItem());
    }

    public void setSelectedTheme(String name) {
        PlasticTheme theme = getTheme(name);
        if (theme != null) {
            setSelectedItem(theme);
        } else {
            name = "Experience Blue";
            setSelectedItem(getTheme(name));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.