apps-projectcenter/PCAppProj/AppController.h
Philippe C.D. Robert c27438e6c5 All bundles and libProjectCenter are now installed under GNUSTEP_SYSTEM_ROOT.
Also the PC.proj templates have now a correct install path default value.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@11943 72102866-910b-0410-8b05-ffd578937521
2002-01-02 12:13:06 +00:00

34 lines
652 B
Objective-C

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