javamacosswinglook-and-feel

Swing - Native look-and-feel for JDialog in MacOS


Does Swing support native dialog like below: enter image description here

Or maybe exists some third party's JNI library?


Solution

  • I haven't tried it, but Java on OS X v10.5 Update 1 says, "Document Modal Sheets can be created by setting the the apple.awt.documentModalSheet client property to Boolean.TRUE on the JRootPane of JDialog." I'm guessing something like this:

    rootPanel.putClientProperty("apple.awt.documentModalSheet", Boolean.TRUE);
    

    You might also see if Mac Widgets for Java has added anything recently.