home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2 / Openstep-4.2-Intel-Developer.iso / NextLibrary / Frameworks / AppKit.framework / Versions / B / Headers / NSBrowserCell.h < prev    next >
Text File  |  1996-10-17  |  457b  |  27 lines

  1. /*
  2.     NSBrowserCell.h
  3.     Application Kit
  4.     Copyright (c) 1994-1996, NeXT Software, Inc.
  5.     All rights reserved.
  6. */
  7.  
  8. #import <AppKit/NSCell.h>
  9.  
  10. @class NSImage;
  11.  
  12. @interface NSBrowserCell : NSCell
  13.  
  14. + (NSImage *)branchImage;
  15. + (NSImage *)highlightedBranchImage;
  16.  
  17. - (BOOL)isLeaf;
  18. - (void)setLeaf:(BOOL)flag;
  19. - (BOOL)isLoaded;
  20. - (void)setLoaded:(BOOL)flag;
  21. - (void)reset;
  22. - (void)set;
  23. - (void)setAlternateImage:(NSImage *)newAltImage;
  24. - (NSImage *)alternateImage;
  25.  
  26. @end
  27.