libs-gui/Source/NSSimpleHorizontalTypesetter.m
Fred Kiefer 638a39c20b Added some basic implementation.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@7372 72102866-910b-0410-8b05-ffd578937521
2000-09-04 18:41:31 +00:00

278 lines
6.2 KiB
Objective-C

/*
NSSimpleHorizontalTypesetter.m
The text layout class for horizontal scripts
Copyright (C) 2000 Free Software Foundation, Inc.
Author: Jonathan Gapen <jagapen@home.com>
Date: May 2000
This file is part of the GNUstep GUI Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <AppKit/NSLayoutManager.h>
#include <AppKit/NSTypesetter.h>
#include <Foundation/NSLock.h>
@implementation NSSimpleHorizontalTypesetter
static NSSimpleHorizontalTypesetter *_gs_horiz_typesetter = nil;
static NSLock *_gs_horiz_typesetter_lock;
+ (void) initialize
{
if (self == [NSSimpleHorizontalTypesetter class])
{
[self setVersion: 1];
_gs_horiz_typesetter_lock = [NSLock new];
}
}
+ (id) sharedInstance
{
if (_gs_horiz_typesetter == nil)
{
[_gs_horiz_typesetter_lock lock];
if (_gs_horiz_typesetter == nil)
_gs_horiz_typesetter = RETAIN([NSSimpleHorizontalTypesetter new]);
[_gs_horiz_typesetter_lock unlock];
}
return _gs_horiz_typesetter;
}
//
// Get information about the typesetter
//
- (NSTypesetterGlyphInfo *) baseOfTypesetterGlyphInfo
{
return _glyphInfo;
}
- (unsigned) capacityOfTypesetterGlyphInfo
{
return _capacityGlyphInfo;
}
- (NSTextContainer *) currentContainer
{
return _currentContainer;
}
- (NSLayoutManager *) currentLayoutManager
{
return _currentLayoutManager;
}
- (NSParagraphStyle *) currentParagraphStyle
{
return _currentParagraphStyle;
}
- (NSTextStorage *) currentTextStorage
{
return _currentTextStorage;
}
- (unsigned) firstIndexOfCurrentLineFragment
{
return _firstIndexOfCurrentLineFragment;
}
- (unsigned) sizeOfTypesetterGlyphInfo
{
return _sizeGlyphInfo;
}
//
// Glyph layout
//
- (void) breakLineAtIndex: (unsigned)location
{
// Find an index to break the line, if inside a word try to hyphenate and
// add a hyphen, if not possibe wrap.
// Do justification acording to the paragraph style.
return;
}
- (void) fullJustifyLineAtGlyphIndex: (unsigned)glyphIndex
{
return;
}
- (unsigned) glyphIndexToBreakLineByHyphenatingWordAtIndex: (unsigned)charIndex
{
return 0;
}
- (unsigned) glyphIndexToBreakLineByWrappingAtIndex: (unsigned)charIndex
{
return 0;
}
- (void) insertGlyph: (NSGlyph)glyph
atGlyphIndex: (unsigned)glyphIndex
characterIndex: (unsigned)charIndex
{
return;
}
- (NSLayoutStatus) layoutControlGlyphForLineFragment: (NSRect)fragRect
{
return NSLayoutOutOfGlyphs;
}
- (NSLayoutStatus) layoutGlyphsInHorizontalLineFragment: (NSRect *)fragRect
baseline: (float *)baseline
{
*fragRect = NSZeroRect;
*baseline = 0.0;
return NSLayoutOutOfGlyphs;
}
/*
I think that this is the main interface of the typesetter to the outside
world. So this must be protected by a lock!!
*/
- (void) layoutGlyphsInLayoutManager: (NSLayoutManager *)layoutManager
startingAtGlyphIndex: (unsigned)glyphIndex
maxNumberOfLineFragments: (unsigned)maxNumLines
nextGlyphIndex: (unsigned *)nextGlyph
{
unsigned charIndex;
unsigned numLines = 0;
NSLayoutStatus status;
[_gs_horiz_typesetter_lock lock];
// Set up all the internal state variables
// Don't assign here
_currentLayoutManager = layoutManager;
_currentTextStorage = [layoutManager textStorage];
// This probably is wrong as it does layouting itself
_currentContainer = [layoutManager textContainerForGlyphAtIndex: glyphIndex
effectiveRange: NULL];
charIndex = [layoutManager characterIndexForGlyphAtIndex: glyphIndex];
_currentParagraphStyle = [_currentTextStorage
attribute: NSParagraphStyleAttributeName
atIndex: charIndex
effectiveRange: NULL];
_firstIndexOfCurrentLineFragment = glyphIndex;
do {
float baseline = 0;
NSRect lineFragmentRect;
NSRect usedRect;
// Get the current lineFragmentRect from the layout manager / container
usedRect = lineFragmentRect;
// Build up a line
status = [self layoutGlyphsInHorizontalLineFragment: &usedRect
baseline: &baseline];
if (status == NSLayoutOutOfGlyphs)
{
[self growGlyphCaches: [self sizeOfTypesetterGlyphInfo] + 100
fillGlyphInfo: YES];
continue;
}
[self willSetLineFragmentRect: lineFragmentRect
forGlyphRange: NSMakeRange(_firstIndexOfCurrentLineFragment,
_currentGlyphIndex - _firstIndexOfCurrentLineFragment)
usedRect: usedRect];
[self breakLineAtIndex: _currentGlyphIndex];
_firstIndexOfCurrentLineFragment = _currentGlyphIndex + 1;
numLines++;
} while((numLines <= maxNumLines) && (status));
if (nextGlyph != NULL)
*nextGlyph = _firstIndexOfCurrentLineFragment;
[_gs_horiz_typesetter_lock unlock];
}
/*
This is probably the second method to be called from the outside
*/
- (float) baselineOffsetInLayoutManager: (NSLayoutManager *)layoutManager
glyphIndex: (unsigned)glyphIndex
{
return 0.0;
}
- (void) layoutTab
{
return;
}
- (void) typesetterLaidOneGlyph: (NSTypesetterGlyphInfo *)glyphInfo
{
return;
}
- (void) updateCurGlyphOffset
{
return;
}
- (void) willSetLineFragmentRect: (NSRect *)aRect
forGlyphRange: (NSRange)aRange
usedRect: (NSRect *)usedRect
{
return;
}
//
// Caching
//
- (void) clearAttributesCache
{
return;
}
- (void) clearGlyphCache
{
return;
}
- (void) fillAttributesCache
{
return;
}
- (unsigned) growGlyphCaches: (unsigned)newCapacity
fillGlyphInfo: (BOOL)flag
{
return 0;
}
@end