|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--au.edu.swin.synergy.plugin.mod13.bwt.BWindowBinder
This provides a means of plugins to listen to window events on their own steam. The Plugins will need to have an implementation of a BWindowListener class which is bound to a BWindowBinder. The BWindowBinder is added as a listener to either a Dialog, Window or a JInternalFrame. All events received by this class will be bound to the BWindowListener as they come in.
Constructor Summary | |
BWindowBinder(BWindowListener windowListener,
JComponent windowContent)
Creates a new BWindowBinder with the specified window listener to bind events to. |
Method Summary | |
boolean |
equals(Object target)
This will compare this window binder with another window binder or a BWindowListener. |
void |
internalFrameActivated(InternalFrameEvent internalFrameEvent)
Invoked when the internalFrame is set to be the user's active internalFrame, which means the internalFrame (or one of its subcomponents) will receive keyboard events. |
void |
internalFrameClosed(InternalFrameEvent internalFrameEvent)
Invoked when a internalFrame has been closed as the result of calling dispose on the internalFrame. |
void |
internalFrameClosing(InternalFrameEvent internalFrameEvent)
Invoked when the user attempts to close the internalFrame from the window's system menu. |
void |
internalFrameDeactivated(InternalFrameEvent internalFrameEvent)
Invoked when a internalFrame is no longer the user's active internalFrame, which means that keyboard events will no longer be delivered to the internalFrame or its subcomponents. |
void |
internalFrameDeiconified(InternalFrameEvent internalFrameEvent)
Invoked when a internalFrame is changed from a minimized to a normal state. |
void |
internalFrameIconified(InternalFrameEvent internalFrameEvent)
Invoked when a internalFrame is changed from a normal to a minimized state. |
void |
internalFrameOpened(InternalFrameEvent internalFrameEvent)
Invoked the first time a window is made visible. |
void |
windowActivated(WindowEvent windowEvent)
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(WindowEvent windowEvent)
Invoked when a window has been closed as the result of calling dispose on the window. |
void |
windowClosing(WindowEvent windowEvent)
Invoked when the user attempts to close the window from the window's system menu. |
void |
windowDeactivated(WindowEvent windowEvent)
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(WindowEvent windowEvent)
Invoked when a window is changed from a minimized to a normal state. |
void |
windowIconified(WindowEvent windowEvent)
Invoked when a window is changed from a normal to a minimized state. |
void |
windowOpened(WindowEvent windowEvent)
Invoked the first time a window is made visible. |
Methods inherited from class java.lang.Object |
clone,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public BWindowBinder(BWindowListener windowListener, JComponent windowContent)
windowListener
- Please complete the missing tags for BWindowBinderMethod Detail |
public void windowOpened(WindowEvent windowEvent)
windowEvent
- The window event fired
Please complete the missing tags for windowOpenedpublic void windowClosing(WindowEvent windowEvent)
windowEvent
- The window event fired
Please complete the missing tags for windowClosingpublic void windowClosed(WindowEvent windowEvent)
windowEvent
- The window event fired
Please complete the missing tags for windowClosedpublic void windowIconified(WindowEvent windowEvent)
windowEvent
- The window event fired
Please complete the missing tags for windowIconifiedpublic void windowDeiconified(WindowEvent windowEvent)
windowEvent
- The window event fired
Please complete the missing tags for windowDeiconifiedpublic void windowActivated(WindowEvent windowEvent)
windowEvent
- The window event fired
Please complete the missing tags for windowActivatedpublic void windowDeactivated(WindowEvent windowEvent)
windowEvent
- The window event fired
Please complete the missing tags for windowDeactivatedpublic void internalFrameOpened(InternalFrameEvent internalFrameEvent)
windowEvent
- The window event fired
Please complete the missing tags for internalFrameOpenedpublic void internalFrameClosing(InternalFrameEvent internalFrameEvent)
internalFrameEvent
- The internalFrame event fired
Please complete the missing tags for internalFrameClosingpublic void internalFrameClosed(InternalFrameEvent internalFrameEvent)
internalFrameEvent
- The internalFrame event fired
Please complete the missing tags for internalFrameClosedpublic void internalFrameIconified(InternalFrameEvent internalFrameEvent)
internalFrameEvent
- The internalFrame event fired
Please complete the missing tags for internalFrameIconifiedpublic void internalFrameDeiconified(InternalFrameEvent internalFrameEvent)
internalFrameEvent
- The internalFrame event fired
Please complete the missing tags for internalFrameDeiconifiedpublic void internalFrameActivated(InternalFrameEvent internalFrameEvent)
internalFrameEvent
- The internalFrame event fired
Please complete the missing tags for internalFrameActivatedpublic void internalFrameDeactivated(InternalFrameEvent internalFrameEvent)
internalFrameEvent
- The internalFrame event fired
Please complete the missing tags for internalFrameDeactivatedpublic boolean equals(Object target)
target
- The object to compare against
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |