home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / ManPagesFromHeaders / Source / Controller.h < prev    next >
Encoding:
Text File  |  1993-05-09  |  675 b   |  35 lines

  1. /*
  2.  * Written by Guy Roberts of Object Skills Ltd, drifting
  3.  * in cyberspace without a domain or email address right 
  4.  * now. 
  5.  * May 7 1993. You can use this as a base for a better application
  6.  * as long as it is made publically available.
  7.  */
  8.  
  9. #import <appkit/appkit.h>
  10. #import "Translator.h"
  11. #import "InfoView.h"
  12. #import "Preferences.h"
  13.  
  14. #import <streams/streams.h>
  15. #import <sys/stat.h>
  16.  
  17. @interface Controller:Object
  18. {
  19.     id        openReq;
  20.     id        infoview;
  21.     id        headingNames;
  22.     id        preferences;
  23.     BOOL    launchEdit;
  24.     char    *lastDirectoryUsed;
  25. }
  26.  
  27. - createATranslator: (char *) name;
  28. - open: sender;
  29. - showInfoPanel: sender;
  30. - showPreferences:sender;
  31. - endAllWars: sender;
  32. - free;
  33.  
  34. @end
  35.