mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 19:01:18 +00:00
related to editor handling. This is work in progress... Every PCProject component now has to conform to the ProjectComponent protocol. Syntax highlighting is disabled for now, this will undergo a major rewrite soon. Furthermore I separated the component handling stuff from the main class file and put it into PCProject+ComponentHandling. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@12499 72102866-910b-0410-8b05-ffd578937521
20 lines
328 B
Objective-C
20 lines
328 B
Objective-C
/*
|
|
* ProjectComponent.h created by probert on 2002-02-10 09:29:07 +0000
|
|
*
|
|
* Project ProjectCenter
|
|
*
|
|
* Created with ProjectCenter - http://www.gnustep.org
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
@class PCProject;
|
|
@class NSView;
|
|
|
|
@protocol ProjectComponent <NSObject>
|
|
|
|
- (id)initWithProject:(PCProject *)aProject;
|
|
|
|
- (NSView *)componentView;
|
|
|
|
@end
|