summaryrefslogtreecommitdiff
path: root/Mac/PythonLauncher/MyAppDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/PythonLauncher/MyAppDelegate.h')
-rw-r--r--Mac/PythonLauncher/MyAppDelegate.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/Mac/PythonLauncher/MyAppDelegate.h b/Mac/PythonLauncher/MyAppDelegate.h
new file mode 100644
index 0000000000..097b54177c
--- /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