PATH
Mac OS X Documentation >
Application Kit Reference: Objective-C
[Previous] [Class List] [Next]
Class Description
<<Description Forthcoming>>
Instance Methods
- (void)windowDidBecomeKey:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has become key. aNotification is
always NSWindowDidBecomeKeyNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
- (void)windowDidBecomeMain:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has become main. aNotification is
always NSWindowDidBecomeMainNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
- (void)windowDidChangeScreen:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has changed screens. aNotification is
always NSWindowDidChangeScreenNotification. You can retrieve the
NSWindow object in question by sending object to aNotification.
- (void)windowDidDeminiaturize:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has been deminiaturized. aNotification is
always NSWindowDidDeminiaturizeNotification. You can retrieve the
NSWindow object in question by sending object to aNotification.
- (void)windowDidExpose:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has been exposed. aNotification is
always NSWindowDidExposeNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
- (void)windowDidMiniaturize:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has been miniaturized. aNotification is
always NSWindowDidMiniaturizeNotification. You can retrieve the
NSWindow object in question by sending object to aNotification.
- (void)windowDidMove:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has been moved. aNotification is
always NSWindowDidMoveNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
- (void)windowDidResignKey:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has resigned its status as
key window. aNotification is
always NSWindowDidResignKeyNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
- (void)windowDidResignMain:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has resigned its status as
main window. aNotification is
always NSWindowDidResignMainNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
- (void)windowDidResize:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow has been resized. aNotification is
always NSWindowDidResizeNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
- (void)windowDidUpdate:(NSNotification
*)aNotification
Sent by the default notification
center immediately after an NSWindow receives an update message. aNotification is
always NSWindowDidUpdateNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
- (void)windowWillClose:(NSNotification
*)aNotification
Sent by the default notification
center immediately before an NSWindow closes. aNotification is
always NSWindowWillCloseNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
- (void)windowWillMiniaturize:(NSNotification
*)aNotification
Sent by the default notification
center immediately before an NSWindow is miniaturized. aNotification is
always NSWindowWillMiniaturizeNotification. You can retrieve the
NSWindow object in question by sending object to aNotification.
- (void)windowWillMove:(NSNotification
*)aNotification
Sent by the default notification
center immediately before an NSWindow is moved. aNotification is
always NSWindowWillMoveNotification. You can retrieve the NSWindow
object in question by sending object to aNotification.
[Previous] [Next]