home *** CD-ROM | disk | FTP | other *** search
- /*
- NXCachedImageRep.h
- Application Kit, Release 2.0
- Copyright (c) 1988, 1989, 1990, NeXT, Inc. All rights reserved.
- */
-
- #import "NXImageRep.h"
- #import "Window.h"
- #import <objc/zone.h>
-
- @interface NXCachedImageRep : NXImageRep
- {
- NXPoint _origin;
- int _reservedInt1;
- Window *_window;
- void *_cache;
- int _reservedInt2;
- }
-
- - initFromWindow:(Window *)win rect:(const NXRect *)rect;
-
- - getWindow:(Window **)win andRect:(NXRect *)rect;
- - (BOOL)draw;
- - read:(NXTypedStream *)stream;
- - write:(NXTypedStream *)stream;
- - copyFromZone:(NXZone *)zone;
- - free;
-
- /*
- * The following new... methods are now obsolete. They remain in this
- * interface file for backward compatibility only. Use Object's alloc method
- * and the init... methods defined in this class instead.
- */
- + newFromWindow:(Window *)win rect:(const NXRect *)rect;
-
- @end
-