Up

NSWindowController

Authors

Carl Lindberg (Carl.Lindberg@hbo.com)
Fred Kiefer (FredKiefer@gmx.de)

Date: Generated at 2023-12-22 15:07:50 -0500

Copyright: (C) 2000 Free Software Foundation, Inc.

Software documentation for the NSWindowController class

NSWindowController : NSResponder

Declared in:
AppKit/NSWindowController.h
Conforms to:
NSCoding
NSSeguePerforming
Availability: OpenStep

Description forthcoming.
Method summary

close 

- (void) close;
Availability: OpenStep

Description forthcoming.

document 

- (id) document;
Availability: OpenStep

Description forthcoming.

initWithWindow: 

- (id) initWithWindow: (NSWindow*)window;
Availability: OpenStep

Description forthcoming.

initWithWindowNibName: 

- (id) initWithWindowNibName: (NSString*)windowNibName;
Availability: OpenStep

Description forthcoming.

initWithWindowNibName: owner: 

- (id) initWithWindowNibName: (NSString*)windowNibName owner: (id)owner;
Availability: OpenStep

Description forthcoming.

initWithWindowNibPath: owner: 

- (id) initWithWindowNibPath: (NSString*)windowNibPath owner: (id)owner;
Availability: OpenStep

Description forthcoming.

isWindowLoaded 

- (BOOL) isWindowLoaded;
Availability: OpenStep

Returns YES if the receiver's window has loaded.

loadWindow 

- (void) loadWindow;
Availability: OpenStep

Loads the receiver's window. You can override this method if the way that the window is loaded is not appropriate. You should not normally need to call this method directly; it will be called when the window controller needs to access the window.

owner 

- (id) owner;
Availability: OpenStep

Description forthcoming.

setDocument: 

- (void) setDocument: (NSDocument*)document;
Availability: OpenStep

Sets the document associated with this controller. A document automatically calls this method when adding a window controller to its list of window controllers. You should not call this method directly when using NSWindowController with an NSDocument or subclass.

setDocumentEdited: 

- (void) setDocumentEdited: (BOOL)flag;
Availability: OpenStep

Description forthcoming.

setShouldCascadeWindows: 

- (void) setShouldCascadeWindows: (BOOL)flag;
Availability: OpenStep

Description forthcoming.

setShouldCloseDocument: 

- (void) setShouldCloseDocument: (BOOL)flag;
Availability: OpenStep

Description forthcoming.

setWindow: 

- (void) setWindow: (NSWindow*)aWindow;
Availability: OpenStep

Sets the window that this controller manages to aWindow. The old window is released.

setWindowFrameAutosaveName: 

- (void) setWindowFrameAutosaveName: (NSString*)name;
Availability: OpenStep

Description forthcoming.

shouldCascadeWindows 

- (BOOL) shouldCascadeWindows;
Availability: OpenStep

Description forthcoming.

shouldCloseDocument 

- (BOOL) shouldCloseDocument;
Availability: OpenStep

Description forthcoming.

showWindow: 

- (IBAction) showWindow: (id)sender;
Availability: OpenStep

Orders the receiver's window front, also making it the key window if appropriate.

synchronizeWindowTitleWithDocumentName 

- (void) synchronizeWindowTitleWithDocumentName;
Availability: OpenStep

Description forthcoming.

window 

- (NSWindow*) window;
Availability: OpenStep

Description forthcoming.

windowDidLoad 

- (void) windowDidLoad;
Availability: OpenStep

Subclasses can override this method to perform any customisation needed after the receiver has loaded its window.

windowFrameAutosaveName 

- (NSString*) windowFrameAutosaveName;
Availability: OpenStep

Description forthcoming.

windowNibName 

- (NSString*) windowNibName;
Availability: OpenStep

Description forthcoming.

windowNibPath 

- (NSString*) windowNibPath;
Availability: OpenStep

Description forthcoming.

windowTitleForDocumentDisplayName: 

- (NSString*) windowTitleForDocumentDisplayName: (NSString*)displayName;
Availability: OpenStep

Description forthcoming.

windowWillLoad 

- (void) windowWillLoad;
Availability: OpenStep

Subclasses can override this method to perform any customisation needed before the receiver loads its window.


Up