Package org.jvnet.substance.skin

Examples of org.jvnet.substance.skin.SubstanceOfficeSilver2007LookAndFeel


                            } else if (saharaRadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceSaharaLookAndFeel());
                            } else if (moderateRadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceModerateLookAndFeel());
                            } else if (officeSilver2007RadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceOfficeSilver2007LookAndFeel());
                            } else if (officeBlue2007RadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceOfficeBlue2007LookAndFeel());
                            } else if (nebulaRadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceNebulaLookAndFeel());
                            } else if (nebulaBrickWallRadioButtonMenuItem.isSelected()) {
View Full Code Here


        JFrame.setDefaultLookAndFeelDecorated(true);
        java.awt.EventQueue.invokeLater(new Runnable() {

            public void run() {
                try {
                    UIManager.setLookAndFeel(new SubstanceOfficeSilver2007LookAndFeel());
                    UIManager.put("ScrollBar.width", 32);
                } catch (Exception e) {
                    System.out.println("Substance Raven Graphite failed to initialize");
                }
                //new NewApplication().setVisible(true);
View Full Code Here

        ImageIcon lafIcon = new ImageIcon(getClass().getResource(
                ViewHelpers.ICONS16 + "laf.png"));

        DefaultListModel<LafItem> listModel = new DefaultListModel<>();
        listModel.addElement(
                new LafItem(lafIcon, new SubstanceOfficeSilver2007LookAndFeel()));
        listModel.addElement(
                new LafItem(lafIcon, new SubstanceOfficeBlue2007LookAndFeel()));
        listModel.addElement(
                new LafItem(lafIcon, new SubstanceCremeLookAndFeel()));
        listModel.addElement(
View Full Code Here

    public void start() {
        JFrame.setDefaultLookAndFeelDecorated(true);
        JDialog.setDefaultLookAndFeelDecorated(true);

        try {
            UIManager.setLookAndFeel(new SubstanceOfficeSilver2007LookAndFeel());
        } catch (UnsupportedLookAndFeelException ex) {
            LOGGER.log(Level.SEVERE, "Substance Look and Feel Error", ex);
        }

        // TabbedPane border settings in substance look and feel.
View Full Code Here

TOP

Related Classes of org.jvnet.substance.skin.SubstanceOfficeSilver2007LookAndFeel

Copyright © 2018 www.massapicom. 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.