apps-projectcenter/PCAppProj/AppController.h
Robert Slover 257bc6530a fixed the info panel issue
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7817 72102866-910b-0410-8b05-ffd578937521
2000-10-15 12:36:06 +00:00

33 lines
641 B
Objective-C

/*
* AppController.h created by phr on 2000-08-27 11:38:59 +0000
*
* Project TestApp
*
* Created with ProjectCenter - http://www.projectcenter.ch
*
* $Id$
*/
#import <AppKit/AppKit.h>
@interface AppController : NSObject
{
}
+ (void)initialize;
- (id)init;
- (void)dealloc;
- (void)awakeFromNib;
- (void)applicationDidFinishLaunching:(NSNotification *)notif;
- (void)applicationShouldTerminate:(id)sender;
- (void)applicationWillTerminate:(NSNotification *)notification;
- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName;
- (void)showPrefPanel:(id)sender;
- (void)showInfoPanel:(id)sender;
@end