diff options
Diffstat (limited to 'Mac/PythonLauncher/MyAppDelegate.h')
-rw-r--r-- | Mac/PythonLauncher/MyAppDelegate.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Mac/PythonLauncher/MyAppDelegate.h b/Mac/PythonLauncher/MyAppDelegate.h new file mode 100644 index 0000000..097b541 --- /dev/null +++ b/Mac/PythonLauncher/MyAppDelegate.h @@ -0,0 +1,15 @@ +/* MyAppDelegate */ + +#import <Cocoa/Cocoa.h> + +@interface MyAppDelegate : NSObject +{ + BOOL initial_action_done; + BOOL should_terminate; +} +- (id)init; +- (IBAction)showPreferences:(id)sender; +- (BOOL)shouldShowUI; +- (BOOL)shouldTerminate; +- (void)testFileTypeBinding; +@end |