home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks3 / AppKit.framework / Headers / NSActionCell.h < prev    next >
Text File  |  1994-09-29  |  853b  |  39 lines

  1. /*
  2.     ActionCell.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 NSActionCell : NSCell
  10. {
  11.     int             tag;    
  12.     id              target;    
  13.     SEL             action;    
  14.     id            _view;    
  15. }
  16.  
  17. - controlView;
  18. - setFont:fontObj;
  19. - setAlignment:(NSTextAlignment)mode;
  20. - setBordered:(BOOL)flag;
  21. - setBezeled:(BOOL)flag;
  22. - setEnabled:(BOOL)flag;
  23. - setFloatingPointFormat:(BOOL)autoRange left:(unsigned int)leftDigits right:(unsigned int)rightDigits;
  24. - setImage:(NSImage *)iconName;
  25. - target;
  26. - setTarget:anObject;
  27. - (SEL)action;
  28. - setAction:(SEL)aSelector;
  29. - (int)tag;
  30. - setTag:(int)anInt;
  31. - (NSString *)stringValue;
  32. - (int)intValue;
  33. - (float)floatValue;
  34. - (double)doubleValue;
  35. - setStringValue:(NSString *)aString;
  36. - drawSelf:(NSRect)cellFrame inView:controlView;
  37.  
  38. @end
  39.