home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks3 / AppKit.framework / Headers / NSTextFieldCell.h < prev    next >
Text File  |  1994-09-29  |  847b  |  33 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 "NSColor.h"
  9.  
  10. @interface NSTextFieldCell : NSActionCell
  11. {
  12.     float               backgroundGray;
  13.     float               textGray;
  14.     void            *_private;
  15. }
  16.  
  17. - initTextCell:(NSString *)aString;
  18.  
  19. - (BOOL)isOpaque;
  20. - setBezeled:(BOOL)flag;
  21. - setBackgroundColor:(NSColor *)color;
  22. - (NSColor *)backgroundColor;
  23. - setBackgroundTransparent:(BOOL)flag;
  24. - (BOOL)isBackgroundTransparent;
  25. - setTextColor:(NSColor *)color;
  26. - (NSColor *)textColor;
  27. - drawSelf:(NSRect)cellFrame inView:controlView;
  28. - drawInside:(NSRect)cellFrame inView:controlView;
  29. - setUpFieldEditorAttributes:textObj;
  30. - (BOOL)trackMouse:(NSEvent *)event inRect:(NSRect)aRect ofView:controlView untilMouseUp:(BOOL)untilMouseUp;
  31.  
  32. @end
  33.