home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks1 / AppKit.framework / Headers / NSTextFieldCell.h < prev    next >
Encoding:
Text File  |  1994-09-29  |  1.0 KB  |  41 lines

  1. /*
  2.     TextFieldCell.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "NSActionCell.h"
  8. #import "color.h"
  9.  
  10. @interface NSTextFieldCell : NSActionCell
  11. {
  12.     float               backgroundGray;
  13.     float               textGray;
  14.     void            *_private;
  15. }
  16.  
  17. - init;
  18. - initTextCell:(NSString *)aString;
  19.  
  20. - copyFromZone:(NSZone *)zone;
  21. - (BOOL)isOpaque;
  22. - (float)backgroundGray;
  23. - setBezeled:(BOOL)flag;
  24. - setBackgroundGray:(float)value;
  25. - (float)textGray;
  26. - setTextGray:(float)value;
  27. - setBackgroundColor:(NXColor)color;
  28. - (NXColor)backgroundColor;
  29. - setBackgroundTransparent:(BOOL)flag;
  30. - (BOOL)isBackgroundTransparent;
  31. - setTextColor:(NXColor)color;
  32. - (NXColor)textColor;
  33. - drawSelf:(NSRect)cellFrame inView:controlView;
  34. - drawInside:(NSRect)cellFrame inView:controlView;
  35. - setTextAttributes:textObj;
  36. - (BOOL)trackMouse:(NXEvent *)event inRect:(NSRect)aRect ofView:controlView untilMouseUp:(BOOL)untilMouseUp;
  37. - write:(NXTypedStream *)stream;
  38. - read:(NXTypedStream *)stream;
  39.  
  40. @end
  41.