ProjectManager  0.2
BundleProjectType.h
1 /*
2  BundleProjectType.h
3 
4  Interface declaration of the BundleProjectType class for the
5  ProjectManager application.
6 
7  Copyright (C) 2005, 2006 Saso Kiselkov
8 
9  This program is free software; you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation; either version 2 of the License, or
12  (at your option) any later version.
13 
14  This program is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  GNU General Public License for more details.
18 
19  You should have received a copy of the GNU General Public License
20  along with this program; if not, write to the Free Software
21  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23 
24 #import <Foundation/NSObject.h>
25 #import "../../ProjectType.h"
26 
27 #import "../../ProjectModules/MakeBuilder/MakeBuilderDelegate.h"
28 #import "../../ProjectModules/FileManager/FileManagerDelegate.h"
29 #import "../../ProjectModules/ProjectAttributes/ProjectAttributesDelegate.h"
30 #import "../../ProjectModules/SubprojectsManager/SubprojectsManagerDelegate.h"
31 
32 @class NSString,
33  NSDictionary,
34  NSArray,
35  NSMutableArray,
36  NSNotification;
37 
38 @class ProjectDocument,
42 
44 
45 @interface BundleProjectType : NSObject <ProjectType,
50 {
51  // weak reference
52  ProjectDocument * owner;
53 
54  BundleGeneralAttributes * attributes;
55 
56  NSString * principalClass;
57  NSArray * authors;
58  NSString * copyright;
59  NSString * copyrightDescription;
60 
61  FileManager * fileManager;
62  MakeBuilder * builder;
63 
64  unsigned int oldMakeHash;
65 }
66 
67 - (void) setPrincipalClass: (NSString *) aClass;
68 - (NSString *) principalClass;
69 
70 - (void) setAuthors: (NSArray *) anArray;
71 - (NSArray *) authors;
72 
73 - (void) setCopyright: (NSString *) aCopyright;
74 - (NSString *) copyright;
75 
76 - (void) setCopyrightDescription: (NSString *) aCopyrightDescription;
77 - (NSString *) copyrightDescription;
78 
79 @end
Definition: BundleGeneralAttributes.h:33
Definition: BundleProjectType.h:51
Definition: FileManager.h:94
Definition: GNUstepAppLauncher.h:50
Definition: MakeBuilder.h:93
This class is the principal document class for project files.
Definition: ProjectDocument.h:44
This protocol declares what methods should be implemented by a FileManager delegate object.
Definition: FileManagerDelegate.h:43
Definition: MakeBuilderDelegate.h:25
Definition: ProjectAttributesDelegate.h:30
This protocol is adopted by project type support objects.
Definition: ProjectType.h:40
Definition: SubprojectsManagerDelegate.h:30