home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / Rhapsody / Graphics / Morph-2.0a / PreviewCell.h < prev    next >
Encoding:
Text File  |  1998-01-25  |  527 b   |  26 lines

  1. // PreviewCell.h 
  2. //
  3. // created by Martin Wennerberg on Sun 28-Dec-1997
  4. //
  5. // when        who    modification
  6.  
  7. #import <AppKit/AppKit.h>
  8.  
  9. @interface PreviewCell : NSCell
  10. {
  11.     NSBitmapImageRep    *bitmap;
  12.     BOOL                 shouldDrawLines;
  13.     float                 delta;
  14.     id                     delegate;
  15. }
  16.  
  17. - (void) drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
  18.  
  19. - (void) setBitmap:(NSBitmapImageRep *)obj;
  20. - (NSBitmapImageRep *)bitmap;
  21.  
  22. - (void) setDelta:(float)val;
  23. - (void) setDelegate:(id)obj;
  24. - (void) setShouldDrawLines:(BOOL)yn;
  25. @end
  26.