New NSFont method for glyph generation.

Ligature and decompose handling in gsLayoutManager, moved here from the
art backend.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26430 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2008-04-04 22:01:44 +00:00
parent ebe86a3327
commit 22e2aee612
5 changed files with 218 additions and 17 deletions

View file

@ -1455,6 +1455,11 @@ static BOOL flip_hack;
return _fontRef;
}
// This is a private but popular Cocoa method.
- (NSGlyph) _defaultGlyphForChar: (unichar)theChar
{
return [fontInfo glyphForCharacter: theChar];
}
@end