Up
Authors
- Carl Lindberg (
Carl.Lindberg@hbo.com
)
-
The document controller class
Copyright: (C) 1999 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSDocumentController.h
Availability: MacOS-X 10.0.0
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:
-
NSDocumentClass - The name of the subclass
-
NSName - Short name of the document type
-
NSHumanReadableName - Longer document type name
-
NSUnixExtensions - Array of strings
-
NSDOSExtensions - Array of strings
-
NSIcon - Icon name for these documents
-
NSRole - Viewer or Editor
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
+ (id)
sharedDocumentController;
Availability: MacOS-X 10.0.0
Returns the shared instance of the document controller class. You should always use this method to get the NSDocumentController.
- (NSArray*)
URLsFromRunningOpenPanel;
Availability: MacOS-X 10.0.0
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.
- (void)
addDocument: (
NSDocument*)document;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (IBAction)
clearRecentDocuments: (id)sender;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (BOOL)
closeAllDocuments;
Availability: MacOS-X 10.0.0
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.
- (void)
closeAllDocumentsWithDelegate: (id)delegate
didCloseAllSelector: (SEL)didAllCloseSelector
contextInfo: (void*)contextInfo;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (NSString*)
currentDirectory;
Availability: MacOS-X 10.0.0
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.
- (id)
currentDocument;
Availability: MacOS-X 10.0.0
Returns the document whose window is the main window
- (NSString*)
displayNameForType: (NSString*)type;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (Class)
documentClassForType: (NSString*)type;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (id)
documentForFileName: (NSString*)fileName;
Availability: MacOS-X 10.0.0
Returns the NSDocument class that controls the document with the name fileName.
- (id)
documentForWindow: (
NSWindow*)window;
Availability: MacOS-X 10.0.0
Returns the NSDocument class that controls window
- (NSArray*)
documents;
Availability: MacOS-X 10.0.0
Returns an array of all open documents
- (NSArray*)
fileExtensionsFromType: (NSString*)type;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (NSArray*)
fileNamesFromRunningOpenPanel;
Availability: MacOS-X 10.0.0
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.
- (BOOL)
hasEditedDocuments;
Availability: MacOS-X 10.0.0
Returns YES
if any documents are "dirty", e.g. changes have been made to the document that have not been saved to the disk
- (id)
makeDocumentWithContentsOfFile: (NSString*)fileName
ofType: (NSString*)type;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (id)
makeDocumentWithContentsOfURL: (NSURL*)url
ofType: (NSString*)type;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (id)
makeUntitledDocumentOfType: (NSString*)type;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (IBAction)
newDocument: (id)sender;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (void)
noteNewRecentDocument: (
NSDocument*)aDocument;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (void)
noteNewRecentDocumentURL: (NSURL*)anURL;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (IBAction)
openDocument: (id)sender;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (id)
openDocumentWithContentsOfFile: (NSString*)fileName
display: (BOOL)display;
Availability: MacOS-X 10.0.0
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
.
- (id)
openDocumentWithContentsOfURL: (NSURL*)url
display: (BOOL)display;
Availability: MacOS-X 10.0.0
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
.
- (id)
openUntitledDocumentOfType: (NSString*)type
display: (BOOL)display;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (NSArray*)
recentDocumentURLs;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (void)
removeDocument: (
NSDocument*)document;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (BOOL)
reviewUnsavedDocumentsWithAlertTitle: (NSString*)title
cancellable: (BOOL)cancellable;
Availability: MacOS-X 10.0.0
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.)
- (void)
reviewUnsavedDocumentsWithAlertTitle: (NSString*)title
cancellable: (BOOL)cancellable
delegate: (id)delegate
didReviewAllSelector: (SEL)didReviewAllSelector
contextInfo: (void*)contextInfo;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (int)
runModalOpenPanel: (
NSOpenPanel*)openPanel
forTypes: (NSArray*)openableFileExtensions;
Availability: MacOS-X 10.0.0
- (IBAction)
saveAllDocuments: (id)sender;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (void)
setShouldCreateUI: (BOOL)flag;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (BOOL)
shouldCreateUI;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (NSString*)
typeFromFileExtension: (NSString*)fileExtension;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (BOOL)
validateMenuItem: (
NSMenuItem*)anItem;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (BOOL)
validateUserInterfaceItem: (id
)anItem;
Availability: MacOS-X 10.0.0
Description forthcoming.
Up