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

  1. /*
  2.     NSTextFieldCell.h
  3.     Application Kit
  4.     Copyright (c) 1994-1996, NeXT Software, Inc.
  5.     All rights reserved.
  6. */
  7.  
  8. #import <AppKit/NSActionCell.h>
  9. #import <AppKit/NSColor.h>
  10.  
  11. @interface NSTextFieldCell : NSActionCell  {
  12.     NSColor *_backgroundColor;
  13.     NSColor *_textColor;
  14.     struct __tfFlags {
  15.     unsigned int drawsBackground:1;
  16.     unsigned int reservedTextFieldCell:31;
  17.     } _tfFlags;
  18. }
  19.  
  20.  
  21. - (void)setBackgroundColor:(NSColor *)color;
  22. - (NSColor *)backgroundColor;
  23. - (void)setDrawsBackground:(BOOL)flag;
  24. - (BOOL)drawsBackground;
  25. - (void)setTextColor:(NSColor *)color;
  26. - (NSColor *)textColor;
  27. - (NSText *)setUpFieldEditorAttributes:(NSText *)textObj;
  28.  
  29. @end
  30.  
  31.