home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Temp / QuickProject / Controller.h next >
Encoding:
Text File  |  1995-04-12  |  530 b   |  32 lines

  1. // Copyright (c) 1995 Steve Hayman
  2. // Use is restricted by the MiscKit license
  3.  
  4. #import <appkit/appkit.h>
  5.  
  6. @interface Controller:Object
  7. {
  8.     id    adaptors;
  9.     id    libraries;
  10.     id    name;
  11.     id    templates;
  12.     id  templateList;
  13.     id  templatePathnames;
  14.     id  selectedTemplatePath;
  15.         
  16.     id processLog;
  17.     id prefsPanel;
  18.     id openInPBSwitch;
  19.     id destinationFile;
  20.     
  21.     id iconWell;
  22. }
  23.  
  24. - saveAs:sender;
  25. - log:(const char *)str;
  26. - showSelectedPath:sender;
  27.  
  28. - showPreferences:sender;
  29. - ok:sender;
  30. - revert:sender;
  31. @end
  32.