mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 19:01:18 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@8465 72102866-910b-0410-8b05-ffd578937521
34 lines
642 B
Objective-C
34 lines
642 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;
|
|
|
|
- (BOOL)applicationShouldTerminate:(id)sender;
|
|
- (void)applicationWillTerminate:(NSNotification *)notification;
|
|
|
|
- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName;
|
|
|
|
- (void)showPrefPanel:(id)sender;
|
|
- (void)showInfoPanel:(id)sender;
|
|
|
|
@end
|