blob: 7252072aa9560535b8e92cc1923416334ad777a8 [file] [log] [blame]
Jack Jansen3bbb6172002-07-29 21:36:35 +00001/* MyAppDelegate */
2
3#import <Cocoa/Cocoa.h>
4
5@interface MyAppDelegate : NSObject
6{
Serhiy Storchaka598ceae2017-11-28 17:56:10 +02007 BOOL initial_action_done;
8 BOOL should_terminate;
Jack Jansen3bbb6172002-07-29 21:36:35 +00009}
10- (id)init;
11- (IBAction)showPreferences:(id)sender;
12- (BOOL)shouldShowUI;
13- (BOOL)shouldTerminate;
Jack Jansenc30d7c32003-06-20 14:36:58 +000014- (void)testFileTypeBinding;
Jack Jansen3bbb6172002-07-29 21:36:35 +000015@end