我对Qt相当陌生。我用自省和 Glade UI 设计器在 Gtk3 中构建了一些东西。
现在,我正在尝试学习 PyQt。虽然我喜欢它如何让你的 Ui 成为一个类(对我来说似乎更容易管理),但有些事情让我感到困惑。当我pyuic4
使用-x
(创建可执行文件)标志运行时,它有这段代码:
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class Ui_multippp(object):
def setupUi(self, multippp):
multippp.setObjectName(_fromUtf8("multippp"))
multippp.resize(371, 43)
self.verticalLayout = QtGui.QVBoxLayout(multippp)
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
self.label = QtGui.QLabel(multippp)
self.label.setObjectName(_fromUtf8("label"))
self.verticalLayout.addWidget(self.label)
self.verticalLayout_2 = QtGui.QVBoxLayout()
self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2"))
self.verticalLayout.addLayout(self.verticalLayout_2)
self.retranslateUi(multippp)
QtCore.QMetaObject.connectSlotsByName(multippp)
def retranslateUi(self, multippp):
multippp.setWindowTitle(QtGui.QApplication.translate("multippp", "Multiple PPP Accounts", None, QtGui.QApplication.UnicodeUTF8))
self.label.setText(QtGui.QApplication.translate("multippp", "More than one PPP account found, please select one:", None, QtGui.QApplication.UnicodeUTF8))
if __name__ == "__main__":
import sys
app = QtGui.QApplication(sys.argv)
multippp = QtGui.QDialog()
ui = Ui_multippp()
ui.setupUi(multippp)
multippp.show()
sys.exit(app.exec_())
我在这个(生成的)代码中试图理解的是为什么 multippp 对话框不属于所有其他小部件的类。相反,据我所知,你给它一个 QDialog,它会将它雕刻成你想要的样子。将 QDialog 分开有什么好处,如果有,那有什么好处?