我有一个关于 Qt 和 Mac OS X 的基本问题。如果我定义一个QMainWindow
类并定义一个keyPressEvent
函数,如下所示,是否不应该在任何地方按下一个键时输入这个函数MyWindow
?我在Linux下遇到了一些问题,如果某些小部件被关注(列表视图或编辑框),我不会得到按键事件,但至少如果我关注一个按钮然后按下一个键,我会得到它。在 Mac OS XI 下根本没有得到任何响应。
class MyWindow(QMainWindow):
def keyPressEvent(self, event):
key = event.key()
if key == Qt.Key_F:
print("pressed F key")
有任何想法吗?
(使用 Python 和 PySide)
[编辑] 基于 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_())