public abstract static class IstiDialogPopup.CloseListener
extends java.lang.Object
implements java.awt.event.WindowListener, java.awt.event.ComponentListener
Modifier and Type | Field and Description |
---|---|
protected boolean |
closeMethodInvokedFlag
Flag set true after closed and false after opened.
|
Constructor and Description |
---|
CloseListener() |
Modifier and Type | Method and Description |
---|---|
void |
componentHidden(java.awt.event.ComponentEvent evtObj)
Invoked when the component has been made invisible.
|
void |
componentMoved(java.awt.event.ComponentEvent evtObj)
Invoked when the component's position changes.
|
void |
componentResized(java.awt.event.ComponentEvent evtObj)
Invoked when the component's size changes.
|
void |
componentShown(java.awt.event.ComponentEvent evtObj)
Invoked when the component has been made visible.
|
abstract void |
dialogClosed(java.lang.Object evtObj)
This method is invoked when the dialog is closed, hidden or disposed.
|
void |
windowActivated(java.awt.event.WindowEvent evtObj)
Invoked when the window is set to be the user's
active window, which means the window (or one of its
subcomponents) will receive keyboard events.
|
void |
windowClosed(java.awt.event.WindowEvent evtObj)
Invoked when a window has been closed as the result
of calling dispose on the window.
|
void |
windowClosing(java.awt.event.WindowEvent evtObj)
Invoked when the user attempts to close the window
from the window's system menu.
|
void |
windowDeactivated(java.awt.event.WindowEvent evtObj)
Invoked when a window is no longer the user's active
window, which means that keyboard events will no longer
be delivered to the window or its subcomponents.
|
void |
windowDeiconified(java.awt.event.WindowEvent evtObj)
Invoked when a window is changed from a minimized
to a normal state.
|
void |
windowIconified(java.awt.event.WindowEvent evtObj)
Invoked when a window is changed from a normal to a
minimized state.
|
void |
windowOpened(java.awt.event.WindowEvent evtObj)
Invoked the first time a window is made visible.
|
protected boolean closeMethodInvokedFlag
public abstract void dialogClosed(java.lang.Object evtObj)
evtObj
- the source event object, either a 'WindowEvent' or
a 'ComponentEvent'.public void windowOpened(java.awt.event.WindowEvent evtObj)
windowOpened
in interface java.awt.event.WindowListener
evtObj
- the window-event object.public void windowClosing(java.awt.event.WindowEvent evtObj)
windowClosing
in interface java.awt.event.WindowListener
evtObj
- the window-event object.public void windowClosed(java.awt.event.WindowEvent evtObj)
windowClosed
in interface java.awt.event.WindowListener
evtObj
- the window-event object.public void windowIconified(java.awt.event.WindowEvent evtObj)
windowIconified
in interface java.awt.event.WindowListener
evtObj
- the window-event object.public void windowDeiconified(java.awt.event.WindowEvent evtObj)
windowDeiconified
in interface java.awt.event.WindowListener
evtObj
- the window-event object.public void windowActivated(java.awt.event.WindowEvent evtObj)
windowActivated
in interface java.awt.event.WindowListener
evtObj
- the window-event object.public void windowDeactivated(java.awt.event.WindowEvent evtObj)
windowDeactivated
in interface java.awt.event.WindowListener
evtObj
- the window-event object.public void componentResized(java.awt.event.ComponentEvent evtObj)
componentResized
in interface java.awt.event.ComponentListener
evtObj
- the component-event object.public void componentMoved(java.awt.event.ComponentEvent evtObj)
componentMoved
in interface java.awt.event.ComponentListener
evtObj
- the component-event object.public void componentShown(java.awt.event.ComponentEvent evtObj)
componentShown
in interface java.awt.event.ComponentListener
evtObj
- the component-event object.public void componentHidden(java.awt.event.ComponentEvent evtObj)
componentHidden
in interface java.awt.event.ComponentListener
evtObj
- the component-event object.