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

  1. /*
  2.         NSActionCell.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. @interface NSActionCell : NSCell
  11. {
  12.     int    _tag;        
  13.     id    _target;     
  14.     SEL    _action;     
  15.     id    _controlView;      
  16. }
  17.  
  18. - (NSView *)controlView;
  19. - (void)setFont:(NSFont *)fontObj;
  20. - (void)setAlignment:(NSTextAlignment)mode;
  21. - (void)setBordered:(BOOL)flag;
  22. - (void)setBezeled:(BOOL)flag;
  23. - (void)setEnabled:(BOOL)flag;
  24. - (void)setFloatingPointFormat:(BOOL)autoRange left:(unsigned int)leftDigits right:(unsigned int)rightDigits;
  25. - (void)setImage:(NSImage *)image;
  26. - (id)target;
  27. - (void)setTarget:(id)anObject;
  28. - (SEL)action;
  29. - (void)setAction:(SEL)aSelector;
  30. - (int)tag;
  31. - (void)setTag:(int)anInt;
  32. - (NSString *)stringValue;
  33. - (int)intValue;
  34. - (float)floatValue;
  35. - (double)doubleValue;
  36. - (void)setStringValue:(NSString *)aString;
  37. #ifndef STRICT_OPENSTEP
  38. - (void)setObjectValue:(id)obj;
  39. #endif STRICT_OPENSTEP
  40.  
  41.  
  42.  
  43. @end
  44.