mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 18:31:20 +00:00
Added an ivar and a little private method needed to implement NSTextView
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8392 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
46dfcd9b12
commit
1133bd649a
1 changed files with 11 additions and 0 deletions
|
@ -102,6 +102,7 @@ extern NSSize NSTokenSize;
|
|||
id _contentView;
|
||||
id _firstResponder;
|
||||
id _originalResponder;
|
||||
id _futureFirstResponder;
|
||||
NSView *_initialFirstResponder;
|
||||
id _delegate;
|
||||
id _fieldEditor;
|
||||
|
@ -477,6 +478,16 @@ extern NSSize NSTokenSize;
|
|||
@end
|
||||
#endif
|
||||
|
||||
#ifndef NO_GNUSTEP
|
||||
@interface NSWindow (GNUstepTextView)
|
||||
/*
|
||||
* Called from NSTextView's resignFirstResponder to know which is
|
||||
* the next first responder.
|
||||
*/
|
||||
- (id) _futureFirstResponder;
|
||||
@end
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Implemented by the delegate
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue