improving consistency of chinese text displaying.

This commit is contained in:
rachytski 2011-04-19 20:57:12 +03:00 committed by Alex Zolotarev
parent 41bddc457d
commit 3fdbbd80eb
2 changed files with 32 additions and 2 deletions

View file

@ -2,3 +2,4 @@ Basic_Latin 01_dejavusans.ttf
Latin-1_Supplement 01_dejavusans.ttf
Latin_Extended-A 01_dejavusans.ttf
Latin_Extended-B 01_dejavusans.ttf
CJK_Compatibility 02_wqy-microhei.ttf

View file

@ -114,10 +114,39 @@ namespace yg
for (int i = 0; i < fontNames.size(); ++i)
addFont(fontNames[i].c_str());
/* for (unicode_blocks_t::const_iterator it = m_unicodeBlocks.begin(); it != m_unicodeBlocks.end(); ++it)
/* LOG(LINFO, ("----------------------------"));
LOG(LINFO, ("-- Coverage Info -----------"));
LOG(LINFO, ("----------------------------"));
for (unicode_blocks_t::const_iterator it = m_unicodeBlocks.begin(); it != m_unicodeBlocks.end(); ++it)
{
if (!it->m_fonts.empty())
{
std::stringstream out;
out << it->m_name << " : " << it->m_end + 1 - it->m_start << " symbols -> [";
for (unsigned i = 0; i < it->m_fonts.size(); ++i)
{
out << extract_name(it->m_fonts[i]->m_name) << " : " << it->m_coverage[i];
if (i != it->m_fonts.size() - 1)
out << ", ";
}
out << "]";
LOG(LINFO, (out.str()));
}
}
LOG(LINFO, ("----------------------------"));
LOG(LINFO, ("-- Empty blocks ------------"));
LOG(LINFO, ("----------------------------"));
for (unicode_blocks_t::const_iterator it = m_unicodeBlocks.begin(); it != m_unicodeBlocks.end(); ++it)
if (it->m_fonts.empty())
LOG(LINFO, (it->m_name, " unicode block of ", it->m_end + 1 - it->m_start, " symbols is empty"));
*/
*/
}
void GlyphCacheImpl::addFont(char const * fileName)