home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks3 / AppKit.framework / Headers / NSCachedImageRep.h < prev    next >
Text File  |  1994-09-29  |  732b  |  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. /* References the specified rect within the window; the window is retained */
  21. - initWithWindow:(NSWindow *)win rect:(NSRect)rect;
  22.  
  23. /* Creates a location in some window. Will be freed when rep is freed */
  24. - initWithSize:(NSSize)size depth:(NSWindowDepth)depth separate:(BOOL)flag alpha:(BOOL)alpha;
  25.  
  26. - (NSWindow *)window;
  27. - (NSRect)rect;
  28.  
  29. @end
  30.