[fonts] added fonts that will cover absent code2000 for non-code2000 installs

This commit is contained in:
Darafei Praliaskouski 2013-07-17 03:06:01 +03:00 committed by Alex Zolotarev
parent 3ec5062b07
commit 9bb74bdadb

View file

@ -29,6 +29,13 @@ void Platform::GetSystemFontNames(FilesList & res) const
"Lohit-Bengali.ttf",
"Lohit-Devanagari.ttf",
"Lohit-Tamil.ttf",
"PakType Naqsh.ttf",
"wqy-microhei.ttc",
"Jomolhari.ttf",
"Jomolhari-alpha3c-0605331.ttf",
"Padauk.ttf",
"KhmerOS.ttf",
"Umpush.ttf",
"DroidSansThai.ttf",
"DroidSansArmenian.ttf",
"DroidSansEthiopic-Regular.ttf",
@ -39,15 +46,25 @@ void Platform::GetSystemFontNames(FilesList & res) const
"LTe50872.ttf",
"LTe50259.ttf",
"DevanagariOTS.ttf",
"FreeSans.ttf",
"DejaVuSans.ttf",
"arial.ttf"
"arial.ttf",
"AbyssinicaSIL-R.ttf"
};
char const * systemFontsPath[] = {
"/system/fonts/",
"/usr/share/fonts/truetype/roboto/",
"/usr/share/fonts/truetype/droid/",
"/usr/share/fonts/truetype/ttf-dejavu/"
"/usr/share/fonts/truetype/ttf-dejavu/",
"/usr/share/fonts/truetype/wqy/",
"/usr/share/fonts/truetype/freefont/",
"/usr/share/fonts/truetype/padauk/",
"/usr/share/fonts/truetype/dzongkha/",
"/usr/share/fonts/truetype/ttf-khmeros-core/",
"/usr/share/fonts/truetype/tlwg/",
"/usr/share/fonts/truetype/abyssinica/",
"/usr/share/fonts/truetype/paktype/"
};
const uint64_t fontSizeBlacklist[] = {
@ -77,16 +94,6 @@ void Platform::GetSystemFontNames(FilesList & res) const
}
}
}
// Ignoring system fonts if broken Samsung Duos font detected
if (GetPlatform().GetFileSizeByName("/system/fonts/DroidSans.ttf", fileSize))
{
if (fileSize == 183560)
{
res.clear();
LOG(LINFO, ("Ignoring system fonts"));
}
}
#endif
}