1

我在 PyQt4 中的图标有问题:

我用 Qt Designer 创建了一个 UI,添加了一些带有系统主题图标的按钮,然后在 Python 程序中加载了 .ui 文件,但图标不可见(按钮显示它们的文本)。

如果我使用 QIcon.fromTheme 它可以工作,但它不会加载 .ui 文件中定义的图标。

如何让它加载这些图标,而无需从代码中手动加载它们?

4

1 回答 1

0

更新

看起来uic包中存在一个错误,该错误会阻止在使用时加载主题图标uic.loadUi

有问题的代码在PyQt4/uic/icon_cache.py(大约第 60 行):

# Handle a themed icon.
theme = iconset.attrib.get('theme')
if theme is not None:
    return self._object_factory.createQObject("QIcon.fromTheme",
            'icon', (as_string(theme), ), is_attribute=False)

问题是as_string函数的使用,它试图传递,例如'_fromUtf8("face-smile")'QIcon.fromTheme而不是简单的图标名称。

如果你想解决这个问题,我建议在PyQt4 邮件列表中报告它。

请注意,等效功能在 PySide 中有效:

from PySide.QtUiTools import QUiLoader

class Window(QtGui.QWidget):
    def __init__(self):
        QtGui.QWidget.__init__(self)
        QUiLoader().load('/tmp/test.ui', self)

下面是如何使用pyuic4在 Qt Designer 中创建的 ui 的简单分解。

首先,创建你的用户界面。下面是一个ui创建带有主题图标的按钮的最小文件:

/tmp/test.ui

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>Form</class>
 <widget class="QWidget" name="Form">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>400</width>
    <height>300</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>Form</string>
  </property>
  <widget class="QPushButton" name="pushButton">
   <property name="geometry">
    <rect>
     <x>110</x>
     <y>100</y>
     <width>92</width>
     <height>25</height>
    </rect>
   </property>
   <property name="text">
    <string>PushButton</string>
   </property>
   <property name="icon">
    <iconset theme="face-smile"/>
   </property>
  </widget>
 </widget>
 <resources/>
 <connections/>
</ui>

接下来,使用pyuic4ui文件中编译 python 模块:

pyuic4 -o /tmp/test_ui.py /tmp/test.ui

/tmp/test_ui.py

# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file '/tmp/test.ui'
#
# Created: Fri Sep 21 16:45:39 2012
#      by: PyQt4 UI code generator 4.9.4
#
# WARNING! All changes made in this file will be lost!

from PyQt4 import QtCore, QtGui

try:
    _fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
    _fromUtf8 = lambda s: s

class Ui_Form(object):
    def setupUi(self, Form):
        Form.setObjectName(_fromUtf8("Form"))
        Form.resize(400, 300)
        self.pushButton = QtGui.QPushButton(Form)
        self.pushButton.setGeometry(QtCore.QRect(110, 100, 92, 25))
        icon = QtGui.QIcon.fromTheme(_fromUtf8("face-smile"))
        self.pushButton.setIcon(icon)
        self.pushButton.setObjectName(_fromUtf8("pushButton"))

        self.retranslateUi(Form)
        QtCore.QMetaObject.connectSlotsByName(Form)

    def retranslateUi(self, Form):
        Form.setWindowTitle(QtGui.QApplication.translate("Form", "Form", None, QtGui.QApplication.UnicodeUTF8))
        self.pushButton.setText(QtGui.QApplication.translate("Form", "PushButton", None, QtGui.QApplication.UnicodeUTF8))

现在将编译好的 ui 类导入你的应用程序:

/tmp/test.py

from PyQt4 import QtGui, QtCore
from test_ui import Ui_Form

class Window(QtGui.QWidget, Ui_Form):
    def __init__(self):
        QtGui.QWidget.__init__(self)
        self.setupUi(self)

if __name__ == '__main__':

    import sys
    app = QtGui.QApplication(sys.argv)
    window = Window()
    window.show()
    sys.exit(app.exec_())

最后,运行应用程序:

python2.7 /tmp/test.py
于 2012-09-21T16:04:44.530 回答