home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / appkit / ActionCell.h next >
Text File  |  1990-08-05  |  976b  |  42 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 "Cell.h"
  8.  
  9. @interface ActionCell : Cell
  10. {
  11.     int             tag;    
  12.     id              target;    
  13.     SEL             action;    
  14.     id            _view;    
  15. }
  16.  
  17. - controlView;
  18. - setFont:fontObj;
  19. - setAlignment:(int)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. - setIcon:(const char *)iconName;
  25. - target;
  26. - setTarget:anObject;
  27. - (SEL)action;
  28. - setAction:(SEL)aSelector;
  29. - (int)tag;
  30. - setTag:(int)anInt;
  31. - (const char *)stringValue;
  32. - (int)intValue;
  33. - (float)floatValue;
  34. - (double)doubleValue;
  35. - setStringValue:(const char *)aString;
  36. - setStringValueNoCopy:(char *)aString shouldFree:(BOOL)flag;
  37. - drawSelf:(const NXRect *)cellFrame inView:controlView;
  38. - write:(NXTypedStream *)stream;
  39. - read:(NXTypedStream *)stream;
  40.  
  41. @end
  42.