home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / Crossword / Source / AppDelegate.h next >
Encoding:
Text File  |  1992-10-10  |  530 b   |  30 lines

  1. /*
  2.  
  3. File AppDelegate.h
  4.  
  5. The application delegate is responsible for updating menus and handling basic menu commands.
  6.  
  7. */
  8.  
  9. #import <objc/Object.h>
  10.  
  11.  
  12. /* ————————————————————————————————————————————————————————————————————————————  */
  13.  
  14.  
  15. @interface AppDelegate:Object
  16. {
  17.     id        inspector;
  18. }
  19.  
  20. - appDidInit: sender;
  21. - (BOOL) appAcceptsAnotherFile: sender;
  22. - (BOOL) app: sender  openFile: (const char *) file  type: (const char *) type;
  23. - new: sender;
  24. - open: sender;
  25. - (BOOL) menuItemUpdate: menuCell;
  26. - mainCrossword;
  27. - mainPuzzle;
  28.  
  29. @end
  30.