home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Palettes / ConnectDemo / MColCell.h < prev    next >
Text File  |  1993-01-15  |  516b  |  27 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface MColCell:ActionCell
  5. {
  6.     Storage    *stringValues;
  7. }
  8.  
  9. - init;
  10. - initTextCell:(const char *)string;
  11. - initIconCell:(const char *)string;
  12. - initMColCell;
  13. - free;
  14.  
  15. - setStringValue:(const char *)string at:(int)col copy:(BOOL)copy;
  16. - (const char *)stringValueAt:(int)col;
  17.  
  18. - insertColAt:(int)col offset:(int)offset;
  19. - addColWithOffset:(int)offset;
  20. - removeColAt:(int)col;
  21. - (int)colCount;
  22.  
  23. - drawInside:(const NXRect *)cellFrame inView:controlView;
  24. - copyFromZone:(NXZone *)zone;
  25.  
  26. @end
  27.