home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / Yap / YapApp.h < prev    next >
Encoding:
Text File  |  1992-06-16  |  600 b   |  35 lines

  1. #import <appkit/Application.h>
  2.  
  3. @interface YapApp : Application
  4. {
  5.     id outputView;
  6.     id infoPanel;
  7.     id helpPanel;
  8.     id prefsPanel;
  9.     id findObject;
  10.     id outputWidthField;
  11.     id outputHeightField;
  12.     id showCacheButton;
  13.     id clearCacheButton;
  14. }
  15.  
  16. - showInfo:sender;
  17. - showHelp:sender;
  18. - showPrefs:sender;
  19.  
  20. - newDocument:sender;
  21. - openDocument:sender;
  22.  
  23. - (int)app:app openFile:(const char *)path type:(const char *)type;
  24. - (BOOL)appAcceptsAnotherFile:sender;
  25.  
  26. - updateOutputWindowSize;
  27.  
  28. - outputView;
  29. - outputWindow;
  30.  
  31. - updatePreferencesPanel:sender;
  32. - okPreferencesPanel:sender;
  33.  
  34. @end
  35.