Revision 44864 trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.coreplugin.app/org.gvsig.coreplugin.app.mainplugin/src/main/java/org/gvsig/coreplugin/preferences/general/appearance/AppearancePage.java

View differences:

AppearancePage.java
88 88
        String[][] lafs = {
89 89
            { "Plastic XP", "com.jgoodies.looks.plastic.PlasticXPLookAndFeel" },
90 90
            { "Quaqua", "ch.randelshofer.quaqua.QuaquaLookAndFeel" },
91
            { "Web", "com.alee.laf.WebLookAndFeel" },
92
            { "Sea Glass", "com.seaglasslookandfeel.SeaGlassLookAndFeel" },
91
//            { "Web", "com.alee.laf.WebLookAndFeel" },
92
//            { "Sea Glass", "com.seaglasslookandfeel.SeaGlassLookAndFeel" },
93 93
//            Substance da errores en la carga de gvSIG y el L&F no funciona 
94 94
//            { "Substance", "org.pushingpixels.substance.api.SubstanceLookAndFeel" },
95 95
//            { "SubstanceAutumn", "org.pushingpixels.substance.api.skin.SubstanceAutumnLookAndFeel" },
96 96
//            { "SubstanceOfficeBlue2007", "org.pushingpixels.substance.api.skin.SubstanceOfficeBlue2007LookAndFeel" },
97 97
//            { "SubstanceBusiness", "org.pushingpixels.substance.api.skin.SubstanceBusinessLookAndFeel" },
98 98
//            { "SubstanceMistAqua", "org.pushingpixels.substance.api.skin.SubstanceMistAquaLookAndFeel" },
99
            { "Acryl", "com.jtattoo.plaf.acryl.AcrylLookAndFeel" },
100
            { "Fast", "com.jtattoo.plaf.fast.FastLookAndFeel" },
101
            { "Bernstein", "com.jtattoo.plaf.bernstein.BernsteinLookAndFeel" },
102
            { "Aluminium", "com.jtattoo.plaf.aluminium.AluminiumLookAndFeel" },
103
            { "Aero", "com.jtattoo.plaf.aero.AeroLookAndFeel"  },
104
            { "HiFi", "com.jtattoo.plaf.hifi.HiFiLookAndFeel" },
105
            { "McWin", "com.jtattoo.plaf.mcwin.McWinLookAndFeel" },
106
            { "Mint", "com.jtattoo.plaf.mint.MintLookAndFeel" },
107
            { "Noire", "com.jtattoo.plaf.noire.NoireLookAndFeel" },
108
            { "Smart", "com.jtattoo.plaf.smart.SmartLookAndFeel" },
109
            { "Luna", "com.jtattoo.plaf.luna.LunaLookAndFeel" },
110
            { "Texture", "com.jtattoo.plaf.texture.TextureLookAndFeel" }
99
//            { "Acryl", "com.jtattoo.plaf.acryl.AcrylLookAndFeel" },
100
//            { "Fast", "com.jtattoo.plaf.fast.FastLookAndFeel" },
101
//            { "Bernstein", "com.jtattoo.plaf.bernstein.BernsteinLookAndFeel" },
102
//            { "Aluminium", "com.jtattoo.plaf.aluminium.AluminiumLookAndFeel" },
103
//            { "Aero", "com.jtattoo.plaf.aero.AeroLookAndFeel"  },
104
//            { "HiFi", "com.jtattoo.plaf.hifi.HiFiLookAndFeel" },
105
//            { "McWin", "com.jtattoo.plaf.mcwin.McWinLookAndFeel" },
106
//            { "Mint", "com.jtattoo.plaf.mint.MintLookAndFeel" },
107
//            { "Noire", "com.jtattoo.plaf.noire.NoireLookAndFeel" },
108
//            { "Smart", "com.jtattoo.plaf.smart.SmartLookAndFeel" },
109
//            { "Luna", "com.jtattoo.plaf.luna.LunaLookAndFeel" },
110
//            { "Texture", "com.jtattoo.plaf.texture.TextureLookAndFeel" }
111 111
        };            
112 112

  
113 113
        for( String[] laf : lafs ) {
......
130 130
                try {
131 131
                    Class<?> lookAndFeelClass = Class.forName(lookAndfeelInfo.getClassName());
132 132
                    LookAndFeel lookAndFeel = (LookAndFeel) lookAndFeelClass.newInstance();
133
                    if( lookAndFeel.isSupportedLookAndFeel() ) {
133
                    if( lookAndFeel.isSupportedLookAndFeel() && 
134
                        !StringUtils.equalsIgnoreCase(lookAndFeel.getID(),"motif") ) {
134 135
                        supporteds.add(lookAndfeelInfo);
135 136
                    }
136 137
                } catch (Throwable th) {

Also available in: Unified diff