mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 18:21:08 +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
|
usedRect: (NSRect)usedRect
|
||||||
textContainer: (NSTextContainer*)aTextContainer
|
textContainer: (NSTextContainer*)aTextContainer
|
||||||
{
|
{
|
||||||
/* TODO */
|
_extraLineFragmentRect = aRect;
|
||||||
|
_extraLineFragmentUsedRect = usedRect;
|
||||||
|
_extraLineFragmentContainer = aTextContainer;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSRect) extraLineFragmentRect
|
- (NSRect) extraLineFragmentRect
|
||||||
{
|
{
|
||||||
/* TODO */
|
return _extraLineFragmentRect;
|
||||||
return NSZeroRect;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSRect) extraLineFragmentUsedRect
|
- (NSRect) extraLineFragmentUsedRect
|
||||||
{
|
{
|
||||||
/* TODO */
|
return _extraLineFragmentUsedRect;
|
||||||
return NSZeroRect;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSTextContainer*) extraLineFragmentTextContainer
|
- (NSTextContainer*) extraLineFragmentTextContainer
|
||||||
{
|
{
|
||||||
/* TODO */
|
return _extraLineFragmentContainer;
|
||||||
return nil;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSRect)usedRectForTextContainer:(NSTextContainer *)container
|
- (NSRect)usedRectForTextContainer:(NSTextContainer *)container
|
||||||
|
|
Loading…
Reference in a new issue