diff options
Diffstat (limited to 'Mac/OSX/PythonLauncher/MyAppDelegate.h')
-rw-r--r-- | Mac/OSX/PythonLauncher/MyAppDelegate.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Mac/OSX/PythonLauncher/MyAppDelegate.h b/Mac/OSX/PythonLauncher/MyAppDelegate.h new file mode 100644 index 0000000..c65175a --- /dev/null +++ b/Mac/OSX/PythonLauncher/MyAppDelegate.h @@ -0,0 +1,14 @@ +/* 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; +@end |