文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>设置CEikEdwin、CEikSecretEditor字体(转)

设置CEikEdwin、CEikSecretEditor字体(转)

时间:2011-04-09  来源:冰岛

设置CEikEdwin、CEikSecretEditor字体

类归于: Symbian札记 — gio @ 1:37 下午

1、CEikEdwin类并没有SetFont()函数,可以通过以下的代码实现字体的设置

相关头文件:gdi.h, txtglobl.h

相关库文件:gdi.lib, etext.lib

代码:

const CFont* iEdwinFont =  CEikonEnv::Static()->NormalFont();
CGlobalText* globalText = (CGlobalText*)iEdwin->Text();
TCharFormat charFormat;
Mem::FillZ(&charFormat, sizeof(TCharFormat));
TCharFormatMask charMask;
Mem::FillZ(&charMask, sizeof(TCharFormatMask));
TFontSpec sFontSpec = iEdwinFont->FontSpecInTwips();
charFormat.iFontSpec.iTypeface = sFontSpec.iTypeface;
charMask.SetAttrib(EAttFontTypeface);
charFormat.iFontSpec.iHeight = sFontSpec.iHeight;
charMask.SetAttrib(EAttFontHeight);
charFormat.iFontPresentation.iTextColor = KRgbBlack;
charMask.SetAttrib(EAttColor);
globalText->ApplyCharFormatL(charFormat,charMask,0,iEdwin->TextLength());

2、CEikSecretEditor密码框控件可以使用AknSetFont()函数来设置。

相关阅读 更多 +
排行榜 更多 +
泡龙大闯关安卓版

泡龙大闯关安卓版

冒险解谜 下载
割草派对安卓版

割草派对安卓版

飞行射击 下载
堡垒攻防战安卓版

堡垒攻防战安卓版

飞行射击 下载