Is there a way to have the Nimbus Look&Feel render its own windows decorations for a top level JFrame
? I've been digging through the Internet, and I'm starting to suspect it might not be possible at all. Has anyone actually succeeded with (and cared about) that?
Nimbus decorations are nice and neat for internal frames, but apparently there is no way to have the same effect on JFrame
s and JDialog
s.
I tried nimbusx (Nimbus Extensions), a library that subclasses JFrame
and JDialog
and allegedly applies nimbus-styled decorations to them (then you just have to instantiate nimbusx classes instead of JFrame
and JDialog
); but it actually doesn't work, and it's been in an inactive alpha stage since 2009.
So, did anyone succeeded in having their nimbus-styled Java application look consistent on all platforms by having the Nimbus LAF take care of window decorations?