我有一个关于Qt和Mac OS X的基本问题。如果我定义一个QMainWindow
类并定义一个keyPressEvent
函数,如果按下一个键,是不是应该输入这个函数MyWindow
中的任何地方?我在Linux下遇到了一些问题,如果某些小部件集中在(列表视图或编辑框)上,我没有得到按键事件,但至少我得到它,如果我专注于一个按钮然后按一个键。在Mac OS X下,我根本没有得到任何回复。
class MyWindow(QMainWindow):
def keyPressEvent(self, event):
key = event.key()
if key == Qt.Key_F:
print("pressed F key")
有什么想法吗?
(使用Python与PySide)
[edit]解决方案基于Pavels回答:
import sys
from PySide.QtGui import *
from PySide.QtCore import *
class basicWindow(QMainWindow):
def __init__(self):
QMainWindow.__init__(self)
self.edit = QLineEdit("try to type F", self)
self.eF = filterObj(self)
self.installEventFilter(self.eF)
self.edit.installEventFilter(self.eF)
self.show()
def test(self, obj):
print "received event", obj
class filterObj(QObject):
def __init__(self, windowObj):
QObject.__init__(self)
self.windowObj = windowObj
def eventFilter(self, obj, event):
if (event.type() == QEvent.KeyPress):
key = event.key()
if(event.modifiers() == Qt.ControlModifier):
if(key == Qt.Key_S):
print('standard response')
else:
if key == Qt.Key_F:
self.windowObj.test(obj)
return True
else:
return False
if __name__ == "__main__":
app = QApplication(sys.argv)
w = basicWindow()
sys.exit(app.exec_())
答案 0 :(得分:5)
当窗口小部件(例如编辑框)使用事件时,它通常不会传播到其父窗口小部件,因此您无法从父窗口获取这些事件。您应该在主QApplication
对象上安装事件过滤器。通过这种方式,您将收到(并根据需要进行过滤)所有事件。
请参阅Event filters。