我有一个带有继续按钮的QDialog窗口。继续按钮是默认按钮,因为每当我按下回车键时,按下继续按钮。我发现了一些奇怪的事情:当我按三次回车键时,继续按钮按下三次。但是,当我第四次按它时,整个窗口关闭。我在关闭窗口的继续按钮下方有一个取消按钮,但我没有将取消按钮设为默认按钮或任何东西。
我想覆盖keyPressEvent
,这样每当我在窗口时,输入按钮将始终连接到继续按钮。
这就是我现在所拥有的:
class ManualBalanceUI(QtGui.QWidget):
keyPressed = QtCore.pyqtSignal()
def __init__(self, cls):
super(QtGui.QWidget, self).__init__()
self.window = QtGui.QDialog(None, QtCore.Qt.WindowSystemMenuHint)
self.ui = uic.loadUi('ManualBalanceUI.ui', self.window)
self.keyPressed.connect(self.on_key)
def keyPressEvent(self, event):
super(ManualBalanceUI, self).keyPressEvent(event)
self.keyPressed.emit(event)
def on_key(self, event):
if event.key() == QtCore.Qt.Key_Enter and self.ui.continueButton.isEnabled():
self.proceed() # this is called whenever the continue button is pressed
elif event.key() == QtCore.Qt.Key_Q:
self.window.close() # a test I implemented to see if pressing 'Q' would close the window
def proceed(self):
...
...
但是,现在似乎没有做任何事情。按'Q'不关闭窗口,我无法确定'enter'键是否正常工作。
我事先看了这个问题:PyQt Connect to KeyPressEvent
我还查看了SourceForge上的所有文档。任何帮助将不胜感激!
答案 0 :(得分:4)
你可以做两种方式,其中一种方法就是重新实现keyPressevent而不需要任何花哨的工作。喜欢这个
public static class Extension
{
public static string ReplaceValue(string data,string criteria)
{
return s = Regex.Replace(s, @"\bwest\b", "something");
}
}
或者当您尝试使用信号时,在您遇到缺失的情况下正确实现此信号,此处为更新版本。
from PyQt4 import QtCore, QtGui
import sys
class Example(QtGui.QWidget):
def __init__(self):
super(Example, self).__init__()
self.setGeometry(300, 300, 250, 150)
self.show()
def keyPressEvent(self, event):
if event.key() == QtCore.Qt.Key_Q:
print "Killing"
self.deleteLater()
elif event.key() == QtCore.Qt.Key_Enter:
self.proceed()
event.accept()
def proceed(self):
print "Call Enter Key"
def main():
app = QtGui.QApplication(sys.argv)
ex = Example()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
答案 1 :(得分:0)
对于Achayan的回答,我成功完成了代码。 它可以是回车键和返回键。 尝试Key_Enter和Key_Return。它们在键盘上有所不同。
答案 2 :(得分:0)
QtCore.QObject.connect(self.ui.search_box, QtCore.SIGNAL("textChanged()"), self.fucn1)
只要在search_box
函数fucn1
中更改文本,就会调用。
适用于pyqt4
答案 3 :(得分:0)
如果您在2019年正在研究此方法,并且如果Achayan的方法不适合您,则请检查以下几件事:
1)在主窗口或主窗口小部件的子项中是否覆盖了keyPressEvent?子函数将覆盖父函数的方法(至少在将QMainWindow与setCentralWidget一起使用时)。如果是这种情况,那么信号可能不会像您期望的那样发射
2)您是否有一个小部件处理键输入的方式不同于QWidget?例如,如果焦点在QTextEdit对象中,则按键输入将不会发送到keyPressEvent。将焦点转移到另一个widget
例如,观察以下内容:
class myDialog(QtWidgets.QDialog):
keyPressed = QtCore.pyqtSignal(QtCore.QEvent)
def __init__(self, parent=None):
super(myDialog, self).__init__(parent)
self.keyPressed.connect(self.on_key)
leftGroupBox = QtWidgets.QGroupBox('A Group Label')
text = QtWidgets.QTextEdit('Enter some text')
layout = QtWidgets.QVBoxLayout()
layout.addWidget(text)
leftGroupBox.setLayout(layout)
rightGroupBox = QtWidgets.QGroupBox('Label Options')
label1 = QtWidgets.QCheckBox('ahu')
layout = QtWidgets.QVBoxLayout()
layout.addWidget(label1)
rightGroupBox.setLayout(layout)
# Create the main layout
mainLayout = QtWidgets.QGridLayout()
mainLayout.addWidget(leftGroupBox)
mainLayout.addWidget(rightGroupBox)
self.setLayout(mainLayout)
def keyPressEvent(self, event):
# keyPressEvent defined in child
print('pressed from myDialog: ', event.key())
# self.keyPressed.emit(event) # Emit is hidden in child
def on_key(self, event):
print('event received @ myDialog')
if event.key() == QtCore.Qt.Key_0:
print(0)
class MainWindow(QtWidgets.QMainWindow):
keyPressed = QtCore.pyqtSignal(QtCore.QEvent)
def __init__(self):
super(MainWindow, self).__init__()
self.keyPressed.connect(self.on_key)
self.setCentralWidget(myDialog())
self.show()
def keyPressEvent(self, event):
super(MainWindow, self).keyPressEvent(event)
print('pressed from MainWindow: ', event.key())
self.keyPressed.emit(event)
def on_key(self, event):
print('event received @ MainWindow')
if event.key() == QtCore.Qt.Key_0:
print(0)
if __name__ == '__main__':
ex = MainWindow()
Output @ console : (no event is received @myDialog OR MainWindow)
pressed from myDialog: 48