24 #import <Foundation/NSObject.h>
25 #import <Foundation/NSString.h>
26 #import <Foundation/NSDictionary.h>
28 @class NSArray, NSDictionary, NSImage;
76 + (NSString *) pathToProjectTemplate: (NSString *) templateName;
96 infoDictionary: (NSDictionary *) infoDict
97 projectModules: (NSArray *) modules;
145 static inline NSDictionary *
146 PMCreateTemplateDescription(NSString * templateDescription,
147 NSImage * templateIcon)
149 return [NSDictionary dictionaryWithObjectsAndKeys:
150 templateDescription, @"Description",
152 templateIcon, @"Icon",
This class is the principal document class for project files.
Definition: ProjectDocument.h:44
This protocol is adopted by project type support objects.
Definition: ProjectType.h:40
NSDictionary * projectTemplateDescriptions()
The project type should return a dictionary where keys are project template names and values are desc...
BOOL regenerateDerivedFiles()
Instructs the project to regenerate any of it's derived files, if necessary.
NSString * projectTypeID()
Should return the project type ID.
NSString * humanReadableProjectTypeName()
Should return a human-readable, perhaps localized descriptive name of the project type.
NSDictionary * infoDictionary()
Should return the project's info dictionary which is suitable for being written into the project file...
NSString * projectTypeDescription()
Should return a more detailed description of the project type.
NSString * pathToSubprojectsDirectory()
In case the project type supports subprojects, this method should return a path to a directory where ...
NSArray * projectModules()
Should return an OR'ed set of project capabilities provided by this project type.
NSImage * projectTypeIcon()
Should return an icon of the project type (max 48x48 pixels).