mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 11:51:08 +00:00
41 lines
747 B
C
41 lines
747 B
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_
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <ProjectCenter/ProjectComponent.h>
|
||
|
|
||
|
@class NSBox;
|
||
|
@class NSScrollView;
|
||
|
@class PCEditorView;
|
||
|
|
||
|
@interface PCProjectEditor : NSObject <ProjectComponent>
|
||
|
{
|
||
|
NSBox *componentView;
|
||
|
PCProject *currentProject;
|
||
|
PCEditorView *editor;
|
||
|
NSScrollView *scrollView;
|
||
|
}
|
||
|
|
||
|
- (id)initWithProject:(PCProject *)aProject;
|
||
|
- (void)dealloc;
|
||
|
|
||
|
- (NSView *)componentView;
|
||
|
|
||
|
- (void)setEditorView:(PCEditorView *)ev;
|
||
|
- (PCEditorView *)editorView;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif // _PCPROJECTEDITOR_H_
|
||
|
|