Additional NSScroller implementation.

Fix locking/unlocking of focus for view hierarchy.
Numerous bug fixes.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2255 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Scott Christley 1997-03-20 19:23:21 +00:00
parent 4047b4b412
commit 1957d087a5
8 changed files with 219 additions and 70 deletions

View file

@ -87,6 +87,24 @@ static id MB_NSTEXTFIELDCELL_CLASS = nil;
return self;
}
//
// Creating copies
//
- (void)setTextCursor:(NSCursor *)aCursor
{
text_cursor = aCursor;
}
- copyWithZone:(NSZone *)zone
{
id c;
c = [super copyWithZone: zone];
[c setTextCursor: [NSCursor IBeamCursor]];
return c;
}
//
// Setting User Access to Text
//