Developer Documentation
PATH  Mac OS X Documentation > Application Kit Reference: Java


[Previous] [Class List] [Next]

NSWindow.Notifications


Inherits from: java.lang.Object
Package: com.apple.yellow.application


Class Description


<<Description Forthcoming>>




Instance Methods



windowDidBecomeKey

public abstract 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

public abstract 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

public abstract 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

public abstract 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

public abstract 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

public abstract 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

public abstract 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

public abstract void windowDidResignKey (NSNotification)

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

public abstract 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

public abstract 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

public abstract 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

public abstract 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

public abstract 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

public abstract 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]