home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / appkit / NXBrowserCell.h < prev    next >
Text File  |  1992-02-07  |  906b  |  44 lines

  1. /*
  2.     NXBrowserCell.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 NXBrowserCell : Cell
  10. {
  11. }
  12.  
  13. + branchIcon;
  14. + branchIconH;
  15.  
  16. - init;
  17. - initTextCell:(const char *)aString;
  18.  
  19. - (BOOL)isLeaf;
  20. - setLeaf:(BOOL)flag;
  21. - (BOOL)isLoaded;
  22. - setLoaded:(BOOL)flag;
  23. - reset;
  24. - set;
  25.  
  26. - (BOOL)isOpaque;
  27.  
  28. - calcCellSize:(NXSize *)theSize inRect:(const NXRect *)aRect;
  29.  
  30. - drawInside:(const NXRect *)cellFrame inView:controlView;
  31. - drawSelf:(const NXRect *)cellFrame inView:controlView;
  32. - highlight:(const NXRect *)cellFrame inView:controlView lit:(BOOL)lit;
  33.  
  34. /* 
  35.  * The following new... methods are now obsolete.  They remain in this  
  36.  * interface file for backward compatibility only.  Use Object's alloc method  
  37.  * and the init... methods defined in this class instead.
  38.  */
  39. + new;
  40. + newTextCell;
  41. + newTextCell:(const char *)aString;
  42.  
  43. @end
  44.