码迷,mamicode.com
首页 > 其他好文 > 详细

【SonicUI】关于字体高亮的问题。。

时间:2014-10-28 12:15:45      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:windows   usb   sonicui   


bubuko.com,布布扣


	m_pSonicString[1]->Format(_T("/c=%x, a='http://hi.csdn.net/', linkh=0xFF00F0, font, font_height=25, font_bold=1, font_italic=1/点我打开链接uM"),RGB(128,0,32));
	m_pSonicString[2]->Format(_T("/c=%x, a='http://hi.csdn.net/', linkh=0xFF00F0, font, font_height=25, font_bold=1, font_italic=0/点我打开链接uM"),RGB(128,0,32));

测试代码如上:

通过代码分析,发现了作者使用的是 API GetTextExtentPoint32

BOOL GetTextExtentPoint32(  HDC hdc,           // handle to DC
  LPCTSTR lpString,  // text string  int c,      // characters in string
  LPSIZE lpSize      // string size);

这个是函数是可以获取到字符串的宽度。。但是没有区分Italic类型,所以才会出现以上高亮后的问题。。


GetTextExtentPoint32(hdc, block.strText, block.strText.GetLength(), &sz);
					if (block.Font.bItalic)
					{
						ABC czAbc;
						GetCharABCWidths(hdc,block.strText.GetAt(strlen(block.strText) + -1),block.strText.GetAt(strlen(block.strText) + -1),&czAbc);						
						nBlockWidth = sz.cx - czAbc.abcC;
					}
					else
					{
						nBlockWidth = sz.cx;
					}


\SonicUI_src\SonicUI\SonicString.cpp  477line


</pre><pre class="cpp" name="code">BOOL GetCharABCWidths(  HDC hdc,         // handle to DC
  UINT uFirstChar, // first character in range
  UINT uLastChar,  // last character in range
  LPABC lpabc      // array of character widths);



通过这个函数获取当前字体下,最后一个字符的宽度。。可以很好的完全显示出来!






【SonicUI】关于字体高亮的问题。。

标签:windows   usb   sonicui   

原文地址:http://blog.csdn.net/shen_001/article/details/40537581

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!