home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks1 / AppKit.framework / Headers / NSCachedImageRep.h < prev    next >
Encoding:
Text File  |  1994-12-20  |  628 b   |  30 lines

  1. /*
  2.     NXCachedImageRep.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "NSImageRep.h"
  8. #import "NSWindow.h"
  9. #import <objc/zone.h>
  10.  
  11. @interface NSCachedImageRep : NSImageRep
  12. {
  13.     NSPoint             _origin;
  14.     int                 _reservedInt1;
  15.     NSWindow           *_window;
  16.     void           *_cache;
  17.     int            _reservedInt2;
  18. }
  19.  
  20. - initFromWindow:(NSWindow *)win rect:(NSRect)rect;
  21.  
  22. - getWindow:(NSWindow **)win andRect:(NSRect *)rect;
  23. - (BOOL)draw;
  24. - read:(NXTypedStream *)stream;
  25. - write:(NXTypedStream *)stream;
  26. - copyFromZone:(NSZone *)zone;
  27. - (void)dealloc;
  28.  
  29. @end
  30.