mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 11:21:29 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16497 72102866-910b-0410-8b05-ffd578937521
47 lines
867 B
Objective-C
47 lines
867 B
Objective-C
/*
|
|
* PCProjectEditor.h created by probert on 2002-02-10 09:27:10 +0000
|
|
*
|
|
* Project ProjectCenter
|
|
*
|
|
* Created with ProjectCenter - http://www.gnustep.org
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef _PCPROJECTEDITOR_H_
|
|
#define _PCPROJECTEDITOR_H_
|
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
@class NSBox;
|
|
@class NSView;
|
|
@class NSScrollView;
|
|
@class PCEditorView;
|
|
@class PCProject;
|
|
|
|
#ifndef GNUSTEP_BASE_VERSION
|
|
@protocol ProjectComponent;
|
|
#else
|
|
#include <ProjectCenter/ProjectComponent.h>
|
|
#endif
|
|
|
|
@interface PCProjectEditor : NSObject <ProjectComponent>
|
|
{
|
|
NSBox *_componentView;
|
|
PCProject *_currentProject;
|
|
PCEditorView *_editorView;
|
|
NSScrollView *_scrollView;
|
|
}
|
|
|
|
- (id)initWithProject:(PCProject *)aProject;
|
|
- (void)dealloc;
|
|
|
|
- (NSView *)componentView;
|
|
|
|
- (void)setEditorView:(PCEditorView *)ev;
|
|
- (PCEditorView *)editorView;
|
|
|
|
@end
|
|
|
|
#endif // _PCPROJECTEDITOR_H_
|
|
|