mirror of
https://github.com/python/cpython.git
synced 2024-11-23 18:04:37 +08:00
16 lines
290 B
Objective-C
16 lines
290 B
Objective-C
/* 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
|