mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 03:51:04 +00:00
Implemented extra line fragment methods.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@12857 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d763179059
commit
bef430bc83
1 changed files with 6 additions and 7 deletions
|
@ -2436,25 +2436,24 @@ _GLog(self,_cmd);
|
|||
usedRect: (NSRect)usedRect
|
||||
textContainer: (NSTextContainer*)aTextContainer
|
||||
{
|
||||
/* TODO */
|
||||
_extraLineFragmentRect = aRect;
|
||||
_extraLineFragmentUsedRect = usedRect;
|
||||
_extraLineFragmentContainer = aTextContainer;
|
||||
}
|
||||
|
||||
- (NSRect) extraLineFragmentRect
|
||||
{
|
||||
/* TODO */
|
||||
return NSZeroRect;
|
||||
return _extraLineFragmentRect;
|
||||
}
|
||||
|
||||
- (NSRect) extraLineFragmentUsedRect
|
||||
{
|
||||
/* TODO */
|
||||
return NSZeroRect;
|
||||
return _extraLineFragmentUsedRect;
|
||||
}
|
||||
|
||||
- (NSTextContainer*) extraLineFragmentTextContainer
|
||||
{
|
||||
/* TODO */
|
||||
return nil;
|
||||
return _extraLineFragmentContainer;
|
||||
}
|
||||
|
||||
- (NSRect)usedRectForTextContainer:(NSTextContainer *)container
|
||||
|
|
Loading…
Reference in a new issue