-
- All Superinterfaces:
- EventListener
- All Known Implementing Classes:
- AWTEventMulticaster, BasicToolBarUI.FrameListener, JMenu.WinListener, WindowAdapter
public interface WindowListener extends EventListener
The listener interface for receiving window events. The class that is interested in processing a window event either implements this interface (and all the methods it contains) or extends the abstractWindowAdapter
class (overriding only the methods of interest). The listener object created from that class is then registered with a Window using the window'saddWindowListener
method. When the window's status changes by virtue of being opened, closed, activated or deactivated, iconified or deiconified, the relevant method in the listener object is invoked, and theWindowEvent
is passed to it.- Since:
- 1.1
- See Also:
WindowAdapter
,WindowEvent
, Tutorial: How to Write Window Listeners
-
-
Method Summary
Methods Modifier and Type Method and Description void
windowActivated(WindowEvent e)
Invoked when the Window is set to be the active Window.void
windowClosed(WindowEvent e)
Invoked when a window has been closed as the result of calling dispose on the window.void
windowClosing(WindowEvent e)
Invoked when the user attempts to close the window from the window's system menu.void
windowDeactivated(WindowEvent e)
Invoked when a Window is no longer the active Window.void
windowDeiconified(WindowEvent e)
Invoked when a window is changed from a minimized to a normal state.void
windowIconified(WindowEvent e)
Invoked when a window is changed from a normal to a minimized state.void
windowOpened(WindowEvent e)
Invoked the first time a window is made visible.
-
-
-
Method Detail
-
windowOpened
void windowOpened(WindowEvent e)
Invoked the first time a window is made visible.
-
windowClosing
void windowClosing(WindowEvent e)
Invoked when the user attempts to close the window from the window's system menu.
-
windowClosed
void windowClosed(WindowEvent e)
Invoked when a window has been closed as the result of calling dispose on the window.
-
windowIconified
void windowIconified(WindowEvent e)
Invoked when a window is changed from a normal to a minimized state. For many platforms, a minimized window is displayed as the icon specified in the window's iconImage property.- See Also:
Frame.setIconImage(java.awt.Image)
-
windowDeiconified
void windowDeiconified(WindowEvent e)
Invoked when a window is changed from a minimized to a normal state.
-
windowActivated
void windowActivated(WindowEvent e)
Invoked when the Window is set to be the active Window. Only a Frame or a Dialog can be the active Window. The native windowing system may denote the active Window or its children with special decorations, such as a highlighted title bar. The active Window is always either the focused Window, or the first Frame or Dialog that is an owner of the focused Window.
-
windowDeactivated
void windowDeactivated(WindowEvent e)
Invoked when a Window is no longer the active Window. Only a Frame or a Dialog can be the active Window. The native windowing system may denote the active Window or its children with special decorations, such as a highlighted title bar. The active Window is always either the focused Window, or the first Frame or Dialog that is an owner of the focused Window.
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/awt/event/windowlistener.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.