apps-projectcenter/PCLib/PCProjectEditor.h
Sergii Stoian 684d8c4e04 Make ProjectBuilder separate panel.various changes and cleanups.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16497 72102866-910b-0410-8b05-ffd578937521
2003-04-21 13:46:10 +00:00

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_