Defined Methods | Description |
windowOpened(WindowEvent e) | Called the first time the window is opened |
windowClosing(WindowEvent e) | Called when the system menu Close item or the window close icon is selected |
windowClosed(WindowEvent e) | Called when the window has been closed |
windowActivated(WindowEvent e) | Called when the window is activated - by clicking on it, for example |
windowDeactivated(WindowEvent e) | Called when a window is deactivated - by clicking on another window, for example |
windowIconified(WindowEvent e) | Called when a window is minimized and reduced to an icon |
windowDeiconified(WindowEvent e) | Called when a window is restored from an icon |
15.41.Window Event | ||||
15.41.1. | The event IDs for the WindowEvent class | |||
15.41.2. | Making a Window Handle its Own Events | |||
15.41.3. | The WindowListener Interface: events reflecting changes in the state of a window | |||
15.41.4. | Using WindowListener | |||
15.41.5. | Using Adapter Classes | |||
15.41.6. | Listens for window iconify and deiconify events, so that it can stop the animation when the window isn't visible. | |||
15.41.7. | WindowListener, WindowFocusListener, WindowStateListener | |||
15.41.8. | extends WindowAdapter | |||
15.41.9. | Handle a window closing event | |||
15.41.10. | Setting the Initial Focused Component in a Window | |||
15.41.11. | int java.awt.event.WindowEvent.WINDOW_OPENED |