mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
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:
parent
5e2b6317f5
commit
ba1a0f6bf4
1 changed files with 10 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue