我MainWindow(QMainWindow)
的 PyQt4 GUI 类现在已经增长,我想以某种方式拆分它。问题是所有处理信号的众多功能都非常相互关联并影响类的其他功能。有没有办法把它分成几个类/文件?也许将所有信号分为一类?我真的不明白如何在技术上做到这一点......我还听说Qt(或PyQt)对多重继承有一些限制,这可以解决我猜的问题(再次,对我来说不太明显)。
就像它现在看起来的一个想法(当然非常非常简化):
calss MainWindow(QMainWindow):
...
def f1(self):
if self.a1 == '...':
...
def f2(self):
if self.a2 == '...':
...
def update(self):
self.f3()
self.f4()
self.lineEdit.setText(self.a3)
...
...
def on_radioButton_toggled(self):
if self.radioButton.isChecked():
self.a1 = '...'
def on_comboBox_currentIndexChanged(self):
if self.checkBox.isChecked():
self.a2 = '...'
self.f1()
else:
self.f2()
self.update()
...