public void windowClosing(WindowEvent e) { if (online) { try { client.sendDisconnect(); } catch (IOException e1) { e1.printStackTrace(); } } e.getWindow().dispose(); // Fenster "killen" System.exit(0); }
@Override public void eventDispatched(AWTEvent event) { if (event.getID() == WindowEvent.WINDOW_OPENED) { final WindowEvent we = (WindowEvent) event; for (JBPopup each : JBPopupFactory.getInstance().getChildPopups(this)) { if (each.getContent() != null && SwingUtilities.isDescendingFrom(each.getContent(), we.getWindow())) { super.setPopupVisible(false); } } } }
@Override public void windowLostFocus(WindowEvent e) { final Window window = e.getWindow(); final Window oppositeWindow = e.getOppositeWindow(); }
public void windowClosing(WindowEvent e) { e.getWindow().dispose(); }
public void windowClosing(WindowEvent e) { Window w = e.getWindow(); w.setVisible(false); w.dispose(); System.exit(0); }
@Override public void windowClosing(WindowEvent e) { canvas.stop(); e.getWindow().dispose(); }