Added some methods for the handling of richt text.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11486 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2001-11-23 00:26:02 +00:00
parent 5e2b6317f5
commit ba1a0f6bf4

View file

@ -36,7 +36,7 @@
@class NSText;
@class NSCursor;
@interface NSTextField : NSControl <NSCoding>
@interface NSTextField : NSControl
{
// Attributes
id _delegate;
@ -101,11 +101,17 @@
- (BOOL)textShouldBeginEditing:(NSText *)textObject;
- (BOOL)textShouldEndEditing:(NSText *)textObject;
#ifndef STRICT_OPENSTEP
//
// NSCoding protocol
// Rich Text
//
- (void)encodeWithCoder:aCoder;
- initWithCoder:aDecoder;
- (void)setAllowsEditingTextAttributes:(BOOL)flag;
- (BOOL)allowsEditingTextAttributes;
- (void)setImportsGraphics:(BOOL)flag;
- (BOOL)importsGraphics;
- (void)setTitleWithMnemonic:(NSString *)aString;
#endif
@end