mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-20 18:32:17 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7566 72102866-910b-0410-8b05-ffd578937521
249 lines
7.6 KiB
Objective-C
249 lines
7.6 KiB
Objective-C
/*
|
|
GNUstep ProjectCenter - http://www.projectcenter.ch
|
|
|
|
Copyright (C) 2000 Philippe C.D. Robert
|
|
|
|
Author: Philippe C.D. Robert <phr@projectcenter.ch>
|
|
|
|
This file is part of ProjectCenter.
|
|
|
|
This application is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This application is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
#import "ProjectBuilder.h"
|
|
|
|
#ifndef IMAGE
|
|
#define IMAGE(X) [[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:(X)]] autorelease]
|
|
#endif
|
|
|
|
#define BUILD_ARGS_KEY @"BuildArgsKey"
|
|
#define BUILD_HOST_KEY @"BuildHostKey"
|
|
|
|
#define TARGET_MAKE @"Make"
|
|
#define TARGET_MAKE_DEBUG @"MakeDebug"
|
|
#define TARGET_MAKE_PROFILE @"MakeProfile"
|
|
#define TARGET_MAKE_INSTALL @"MakeInstall"
|
|
#define TARGET_MAKE_CLEAN @"MakeClean"
|
|
|
|
#define TOUCHED_NOTHING (0)
|
|
#define TOUCHED_EVERYTHING (1 << 0)
|
|
#define TOUCHED_PROJECT_NAME (1 << 1)
|
|
#define TOUCHED_LANGUAGE (1 << 2)
|
|
#define TOUCHED_PROJECT_TYPE (1 << 3)
|
|
#define TOUCHED_INSTALL_DIR (1 << 4)
|
|
#define TOUCHED_ICON_NAMES (1 << 5)
|
|
#define TOUCHED_FILES (1 << 6)
|
|
#define TOUCHED_MAINNIB (1 << 7)
|
|
#define TOUCHED_PRINCIPALCLASS (1 << 8)
|
|
#define TOUCHED_TARGETS (1 << 9)
|
|
#define TOUCHED_PB_PROJECT (1 << 10)
|
|
#define TOUCHED_SYST_EXT (1 << 11)
|
|
#define TOUCHED_EXTENSION (1 << 12)
|
|
#define TOUCHED_PATHS (1 << 13)
|
|
|
|
typedef int PCProjInfoBits;
|
|
|
|
//===========================================================================================
|
|
// ==== Project keys
|
|
//===========================================================================================
|
|
|
|
static NSString * const PCClasses = @"CLASS_FILES";
|
|
static NSString * const PCHeaders = @"HEADER_FILES";
|
|
static NSString * const PCOtherSources = @"OTHER_SOURCES";
|
|
static NSString * const PCOtherResources = @"OTHER_RESOURCES";
|
|
static NSString * const PCSupportingFiles = @"SUPPORTING_FILES";
|
|
static NSString * const PCDocuFiles = @"DOCU_FILES";
|
|
static NSString * const PCSubprojects = @"SUBPROJECTS";
|
|
static NSString * const PCGModels = @"INTERFACES";
|
|
static NSString * const PCImages = @"IMAGES";
|
|
static NSString * const PCLibraries = @"LIBRARIES";
|
|
static NSString * const PCCompilerOptions = @"COMPILEROPTIONS";
|
|
static NSString * const PCProjectName = @"PROJECT_NAME";
|
|
static NSString * const PCProjType = @"PROJECT_TYPE";
|
|
static NSString * const PCPrincipalClass = @"PRINCIPAL_CLASS";
|
|
static NSString * const PCAppIcon = @"APPLICATIONICON";
|
|
static NSString * const PCToolIcon = @"TOOLICON";
|
|
static NSString * const PCProjectBuilderClass = @"PROJECT_BUILDER";
|
|
static NSString * const PCMainGModelFile = @"MAININTERFACE";
|
|
static NSString * const PCPackageName = @"PACKAGE_NAME";
|
|
static NSString * const PCLibraryVar = @"LIBRARY_VAR";
|
|
|
|
@interface PCProject : NSObject
|
|
{
|
|
id projectWindow;
|
|
id delegate;
|
|
id projectManager;
|
|
id browserController;
|
|
|
|
id textView;
|
|
|
|
id projectAttributeInspectorView;
|
|
id projectProjectInspectorView;
|
|
id projectFileInspectorView;
|
|
|
|
id buildTargetPanel;
|
|
id buildTargetHostField;
|
|
id buildTargetArgsField;
|
|
|
|
id buildStatusField;
|
|
id targetField;
|
|
|
|
NSString *projectName;
|
|
NSString *projectPath;
|
|
NSMutableDictionary *projectDict;
|
|
|
|
NSDictionary *rootCategories; // Needs to be initialised by subclasses!
|
|
NSMutableDictionary *buildOptions;
|
|
|
|
@private
|
|
BOOL _needsReleasing;
|
|
}
|
|
|
|
//===========================================================================================
|
|
// ==== Init and free
|
|
//===========================================================================================
|
|
|
|
- (id)init;
|
|
- (id)initWithProjectDictionary:(NSDictionary *)dict path:(NSString *)path;
|
|
|
|
- (void)dealloc;
|
|
|
|
//===========================================================================================
|
|
// ==== Accessor methods
|
|
//===========================================================================================
|
|
|
|
- (id)browserController;
|
|
- (NSString *)selectedRootCategory;
|
|
|
|
- (NSArray *)fileExtensionsForCategory:(NSString *)key;
|
|
|
|
- (void)setProjectName:(NSString *)aName;
|
|
- (NSString *)projectName;
|
|
- (NSWindow *)projectWindow;
|
|
|
|
- (Class)principalClass;
|
|
|
|
//===========================================================================================
|
|
// ==== Delegate and manager
|
|
//===========================================================================================
|
|
|
|
- (id)delegate;
|
|
- (void)setDelegate:(id)aDelegate;
|
|
|
|
- (void)setProjectBuilder:(id<ProjectBuilder>)aBuilder;
|
|
- (id<ProjectBuilder>)projectBuilder;
|
|
|
|
//===========================================================================================
|
|
// ==== To be overriden!
|
|
//===========================================================================================
|
|
|
|
- (BOOL)writeMakefile;
|
|
// Writes the PC.project file to disc. Subclasses need to call this before doing sth else!
|
|
|
|
- (BOOL)isValidDictionary:(NSDictionary *)aDict;
|
|
|
|
- (NSArray *)sourceFileKeys;
|
|
- (NSArray *)resourceFileKeys;
|
|
- (NSArray *)otherKeys;
|
|
- (NSArray *)buildTargets;
|
|
|
|
- (NSString *)projectDescription;
|
|
// Returns a string describing the project type
|
|
|
|
- (id)textView;
|
|
|
|
//===========================================================================================
|
|
// ==== Miscellaneous
|
|
//===========================================================================================
|
|
|
|
- (void)editSelectedFile:(NSString *)file;
|
|
- (void)structureEditedFile:(id)sender;
|
|
|
|
- (BOOL)doesAcceptFile:(NSString *)file forKey:(NSString *)key;
|
|
// Returns YES if type is a valid key and file is not contained in the project already
|
|
|
|
- (void)addFile:(NSString *)file forKey:(NSString *)key;
|
|
- (void)removeFile:(NSString *)file forKey:(NSString *)key;
|
|
- (BOOL)removeSelectedFilePermanently:(BOOL)yn;
|
|
|
|
- (BOOL)assignProjectDict:(NSDictionary *)aDict;
|
|
- (NSDictionary *)projectDict;
|
|
|
|
- (void)setProjectPath:(NSString *)aPath;
|
|
- (NSString *)projectPath;
|
|
|
|
- (NSDictionary *)rootCategories;
|
|
|
|
- (BOOL)save;
|
|
- (BOOL)saveAt:(NSString *)projPath;
|
|
|
|
- (BOOL)saveFileNamed:(NSString *)file;
|
|
- (BOOL)saveAllFiles;
|
|
- (BOOL)saveAllFilesIfNeeded;
|
|
// Saves all the files that need to be saved.
|
|
|
|
- (NSArray *)subprojects;
|
|
- (void)addSubproject:(PCProject *)aSubproject;
|
|
- (PCProject *)superProject;
|
|
- (PCProject *)rootProject;
|
|
- (void)newSubprojectNamed:(NSString *)aName;
|
|
- (void)removeSubproject:(PCProject *)aSubproject;
|
|
|
|
- (BOOL)isSubProject;
|
|
|
|
@end
|
|
|
|
@interface PCProject (ProjectBuilding)
|
|
|
|
- (void)showInspector:(id)sender;
|
|
- (id)updatedAttributeView;
|
|
- (id)updatedProjectView;
|
|
- (id)updatedFilesView;
|
|
|
|
- (void)showBuildTargetPanel:(id)sender;
|
|
- (void)setHost:(id)sender;
|
|
- (void)setArguments:(id)sender;
|
|
|
|
- (void)build:(id)sender;
|
|
|
|
- (NSDictionary *)buildOptions;
|
|
|
|
@end
|
|
|
|
@interface PCProject (ProjectKeyPaths)
|
|
|
|
- (NSArray *)contentAtKeyPath:(NSString *)keyPath;
|
|
- (BOOL)hasChildrenAtKeyPath:(NSString *)keyPath;
|
|
- (NSString *)projectKeyForKeyPath:(NSString *)kp;
|
|
|
|
@end
|
|
|
|
@interface PCProject (ProjectWindowDelegate)
|
|
|
|
- (void)windowDidBecomeKey:(NSNotification *)aNotification;
|
|
- (void)windowDidBecomeMain:(NSNotification *)aNotification;
|
|
- (void)windowWillClose:(NSNotification *)aNotification;
|
|
|
|
@end
|
|
|
|
@interface PCProject (TextDelegate)
|
|
|
|
- (void)textDidEndEditing:(NSNotification *)aNotification;
|
|
|
|
@end
|