Does Swing
support native dialog like below:
Or maybe exists some third party's JNI
library?
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.