Package org.jvnet.substance.skin

Examples of org.jvnet.substance.skin.SubstanceBusinessBlackSteelLookAndFeel


          dpiCombo.setSelectedIndex(5);

          if (s.equals(SYSTEM_LAF_NAME)) {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
          } else if (s.equals(SUBSTANCE_LAF_NAME)) {
            UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
          } else if (s.equals(OCEAN_LAF_NAME)) {
            UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
          } else {
            JOptionPane.showMessageDialog(APP_GUI_FRAME, "Nimbus will be included as soon as it is ready!");
          }
View Full Code Here


    private static void scaleSubstanceLAF(float factor)
    {
    SubstanceLookAndFeel.setFontPolicy(SubstanceFontUtilities.getScaledFontPolicy(factor));

    try {
      UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
    } catch (Exception exc) {
    }

    SwingUtilities.updateComponentTreeUI(APP_GUI_FRAME);
      MAIN_SCROLL.setBorder(null);
View Full Code Here

   */
  public GUI() {
    super();
    try {// loading substance look and feel
      UIManager
          .setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
    } catch (Exception e) {
      e.printStackTrace();
    }
    initialize();
    if (deviceManager == null) {
View Full Code Here

          dpiCombo.setSelectedIndex(5);

          if (s.equals(SYSTEM_LAF_NAME)) {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
          } else if (s.equals(SUBSTANCE_LAF_NAME)) {
            UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
          } else if (s.equals(OCEAN_LAF_NAME)) {
            UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
          } else {
            JOptionPane.showMessageDialog(APP_GUI_FRAME, "Nimbus will be included as soon as it is ready!");
          }
View Full Code Here

    private static void scaleSubstanceLAF(float factor)
    {
    SubstanceLookAndFeel.setFontPolicy(SubstanceFontUtilities.getScaledFontPolicy(factor));

    try {
      UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
    } catch (Exception exc) {
    }

    SwingUtilities.updateComponentTreeUI(APP_GUI_FRAME);
      MAIN_SCROLL.setBorder(null);
View Full Code Here

                            if (businessSkinMenuRadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceBusinessLookAndFeel());
                            } else if (businessBlueSteelRadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceBusinessBlueSteelLookAndFeel());
                            } else if (businessBlackSteelSkinRadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
                            } else if (cremeRadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceCremeLookAndFeel());
                            } else if (cremeCoffeeRadioButtonMenuItem.isSelected()) {
                                UIManager.setLookAndFeel(new SubstanceCremeCoffeeLookAndFeel());
                            } else if (saharaRadioButtonMenuItem.isSelected()) {
View Full Code Here

          dpiCombo.setSelectedIndex(5);

          if (s.equals(SYSTEM_LAF_NAME)) {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
          } else if (s.equals(SUBSTANCE_LAF_NAME)) {
            UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
          } else if (s.equals(OCEAN_LAF_NAME)) {
            UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
          } else {
            JOptionPane.showMessageDialog(APP_GUI_FRAME, "Nimbus will be included as soon as it is ready!");
          }
View Full Code Here

    private static void scaleSubstanceLAF(float factor)
    {
    SubstanceLookAndFeel.setFontPolicy(SubstanceFontUtilities.getScaledFontPolicy(factor));

    try {
      UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
    } catch (Exception exc) {
    }

    SwingUtilities.updateComponentTreeUI(APP_GUI_FRAME);
      MAIN_SCROLL.setBorder(null);
View Full Code Here

TOP

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

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.