Up
Authors
- Adam Fedor (
fedor@gnu.org
)
-
Cached image representation.
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSCachedImageRep.h
Availability: OpenStep
Instance Variables
Method summary
- (id)
initWithSize: (NSSize)aSize
depth: (
NSWindowDepth)aDepth
separate: (BOOL)separate
alpha: (BOOL)alpha;
Availability: OpenStep
Initializes and returns a new NSCachedImageRep with size and depth specified by aSize and aDepth respectively. If seperate is YES
, the image will gets its own unique cache without sharing it with other images.
- (id)
initWithWindow: (
NSWindow*)aWindow
rect: (NSRect)aRect;
Availability: OpenStep
Initializes and returns a new NSCachedImageRep into a NSWindow aWindow. The image will be draw into the rectange aRect of this window. aWindow is retained.
See Also: -rect
-window
- (NSRect)
rect;
Availability: OpenStep
- (
NSWindow*)
window;
Availability: OpenStep
Instance Variables for NSCachedImageRep Class
@protected NSRect _rect;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSWindow* _window;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
Up