我可以获取pyqt信号来触发另一个类的方法吗? 我尝试了各种但没有运气。 我的目的是在单击(标记)room_file_button时触发get_rooms中的pickFile()方法。
import sys
from PyQt4 import QtCore, QtGui, uic
import openpyxl
from openpyxl import load_workbook
from openpyxl.styles import Protection
import xlrd
import csv
import os
import re
class MyApp(QtGui.QMainWindow, Ui_MainWindow):
def __init__(self):
QtGui.QMainWindow.__init__(self)
Ui_MainWindow.__init__(self)
self.setupUi(self)
self.room_file_button.clicked.connect(get_rooms.pickFile) # this one
self.radioButton_1.clicked.connect(self.onRadioButton1)
self.radioButton_2.clicked.connect(self.onRadioButton2)
self.radioButton_3.clicked.connect(self.onRadioButton3)
self.spinBox.valueChanged.connect(self.valuechange)
class first_file(MyApp):
def __init__(self):
MyApp.__init__(self)
some methods ....
class get_rooms(MyApp):
def __init__(self):
MyApp.__init__(self)
def pickFile(self, value, group_1):
print 'yipeee !'
xy = 0
while True:
filename = QtGui.QFileDialog.getOpenFileName(self, 'Open File', '.')
if filename == '' and xy < 2:
print(" ")
xy = xy + 1
continue
elif filename != '':
break
else:
sys.exit()
答案 0 :(得分:-1)
首先,您可以将pickFile
函数设置为静态函数(不带自身):
class get_rooms(MyApp):
def __init__(self):
MyApp.__init__(self)
@staticmethod
def pickFile(value, group_1):
然后你可以使用room_file_button.clicked
信号;如果要将参数发送到该函数,可以使用lambda
:
self.room_file_button.clicked.connect(lambda: get_rooms.pickFile(myValue,myGrupe))