mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 20:31:56 +00:00
Changed ivars, methods.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5159 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d5c041711f
commit
8bf4d0b61e
1 changed files with 11 additions and 16 deletions
|
@ -36,30 +36,25 @@
|
||||||
@interface NSTextFieldCell : NSActionCell <NSCoding>
|
@interface NSTextFieldCell : NSActionCell <NSCoding>
|
||||||
{
|
{
|
||||||
// Attributes
|
// Attributes
|
||||||
NSColor *background_color;
|
NSColor *_background_color;
|
||||||
NSColor *text_color;
|
NSColor *_text_color;
|
||||||
BOOL draw_background;
|
BOOL _draws_background;
|
||||||
BOOL pending_select;
|
|
||||||
|
|
||||||
// Reserved for back-end use
|
|
||||||
void *be_tfc_reserved;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Modifying Graphic Attributes
|
// Modifying Graphic Attributes
|
||||||
//
|
//
|
||||||
- (NSColor *)backgroundColor;
|
|
||||||
- (BOOL)drawsBackground;
|
|
||||||
- (void)setBackgroundColor:(NSColor *)aColor;
|
|
||||||
- (void)setDrawsBackground:(BOOL)flag;
|
|
||||||
- (void)setTextColor:(NSColor *)aColor;
|
- (void)setTextColor:(NSColor *)aColor;
|
||||||
- (id)setUpFieldEditorAttributes:(id)textObject;
|
|
||||||
- (NSColor *)textColor;
|
- (NSColor *)textColor;
|
||||||
|
|
||||||
//
|
- (void)setDrawsBackground:(BOOL)flag;
|
||||||
// Edit text
|
- (BOOL)drawsBackground;
|
||||||
//
|
|
||||||
- (void)selectText:(id)sender;
|
- (void)setBackgroundColor:(NSColor *)aColor;
|
||||||
|
- (NSColor *)backgroundColor;
|
||||||
|
|
||||||
|
- (id)setUpFieldEditorAttributes:(id)textObject;
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// NSCoding protocol
|
// NSCoding protocol
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue