5

I have a Class MainWindow which extends JFrame. In MainWindow i have a JMenuBar.

I want to show the MenuBar in OSX on top (next to the Apple Symbol). This only works, when i dont set a Substance Skin. Is it possible to use a Substance Skin and use The MacOS MenuBar?

My Code:

//Set Menu for MacOS
System.setProperty("apple.laf.useScreenMenuBar", "true");
System.setProperty("com.apple.mrj.application.apple.menu.about.name", name);

try {
    SwingUtilities.invokeAndWait(new Runnable() {  
        public void run() {
            SubstanceSkin skin = new GraphiteGlassSkin();
            SubstanceLookAndFeel.setSkin(skin); //WORKS WHEN I COMMENT THIS (WITHOUT SUBSTANCE SKIN)
            JFrame.setDefaultLookAndFeelDecorated(false);
            MainWindow mainWindow = new MainWindow(name);
            mainWindow.setVisible(true);
        }  
    });
} catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (InvocationTargetException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
Kevin Reid
  • 21,218
  • 9
  • 61
  • 82
w1ng
  • 304
  • 1
  • 2
  • 9

2 Answers2

6

You can specify the UI for menu bar alone like this:

                try {
                    UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
                } catch (UnsupportedLookAndFeelException ex) {
                    // log...
                }

                JMenuBar menubar = frame.getJMenuBar(); // assuming you've set the menu bar already
                String os = System.getProperty("os.name");

                if (os.equals("Mac OS X")) {
                    try {
                        System.setProperty("apple.laf.useScreenMenuBar", "true");
                        menubar.setUI((MenuBarUI) Class.forName("com.apple.laf.AquaMenuBarUI").newInstance());
                    } catch (Exception ex) {
                        // log...
                    }
                }
jwmay
  • 311
  • 4
  • 3
4

Yes, as shown below.

$ java -Xdock:name=MyApp -Dswing.defaultlaf=com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel -jar MyApp.jar
trashgod
  • 196,350
  • 25
  • 213
  • 918
  • 1
    See also [this series of articles](http://java.sun.com/developer/technicalArticles/JavaLP/JavaToMac3/). – trashgod Apr 16 '11 at 18:35
  • 1
    the link is broken, the article can now be found [here](http://www.oracle.com/technetwork/articles/javase/javatomac3-137430.html) without images and here [here](http://192.9.162.55/developer/technicalArticles/JavaLP/JavaToMac3) with images – bobndrew Feb 13 '13 at 10:24