mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-14 14:40:52 +00:00
Use #import throughout
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27463 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
321b334912
commit
073b6a650d
87 changed files with 361 additions and 270 deletions
91
ChangeLog
91
ChangeLog
|
@ -1,3 +1,94 @@
|
|||
2008-12-30 Richard frith-Macdonald <rfm"gnu.org>
|
||||
|
||||
* PCMenuController.m:
|
||||
* Framework/PCProjectManager.m:
|
||||
* Framework/PCBundleManager.m:
|
||||
* Framework/PCMakefileFactory.m:
|
||||
* Framework/PCProject.m:
|
||||
* Framework/PCProjectLauncherPanel.m:
|
||||
* Framework/PCFileManager.m:
|
||||
* Framework/PCButton.m:
|
||||
* Framework/PCProjectBuilder.m:
|
||||
* Framework/PCProjectLoadedFilesPanel.m:
|
||||
* Framework/PCFileNameField.m:
|
||||
* Framework/PCSplitView.m:
|
||||
* Framework/PCProjectLauncher.m:
|
||||
* Framework/PCAddFilesPanel.m:
|
||||
* Framework/Resources/class.template:
|
||||
* Framework/Resources/header.template:
|
||||
* Framework/Resources/cfile.template:
|
||||
* Framework/PCProjectBuilderPanel.m:
|
||||
* Framework/PCFileCreator.m:
|
||||
* PCAppController.m:
|
||||
* PCFindController.m:
|
||||
* ProjectCenter_main.m:
|
||||
* Modules/Parsers/ProjectCenter/ObjCMethodHandler.h:
|
||||
* Modules/Parsers/ProjectCenter/ObjCCommentHandler.h:
|
||||
* Modules/Parsers/ProjectCenter/PCParser.h:
|
||||
* Modules/Parsers/ProjectCenter/ObjCClassHandler.h:
|
||||
* Modules/Parsers/ProjectCenter/ObjCMethodHandler.m:
|
||||
* Modules/Parsers/ProjectCenter/ObjCCommentHandler.m:
|
||||
* Modules/Parsers/ProjectCenter/CodeHandler.h:
|
||||
* Modules/Debuggers/ProjectCenter/PCDebugger.m:
|
||||
* Modules/Debuggers/ProjectCenter/PTYView.m:
|
||||
* Modules/Debuggers/ProjectCenter/PCDebuggerView.h:
|
||||
* Modules/Debuggers/ProjectCenter/PCDebugger.h:
|
||||
* Modules/Debuggers/ProjectCenter/PCDebuggerView.m:
|
||||
* Modules/Debuggers/ProjectCenter/PTYView.h:
|
||||
* Modules/Projects/Application/PCAppProject.h:
|
||||
* Modules/Projects/Application/PCAppProject+Inspector.h:
|
||||
* Modules/Projects/Application/PCAppProject.m:
|
||||
* Modules/Projects/Application/PCAppProject+Inspector.m:
|
||||
* Modules/Projects/Application/Resources/AppController.m:
|
||||
* Modules/Projects/Application/Resources/main.m:
|
||||
* Modules/Projects/Application/Resources/AppController.h:
|
||||
* Modules/Projects/ResourceSet/PCResourceSetProject.h:
|
||||
* Modules/Projects/ResourceSet/PCResourceSetProject.m:
|
||||
* Modules/Projects/Library/PCLibProject.h:
|
||||
* Modules/Projects/Library/PCLibProject.m:
|
||||
* Modules/Projects/Aggregate/PCAggregateProject.h:
|
||||
* Modules/Projects/Aggregate/PCAggregateProject.m:
|
||||
* Modules/Projects/Bundle/PCBundleProject.h:
|
||||
* Modules/Projects/Bundle/PCBundleProject.m:
|
||||
* Modules/Projects/Framework/PCFrameworkProject.m:
|
||||
* Modules/Projects/Framework/PCFrameworkProject.h:
|
||||
* Modules/Projects/Tool/PCToolProject.m:
|
||||
* Modules/Projects/Tool/Resources/main.m:
|
||||
* Modules/Projects/Tool/PCToolProject.h:
|
||||
* Headers/PCMenuController.h:
|
||||
* Headers/Protocols/CodeDebugger.h:
|
||||
* Headers/Protocols/CodeEditor.h:
|
||||
* Headers/Protocols/CodeParser.h:
|
||||
* Headers/Protocols/ProjectType.h:
|
||||
* Headers/ProjectCenter/PCProject.h:
|
||||
* Headers/ProjectCenter/PCProjectLauncherPanel.h:
|
||||
* Headers/ProjectCenter/PCProjectBrowser.h:
|
||||
* Headers/ProjectCenter/PCFileManager.h:
|
||||
* Headers/ProjectCenter/PCButton.h:
|
||||
* Headers/ProjectCenter/PCProjectBuilder.h:
|
||||
* Headers/ProjectCenter/PCDefines.h:
|
||||
* Headers/ProjectCenter/PCProjectEditor.h:
|
||||
* Headers/ProjectCenter/PCEditorManager.h:
|
||||
* Headers/ProjectCenter/PCProjectLoadedFilesPanel.h:
|
||||
* Headers/ProjectCenter/ProjectCenter.h:
|
||||
* Headers/ProjectCenter/PCLogController.h:
|
||||
* Headers/ProjectCenter/PCSplitView.h:
|
||||
* Headers/ProjectCenter/PCProjectLauncher.h:
|
||||
* Headers/ProjectCenter/PCAddFilesPanel.h:
|
||||
* Headers/ProjectCenter/PCProjectBuilderPanel.h:
|
||||
* Headers/ProjectCenter/PCProjectInspector.h:
|
||||
* Headers/ProjectCenter/PCFileCreator.h:
|
||||
* Headers/ProjectCenter/PCPrefController.h:
|
||||
* Headers/ProjectCenter/PCProjectManager.h:
|
||||
* Headers/ProjectCenter/PCProjectLoadedFiles.h:
|
||||
* Headers/ProjectCenter/PCBundleManager.h:
|
||||
* Headers/ProjectCenter/PCMakefileFactory.h:
|
||||
* Headers/PCInfoController.h:
|
||||
* Headers/PCAppController.h:
|
||||
* PCInfoController.m:
|
||||
Update to use #import rather than #include now that it is no longer
|
||||
deprecated and is the officially preferred mechanism.
|
||||
|
||||
2008-12-29 22:29-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Modules/Debuggers/ProjectCenter/Resources/continue_button.png:
|
||||
|
|
|
@ -22,8 +22,8 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#include <ProjectCenter/PCAddFilesPanel.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCAddFilesPanel.h>
|
||||
|
||||
static PCAddFilesPanel *addFilesPanel = nil;
|
||||
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
// - GNUSTEP_SYSTEM_LIBRARY/Bundles/ProjectCenter
|
||||
// (NSApplicationSupportDirectory)
|
||||
|
||||
#include <ProjectCenter/PCBundleManager.h>
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCBundleManager.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
|
||||
@implementation PCBundleManager
|
||||
|
||||
|
|
|
@ -22,11 +22,11 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCButton.h>
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCButton.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
|
||||
#include <AppKit/NSBezierPath.h>
|
||||
#include <GNUstepGUI/GSTrackingRect.h>
|
||||
#import <AppKit/NSBezierPath.h>
|
||||
#import <GNUstepGUI/GSTrackingRect.h>
|
||||
|
||||
@implementation PCButton
|
||||
|
||||
|
|
|
@ -23,12 +23,12 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCFileCreator.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCFileCreator.h>
|
||||
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
|
||||
static PCFileCreator *_creator = nil;
|
||||
static NSDictionary *dict = nil;
|
||||
|
|
|
@ -23,15 +23,15 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCFileCreator.h>
|
||||
#include <ProjectCenter/PCProjectManager.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCProjectBrowser.h>
|
||||
#include <ProjectCenter/PCAddFilesPanel.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCFileCreator.h>
|
||||
#import <ProjectCenter/PCProjectManager.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCProjectBrowser.h>
|
||||
#import <ProjectCenter/PCAddFilesPanel.h>
|
||||
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
|
||||
@implementation PCFileManager
|
||||
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
#include <ProjectCenter/PCFileNameField.h>
|
||||
#import <ProjectCenter/PCFileNameField.h>
|
||||
|
||||
NSString *PCFileNameFieldNoFiles = @"No files selected";
|
||||
|
||||
|
|
|
@ -23,9 +23,9 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
#define COMMENT_HEADERS @"\n\n#\n# Header files\n#\n"
|
||||
#define COMMENT_RESOURCES @"\n\n#\n# Resource files\n#\n"
|
||||
|
|
|
@ -27,23 +27,23 @@
|
|||
// TODO: Take care of Libraries(gnustep-gui, gnustep-base)
|
||||
// and Non Project Files
|
||||
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCProjectManager.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCProjectManager.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
|
||||
#include <ProjectCenter/PCProjectWindow.h>
|
||||
#include <ProjectCenter/PCProjectBrowser.h>
|
||||
#include <ProjectCenter/PCProjectLoadedFiles.h>
|
||||
#import <ProjectCenter/PCProjectWindow.h>
|
||||
#import <ProjectCenter/PCProjectBrowser.h>
|
||||
#import <ProjectCenter/PCProjectLoadedFiles.h>
|
||||
|
||||
#include <ProjectCenter/PCProjectInspector.h>
|
||||
#include <ProjectCenter/PCProjectBuilder.h>
|
||||
#include <ProjectCenter/PCProjectEditor.h>
|
||||
#include <ProjectCenter/PCProjectLauncher.h>
|
||||
#import <ProjectCenter/PCProjectInspector.h>
|
||||
#import <ProjectCenter/PCProjectBuilder.h>
|
||||
#import <ProjectCenter/PCProjectEditor.h>
|
||||
#import <ProjectCenter/PCProjectLauncher.h>
|
||||
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
|
||||
#include <Protocols/CodeEditor.h>
|
||||
#import <Protocols/CodeEditor.h>
|
||||
|
||||
NSString
|
||||
*PCProjectDictDidChangeNotification = @"PCProjectDictDidChangeNotification";
|
||||
|
|
|
@ -23,24 +23,24 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCSplitView.h>
|
||||
#include <ProjectCenter/PCButton.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCSplitView.h>
|
||||
#import <ProjectCenter/PCButton.h>
|
||||
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
|
||||
#include <ProjectCenter/PCProjectManager.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCProjectBuilder.h>
|
||||
#include <ProjectCenter/PCProjectBuilderOptions.h>
|
||||
#import <ProjectCenter/PCProjectManager.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCProjectBuilder.h>
|
||||
#import <ProjectCenter/PCProjectBuilderOptions.h>
|
||||
|
||||
#include <ProjectCenter/PCProjectEditor.h>
|
||||
#include <Protocols/CodeEditor.h>
|
||||
#import <ProjectCenter/PCProjectEditor.h>
|
||||
#import <Protocols/CodeEditor.h>
|
||||
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#include <ProjectCenter/PCPrefController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCPrefController.h>
|
||||
|
||||
#ifndef IMAGE
|
||||
#define IMAGE(X) [NSImage imageNamed: X]
|
||||
|
|
|
@ -22,12 +22,12 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCProjectManager.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCProjectBuilder.h>
|
||||
#include <ProjectCenter/PCProjectBuilderPanel.h>
|
||||
#import <ProjectCenter/PCProjectManager.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCProjectBuilder.h>
|
||||
#import <ProjectCenter/PCProjectBuilderPanel.h>
|
||||
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
|
||||
@implementation PCProjectBuilderPanel
|
||||
|
||||
|
|
|
@ -23,15 +23,15 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCProjectManager.h>
|
||||
#include <ProjectCenter/PCProjectLauncher.h>
|
||||
#include <ProjectCenter/PCBundleManager.h>
|
||||
#include <ProjectCenter/PCButton.h>
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCProjectManager.h>
|
||||
#import <ProjectCenter/PCProjectLauncher.h>
|
||||
#import <ProjectCenter/PCBundleManager.h>
|
||||
#import <ProjectCenter/PCButton.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
|
||||
#ifndef NOTIFICATION_CENTER
|
||||
#define NOTIFICATION_CENTER [NSNotificationCenter defaultCenter]
|
||||
|
|
|
@ -22,12 +22,12 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCProjectManager.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCProjectLauncher.h>
|
||||
#include <ProjectCenter/PCProjectLauncherPanel.h>
|
||||
#import <ProjectCenter/PCProjectManager.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCProjectLauncher.h>
|
||||
#import <ProjectCenter/PCProjectLauncherPanel.h>
|
||||
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
|
||||
@implementation PCProjectLauncherPanel
|
||||
|
||||
|
|
|
@ -22,12 +22,12 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCProjectManager.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCProjectLoadedFiles.h>
|
||||
#include <ProjectCenter/PCProjectLoadedFilesPanel.h>
|
||||
#import <ProjectCenter/PCProjectManager.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCProjectLoadedFiles.h>
|
||||
#import <ProjectCenter/PCProjectLoadedFilesPanel.h>
|
||||
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
|
||||
@implementation PCProjectLoadedFilesPanel
|
||||
|
||||
|
|
|
@ -23,27 +23,27 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCPrefController.h>
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCPrefController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
|
||||
#include <ProjectCenter/PCBundleManager.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCFileCreator.h>
|
||||
#include <ProjectCenter/PCEditorManager.h>
|
||||
#include <ProjectCenter/PCProjectManager.h>
|
||||
#import <ProjectCenter/PCBundleManager.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCFileCreator.h>
|
||||
#import <ProjectCenter/PCEditorManager.h>
|
||||
#import <ProjectCenter/PCProjectManager.h>
|
||||
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCProjectWindow.h>
|
||||
#include <ProjectCenter/PCProjectBrowser.h>
|
||||
#include <ProjectCenter/PCProjectInspector.h>
|
||||
#include <ProjectCenter/PCProjectEditor.h>
|
||||
#include <ProjectCenter/PCProjectBuilderPanel.h>
|
||||
#include <ProjectCenter/PCProjectLauncherPanel.h>
|
||||
#include <ProjectCenter/PCProjectLoadedFilesPanel.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCProjectWindow.h>
|
||||
#import <ProjectCenter/PCProjectBrowser.h>
|
||||
#import <ProjectCenter/PCProjectInspector.h>
|
||||
#import <ProjectCenter/PCProjectEditor.h>
|
||||
#import <ProjectCenter/PCProjectBuilderPanel.h>
|
||||
#import <ProjectCenter/PCProjectLauncherPanel.h>
|
||||
#import <ProjectCenter/PCProjectLoadedFilesPanel.h>
|
||||
|
||||
#include "Protocols/ProjectType.h"
|
||||
#include "Protocols/CodeEditor.h"
|
||||
#import "Protocols/ProjectType.h"
|
||||
#import "Protocols/CodeEditor.h"
|
||||
|
||||
NSString *PCActiveProjectDidChangeNotification = @"PCActiveProjectDidChange";
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCSplitView.h>
|
||||
#import <ProjectCenter/PCSplitView.h>
|
||||
|
||||
@implementation PCSplitView
|
||||
|
||||
|
|
|
@ -22,4 +22,4 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include "$FILENAME$.h"
|
||||
#import "$FILENAME$.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include "$FILENAME$.h"
|
||||
#import "$FILENAME$.h"
|
||||
|
||||
@implementation $FILENAME$
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef _$UCFILENAME$_H_
|
||||
#define _$UCFILENAME$_H_
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface $FILENAME$ : NSObject
|
||||
{
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#ifndef _PCAPPCONTROLLER_H
|
||||
#define _PCAPPCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCProjectManager;
|
||||
@class PCFileManager;
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#ifndef _PCINFOCONTROLLER_H
|
||||
#define _PCINFOCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@interface PCInfoController : NSObject
|
||||
{
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#ifndef _PCMENUCONTROLLER_H
|
||||
#define _PCMENUCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCProjectManager;
|
||||
@class PCFileManager;
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef _PCAddFilesPanel_h_
|
||||
#define _PCAddFilesPanel_h_
|
||||
|
||||
//#include <Foundation/Foundation.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
//#import <Foundation/Foundation.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@interface PCAddFilesPanel : NSOpenPanel
|
||||
{
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef _PCBundleManager_h_
|
||||
#define _PCBundleManager_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@interface PCBundleManager : NSObject
|
||||
{
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef _PCButton_h_
|
||||
#define _PCButton_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
/*
|
||||
* Button
|
||||
|
|
|
@ -141,7 +141,7 @@ typedef int PCProjInfoBits;
|
|||
// ==== Project keys
|
||||
//=============================================================================
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
static NSString * const PCLastEditing = @"LAST_EDITING";
|
||||
|
||||
|
|
|
@ -26,10 +26,10 @@
|
|||
#ifndef _PCEditorManager_h_
|
||||
#define _PCEditorManager_h_
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#include <Protocols/CodeEditor.h>
|
||||
#include <Protocols/CodeParser.h>
|
||||
#import <Protocols/CodeEditor.h>
|
||||
#import <Protocols/CodeParser.h>
|
||||
|
||||
@class PCProjectManager;
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef _PCFileCreator_h_
|
||||
#define _PCFileCreator_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
#define ProtocolFile @"Objective-C Protocol"
|
||||
#define ObjCClass @"Objective-C Class"
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
#ifndef _PCFileManager_h_
|
||||
#define _PCFileManager_h_
|
||||
|
||||
//#include <Foundation/Foundation.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
//#import <Foundation/Foundation.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCProject;
|
||||
@class PCProjectManager;
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#ifndef _PCLOGCONTROLLER_H
|
||||
#define _PCLOGCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
#define INFO 0
|
||||
#define STATUS 1
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef _PCMakefileFactory_h_
|
||||
#define _PCMakefileFactory_h_
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@class PCProject;
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#ifndef _PCPREFCONTROLLER_H
|
||||
#define _PCPREFCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
#define PCSavePeriodDidChangeNotification @"PCSavePeriodDidChangeNotification"
|
||||
#define PCPreferencesDidChangeNotification @"PCPreferencesDidChangeNotification"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef _PCProject_h_
|
||||
#define _PCProject_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCProjectManager;
|
||||
@class PCProjectWindow;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef _PCProjectBrowser_h_
|
||||
#define _PCProjectBrowser_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
extern NSString *PCBrowserDidSetPathNotification;
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef _PCProjectBuilder_h_
|
||||
#define _PCProjectBuilder_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCProject;
|
||||
@class PCButton;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef _PCProjectBuilderPanel_h_
|
||||
#define _PCProjectBuilderPanel_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCProjectManager;
|
||||
|
||||
|
|
|
@ -26,12 +26,12 @@
|
|||
#ifndef _PCProjectEditor_h_
|
||||
#define _PCProjectEditor_h_
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#include <Protocols/CodeEditor.h>
|
||||
#include <Protocols/CodeParser.h>
|
||||
#import <Protocols/CodeEditor.h>
|
||||
#import <Protocols/CodeParser.h>
|
||||
|
||||
#include <ProjectCenter/PCEditorManager.h>
|
||||
#import <ProjectCenter/PCEditorManager.h>
|
||||
|
||||
@class PCProject;
|
||||
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
#ifndef _PCProjectInspector_h_
|
||||
#define _PCProjectInspector_h_
|
||||
|
||||
#include <ProjectCenter/PCFileNameField.h>
|
||||
#include <ProjectCenter/PCFileNameIcon.h>
|
||||
#import <ProjectCenter/PCFileNameField.h>
|
||||
#import <ProjectCenter/PCFileNameIcon.h>
|
||||
|
||||
@class PCProjectManager;
|
||||
@class PCProjectBrowser;
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
#ifndef _PCProjectDebugger_h_
|
||||
#define _PCProjectDebugger_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <Protocols/CodeDebugger.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <Protocols/CodeDebugger.h>
|
||||
|
||||
@class PCProject;
|
||||
@class PCButton;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef _PCLaunchPanel_h_
|
||||
#define _PCLaunchPanel_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCProjectManager;
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef _PCProjectLoadedFiles_h_
|
||||
#define _PCProjectLoadedFiles_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCProject;
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef _PCLoadedFilesPanel_h_
|
||||
#define _PCLoadedFilesPanel_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCProjectManager;
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef _PCProjectManager_h_
|
||||
#define _PCProjectManager_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@class PCBundleManager;
|
||||
@class PCFileManager;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef _PCSplitView_h_
|
||||
#define _PCSplitView_h_
|
||||
|
||||
#include <AppKit/NSSplitView.h>
|
||||
#import <AppKit/NSSplitView.h>
|
||||
|
||||
@interface PCSplitView : NSSplitView
|
||||
{
|
||||
|
|
|
@ -25,20 +25,20 @@
|
|||
#ifndef _ProjectCenter_h_
|
||||
#define _ProjectCenter_h_
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCBundleManager.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCBundleManager.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
#include <ProjectCenter/PCProjectManager.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCProjectWindow.h>
|
||||
#include <ProjectCenter/PCProjectBrowser.h>
|
||||
#include <ProjectCenter/PCProjectLoadedFiles.h>
|
||||
#include <ProjectCenter/PCProjectEditor.h>
|
||||
#include <ProjectCenter/PCProjectBuilder.h>
|
||||
#include <ProjectCenter/PCProjectLauncher.h>
|
||||
#include <ProjectCenter/PCProjectEditor.h>
|
||||
#import <ProjectCenter/PCProjectManager.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCProjectWindow.h>
|
||||
#import <ProjectCenter/PCProjectBrowser.h>
|
||||
#import <ProjectCenter/PCProjectLoadedFiles.h>
|
||||
#import <ProjectCenter/PCProjectEditor.h>
|
||||
#import <ProjectCenter/PCProjectBuilder.h>
|
||||
#import <ProjectCenter/PCProjectLauncher.h>
|
||||
#import <ProjectCenter/PCProjectEditor.h>
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef _CodeDebugger_h_
|
||||
#define _CodeDebugger_h_
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@protocol CodeDebugger <NSObject>
|
||||
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef _CodeEditor_h_
|
||||
#define _CodeEditor_h_
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@protocol CodeEditor <NSObject>
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef _CodeParserProtocol_h_
|
||||
#define _CodeParserProtocol_h_
|
||||
|
||||
#include <Foundation/NSObject.h>
|
||||
#import <Foundation/NSObject.h>
|
||||
|
||||
@class PCEditor;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
and therefore PC remains open for future extensions!
|
||||
*/
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@class PCProject;
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#import <stdio.h>
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include "PCDebugger.h"
|
||||
#include "PCDebuggerView.h"
|
||||
#import <AppKit/AppKit.h>
|
||||
#import "PCDebugger.h"
|
||||
#import "PCDebuggerView.h"
|
||||
|
||||
#ifndef NOTIFICATION_CENTER
|
||||
#define NOTIFICATION_CENTER [NSNotificationCenter defaultCenter]
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "PTYView.h"
|
||||
#import "PTYView.h"
|
||||
|
||||
@class PCDebugger;
|
||||
@class NSString;
|
||||
|
|
|
@ -20,14 +20,14 @@
|
|||
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "PCDebuggerView.h"
|
||||
#include "PCDebugger.h"
|
||||
#import "PCDebuggerView.h"
|
||||
#import "PCDebugger.h"
|
||||
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <Foundation/NSScanner.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <Foundation/NSScanner.h>
|
||||
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
#import <unistd.h>
|
||||
#import <signal.h>
|
||||
|
||||
#ifndef NOTIFICATION_CENTER
|
||||
#define NOTIFICATION_CENTER [NSNotificationCenter defaultCenter]
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@interface PTYView : NSTextView
|
||||
{
|
||||
|
|
|
@ -20,12 +20,12 @@
|
|||
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <PTYView.h>
|
||||
#import <PTYView.h>
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
#import <fcntl.h>
|
||||
#import <sys/stat.h>
|
||||
#import <unistd.h>
|
||||
#import <signal.h>
|
||||
|
||||
#ifndef NOTIFICATION_CENTER
|
||||
#define NOTIFICATION_CENTER [NSNotificationCenter defaultCenter]
|
||||
|
|
|
@ -23,8 +23,8 @@
|
|||
#ifndef _CodeHandler_H_
|
||||
#define _CodeHandler_H_
|
||||
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSString.h>
|
||||
#import <Foundation/NSObject.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
typedef enum _CommentType {
|
||||
NoComment,
|
||||
|
|
|
@ -23,9 +23,9 @@
|
|||
#ifndef _ObjCClassHandler_H_
|
||||
#define _ObjCClassHandler_H_
|
||||
|
||||
#include "CodeHandler.h"
|
||||
#import "CodeHandler.h"
|
||||
|
||||
#include "ObjCCommentHandler.h"
|
||||
#import "ObjCCommentHandler.h"
|
||||
|
||||
/**
|
||||
* ClassStart ClassSymbol ClassName ClassSuper ClassProto | ClassCategory
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
|
||||
#define EQUAL(str) ([element isEqualToString: str])
|
||||
|
||||
#include <CodeHandler.h>
|
||||
#include <Foundation/NSString.h>
|
||||
#import <CodeHandler.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
@class NSString;
|
||||
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#include "ObjCCommentHandler.h"
|
||||
#import "ObjCCommentHandler.h"
|
||||
|
||||
@implementation ObjCCommentHandler
|
||||
|
||||
|
|
|
@ -23,9 +23,9 @@
|
|||
#ifndef _ObjCMethodHandler_H_
|
||||
#define _ObjCMethodHandler_H_
|
||||
|
||||
#include "CodeHandler.h"
|
||||
#import "CodeHandler.h"
|
||||
|
||||
#include "ObjCCommentHandler.h"
|
||||
#import "ObjCCommentHandler.h"
|
||||
|
||||
/**
|
||||
* MethodStart MethodSymbol MethodReturnValue MethodName MethodEnd
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
#include "ObjCMethodHandler.h"
|
||||
#import "ObjCMethodHandler.h"
|
||||
|
||||
@implementation ObjCMethodHandler
|
||||
|
||||
|
|
|
@ -23,13 +23,13 @@
|
|||
#ifndef _CodeParser_H_
|
||||
#define _CodeParser_H_
|
||||
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSString.h>
|
||||
#import <Foundation/NSObject.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
#include <Protocols/CodeParser.h>
|
||||
#import <Protocols/CodeParser.h>
|
||||
|
||||
#include "CodeHandler.h"
|
||||
#include "ObjCMethodHandler.h"
|
||||
#import "CodeHandler.h"
|
||||
#import "ObjCMethodHandler.h"
|
||||
|
||||
@interface PCParser : NSObject <CodeParser>
|
||||
{
|
||||
|
|
|
@ -25,9 +25,9 @@
|
|||
#ifndef _PCAggregateProject_h
|
||||
#define _PCAggregateProject_h
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <Protocols/ProjectType.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <Protocols/ProjectType.h>
|
||||
|
||||
@class PCMakefileFactory;
|
||||
|
||||
|
|
|
@ -22,11 +22,11 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
#include "PCAggregateProject.h"
|
||||
#import "PCAggregateProject.h"
|
||||
|
||||
@implementation PCAggregateProject
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifndef _PCAppProject_Inspector_h_
|
||||
#define _PCAppProject_Inspector_h_
|
||||
|
||||
#include "PCAppProject.h"
|
||||
#import "PCAppProject.h"
|
||||
|
||||
@interface PCAppProject (Inspector)
|
||||
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
#include "PCAppProject+Inspector.h"
|
||||
#import "PCAppProject+Inspector.h"
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// --- Customized text field
|
||||
|
|
|
@ -30,12 +30,12 @@
|
|||
#ifndef _PCAppProject_h_
|
||||
#define _PCAppProject_h_
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCProjectInspector.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCProjectInspector.h>
|
||||
|
||||
#include <Protocols/ProjectType.h>
|
||||
#import <Protocols/ProjectType.h>
|
||||
|
||||
@interface PCAppTextField : NSTextField
|
||||
{
|
||||
|
|
|
@ -23,13 +23,13 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#include <ProjectCenter/PCProjectBrowser.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCFileCreator.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCProjectBrowser.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCFileCreator.h>
|
||||
|
||||
#include "PCAppProject.h"
|
||||
#include "PCAppProject+Inspector.h"
|
||||
#import "PCAppProject.h"
|
||||
#import "PCAppProject+Inspector.h"
|
||||
|
||||
@implementation PCAppProject
|
||||
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
#ifndef _PCAPPPROJ_APPCONTROLLER_H
|
||||
#define _PCAPPPROJ_APPCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
// Uncomment if your application is Renaissance-based
|
||||
//#include <Renaissance/Renaissance.h>
|
||||
//#import <Renaissance/Renaissance.h>
|
||||
|
||||
@interface AppController : NSObject
|
||||
{
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include "AppController.h"
|
||||
#import "AppController.h"
|
||||
|
||||
@implementation AppController
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
int
|
||||
main(int argc, const char *argv[])
|
||||
|
|
|
@ -30,9 +30,9 @@
|
|||
#ifndef _PCBundleProject_h
|
||||
#define _PCBundleProject_h
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <Protocols/ProjectType.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <Protocols/ProjectType.h>
|
||||
|
||||
@class PCMakefileFactory;
|
||||
|
||||
|
|
|
@ -23,12 +23,12 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCFileCreator.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCFileCreator.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
#include "PCBundleProject.h"
|
||||
#import "PCBundleProject.h"
|
||||
|
||||
@implementation PCBundleProject
|
||||
|
||||
|
|
|
@ -30,9 +30,9 @@
|
|||
#ifndef _PCFrameworkProject_h
|
||||
#define _PCFrameworkProject_h
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <Protocols/ProjectType.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <Protocols/ProjectType.h>
|
||||
|
||||
@class PCMakefileFactory;
|
||||
|
||||
|
|
|
@ -22,13 +22,13 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#include <ProjectCenter/PCProjectBrowser.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCFileCreator.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCProjectBrowser.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCFileCreator.h>
|
||||
|
||||
#include "PCFrameworkProject.h"
|
||||
#import "PCFrameworkProject.h"
|
||||
|
||||
@implementation PCFrameworkProject
|
||||
|
||||
|
|
|
@ -26,10 +26,10 @@
|
|||
#ifndef _PCLibProject_h
|
||||
#define _PCLibProject_h
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <Protocols/ProjectType.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <Protocols/ProjectType.h>
|
||||
|
||||
@class PCMakefileFactory;
|
||||
|
||||
|
|
|
@ -23,12 +23,12 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#include <ProjectCenter/PCFileCreator.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCProjectBrowser.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCFileCreator.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCProjectBrowser.h>
|
||||
|
||||
#include "PCLibProject.h"
|
||||
#import "PCLibProject.h"
|
||||
|
||||
@implementation PCLibProject
|
||||
|
||||
|
|
|
@ -25,11 +25,11 @@
|
|||
#ifndef _PCResourceSetProject_h
|
||||
#define _PCResourceSetProject_h
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
|
||||
#include <Protocols/ProjectType.h>
|
||||
#import <Protocols/ProjectType.h>
|
||||
|
||||
@class PCMakefileFactory;
|
||||
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
#include "PCResourceSetProject.h"
|
||||
#import "PCResourceSetProject.h"
|
||||
|
||||
@implementation PCResourceSetProject
|
||||
|
||||
|
|
|
@ -30,11 +30,11 @@
|
|||
#ifndef _PCToolProject_h
|
||||
#define _PCToolProject_h
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
#include <ProjectCenter/PCDefines.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#import <ProjectCenter/PCDefines.h>
|
||||
|
||||
#include <Protocols/ProjectType.h>
|
||||
#import <Protocols/ProjectType.h>
|
||||
|
||||
@class PCMakefileFactory;
|
||||
|
||||
|
|
|
@ -23,11 +23,11 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#include <ProjectCenter/PCFileCreator.h>
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCFileCreator.h>
|
||||
|
||||
#include "PCToolProject.h"
|
||||
#import "PCToolProject.h"
|
||||
|
||||
@implementation PCToolProject
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
int
|
||||
main(int argc, const char *argv[])
|
||||
|
|
|
@ -19,15 +19,15 @@
|
|||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
#include <ProjectCenter/PCPrefController.h>
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#include <ProjectCenter/PCFileManager.h>
|
||||
#import <ProjectCenter/PCPrefController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/PCFileManager.h>
|
||||
|
||||
#include "PCAppController.h"
|
||||
#include "PCMenuController.h"
|
||||
#include "PCInfoController.h"
|
||||
#import "PCAppController.h"
|
||||
#import "PCMenuController.h"
|
||||
#import "PCInfoController.h"
|
||||
|
||||
#include <ProjectCenter/ProjectCenter.h>
|
||||
#import <ProjectCenter/ProjectCenter.h>
|
||||
|
||||
@implementation PCAppController
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include "PCFindController.h"
|
||||
#import "PCFindController.h"
|
||||
|
||||
@implementation PCFindController
|
||||
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <ProjectCenter/ProjectCenter.h>
|
||||
#import <ProjectCenter/ProjectCenter.h>
|
||||
|
||||
#include "PCInfoController.h"
|
||||
#import "PCInfoController.h"
|
||||
|
||||
@implementation PCInfoController
|
||||
|
||||
|
|
|
@ -19,15 +19,15 @@
|
|||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
#include <ProjectCenter/PCPrefController.h>
|
||||
#include <ProjectCenter/PCLogController.h>
|
||||
#include <ProjectCenter/ProjectCenter.h>
|
||||
#import <ProjectCenter/PCPrefController.h>
|
||||
#import <ProjectCenter/PCLogController.h>
|
||||
#import <ProjectCenter/ProjectCenter.h>
|
||||
|
||||
#include <Protocols/CodeEditor.h>
|
||||
#import <Protocols/CodeEditor.h>
|
||||
|
||||
#include "PCAppController.h"
|
||||
#include "PCMenuController.h"
|
||||
#include "PCInfoController.h"
|
||||
#import "PCAppController.h"
|
||||
#import "PCMenuController.h"
|
||||
#import "PCInfoController.h"
|
||||
|
||||
#import "TextFinder.h"
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
int
|
||||
main(int argc, const char **argv)
|
||||
|
|
Loading…
Reference in a new issue