home *** CD-ROM | disk | FTP | other *** search
- /*
- TextFieldCell.h
- Application Kit, Release 2.0
- Copyright (c) 1988, 1989, 1990, NeXT, Inc. All rights reserved.
- */
-
- #import "NSActionCell.h"
- #import "NSColor.h"
-
- @interface NSTextFieldCell : NSActionCell
- {
- float backgroundGray;
- float textGray;
- void *_private;
- }
-
- - initTextCell:(NSString *)aString;
-
- - (BOOL)isOpaque;
- - setBezeled:(BOOL)flag;
- - setTextColor:(NSColor *)color;
- - (NSColor *)textColor;
- - setBackgroundColor:(NSColor *)color;
- - (NSColor *)backgroundColor;
- - setBackgroundTransparent:(BOOL)flag;
- - (BOOL)isBackgroundTransparent;
- - drawWithFrame:(NSRect)cellFrame inView:controlView;
- - drawInteriorWithFrame:(NSRect)cellFrame inView:controlView;
- - setUpFieldEditorAttributes:textObj;
- - (BOOL)trackMouse:(NSEvent *)event inRect:(NSRect)aRect ofView:controlView untilMouseUp:(BOOL)untilMouseUp;
-
- @end
-