有没有办法在 Qt 中检索给定语言的书写系统?

发布于 2024-12-01 13:05:04 字数 269 浏览 0 评论 0原文

我最近升级了现有的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

这样的小城市 2024-12-08 13:05:04

我找不到 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文