我有一个PyQt4
应用程序,它使用以下代码由外部.qss
文件设置样式:
...
app = QtGui.QApplication(sys.argv)
stylesheet = open('mystylesheet.qss').read()
app.setStyleSheet(stylesheet)
...
通常,我会在.qss
文件中指定我喜欢使用的字体类型,如下所示:
QMainWindow
{
font-family:arial;
font-size:14px;
}
但是,现在我想知道我是否可以分配一个我从互联网上下载的自定义字体(例如, DroidSansMono (True Type字体))而不是windows标准字体?
注意:我使用的是Windows XP SP3 32位,使用Python 2.7
基于Ekhumoro回答:
在加载Stylesheet
之前,我可以使用下载的自定义字体添加到字体数据库中:
QtGui.QFontDatabase.addApplicationFont("Resources/Mf Wedding Bells.ttf")
之后,我可以简单地使用我刚刚在样式表中添加的字体名称,如下所示:
QLabel
{
font-family:Mf Wedding Bells;
font-size:16px;
}
它有效!
答案 0 :(得分:8)
这只是猜测,因为我无法自己测试,但您可以在设置样式表之前尝试loading the font:
app = QtGui.QApplication(sys.argv)
QtGui.QFontDatabase.addApplicationFont('path/to/font')
# or load the font data directly
# QtGui.QFontDatabase.addApplicationFontFromData(fontdata)
stylesheet = open('mystylesheet.qss').read()
app.setStyleSheet(stylesheet)