home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks2 / AppKit.framework / Headers / NSSelectionCell.h < prev    next >
Encoding:
Text File  |  1994-09-29  |  489 b   |  24 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 "NSCell.h"
  8.  
  9. @interface NSSelectionCell : NSCell
  10. {
  11. }
  12.  
  13. - initTextCell:(NSString *)aString;
  14.  
  15. - (BOOL)isOpaque;
  16. - setLeaf:(BOOL)flag;
  17. - (BOOL)isLeaf;
  18. - (NSSize)cellSizeForBounds:(NSRect)aRect;
  19. - drawSelf:(NSRect)cellFrame inView:controlView;
  20. - drawInside:(NSRect)cellFrame inView:controlView;
  21. - highlight:(NSRect)cellFrame inView:controlView lit:(BOOL)flag;
  22.  
  23. @end
  24.