apps-projectcenter/PCLib/PCEditor.h
Philippe C.D. Robert e2a9d52ed5 Cleaning up the internal editor code. More to come...
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@12265 72102866-910b-0410-8b05-ffd578937521
2002-01-29 21:29:30 +00:00

43 lines
637 B
Objective-C

/*
* PCEditor.h created by probert on 2002-01-29 20:37:28 +0000
*
* Project ProjectCenter
*
* Created with ProjectCenter - http://www.gnustep.org
*
* $Id$
*/
#ifndef _PCEDITOR_H_
#define _PCEDITOR_H_
#import <AppKit/AppKit.h>
@class PCEditorView;
@interface PCEditor : NSObject
{
PCEditorView *view;
NSWindow *window;
NSMutableString *path;
id delegate;
}
- (id)initWithPath:(NSString*)file;
- (void)dealloc;
- (void)setDelegate:(id)aDelegate;
- (id)delegate;
- (NSWindow *)editorWindow;
- (void)show;
- (void)close;
- (void)windowWillClose:(NSNotification *)aNotif;
@end
#endif // _PCEDITOR_H_