summaryrefslogtreecommitdiff
path: root/Mac/PythonLauncher/MyAppDelegate.h
blob: 7252072aa9560535b8e92cc1923416334ad777a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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