Up

NSDocumentController

Authors

Carl Lindberg (Carl.Lindberg@hbo.com)
The document controller class

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

Software documentation for the NSDocumentController class

NSDocumentController : NSObject

Declared in:
AppKit/NSDocumentController.h
Availability: Not in OpenStep/MacOS-X

NSDocumentController is a class that controls a set of NSDocuments for an application. As an application delegate, it responds to the typical File Menu commands for opening and creating new documents, and making sure all documents have been saved when an application quits. It also registers itself for the NSWorkspaceWillPowerOffNotification. Note that NSDocumentController isn't truly the application delegate, but it works in a similar way. You can still have your own application delegate - but beware, if it responds to the same methods as NSDocumentController, your delegate methods will get called, not the NSDocumentController's.

NSDocumentController also manages document types and the related NSDocument subclasses that handle them. This information comes from the custom info property list ({ApplicationName}Info.plist) loaded when NSDocumentController is initialized. The property list contains an array of dictionarys with the key NSTypes. Each dictionary contains a set of keys:

You can use NSDocumentController to get a list of all open documents, the current document (The one whose window is Key) and other information about these documents. It also remembers the most recently opened documents (through the user default key NSRecentDocuments)..

You can subclass NSDocumentController to customize the behavior of certain aspects of the class, but it is very rare that you would need to do this.

Method summary

sharedDocumentController 

+ (id) sharedDocumentController;
Availability: Not in OpenStep/MacOS-X

Returns the shared instance of the document controller class. You should always use this method to get the NSDocumentController.


URLsFromRunningOpenPanel 

- (NSArray*) URLsFromRunningOpenPanel;
Availability: Not in OpenStep/MacOS-X

Uses -runModalOpenPanel:forTypes: to allow the user to select files to open (after initializing the NSOpenPanel). Returns the list of files as URLs that the user has selected.


addDocument: 

- (void) addDocument: (NSDocument*)document;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


clearRecentDocuments: 

- (IBAction) clearRecentDocuments: (id)sender;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


closeAllDocuments 

- (BOOL) closeAllDocuments;
Availability: Not in OpenStep/MacOS-X

Iterates through all the open documents and asks each one in turn if it can close using [NSDocument -canCloseDocument] . If the document returns YES, then it is closed.


closeAllDocumentsWithDelegate: didCloseAllSelector: contextInfo: 

- (void) closeAllDocumentsWithDelegate: (id)delegate didCloseAllSelector: (SEL)didAllCloseSelector contextInfo: (void*)contextInfo;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


currentDirectory 

- (NSString*) currentDirectory;
Availability: Not in OpenStep/MacOS-X

Returns the current directory. This method first checks if there is a current document using the -currentDocument method. If this returns a document and the document has a filename, this method returns the directory this file is located in. Otherwise it returns the directory of the most recently opened document or the user's home directory if no document has been opened before.


currentDocument 

- (id) currentDocument;
Availability: Not in OpenStep/MacOS-X

Returns the document whose window is the main window


displayNameForType: 

- (NSString*) displayNameForType: (NSString*)type;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


documentClassForType: 

- (Class) documentClassForType: (NSString*)type;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


documentForFileName: 

- (id) documentForFileName: (NSString*)fileName;
Availability: Not in OpenStep/MacOS-X

Returns the NSDocument class that controls the document with the name fileName.


documentForWindow: 

- (id) documentForWindow: (NSWindow*)window;
Availability: Not in OpenStep/MacOS-X

Returns the NSDocument class that controls window


documents 

- (NSArray*) documents;
Availability: Not in OpenStep/MacOS-X

Returns an array of all open documents


fileExtensionsFromType: 

- (NSArray*) fileExtensionsFromType: (NSString*)type;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


fileNamesFromRunningOpenPanel 

- (NSArray*) fileNamesFromRunningOpenPanel;
Availability: Not in OpenStep/MacOS-X

Uses -runModalOpenPanel:forTypes: to allow the user to select files to open (after initializing the NSOpenPanel). Returns the list of files that the user has selected.


hasEditedDocuments 

- (BOOL) hasEditedDocuments;
Availability: Not in OpenStep/MacOS-X

Returns YES if any documents are "dirty", e.g. changes have been made to the document that have not been saved to the disk


makeDocumentWithContentsOfFile: ofType: 

- (id) makeDocumentWithContentsOfFile: (NSString*)fileName ofType: (NSString*)type;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


makeDocumentWithContentsOfURL: ofType: 

- (id) makeDocumentWithContentsOfURL: (NSURL*)url ofType: (NSString*)type;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


makeUntitledDocumentOfType: 

- (id) makeUntitledDocumentOfType: (NSString*)type;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


newDocument: 

- (IBAction) newDocument: (id)sender;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


noteNewRecentDocument: 

- (void) noteNewRecentDocument: (NSDocument*)aDocument;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


noteNewRecentDocumentURL: 

- (void) noteNewRecentDocumentURL: (NSURL*)anURL;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


openDocument: 

- (IBAction) openDocument: (id)sender;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


openDocumentWithContentsOfFile: display: 

- (id) openDocumentWithContentsOfFile: (NSString*)fileName display: (BOOL)display;
Availability: Not in OpenStep/MacOS-X

Creates an NSDocument object from the data at the absolute path given in fileName. Causes the document to be displayed if display is YES, unless the -shouldCreateUI method returns NO.


openDocumentWithContentsOfURL: display: 

- (id) openDocumentWithContentsOfURL: (NSURL*)url display: (BOOL)display;
Availability: Not in OpenStep/MacOS-X

Creates an NSDocument object from the data at the supplied url.
Causes the document to be displayed if display is YES, unless the -shouldCreateUI method returns NO.


openUntitledDocumentOfType: display: 

- (id) openUntitledDocumentOfType: (NSString*)type display: (BOOL)display;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


recentDocumentURLs 

- (NSArray*) recentDocumentURLs;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


removeDocument: 

- (void) removeDocument: (NSDocument*)document;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


reviewUnsavedDocumentsWithAlertTitle: cancellable: 

- (BOOL) reviewUnsavedDocumentsWithAlertTitle: (NSString*)title cancellable: (BOOL)cancellable;
Availability: Not in OpenStep/MacOS-X

If there are any unsaved documents, this method displays an alert panel asking if the user wants to review the unsaved documents. If the user agrees to review the documents, this method calls -closeAllDocuments to close each document (prompting to save a document if it is dirty). If cancellable is YES, then the user is not allowed to cancel this request, otherwise this method will return NO if the user presses the Cancel button. Otherwise returns YES after all documents have been closed (or if there are no unsaved documents.)


reviewUnsavedDocumentsWithAlertTitle: cancellable: delegate: didReviewAllSelector: contextInfo: 

- (void) reviewUnsavedDocumentsWithAlertTitle: (NSString*)title cancellable: (BOOL)cancellable delegate: (id)delegate didReviewAllSelector: (SEL)didReviewAllSelector contextInfo: (void*)contextInfo;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


runModalOpenPanel: forTypes: 

- (int) runModalOpenPanel: (NSOpenPanel*)openPanel forTypes: (NSArray*)openableFileExtensions;
Availability: Not in OpenStep/MacOS-X

Invokes [NSOpenPanel -runModalForTypes:] with the NSOpenPanel object openPanel, and passes the openableFileExtensions file types


saveAllDocuments: 

- (IBAction) saveAllDocuments: (id)sender;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


setShouldCreateUI: 

- (void) setShouldCreateUI: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


shouldCreateUI 

- (BOOL) shouldCreateUI;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


typeFromFileExtension: 

- (NSString*) typeFromFileExtension: (NSString*)fileExtension;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


validateMenuItem: 

- (BOOL) validateMenuItem: (NSMenuItem*)anItem;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


validateUserInterfaceItem: 

- (BOOL) validateUserInterfaceItem: (id)anItem;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.



Up