Jack Jansen | 3bbb617 | 2002-07-29 21:36:35 +0000 | [diff] [blame] | 1 | /* MyAppDelegate */ |
| 2 | |
| 3 | #import <Cocoa/Cocoa.h> |
| 4 | |
| 5 | @interface MyAppDelegate : NSObject |
| 6 | { |
Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame^] | 7 | BOOL initial_action_done; |
| 8 | BOOL should_terminate; |
Jack Jansen | 3bbb617 | 2002-07-29 21:36:35 +0000 | [diff] [blame] | 9 | } |
| 10 | - (id)init; |
| 11 | - (IBAction)showPreferences:(id)sender; |
| 12 | - (BOOL)shouldShowUI; |
| 13 | - (BOOL)shouldTerminate; |
Jack Jansen | c30d7c3 | 2003-06-20 14:36:58 +0000 | [diff] [blame] | 14 | - (void)testFileTypeBinding; |
Jack Jansen | 3bbb617 | 2002-07-29 21:36:35 +0000 | [diff] [blame] | 15 | @end |