vote up 1 vote down star

We are using the setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE) method of JFrame.

I want to support the native look and feel, and thus I have to use AWT instead of Swing. So what is the AWT method equivalent to setDefaultCloseOperation?

Am I correct in thinking that in order to support the native look and feel we should use AWT instead of Swing?

flag

55% accept rate
Swing definitely supports native look and feel – ChssPly76 Aug 6 at 4:36
@ ChessPly76:but I think we just create a look and feel which can be fixed for all platforms! – Johanna Aug 6 at 4:38
If by "fixed" you mean "the same for all platforms", you can do that with Swing - that l&f is called "Metal". If you mean "native for each platform" you can do that as well. I've linked to Sun's tutorial that has a demo in my answer. – ChssPly76 Aug 6 at 4:51
Go with swing. AWT is a nightmare--It was their first cut at an object model and they were able to fix a lot of it in swing. I have to use AWT, but you can still save yourself! – Bill K Aug 6 at 8:54

2 Answers

vote up 0 vote down

Alternatively to setting up L'n'F in the code, one could use java/javaw parameter -Dswing.defaultlaf.

For example, under Windows one could specify -Dswing.defaultlaf=com.sun.java.swing.plaf.windows.WindowsLookAndFeel

More information can be found here.

link|flag
vote up 2 vote down

There isn't a one method equivalent in AWT, but you can build it yourself.

myFrame.addWindowListener(
  new WindowAdapter(){
    public void windowClosed(WindowEvent e) { System.exit(0); }
  }
);

You can get close to native fidelity without using AWT. Instead, set the default Look & Feel using UIManager.

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeel());

You must do this before displaying any UI, or things can get a little hairy.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.