2002-07-29 21:36:35 +00:00
|
|
|
/* MyAppDelegate */
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface MyAppDelegate : NSObject
|
|
|
|
{
|
2017-11-28 17:56:10 +02:00
|
|
|
BOOL initial_action_done;
|
|
|
|
BOOL should_terminate;
|
2002-07-29 21:36:35 +00:00
|
|
|
}
|
|
|
|
- (id)init;
|
|
|
|
- (IBAction)showPreferences:(id)sender;
|
|
|
|
- (BOOL)shouldShowUI;
|
|
|
|
- (BOOL)shouldTerminate;
|
2003-06-20 14:36:58 +00:00
|
|
|
- (void)testFileTypeBinding;
|
2002-07-29 21:36:35 +00:00
|
|
|
@end
|