I have a frame, and want to prompt when the user closes it to save the document. But if they cancel, the frame shouldn't close.
frame.addWindowListener(new SaveOnCloseWindowListener(fileState));
...
public class SaveOnCloseWindowListener extends WindowAdapter {
private final FileState fileState;
public SaveOnCloseWindowListener(FileState fileState) {
this.fileState = fileState;
}
public void windowClosing(WindowEvent e) {
if (!fileState.onQuit())
cancelClose();
}
}
FileState looks at whether the document is dirty. If it isn't it does nothing and returns true. If it is dirty, it asks the user if he wants to save (YES/NO/CANCEL). If the user cancels at this point, it should abort the windowClosing.
All the suggestions I've seen on the net involve explicitly exiting in the windowClosing method, thus overriding the use of JFrame.setDefaultCloseOperation(), and duplicating the code in JFrame.processWindowEvent().
I actually have a dirty solution, but would like to see if there are any cleaner ones.
Cheers
jFrame. setDefaultCloseOperation(JFrame. DO_NOTHING_ON_CLOSE); That prevents the default behavior which the frame will be closed if the user clicks on the close button.
Window listeners are commonly used to implement custom window-closing behavior. For example, a window listener is used to save data before closing the window, or to exit the program when the last window closes.
The right way is set JFrame.setDefaultCloseOperation
to DO_NOTHING_ON_CLOSE
when the window is created. And then just calling setVisible(false)
or dispose()
when your user accepts the close, or doing nothing when the close isn't accepted.
The whole purpose of JFrame.setDefaultCloseOperation
is only to prevent the need to implement WindowListeners
for the most simple actions. The actions performed by these default close operations are very simple.
EDIT:
I've added the solution I'm describing. This assumes you want the frame to be fully deleted.
frame.setDefaultCloseOperation(setDefaultCloseOperation);
frame.addWindowListener(new SaveOnCloseWindowListener(fileState));
...
public class SaveOnCloseWindowListener extends WindowAdapter {
private final FileState fileState;
public SaveOnCloseWindowListener(FileState fileState) {
this.fileState = fileState;
}
public void windowClosing(WindowEvent e) {
if (fileState.onQuit())
frame.dispose();
}
}
Closing an Application might make the process a little easier for you.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With