This commit is contained in:
2025-09-26 11:16:47 +02:00
parent a9782efcdd
commit 7c72e94d8d
18 changed files with 174 additions and 36 deletions

View File

@@ -0,0 +1,16 @@
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
public class WindowClosedEvent extends WindowAdapter {
private ImageWindow window;
public WindowClosedEvent(ImageWindow window) {
this.window = window;
}
@Override
public void windowClosing(WindowEvent event) {
(new CloseVerificationWindow(this.window)).setVisible(true);
}
}