home *** CD-ROM | disk | FTP | other *** search
- // PreviewCell.h
- //
- // created by Martin Wennerberg on Sun 28-Dec-1997
- //
- // when who modification
-
- #import <AppKit/AppKit.h>
-
- @interface PreviewCell : NSCell
- {
- NSBitmapImageRep *bitmap;
- BOOL shouldDrawLines;
- float delta;
- id delegate;
- }
-
- - (void) drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
-
- - (void) setBitmap:(NSBitmapImageRep *)obj;
- - (NSBitmapImageRep *)bitmap;
-
- - (void) setDelta:(float)val;
- - (void) setDelegate:(id)obj;
- - (void) setShouldDrawLines:(BOOL)yn;
- @end
-