From 8bf4d0b61e83589a88b39c84534a18f3776507eb Mon Sep 17 00:00:00 2001 From: nico Date: Thu, 11 Nov 1999 23:16:23 +0000 Subject: [PATCH] Changed ivars, methods. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5159 72102866-910b-0410-8b05-ffd578937521 --- Headers/gnustep/gui/NSTextFieldCell.h | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/Headers/gnustep/gui/NSTextFieldCell.h b/Headers/gnustep/gui/NSTextFieldCell.h index 877e15709..a169e15bb 100644 --- a/Headers/gnustep/gui/NSTextFieldCell.h +++ b/Headers/gnustep/gui/NSTextFieldCell.h @@ -36,30 +36,25 @@ @interface NSTextFieldCell : NSActionCell { // Attributes - NSColor *background_color; - NSColor *text_color; - BOOL draw_background; - BOOL pending_select; - - // Reserved for back-end use - void *be_tfc_reserved; + NSColor *_background_color; + NSColor *_text_color; + BOOL _draws_background; } // // Modifying Graphic Attributes // -- (NSColor *)backgroundColor; -- (BOOL)drawsBackground; -- (void)setBackgroundColor:(NSColor *)aColor; -- (void)setDrawsBackground:(BOOL)flag; - (void)setTextColor:(NSColor *)aColor; -- (id)setUpFieldEditorAttributes:(id)textObject; - (NSColor *)textColor; -// -// Edit text -// -- (void)selectText:(id)sender; +- (void)setDrawsBackground:(BOOL)flag; +- (BOOL)drawsBackground; + +- (void)setBackgroundColor:(NSColor *)aColor; +- (NSColor *)backgroundColor; + +- (id)setUpFieldEditorAttributes:(id)textObject; + // // NSCoding protocol