Implement glyph attribute handling.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@31730 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2010-12-13 21:26:15 +00:00
parent 77495ccde1
commit cdb08be089
4 changed files with 60 additions and 7 deletions

View file

@ -45,6 +45,15 @@ typedef enum
NSGlyphInscribeOverBelow = 4
} NSGlyphInscription;
enum {
NSGlyphAttributeSoft = 0,
NSGlyphAttributeElastic = 1,
#if OS_API_VERSION(MAC_OS_X_VERSION_10_2, GS_API_LATEST)
NSGlyphAttributeBidiLevel = 2,
#endif
NSGlyphAttributeInscribe = 5
};
#if OS_API_VERSION(MAC_OS_X_VERSION_10_3, GS_API_LATEST)
@interface GSLayoutManager : NSObject <NSGlyphStorage, NSCoding>
#else