key_tab イベントをキャプチャしようとしていますが、うまくいきません。他にウィジェットがない場合にのみ機能するため、カーソルに移動先がない場合にのみ、イベントを返すことができることに気付きました。これは単純化されたコード サンプルです。
class MyCombo(QComboBox):
def __init__(self, parent=None):
super(MyCombo, self).__init__(parent)
self.setEditable(True)
def keyPressEvent(self, event):
if (event.type() == QEvent.KeyPress) and (event.key() == Qt.Key_Tab):
print "tab pressed"
elif event.key() == Qt.Key_Return:
print "return pressed"
else:
QComboBox.keyPressEvent(self, event)
class Form_1(QDialog):
def __init__(self, parent=None):
super(Form_1, self).__init__(parent)
self.combo = MyCombo()
self.line = QLineEdit()
layout = QVBoxLayout()
layout.addWidget(self.combo)
layout.addWidget(self.line)
self.setLayout(layout)
app = QApplication(sys.argv)
form = Form_1()
form.show()
app.exec_()
次の2行をコメントアウトすると
self.line = QLineEdit()
layout.addWidget(self.line)
フォームにはウィジェットが 1 つしか残っていないため、問題なく動作します。
どこが間違っていますか?
乾杯、ジョー