[Previous] [Class List] [Next]

NSWindowNotifications



Class Description


<<Description Forthcoming>>




Instance Methods



windowDidBecomeKey:

- (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.

windowDidBecomeMain:

- (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.

windowDidChangeScreen:

- (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.

windowDidDeminiaturize:

- (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.

windowDidExpose:

- (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.

windowDidMiniaturize:

- (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.

windowDidMove:

- (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.

windowDidResignKey:

- (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.

windowDidResignMain:

- (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.

windowDidResize:

- (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.

windowDidUpdate:

- (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.

windowWillClose:

- (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.

windowWillMiniaturize:

- (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.

windowWillMove:

- (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]