我在PyQt4中遇到图标问题:
我使用Qt Designer创建了一个UI,添加了一些带有系统主题图标的按钮,然后在Python程序中加载.ui文件,但图标不可见(按钮显示其文本)。
如果我使用QIcon.fromTheme它可以工作,但它不会加载.ui文件中定义的图标。
如何在不手动加载代码的情况下加载这些图标?
答案 0 :(得分: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 mailing list上报告。
请注意,等效功能在PySide中起作用:
from PySide.QtUiTools import QUiLoader
class Window(QtGui.QWidget):
def __init__(self):
QtGui.QWidget.__init__(self)
QUiLoader().load('/tmp/test.ui', self)
以下是如何在Qt Designer中使用ui创建pyuic4
的简单细分。
首先,创建你的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>
接下来,使用pyuic4
从ui
文件编译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