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