home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks3 / AppKit.framework / Headers / NSBrowserCell.h < prev    next >
Text File  |  1994-12-20  |  683b  |  40 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 "NSCell.h"
  8.  
  9. @interface NSBrowserCell : NSCell
  10. {
  11. }
  12.  
  13. + branchImage;
  14. + highlightedBranchImage;
  15.  
  16. - init;
  17. - initTextCell:(NSString *)aString;
  18. - (void)dealloc;
  19.  
  20. - (BOOL)isLeaf;
  21. - setLeaf:(BOOL)flag;
  22. - (BOOL)isLoaded;
  23. - setLoaded:(BOOL)flag;
  24. - reset;
  25. - set;
  26. - setImage:newImage;
  27. - image;
  28. - setAltImage:newAltImage;
  29. - altImage;
  30.  
  31. - (BOOL)isOpaque;
  32.  
  33. - (NSSize)cellSizeForBounds:(NSRect)aRect;
  34.  
  35. - drawInside:(NSRect)cellFrame inView:controlView;
  36. - drawSelf:(NSRect)cellFrame inView:controlView;
  37. - highlight:(NSRect)cellFrame inView:controlView lit:(BOOL)lit;
  38.  
  39. @end
  40.