Up
Authors
- Scott Christley (
scottc@net-community.com
)
-
- Felipe A. Rodriguez (
far@ix.netcom.com
)
-
- Nicola Pero (
n.pero@mi.flashnet.it
)
-
Text field control class for text entry
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSTextField.h
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Instance Variables
Method summary
- (BOOL) acceptsFirstResponder;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) allowsEditingTextAttributes;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSColor*) backgroundColor;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (id) delegate;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) drawsBackground;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (SEL) errorAction;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) importsGraphics;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) isBezeled;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) isBordered;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) isEditable;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) isSelectable;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (id) nextText;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (id) previousText;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) selectText: (id)sender;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setAllowsEditingTextAttributes: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setBackgroundColor: (NSColor*)aColor;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setBezeled: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setBordered: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setDelegate: (id)anObject;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setDrawsBackground: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setEditable: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setErrorAction: (SEL)aSelector;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setImportsGraphics: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setNextText: (id)anObject;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setPreviousText: (id)anObject;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setSelectable: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setTextColor: (NSColor*)aColor;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setTitleWithMnemonic: (NSString*)aString;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSColor*) textColor;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) textDidBeginEditing: (NSNotification*)aNotification;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) textDidChange: (NSNotification*)aNotification;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) textDidEndEditing: (NSNotification*)aNotification;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) textShouldBeginEditing: (NSText*)textObject;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) textShouldEndEditing: (NSText*)textObject;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Instance Variables for NSTextField Class
@protected id _delegate;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected SEL _error_action;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSText* _text_object;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
Up