@interface NSGlyphInfo : NSObject <NSCoding>
|
// Class Methods |
+ (NSGlyphInfo *)glyphInfoWithCharacterIdentifier:(unsigned int)cid
collection:(NSCharacterCollection)characterCollection baseString:(NSString *)theString;
|
+ (NSGlyphInfo *)glyphInfoWithGlyph:(NSGlyph)glyph forFont:(NSFont *)font baseString:(NSString *)theString;
|
+ (NSGlyphInfo *)glyphInfoWithGlyphName:(NSString *)glyphName
forFont:(NSFont *)font baseString:(NSString *)theString;
|
// Instance Methods |
- (NSCharacterCollection)characterCollection;
|
- (unsigned int)characterIdentifier;
|
- (NSString *)glyphName;
|
// Methods Implementing NSCoding |
- (void)encodeWithCoder:(NSCoder *)aCoder;
|
- (id)initWithCoder:(NSCoder *)aDecoder;
|