mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 04:30:37 +00:00
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:
parent
4047b4b412
commit
1957d087a5
8 changed files with 219 additions and 70 deletions
|
@ -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
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue