Name:
Anonymous
2010-05-16 3:43
how do I change the font size in Edwin on Ubuntu?
Name:
Anonymous
2010-05-16 3:55
const CFont* logicalFont = AknLayoutUtils::FontFromId(EAknLogicalFontPrimarySmallFont);
// Extract font information
TFontSpec fontspec = logicalFont->FontSpecInTwips();
TCharFormat charFormat = TCharFormat(fontspec.iTypeface.iName, fontspec.iHeight);
TCharFormatMask charFormatMask;
charFormatMask.SetAttrib(EAttFontTypeface);
charFormatMask.SetAttrib(EAttFontHeight);
CCharFormatLayer* cCharFL = CCharFormatLayer::NewL(charFormat,charFormatMask);
iUrEditor->SetCharFormatLayer(cCharFL);