I just wrote this test code in my CustomUIPanel class:
public static void main(String[] args) {
final JDialog dialog = CustomUIPanel.createDialog(null,
CustomUIPanel.selectFile());
dialog.addWindowListener(new WindowAdapter() {
@Override public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
}
It works correctly if CustomUIPanel.main()
is the program's entry point, but it makes me wonder something: what if another class called CustomUIPanel.main()
for testing? Then my call to System.exit(0)
is incorrect.
Is there a way to tell the Swing event dispatch thread to exit automatically if there are no top-level windows?
If not, what's the right thing for a JDialog/JFrame to do upon closing if the goal is for the program to exit when all the top level windows are closed?
Not sure about when using a JDialog.
But when using a JFrame you should use frame.dispose(). If the frame is the last open frame then the VM will exit.
Note a dialog does not have an EXIT_ON_CLOSE option since it should not generally exit the VM.
When closing the dialog you could always get the dialogs parent frame. Then you could dispatch an event to the frame to tell it to close itself. Something like:
Here is what I would recommend :
dialog.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Use
It should work.
Well,
You could use a JFrame instead. JDialog is supposed to be used as popup of an application that runs in an JFrame to catch the users attention and to pause the main application. If the JFrame is closed, you can call System.exit(0)
dialog has a
getParent()
method, which I guess, is set to null in your case hereCustomUIPanel.createDialog(null,
you can use that to exit conditionally.
You can use the
setDefaultCloseOperation()
method ofJDialog
, specifyingDISPOSE_ON_CLOSE
:See also 12.8 Program Exit.
Addendum: Incorporating @camickr's helpful answer, this example exits when either the window is closed or the close button is pressed.