home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / Yap / YapOutput.h < prev    next >
Encoding:
Text File  |  1991-06-08  |  388 b   |  27 lines

  1. #import <appkit/View.h>
  2.  
  3. @interface YapOutput:View {
  4.     id cache;
  5.     BOOL showCache;
  6.     BOOL clearCache;
  7. }
  8.  
  9.  
  10. - initFrame:(const NXRect *)viewFrame;
  11.  
  12. - sizeTo:(NXCoord)width :(NXCoord)height;
  13. - free;
  14. - executeCodeFrom:textObj;
  15. - drawSelf:(NXRect *)rects :(int)rectCount;
  16.  
  17. - (BOOL)isCacheCleared;
  18. - (BOOL)isCacheShown;
  19. - setCacheCleared:(BOOL)flag;
  20. - setCacheShown:(BOOL)flag;
  21.  
  22. @end
  23.  
  24.  
  25.  
  26.  
  27.