home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Programming / GDBbundle-1.0-MIS / src / TextEdit / Controller.h < prev    next >
Encoding:
Text File  |  1997-08-16  |  587 b   |  26 lines

  1. #import <Foundation/NSObject.h>
  2.  
  3. @class NSApplication;
  4.  
  5. #define GDB_MENU_ITEM @"Gdb..."
  6.  
  7. @interface Controller : NSObject
  8. {
  9.     id infoPanel;
  10.     id gdbDisplayController;
  11.     id gdbRootConnection;
  12. }
  13.  
  14. /* NSApplication delegate methods */
  15. - (BOOL)application:(NSApplication *)app openFile:(NSString *)filename;
  16. - (BOOL)application:(NSApplication *)app openTempFile:(NSString *)filename;
  17. - (BOOL)applicationShouldTerminate:(NSApplication *)app;
  18.  
  19. /* Action methods */
  20. - (void)createNew:(id)sender;
  21. - (void)open:(id)sender;
  22. - (void)saveAll:(id)sender;
  23. - (void)showInfoPanel:(id)sender;
  24.  
  25. @end
  26.