You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
276 B

  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