有没有办法在 Qt 中检索给定语言的书写系统?
我最近升级了现有的 Qt 应用程序,以利用 QTranslator 在多个国家/地区进行部署。以前的程序员在样式表中定义了所有字体,但似乎并非所有语言都受指定字体系列支持,这导致 QLabels 失去其样式。我的解决方案是动态确定合适的字体(我们还没有处于可能需要自定义字体的阶段)。
有没有办法使用 QLocale::language() 的结果生成 QFontDatabase::WritingSystem 以便我可以运行 QFontDatabase::families() 并查询结果以获取适当的字体?
I recently upgraded an existing Qt application to utilize QTranslator for deployment in multiple countries. The previous programmer defined all the fonts in style sheets, but it seems that not all languages are supported by the designated font-family and this is causing QLabels to lose their styling. My solution is to dynamically determine a suitable font (we're not at the stage where we might need custom fonts).
Is there a way to use the the result of QLocale::language() to generate a QFontDatabase::WritingSystem so I can run QFontDatabase::families() and query the results for an appropriate font?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找不到 Qt 4.7 的内置函数,但您可以创建一个关联数组,将语言从 QLocale::language() 链接到 QFontDatabase::WritingSystem 值。
I cannot find a built-in function for Qt 4.7, but you can create an associative array linking languages from QLocale::language() to QFontDatabase::WritingSystem values.