home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / appkit / SelectionCell.h < prev    next >
Text File  |  1990-10-15  |  825b  |  35 lines

  1. /*
  2.     SelectionCell.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "Cell.h"
  8.  
  9. @interface SelectionCell : Cell
  10. {
  11. }
  12.  
  13. - init;
  14. - initTextCell:(const char *)aString;
  15.  
  16. - awake;
  17. - (BOOL)isOpaque;
  18. - setLeaf:(BOOL)flag;
  19. - (BOOL)isLeaf;
  20. - calcCellSize:(NXSize *)theSize inRect:(const NXRect *)aRect;
  21. - drawSelf:(const NXRect *)cellFrame inView:controlView;
  22. - drawInside:(const NXRect *)cellFrame inView:controlView;
  23. - highlight:(const NXRect *)cellFrame inView:controlView lit:(BOOL)flag;
  24.  
  25. /* 
  26.  * The following new... methods are now obsolete.  They remain in this  
  27.  * interface file for backward compatibility only.  Use Object's alloc method  
  28.  * and the init... methods defined in this class instead.
  29.  */
  30. + new;
  31. + newTextCell;
  32. + newTextCell:(const char *)aString;
  33.  
  34. @end
  35.