2010-07-14 09:47:17 +00:00
|
|
|
/**
|
|
|
|
* QuartzTextStyleAttribute.h
|
|
|
|
*
|
|
|
|
* Original Code by Evan Jones on Wed Oct 02 2002.
|
|
|
|
* Contributors:
|
|
|
|
* Shane Caraveo, ActiveState
|
|
|
|
* Bernd Paradies, Adobe
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _QUARTZ_TEXT_STYLE_ATTRIBUTE_H
|
|
|
|
#define _QUARTZ_TEXT_STYLE_ATTRIBUTE_H
|
|
|
|
|
2011-07-17 22:30:49 +00:00
|
|
|
class QuartzFont
|
2010-07-14 09:47:17 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Create a font style from a name. */
|
2011-07-17 22:30:49 +00:00
|
|
|
QuartzFont( const char* name, int length, float size, bool bold, bool italic )
|
2010-07-14 09:47:17 +00:00
|
|
|
{
|
|
|
|
assert( name != NULL && length > 0 && name[length] == '\0' );
|
|
|
|
|
2011-07-17 22:30:49 +00:00
|
|
|
CFStringRef fontName = CFStringCreateWithCString(kCFAllocatorDefault, name, kCFStringEncodingMacRoman);
|
|
|
|
assert(fontName != NULL);
|
|
|
|
|
|
|
|
if (bold || italic)
|
|
|
|
{
|
|
|
|
CTFontSymbolicTraits desiredTrait = 0;
|
|
|
|
CTFontSymbolicTraits traitMask = 0;
|
|
|
|
|
|
|
|
// if bold was specified, add the trait
|
|
|
|
if (bold) {
|
|
|
|
desiredTrait |= kCTFontBoldTrait;
|
|
|
|
traitMask |= kCTFontBoldTrait;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if italic was specified, add the trait
|
|
|
|
if (italic) {
|
|
|
|
desiredTrait |= kCTFontItalicTrait;
|
|
|
|
traitMask |= kCTFontItalicTrait;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a font and then a copy of it with the sym traits
|
|
|
|
CTFontRef iFont = ::CTFontCreateWithName(fontName, size, NULL);
|
|
|
|
fontid = ::CTFontCreateCopyWithSymbolicTraits(iFont, size, NULL, desiredTrait, traitMask);
|
|
|
|
CFRelease(iFont);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// create the font, no traits
|
|
|
|
fontid = ::CTFontCreateWithName(fontName, size, NULL);
|
|
|
|
}
|
2010-07-14 09:47:17 +00:00
|
|
|
}
|
|
|
|
|
2011-07-17 22:30:49 +00:00
|
|
|
CTFontRef getFontID()
|
2010-07-14 09:47:17 +00:00
|
|
|
{
|
|
|
|
return fontid;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2011-07-17 22:30:49 +00:00
|
|
|
CTFontRef fontid;
|
2010-07-14 09:47:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|