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