/Mac/PythonLauncher/MyAppDelegate.h

http://unladen-swallow.googlecode.com/ · C++ Header · 15 lines · 12 code · 2 blank · 1 comment · 0 complexity · ff6423eea2837cddef5282c6ceaa417d MD5 · raw file

  1. /* MyAppDelegate */
  2. #import <Cocoa/Cocoa.h>
  3. @interface MyAppDelegate : NSObject
  4. {
  5. BOOL initial_action_done;
  6. BOOL should_terminate;
  7. }
  8. - (id)init;
  9. - (IBAction)showPreferences:(id)sender;
  10. - (BOOL)shouldShowUI;
  11. - (BOOL)shouldTerminate;
  12. - (void)testFileTypeBinding;
  13. @end