home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / SubCell.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  445 b   |  23 lines

  1.  
  2. /* $Id: SubCell.h,v 1.1.1.1 1993/03/18 03:36:04 davis Exp $ */
  3.  
  4. #import <appkit/SelectionCell.h>
  5.  
  6. @interface SubCell:SelectionCell
  7. {
  8.     NXCoord    ascender, descender,    /* Font attributes        */
  9.         lineHeight;
  10.     id        subObject;        /* Corresponding object        */
  11.     BOOL    showAttachment;        /* Show "attachment" symbol?    */
  12. }
  13.  
  14. - init;
  15.  
  16. - setSubObject:anObject;
  17. - subObject;
  18.  
  19. - setFont:fontObj;
  20. - drawInside:(const NXRect *)cellFrame inView:controlView;
  21.  
  22. @end
  23.