home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / CellScrollView / FooCell.h < prev    next >
Text File  |  1991-10-10  |  450b  |  23 lines

  1. /* 
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  */
  6.  
  7.  
  8. #import <appkit/ActionCell.h>
  9.  
  10. @interface FooCell:ActionCell
  11. {
  12.   NXCoord    ascender, descender, lineHeight;
  13.   id        fooObject;
  14. }
  15.  
  16. - init;
  17. - fooObject;
  18. - setFooObject:anObject;
  19. - setFont:fontObj;
  20. - drawInside:(const NXRect *)cellFrame inView:controlView;
  21.  
  22. @end
  23.