home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / ToDoController.h < prev    next >
Encoding:
Text File  |  1996-07-30  |  647 b   |  32 lines

  1. /*
  2.   You may freely copy, distribute, and reuse the code in this example.
  3.   NeXT disclaims any warranty of any kind, expressed or implied, as to its
  4.   fitness for any particular use.
  5. */
  6.  
  7. #import <AppKit/AppKit.h>
  8. #import <Foundation/Foundation.h>
  9.  
  10. @interface ToDoController:NSObject
  11. {
  12.     id  inspector;
  13. }
  14.  
  15. - (void)newDoc:(id)sender;
  16. - (void)openDoc:(id)sender;
  17. - (void)closeDoc:(id)sender;
  18. - (void)saveDoc:(id)sender;
  19.  
  20. - (void)showInfo:(id)sender;
  21. - (void)showInspector:(id)sender;
  22. - (void)showPreferences:(id)sender;
  23.  
  24. - (id)inspector;
  25.  
  26. /* pasteboard copy/paste */
  27. - (void)cutItem:sender;
  28. - (void)copyItem:sender;
  29. - (void)pasteItem:sender;
  30.  
  31. @end
  32.