home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep (Enterprise)
/
OpenStepENTCD.toast
/
OEDEV
/
DEV.Z
/
NSCachedImageRep.h
< prev
next >
Wrap
Text File
|
1996-09-09
|
619b
|
27 lines
/*
NSCachedImageRep.h
Application Kit
Copyright (c) 1994-1996, NeXT Software, Inc.
All rights reserved.
*/
#import <AppKit/NSImageRep.h>
@class NSWindow;
@interface NSCachedImageRep : NSImageRep {
NSPoint _origin;
NSWindow *_window;
void *_cache;
}
/* References the specified rect within the window; the window is retained */
- (id)initWithWindow:(NSWindow *)win rect:(NSRect)rect;
/* Creates a location in some window. Will be freed when rep is freed */
- (id)initWithSize:(NSSize)size depth:(NSWindowDepth)depth separate:(BOOL)flag alpha:(BOOL)alpha;
- (NSWindow *)window;
- (NSRect)rect;
@end