Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Qt 使用9px默认字体大小,但用户(在 Linux 上)可以使用qtconfig.
9px
qtconfig
那么,如何获取系统默认字体大小呢?我阅读了文档,但找不到任何 API。
获取默认字体 QFont 对象并从中读取大小。
您的应用程序默认字体可以从 获取QApplication::font(),其中
QApplication::font()
返回默认的应用程序字体。
您可以使用pointSize(), pointSizeF(),pixelSize()等来收集它的大小。
pointSize()
pointSizeF()
pixelSize()