在PyQt应用程序中加载FontAwesome

时间:2016-02-01 11:12:14

标签: python pyqt pyqt4 font-awesome

我一直在尝试在PyQt应用程序中使用FontAwesome中的图标。我已经下载了.ttf文件,并使用addApplicationFont方法将字体加载到我的应用程序中。我有一个QToolButton,我想从AwesomeFont设置一个图标。我无法弄清楚,如何从数据库中选择一个图标。附上参考代码:

import sys

from PyQt4 import QtGui, QtCore

class Window(QtGui.QMainWindow):
    css = """
        QToolButton{{
            border: None;
        }}
    """

    def __init__(self):
        super(Window, self).__init__()

        font_id = QtGui.QFontDatabase.addApplicationFont("fontawesome-webfont.ttf")

        if font_id is not -1:
            font_db = QtGui.QFontDatabase()
            self.font_styles = font_db.styles('FontAwesome')
            self.font_families = QtGui.QFontDatabase.applicationFontFamilies(font_id)
            for font_family in self.font_families:
                self.font = font_db.font(font_family, self.font_styles.first(), 24)
        self.home()

    def home(self):
        self.setStyleSheet(self.css.format())

        btn = QtGui.QToolButton(self)
        btn.setToolButtonStyle(QtCore.Qt.ToolButtonIconOnly)
        btn.setFont(self.font)
        btn.setText('.....')
        btn.clicked.connect(QtCore.QCoreApplication.instance().quit)

        self.show()

def run():
    app = QtGui.QApplication(sys.argv)
    GUI = Window()
    sys.exit(app.exec_())

run()

2 个答案:

答案 0 :(得分:1)

好吧,我将提出我的解决方案,以防将来有人需要它。有一个名为Qtawesome的pypi软件包,可以让你通过几个简单的步骤加载字体。

但是如果有人不想使用第三方软件包,那么我已经修改了我上面的代码以及所有缺少的语句。

import sys
from six import unichr

from PyQt4 import QtGui, QtCore

class Window(QtGui.QMainWindow):
    css = """
        QToolButton{{
            border: None;
        }}
    """

    def __init__(self):
        super(Window, self).__init__()

        font_id = QtGui.QFontDatabase.addApplicationFont("fontawesome-webfont.ttf")

        if font_id is not -1:
            font_db = QtGui.QFontDatabase()
            self.font_styles = font_db.styles('FontAwesome')
            self.font_families = QtGui.QFontDatabase.applicationFontFamilies(font_id)
            for font_family in self.font_families:
                self.font = font_db.font(font_family, self.font_styles.first(), 24)
        self.home()

    def home(self):
        self.setStyleSheet(self.css.format())

        btn = QtGui.QToolButton(self)
        btn.setToolButtonStyle(QtCore.Qt.ToolButtonIconOnly)
        btn.setFont(self.font)
        btn.setText(unichr(int('e025', 16)))
        btn.clicked.connect(QtCore.QCoreApplication.instance().quit)

        self.show()

def run():
    app = QtGui.QApplication(sys.argv)
    GUI = Window()
    sys.exit(app.exec_())

run()

答案 1 :(得分:0)

您可以使用QtAwesome代替https://pypi.org/project/QtAwesome/